@charset "utf-8";

/* =====================================================================
  汎用プレースホルダー用スタイル
  ===================================================================== */
.c-sec--detail {
  background: var(--c1);
}
.annotation {
  text-align: left;
}
.sec01 .annotation{
  color: var(--txt);
}


/* 見出しスタイル */
.c-h2 {
  font-size: var(--fs-xxl);
  font-weight: 900;
  text-align: center;
  color: var(--pri-dark);
}

.c-h3 {
  font-size: var(--fs-l);
  font-weight: bold;
  color: var(--txt);
  text-align: center;
}
.sec06 .c-h3 {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: left;
}

.sec06 .c-h3 a{
  text-decoration: none;
  background: url(./img/arr_black.svg) no-repeat top 56% right / auto 0.8em;
  display: inline-block;
  padding-right: 3rem;
}
.c-h4 {
  font-size: var(--fs-m);
  font-weight: bold;
  padding: var(--s2) var(--s3);
  background: var(--sub);
  color: white;
}

/* 見出し内リンク */
.c-hlink {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  padding: 0 var(--s5);
  background: url("./img/arr_black.svg") no-repeat center right / auto 1em;
  transition: opacity 0.2s ease;
}

.c-hlink:hover {
  text-decoration: none;
  opacity: 0.6;
}

/* テキストユーティリティ */
.c-lead {
  margin-bottom: var(--s3);
  color: var(--txt);
  font-size: var(--fs-md);
  line-height: 1.6;
}

.c-desc {
  margin: auto;
  max-width: 90rem;
  color: var(--txt);
}

/* カードコンポーネント */
.c-card {
  background: var(--white);
  padding: var(--s3);
  box-shadow: var(--sd-1);
}

.c-card--large {
  padding: var(--s4);
}

.c-sec--detail .c-card--large {
  padding: var(--s4) calc((100% - 90rem) / 2) var(--s6);
  background: #fff;
}

.c-card--small {
  padding: var(--s2);
}

.c-cardTitle {
  font-size: var(--fs-lg);
  font-weight: 900;
  margin: 0 0 var(--s2);
  color: var(--txt);
}

/* バッジコンポーネント */
.c-badge {
  text-align: center;
  padding: var(--s1) var(--s2);
  background: var(--pri);
  color: white;
  font-size: var(--fs-xl);
  font-weight: bold;
  margin-bottom: 0; /* ギャップなしの縦積みのため */
}

/* テーブルコンポーネント */
.c-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.c-table th,
.c-table td {
  padding: var(--s2);
  text-align: left;
  border-bottom: 1px solid var(--ln);
}

.c-table tr:last-child th,
.c-table tr:last-child td {
  border-bottom: none;
}

.c-table th {
  background: var(--c2);
  font-weight: bold;
  color: var(--txt);
  width: 20%;
}

/* =============================================================
  簡易訴求カード subgrid 対応
============================================================= */

/* カードラッパー（バッジ + カード）の縦積みレイアウト */
.c-card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0; /* バッジとカードの間のギャップを除去 */
}

/* カード自体を縦フレックスにして汎用化（可変要素対応） */
.c-card--grid {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  flex: 1; /* 残りの高さを全て使用 */
}

/* 下部ブロック（おすすめする理由） */
.c-cardReason {
  display: grid;
  gap: var(--s1);
  padding: var(--s2);

  background: var(--c3);
}

.c-cardReason__label {
  font-weight: 900;
  color: var(--pri-dark);
}

.c-cardReason__text {
  color: var(--txt);
  line-height: 1.8;
}

/* 下部ブロック（キャッチ + p）2種 */
.c-cardCatch {
  display: grid;
  grid-template-rows: auto 1fr; /* キャッチは自動、説明文は残りスペース */
  gap: var(--s-2);
  padding: var(--s2);
}

.c-cardCatch--a {
  background: var(--c0);
}

.c-cardCatch--b {
  background: var(--c1);
}

.c-cardCatch__lead {
  font-weight: 900;
  color: var(--txt);
  font-size: var(--fs-m);
}

.c-cardCatch__desc {
  margin: 0;
  color: var(--txt);
  align-self: start; /* 説明文を上端に配置 */
}

/* 下部領域（理由・キャッチ群）を一括ラップし、最下段へ押し下げ */
.c-cardFooter {
  display: grid;
  gap: var(--s2);
  margin-top: auto;
}

/* 理由ラベルを独立したブロックとして配置 */
.c-cardReason__label {
  display: block;
  padding: var(--s2);
  background: var(--c2);
  font-weight: 900;
  color: var(--pri-dark);
  font-size: var(--fs-m);
}

/* lower_bottom.php 専用：bg-01 の上に角装飾（コンテンツより背面） */
.lower-bottom {
  position: relative;
  isolation: isolate;
}

.lower-bottom::before,
.lower-bottom::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.lower-bottom::before {
  top: 0;
  right: 0px;
  width: min(40%, 28rem);
  aspect-ratio: 1 / 0.92;
  background-image: url(./img/deco-right.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

.lower-bottom .l-center::after {
  bottom: -11rem;
  left: 0;
  width: min(44%, 30rem);
  aspect-ratio: 1 / 1;
  background-image: url("./img/deco-left.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.lower-bottom .l-center{
  position: relative;
  z-index: 1;
}

.lower-bottom > .section-title02-frame,
.lower-bottom > .l-center {
  position: relative;
  z-index: 1;
}

/* lower_bottom.php 内スライダーのみ（.lower-bottom は下層インクルード専用・TOPの sec01 には無い） */
.lower-bottom .swiper-slide {
  text-align: center;
}

.lower-bottom .swiper-wrapper .swiper-slide img {
  display: block;
  margin-inline: auto;
  max-height: 160px;
  object-fit: contain;
}

.bg_gray{
  background-image: url(./img/bg_gray.webp);
  background-position: center;
}

.sec03, .sec04, .sec05, .sec06{
  padding: var(--s10) 0;
  border-top: 1px solid var(--bor);
}

.sec05{
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #F0F0F0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #F0F0F0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #ffffff;
}

section.sec03 .c-oem01Hero {
  align-items: center;
  text-align: center;
}

section.sec03 .c-oem01Hero__deco {
  margin: 0;
  font-size: var(--fs-xxl);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 0.1rem var(--txt);
}

section.sec03 .c-oem01Hero__sub {
  margin: 0;
  font-size: var(--fs-l);
  font-weight: 900;
  color: var(--txt);
}

section.sec03 .c-oem01Hero__h2 {
  margin: 0;
  text-align: center;
  color: var(--txt);
}

section.sec03 .c-oem01Grid {
  align-items: stretch;
}

section.sec03 .c-oem01Grid + .c-oem01Grid {
  margin-top: var(--s2);
}

section.sec03 .c-oem01Card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: var(--s3) var(--s3) var(--s4);
  background: var(--white);
  border: 0.1rem solid var(--bor);
}

.sec03 .btn-link a{
  background: url("./img/arr_black.svg") no-repeat center right/auto 1em;
}

.sec03 .c-oem01Card__head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: 0.1rem dotted color-mix(in srgb, var(--ln) 45%, transparent);
}

.sec03 .c-oem01Card__title {
  margin: 0;
  text-align: left;
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--txt);
  line-height: 1.5;
}
.sec03 .c-oem01Card__title a {
 text-decoration: none;
}
.sec03 table th, .sec03 table td {
    padding: var(--s1);
}
.sec03 table th{
  width: 30%;
}

