html {
  font-size: var(--size-text);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: var(--line-height);
  color: var(--color-text-body);
  background-color: #fff;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  letter-spacing: 0.04em;

  font-feature-settings: "palt";
}

/* container */
.container{
  width: 100%;
  padding-right: var(--width-container-padding);
  padding-left: var(--width-container-padding);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px){
  /* .container{ max-width: 540px; } */
}
@media (min-width: 768px){
  .container{ max-width: calc( 720px + var(--width-container-padding) * 2 ); }
}
@media (min-width: 992px){
  .container{ max-width: 960px; }
}
@media (min-width: 1200px){
  .container{ max-width: calc( var(--width-container) + var(--width-container-padding) * 2 ); }
}

/* Lists */
.entry-body ul,
.entry-body ol {
  list-style: revert;
  padding-left: 1.5em;
  margin-top: 0.5em;
  margin-bottom: var(--margin-element-bottom);
}
.entry-body li {
  margin-top: .5em;
  margin-bottom: .5em;
}

/* Images */
img.inline{
  display: inline;
  vertical-align: middle;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: var(--margin-element-bottom);
}
table th,
table td {
  padding: 8px;
  border-bottom: 1px solid var(--color-light);
  vertical-align: top;
}
table th {
  width: 184px;
  text-align: left;
  font-weight: 400;
}

/* PC時は border-spacing */
@media print, screen and (min-width: 992px) {
  table {
    border-collapse:separate;
    border-spacing: 24px 0; /* ← 横の列間隔 */

    /* 中身を広げる */
    width: calc(100% + 48px);

    /* 位置合わせ：左右に半分戻す */
    margin-left: -24px;
    margin-right: -24px;
  }
  table th,
  table td {
    padding-top: 32px;
  }
}

/* スマホ縦積み */
@media screen and (max-width: 991.98px) {
  table,
  table tbody,
  table tr,
  table th,
  table td {
    display: block;
    width: 100%;
  }
  table tr {
    padding: 8px 0;
  }
  table td {
    border: none;
  }
}

/* Links */
a{
  color: var(--color-text-link);
  text-decoration: underline solid 1px;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}
a:hover{
  color: var(--color-text-link-hover);
  opacity: .6;
}
a:focus-visible {
  color: var(--color-text-link-hover);
  outline: 2px solid var(--color-text-link);
  outline-offset: 2px;
}
a[href^="tel:"] {
    color: currentColor;
    text-decoration: none;
}
@media (hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* =========================================================
   External icon for target="_blank"
   ========================================================= */
.entry a[target="_blank"]:not(
  :has(img),
  [href$=".pdf" i],
  [href$=".doc" i],
  [href$=".docx" i],
  [href$=".xls" i],
  [href$=".xlsx" i],
  [href$=".ppt" i],
  [href$=".pptx" i],
  [href$=".zip" i],
  [download],
  [href^="mailto:"],
  [href^="tel:"],
  .no-ext-icon
)::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-inline: 4px;
  background-color: currentColor;
  -webkit-mask: url("../img/parts/icon_blank_bk.svg") no-repeat center / cover;
  mask: url("../img/parts/icon_blank_bk.svg") no-repeat center / cover;
  vertical-align: -0.08em;
}
@media print, screen and (min-width: 992px) {
  .entry a[target="_blank"]:not(
    :has(img),
    [href$=".pdf" i],
    [href$=".doc" i],
    [href$=".docx" i],
    [href$=".xls" i],
    [href$=".xlsx" i],
    [href$=".ppt" i],
    [href$=".pptx" i],
    [href$=".zip" i],
    [download],
    [href^="mailto:"],
    [href^="tel:"],
    .no-ext-icon
  )::after {
    width: 16px;
    height: 16px;
  }
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: var(--margin-heading-bottom);
    line-height: var(--line-height-low);
}
h1, h2, h3 {
  font-weight: 700;
}
h4, h5, h6 {
  font-weight: 400;
}

h2 { font-size: 24px; }
@media print, screen and (min-width: 992px) {
  h2 { font-size: 40px; }
}
h3 { font-size: 24px; }
@media print, screen and (min-width: 992px) {
  h3 { font-size: 40px; }
}
h4 { font-size: 24px; }

h2 span, h3 span, h4 span, h5 span, h6 span {
  display: inline-block;
}

/* =========================================================
  Heading component
  - mobile first
  - switch to PC at >= 992px
========================================================= */
.c-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---- Large (H2想定) ---- */
.c-heading--lg {
  position: relative;
  padding: 8px 16px 2px;
  gap: 4px;
  min-height: 60px;
}

.c-heading--lg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  bottom: 0;
  background-color: var(--color-primary);
}

/* LG: mobile sizes */
.c-heading--lg .c-heading__en {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
}

.c-heading--lg .c-heading__jp {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-body);
}

/* ---- Medium (H3想定) ---- */
.c-heading--md {
  gap: 4px; 
}

/* MD: mobile sizes */
.c-heading--md .c-heading__jp {
  font-size: 24px;
  font-weight: 400;
  color: var(--color-text-body);
}

.c-heading--md .c-heading__en {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
}

/* =========================================================
  PC (>= 992px)
========================================================= */
@media print, screen and (min-width: 992px) {
  /* LG: PC sizes */
  .c-heading--lg {
    padding: 8px 24px 0;
    gap: 0;
    min-height: 88px;
  }

  .c-heading--lg::before {
    width: 6px;
  }

  .c-heading--lg .c-heading__en {
    font-size: 24px;
  }

  .c-heading--lg .c-heading__jp {
    font-size: 40px;
  }

  /* MD: PC sizes */
  .c-heading--md .c-heading__jp {
    font-size: 32px;
  }

  .c-heading--md .c-heading__en {
    font-size: 16px;
  }
}

/* =========================================================
  Heading variation for top page
========================================================= */

/* ---- Hero / section main title (About Us など) ---- */
.c-heading--hero {
  margin-bottom: 32px;
  gap: 0;
}
@media print, screen and (min-width: 992px) {
  .c-heading--hero {
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 992px) {
  .sec-products .c-heading--hero {
    margin-bottom: 72px;
  }
  .sec-products .c-heading--lead {
    margin-bottom: 96px;
  }
}

.c-heading--hero .c-heading__jp {
  font-size: 16px;
  font-weight: 700;
}

.c-heading--hero .c-heading__en {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

/* 中央寄せしたいとき用 */
.c-heading--center {
  text-align: center;
  align-items: center;
}

/* ---- Lead title (説明見出し) ---- */
.c-heading--lead {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-body);

  line-height: 1.5;
  margin-bottom: 56px;
  
}
.c-heading--lead .c-heading__accent {
  color: var(--color-primary);
}
.c-heading--lead span {
  white-space: nowrap;
}

/* =========================================================
  PC (>= 992px)
========================================================= */
@media print, screen and (min-width: 992px) {
  .c-heading--hero .c-heading__jp {
    font-size: 16px;
  }

  .c-heading--hero .c-heading__en {
    font-size: 80px;
  }

  .c-heading--lead {
    font-size: 32px;
  }
}

/* ボタンのラップ */
.c-section-heading__action {
  margin-top: 48px;
}
@media print, screen and (min-width: 992px) {
  .c-section-heading__action {
    margin-top: 56px;
  }
}
.c-section-heading__action .c-btn {
  margin-bottom: 0;
}

/* カコミ */

/* ボタン */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  padding: 6px 24px;
  margin-bottom: var(--margin-element-bottom);

  color: var(--color-primary);
  border: 1px solid currentColor;
  border-radius: 999px;
  
  text-decoration: none;
  font-weight: 400;

  font-size: 20px;
  line-height: 1.2;

  min-height: 40px;
}
@media (hover: none) and (pointer: coarse) {
  .c-btn {
    padding: 5px 24px 7px;
  }
}

.c-btn:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.c-btn:not(.c-btn--contact):hover {
  opacity: 1;
}
.c-btn__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: currentColor;

  -webkit-mask: url("../img/parts/arrow.svg") no-repeat center calc( 50% + .02em ) / contain;
  mask: url("../img/parts/arrow.svg") no-repeat center calc( 50% + .02em ) / contain;
}

