@charset "UTF-8";
/* ==reset CSS初期化== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ==variables CSS変数の読み込み== */
/* ==layout 共通レイアウト・ページ構造== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: var(--base-font-size);
  color: var(--text-color);
  background-color: var(--bg-color-except-top);
  line-height: 1.8;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  z-index: 1;
  position: relative;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 80px 0 40px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 20px;
}

p {
  margin-bottom: 30px;
}

ul,
ol {
  padding-left: 25px;
  margin-bottom: 30px;
}

a {
  color: var(--link-color);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
a img {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.6;
}
a:hover img {
  opacity: 0.6;
}

img,
iframe {
  max-width: 100%;
  height: auto;
}

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

.breadcrumb {
  margin: 40px 0;
}
.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb ul li {
  display: block;
}
.breadcrumb ul li a {
  display: inline-block;
}
.breadcrumb ul li::after {
  content: "＞";
  margin: 0 0.5em;
  color: #ccc;
}
.breadcrumb ul li:last-child::after {
  content: none;
}
.breadcrumb ul li:last-child a {
  pointer-events: none;
  color: #999;
}

.content-sidebar-wrapper {
  display: flex;
  gap: 30px;
}
.content-sidebar-wrapper .l-main {
  flex: 1;
  min-width: 0;
}
.content-sidebar-wrapper .l-sidebar {
  width: 300px;
  flex-shrink: 0;
}

/* ==header ヘッダーデザイン== */
.global-header {
  padding: 20px 0 0;
  width: 100%;
  z-index: 1000;
  background: var(--header-color, #fff);
  position: relative;
}
.global-header .site-lead {
  display: none;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
  color: var(--text-color);
}
.global-header .site-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
}
.global-header .site-logo a {
  display: block;
}
.global-header .site-logo a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.global-header .global-nav {
  padding-top: 20px;
}
.global-header .global-nav .menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}
.global-header .global-nav .menu-list li {
  flex: 1 1 auto;
  max-width: 230px;
  min-width: 140px;
  text-align: center;
}
.global-header .global-nav .menu-list li a {
  font-size: 18px;
  font-weight: bold;
  color: var(--header-a-color, #fff);
  padding: 20px 0;
}
.global-header .global-nav .menu-list li a:hover {
  color: var(--link-color);
  opacity: 1;
}
.global-header .global-nav .menu-list li.current-menu-item a, .global-header .global-nav .menu-list li.current_page_item a, .global-header .global-nav .menu-list li.current-menu-ancestor a, .global-header .global-nav .menu-list li.current-cat a {
  color: var(--link-color);
}
.global-header .hamburger {
  display: none;
}

.slider-area {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #fff;
  z-index: 999;
  overflow-x: auto;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.menu-item-card {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  margin: 0;
  background: #f8f8f8;
  overflow: hidden;
  text-align: left;
  vertical-align: top;
}
.menu-item-card:hover {
  opacity: 1;
}
.menu-item-card:hover img,
.menu-item-card:hover .menu-item-image-bg {
  transform: scale(1.1);
  opacity: 1;
}
.menu-item-card .menu-item-body {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.95);
  z-index: 2;
  box-sizing: border-box;
}
.menu-item-card .menu-item-body .menu-item-date {
  font-size: 0.85rem;
  color: #fff;
  margin-bottom: 4px;
}
.menu-item-card .menu-item-body .menu-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: #fff;
}
.menu-item-card .menu-item-body .menu-item-excerpt {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.6;
}

.menu-item-image-bg {
  display: block;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(1);
  opacity: 1;
  will-change: transform, opacity;
}
.menu-item-image-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 35%, var(--main-color) 100%);
  pointer-events: none;
  z-index: 1;
}

.bg-style {
  background: none !important;
}

.menu-item-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.menu-item-image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(1);
  opacity: 1;
  will-change: transform, opacity;
}

.menu-item-image + .menu-item-body {
  position: static;
  background-color: var(--main-color);
  color: #fff;
  padding: 15px;
}

.menu-list > li:hover .slider-area {
  display: block;
}

.global-nav .menu-list .menu-item {
  position: relative;
  padding-bottom: 12px;
}
.global-nav .menu-list .menu-item:hover .sub-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.global-nav .menu-list .menu-item .sub-menu {
  display: block;
  position: absolute;
  top: calc(100% - 0px);
  left: 0;
  color: #fff;
  width: 240px;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 20;
}
.global-nav .menu-list .menu-item .sub-menu li a {
  display: block;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-align: left;
  transition: color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  background-color: var(--main-color);
}
.global-nav .menu-list .menu-item .sub-menu li a:hover {
  opacity: 0.7;
}

.menu-slider-wrapper {
  background-color: var(--main-color);
  transition: background-color 0.2s ease;
}
.menu-slider-wrapper .inner {
  overflow-x: auto;
}

.menu-slider-track {
  overflow: hidden;
  width: 100%;
}

.slider-row {
  display: flex;
  gap: 20px;
  padding: 20px;
  padding-top: 0;
  transition: transform 0.4s ease;
  will-change: transform;
  width: max-content;
  width: 100%;
}

.slider-item {
  flex: 0 0 calc((100% - 40px) / 3);
  box-sizing: border-box;
}

.menu-slider-wrapper.only-pc {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 100;
  display: none;
  padding: 20px 0;
}
.menu-slider-wrapper.only-pc.is-active {
  display: block;
  width: 100%;
}
.menu-slider-wrapper.only-pc .menu-slider-content {
  display: none;
}
.menu-slider-wrapper.only-pc .menu-slider-content.is-active {
  display: block;
  width: 100%;
}

/* 子カテゴリタイトル横並び */
.slider-title-group {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 20px;
  list-style: none;
  padding: 0;
  justify-content: center;
}
.slider-title-group a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  padding: 20px 30px;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, color 0.3s ease;
}
.slider-prev i,
.slider-next i {
  pointer-events: none;
}
.slider-prev:hover,
.slider-next:hover {
  background: #eee;
  color: var(--main-color);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.force-hide {
  display: none !important;
}

.menu-card-row {
  display: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  width: 100%;
  background-color: var(--main-color);
  top: 100%;
  padding: 20px 0;
  position: absolute;
}
.menu-card-row.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.menu-card-row .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  padding: 20px 0;
}
.menu-card-row .menu-card-item {
  width: calc((100% - 40px) / 3);
  position: relative;
  display: inline-block;
  background: #f8f8f8;
  overflow: hidden;
  text-align: left;
  vertical-align: top;
}
.menu-card-row .menu-card-item:hover img,
.menu-card-row .menu-card-item:hover .menu-card-bg {
  transform: scale(1.1);
  opacity: 1;
}
.menu-card-row .menu-card-item .menu-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  padding: 16px;
  color: #fff;
  line-height: 1.4;
  box-sizing: border-box;
  text-align: center;
}
.menu-card-row .menu-card-item a:hover {
  opacity: 1 !important;
}

.menu-card-item-top-image .menu-card-image {
  width: 100%;
  overflow: hidden;
}
.menu-card-item-top-image .menu-card-image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(1);
  opacity: 1;
  will-change: transform, opacity;
}
.menu-card-item-top-image .menu-card-title {
  background-color: var(--main-color);
}

.menu-card-item-bg .menu-card-bg,
.menu-card-item-band .menu-card-bg {
  display: block;
  width: 100%;
  height: 280px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(1);
  opacity: 1;
  will-change: transform, opacity;
}
.menu-card-item-bg .menu-card-bg::before,
.menu-card-item-band .menu-card-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 60%, var(--main-color) 100%);
  pointer-events: none;
  z-index: 1;
}
.menu-card-item-bg .menu-card-title,
.menu-card-item-band .menu-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 16px;
  background-color: none;
}

.menu-card-item-band .menu-card-title {
  background-color: rgba(var(--main-color-rgb), 0.2);
}

.menu-card-item-band .menu-card-bg::before {
  background: transparent !important;
}

.menu-item[data-slider-id]:hover + .menu-card-row {
  display: block;
}

.menu-hide-submenu .sub-menu {
  display: none !important;
}

header .sns-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .sns-links li {
  display: flex;
}
header .sns-links li a {
  display: inline-block;
  text-decoration: none;
}
header .sns-links li a i {
  font-size: 20px;
  color: #000;
}
header .sns-links li a img {
  width: auto;
  height: 20px;
  display: block;
  object-fit: contain;
}

.global-header.menu-type1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.global-header.menu-type1 .site-logo {
  margin: 20px auto;
  max-width: 200px;
}
.global-header.menu-type1 .inner {
  position: relative;
  width: 100%;
}
.global-header.menu-type1 .sns-links {
  position: absolute;
  right: 0;
  top: 20px;
}

.global-header.menu-type2 {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.global-header.menu-type2 .site-lead {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
  font-size: 1rem;
}
.global-header.menu-type2 .site-logo {
  margin: 20px auto;
  max-width: 200px;
}
.global-header.menu-type2 .logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 120px;
}
.global-header.menu-type2 .logo-item .site-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
}
.global-header.menu-type2 .logo-item .site-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.global-header.menu-type2 .global-nav {
  padding-top: 0;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  max-width: none;
  transform: translateX(-50%);
  background-color: var(--main-color);
  border-bottom: 1px solid #666;
}
.global-header.menu-type2 .global-nav .menu-list {
  max-width: 1200px;
  margin: 0 auto;
  border-left: 1px solid #666;
}
.global-header.menu-type2 .global-nav .menu-list li {
  border-right: 1px solid #666;
  padding-bottom: 0;
}
.global-header.menu-type2 .global-nav .menu-list li a {
  color: #fff;
  font-size: 14px;
}