.sec03 .c-oem01Card__icon {
  flex-shrink: 0;
  width: var(--s5);
  height: var(--s5);
  background: url("./img/arr_black.svg") no-repeat center center / auto 1.2em;
}

section.sec03 .c-oem01Card__body {
  margin: 0;
  font-size: var(--fs-s);
  line-height: 1.7;
  color: var(--txt);
}

section.sec03 .c-oem01Table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-s);
  color: var(--txt);
}

section.sec03 .c-oem01Table td {
  padding: var(--s1) var(--s2);
  border: 0.1rem solid var(--bor);
  vertical-align: top;
}

section.sec03 .btn-link {
  text-align: right;
  margin-top: auto;
}

section.sec03 .c-oem01More {
  box-sizing: border-box;
  display: block;
  margin-inline: auto;
  max-width: min(100%, 48rem);
  padding: var(--s2) var(--s10);
  font-size: var(--fs-m);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  color: var(--txt);
  background: var(--white);
  border: 0.1rem solid var(--bor);
  border-radius: 99rem;
  position: relative;
  transition: opacity 0.2s ease;
}

section.sec03 .c-oem01More:hover {
  opacity: 0.6;
}

section.sec03 .c-oem01More::after {
  content: "+";
  position: absolute;
  right: var(--s4);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-l);
  font-weight: 900;
  line-height: 1;
  color: var(--pri02);
}

/* 事例セクション（sec02 先頭） */

.sec02__decorations {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.sec02 .deco-left02 {
  position: fixed;
  top: 12%;
  left: clamp(0px, 1vw, 22rem);
  width: clamp(200px, 25vw, 154px);
  display: block;
}
.sec02 .deco-left {
  position: fixed;
  bottom: 0;
  left: 0;
  width: clamp(200px, 25vw, 250px); /* 画面幅に合わせてサイズも可変 */
  display: block;
}

.sec02 .deco-right {
  position: fixed;
  top: 12%;
  right: 0;
  width: clamp(180px, 20vw, 350px);
  display: block;
}


.sec02-case {
  width: 100%;
}

.sec02-case__h2 {
  margin: 0;
  color: var(--txt);
  text-align: center;
}

.c-oemCase__band {
  width: 100%;
}

.c-oemCase__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--s3);
}