/* お問い合わせ */ 
.c-btn--contact {
  font-size: 16px;
  font-weight: 500;
  min-width: 180px;
}
.c-btn--contact,
.c-btn--contact:hover,
.menu-item--contact .c-btn--contact,
.menu-item--contact .c-btn--contact:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  padding: 6px 24px;
}
.menu-item--contact .c-btn--contact {
  margin: 0;
}	 
						
/* 枠線*/
.c-btn--outline--wh {
  color: #fff;
}
.c-btn--outline--wh:hover {
  background-color: rgba(60,60,60,0.3);
  border-color: currentColor;
}
/* ネクスト */
.c-btn--nextprev {
  color: #fff;
  background-color: rgba(60,60,60,0.3);
}
/* メールアイコン */
.contact-block__button .c-btn {
  gap: 12px;
  font-size: 14px;
}
@media print, screen and (min-width: 992px) {
  .contact-block__button .c-btn {
    font-size: 16px;
  }
}
.c-btn--icon__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: currentColor;

  -webkit-mask: url("../img/parts/mail.svg") no-repeat center calc( 50% + .02em ) / contain;
  mask: url("../img/parts/mail.svg") no-repeat center calc( 50% + .02em ) / contain;
}
@media print, screen and (min-width: 992px) {
  .c-btn--icon__icon {
    width: 24px;
    height: 24px;
  }
}
/* プライバシーポリシーチェック */
.c-btn--check:disabled,
.c-btn--check.is-disabled {
  color: var(--color-light);
  pointer-events: none;
}
.c-btn--check:hover {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* hr */
hr {
  border: 0;
  border-top: 1px solid var(--color-border-hr);
}

/* p */
p {
  line-height: var(--line-height);
  margin-bottom: var(--margin-element-bottom);
}

/* address */
address {
    font-style: normal;
}
address h4 {
  margin-bottom: .5em;
}

/* screen-reader */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}
.screen-reader-text:focus {
  clip: auto !important;
  clip-path: none;
  height: auto;
  width: auto;
  overflow: visible;
  margin: 0;
  padding: 10px 14px;
  top: 10px;
  left: 10px;
  background: #000;
  color: #fff;
  z-index: 10000;
  text-decoration: none;
}

/* =========================
   Site Header
========================= */

.site-header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;

  border-bottom: 1px solid var(--color-light);

  transition: padding 0.3s ease, background-color 0.3s ease;
}
@media print, screen and (min-width: 992px) {
  .site-header-container {
    padding-left: var(--width-container-padding);
    padding-right: var(--width-container-padding);
    margin-right: auto;
    margin-left: auto;

    max-width: calc( var(--width-container) + var(--width-container-padding) * 2 );
  }
}
.site-header-container__flex { 
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: var(--mobile-nav-top);
}
@media print, screen and (min-width: 992px) {
 .site-header-container__flex {
  min-height: auto;
 }
}
.site-header-container__flex__item {
  padding-left: var(--width-container-padding);
  padding-right: var(--width-container-padding);
}
@media print, screen and (min-width: 992px) {
  .site-header-container__flex__item {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ロゴ */
.site-header-logo a,
.site-header-logo img {
  display: block;
}
.site-header-logo img {
  transition: height 0.2s ease;
  height: 16px;
  width: auto;
}
@media print, screen and (min-width: 992px) {
  .site-header-logo img {
    height: clamp(16px, 2.09vw, 24px);
  }
}
@media screen and (min-width: 1200px) {
  .site-header-logo img {
    height: 24px;
  }
}

/* ナビ */
.global-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}
@media print, screen and (min-width: 992px) {
  .global-nav-list {
    display: flex;
    align-items: center;
    gap: min(1.8vw, 48px);
  }
}
@media screen and (min-width: 1200px) {
  .global-nav-list {
    gap: 48px;
  }
}
.global-nav-list li {
  margin: 0;
  padding: 0;
}
.global-nav-list a {
  text-decoration: none;
  color: var(--color-text-body);
  font-size: 16px;
  font-weight: 500;

  display: inline-flex;
}
.global-nav-list > li:not(.menu-item--contact) > a:hover,
.global-nav-list > li:not(.menu-item--contact):focus-within > a,
.global-nav-list > li.current-menu-item:not(.menu-item--contact) > a,
.global-nav-list > li:not(.menu-item--contact) > a[aria-current="page"] {
  color: var(--color-text-link);
  opacity: 1;
}

/* 装飾 */
/* a を基準 */
.global-nav-list > li > a {
  transition: padding 0.3s ease;
  padding-block: 67px;

  line-height: 1;
  white-space: nowrap;

  position: relative;
}
body.is-scrolled .site-header .global-nav-list > li:not(.menu-item--contact) > a {
  padding-block: 24px;
}
/* リンクエリア */
@media print, screen and (min-width: 992px) {
  .global-nav-list > li:not(.menu-item--contact) > a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
/* 下線 */
.global-nav-list > li:not(.menu-item--contact) > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;

  height: 1px;
  background: var(--color-primary);

  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease-out;

  pointer-events: none;
}
/* 表示条件 */
.global-nav-list > li:hover > a::after,
.global-nav-list > li:focus-within > a::after,
.global-nav-list > li.current-menu-item > a::after,
.global-nav-list > li > a[aria-current="page"]::after {
  transform: scaleX(1);
}
/* タッチ端末 */
@media (hover: none), (pointer: coarse) {
  .global-nav-list > li:hover > a::after {
    transform: scaleX(0);
  }
}

/* =========================
   Page Header
========================= */

.page-header {
  padding-top: 32px;
  padding-bottom: 32px;
}
@media print, screen and (min-width: 992px) {
  .page-header {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.page-header h2 {
  margin-bottom: 0;
}

.page-catch {
  margin-bottom: 48px;
}
@media print, screen and (min-width: 992px) {
  .page-catch {
    margin-bottom: 56px;
  }
}

/* =========================
   Breadcrumb
========================= */

.breadcrumb {
  background: #fff;
  font-size: 11px;
}
@media print, screen and (min-width: 992px) {
  .breadcrumb {
    font-size: 14px;
  }
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 16px;
  margin: 0;
  padding: 11px 0;
}
@media print, screen and (min-width: 992px) {
  .breadcrumb-list {
    padding: 20px 0;
  }
}
.breadcrumb-item {
  color: var(--color-text-body);
}
.breadcrumb-item a {
  text-decoration: none;
  color: var(--color-text-link);
}
.breadcrumb-item a:hover {
  text-decoration: underline;
  opacity: 1;
}
.breadcrumb-item:not(:last-child)::after {
  content: "・";
  margin-left: 11px;
  color: var(--color-text-link);
  transform-origin: center;
  display: inline-block;
  transform: scale(2);
}
.breadcrumb-item.is-current {
  color: var(--ccolor-text-body);
}

/* =========================
   Site Footer
========================= */

.site-footer {
  background-color: var(--color-text-body);
  color: #fff;
  margin-top: 72px;

  padding-bottom: 24px;
}
@media print, screen and (min-width: 992px) {
  .site-footer {
    margin-top: 96px;
    padding-bottom: 0;
  }
}
.site-footer__dot,
.site-footer__contact,
.site-footer__bottom {
  padding-right: var(--width-container-padding);
  padding-left: var(--width-container-padding);
}

.site-footer__dot {
  padding-top: calc( var(--tab-like-style) * 2 );
  padding-bottom: var(--tab-like-style);
  position: relative;
  z-index: 0;
}
.site-footer__dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -40px;
  background-color: var(--color-text-body);
  background-image: url(../img/parts/dot.svg);
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
  z-index: -1;
}
@media print, screen and (min-width: 992px) {
  .site-footer__dot::before {   
    bottom: -80px;
  }
}
.site-footer__dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  height: var(--tab-like-style);
  background-color: #fff;
}

/* nextprev */
.site-footer-next-prev {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: var(--width-container);
  margin: 0 auto;

  color: var(--color-text-body);
}
@media screen and (min-width: 768px) {
  .site-footer-next-prev {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }
}

/* トップだけ */
.top-next-prev-container {
  padding: 0;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .top-next-prev-container {
    max-width: none;
  }
}
@media print, screen and (min-width: 992px) {
  .top-next-prev-container {
    padding-right: var(--width-container-padding);
    padding-left: var(--width-container-padding);
  }
}
.top-next-prev {
  gap: 0;
}
.top-next-prev>.site-footer-next-prev__item {
  padding-bottom: 56px;
}
.top-next-prev .site-footer-next-prev__item {
  height: 288px;
}
@media screen and (min-width: 576px) {
  .site-footer-next-prev.top-next-prev {
    flex-direction: row;
    justify-content: space-between;
  }
  .top-next-prev .site-footer-next-prev__item {
    width: calc( 100% / 3 );
  }
}
@media screen and (min-width: 768px) { 
  .top-next-prev .site-footer-next-prev__item {
    max-width: none;
    margin: 0;
  }
}

/* 
.page-home の中で
.site-footer-next-prev を持っていて
.top-next-prev を持っていないものだけ を消す */
.page-home .site-footer-next-prev { display: none; }
.page-home .site-footer-next-prev.top-next-prev { display: flex; }

.site-footer-next-prev__item {
  width: 100%;
  height: 200px;
  background-color: #ccc;

  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;

  overflow: hidden;

  padding-bottom: 40px;
}
@media print, screen and (min-width: 992px) {
  .site-footer-next-prev__item {
    height: 240px;
    padding-bottom: 48px;
  }
}

/* リンクエリアを広げる 親 */
.pointer-relative {
  position: relative;
  isolation: isolate;
}
/* リンクエリアを広げる 子 */
.pointer-relative .c-btn--nextprev::before {
  cursor: pointer;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
}
/* ホバーでカーテンが掛かる */
.pointer-relative::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: rgba(60, 60, 60, 0.5);

  transform: scaleY(1);
  transform-origin: top;
  transition: transform 0.4s ease;
  
  pointer-events: none;
}
/* ホバーで下から上へ */
.pointer-relative:hover::before {
  transform: scaleY(0);
}
/* ボタン文字サイズ */
@media screen and (max-width: 992px) {
  .pointer-relative .c-btn--nextprev {
    font-size: 14px;
  }
  .top-next-prev .pointer-relative .c-btn--nextprev {
    font-size: 16px;
  }
}
/* ボタンホバーのデザインを適用 */
.pointer-relative:hover .c-btn--nextprev {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
/* うっすらマスク */
.pointer-relative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(60, 60, 60, 0.2);

  pointer-events: none;
}
/* 中身はカーテンより上 */
.pointer-relative .c-heading,
.pointer-relative .c-section-heading__action {
  z-index: 1;
}