.global-header.menu-type3 {
  background: transparent;
  transition: background 0.4s ease;
}
.global-header.menu-type3 .inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 20px 30px 0 !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global-header.menu-type3 .site-logo {
  max-width: 160px;
  padding: 20px;
  margin-top: -20px;
}
.global-header.menu-type3 .site-logo a {
  display: block;
}
.global-header.menu-type3 .site-logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.global-header.menu-type3 .global-nav {
  padding: 0;
}
.global-header.menu-type3 .global-nav .menu-list {
  writing-mode: vertical-lr;
  text-orientation: upright;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.global-header.menu-type3 .global-nav .menu-list li {
  writing-mode: vertical-lr;
  text-orientation: upright;
  white-space: nowrap;
  padding: 0;
}
.global-header.menu-type3 .global-nav .menu-list li a {
  position: relative;
  transition: color 0.3s ease;
  height: 100%;
  padding: 20px !important;
  text-align: start;
}
.global-header.menu-type3 .global-nav .menu-list li a span {
  display: inline-block;
  position: relative;
}
.global-header.menu-type3 .global-nav .menu-list li a span::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 1px;
  height: 100%;
  background-color: #000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}
.global-header.menu-type3 .global-nav .menu-list li a:hover span::after {
  transform: scaleY(1);
}
.global-header.menu-type3 .global-nav .menu-list li a:hover::after {
  transform: scaleY(1);
}
.global-header.menu-type3 .global-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--header-color, #fff);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  pointer-events: none;
}
.global-header.menu-type3 .global-nav .site-logo img {
  transition: filter 0.4s ease;
}
.global-header.menu-type3 .global-nav:has(.menu-list li:hover)::before {
  opacity: 1;
}
.global-header.menu-type3 .global-nav:has(.menu-list li:hover) .site-logo img {
  filter: invert(1);
}
.global-header.menu-type3 .global-nav:has(.menu-list li:hover) .menu-list > li > a {
  color: #000 !important;
}
.global-header.menu-type3 .global-nav:has(.menu-list li:hover) .menu-list > li > a:hover {
  color: #000;
}
.global-header.menu-type3 .global-nav .sub-menu {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: normal;
  text-align: left;
  width: 240px;
  left: -130px;
}
.global-header.menu-type3 .global-nav .sub-menu li {
  width: 100%;
}
.global-header.menu-type3 .global-nav .sub-menu a {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  transform: none;
  color: #fff !important;
  padding: 10px 15px;
  width: 100%;
  padding: 10px 15px !important;
  font-size: 14px !important;
}
.global-header.menu-type3 .global-nav .sub-menu a:hover {
  color: #fff !important;
}
.global-header.menu-type3 .menu-slider-wrapper, .global-header.menu-type3 .menu-card-row {
  position: fixed;
}
.global-header.menu-type3 .menu-slider-wrapper .inner, .global-header.menu-type3 .menu-card-row .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 40px 20px 20px;
}
.global-header.menu-type3 .menu-slider-wrapper .inner {
  flex-direction: column;
}
.global-header.menu-type3 .global-nav.submenu-open .menu-list > li > a {
  color: #000 !important;
}
.global-header.menu-type3 .global-nav.submenu-open::before {
  opacity: 1;
}

.global-header.menu-type3.scrolled.active-scroll .inner {
  padding: 0 30px !important;
}

.global-header.menu-type4 .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global-header.menu-type4 .site-logo {
  max-width: 160px;
  padding: 20px;
  margin-top: -20px;
}
.global-header.menu-type4 .site-logo a {
  display: block;
}
.global-header.menu-type4 .site-logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.global-header.menu-type4 .global-nav {
  padding: 0;
  margin: 0 auto;
}
.global-header.menu-type4 .global-nav .menu-list {
  writing-mode: vertical-lr;
  text-orientation: upright;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.global-header.menu-type4 .global-nav .menu-list li {
  writing-mode: vertical-lr;
  text-orientation: upright;
  white-space: nowrap;
  padding: 0;
}
.global-header.menu-type4 .global-nav .menu-list li a {
  position: relative;
  transition: color 0.3s ease;
  height: 100%;
  padding: 20px !important;
  text-align: start;
  font-family: "Noto Sans JP", sans-serif !important;
}
.global-header.menu-type4 .global-nav .sub-menu {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  white-space: normal;
  text-align: left;
  width: 240px;
  left: -40px;
}
.global-header.menu-type4 .global-nav .sub-menu li {
  width: 100%;
}
.global-header.menu-type4 .global-nav .sub-menu a {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  transform: none;
  color: #fff !important;
  padding: 10px 15px;
  width: 100%;
  padding: 10px 15px !important;
  font-size: 14px !important;
}
.global-header.menu-type4 .global-nav .sub-menu a:hover {
  color: #fff !important;
}
.global-header.menu-type4 .menu-slider-wrapper, .global-header.menu-type4 .menu-card-row {
  position: fixed;
}
.global-header.menu-type4 .menu-slider-wrapper .inner {
  flex-direction: column;
}
.global-header.menu-type4 .global-nav.submenu-open .menu-list > li > a {
  color: #000 !important;
}
.global-header.menu-type4 .global-nav.submenu-open::before {
  opacity: 1;
}
.global-header.menu-type4:not(.scrolled) .menu-list > li > a {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
}
.global-header.menu-type4:not(.scrolled) .menu-list > li > a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.global-header.menu-type4:not(.scrolled) .menu-list > li > a:hover {
  color: var(--link-color) !important;
  transform: translateY(0.5em);
}
.global-header.menu-type4:not(.scrolled) .sub-menu,
.global-header.menu-type4:not(.scrolled) .menu-slider-wrapper,
.global-header.menu-type4:not(.scrolled) .menu-card-row {
  display: none !important;
}
.global-header.menu-type4:not(.scrolled) .menu-slider-wrapper.is-active {
  display: block !important;
}
.global-header.menu-type4.scrolled .slider-title-group a {
  font-family: "Noto Sans JP", sans-serif !important;
}

.global-header.menu-type4.scrolled .global-nav {
  margin: 0 !important;
}

.global-header.menu-type5 {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.global-header.menu-type5 .inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  display: block;
}
.global-header.menu-type5 .site-logo {
  padding: 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  max-width: 160px;
}
.global-header.menu-type5 .site-logo a {
  display: block;
}
.global-header.menu-type5 .site-logo a img {
  width: 100%;
  height: auto;
  display: block;
}
.global-header.menu-type5 .global-nav {
  position: absolute;
  bottom: 80px;
  right: 100px;
}
.global-header.menu-type5 .global-nav .menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.global-header.menu-type5 .global-nav .menu-list li {
  padding: 0;
}
.global-header.menu-type5 .global-nav .menu-list li a {
  position: relative;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 10px 0 !important;
  text-align: left;
}
.global-header.menu-type5 .global-nav .menu-list li a:hover {
  color: var(--link-color) !important;
  transform: translateX(0.5em);
}
.global-header.menu-type5:not(.scrolled) .sub-menu,
.global-header.menu-type5:not(.scrolled) .menu-slider-wrapper,
.global-header.menu-type5:not(.scrolled) .menu-card-row {
  display: none !important;
}
.global-header.menu-type5.scrolled .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.global-header.menu-type5.scrolled .inner .site-logo {
  position: static;
}
.global-header.menu-type5.scrolled .inner .global-nav {
  position: static;
}
.global-header.menu-type5.scrolled .inner .global-nav .menu-list {
  display: flex;
  flex-direction: row;
}
.global-header.menu-type5.scrolled .inner .global-nav li a {
  padding: 0 !important;
  transform: none !important;
  color: inherit !important;
  padding: 10px 15px !important;
}
.global-header.menu-type5.scrolled .inner .global-nav li a:hover {
  color: #fff !important;
}
.global-header.menu-type5 .menu-slider-wrapper, .global-header.menu-type5 .menu-card-row {
  position: fixed;
}
.global-header.menu-type5 .menu-slider-wrapper .inner, .global-header.menu-type5 .menu-card-row .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  padding: 40px 20px 20px;
}
.global-header.menu-type5 .menu-slider-wrapper .inner {
  flex-direction: column;
}
.global-header.menu-type5 .global-nav.submenu-open .menu-list > li > a {
  color: #000 !important;
}
.global-header.menu-type5 .global-nav.submenu-open::before {
  opacity: 1;
}