.c-oemCase__vertical {
  margin: 0;
  flex-shrink: 0;
  align-self: center;
  font-size: var(--fs-2xl);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 0.08rem var(--txt);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.c-oemCase__blob {
  flex: 1;
  min-width: 0;
  padding: var(--s7) var(--s6) var(--s7) var(--s8);
  background-image: url("/img/bg-02.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-top-left-radius: var(--s14);
  border-bottom-left-radius: var(--s14);
  border-top-right-radius: var(--r-sm);
  border-bottom-right-radius: var(--r-sm);
}

.c-oemCase__inner {
  align-items: start;
}

.c-oemCase__visual {
  min-height: 45rem;
  width: 100%;
  max-width: 100%;
  background: var(--white);
  border: 0.1rem solid var(--bor);
  border-top-left-radius: var(--r-xl);
  border-bottom-right-radius: var(--r-xl);
  border-top-right-radius: var(--r-xs);
  border-bottom-left-radius: var(--r-xs);
}

.c-oemCase__list {
  width: 100%;
}

.c-oemCase__block {
  padding-bottom: var(--s2);
}

.c-oemCase__block:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.c-oemCase__blockHead {
  gap: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: 0.1rem dotted color-mix(in srgb, var(--ln) 45%, transparent);
}

.c-oemCase__blockTitle {
  margin: 0;
  text-align: left;
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--txt);
}

.c-oemCase__blockTitle .c-hlink {
  display: block;
  max-width: 100%;
  padding-right: var(--s4);
  text-align: left;
  background-position: center right 0;
  padding-left: 0;
}

.c-oemCase__blockIcon {
  flex-shrink: 0;
  width: var(--s5);
  height: var(--s5);
  border-radius: 50%;
  background: url("./img/arr_black.svg") no-repeat center center / auto 1.2em;
}

.c-oemCase__blockBody {
  margin: 0;
  padding-top: var(--s2);
  font-size: var(--fs-s);
  line-height: 1.7;
  color: var(--txt);
}

.sec04 {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#index .sec04 .summary-box-l-content .btn-internal,
#index .sec04 .summary-box-r-content .btn-internal{
  width: 35%;
  margin-top: 2rem;
}

.c-oemBasics__hero {
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: var(--s6);
}

.c-oemBasics__deco {
  margin: 0;
  position: absolute;
  left: 50%;
  top: -3rem;
  z-index: 0;
  transform: translateX(-50%);

}

.sec06 .c-oemBasics__deco {
  width: 30%;
}

.c-oemBasics__sub {
  margin: 0;
  position: relative;
  z-index: 1;
  font-size: var(--fs-m);
  font-weight: 900;
  color: var(--pri03);
}

.c-oemBasics__h2 {
  margin: 0;
  position: relative;
  z-index: 1;
  color: var(--txt);
}

.c-oemBasics__h2 .c-hlink {
  padding-right: var(--s6);
}

.c-oemBasics__col {
  width: 80%;
}
.c-oemBasics__cols {
  justify-content: center;
  display: flex;
}
.c-oemBasicsBlock.l-stack-xs {
  width: 90%;
}



.c-oemBasicsBlock__head {
  gap: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: 0.1rem dotted color-mix(in srgb, var(--ln) 45%, transparent);
  font-size: 2.3rem;
}

.c-oemBasicsBlock__title {
  margin: 0;
  text-align: left;
  font-size: var(--fs-m);
  font-weight: 900;
  color: var(--txt);
}

.c-oemBasicsBlock__title .c-hlink {
  display: block;
  max-width: 100%;
  padding-right: var(--s6);
  text-align: center;
  background-position: center right 0;
}

.c-oemBasicsBlock__title .small {
  font-size: 1.8rem;
}

.c-oemBasics__tag {
  display: inline-block;
  margin-top: var(--s-2);
  padding: 0 var(--s1);
  background: var(--acc);
  border: 0.1rem solid var(--bor);
  font-weight: 900;
  font-size: 2.3rem;
  text-align: center;
  color: var(--txt);
  margin-left: .5rem;
}

.c-oemBasicsBlock__icon {
  flex-shrink: 0;
  width: var(--s5);
  height: var(--s5);
  margin-top: var(--s1);
  border-radius: 50%;
  background:url("./img/arrow-wh-right.svg") no-repeat center center / auto 0.9em;
}

.c-oemBasicsBlock__body {
  margin: 0;
  padding-top: var(--s2);
  font-size: var(--fs-s);
  line-height: 1.7;
  color: var(--txt);
  text-align: left;
}



/*------------------------------------------
    3box column settings
*/
.column-small {
  padding: var(--s2);
  border: 1px solid var(--bor);
  background-color: #fff;
}
.sec01 .column-small{
  padding-top: 0;
  padding-bottom: var(--s6);
}

.sec02 .column-small {
  border: none;
  background-color: none;

}


.thb-box-full {
  width: calc(100% + var(--s4));
  margin-left: calc(var(--s2) * -1);
}

.sec01 .thb-box-full {
  position: relative;
  overflow: visible;
  background-color: var(--txt);
  color: var(--white);
}

.sec01 .thb-box-full .c-h3 {
  position: relative;
  margin: 0;
  text-align: center;
  padding: var(--s5) var(--s2) var(--s3);
}

.sec01 .thb-box-full .attention{
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  box-sizing: border-box;
  width: calc(100% - var(--s3));
  max-width: calc(100% - var(--s2));
  padding: var(--s1);
  border: 0.1rem solid var(--bor);
  background-color: var(--acc);
  color: var(--txt);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  transform: translate(-50%, -50%);
}

.sec02 .attention{
  background-color: var(--acc);
  color: var(--txt);
  font-size: 3rem;
}

.sec01 .thb-box-full .twb-m-title02 {
  display: block;
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.35;
}

.scroll-caption{
  display: block;
  max-width: 100%;
  padding: 0 0 0.3rem 0;
  text-align: left;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
}

.sec01 .caption.scroll-caption {
  line-height: 1.5;
  overflow-y: visible;
  min-height: 1.5em;
  padding-top: 0.2em;
}

.section-title02-frame {
  margin-top: 5rem;
  text-align: center;
  position: relative;
  line-height: 1.6;
}
.sec02 .section-title02-frame {
  margin-top: 2rem;
}

.sec03 .section-title02-frame {
  margin-top: 0;
}

.sec01 .section-title02-frame {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #F0F0F0 calc(100% - 1px)),
  linear-gradient(90deg, transparent calc(100% - 1px), #F0F0F0 calc(100% - 1px));
background-size: 16px 16px;
background-repeat: repeat;
background-position: center center;
background-color: #ffffff;
padding: var(--s4) var(--s2);
border-top: 1px solid var(--bor);
margin-bottom: 2rem;
position: relative;
margin-top: 0;
line-height: 1.6;
}

.sec01 .section-title02-frame:after{
  content: "";
  display: block;
  width: 3.2rem;
  aspect-ratio: 1 / 1;
  background: url(./img/triangle_green.png) no-repeat center center / contain;
  position: absolute;
  right: 49%;
  bottom: -2rem;
}

.section-title02 {
  font-size: 4.6rem;
  font-weight: 900;
  text-align: center;
}
.section-title02 a{
  text-decoration: none;
  background: url(./img/arr_black.svg) no-repeat top 56% right / auto 0.5em;
  display: inline-block;
  padding-right: 3rem;
}

.section-title02-sub {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 3.3rem;
  font-weight: 900;
  color: var(--acc-dark);
  text-align: center;
}
.section-title02-sub span {
  width: 100%;
  padding: 0 var(--s2);
  position: relative;
  color: var(--acc-dark);
}

.section-title02-sub span::before {
  left: -5rem;
}
.section-title02-sub span::after {
  right: -5rem;
}
.m-title02 {
	padding: 1.6rem;
	font-size: 2.1rem;
	font-weight: 900;
	line-height: 1.5;
	background-color: #C9C9C9;
}

.title-catch {
	position: relative;
	padding: var(--s1) var(--s5) var(--s2) var(--s5);
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
	line-height: 1.5;
	color: var(--txt);
	background: var(--c1);
}
.sec02 .title-catch{
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s1) var(--s5);
  position: relative;
}
.title-catch::before,
.title-catch::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--s2); 
  pointer-events: none;
}

.title-catch::before {
  left: 0;
  border-top: 1px solid var(--bor); 
  border-bottom: 1px solid var(--bor);
  border-left: 1px solid var(--bor);
}
.title-catch::after {
  right: 0;
  border-top: 1px solid var(--bor);
  border-bottom: 1px solid var(--bor);
  border-right: 1px solid var(--bor);
}

.sec01 .title-catch {
	font-size: 1.9rem;
  padding: var(--s1) var(--s2);
}
.title-catch span {
	font-size: 1.6rem;
}

h4.title-catch.c-h4 {
	background: transparent;
	color: var(--txt);
}

h4.title-catch.c-h4::before,
h4.title-catch.c-h4::after {
	content: none;
}
.m-title01 {
	padding: var(--s1);
	font-size: 2rem;
	font-weight: 900;
	color: var(--acc-dark);
	text-align: center;
	line-height: 1.5;
  border-bottom: 3px dotted var(--bor);
  min-height: 9rem;
  display: flex;
  align-items: center;      
  justify-content: center; 
}
 
.sec02 .l-grid-three .column-small img{
  height: 145px;
  object-fit: contain;
  margin: 0 auto;
    display: block;
}

.movie_area .txt{
  text-align: center;
}
  
/*------------------------------------------
    1box column settings
*/
.column-medium {
  padding: var(--s4);
  border: 1px solid var(--bor);
  background-color: #fff;
}
.sec02 .column-medium {
  padding-top: 0;
  border: 1px solid var(--bor);
  padding-bottom: var(--s8);

}
.c-onb-black-frame{
  border: 1px solid var(--bor);

}

.c-onb-green-frame {
  border: 13px solid var(--pri02);
}

.onb-box-full {
  width: calc(100% + var(--s8));
  margin-left: calc(var(--s4) * -1);
}

.onb-casebox02-frame {
	margin-top: 2rem;
	padding: var(--s4);
	background-color: var(--site-color06);
	position: relative;
}

.sec02 .onb-casebox02-frame,
.summary-box-l {
    background-color: #FFFDF1;
}