/* 背景をセット */
.site-footer-next-prev__item {
  background: no-repeat center / cover;
}
.site-footer-next-prev__item.is-products {
  background: url(/assets/img/parts/next-prev-bg-products.jpg) no-repeat center / cover;
}
.site-footer-next-prev__item.is-company,
.site-footer-next-prev__item.is-location {
  background: url(/assets/img/parts/next-prev-bg-company.jpg) no-repeat center / cover;
}
.site-footer-next-prev__item.is-about {
  background: url(/assets/img/parts/next-prev-bg-about.jpg) no-repeat center / cover;
}

.site-footer-next-prev__item.is-greeting {
  background: url(/assets/img/parts/next-prev-bg-greeting.jpg) no-repeat center / cover;
}
.site-footer-next-prev__item.is-overview {
  background: url(/assets/img/parts/next-prev-bg-overview.jpg) no-repeat center / cover;
}


/* 見出し */
.site-footer-next-prev__item .c-heading--hero {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.site-footer-next-prev__item .c-heading--hero .c-heading__en {
  font-size: 32px;
}
@media print, screen and (min-width: 992px) {
  .site-footer-next-prev__item .c-heading--hero .c-heading__en {
    font-size: 40px;
  }
}

.site-footer__contact {
  background-color: var(--bg-light);
  padding-top: 0;
  padding-bottom : 40px;  
}
@media print, screen and (min-width: 992px) {
  .site-footer__contact {
    padding-bottom : 80px;
  }
}
.site-footer__contact__inner {
  max-width: 1016px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 24px;
  color: var(--color-text-body);
  z-index: 0;
  position: relative;  
}
@media print, screen and (min-width: 992px) {
  .site-footer__contact__inner {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 80px;
  }
}
.site-footer__contact__inner__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.site-footer__contact__inner__heading .c-heading__jp {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-body);
}
.site-footer__contact__inner__heading .c-heading__en {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-body);
}
@media print, screen and (min-width: 992px) {
   .site-footer__contact__inner__heading .c-heading__en {
    font-size: 40px;
  }
}
.site-footer__contact__inner__flex {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media print, screen and (min-width: 992px) {
  .site-footer__contact__inner__flex {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.contact-block {
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .contact-block {
    width: 50%;
    padding: 0 32px;
  }
}
@media screen and (min-width: 1200px) {
  .contact-block {
    padding: 0 40px;
  }
}
.contact-block--tel {
  position: relative;
}
.contact-block--tel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -32px;
  height: 1px;
  background: var(--color-light);
}
@media print, screen and (min-width: 992px) {
  .contact-block--tel::after {
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    width: 1px;
    height: auto;
  }
}

.contact-block__lead,
.contact-block__tel,
.contact-block__note {
  line-height: 1.4;
}

.contact-block__lead {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}
@media print, screen and (min-width: 992px) {
  .contact-block__lead {
    font-size: 16px;
  }
}
.contact-block--mail .contact-block__lead {
  margin-bottom: 12px;
}

.contact-block__tel {
  margin-bottom: 8px;
  white-space: nowrap;
}

/* 電話番号タップ設定 */
.telDigits {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
/* スマホ・タッチ環境では押せる感を出す */
@media (hover: none), (pointer: coarse) {
  .telDigits {
    -webkit-tap-highlight-color: transparent;
  }
  .telDigits:active {
    opacity: 0.7;
  }
}
/* PCでは telリンクを無効化 */
@media (hover: hover) and (pointer: fine) {
  .telDigits {
    pointer-events: none;
    cursor: default;
  }
}

.contact-block__tel-label {
  font-size: 20px;
  font-weight: 700;
}
@media print, screen and (min-width: 992px) {
  .contact-block__tel-label {
    font-size: 32px;
  }
}
.contact-block__tel-number {
  font-size: 32px;
  font-weight: 700;
}
@media print, screen and (min-width: 992px) {
  .contact-block__tel-number {
    font-size: 48px;
  }
}
.contact-block__note {
  font-size: 12px;
  color: var(--color-text-body);
  margin-bottom: 0;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 43px;
  margin-bottom: 36px;
  padding-top: 48px;

  padding-right: var(--width-container-padding);
  padding-left: var(--width-container-padding);
  margin-right: auto;
  margin-left: auto;
  max-width: calc( var(--width-container) + var(--width-container-padding) * 2 );
}
/* 変則 */
@media screen and (min-width: 576px) {
  .site-footer__top {
    --site-footer__top: 16px;

    flex-direction: row;
    gap: var(--site-footer__top);
    padding-top: 80px;
  }
  .site-footer__top__left,
  .site-footer__top__right {
    width: calc( 50% - var(--site-footer__top) );
  }
  .site-footer__top__right {
    width: 50%;
  }
  .site-footer__top__right {
    padding-top: 24px;
  }
}

.site-footer-logo {
  margin-bottom: 16px;
}
@media print, screen and (min-width: 992px) {
  .site-footer-logo img {
    width: 240px;
    height: auto;
  }
}

.site-footer__top address {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
@media print, screen and (min-width: 992px) {
  .site-footer__top address {
    font-size: 16px;
  }
}

.site-footer__top__right__heading {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 992px) {
  .site-footer__top__right__heading {
    font-size: 24px;
    margin-bottom: 8px;
  }
}

/* ナビエリア */
.footer-nav-list {
  --footer-nav-gap: 16px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px var(--footer-nav-gap);
  padding: 0;
  margin-bottom: 39px;
}
@media print, screen and (min-width: 992px) {
  .footer-nav-list {
    gap: 24px calc( var(--footer-nav-gap) * 2 );
    margin-bottom: 45px;
  }
}
.footer-nav-list li {
  margin: 0;
  width: calc( ( 100% - var(--footer-nav-gap) ) / 2 );
}
@media print, screen and (min-width: 992px) {
  .footer-nav-list li {
    width: auto;
    position: relative;
  }
  .footer-nav-list li::before {
    content: "";
    position: absolute;
    left: calc( 100% + var(--footer-nav-gap) );
    top: 0;
    width: 1px;
    bottom: 0;
    background-color: var(--color-dark);
  }
  .footer-nav-list li:last-child::before {
    content: none;
  }
}
.footer-nav-list a {
  color: #fff;
  text-decoration: underline;
}

@media print, screen and (min-width: 992px) {
  .bnr01>a>img {
    max-width: 375px;
  }
}

/* コピーライト */
.site-footer__bottom>.inner>.privacy  {
  text-align: right;
}
.site-footer__bottom>.inner>.privacy a {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}
.site-footer__bottom>.inner>.privacy a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-inline-start: 8px;
  background-color: currentColor;
  -webkit-mask: url("../img/parts/icon_blank_bk.svg") no-repeat center / cover;
  mask: url("../img/parts/icon_blank_bk.svg") no-repeat center / cover;
  vertical-align: -0.08em;
}
.site-footer__bottom>.inner>.copyright {
  border-top: 1px solid var(--color-dark);
  font-size: 10px;
  font-weight: 500;

  min-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 8px;
}
@media print, screen and (min-width: 992px) {
  .site-footer__bottom>.inner {
    border-top: 1px solid var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding-bottom: 16px;
  }
  .site-footer__bottom>.inner>.privacy {
    order: 1;
  }
  .site-footer__bottom>.inner>.privacy a {
    font-size: 16px;
    margin-bottom: 0;
  }
  .site-footer__bottom>.inner>.privacy a[target="_blank"]::after {
    width: 16px;
    height: 16px;
  }
  .site-footer__bottom>.inner>.copyright {
    border-top: none;
    font-size: 16px;
    min-height: 0;
    justify-content: start;
    padding-bottom: 0;
    order: 0;
  }
}

/* トップに戻るボタン */
.c-to-top {
  position: fixed;
  right: 0;
  bottom: 0;

  width: 40px;
  height: 40px;
  border-radius: 0;

  background: var(--color-primary);;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease, bottom 0.3s ease;
  z-index: 999;
}
@media print, screen and (min-width: 992px) {
  .c-to-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  body.is-footer-visible .c-to-top {
    bottom: 64px;
  }
}
body.is-scrolled .c-to-top {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.is-scrolled .c-to-top:hover {
  opacity: .6;
}
/* SVGアイコン */
.c-to-top__icon {
  width: 14px;
  height: 20px;
  background-color: #fff;

  -webkit-mask: url("../img/parts/totop.svg") no-repeat center / contain;
  mask: url("../img/parts/totop.svg") no-repeat center / contain;
}

/* モバイルナビ */
.c-mobile-menu-btn,
.c-mobile-nav {
  display: none;
}
@media screen and (max-width: 991.98px) {

  /* ========== Mobile Menu Button ========== */
  .c-mobile-menu-btn{
    position: fixed;
    right: 21px;
    top: 16px;
    z-index: 1100; /* navより上 */

    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: var(--color-primary);

    display: grid;
    place-items: center;

    /* 表示状態 */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;

    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  /* 開いている時は常に押せる */
  /* body.is-nav-open .c-mobile-menu-btn{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  } */

  /* 共通アイコン設定 */
  .c-mobile-menu-btn__icon{
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #fff;

    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  /* 開く（≡） */
  .c-mobile-menu-btn__icon--open{
    -webkit-mask-image: url("../img/parts/icon-menu.svg");
    mask-image: url("../img/parts/icon-menu.svg");
    opacity: 1;
    transform: scale(1);
  }

  /* 閉じる（×） */
  .c-mobile-menu-btn__icon--close{
    -webkit-mask-image: url("../img/parts/icon-close.svg");
    mask-image: url("../img/parts/icon-close.svg");
    opacity: 0;
    transform: scale(0.8);
  }

  /* 開いているとき：アイコン切替 */
  body.is-nav-open .c-mobile-menu-btn__icon--open{
    opacity: 0;
    transform: scale(0.8);
  }

  body.is-nav-open .c-mobile-menu-btn__icon--close{
    opacity: 1;
    transform: scale(1);
  }

  /* ========== Mobile Nav ========== */
  .c-mobile-nav{
    display: block;
    position: fixed;
    top: var(--mobile-nav-top);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    pointer-events: none;
  }

  .c-mobile-nav__panel{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    background: rgba(255,255,255,0.96);

    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .c-mobile-nav__list {
    padding-right: var(--width-container-padding);
    padding-left: var(--width-container-padding);
    margin-bottom: 40px;
  }

  /* 開 */
  body.is-nav-open .c-mobile-nav{
    pointer-events: auto;
  }

  body.is-nav-open .c-mobile-nav__overlay{
    opacity: 1;
  }

  body.is-nav-open .c-mobile-nav__panel{
    transform: translateX(0);
  }

  /* メニュー */
  .c-mobile-nav__link {
    padding: 16px;
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--color-text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;

    border-bottom: 1px solid var(--color-light);
    transition: border-color 0.2s ease;

    position: relative;
    padding-right: 40px;
  }
  /* hover or current */
  .c-mobile-nav__link:hover {
    opacity: 1;
  }
  .c-mobile-nav__link:hover,
  .c-mobile-nav__link[aria-current="page"] {
    border-bottom-color: var(--color-primary);
  }
  .c-mobile-nav__link::before,
  .c-mobile-nav__link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);

    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;

    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  /* 通常アイコン */
  .c-mobile-nav__link::after {
    -webkit-mask-image: url("../img/parts/arrow.svg");
    mask-image: url("../img/parts/arrow.svg");
    opacity: 0.7;
  }

  /* アクティブアイコン（最初は透明） */
  .c-mobile-nav__link::before {
    -webkit-mask-image: url("../img/parts/active.svg");
    mask-image: url("../img/parts/active.svg");
    opacity: 0;
    background-color: var(--color-primary);
  }

  /* hover/currentでクロスフェード */
  .c-mobile-nav__link:hover::after,
  .c-mobile-nav__link[aria-current="page"]::after {
    opacity: 0;
    transform: translateY(-50%) translateX(0);
  }

  .c-mobile-nav__link:hover::before,
  .c-mobile-nav__link[aria-current="page"]::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.c-mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.c-mobile-nav__contact .contact-block--tel::after {
  content: none;
}

/* ---------------------------------------------

  1/2カラムのスイッチ

--------------------------------------------- */

.site-layout--twocol{
  display:grid;
}

/* SPでは sidebar → main の順 */
.site-layout--twocol .main-section{
  order:2;
}

.site-layout--twocol .sub-section{
  order:1;
}

/* PCのみ2カラム */
@media print, screen and (min-width: 992px) {

  .site-layout--twocol {
    grid-template-columns:minmax(0,1fr) 184px;
    gap: 64px;
    align-items:start;
  }

  .site-layout--twocol .main-section{ order:1; }
  .site-layout--twocol .sub-section{ order:2; }

}
@media screen and (min-width: 1200px) {
  .site-layout--twocol {
    gap: 128px;
  }
}

/* お問い合わせページのみ */
@media print, screen and (min-width: 992px) {

  .page-contact .site-layout--twocol{
    grid-template-columns:136px minmax(0,1fr);
    gap: clamp(24px, 6vw, 88px);
  }
  .page-contact .site-layout--twocol .main-section{ order:2; }
  .page-contact .site-layout--twocol .sub-section{ order:1; }

}

/* gridはみ出し防止 */
.main-section{
  min-width:0;
}

/* sidebarが空のとき消す */
.sub-section:empty{
  display:none;
}

/* =========================
   サイドバー
========================= */
.sub-section {
  margin-bottom: 48px;
}
@media print, screen and (min-width: 992px) {
  .sub-section {
    position: sticky;
    top: 120px;
    align-self: start;
  }
}

/* ヘッダーに隠れない */
section[id] {
  scroll-margin-top: 72px;
}
@media print, screen and (min-width: 992px) {
  section[id] {
    scroll-margin-top: 120px;
  }
}

/* =========================
   ページ内リンクナビ
========================= */
.page-anchor-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;

  padding-left: 24px;

  color: var(--color-text-body);
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s ease;
}

/* 2つの疑似要素を同じ位置に重ねる */
.page-anchor-nav a::before,
.page-anchor-nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 14px;
  height: 14px;

  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;

  will-change: transform, opacity;
}
/* （最初のアイテムにトランジション不要） */
.page-anchor-nav ul li:first-child a::before,
.page-anchor-nav ul li:first-child a::after {
  transition:
    none;
}

/* 現在地アイコン（丸） */
.page-anchor-nav a::before {
  -webkit-mask-image: url("../img/parts/active.svg");
  mask-image: url("../img/parts/active.svg");
  mask-size: 8px;
  background-color: var(--color-text-link);
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
}

/* 通常 / 通過済みアイコン（下向き矢印） */
.page-anchor-nav a::after {
  -webkit-mask-image: url("../img/parts/arrow.svg");
  mask-image: url("../img/parts/arrow.svg");
  background-color: var(--color-text-body);
  opacity: 1;
  transform: translateY(-50%) rotate(90deg) scale(0.9);
}

/* 現在地 */
.page-anchor-nav a.is-current {
  color: var(--color-text-link);
}

.page-anchor-nav a.is-current::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.page-anchor-nav a.is-current::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scale(0.9);
}

/* 通過済み */
.page-anchor-nav a.is-passed {
  color: var(--color-text-body);
}

.page-anchor-nav a.is-passed::before {
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
}

.page-anchor-nav a.is-passed::after {
  background-color: var(--color-text-body);
  opacity: 0.7;
  transform: translateY(-50%) rotate(90deg) scale(1);
}

/* 見出しは除外 */
.page-anchor-nav h2 {
  display: none;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}
.page-anchor-nav h2 a {
  padding: 0;
}
.page-anchor-nav h2 a::before, 
.page-anchor-nav h2 a::after {
  content: none;
}
@media print, screen and (min-width: 992px) {
  .page-anchor-nav h2 {
    display: block;    
  }
}

/* レイアウト調整 */
.page-anchor-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
@media print, screen and (min-width: 992px) {
  .page-anchor-nav ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* 文字サイズ設定 */
.page-anchor-nav ul a {
  font-size: 14px;
}

/* =========================
   Contact Step Nav
========================= */
.contact-step-nav {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 縦ライン */
.contact-step-nav::before {
  content: "";
  position: absolute;
  top: -24px;
  bottom: 0;
  left: 3px;
  width: 2px;
  background-color: var(--color-light);
}

.contact-step-nav__item {
  position: relative;
  padding-left: 24px;
  margin-top: 24px;
}

.contact-step-nav__item + .contact-step-nav__item {
  margin-top: 24px;
}

.contact-step-nav__link,
.contact-step-nav__text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  position: relative;

  color: var(--color-text-body);
  text-decoration: none;
  line-height: 1.2;
  transition: color 0.2s ease;
}

/* 点 */
.contact-step-nav__link::before,
.contact-step-nav__text::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left:-23px;
  width:6px;
  height:6px;
  border-radius: 50%;
  background-color: var(--color-light);
  transform: translateY(-50%);
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.contact-step-nav__step {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.contact-step-nav__label {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

/* 現在地 */
.contact-step-nav__item.is-current .contact-step-nav__link,
.contact-step-nav__item.is-current .contact-step-nav__text {
  color: var(--color-text-body);
}

.contact-step-nav__item.is-current .contact-step-nav__link::before,
.contact-step-nav__item.is-current .contact-step-nav__text::before {
  background-color: var(--color-text-link);
}

/* 完了済み */
.contact-step-nav__item.is-done .contact-step-nav__link,
.contact-step-nav__item.is-done .contact-step-nav__text {
  color: var(--color-text-body);
}

.contact-step-nav__item.is-done .contact-step-nav__link::before,
.contact-step-nav__item.is-done .contact-step-nav__text::before {
  background-color: var(--color-text-body);
}

/* 未到達 */
.contact-step-nav__item.is-upcoming .contact-step-nav__link,
.contact-step-nav__item.is-upcoming .contact-step-nav__text {
  color: var(--color-light);;
}

.contact-step-nav__item.is-upcoming .contact-step-nav__link::before,
.contact-step-nav__item.is-upcoming .contact-step-nav__text::before {
  background-color: var(--color-light);
}

/* スマホでは横並び */
@media screen and (max-width: 991.98px) {
  .contact-step-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
  }

  /* 縦ラインを横ラインに変更 */
  .contact-step-nav::before {
    top: 6px;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 2px;
  }

  .contact-step-nav__item {
    --contact-step-nav-item-padding-top: 16px;
    flex: 1 1 0;
    margin-top: 0;
    padding-left: 0;
    padding-top: var(--contact-step-nav-item-padding-top);
    text-align: center;
  }

  .contact-step-nav__item + .contact-step-nav__item {
    margin-top: 0;
  }

  .contact-step-nav__link,
  .contact-step-nav__text {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
  }

  /* 点を各アイテムの中央に置く */
  .contact-step-nav__link::before,
  .contact-step-nav__text::before {
    top: calc( var(--contact-step-nav-item-padding-top) * -1 );
    left: 50%;
    transform: translate(-50%, 0);
  }

  .contact-step-nav__step {
    font-size: 16px;
    line-height: 1.2;
  }

  .contact-step-nav__label {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ---------------------------------------------

  c-split-contents

------------------------------------------------ */

.c-split-contents {
  display: grid;
  gap: 0;

  margin-bottom: 48px;
}
@media print, screen and (min-width: 992px) {
  .c-split-contents {
    grid-template-columns: 1fr 600px;
    align-items: start;

    margin-bottom: 64px;
  }
  .c-split-contents.has-table {
    grid-template-columns: 1fr clamp(0px, 100%, 704px);
  }
  /* 見出しは1行目で横断 */
  .c-split-contents__heading {
    grid-column: 1 / -1;
  }
  /* 本文は2列目から開始（左は空白になる） */
  .c-split-contents__body {
    grid-column: 2;
  }
}

/* ---------------------------------------------

  bleed-left-bg

------------------------------------------------ */

.page-visual,
.bleed-left-bg,
.block-img-wrap {
  margin-bottom: 48px;
}

.bleed-left-bg {
  --bleed-left-bg :min(64vw, 480px);
  height: var(--bleed-left-bg);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 992px) {
  .bleed-left-bg {
    height: 480px;
    margin-right: 0;
  }
}

/* 私たちについて */
.bleed-left-bg--about01 {
  background-image: url("/assets/img/about/pixta_106421535_L@1x.jpg");

  background-image: -webkit-image-set(
    url("/assets/img/about/pixta_106421535_L@1x.jpg") 1x,
    url("/assets/img/about/pixta_106421535_L@2x.jpg") 2x
  );
  background-image: image-set(
    url("/assets/img/about/pixta_106421535_L@1x.jpg") 1x,
    url("/assets/img/about/pixta_106421535_L@2x.jpg") 2x
  );
}
/* 会社情報 */
.bleed-left-bg--company01 {
  background-image: url("/assets/img/company/office4@1x.jpg");

  background-image: -webkit-image-set(
    url("/assets/img/company/office4@1x.jpg") 1x,
    url("/assets/img/company/office4@2x.jpg") 2x
  );
  background-image: image-set(
    url("/assets/img/company/office4@1x.jpg") 1x,
    url("/assets/img/company/office4@2x.jpg") 2x
  );
}
/* .bleed-left-bg--company02 */
.bleed-left-bg--company02__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bleed-left-bg--company02 {
  background-color: var(--bg-light);
}
.company-logo-position {
  position: relative;
}
.company-logo-position .bleed-left-bg--company02__logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--bleed-left-bg);
}
@media print, screen and (min-width: 992px) {
  .company-logo-position .bleed-left-bg--company02__logo {
    left: calc( (100vw - 880px) / -2 );
  }
}
@media screen and (min-width: 1200px) {
  .company-logo-position .bleed-left-bg--company02__logo {
    left: calc( (100vw - 1135px) / -2 );
  }
}
/* .bleed-left-bg--company03 {
  background-image: url("/assets/img/company/company_map@1x.png");

  background-image: -webkit-image-set(
    url("/assets/img/company/company_map@1x.png") 1x,
    url("/assets/img/company/company_map@2x.png") 2x
  );
  background-image: image-set(
    url("/assets/img/company/company_map@1x.png") 1x,
    url("/assets/img/company/company_map@2x.png") 2x
  );
  background-position: center left;
} */
.centerposition {
  display: flex;
  justify-content: center;
  align-items: center;
}
.bleed-left-bg--company03 {
  position: relative;
}
.centerposition {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--bleed-left-bg);
}
@media print, screen and (min-width: 992px) {
  .centerposition {
    left: 14%;
  }
}
@media screen and (min-width: 1200px) {
  .centerposition {
    left: 11%;
  }
}
.centerposition img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

/* ---------------------------------------------

  会社概要

------------------------------------------------ */
.c-company-table ul,
.c-company-table li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-officers{
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 32px;
  row-gap: 0;
  margin: 0;
}

.company-officers dt{
  margin: 0;
  font-weight: 400;
}

.company-officers dd{
  margin: 0;
}

/* ---------------------------------------------
  c-google-map
--------------------------------------------- */
.map-element {
  margin-bottom: 16px;
}
.c-google-map iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
}

.location-item {
  margin-bottom: 40px;
}

/* ---------------------------------------------

  製品紹介

------------------------------------------------ */

.page-visual {
  height: 216px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media print, screen and (min-width: 992px) {
  .page-visual {
    height: 400px;
    margin-left: 0;
    margin-right: 0;
  }
}
.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------------------
  c-product-grid
------------------------------------------------ */
.entry-body ul.c-product-grid,
.entry-body ul.c-product-grid li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-product-grid {
  display: grid;
  gap: 24px 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media print, screen and (min-width: 992px){
  .c-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 48px 24px;
  }
}

/* ---------------------------------------------
  c-product-card
------------------------------------------------ */
.c-product-card{
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;

  color: inherit;
  text-decoration: none;
}

.c-product-card__img{
  display: block;
  width: 100%;
  aspect-ratio: 288 / 192;
  overflow: hidden;
  background: var(--color-light);
}

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

.c-product-card__title{
  display: inline;
  font-size: 14px;
  line-height: 1.6;
}
@media print, screen and (min-width: 992px) {
  .c-product-card__title{
    font-size: 16px;

    display: flex;
    align-items: center;
  }
  .c-product-card__title span {
    width: calc( 100% - ( 24px + 16px ) );
    padding-right: 16px;
  }
}

.c-product-card__title::after{
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-inline-start: 4px;
  background-color: var(--color-text-link);
  -webkit-mask: url("../img/parts/icon_blank_bk.svg") no-repeat center / cover;
  mask: url("../img/parts/icon_blank_bk.svg") no-repeat center / cover;
  vertical-align: -0.08em;
}
@media print, screen and (min-width: 992px) {
  .c-product-card__title::after {
    width: 24px;
    height: 24px;
    margin: 0;
  }
}

/* ホバー（お好みで） */
.c-product-card:hover .c-product-card__title{
  text-decoration: underline;
}

/* ---------------------------------------------

  お問い合わせ

------------------------------------------------ */

/* お問い合わせページでは非表示 */
.page-contact .site-footer__dot,
.page-contact .site-footer__contact {
  display: none;
}

/* ---------------------------------------------
  c-form
------------------------------------------------ */

.c-form {
  max-width: 704px;
}

.c-form__rows {
  display: grid;
  gap: 32px;
}

/* 1行 */
.c-form-row {
  display: grid;
  gap: 8 px;
  align-items: start;
}

/* PC：左ラベル / 右入力 */
@media print, screen and (min-width: 992px) {
  .c-form-row {
    grid-template-columns: 232px 1fr;
    column-gap: 80px;
    row-gap: 0;
  }
}

/* 左側（ラベル + バッジ） */
.c-form-row__head {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 40px; /* 入力高さに合わせる */
}

.c-form-row__label {
  font-size: 16px;
  line-height: 1.4;
}

/* 右側 */
.c-form-row__body {
  display: grid;
  gap: 8px;
}

/* 必須/任意バッジ */
.c-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 22px;
  padding: 0 8px;
  border-radius: 0;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.c-badge--required {
  background: var(--color-primary);
  color: #fff;
}

.c-badge--optional {
  background: var(--color-light);
  color: var(--color-text-body);
}

/* エラーメッセージ（赤帯） */
.c-form-row__msg {
  display: none;
  margin: 0;
  padding: 8px 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 0;

  width: fit-content;

  position: relative;
}
.c-form-row__msg::before {
  content: '';
  border: 8px solid transparent;
  position: absolute;
  z-index: -1;
  border-right-color: var(--color-primary);
  bottom: -8px;
  left: -8px;
}

/* 状態クラスで表示 */
.c-form-row.is-error .c-form-row__msg {
  display: inline-block;
}

/* 入力共通 */
.c-input,
.c-select__field {
  width: 100%;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--color-light);
  border-radius: 4px;
  background: #fff;
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1.2;
  outline: none;
}

.c-input::placeholder {
  color: var(--color-light);
}

/* フォーカス */
.c-input:focus,
.c-select__field:focus {
  border-color: #999;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

/* エラー時の入力枠（状態クラス） */
.c-form-row.is-error .c-input,
.c-form-row.is-error .c-select__field {
  border-color: var(--color-primary);
}

/* 将来、ブラウザ標準バリデーションを使う場合に */
/* .c-form :is(input, select):invalid {
  JSを入れるまで赤枠にしたくないなら、このブロックごと消してOK
} */ 

/* 2分割入力 */
.c-input-grid {
  display: grid;
  gap: 12px;
}
.c-input-grid--2 {
  grid-template-columns: 1fr 1fr;
}

/* select 右の▼ */
.c-select {
  position: relative;
}
.c-select__field {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
}
.c-select::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 49%;

  width: 8px;
  height: 8px;

  border-right: 1px solid var(--color-light);
  border-bottom: 1px solid var(--color-light);

  transform: translateY(-50%) rotate(45deg);

  pointer-events: none;
}

/* textarea */
.c-textarea{
  height:auto;
  min-height:160px;
  resize:vertical;
  line-height:1.6;
}

/* 同意 */
.c-form__consent {
  margin-top: 56px;
}

.c-form__consentText {
  margin-bottom: 4px;
  font-size: 16px;
}

.c-link {
  color: var(--color-text-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.c-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.c-check__input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--color-primary);
}

.c-check__text {
  font-size: 16px;
}

/* ボタン */
.c-form__actions {
  margin-top: 56px;
}
@media screen and (max-width: 767.98px) {
  .c-form__actions {
    display: flex;
    justify-content: center;
  }
}

/* 確認画面 ボタン（戻る＋送信） */
.c-form__actions--confirm {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
@media screen and (max-width: 767.98px) {
  .c-form__actions--confirm {
    flex-direction: column;
  }
}

/* 確認リスト */
.c-confirm-list {
  border-top: 1px solid var(--color-border, #e0e0e0);
  margin-bottom: 48px;
}
.c-confirm-list__row {
  display: flex;
  border-bottom: 1px solid var(--color-border, #e0e0e0);
  padding: 16px 0;
  gap: 24px;
}
@media screen and (max-width: 767.98px) {
  .c-confirm-list__row {
    flex-direction: column;
    gap: 4px;
  }
}
.c-confirm-list__label {
  flex: 0 0 200px;
  font-weight: 700;
  color: var(--color-text, #333);
}
.c-confirm-list__value {
  flex: 1;
  word-break: break-all;
}
.c-confirm-list__value--pre {
  white-space: pre-wrap;
}

/* 戻るボタン */
.c-btn--back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: 2px solid currentColor;
  background: transparent;
  color: var(--color-text, #333);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.c-btn--back:hover {
  background: var(--color-text, #333);
  color: #fff;
}

/* 送信完了 */
.c-thanks {
  padding: 40px 0;
}
.c-thanks__text {
  line-height: 2;
  margin-bottom: 24px;
}
.c-thanks__note {
  font-size: 14px;
  color: var(--color-text-sub, #666);
  line-height: 1.8;
  margin-bottom: 40px;
}
.c-thanks__btn {
  display: flex;
}


/* ---------------------------------------------

  トップページ メインビジュアル

------------------------------------------------ */

/* メインビジュアル 上余白 */
.p-home-fv {
  margin-top: 40px;
}
@media print, screen and (min-width: 992px) {
  .p-home-fv {
    margin-top: 32px;

    /* padding-right: var(--width-container-padding);
    padding-left: var(--width-container-padding);
    margin-right: auto;
    margin-left: auto;
    max-width: calc(var(--width-container) + var(--width-container-padding) * 2); */
  }
}

/* メインビジュアル フェードイン */
.mainvisual-01-bg,
.mainvisual-heading--en,
.mainvisual-heading--jp,
.mainvisual-02-bg,
.scroll-down {
  opacity: 0;
  transform: translateY(16px);
  animation: fv-fadein 0.9s cubic-bezier(.22,.61,.36,1) forwards;
}

.mainvisual-01-bg { animation-delay: .9s; }
.mainvisual-heading--en { animation-delay: 1.05s; }
.mainvisual-heading--jp { animation-delay: 1.2s; }
.mainvisual-02-bg { animation-delay: 1.35s; }
.scroll-down { animation-delay: 1.9s; }

@-webkit-keyframes fv-fadein {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fv-fadein {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   メインビジュアル レイアウトSP
================================ */

.p-home-fv__grid {
  display: grid;
  gap: 27px;
}
/* 共通 */
.p-home-fv__block {
  display: grid;
  font-weight: bold;
}

/* ===============================
  
  メインビジュアル レイアウトPC
  
================================ */

@media print, screen and (min-width: 992px) {

  .p-home-fv__grid {
    grid-template-columns: minmax(0,1fr) 21%;
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "block2 block1"
      "block3 block3";
    gap: 0 16px;
  }
  .p-home-fv__block--1 {
    grid-area: block1;
    min-height: 160px;
  }
  .p-home-fv__block--2 {
    grid-area: block2;
    min-height: 160px;
  }
  .p-home-fv__block--3 {
    grid-area: block3;
    min-height: 420px;
  }

  .p-home-fv__block--2 {
    padding-top: 64px;
  }

}
@media screen and (min-width: 1200px) {
  .p-home-fv__grid {
    grid-template-columns: minmax(0,1fr) 18%;
  }
}

/* ===============================
   メインビジュアル style
================================ */

.mainvisual-01-bg {
  width: clamp(128px, 24vw, 100%);
  height: clamp(92px, 16vw, 272px);
  margin-left: auto;
  margin-bottom: 4px;

  background: url("/assets/img/mainvisual/mainvisual-01_moz.jpg") center / cover no-repeat;
}
/* @media print, screen and (min-width: 992px) {
  .mainvisual-01-bg {
    width: 240px;
    height: 184px;
  }
} */
@media screen and (min-width: 1200px) {
  .mainvisual-01-bg {
    height: clamp(92px, 13.7vw, 240px);
  }
}

.mainvisual-02-bg {
  width: 80%;
  height: 48vh;
  margin-right: auto;

  background-image: url("/assets/img/mainvisual/pixta_80933048_L2@1x.jpg");

  background-image: -webkit-image-set(
    url("/assets/img/mainvisual/pixta_80933048_L2@1x.jpg") 1x,
    url("/assets/img/mainvisual/pixta_80933048_L2@2x.jpg") 2x
  );
  background-image: image-set(
    url("/assets/img/mainvisual/pixta_80933048_L2@1x.jpg") 1x,
    url("/assets/img/mainvisual/pixta_80933048_L2@2x.jpg") 2x
  );

  background-position: right 14% bottom 48%;
  background-repeat: no-repeat;
  background-size: 744px 496px;
}
@media screen and (min-width: 768px) {
  .mainvisual-02-bg {
    height: 40vh;
  }
}
/* 変則 */
@media screen and (min-width: 944px) {
  .mainvisual-02-bg {
    background-position: right 4% center;
    background-size: 1449px 966px;
  }
}
@media print, screen and (min-width: 992px) {
  .mainvisual-02-bg {
    width: 88%;
    max-width: 1676px;
    height: 720px;
  }
}
/* 変則 */
@media screen and (min-width: 1656px) {
  .mainvisual-02-bg {
    background-position: center;
    background-size: cover;
  }
}

/* 英語 */
.mainvisual-heading--en {
  text-transform: uppercase;
  font-weight: 900;
  display: flex;
  flex-direction: column;

  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -.016em;
  margin-bottom: 0.24em;
}
@media screen and (min-width: 576px) {
  .mainvisual-heading--en {
    font-size: min(6.4vw, 72px);
    line-height: 1;
    letter-spacing: -.008em;
    margin-bottom: 0.5em;
  }
}
@media print, screen and (min-width: 992px) {
  .mainvisual-heading--en {
    font-size: min(4.8vw, 72px);
  }
}
/* 変則 */
@media screen and (min-width: 1310px) {
  .mainvisual-heading--en {
    font-size: 72px;
  }
}
.mainvisual-heading--en .mainvisual-heading--en__accent {
  color: var(--color-primary);
}

/* 日本語 */
.mainvisual-heading--jp {
  font-size: min(3.76vw, 21px);
  font-weight: 500;

  font-feature-settings: normal;
  letter-spacing: -.016em;

  margin-bottom: 0;
}
@media screen and (min-width: 576px) {
  .mainvisual-heading--jp {
    margin-bottom: .5em;
    font-weight: 700;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual-heading--jp {
    font-size: min(3.76vw, 24px);
  }
}
@media print, screen and (min-width: 992px) {
  .mainvisual-heading--jp {
    margin-bottom: min(2.1vw, 32px);
  }
}

.has-scrool-arrow-container {
  padding-left: 21px;
}
@media screen and (min-width: 576px) {
  .has-scrool-arrow-container {
    padding-left: 24px;
  }
}
@media print, screen and (min-width: 992px) {
  .has-scrool-arrow-container {
    padding-left: 40px;
  }
}

/* 線 */
.has-scrool-arrow-container.scrool-arrow2-relative {
    padding-left: 13px;
  }
@media screen and (min-width: 768px) {
  .has-scrool-arrow-container.scrool-arrow2-relative {
    padding-left: 23px;
  }
}

.scrool-arrow1-relative,
.scrool-arrow2-relative {
  position: relative;
}
.scrool-arrow2-relative {
  padding-top: 4px;
}
@media screen and (min-width: 768px) {
  .scrool-arrow2-relative {
    padding-top: 0;
  }
}
.scrool-arrow {
  position: absolute;
  width: 4px;
  
  background: var(--color-primary);  
  z-index: 999;

  -webkit-animation: scroll-arrow-anime 3s ease infinite both;
  animation: scroll-arrow-anime 3s ease infinite both;
}
@media screen and (min-width: 768px) {
  .scrool-arrow {
    width: 8px;
  }
}

.scrool-arrow1-relative .scrool-arrow {
  top: -24px;
  right: 21px;
  height: 72px;
}
@media print, screen and (min-width: 992px) {
  .scrool-arrow1-relative .scrool-arrow {
    top: -32px;
    right: 40px;
    height: 128px;
  }
}
.scrool-arrow2-relative .scrool-arrow {
  top: -7px;
  left: 0;
  height: 240px;
}
@media screen and (min-width: 768px) {
  .scrool-arrow2-relative .scrool-arrow {
    top: 0;
    height: 440px;
  }
}

@-webkit-keyframes scroll-arrow-anime {
  0% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  30% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
  31% {
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
  60% {
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  100% {
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); } }

@keyframes scroll-arrow-anime {
  0% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  30% {
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
  31% {
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-transform: scaleY(1);
            transform: scaleY(1); }
  60% {
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); }
  100% {
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
    -webkit-transform: scaleY(0);
            transform: scaleY(0); } }

/* スクロールを促す 回転 */
.scroll-down-relative {
  position: relative;
}
.scroll-down {
  position: absolute;
  bottom: 48px;
  right: calc( 20% - 52px);
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}
@media print, screen and (min-width: 992px) {
  .scroll-down {
    width: 128px;
    height: 128px;
    top: -52px;
    right: calc( 12% - 64px);
    bottom: auto;
  }
}
.scroll-down_02 {
  position: relative;
  width: 104px;
  height: 104px;
  color: #fff;
}

/* 縮小専用ラッパー */
.circle-text-scale {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.72);
}
@media print, screen and (min-width: 992px) {
  .circle-text-scale {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* 文字リング本体 */
.circle-text_02 {
  position: relative;
  width: 96px;
  height: 96px;
  animation: rotate 20s linear infinite;
}

/* 1文字ずつ円周上に置く */
.circle-text_02 span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-light);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  white-space: pre;
  transform-origin: 0 0;
}

/* 真ん中の丸ボタン */
.arrow_02 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%) rotate(-180deg);
  animation: pulse_02 2s infinite;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 992px) {
  .arrow_02 {
    width: 88px;
    height: 88px;
  }
}

.arrow_02__icon {
  width: 14px;
  height: 20px;
  background-color: #fff;
  -webkit-mask: url(../img/parts/totop.svg) no-repeat center / contain;
  mask: url(../img/parts/totop.svg) no-repeat center / contain;
}
@media print, screen and (min-width: 992px) {
  .arrow_02__icon {
    width: 24px;
    height: 35px;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------

  トップページ コンテンツ

------------------------------------------------ */

/* 共通padding */
.sec-aboutus,
.sec-products {
  padding-top: 72px;
}
@media print, screen and (min-width: 992px) {
  .sec-aboutus,
  .sec-products {
    padding-top: 96px;
  }
}


/* 私たちについて */
.sec-aboutus {
  position: relative;
  padding-bottom: calc( var(--tab-like-style) + 72px );
}
@media print, screen and (min-width: 992px) {
  .sec-aboutus {
    padding-bottom: calc( var(--tab-like-style) + 72px + 24px );
  }
}
.sec-aboutus::before,
.sec-aboutus::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
@media print, screen and (min-width: 992px) {
  .sec-aboutus::before,
  .sec-aboutus::after {
    top: -96px;
  }
}
.sec-aboutus::before {
    background-color: #F0F0F0;
}
.sec-aboutus::after {
  background-image: url(../img/parts/dot-ddd.svg);
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
}

.sec-aboutus .container {
  padding-left: 16px;
  padding-right: 16px;
}

/* 製品紹介 */
.sec-products {
  position: relative;
  padding-bottom: 0;
}
.sec-products::after {
    content: "";
    position: absolute;
    top: calc( var(--tab-like-style) * -1 );
    left: 0;
    right: 50%;
    height: var(--tab-like-style);
    background-color: #fff;
}

.top-products-flex {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 576px) {
  .top-products-flex {
    flex-direction: row;
    justify-content: space-between;
  }
  .top-products-flex__item1 {
    order: 2;
    flex: 1; /* 残り全部 */
    max-width: 600px;
  }
  .top-products-flex__item2 {
    order: 1;

    padding-top: 104px;
  }
}

.top-products-img-relative {
  aspect-ratio: 7/9;
  position: relative;
}
/* 変則 */
@media screen and (min-width: 1264px) {
  .top-products-img-relative {
    aspect-ratio: 7/8;
  }
}

.top-products-img-relative__img1 img,
.top-products-img-relative__img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-products-img-relative__img1 {
  aspect-ratio: 232/312;
  width: 32%;

  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (min-width: 375px) {
  .top-products-img-relative__img1 {
    min-width: 108px;
    min-height: 146px;
  }
}
@media print, screen and (min-width: 992px) {
  .top-products-img-relative__img1 {
    width: 40%;
    max-width: 232px;
    max-height: 312px;
  }
}

.top-products-img-relative__img2 {
  aspect-ratio: 496/636;
  width: 84%;
  max-height: 84%;
  
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (min-width: 992px) {
  .top-products-img-relative__img2 {
    max-width: 478px;
    max-height: 614px;
    
  }
}

.top-products-img-relative__img2 img {
  object-position: center 64%;
}


/* ---------------------------------------------
  scroll-infinity
--------------------------------------------- */

.top-products-flow {
  display: grid;
  gap: 16px;

  margin-top: 56px;
}
/* .top-products-flow .scroll-infinity:nth-child(2) {
  margin-left: 40px;
}
@media screen and (max-width: 767.98px) {
  .top-products-flow .scroll-infinity:nth-child(2) {
    margin-left: 20px;
  }
} */
@media print, screen and (min-width: 992px) {
  .top-products-flow {
    margin-top: 80px;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

.scroll-infinity {
  overflow: hidden;
}
/* 端をなめらかにする */
/* .scroll-infinity:first-child {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.35) 32px,
    rgba(0, 0, 0, 0.75) 56px,
    black 80px,
    black calc(100% - 24px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.35) 32px,
    rgba(0, 0, 0, 0.75) 56px,
    black 80px,
    black calc(100% - 24px),
    transparent 100%
  );
}
.scroll-infinity:last-child {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.35) 56px,
    rgba(0, 0, 0, 0.75) 88px,
    black 120px,
    black calc(100% - 24px),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    rgba(0, 0, 0, 0.35) 56px,
    rgba(0, 0, 0, 0.75) 88px,
    black 120px,
    black calc(100% - 24px),
    transparent 100%
  );
} */

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  flex-shrink: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 60s linear infinite;
}

.scroll-infinity__list--right {
  animation: infinity-scroll-right 66s linear infinite;
}

.scroll-infinity__item {
  flex: 0 0 auto;
  width: clamp(160px, 20vw, 320px);
}

.scroll-infinity__item img {
  display: block;
  width: 100%;
  aspect-ratio: 280 / 176;
  object-fit: cover;
}

/* hoverで止めたい場合 */
/*
.scroll-infinity:hover .scroll-infinity__list--left,
.scroll-infinity:hover .scroll-infinity__list--right {
  animation-play-state: paused;
}
*/

/* 会社情報 */
.page-home .site-footer__dot {
  padding-left: 0;
  padding-right: 0;
}
.sec-companyinformation .sec-companyinformation-flex .c-heading--hero,
.sec-companyinformation .sec-companyinformation-flex p,
.c-section-heading__action {
  margin-top: 0;
  margin-bottom: 0;
}

.sec-companyinformation .c-heading--hero {
  color: #fff;
}

.sec-companyinformation-flex {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 992px) {
  .sec-companyinformation-flex {
    margin-bottom: 128px;
  }
}
/* 変則 */
@media screen and (min-width: 1200px) {
  .sec-companyinformation-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 5.6vw;
  }
  .sec-companyinformation-flex__item1 {flex: 0 0 384px;}
  .sec-companyinformation-flex__item2 {flex: 1; min-width: 0;}
  .sec-companyinformation-flex__item3 {flex: 0 0 208px;}
}

/* ボタンホバー変則 */
.sec-companyinformation-flex .c-btn--outline--wh:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* 印刷対応 */
@media print {
  .container {
    max-width: none;
  }
  .site-header {
    position: static;
  }
  .site-header-container__flex {
    min-height: var(--mobile-nav-top);
  }
  #global-nav {
    display: none;
  }
  .site-footer__dot {
    padding-top: var(--tab-like-style);
  }
  .site-footer-next-prev,
  .site-footer-next-prev.top-next-prev {
    display: none !important;
  }
  .contact-block__tel-label {
      font-size: 20px;
  }
  .contact-block__tel-number {
    font-size: 32px;
  }
  .c-to-top {
    display: none;
  }

  .site-layout--twocol {
    grid-template-columns: minmax(0, 1fr) 0;
    gap: 0;
  }
  .sub-section {
    display: none;
  }
  .page-visual,
  .bleed-left-bg {
    height: 200px;
  } 
}