.global-header.menu-type3,
.global-header.menu-type4,
.global-header.menu-type5 {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.global-header.menu-type3 li,
.global-header.menu-type4 li,
.global-header.menu-type5 li {
  min-width: auto !important;
}
.global-header.menu-type3 li a,
.global-header.menu-type4 li a,
.global-header.menu-type5 li a {
  font-weight: normal !important;
  color: #fff !important;
  font-size: 16px !important;
  padding: 0 15px !important;
}
.global-header.menu-type3.scrolled,
.global-header.menu-type4.scrolled,
.global-header.menu-type5.scrolled {
  height: 120px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-130%);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  background: var(--header-color, #fff);
}
.global-header.menu-type3.scrolled a,
.global-header.menu-type4.scrolled a,
.global-header.menu-type5.scrolled a {
  color: #000 !important;
}
.global-header.menu-type3.scrolled a:hover, .global-header.menu-type3.scrolled a span:hover,
.global-header.menu-type4.scrolled a:hover,
.global-header.menu-type4.scrolled a span:hover,
.global-header.menu-type5.scrolled a:hover,
.global-header.menu-type5.scrolled a span:hover {
  color: var(--link-color) !important;
}
.global-header.menu-type3.scrolled a:hover span::after, .global-header.menu-type3.scrolled a span:hover span::after,
.global-header.menu-type4.scrolled a:hover span::after,
.global-header.menu-type4.scrolled a span:hover span::after,
.global-header.menu-type5.scrolled a:hover span::after,
.global-header.menu-type5.scrolled a span:hover span::after {
  display: none;
}
.global-header.menu-type3.scrolled .slider-title-group a,
.global-header.menu-type4.scrolled .slider-title-group a,
.global-header.menu-type5.scrolled .slider-title-group a {
  color: #fff !important;
}
.global-header.menu-type3.scrolled.active-scroll,
.global-header.menu-type4.scrolled.active-scroll,
.global-header.menu-type5.scrolled.active-scroll {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.global-header.menu-type3.scrolled .inner,
.global-header.menu-type4.scrolled .inner,
.global-header.menu-type5.scrolled .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
}
.global-header.menu-type3.scrolled .sns-links,
.global-header.menu-type4.scrolled .sns-links,
.global-header.menu-type5.scrolled .sns-links {
  display: flex !important;
  position: absolute;
  top: -15px;
  right: 30px;
}
.global-header.menu-type3.scrolled .sns-links a,
.global-header.menu-type4.scrolled .sns-links a,
.global-header.menu-type5.scrolled .sns-links a {
  padding: 0 !important;
}
.global-header.menu-type3.scrolled .global-nav,
.global-header.menu-type4.scrolled .global-nav,
.global-header.menu-type5.scrolled .global-nav {
  writing-mode: horizontal-tb;
}
.global-header.menu-type3.scrolled .global-nav .menu-list,
.global-header.menu-type4.scrolled .global-nav .menu-list,
.global-header.menu-type5.scrolled .global-nav .menu-list {
  text-orientation: upright;
}
.global-header.menu-type3.scrolled .global-nav .menu-list li, .global-header.menu-type3.scrolled .global-nav .menu-list a,
.global-header.menu-type4.scrolled .global-nav .menu-list li,
.global-header.menu-type4.scrolled .global-nav .menu-list a,
.global-header.menu-type5.scrolled .global-nav .menu-list li,
.global-header.menu-type5.scrolled .global-nav .menu-list a {
  writing-mode: initial;
  text-orientation: initial;
}

body.menu-type1 .global-header,
body.menu-type2 .global-header {
  position: fixed;
  z-index: 1000;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ▼ ヘッダーをふわっと非表示（全画面時など） */
body.menu-type1 .global-header.hide-on-fullscreen,
body.menu-type2 .global-header.hide-on-fullscreen {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

/* ▼ スクロール後に初めて固定表示（追従） */
body.menu-type1 .global-header.scrolled,
body.menu-type2 .global-header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
}

body.menu-type1,
body.menu-type2 {
  position: relative;
}
body.menu-type1 .is-fullscreen,
body.menu-type2 .is-fullscreen {
  position: absolute;
  top: 0;
}

body.menu-type1 #menu-spacer,
body.menu-type2 #menu-spacer {
  width: 100%;
  height: 0;
  transition: height 0.3s ease;
}

body.menu-type1 #menu-spacer,
body.menu-type2 #menu-spacer {
  width: 100%;
  height: 0;
  transition: height 0.3s ease;
}

body.menu-type1.is-fullscreen-page #menu-spacer,
body.menu-type2.is-fullscreen-page #menu-spacer {
  height: 100vh !important;
}

body.menu-type1 .fv-block,
body.menu-type2 .fv-block,
body.menu-type5 .fv-block {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.menu-type3 .fv-block,
body.menu-type4 .fv-block,
body.menu-type5 .fv-block {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.menu-type3 .global-header,
body.menu-type4 .global-header,
body.menu-type5 .global-header {
  pointer-events: auto;
  z-index: 1000;
}
body.menu-type3 .global-header .sns-links,
body.menu-type4 .global-header .sns-links,
body.menu-type5 .global-header .sns-links {
  display: none;
}

body.home.menu-type3 #menu-spacer,
body.home.menu-type4 #menu-spacer,
body.home.menu-type5 #menu-spacer {
  height: 0 !important;
}

body.menu-type3 .global-header::after,
body.menu-type4 .global-header::after,
body.menu-type5 .global-header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ==components コンポネートデザイン== */
.fv-block {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fv-block.is-fullscreen {
  min-height: 100vh;
}
.fv-block.fv-parallax {
  background-attachment: fixed;
}
.fv-block.anim-zoom-in {
  animation: zoomIn 5s ease forwards;
}
.fv-block.anim-zoom-out {
  animation: zoomOut 5s ease forwards;
}
.fv-block.anim-slide-left {
  animation: slideLeft 5s ease forwards;
}
.fv-block.anim-slide-right {
  animation: slideRight 5s ease forwards;
}

.fv-bg,
.fv-slider,
.fv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.fv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.fv-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  max-width: 1000px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  color: #fff;
}
.fv-inner.left {
  text-align: left;
}
.fv-inner.right {
  text-align: right;
}

.fv-copy {
  position: relative;
  z-index: 50;
  padding: 30px;
}
.fv-copy h2 {
  font-size:  var(--font-size-pc, 2.4rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-color, #fff);
}
.fv-copy h2.left {
  text-align: left;
}
.fv-copy h2.center {
  text-align: center;
}
.fv-copy h2.right {
  text-align: right;
}
.fv-copy p {
  margin-bottom: 20px;
  color: var(--text-color, #fff);
  font-size:  var(--font-size-pc2, 1.8rem);
}
.fv-copy p.left {
  text-align: left;
}
.fv-copy p.center {
  text-align: center;
}
.fv-copy p.right {
  text-align: right;
}

.fv-btn, .card-box-single .card-link.fv-btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.fv-btn:hover, .card-box-single .card-link.fv-btn:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
  opacity: 1;
}
.fv-btn.left, .card-box-single .left.card-link.fv-btn {
  position: absolute;
  left: 0;
}
.fv-btn.center, .card-box-single .center.card-link.fv-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fv-btn.right, .card-box-single .right.card-link.fv-btn {
  position: absolute;
  right: 0;
}

.fv-btn2 {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  color: #000 !important;
  background-color: transparent;
  border: 1px solid #000 !important;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.fv-btn2:hover {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #fff !important;
  opacity: 1;
}
.fv-btn2.left {
  position: absolute;
  left: 0;
}
.fv-btn2.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fv-btn2.right {
  position: absolute;
  right: 0;
}

.fv-scroll {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}
.fv-scroll img {
  display: block;
  max-height: 80px;
  width: auto;
}

.global-header.menu-type5.active-scroll .fv-scroll {
  display: none;
}

header.font-gothic,
footer.font-gothic,
.font-gothic h2,
.font-gothic h3,
.font-gothic p,
.font-gothic .fv-btn,
.font-gothic .card-box-single .card-link.fv-btn,
.card-box-single .font-gothic .card-link.fv-btn,
.font-gothic .section-text,
.font-gothic .mini-image-text,
.font-gothic .title-decoration-banner {
  font-family: "Noto Sans JP", sans-serif !important;
}

header.font-mincho,
footer.font-mincho,
.font-mincho h2,
.font-mincho h3,
.font-mincho p,
.font-mincho .fv-btn,
.font-mincho .card-box-single .card-link.fv-btn,
.card-box-single .font-mincho .card-link.fv-btn,
.font-mincho .section-text,
.font-mincho .mini-image-text,
.font-mincho .title-decoration-banner,
.font-mincho .news-list {
  font-family: "Noto Serif JP", serif !important;
}

.fv-block.is-under-header {
  height: 600px;
}

.fv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.fv-logo img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fv-bg.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.fv-bg.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.fv-bg.zoom-in {
  animation: zoomIn 1.2s ease forwards;
}

.fv-bg.zoom-out {
  animation: zoomOut 1.2s ease forwards;
}

.fv-bg.slide-up {
  animation: slideUp 1.2s ease forwards;
}

.fv-bg.slide-down {
  animation: slideDown 1.2s ease forwards;
}

.fv-bg.slide-left {
  animation: slideLeft 1.2s ease forwards;
}

.fv-bg.slide-right {
  animation: slideRight 1.2s ease forwards;
}

@keyframes zoomIn {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(1.2);
    opacity: 1;
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.fv-copy.vertical {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  writing-mode: unset;
  height: 45vh;
}
.fv-copy.vertical h2,
.fv-copy.vertical p {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  line-height: 2;
  white-space: normal;
  align-self: flex-start;
  padding-top: 0.2em;
  margin: 0;
}
.fv-copy.vertical h2 {
  text-align: right;
  order: 2;
}
.fv-copy.vertical p {
  text-align: left;
  order: 1;
}

.is-fullscreen .fv-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.is-fullscreen .fv-slider .slick-track, .is-fullscreen .fv-slider .slick-list {
  height: 100%;
}
.is-fullscreen .fv-slide,
.is-fullscreen .fv-slide-inner,
.is-fullscreen .fv-inner {
  height: 100%;
  position: relative;
}
.is-fullscreen .fv-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: none;
}

.is-under-header .fv-slider {
  position: absolute;
  width: 100%;
  min-height: 600px;
  overflow: hidden;
}
.is-under-header .fv-slide,
.is-under-header .fv-slide-inner,
.is-under-header .fv-inner {
  position: relative;
  min-height: 600px;
}
.is-under-header .fv-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
}
.is-under-header.font-mincho h2,
.is-under-header.font-mincho p,
.is-under-header.font-mincho .fv-btn {
  font-family: "Noto Serif JP", serif;
}

video.fv-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}
/* PCでは背景（パララックス）を使う */
.fv-bg {
  display: block;
}