.l-onb-casebox02 {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s3);
}
.sec02 .l-onb-casebox02{
  border-bottom: 3px dotted var(--bor);
  padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.l-onb-casebox02__side {
	width: 10%;
}
.l-onb-casebox02__main {
	width: calc((100% - var(--s3))*.8);
}
.onb-casebox02-imgcap {
	margin-top: 1rem;
	text-align: center;
	font-size: 1.2rem;
}
.onb-casebox02-catch {
	font-size: 2rem;
	font-weight: 900;
	color: var(--acc-dark);
	line-height: 1.5;
}
.onb-casebox02-caption {
	text-align: left;
}
.text-area {
  line-height: 2;
}
.summary-box-l {
  padding: var(--s4);
  
}
.sec04 .summary-box-l {
  background: none;
}

.summary-box-l-catch {
  padding: 1.6rem .8rem 1.6rem 7rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
  background: url('./img/point_icon.png') no-repeat top left / auto 3em;
  grid-area: catch;
  border-bottom: 3px dotted var(--bor);
  color: var(--acc-dark);
}
.summary-box-l-img {
  padding-left: var(--s4);
  grid-area: img;
}
.summary-box-l-content {
  grid-area: content;
}
.left-img-box {
	display: flow-root;
}

.left-img {
	width: 40%;
	margin-right: var(--s4);
	padding-bottom: var(--s1);
	float: left;
}
.left-img-catch {
	margin-bottom: 1.6rem;
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.5;
}
.center-img-box {
	display: flow-root;
}
.center-img {
	max-width: 64%;
	margin: 0 auto;
	padding-bottom: var(--s2);
}
.sec01 .column-small .center-img {
	max-width: 100%;
}
.center-img-catch {
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1.5;
}




.onb-icon-title-frame {
	padding: var(--s4);
	background-color: var(--txt);
	position: relative;
}
.onb-icon-title-icon {
  width: 123px;
  height: auto;
	overflow: hidden;
	position: absolute;
	top: -4rem;
	left: 0;
}
.onb-icon-title-icon img {
	width: 100%;
}

.acrylic_stand{
  width: 7%;
    position: absolute;
    left: 2rem;
}

.onb-icon-title {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 900;
	line-height: 1.5;
	color: #fff;
}
.onb-icon-title .underline {
	border-bottom: 5px solid var(--site-color15);
  font-size: 4rem;
  display: inline-block;
  padding-left: var(--s2);
}
.onb-icon-title small {
	font-size: 2.1rem;
	border: none;
}
.onb-icon-title-catch {
	margin-bottom: .8rem;
	font-size: 1.8rem;
	display: block;
	line-height: 1.5;
	border: none;
}



/* c-featureCard コンポーネント*/
.c-featureCard {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: var(--s-2);
  padding: var(--s2);
  background: var(--c1);
}

.c-featureCard__lead {
  font-weight: 900;
  color: var(--txt);
  font-size: var(--fs-m);
}

/* ==============================================
  目次02 (index02-frame)
============================================== */
.index02-frame {
  width: 100%;
}

.index02-wrap {
  margin: 0 auto var(--s5);
  padding: var(--s1) var(--s3) var(--s4) var(--s3);
  border: solid 0.1rem var(--ln);
  background: var(--white);
  position: relative;
  width: 80%;
}

.top-index{
  margin: 10rem auto;
}

.index02-title {
  padding: var(--s2) var(--s2) var(--s2) var(--s6);
  color: var(--txt);
  font-size: var(--fs-m);
  font-weight: 900;
  line-height: 1;
  background: url("./img/index_icon.png") no-repeat left center;
  background-size: 2rem auto;
  position: relative;
  border-bottom: 0.1rem solid var(--ln);
}

.index02-chapter {
  padding: var(--s2) var(--s2) var(--s2) var(--s4);
  font-weight: 900;
}

.index02-chapter-h {
  font-size: 100%;
  line-height: 1.7;
  position: relative;
}

.index02-chapter-h a {
  display: block;
  text-decoration: none;
}

.index02-chapter-h a:hover {
  opacity: 0.6;
}

.index02-chapter-h-two {
  position: relative;
  margin: var(--s1) 0;
}

.index02-chapter-h-three {
  margin-left: var(--s4);
  position: relative;
}

.index02-chapter-h-two::before,
.index02-chapter-h-three::before {
  position: absolute;
  top: 0;
  left: -1.5em;
}

.index02-chapter-h-two::before {
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background-color: #fe7ebb;
  border: 0.1rem solid #03060b;
  position: absolute;
  top: calc(100% - 2.1rem);
}

.index02-chapter-h-three::before {
  content: "└";
}

/* more content settings */
.more-content-gradation {
  position: relative;
  max-height: 12rem;
  overflow: hidden;
  transition: max-height 1s;
}

.more-content-gradation::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, var(--white) 100%);
}

.more-content-gradation.is-open::after {
  display: none;
}

.acc-gr-more-btn {
  max-width: 20rem;
  margin: var(--s2) auto 0 auto;
  padding: var(--s2) var(--s6) var(--s2) var(--s3);
  border: 1px solid var(--ln);
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 900;
}

.acc-gr-more-btn::before {
  content: "";
  width: 2rem;
  border-top: 0.2rem solid var(--pri02);
  position: absolute;
  top: 50%;
  right: var(--s4);
  transform: translate(0, -50%);
}

.acc-gr-more-btn::after {
  content: "";
  width: 0.2rem;
  aspect-ratio: 1 / 10;
  background: var(--pri02);
  position: absolute;
  top: 50%;
  right: 4.1rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}

.acc-gr-more-btn:hover {
  opacity: 0.6;
}

.acc-gr-more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}



.thb-slider {
  width: 100%;
  padding-bottom: var(--s4);
}
.thb-slider .swiper-button-next,
.thb-slider .swiper-button-prev {
  width: 2rem;
  height: 2rem;
  top: 40%;
}
.thb-slider .swiper-button-next:hover,
.thb-slider .swiper-button-prev:hover {
  opacity: .6;
}
.thb-slider .swiper-button-next::after,
.thb-slider .swiper-rtl .swiper-button-prev::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url("./img/slider-arrow-right.svg") no-repeat center center;
  background-size: contain;
}
.thb-slider .swiper-button-prev::after,
.thb-slider .swiper-rtl .swiper-button-next::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url("./img/slider-arrow-left.svg") no-repeat center center;
  background-size: contain;
}




/* ==============================================
  固定バナー
============================================== */
.footer-banner {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.footer-banner.js-show {
  opacity: 1;
}
.pc-fix-banner02 {
  width: 24rem;
  position: fixed;
  right: 1rem;
  bottom: 22rem;
  z-index: 50;
}
.pc-fix-banner02 a {
  text-decoration: none;
  display: block;
}
.pc-fix-banner02 a:hover {
  opacity: .7;
}

.sp-fix-banner02 {
  display: none;
}

/* =============================================================
  会社一覧カード subgrid 対応
============================================================= */

/* 会社カードの基本レイアウト */
.c-company-card {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s3);
  background: var(--white);
  box-shadow: var(--sd-1);
  height: 100%;
}
.c-company-card table {
  font-size: 1.4rem;
  margin: 0;
}
.c-company-card table th {
  width: 30%;
}
/* 会社一覧グリッドの高さ統一 */
.l-sec:has(.c-company-card) .l-grid-3 {
  align-items: stretch;
}

.movie_area{
  padding: 0 0 var(--s8);
}

.sec01{
  position: relative;
  padding: 0 0 15rem;
  border-bottom: 1px solid var(--bor);
  z-index: 0;
}
.sec01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45rem;
  background: url(./img/crowd_silhouette.png) center bottom / cover no-repeat;
  pointer-events: none;
  z-index: -1;
}





.sec02.bg-02 {
  position: relative; 
  z-index: 0;
  background-image: 
      linear-gradient(0deg, transparent calc(100% - 1px), #F0F0F0 calc(100% - 1px)), 
      linear-gradient(90deg, transparent calc(100% - 1px), #F0F0F0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding-bottom: 8rem;
    border: 1px solid var(--bor);
}

.sec02.bg-02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
  pointer-events: none;
  background-image: url(./img/bg_02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
background-attachment: fixed; 
}
.sec02.bg-02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
  pointer-events: none;
  background-image: url(./img/deco-left.png);
  background-repeat: no-repeat;
  background-attachment: fixed;   
  background-size: 300px auto;      
  background-position: left bottom;
}


/* subgrid 対応: 会社カード要素の行整列 */
@supports (grid-template-rows: subgrid) {
  /* 6行のsubgrid設定（h3 + img + p + table(3行)） */
  .l-sec:has(.c-company-card) .l-grid-3 {
    grid-template-rows: repeat(6, auto);
  }

  /* 会社カードをsubgridに設定 */
  .c-company-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / span 6;
    gap: var(--s2);
  }

  /* 行マッピング */
  .c-company-card > .c-h3 {
    grid-row: 1;
  }
  .c-company-card > img {
    grid-row: 2;
  }
  .c-company-card > p {
    grid-row: 3;
  }
  .c-company-card > .c-table {
    grid-row: 4 / span 3;
  }
}


.slider-container {
  margin-bottom: var(--s2);
}

.swiper-wrapper .swiper-slide img{
  max-height: 160px;
  object-fit: contain;
}

.c-company-sheet {
  width: 100%;
  max-width: 100%;
  margin-top: var(--s5);
  border-collapse: collapse;
  table-layout: fixed;
}

.c-company-sheet td {
  border: 0.1rem solid var(--bor);
  padding: var(--s2) var(--s3);
  text-align: left;
  vertical-align: top;
  font-size: var(--fs-s);
  color: var(--txt);
}

.c-company-sheet td:first-child {
  width: 28%;
}
.acc-more-btn {
	max-width: 46rem;
  width: 100%;
	margin: 0 auto;
	position: relative;
}
.acc-more-btn span {
	width: 100%;
	margin: var(--s3) auto;
	padding: 2rem 6rem 2rem 3rem;
	border: 1px solid var(--bor);
	border-radius: 4rem;
	background: url('./img/acc-off.svg') no-repeat 95% center #fff;
	display: block;
	text-align: center;
	transform: translate(0, 0);
	transition: transform 0.3s;
	cursor: pointer;
	z-index: 1;
}
.acc-more-btn::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: var(--site-color03);
	border-width: 0 1px 1px 0;
	transform: translate(.8rem, .8rem);
	border-radius: 4rem;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.acc-more-btn:hover span {
	transform: translate(.8rem, .8rem);
}
.acc-more-btn.is-open span {
	background: url('./img/acc-on.svg') no-repeat 95% center #fff;
}
.more-content {
	display: none;
}

.contents-area{
  margin-bottom: var(--s10);
}
video.movie-block {
  margin-top: var(--s3);
}


/* ------------------------------------------------------------
  Main visual（トップ）
*/
.mainvisual {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: var(--s8) 0;
  background: url("./img/za-nac-00001401_mv_bg.jpg") no-repeat center bottom / cover;
  display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1601px) {
  .mainvisual .mainvisual__decorations {
    left: 13%;
    max-width: 1500px;
  }
  .sec01::after {
    height: 70rem;
  }
  

}
@media (min-width: 1200px) and (max-width: 1600px) {
  .mainvisual {
    background: url("./img/za-nac-00001401_mv_bg1400.jpg") no-repeat center center / cover;
    max-height: 110vh;
  }
  .mainvisual .mainvisual__frame {
    width: min(100%, 64rem);
    max-width: 650px;
}
.mainvisual .mainvisual__decorations .deco-left,
.mainvisual .mainvisual__decorations .deco-right {
  top: 40%;
}
video.movie-block {
    width: 85%;
    margin: var(--s3) auto 0;
}
.pc-fix-banner02 {
    width: 19rem;
}
}

.mainvisual__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.color_txt{
  color: #F7EC7A;
}


.mainvisual__frame {
  box-sizing: border-box;
  padding: var(--s5) var(--s3) var(--s6) var(--s2);
  text-align: center;
  background: url("./img/green_frame.svg") no-repeat center center / 100% 100%;
  color: var(--txt);
  max-width: 800px;
}

.mainvisual__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* 背景(0)より上、中央枠(2)より下 */
  pointer-events: none; /* 画像がテキストに被ってもクリックや選択の邪魔をしない */
}
.mainvisual__decorations .deco-left {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: clamp(0px, 3vw, 22rem); /* 画面が縮むと少しずつ中央に寄る */
  width: clamp(200px, 25vw, 250px); /* 画面幅に合わせてサイズも可変 */
}

.mainvisual__decorations .deco-right {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: clamp(0px, 3vw, 80px);
  width: clamp(180px, 23vw, 270px);
}


.c-mainvisual-kicker {
  margin: 0;
  display: inline-block;
  box-sizing: border-box;
  max-width: 100%;
  font-size: 4rem;
  font-weight: 900;
  background: url(./img/mv_cat_bg.svg) no-repeat center / 100% 100%;
  color: var(--white);
  padding-block: 1rem;
  padding-inline: 2.5rem 2rem;

}

.c-mainvisual-sub {
  margin: 0;
  font-size: var(--fs-l);
  color: var(--txt);
}

.c-mainvisual-logo {
  width: 100%;
}

.c-mainvisual-logo img {
  max-width: 100%;
  vertical-align: top;
  width: 60%;
}

.c-mainvisual-lead {
  margin: 0;
  font-size: var(--fs-s);
  line-height: 1.7;
  text-align: center;
  color: var(--txt);
  padding: 0 var(--s3);
}

.mainvisual .c-mainvisual-em {
  color: var(--pri03);
  font-weight: 900;
}

/* ------------------------------------------------------------
  Main visual（下層）
*/
.mainvisual-lower {
  position: relative;
  max-height: 200px;

}