.fv-bg-sp {
  display: block;
}
@media (min-width: 1200px) {
  .fv-bg-sp { display: none; }
}
/* SPではimgを使う */
@media (max-width: 1199px) {
  .fv-bg-wrap {
    position: relative;
    height: 100vh;

    
  }
  .fv-bg {
    display: none; /* 背景を消す */
  }
  .fv-bg-sp {
    display: block;
    height: 100%;
    max-width: inherit;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 0;
  }
  .fv-block.is-fullscreen {
    min-height: calc(100vh - 70px);
  }  
  .fv-inner {
    position: absolute !important;
    top: 0;
  }
}
.card-box-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.card-box-group-wrapper.has-1 {
  justify-content: center;
  gap: 2rem;
}
.card-box-group-wrapper.has-1 .card-box {
  width: 33.333%;
  max-width: 600px;
}
.card-box-group-wrapper.has-2 {
  justify-content: center;
  gap: 2rem;
}
.card-box-group-wrapper.has-2 .card-box {
  width: 33.333%;
}
.card-box-group-wrapper.has-3 .card-box {
  width: 33.333%;
}

.no-padding {
  padding: 0 !important;
}

.card-box-group-wrapper a .mini-image-text {
  transition: color 0.3s ease;
}
.card-box-group-wrapper a:hover {
  opacity: 1;
}
.card-box-group-wrapper a:hover .mini-image-text {
  color: var(--link-color);
}
.card-box-group-wrapper a:hover img {
  opacity: 1;
}

.card-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.card-box.image-pos-top {
  flex-direction: column;
}
.card-box.image-pos-bottom {
  flex-direction: column-reverse;
}
.card-box.image-pos-left {
  flex-direction: row;
}
.card-box.image-pos-right {
  flex-direction: row-reverse;
}
.card-box .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.5s ease;
  object-fit: cover;
  object-position: center;
}
.card-box .image-background .card-content {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
  color: #fff;
}
.card-box .image-top-image .card-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  text-align: left;
}
.card-box .card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.card-box .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.card-box .content-align-left {
  text-align: left;
}
.card-box .content-align-center {
  text-align: center;
}
.card-box .content-align-right {
  text-align: right;
}
.card-box .title-align-left {
  text-align: left;
  color: var(--text-color);
}
.card-box .title-align-center {
  text-align: center;
  color: var(--text-color);
}
.card-box .title-align-right {
  text-align: right;
  color: var(--text-color);
}
.card-box .card-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}
.card-box .card-content h3 {
  font-size: 1.4rem;
  position: relative;
  margin: 0 0 1rem;
}
.card-box .card-content h3.title-decoration-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(var(--main-color-rgb), 1), rgba(var(--main-color-rgb), 0));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  margin: 0;
}
.card-box .card-content h3.title-decoration-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: rgba(var(--main-color-rgb), 0.7);
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin: 0;
}
.card-box .card-content h3.title-decoration-label {
  padding-left: 2rem;
}
.card-box .card-content h3.title-decoration-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: linear-gradient(45deg, var(--main-color), var(--sub-color));
  border-radius: 0;
}
.card-box .card-content .card-text {
  margin-bottom: 1.2rem;
  color: var(--text-color);
}
.card-box .card-content .card-link.link-align-left {
  text-align: left;
}
.card-box .card-content .card-link.link-align-center {
  text-align: center;
}
.card-box .card-content .card-link.link-align-right {
  text-align: right;
}

.card-box {
  position: relative;
}
.card-box.image-top-image .card-image, .card-box.image-background .card-bg {
  overflow: hidden;
}
.card-box.image-top-image .card-image .card-image-inner, .card-box.image-background .card-bg .card-image-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
  will-change: transform;
  object-fit: cover;
  background-size: cover;
  background-position: center;
}
.card-box.image-top-image .card-image {
  position: relative;
  min-height: 250px;
}
.card-box.image-top-image .card-content {
  padding: 20px;
  position: initial;
}
.card-box.image-top-image .card-content .card-mini-image {
  position: initial;
}
.card-box.image-top-image .card-content .card-mini-image .mini-image-text {
  color: var(--text-color);
}
.card-box.image-top-image .card-content h3.title-decoration-ribbon {
  bottom: auto;
  top: 45%;
}
.card-box.image-top-image .card-content .card-text {
  line-height: 1.2;
}
.card-box.image-top-image .card-bg {
  color: var(--text-color);
}
.card-box.image-background h3.title-align-left, .card-box.image-background .card-text {
  color: #fff;
}
.card-box.image-background .card-content {
  padding: 120px 1.5rem;
}
.card-box.image-background .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.card-box .card-image-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card-box.animation-slide-up:hover .card-image-inner {
  transform: translate(-50%, calc(-50% - 30px));
}
.card-box.animation-slide-down:hover .card-image-inner {
  transform: translate(-50%, calc(-50% + 30px));
}
.card-box.animation-slide-left:hover .card-image-inner {
  transform: translate(calc(-50% - 30px), -50%);
}
.card-box.animation-slide-right:hover .card-image-inner {
  transform: translate(calc(-50% + 30px), -50%);
}
.card-box.animation-zoom-in .card-image-inner {
  transform: translate(-50%, -50%) scale(1);
}
.card-box.animation-zoom-in:hover .card-image-inner {
  transform: translate(-50%, -50%) scale(1.2);
}
.card-box.animation-zoom-out .card-image-inner {
  transform: translate(-50%, -50%) scale(1.3);
}
.card-box.animation-zoom-out:hover .card-image-inner {
  transform: translate(-50%, -50%) scale(1);
}

.card-mini-image {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.card-mini-image .mini-image-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}
.card-mini-image .mini-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}
.card-mini-image .mini-image-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

.section-card-box-pair.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.section-card-box-pair .card-box-pair-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.section-card-box-pair .card-box-pair-wrapper.has-2 .card-box {
  width: 50%;
}
.section-card-box-pair .card-box-pair-wrapper .card-content {
  padding: 160px 80px;
}
.section-card-box-pair .card-box-pair-wrapper .card-content .card-link-text {
  margin-bottom: 0;
}
.section-card-box-pair .image-background .card-content {
  height: 100%;
}
.section-card-box-pair .image-background h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.card-content a .mini-image-text {
  transition: color 0.3s ease;
}
.card-content a:hover {
  opacity: 1;
}
.card-content a:hover .mini-image-text {
  color: var(--link-color);
}
.card-content a:hover img {
  opacity: 1;
}