.mainvisual-lower picture,
.mainvisual-lower picture img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  height: 200px;
}

.mv-logo {
  width: 100%;
  max-width: 42rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.mv-logo img {
  display: block;
  width: 100%;
  max-width: 100%;
}

/*
---------------------------------------------
    navigation02 ※TOP、下層共通（ハンバーガー型）
*/
.header-area-upper {
  padding: .3rem var(--s1);
  text-align: right;
  position: absolute;
    top: 0;
    right: 0;
}

.header-title {
  font-size: 1.3rem;
  display: inline-block;
  position: relative;
}

.header-title::before {
  content: "PR";
  padding: 0.2rem;
  color: var(--white);
  background-color: var(--txt);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -2.4rem;
}

.header-title a {
  text-decoration: none;
}

.header-title a:hover {
  text-decoration: underline;
}

.gnavi-btn-close {
  width: 70%;
  margin: 3rem auto 0;
  padding: var(--s2);
  background: var(--txt);
  display: block;
  text-align: center;
  border-radius: 50px;
}

.toggle-content {
  display: none;
}

.gnavi-ctrl {
  transition: opacity 0.6s, visibility 0.6s;
  opacity: 0;
  visibility: hidden;
}

.gnavi-ctrl.is-show {
  opacity: 1;
  visibility: visible;
}

#low-header .gnavi-ctrl {
  opacity: 1;
  visibility: visible;
}

.gnavi-btn {
  width: var(--s7);
  height: var(--s7);
  margin: 0;
  padding: 0;
  border: none;
  background: var(--txt);
  display: block;
  position: fixed;
  top: var(--s4);
  right: var(--s2);
  z-index: 200;
  cursor: pointer;
  border-radius: 50rem;
}

.gnavi-btn__bar {
  width: var(--s4);
  height: 0.2rem;
  display: inline-block;
  background: var(--white);
  position: absolute;
  left: 1.3rem;
  transform: translate(0, -50%);
  transition: transform 0.4s, opacity 0.4s;
}

.gnavi-btn__bar:nth-of-type(1) {
  top: 1.8rem;
}

.gnavi-btn__bar:nth-of-type(2) {
  top: 2.6rem;
}

.gnavi-btn__bar:nth-of-type(3) {
  top: 3.5rem;
}

.gnavi-btn.is-active .gnavi-btn__bar:nth-of-type(1) {
  transform: translateY(0.7rem) rotate(-45deg);
}

.gnavi-btn.is-active .gnavi-btn__bar:nth-of-type(2) {
  opacity: 0;
}

.gnavi-btn.is-active .gnavi-btn__bar:nth-of-type(3) {
  transform: translateY(-0.8rem) rotate(45deg);
}

.gnavi-btn-close__inner {
  padding: 0 0 0 var(--s3);
  display: inline-block;
  color: var(--white);
  font-weight: 900;
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
}

.gnavi-btn-close__inner::before {
  content: "";
  width: 1em;
  height: 0.2rem;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(45deg);
}

.gnavi-btn-close__inner::after {
  content: "";
  width: 1em;
  height: 0.2rem;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(135deg);
}

.gnavi-area {
  width: 100%;
  max-width: 37.5rem;
  height: 100vh;
  padding: var(--s5) var(--s1) var(--s3);
  display: block;
  background: var(--c1);
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
}

.gnavi-title {
  min-height: var(--s6);
  margin: 0 var(--s8) 2rem var(--s2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
}

.gnavi-title a:hover {
  opacity: 0.6;
}

.gnavi-pc {
  display: none;
}

.gnavi-list {
  border-bottom: 1px solid var(--txt);
  position: relative;
}

.gnavi-list .gnavi-list__item {
  padding-left: 0;
}

.gnavi-list__item::before {
  display: none;
}

.gnavi-list__link {
  width: 100%;
  margin: 0 auto;
  padding: var(--s2) var(--s4) var(--s2) var(--s2);
  border-top: 1px solid var(--txt);
  display: block;
  font-weight: 900;
  line-height: 2;
  text-decoration: none;
  position: relative;
}

.gnavi-list__link:hover {
  opacity: 0.6;
}

.gnavi-list__link::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("./img/arrow-s.svg") no-repeat center / 100% auto;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}

.gnavi-list__link--toggle::after {
  background-image: url("./img/arrow-s-down.svg");
}

.gnavi-list__link--toggle.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}

.gnavi-list__sub {
  width: 100%;
  background: var(--white);
}

.gnavi-list__low .gnavi-list__link {
  padding: var(--s2) var(--s4) var(--s2) var(--s4);
}

.gnavi-list__low .gnavi-list__link::after {
  content: "└";
  background: none;
  transform: translateY(-50%);
  position: absolute;
  top: 40%;
  left: 1rem;
}

.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}
.slider .swiper-button-next,
.slider .swiper-button-prev {
    width: 3rem;
    height: 3rem;
}
.slider .swiper-button-next:hover,
.slider .swiper-button-prev:hover {
    opacity: .6;
}
.slider .swiper-button-next::after,
.slider .swiper-rtl .swiper-button-prev::after {
    content: "";
    width: 3rem;
    height: 3rem;
    background: url("./img/button-next.png") no-repeat center center;
    background-size: contain;
}
.slider .swiper-button-prev::after,
.slider .swiper-rtl .swiper-button-next::after {
    content: "";
    width: 3rem;
    height: 3rem;
    background: url("./img/button-prev.png") no-repeat center center;
    background-size: contain;
}

.text-area {
  line-height: 2;
}
.summary-box-r {
  padding: var(--s4);
  display: grid;
  grid-auto-rows: minmax(10px, auto) 1fr;
  grid-template-areas: "img catch" "img content";
  
}
.summary-box-r-catch {
  padding: var(--s2) var(--s1) var(--s2) var(--s9);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--txt);
  line-height: 1.5;
  background: url('./img/title_triangle_icon.png') no-repeat center left / auto 2em;
  background-size: 6rem 6rem;
  grid-area: catch;
}
.summary-box-r-img {
  padding-right: var(--s4);
  grid-area: img;
}
.summary-box-r-content {
  grid-area: content;
}

.summary-box-l {
  padding: var(--s4);
  display: grid;
  grid-auto-rows: minmax(10px, auto) 1fr;
  grid-template-areas: "catch img" "content img";
  
}
.sec02 .summary-box-l{
  display: flex;
    gap: var(--s4);
}

.sec02 .summary-box-l-catch {
  background: url('./img/point_icon.png') no-repeat center left / auto 2em;
}