.card-box-single {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.card-box-single.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.card-box-single .card-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: transform 0.5s ease;
  will-change: transform;
}
.card-box-single.parallax-bg .card-inner {
  position: relative;
  min-height: 400px;
}
.card-box-single.parallax-bg .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  transform: none;
  transition: initial !important;
  will-change: initial !important;
}
.card-box-single.image-background .card-content {
  position: relative;
  z-index: 1;
}
.card-box-single.image-background .card-content h2, .card-box-single.image-background .card-content h3, .card-box-single.image-background .card-content .card-text {
  color: #fff !important;
}
.card-box-single .card-inner {
  width: 100%;
  margin: 0 auto;
  padding: 120px 20px;
  box-sizing: border-box;
  position: relative;
}
.card-box-single .card-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
.card-box-single h2 {
  margin-top: 0;
}
.card-box-single .card-title.title-align-center {
  text-align: center;
}
.card-box-single .card-title.title-align-right {
  text-align: right;
}
.card-box-single .card-text {
  padding-bottom: 20px;
}
.card-box-single .card-text.content-align-center {
  text-align: center;
}
.card-box-single .card-text.content-align-right {
  text-align: right;
}
.card-box-single .card-link.link-align-center {
  text-align: center;
}
.card-box-single .card-link.link-align-right {
  text-align: right;
}
.card-box-single .card-link.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.card-box-single .card-link.mini-link img {
  width: 24px;
  height: auto;
}
.card-box-single.vertical-text .card-content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
.card-box-single.vertical-text .card-content > * {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.card-box-single.vertical-text .card-content .card-title,
.card-box-single.vertical-text .card-content .card-text {
  margin-bottom: 0;
}
.card-box-single.animation-slide-up:hover .card-bg {
  transform: translate(-50%, calc(-50% - 30px));
}
.card-box-single.animation-slide-down:hover .card-bg {
  transform: translate(-50%, calc(-50% + 30px));
}
.card-box-single.animation-slide-left:hover .card-bg {
  transform: translate(calc(-50% - 30px), -50%);
}
.card-box-single.animation-slide-right:hover .card-bg {
  transform: translate(calc(-50% + 30px), -50%);
}
.card-box-single.animation-zoom-in .card-bg {
  transform: translate(-50%, -50%) scale(1);
}
.card-box-single.animation-zoom-in:hover .card-bg {
  transform: translate(-50%, -50%) scale(1.2);
}
.card-box-single.animation-zoom-out .card-bg {
  transform: translate(-50%, -50%) scale(1.3);
}
.card-box-single.animation-zoom-out:hover .card-bg {
  transform: translate(-50%, -50%) scale(1);
}

.section-card-box-single {
  position: relative;
}
.section-card-box-single .section-inner {
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  padding: 0;
}
.section-card-box-single .section-inner .section-banner {
  text-align: left;
}
.section-card-box-single .section-inner .section-banner .title-decoration-banner {
  display: inline-block;
  font-size: 1.2em;
  background: #000;
  color: #fff;
  padding: 0.3em 1em;
  font-weight: bold;
  width: 120px;
  height: 120px;
  background: linear-gradient(to bottom, rgba(var(--main-color-rgb), 1), rgba(var(--main-color-rgb), 0));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  z-index: 2;
  margin: 0;
}

.section-campaign_slider {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.section-campaign_slider.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.section-campaign_slider .inner {
  padding: 80px 0;
}
.section-campaign_slider .section-title {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.section-campaign_slider .section-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.section-campaign_slider .campaign-slider-wrapper {
  width: 100%;
  margin-bottom: 40px;
}
.section-campaign_slider .campaign-slider-wrapper .campaign-slider {
  position: relative;
}
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-row {
  display: flex;
  align-items: stretch;
}
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-row .slider-item {
  width: 100%;
  flex: 0 0 calc((100% - 40px) / 4);
  height: auto;
}
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-prev,
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-prev:hover,
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-next:hover {
  color: #000;
}
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-prev {
  left: -30px;
}
.section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-next {
  right: -30px;
}
.section-campaign_slider .campaign-slider-wrapper.has-1 .campaign-card, .section-campaign_slider .campaign-slider-wrapper.has-2 .campaign-card, .section-campaign_slider .campaign-slider-wrapper.has-3 .campaign-card, .section-campaign_slider .campaign-slider-wrapper.has-4 .campaign-card {
  width: calc(100% / var(--card-count));
}
.section-campaign_slider .campaign-slider-wrapper .static-wrapper {
  display: flex;
  gap: 20px;
  --card-count: 3;
  justify-content: center;
}
.section-campaign_slider .campaign-card {
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  position: relative;
  height: auto;
  border: 1px solid #fff;
  padding: 10px;
}
.section-campaign_slider .campaign-card .card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.section-campaign_slider .campaign-card .card-image .card-image-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 50%;
}
.section-campaign_slider .campaign-card .card-image .card-image-inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: center;
  transform: translate(-50%, -50%) scale(1.3);
  transition: transform 0.5s ease;
  will-change: transform;
}
.section-campaign_slider .campaign-card .card-content {
  padding: 20px;
  justify-content: space-between;
}
.section-campaign_slider .campaign-card .card-content h3 {
  font-size: 20px;
  margin: 0 0 10px;
}
.section-campaign_slider .campaign-card .card-content h3.title-align-center {
  text-align: center;
}
.section-campaign_slider .campaign-card .card-content h3.title-align-right {
  text-align: right;
}
.section-campaign_slider .campaign-card .card-content p {
  font-size: 14px;
  line-height: 1.7;
}
.section-campaign_slider .campaign-card .card-content p.text-align-center {
  text-align: center;
}
.section-campaign_slider .campaign-card .card-content p.text-align-right {
  text-align: right;
}
.section-campaign_slider .section-button {
  text-align: center;
}
.section-campaign_slider a:hover, .section-campaign_slider a:hover img {
  opacity: 1;
}
.section-campaign_slider .campaign-card.animation-zoom-in:hover img {
  transform: translate(-50%, -50%) scale(1.5);
}
.section-campaign_slider .campaign-card.animation-zoom-out:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.section-campaign_slider .campaign-card.animation-slide-up:hover img {
  transform: translate(-50%, calc(-50% - 30px)) scale(1.3);
}
.section-campaign_slider .campaign-card.animation-slide-down:hover img {
  transform: translate(-50%, calc(-50% + 30px)) scale(1.3);
}
.section-campaign_slider .campaign-card.animation-slide-left:hover img {
  transform: translate(calc(-50% - 30px), -50%) scale(1.3);
}
.section-campaign_slider .campaign-card.animation-slide-right:hover img {
  transform: translate(calc(-50% + 30px), -50%) scale(1.3);
}

.section-news_list .section-title {
  text-align: center;
  margin-bottom: 1em;
  font-size: 32px;
}
.section-news_list .news-list {
  list-style: none;
  margin: 0 0 1.5em;
  padding: 0;
  background-color: var(--news-bg, #ffffff);
}
.section-news_list .news-list .news-item {
  margin-bottom: 0.5em;
  font-size: 1rem;
  line-height: 1.6;
}
.section-news_list .news-list .news-item a.news-title {
  color: var(--link-color);
  text-decoration: none;
  display: block;
  padding: 20px;
  font-weight: bold;
}
.section-news_list .news-list .news-item a.news-title span.news-date {
  margin-right: 0.8em;
  color: #666;
  font-size: 0.95em;
  font-weight: normal;
}
.section-news_list .news-list .news-item:nth-child(-n+2) {
  border-bottom: 1px solid #ccc;
}
.section-news_list .section-button {
  text-align: center;
}

.section-spacer {
  width: 100%;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .section-spacer.is-mobile-hidden {
    display: none;
  }
}
.staff_set {
  background: #fff;
  padding: 60px 0;
}

#staff_single {
  position: relative;
}
#staff_single #staff_single_header {
  text-align: center;
  margin-bottom: 40px;
}
#staff_single #staff_single_header .title_area .position {
  font-size: 16px;
  color: #999;
  margin-bottom: 10px;
}
#staff_single #staff_single_header .title_area .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}
#staff_single #staff_single_header .title_area .sub_title {
  font-size: 14px;
  color: #666;
}
#staff_single #staff_single_header #staff_social_link {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  position: absolute;
  top: 0;
  right: 0;
}
#staff_single #staff_single_header #staff_social_link li {
  list-style: none;
}
#staff_single #staff_single_header #staff_social_link li a {
  display: inline-block;
  text-decoration: none;
}
#staff_single #staff_single_header #staff_social_link li a img {
  width: 20px;
  height: 20px;
}
#staff_single #staff_single_header #staff_social_link li a span {
  font-weight: bold;
}
#staff_single #staff_single_header #staff_social_link li a i {
  font-size: 20px;
  color: #000;
}
#staff_single #staff_single_desc {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
#staff_single #staff_single_desc .image_wrap {
  flex: 1 1 50%;
  min-height: 300px;
}
#staff_single #staff_single_desc .image_wrap .section-image img {
  width: 100%;
  height: auto;
}
#staff_single #staff_single_desc .image_wrap .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
#staff_single #staff_single_desc .catch_area {
  flex: 1 1 50%;
  background: #000;
  color: #fff;
  padding: 40px;
  align-items: center;
  display: flex;
}
#staff_single #staff_single_desc .catch_area .catch_area_inner .catch {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
#staff_single #staff_single_desc .catch_area .catch_area_inner .desc {
  font-size: 16px;
  line-height: 1.8;
}

#product_image_area {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
#product_image_area .section-image {
  margin: 0 auto;
}
#product_image_area .headline {
  font-size: 24px;
  font-weight: bold;
  writing-mode: vertical-rl;
  text-align: center;
  padding: 10px;
  background: #000;
  color: #fff;
  flex: 0 0 auto;
  margin-right: 20px;
}
#product_image_area .headline span {
  display: inline-block;
}
#product_image_area .image {
  flex: 1 1 auto;
  height: 360px;
  background-size: cover;
  background-position: center;
}

#product_title_area {
  text-align: center;
}
#product_title_area .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#product_title_area .desc {
  font-size: 16px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.card-box1-wrapper {
  margin-bottom: 60px;
}
.card-box1-wrapper .inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}
.card-box1-wrapper .card-title {
  font-size: 20px;
  font-weight: 600;
  border-left: 6px solid var(--main-color);
  padding-left: 14px;
  margin-bottom: 20px;
  color: #333;
}
.card-box1-wrapper .card-content {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.card-box1-wrapper .card-content ul,
.card-box1-wrapper .card-content ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
.card-box1-wrapper .card-content ul {
  list-style: disc;
}
.card-box1-wrapper .card-content ol {
  list-style: decimal;
}
.card-box1-wrapper .card-content li {
  margin-bottom: 0.5em;
}
.card-box1-wrapper .card-content p {
  margin-top: 1em;
}
.card-box1-wrapper .card-content .schedule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.card-box1-wrapper .card-content .schedule-row {
  display: flex;
  flex-direction: column;
  width: calc(50% - 5px);
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 13px;
}
.card-box1-wrapper .card-content .schedule-date {
  font-weight: bold;
  color: #8b6f47;
  margin-bottom: 5px;
}
.card-box1-wrapper .card-content .schedule-detail {
  white-space: pre-wrap;
}

@media screen and (max-width: 599px) {
  .card-box1-wrapper .card-content .schedule-row {
    width: 100%;
  }
}
.card-box2-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.card-box2-wrapper .card-box {
  flex: 1 1 45%;
  position: relative;
  overflow: hidden;
}
.card-box2-wrapper .card-box .card-img-wrapper {
  width: 100%;
  height: auto;
  text-align: center;
}
.card-box2-wrapper .card-box .card-content {
  padding-top: 0;
}
.card-box2-wrapper .card-box .card-content p, .card-box2-wrapper .card-box .card-content ul, .card-box2-wrapper .card-box .card-content ol, .card-box2-wrapper .card-box .card-content dl {
  margin-bottom: 1em;
}
.card-box2-wrapper .card-box .card-content p {
  padding: 20px 0;
}
.card-box2-wrapper .card-box .card-content .link-button {
  margin-top: 1em;
}
.card-box2-wrapper p {
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.card-box2-wrapper ul {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.card-box2-wrapper ul li {
  position: relative;
  margin-bottom: 0.6em;
}
.card-box2-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: -1.2em;
  color: #333;
}
.card-box2-wrapper ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.card-box2-wrapper ol li {
  margin-bottom: 0.6em;
}
.card-box2-wrapper dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
  border-top: 1px solid #000;
}
.card-box2-wrapper dl dt,
.card-box2-wrapper dl dd {
  display: inline-block;
  padding: 10px 0;
  border-bottom: 1px solid #000;
}
.card-box2-wrapper dl dt {
  width: 30%;
  font-weight: bold;
}
.card-box2-wrapper dl dd {
  width: 70%;
  margin: 0;
}
.card-box2-wrapper .schedule-list .schedule-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}
.card-box2-wrapper .schedule-list .schedule-row .schedule-date {
  width: 30%;
  font-weight: bold;
  color: #333;
}
.card-box2-wrapper .schedule-list .schedule-row .schedule-detail {
  width: 70%;
  color: #555;
}

/* --------------------------------------------------------
   Sidebar Layout
   -------------------------------------------------------- */
.l-sidebar {
  width: 300px;
  flex-shrink: 0;
  /* 最新記事リスト */
  /* アーカイブリスト */
  /* 検索フォーム */
}
.l-sidebar .widget {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 30px;
}
.l-sidebar .widget-title {
  font-size: 1.4rem;
  font-weight: 700;
  border-left: 4px solid var(--main-color);
  padding-left: 10px;
  margin-bottom: 15px;
  margin-top: 0;
}
.l-sidebar .sidebar-latest {
  margin-bottom: 30px;
}
.l-sidebar .latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.l-sidebar .latest-list .latest-item {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  border: 1px solid #fff;
}
.l-sidebar .latest-list .latest-item a.latest-link {
  display: block;
  padding: 16px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  height: 120px;
}
.l-sidebar .latest-list .latest-item .latest-title {
  position: absolute;
  bottom: 10px;
  padding: 0 10px;
  left: 0;
  text-align: center;
  width: 100%;
}
.l-sidebar .widget-archive ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-sidebar .widget-archive ul li {
  margin-bottom: 8px;
}
.l-sidebar .widget-archive ul li a {
  color: #333;
  text-decoration: none;
}
.l-sidebar .widget-archive ul li a:hover {
  text-decoration: underline;
}
.l-sidebar .widget-search .search-form {
  display: flex;
}
.l-sidebar .widget-search .search-form .search-field {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
}
.l-sidebar .widget-search .search-form .search-submit {
  background: var(--main-color);
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-sidebar .widget-search .search-form .search-submit i {
  color: #fff;
  font-size: 1rem;
}

.sidebar-banner .widget,
.sidebar-widgets .widget {
  background: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.sidebar-nav {
  margin: 24px 0;
  padding: 0;
}
.sidebar-nav .sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-nav .sidebar-menu li {
  border-bottom: 1px solid #e5e5e5;
}
.sidebar-nav .sidebar-menu li a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
.sidebar-nav .sidebar-menu li a:hover {
  background-color: #f7f7f7;
  color: #000;
}
.sidebar-nav .sidebar-menu li:first-child a {
  border-top: 1px solid #e5e5e5;
}

/* ==components セクションデザイン== */
.related-product-section .section-title,
.staff-list-section .section-title {
  font-size: 26px;
  margin-bottom: 1.5em;
  text-align: center;
}
.free-space-fullscreen-bg img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  z-index: -1;
  overflow: hidden;
}

/* PC：横基準100% */
@media screen and (min-width: 1200x) {
  .free-space-fullscreen-bg img {
    width: 100%;
    height: auto;  /* 縦は自然に → はみ出てもOK */
    --shift-x: 0px;
    --shift-y: 0px;
    --zoom: 1.1;
    transform: translate(var(--shift-x), var(--shift-y)) scale(var(--zoom));
    transition: transform 1.2s ease;
  }
}

/* SP：縦基準100% */
@media screen and (max-width: 1199px) {
  .free-space-fullscreen-bg img {
    width: auto;
    max-width: inherit;
    height: 100%;
    --shift-x: 0px;
    --shift-y: 0px;
    --zoom: 1.2;
    transform: translate(var(--shift-x), var(--shift-y)) scale(var(--zoom));
    transition: transform 1.2s ease;
  }
}
.related-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
}
.related-product-list a:hover, .related-product-list a:hover img {
  opacity: 1;
}
.related-product-list .related-item {
  width: 250px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.related-product-list .related-item .related-thumb {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.related-product-list .related-item .related-thumb img {
  width: auto;
  max-width: initial;
  height: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.related-product-list .related-item:hover .related-thumb img {
  transform: scale(1.1);
}
.related-product-list .related-item .related-title {
  margin-top: 30px;
  font-size: 18px;
}

.staff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.staff-list a:hover, .staff-list a:hover img {
  opacity: 1;
}
.staff-list .staff-item {
  display: block;
  width: 280px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  border: 1px solid #999;
  background-color: #fff;
}
.staff-list .staff-item .staff-thumb {
  overflow: hidden;
  position: relative;
  height: 300px;
}
.staff-list .staff-item .staff-thumb .staff-title_set {
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #fff;
  width: 100%;
  z-index: 2;
}
.staff-list .staff-item .staff-thumb .staff-title_set h3 {
  margin: 10px auto 20px;
}
.staff-list .staff-item .staff-thumb::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
  z-index: 1;
}
.staff-list .staff-item .staff-thumb img {
  display: block;
  width: 110%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s ease;
  transform: translateX(-6%);
  object-position: center center;
  max-width: initial;
  position: relative;
  z-index: 0;
}
.staff-list .staff-item:hover .staff-thumb img {
  transform: translateX(0);
}
.staff-list .staff-item .staff-info {
  padding: 20px;
}
.staff-list .staff-item .staff-info .staff-name {
  font-weight: bold;
  margin-bottom: 0.3em;
}

.product-terms {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  padding: 20px;
  align-items: center;
  font-weight: bold;
}

/* 商品アーカイブ一覧 */
.archive-product-section {
  padding-top: 0;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.product-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
}
.product-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* 左：サムネイル */
.product-thumb {
  flex: 0 0 45%;
}
.product-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 右：テキスト部分 */
.product-group-title {
  text-align: center;
  margin: 0;
  padding: 80px 0;
}

.product-content {
  flex: 1;
}
.product-content .product-title {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.product-content .product-excerpt {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #333;
}
.product-content .product-mini {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: #666;
  white-space: pre-line;
}

/* スマホ：上下1カラム */
@media (max-width: 768px) {
  .product-item {
    flex-direction: column;
    gap: 20px;
  }
  .product-thumb {
    flex: none;
    width: 100%;
  }
}
/* 商品アーカイブナビ */
.product-nav {
  margin-bottom: 40px;
}

.product-nav-list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  border: 1px solid #ccc;
  border-left: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-nav-list li {
  flex: 1;
  border-left: 1px solid #ccc;
  text-align: center;
}
.product-nav-list li a {
  display: block;
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  color: var(--main-color);
  transition: all 0.3s ease;
}
.product-nav-list li a:hover, .product-nav-list li a.active {
  background: #000;
  color: #fff;
  opacity: 1;
}

/* スマホ対応：縦並び */
@media (max-width: 768px) {
  .product-nav-list {
    flex-direction: column;
  }
  .product-nav-list li {
    border-left: none;
    border-top: 1px solid #ccc;
  }
}
.archive_staff {
  padding: 0;
}
.archive_staff .section-title {
  margin-top: 0;
}

/* ----------------------------------------
   Footer
---------------------------------------- */
.site-footer {
  background: var(--footer-color, #fff);
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: var(--footer-a-color, #fff);
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-logo {
  max-width: 200px;
  margin: 0 auto 20px;
  display: block;
}
.site-footer .footer-address,
.site-footer .footer-tel,
.site-footer .footer-comment {
  margin: 5px 0;
  line-height: 1.6;
}
.site-footer .footer-button {
  margin: 20px 0;
}
.site-footer .footer-button .fv-btn2 {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #333;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.site-footer .footer-button .fv-btn2:hover {
  background: #333;
  color: #fff;
}
.site-footer .footer-sns {
  margin: 20px 0;
}
.site-footer .footer-sns ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-sns li {
  display: flex;
  align-items: center;
}
.site-footer .footer-sns li a {
  font-size: 20px;
  color: #333;
  transition: color 0.3s;
}
.site-footer .footer-sns li a:hover {
  color: #a67c52;
}
.site-footer .footer-sns li a img {
  height: auto;
  width: 20px;
}
.site-footer .footer-copy {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 12px;
  color: #777;
}
.site-footer .footer-copy p {
  padding: 0;
  margin: 0;
}

.footer-nav {
  margin-top: 20px;
}

.footer-menu-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  display: inline-block;
  padding: 0 15px;
  position: relative;
}

.footer-menu-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em; /* 文字サイズに合わせる */
  background-color: #ccc; /* 線の色（調整可） */
}

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

.fixed-image {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
}
.fixed-image img {
  height: auto;
  display: block;
}
.fixed-image.pos-top-left {
  top: 0;
  left: 0;
}
.fixed-image.pos-top-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.fixed-image.pos-top-right {
  top: 0;
  right: 0;
}
.fixed-image.pos-center-left {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.fixed-image.pos-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.fixed-image.pos-center-right {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.fixed-image.pos-bottom-left {
  bottom: 0;
  left: 0;
}
.fixed-image.pos-bottom-center {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.fixed-image.pos-bottom-right {
  bottom: 0;
  right: 0;
}

.fixed-image {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.fixed-image.loaded {
  opacity: 1;
}

.single-article {
  border: 1px solid #ccc;
  padding: 20px 0;
  background: #fff;
}
.single-article .single-title {
  padding: 40px;
  padding-bottom: 0;
  font-size: 24px;
}
.single-article .post-meta {
  padding: 40px;
  padding-top: 0;
  color: #666;
  font-size: 12px;
}
.single-article .post-content {
  padding: 40px;
  padding-bottom: 0;
}

/* 前後記事ナビ */
.post-pager {
  display: flex;
  justify-content: space-between;
  margin: 60px 0;
  gap: 20px;
}

.post-pager .pager-item {
  flex: 1;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  overflow: hidden;
  background: #fff;
}

.post-pager .pager-item:hover {
  opacity: 1;
}

.post-pager .pager-thumb {
  flex: 0 0 120px;
  height: 80px;
  overflow: hidden;
}

.post-pager .pager-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-pager .pager-title {
  flex: 1;
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.4;
}

/* 片方だけのときは横幅調整 */
.post-pager .pager-item:only-child {
  margin: 0 auto;
  max-width: 400px;
}

/* セクション全体 */
.news-section {
  margin: 80px 0;
  text-align: center;
}

/* 黒いラベル */
.section-label {
  display: inline-block;
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 30px;
}

/* 記事リスト */
.news-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #666;
}

.news-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #eee;
  transition: opacity 0.3s;
}

.news-item:hover {
  opacity: 0.7;
}

.news-thumb {
  flex: 0 0 45%;
  height: 280px;
  margin-right: 20px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body {
  flex: 1;
  text-align: left;
  padding: 40px;
}

.news-title {
  font-size: 16px;
  margin: 0 0 5px;
}

.news-date {
  font-size: 13px;
  color: #666;
}

.archive-list {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #666;
}

.archive-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #ccc;
}

.archive-thumb {
  position: relative;
  flex: 0 0 45%;
}

.archive-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.archive-cat {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
}

.archive-body {
  flex: 1;
}

.archive-item-title {
  font-weight: bold;
  margin-bottom: 5px;
}

.archive-date {
  font-size: 13px;
  color: #666;
}

/* カテゴリタブ */
.category-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.category-nav a {
  display: block;
  padding: 8px 20px;
  border: 1px solid #ccc;
  color: #000;
  background-color: #fff;
}

.category-nav a.active {
  background: #000;
  color: #fff;
}

/* 404ページ用 */
.section-404 {
  text-align: center;
  padding: 80px 20px;
}
.section-404 .page-title {
  font-size: 2rem;
  margin-bottom: 20px;
}
.section-404 p {
  margin-bottom: 20px;
}

/* 記事タイトル */
.archive-item-title,
.product-title {
  font-size: var(--font-post-title-size, 20px) !important;
  font-weight: var(--font-post-title-bold, normal) !important;
}

/* メガメニュー親タイトル */
.global-nav .menu-list li a {
  font-size: var(--font-menu-title-size, 16px) !important;
  font-weight: var(--font-menu-title-bold, normal) !important;
}

/* メガメニュー子タイトル */
.menu-item-title,
.slider-title-group a,
.menu-card-title {
  font-size: var(--font-menu-subtitle-size, 16px) !important;
  font-weight: var(--font-menu-title-bold2, normal) !important;
}

/* カード画像内テキスト */
.section-card-box-pair .image-background h3 {
  font-size: var(--font-card-text-size, 14px) !important;
  font-weight: var(--font-card-text-bold, normal) !important;
}

/* 固定オーバーレイ画像（slotA / slotB 共通） */
.fixed-slot {
  position: fixed;
  z-index: 0; /* ヘッダーや本文より上に表示するレイヤー */
  pointer-events: none; /* 下のリンクに干渉しないようにする */
  display: none;
}
.fixed-slot img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 1200px) {
  .fixed-slot.show-pc {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fixed-slot.show-tb {
    display: block;
  }
}
@media (max-width: 767px) {
  .fixed-slot.show-sp {
    display: block;
  }
}

/* ▼ 位置プリセット（9ポジ） */
.fixed-slot.top-left {
  top: 20px;
  left: 20px;
}

.fixed-slot.top-center {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.fixed-slot.top-right {
  top: 20px;
  right: 20px;
}

.fixed-slot.center-left {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.fixed-slot.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fixed-slot.center-right {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.fixed-slot.bottom-left {
  bottom: 20px;
  left: 20px;
}

.fixed-slot.bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.fixed-slot.bottom-right {
  bottom: 20px;
  right: 20px;
}
.fv-block .fv-btn {
  background-color: var(--btn-bg, transparent);
  border-color: var(--btn-border, #fff);
  color: var(--btn-color, #fff);
}
.fv-block .fv-btn:hover {
  background-color: var(--btn-hover-bg, transparent);
  color: var(--btn-hover-color, #fff);
}
/* ==responsive レスポンシブデザイン== */
.only-sp {
  display: block !important;
}
@media (min-width: 1200px) {
  .only-sp {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .global-header.menu-type3 .only-sp {
    display: none !important;
    position: absolute; /* flexの流れから外す */
  }
}
@media screen and (max-width: 1199px) {
  .inner {
    max-width: 90%;
  }
  .only-sp.sp-menu-background {
    display: none !important;
  }
  .section {
    padding: 60px 0;
  }
  h2 {
    font-size: 1.5rem;
    margin: 60px 0 30px;
  }
  h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
  }
  .global-header > .inner > .global-nav, .global-header > .inner > .logo-item > .sns-links {
    display: none !important;
  }
  .global-header.menu-type1 .site-logo, .global-header.menu-type2 .logo-item .site-logo, .global-header.menu-type2 .logo-item {
    max-width: 120px;
  }
  .global-header .site-lead, .global-header.menu-type2 .site-logo {
    margin: 0;
  }
  .global-header.menu-type2 .logo-item {
    min-height: 85px;
  }
  .global-header.menu-type2 .logo-item .site-logo {
    min-width: 120px;
  }
  .loading-inner img {
    max-width: 250px !important;
  }
  .js-toggle-menu {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
  }
  .js-toggle-menu i {
    color: var(--hamburger-color, #fff);
  }
  body.is-menu-open .sp-menu {
    transform: translateX(0);
  }
  .sp-menu .sp-menu-background {
    display: none !important;
  }
  body.is-menu-open .sp-menu .sp-menu-background {
    display: block !important;
  }
  .sp-menu-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: none !important;
  }
  body.is-menu-open .sp-menu-background {
    display: block !important;
  }
  .sp-menu {
    transform: translateX(100%);
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--main-color);
    z-index: 1001;
    transition: transform 0.4s ease;
    overflow-y: auto;
  }
  .sp-menu .sns-links {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: auto;
    list-style: none;
    margin: 25px 0 0;
    padding: 0;
    flex-wrap: wrap;
    position: inherit !important;
  }
  .sp-menu .sns-links li a {
    display: inline-block;
    text-decoration: none;
  }
  .sp-menu .sns-links li a i {
    font-size: 24px !important;
    color: #fff !important;
  }
  .sp-menu .sns-links li a img {
    width: 25px;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .sp-menu .sp-menu-inner {
    padding: 2em 1em;
  }
  .sp-menu .sp-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    margin-left: auto;
    display: block;
    margin-bottom: 1em;
    color: #fff;
  }
  .sp-menu .global-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100% !important;
  }
  .sp-menu .global-nav .menu-item {
    border-bottom: 1px solid #ddd;
  }
  .sp-menu .global-nav .menu-item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
    padding: 15px !important;
    font-size: 1.2rem !important;
    text-decoration: none;
    color: #fff !important;
  }
  .sp-menu .global-nav .menu-item > a i {
    margin-left: 0.5em;
    font-size: 0.9em;
  }
  .sp-menu .global-nav .menu-item > a:hover {
    opacity: 1;
    color: #ccc;
  }
  .sp-menu .global-nav .menu-item.is-open > .sub-menu {
    display: block;
  }
  .sp-menu .global-nav .menu-item .sub-menu {
    display: none;
    list-style: none;
    padding: 0;
    background: var(--main-color);
    margin-bottom: 0;
  }
  .sp-menu .global-nav .menu-item .sub-menu li {
    padding: 0;
  }
  .sp-menu .global-nav .menu-item .sub-menu li a {
    color: #fff !important;
    font-size: 1rem !important;
    text-decoration: none;
    padding: 15px 0 !important;
    padding-left: 15px !important;
  }
  .sp-menu .global-nav .menu-item .sub-menu li a:hover {
    text-decoration: underline;
  }
  body.menu-type3 .global-header .sns-links, body.menu-type4 .global-header .sns-links, body.menu-type5 .global-header .sns-links {
    display: flex !important;
  }
  .global-header.menu-type3 li a, .global-header.menu-type4 li a, .global-header.menu-type5 li a {
    padding: 0 !important;
  }
  .global-header.menu-type5.scrolled .inner .global-nav li a {
    color: #fff !important;
  }
  .global-header.menu-type5 {
    height: auto;
  }
  .global-header.menu-type5 .site-logo, .global-header.menu-type5 .global-nav {
    position: inherit;
  }
  .global-header.menu-type3.scrolled, .global-header.menu-type4.scrolled, .global-header.menu-type5.scrolled {
    height: auto;
  }
  /* =========================================================
    ファーストビュー背景（fv-bg）
  ========================================================= */
  .fv-bg.zoom-in.in-view {
    animation: zoomIn 1.2s ease forwards;
  }
  .fv-bg.zoom-out.in-view {
    animation: zoomOut 1.2s ease forwards;
  }
  .fv-bg.slide-up.in-view {
    animation: slideUp 1.2s ease forwards;
  }
  .fv-bg.slide-down.in-view {
    animation: slideDown 1.2s ease forwards;
  }
  .fv-bg.slide-left.in-view {
    animation: slideLeft 1.2s ease forwards;
  }
  .fv-bg.slide-right.in-view {
    animation: slideRight 1.2s ease forwards;
  }
  .card-box.in-view.image-background .card-content {
    padding: 120px 1.5rem;
  }
  .card-box.in-view.animation-slide-up .card-image-inner {
    transform: translate(-50%, calc(-50% - 30px));
  }
  .card-box.in-view.animation-slide-down .card-image-inner {
    transform: translate(-50%, calc(-50% + 30px));
  }
  .card-box.in-view.animation-slide-left .card-image-inner {
    transform: translate(calc(-50% - 30px), -50%);
  }
  .card-box.in-view.animation-slide-right .card-image-inner {
    transform: translate(calc(-50% + 30px), -50%);
  }
  .card-box.in-view.animation-zoom-in .card-image-inner {
    transform: translate(-50%, -50%) scale(1.2);
  }
  .card-box.in-view.animation-zoom-out .card-image-inner {
    transform: translate(-50%, -50%) scale(1);
  }
  .card-box-single.in-view.animation-slide-up .card-bg {
    transform: translate(-50%, calc(-50% - 30px));
  }
  .card-box-single.in-view.animation-slide-down .card-bg {
    transform: translate(-50%, calc(-50% + 30px));
  }
  .card-box-single.in-view.animation-slide-left .card-bg {
    transform: translate(calc(-50% - 30px), -50%);
  }
  .card-box-single.in-view.animation-slide-right .card-bg {
    transform: translate(calc(-50% + 30px), -50%);
  }
  .card-box-single.in-view.animation-zoom-in .card-bg {
    transform: translate(-50%, -50%) scale(1.2);
  }
  .card-box-single.in-view.animation-zoom-out .card-bg {
    transform: translate(-50%, -50%) scale(1);
  }
  .campaign-card.in-view.animation-zoom-in img {
    transform: translate(-50%, -50%) scale(1.5) !important;
  }
  .campaign-card.in-view.animation-zoom-out img {
    transform: translate(-50%, -50%) scale(1.1) !important;
  }
  .campaign-card.in-view.animation-slide-up img {
    transform: translate(-50%, calc(-50% - 30px)) scale(1.3) !important;
  }
  .campaign-card.in-view.animation-slide-down img {
    transform: translate(-50%, calc(-50% + 30px)) scale(1.3) !important;
  }
  .campaign-card.in-view.animation-slide-left img {
    transform: translate(calc(-50% - 30px), -50%) scale(1.3) !important;
  }
  .campaign-card.in-view.animation-slide-right img {
    transform: translate(calc(-50% + 30px), -50%) scale(1.3) !important;
  }
  /* 共通：背景カードの初期状態 */
  .card-bg {
    --shift-x: 0px;
    --shift-y: 0px;
    --zoom: 1.3;
    transform: translate(var(--shift-x), var(--shift-y)) scale(var(--zoom));
    transition: transform 1.2s ease;
  }
  /* ▼ in-viewアニメーション */
  .animation-slide-up.in-view .card-bg {
    --shift-y: -30px;
  }
  .animation-slide-down.in-view .card-bg {
    --shift-y: 30px;
  }
  .animation-slide-left.in-view .card-bg {
    --shift-x: -30px;
  }
  .animation-slide-right.in-view .card-bg {
    --shift-x: 30px;
  }
  .animation-zoom-in.in-view .card-bg {
    --zoom: 1.5;
  }
  .animation-zoom-out.in-view .card-bg {
    --zoom: 1.1;
  }
  /* ▼ パララックスON (JSで更新する値をセット) */
  .card-box-single.parallax-bg {
    position: relative;
    overflow: hidden;
  }
  .card-box-single.parallax-bg .card-bg-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transition: none;
  }
  .section-card-box-pair .card-box-pair-wrapper .card-content {
    padding: 80px 50px;
  }
  .card-box-single .card-inner {
    padding: 60px 20px;
    min-height: inherit;
  }
  .content-sidebar-wrapper {
    display: block;
  }
  .category-nav {
    padding-left: 0;
    flex-wrap: wrap;
  }
  .content-sidebar-wrapper .l-sidebar {
    width: 100%;
    margin-top: 50px;
  }
  .l-sidebar .latest-list .latest-item a.latest-link {
    height: 280px;
  }
  .section-campaign_slider .campaign-slider-wrapper .campaign-slider .slider-row .slider-item {
    flex: none;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .section {
    padding: 40px 0;
  }
  h2 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
  }
  h3 {
    font-size: 1.4rem;
    margin: 20px 0 10px;
  }
  p,
  ul,
  ol {
    margin-bottom: 20px;
  }
  .global-header {
    padding-top: 0;
  }
  .content-sidebar-wrapper {
    flex-direction: column;
  }
  .content-sidebar-wrapper .l-sidebar {
    width: 100%;
    margin-top: 40px;
  }
  .loading-inner img {
    max-width: 150px !important;
  }
  .global-header.menu-type3 .site-logo {
    max-width: 100px;
    padding: 0;
    margin-top: 0;
  }
  .global-header.menu-type5 .site-logo {
    max-width: 140px;
    padding: 20px;
  }
  .global-header.menu-type4 .site-logo, .global-header.menu-type5 .site-logo {
    max-width: 100px;
    margin-top: 0;
    padding: 20px 0;
  }
  .card-box-group-wrapper.has-3 .card-box, .section-card-box-pair .card-box-pair-wrapper.has-2 .card-box {
    width: 100%;
  }
  .section-card-box-pair .card-box-pair-wrapper .card-content {
    padding: 40px 30px;
  }
  .card-box-pair-wrapper {
    flex-direction: column;
  }
  .card-box-pair-wrapper .card-box.image-background {
    order: 1;
  }
  .card-box-pair-wrapper .card-box.image-none {
    order: 2;
  }
  .section-campaign_slider .inner {
    padding: 40px;
  }
  .section-campaign_slider .section-title {
    font-size: 18px;
  }
  .section-campaign_slider .slider-item {
    flex: 0 0 100% !important;
  }
  .site-footer .footer-logo {
    width: 120px;
  }
  .footer-menu-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu-list li {
    position: relative;
    width: 50%;
  }
  .footer-menu-list li a {
    display: block;
    font-size: 13px;
    padding: 10px 0;
  }
  .footer-menu-list li::after {
    content: none;
  }
  .footer-menu-list li:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 1em;
    background-color: #ccc;
  }
  .archive-item {
    display: block;
  }
  .archive-item .archive-body {
    padding: 20px;
  }
  .archive-item .archive-body .archive-item-title {
    margin-top: 0;
  }
  .l-sidebar .latest-list .latest-item a.latest-link {
    height: 150px;
  }
  .single-article .single-title {
    padding: 20px;
    font-size: 18px;
  }
  .single-article .post-meta {
    padding: 20px;
    padding-top: 0;
  }
  .post-pager {
    display: block;
  }
  .post-pager a {
    margin-bottom: 15px;
  }
  .news-item {
    display: block;
  }
  .news-item .news-thumb {
    height: 180px;
    margin-right: 0;
  }
  .news-item .news-body {
    padding: 20px;
  }
  #product_title_area .title {
    font-size: 24px;
  }
  #staff_single #staff_single_desc {
    display: block;
  }
  .staff_set {
    padding-top: 30px;
  }
  .fv-scroll {
    width: 50px;
    right: 15px;
    bottom: max(60px, calc(15px + env(safe-area-inset-bottom)));
  }
  .menu-type5 .fv-block .fv-scroll {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .global-header.menu-type3.scrolled, .global-header.menu-type4.scrolled, .global-header.menu-type5.scrolled {
    height: 70px;
  }
  .fv-copy h2 {
    font-size:  var(--font-size-sp, 2.4rem);
  }
  .fv-copy p {
    font-size:  var(--font-size-pc2, 1.8rem);
  }
}

.home .fv-scroll,
.fv-scroll .js-scroll-btn-type5 {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fv-scroll.is-visible,
.js-scroll-btn-type5.is-visible {
  opacity: 1;
  visibility: visible;
}