.summary-box-l-catch {
  padding: var(--s2) var(--s1) var(--s2) var(--s9);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--txt);
  line-height: 1.5;
  background: url('./img/title_triangle_icon.png') no-repeat center left / auto 2em;
  background-size: 6rem 6rem;
  grid-area: catch;
}
.sec04 .summary-box-l-catch {
  padding-left: var(--s6);
  background-size: 4rem 4rem;
  margin-bottom: var(--s2);
}
.summary-box-r-catch {
  padding-left: var(--s6);
  background-size: 4rem 4rem;
  margin-bottom: var(--s2);
  border-bottom: 2px dotted var(--bor);
}
.summary-box-l-img {
  padding-left: var(--s4);
  grid-area: img;
}
.sec04 .summary-box-l-img,
.sec04 .summary-box-r-img {
  max-width: 28rem;
}

.summary-box-l-content {
  grid-area: content;
}

.summary-box-l-catch a,
.summary-box-r-catch a{
  text-decoration: none;
  background: url('./img/arr_black.svg') no-repeat center right / auto 1em;
  display: block;
}
#low-page {
  padding-bottom: var(--s12);
}

.waku1 .btn-internal a {
  background: url(./img/arrow-wh-right.svg) no-repeat center right 1.4em / auto 1em, var(--pri01);
  font-size: 2rem;
  color: var(--txt);
}


.waku1 p {
  font-size: 1.8rem;
}

.waku1 .marker {
  font-size: 2rem;
}

/*------------------------------------------------------------
  SP settings
*/
@media screen and (max-width: 768px) {
  .scroll-table {
    margin-bottom: 1rem;
    display: block;
    padding: var(--s1);
    border: 1px solid #ccc;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 2rem;
  }

  .scroll {
    width: 100%;
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
  }

  .scroll > table {
    min-width: 64rem;
    width: max-content;
  }

  .scroll > table th,
  .scroll > table td {
    white-space: nowrap;
  }

  #low-page .scroll table {
    margin-block: 2rem;
}

  .sec01 .thb-box-full .c-h3 {
    padding: var(--s5) var(--s2) var(--s3);
  }

  .sec01 .thb-box-full .attention {
    width: calc(100% - var(--s2));
    max-width: calc(100% - var(--s4));
    padding: var(--s1) var(--s2);
    font-size: 2.5rem;
  }

  .sec01 .thb-box-full .twb-m-title02 {
    font-size: 2.2rem;
    padding: var(--s2) 0 var(--s1);
  }



  .sec01 .column-small {
    width: 93%;
    margin: 0 auto;
  }

  .lower-bottom::before {
    width: min(26%, 26rem);
    top: 0;
    right: 0;
  }

  .lower-bottom::after {
    bottom: 0;
    left: 0;
    height: 15rem;
  }

  .sec02 .column-medium {
    width: 100%;
    margin: 0 auto;
  }
  .c-onb-green-frame {
    border: 7px solid var(--pri02);
}
  .sec02 .attention {
    font-size: 2.5rem;
}
.c-onb-black-frame {
  width: 95%;
  margin: 0 auto;
}
.sec02 .section-title02-frame {
  position: relative;
z-index: 3;
}
.sec02 .deco-left02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
}

.sec01 .section-title02-frame:after {
  right: 45%;
}
  .column-medium {
    padding: var(--s2);
  }
  .c-oemCase__visual {
    min-height: 20rem;
}

  .onb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
  }

  .left-img {
    width: 100%;
    margin-right: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }

  .center-img {
    max-width: 100%;
  }

  .text-area {
    font-size: 1.4rem;
  }

  .summary-box-l {
    padding: var(--s2);
    display: block;
  }

  .sec02 .summary-box-l-catch {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
    background: url('./img/point_icon.png') no-repeat center left / auto 2em;
    padding-left: var(--s8);
  }

  .summary-box-l-img {
    padding-left: 0;
    margin-bottom: var(--s2);
  }

  section.sec03 .c-oem01Card {
    width: 95%;
    margin: 0 auto;
  }

  .sec03 .c-oem01Card__title {
    font-size: 2rem;
  }

  .onb-icon-title-frame {
    padding: var(--s2);
  }
.sec02  .onb-icon-title .underline {
    font-size: 2.3rem;
}

.sec02 .l-stack-l {
  gap: var(--s6);
}
.c-oemBasics__deco {
  width: 80%;
}
.sec06 .c-oemBasics__deco {
  width: 50%;
}
.c-oemBasics__hero {
  padding-top: var(--s2);
}
.c-oemBasicsBlock__title .small {
  font-size: 2rem;
}
  .onb-icon-title {
    font-size: 2.4rem;
  }

  .onb-icon-title small {
    font-size: 1.6rem;
  }

  .onb-icon-title-catch {
    padding-left: var(--s4);
    font-size: 1.4rem;
  }
  #index .sec04 .summary-box-l-content .btn-internal, #index .sec04 .summary-box-r-content .btn-internal {
    width: 60%;
    margin-top: 2rem;
}

  .onb-icon-title-icon {
    width: 6rem;
    height: auto;
    position: absolute;
    top: -2rem;
    left: -.5rem;
  }
  .onb-icon-title-icon.acrylic_stand {
    width: 12%;
}
  section.sec03 .c-oem01Grid {
    width: 100%;
  }
  .sec03 .l-grid-three{
    gap: var(--s5);
  }

  section.sec03 .c-oem01Grid + .c-oem01Grid {
    margin-top: var(--s8);
  }

  .section-title02 {
    font-size: 3rem;
    line-height: 1.5;
  }

  .section-title02-sub span {
    font-size: 2.3rem;
  }

  .c-oemCase__row {
    flex-direction: column;
    align-items: center;
  }

  .title-catch {
    font-size: 2rem;
  }

  .sec02 .title-catch {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s1) var(--s3);
  }

  .onb-casebox02-catch {
    font-size: 1.8rem;
  }

  .l-onb-casebox02 {
    gap: var(--s1);
  }

  .sec02 .onb-casebox02-frame,
  .summary-box-l {
    margin-top: 1rem;
    padding: var(--s3);
  }

  .sec02 .l-onb-casebox02__main {
    width: calc((100% - var(--s2)) * .9);
}

  .c-oemCase__vertical {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }

  .c-oemCase__blob {
    width: 100%;
    border-radius: var(--r-md);
    padding: var(--s4);
  }

  .c-sec--detail .c-card--large {
    padding: var(--s4) var(--s2);
  }

  .l-sec:has(.c-company-card) .l-grid-3 {
    display: flex;
    flex-direction: column;
  }

  .c-company-card {
    display: flex !important;
    flex-direction: column;
    grid-row: none;
  }

  .pc-fix-banner02 {
    display: none;
}

  .sp-fix-banner02 {
    display: block;
    width: 80%;
    position: fixed;
    left: 0;
    bottom: 1rem;
    z-index: 50;
}
.sp-fix-banner02 a {
    color: #fff;
    text-decoration: none;
    display: block;
    position: relative;
}
.sp-fix-banner02 a::after {
    content: "";
    width: 1rem;
    height: 2rem;
    background: url("./img/arrow-01-wht-right.svg") no-repeat right center / 1rem auto;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 1rem;
}
.sp-fix-banner02 a:hover {
    opacity: .7;
}

  span.c-fix-banner01-title {
    font-size: 2rem;
    color: var(--acc-dark);
}
  .sp-fix-banner04-text a {
    padding-right: 1.6rem;
    text-decoration: none;
    background: url("./img/arr_black.svg") no-repeat right center / 1.5rem auto;
    display: block;
  }

  .sp-fix-banner04-text a:hover {
    opacity: 0.7;
  }

  .c-company-sheet td:first-child {
    width: 32%;
  }

  .c-company-sheet td {
    padding: var(--s2);
  }

  .acc-more-btn {
    margin-right: var(--s1);
  }

  .acc-more-btn span {
    transition: inherit;
    transform: none;
    width: 80%;
  }

  .acc-more-btn:hover span {
    transform: none;
    margin: 0 auto;
  }

  .c-oemCase__blockTitle .c-hlink {
    font-size: 2rem;
  }

  .c-oemBasics__col {
    width: 95%;
    margin: 0 auto;
  }

  .c-oemBasicsBlock.l-stack-xs {
    width: 100%;
}
  .mainvisual {
    padding: var(--s2) var(--s1) var(--s7);
    background: url(./img/mv_bg_sp.jpg) no-repeat top center / cover;
    }

  .mainvisual__frame {
    width: 95%;
    padding: var(--s5) var(--s2) var(--s4);
    background: url(./img/green_frame_sp.svg) no-repeat center center / 100% 100%;
    margin-top: 4rem;
  }

  .mainvisual__decorations .deco-right,
.mainvisual__decorations .deco-left{
  display: none;
}

.mainvisual__decorations{
  position: absolute;
  z-index: 2;
}

.deco-item.deco-01 {
  width: 4rem;
  top: 42%;
  position: absolute;
  left: .5rem;
}
.deco-item.deco-02 {
  bottom: 2rem;
  position: absolute;
  right: 3rem;
  width: 4rem;
  transform: rotate(20deg);

}
.deco-item.deco-03{
  position: absolute;
  bottom: 1rem;
  left: 2rem;
  width: 6rem;
  transform: rotate(-20deg);

}
.mainvisual__inner {
  z-index: 0;
}

.c-mainvisual-lead {
  padding: var(--s2) var(--s2) var(--s5);
  text-align: left;
}

  .c-mainvisual-kicker {
    padding-inline: var(--s1);
        font-size: 2.2rem;
        line-height: 1.5;
  }
  .section-title02-sub {
    font-size: 2rem;
  }
  .c-mainvisual-logo img {
    width: 90%;
}
.sec02 .sec02__decorations .deco-left, 
.sec02 .sec02__decorations .deco-right {
  width: 40%;
}

.left-img-catch {
  font-size: 1.8rem;
}
.mainvisual-lower .mv-logo img {
  width: 50%;
  margin: 0 auto;
}
.index02-wrap {
  width: 90%;
}
.mainvisual-lower picture, .mainvisual-lower picture img {
  height: auto;
}
.header-area-upper {
  padding: var(--s1);
  text-align: left;
}
.header-title {
  padding-left: var(--s4);
}
.header-title::before {
  left: 0;
}
.slider-container {
  max-width: 75vw;
  overflow: hidden;
  margin: 0 auto;
}

.lower-bottom .slider-container {
  overflow: visible;
}

.summary-box-r {
  padding: var(--s2);
  display: block;
}
.summary-box-r-catch {
  margin-bottom: var(--s2);
  font-size: 2.4rem;
}
.summary-box-r-img {
  padding-right: 0;
  margin-bottom: var(--s2);
}
.summary-box-l {
  padding: var(--s2);
  display: block;
}
.sec02 .summary-box-l {
  display: flex;
  gap: var(--s3);
  padding-bottom: var(--s4);
}


.summary-box-l-catch,
.summary-box-r-catch {
  margin-bottom: var(--s2);
  font-size: 1.8rem;
}
.sec04 .summary-box-l-catch {
  background-size: 3rem auto;
  font-size: 2.3rem;
}
.sec04 .summary-box-r-catch {
  font-size: 2.3rem;
}
.summary-box-l-img {
  padding-left: 0;
  margin-bottom: var(--s2);
}
.sec04 .summary-box-l-img, .sec04 .summary-box-r-img {
  max-width: 55%;
  margin: 2rem auto;
}
.gnavi-btn__bar:nth-of-type(1) {
  top: 1.8rem;
}
.gnavi-btn__bar:nth-of-type(2) {
  top: 2.6rem;
}
.gnavi-btn__bar:nth-of-type(3) {
  top: 3.5rem;
}
#index .sec02 .bg-02 {
  background-attachment: scroll, scroll, scroll;
  background: url('./img/bg_02_sp.png') no-repeat center right;
  background-size: contain;

}
.top-index {
  margin: 5rem auto;
}
.sec03 .btn-link a {
  background: var(--c1) url(./img/arr_black.svg) no-repeat center right 2rem / auto 1.5em;
}
.acc-gr-more-btn::after {
  right: 3.3rem;
}
.section-title02 a {
  display: inline;
  background: url(./img/arr_black.svg) no-repeat top 56% right / auto .7em;
}
.sec02 .m-title01 {
  padding-bottom: var(--s3);
  min-height: 0;
}
.sec02 .l-grid-three .column-small {
  border-bottom: 1px solid var(--c1);
  padding-bottom: var(--s4);
}

.sec02 {
  display: grid; 
  position: relative;
}
.sec02 .sec02-sp_bg {
  background-image: url(./img/bg_02_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top; 
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;  
  height: 100dvh;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: 0; 
}
.sec02 .l-center {
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  z-index: 1; 
  min-height: 100dvh; 
}
.sec02.bg-02,
.sec02.bg-02::before,
.sec02.bg-02::after {
  content: none;
}
.gnavi-btn {
  width: var(--s9);
  height: var(--s9);
  top: var(--s4);
}
.gnavi-btn__bar {
  left: 1.5rem;
}
.gnavi-title {
  margin: 0 var(--s8) 2rem var(--s2);
  width: 75%;
}
.movie_area .section-title02-frame {
  margin-top: var(--s4);
}
.sec01 {
  padding-bottom: var(--s8);
}
.sec03, .sec04, .sec05, .sec06 {
  padding: var(--s14) 0;
}
.waku1 p {
  font-size: 1.5rem;
  text-align: left;
}
.waku1 .btn-internal a {
  font-size: 1.8rem;
}
.waku1 {
  width: 90%;
  margin: 0 auto;
  background-color: #FFFDF1;
  padding: var(--s2);
}
.waku1 .marker {
  font-size: 1.8rem;
}
.waku1 .btn-internal {
  width: 95%;
}
}