@charset "utf-8";

/* pictureタグのリセット追加, 2025/01/31 */
picture {
  display: block;  /* インライン要素の隙間をなくす */
  max-width: 100%; /* 親要素の幅を超えないようにする */
}
/* 画像が親要素の幅にフィットするように */
picture img {
  display: block;  /* 画像の下の余白を消す */
  width: 100%;     /* レスポンシブ対応 */
  height: auto;    /* アスペクト比を維持 */
  margin-top: 0;
  margin-bottom: 0;
}
/* 画像が小さい時に中央揃えする */
picture {
  text-align: center;
}

/* @ base customize */
.g-contents > .l-prd-notice + * {
  margin-top: 1.875rem;
}

/* @ shared */
.g-belt--product {
  font-size: 1.25em;
  font-weight: normal;
  background: #efefef;
  margin-bottom: 0;
}

.g-stack--product-detail > * + * {
  margin-top: 1.25rem !important;
}

/* @ wrap */
.l-product-detail {
  margin-top: 1.875rem;
}

/* @ notice area */
.l-prd-notice {
  text-align: center;
  color: #ff0;
  background: #000;
  box-sizing: border-box;
  padding: 1em;
}

.l-prd-notice:blank {
  display: none;
}

.l-prd-notice :where(img[width][height]) {
  height: auto;
}

/* @ information */
.l-prd-info-grid {
  display: flex;
  gap: 2.5rem;
}

.l-prd-info-grid__body {
  order: 1;
}

.l-prd-info-grid__body > * + * {
  margin-top: 2.5rem !important;
}

.l-prd-info-grid__image {}

@media (min-width: 641px) {
  .l-prd-info-grid > * {
    box-sizing: border-box;
    flex: 1 1;
  }

  .l-prd-info-grid__image {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .l-prd-info-grid {
    flex-direction: column;
  }
}

/* @ information > notes */
.l-prd-title {
  line-height: 1.33;
  font-size: 1em;
  font-weight: normal;
  border-left: 0.4375em solid #fd3a3a;
  padding-left: 1.25rem;
}

.l-prd-title__role {}

.l-prd-title__name {
  font-size: 2.5em;
  font-weight: bold;
}

.l-prd__desc {
  font-size: 1.125em;
}

/* @ information > function */
.l-prd-function {
  line-height: 1.33;
  font-size: 0.875em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-prd-function__item {
  background: #efefef;
  border-radius: 0.214em;
  padding: 0.5em 1.42em;
}

/* @ information > variation */
.l-prd-variation {}

.l-prd-variation__chip {
  border-radius: 0.1875rem;
}

.g-list-nav--prd-variation {
  gap: 0.3125rem;
}

/* @ information > slider */
.l-prd-slide {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-prd-slide__item {
  text-align: center;
}

.l-prd-slide__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: auto;
}

/* test サムネ比率を16/9にする実験 @ 221014 */
.l-prd-slide__image {
  box-sizing: border-box;
  object-fit: contain;
  width: 100%;
}

@media (min-width: 641px) {
  .l-prd-slide__image {
    height: min(353.25px, (((92vw * 0.5625) - 2.5rem / 2) / 2));
  }
}

@media (max-width: 640px) {
  .l-prd-slide__image {
    height: calc(92vw * 0.5625);
  }
}

@supports (aspect-ratio: 1) {
  .l-prd-slide__image {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* @ slick custom */
.l-prd-slide:not(.slick-initialized) {
  height: 100%;
  background: #f8f8f8;
}

.l-prd-slide:not(.slick-initialized) > * {
  display: none;
}

.l-prd-slide.slick-slider {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-prd-slide.slick-slider .slick-list {
  box-sizing: border-box;
  border: 1px solid #ccc;
}

.l-prd-slide.slick-slider .l-prd-slide__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.l-prd-slide.slick-slider .slick-dots {
  display: flex;
  gap: 0.625em;
  list-style: none;
  margin: 0.625em 0 0;
  padding: 0;
}

.l-prd-slide.slick-slider .slick-dots > * {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 0.5rem;
}

.l-prd-slide.slick-slider .slick-dots > :hover {
  opacity: 0.6;
  cursor: pointer;
}

/* @ related content */
.g-ttl-related-content {
  font-size: 1.125em;
  font-weight: normal;
  border-bottom: 1px solid;
  display: flex;
  align-items: center;
  gap: 0.666rem;
  margin-bottom: 1.33em;
  padding-bottom: 0.555em;
}

.g-ttl-related-content::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: repeating-linear-gradient(90deg, transparent, transparent 0.277em, white 0.277em, white 0.333em), repeating-linear-gradient(00deg, transparent, transparent 0.277em, white 0.277em, white 0.333em), #fd3a3a;
}

.g-list-nav--related-content {
  font-size: 0.875em;
}

.l-related-content__more {
  line-height: 1.33;
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  border: 1px solid #bbb;
  border-radius: 99rem;
  padding: 0.7em 1.75em;
}

.l-related-content__more:hover {
  background: #ffd8d8;
}

.l-related-content__more::before {
  content: "▶︎";
  font-size: 0.5em;
}

/* 2023-12-12 追加 */
.l-related-content__more.button_online-shop {
  background-color: #f00;
  color: white;
  border-color: #f00;
  font-weight: 500;
}

.l-related-content__more.button_online-shop:hover {
  background-color: #ffd8d8;
  border-color: #bbb;
  color: #000;
}

.l-related-content__more.button_online-shop::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url('../_img2/base/icon-store_w.svg');
  background-size: cover;
}

.l-related-content__more.button_online-shop:hover::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url('../_img2/base/icon-store.svg');
  background-size: cover;
}

/* @ product detail */

/* @ product spec contents */
.l-prd-spec > * + :not(.l-product-tab) {
  margin-top: 2.5rem;
}

body.is-modal-active :is(.l-prd-spec) {
  position: relative;
  z-index: 1;
}

/* @ product tab */
.l-product-tab {
  display: flex;
  overflow-x: auto;
}

.l-product-tab__item {
  line-height: 1.25;
  border-style: solid;
  padding: 1.25em 1em;
  white-space: nowrap;
}

.l-product-tab__item:last-child {
  border-right-width: 1px;
}

@media (min-width: 641px) {
  .l-product-tab {
    border-bottom: 1px solid;
  }

  .l-product-tab__item {
    border-style: solid;
    border-width: 1px 0 0 1px;
  }
}

@media (max-width: 640px) {
  .l-product-tab {
    overflow: auto;
  }

  .l-product-tab.g-sitewidth {
    width: auto;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .l-product-tab__item {
    flex: 0 0 auto;
    border-width: 1px 0 1px 1px;
    padding-top: .83em;
    padding-bottom: .83em;
  }
}

.l-product-tab__item.is-tab-active {
  color: #fff;
  background: #000;
  border-width: 0;
}

.g-tab-content {
  animation: fadein 666ms cubic-bezier(0.16, 1, 0.3, 1);
}

.g-tab-content:not(.is-tab-active) {
  display: none;
}

/* @ wysywyg & old site styles */
.wrapping--flex__liquid--grid,
.wrapping--flex__liquid--grid--col2 {
  display: flex;
  flex-direction: column;
  justify-items:flex-start;
  gap: 2em;
  margin-block-end: 1em;
}
.wrapping--flex__liquid--grid .objects--center,
.wrapping--flex__liquid--grid--col2 .objects--center {
  text-align: center;
}
.liquid--grid--col3,
.liquid--grid--col2 {
  display: grid;
  grid-auto-flow: dense;
  justify-content: center;
  /* justify-items: center; 2024/08/30 レイアウト調整のために非表示 */
  gap: 2em;
  width: 100%;
  margin: 0;
}
.liquid--grid--col3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.liquid--grid--col2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.liquid--grid--col3 table,
.liquid--grid--col2 table{
  margin: 1.0em auto;
  text-align: center;
  display: inline-table;
}
.liquid--grid--col3 > :where(*) {
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  .liquid--grid--col3,
  .liquid--grid--col2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1em;
  }
}
.grid--col2:not(:first-child) {
  margin-top: 2rem;
}
@media (max-width: 640px) {
.grid--col2:not(:first-child) {
  margin-top: .875rem;
}
}
.grid--col2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
	justify-items: center;
	margin-bottom: 2em;
  width: 83.333%;
  margin: 0 auto;
}
.grid--col2.two_to_one {
  grid-template-columns: 2fr 1fr;
}
.grid--col2.one_to_two {
  grid-template-columns: 1fr 2fr;
}
.grid--col2.tow_to_one {
  grid-template-columns: 2fr 1fr;
}
.grid--col2.one_to_tow {
  grid-template-columns: 1fr 2fr;
}
.grid--col2.wide {
  width: 100%;
  justify-items: stretch;
}
@media (max-width: 640px) {
	.grid--col2 {
		gap: 1rem;
    width: 100%;
	}
}
/* .grid--col2 > *,
.grid--col2 > * > * {
  margin-top: 0 !important;
} */

@media (max-width: 640px)  {
  .g-wysiwyg .pc-only {
    display: none;
  }
}
@media (min-width: 641px) {
  .g-wysiwyg .sp-only {
    display: none;
  }
}
.g-wysiwyg .note {
  position: relative;
	padding-left: .75em; /* ※の分の余白を作ります */
	display: inline-block;
}
.g-wysiwyg .note::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}
.g-wysiwyg .note[lang="ja"] {
  position: relative;
	padding-left: 1.0em; /* ※の分の余白を作ります */
	display: inline-block;
}
.g-wysiwyg .note::before([lang="ja"]) {
  content: "※";
	position: absolute;
	left: 0;
	top: 0;
}
.g-wysiwyg dl {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  margin-bottom: 1rem; /* dl 同士の間隔を設定 */
}

.g-wysiwyg dt, .g-wysiwyg dd {
  display: inline-block;
  margin: 0;
  padding: 0.5rem; /* 必要に応じてパディングを設定 */
}

.g-wysiwyg dt {
  font-weight: bold;
  flex: 0 0 auto; /* dt の幅を自動調整 */
  padding-bottom: 0;
}

.g-wysiwyg dd {
  flex: 1 0 0; /* dd の幅を残りのスペースに調整 */
  padding-top: 0;
}


.g-wysiwyg .inline--video-wrap {
  width: 100%;
  max-width: 640px; /* 必要に応じて最大幅を設定 */
  margin: 0 auto; /* 中央揃え */
}

.g-wysiwyg .inline--video-wrap iframe,
.g-wysiwyg .inline--video-wrap video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* アスペクト比を設定 */
  object-fit: cover; /* ビデオの内容がコンテナに収まるように調整 */
}

.g-wysiwyg :where(*:lang(de)),
.g-wysiwyg :where(*:lang(it)),
.g-wysiwyg :where(*:lang(fr)),
.g-wysiwyg :where(*:lang(es-es)),
.g-wysiwyg :where(*:lang(es-mx)),
.g-wysiwyg :where(*:lang(en-sg)),
.g-wysiwyg :where(*:lang(en-gb)),
.g-wysiwyg :where(*:lang(en)) {
  letter-spacing: 0;
}
.g-wysiwyg :where(div.responsive-image) { display: flex; justify-content: center; overflow: hidden; }
.g-wysiwyg :where(div.responsive-image) img { width: 100%; max-width: none; }
@media (max-width: 640px) {
   .g-wysiwyg :where(div.responsive-image img) {
    width: 125% !important; clip-path: inset(0 0);
    object-fit: cover;
  }
  .g-wysiwyg :where(div.responsive-image img.howtoorder) {
    width: 160% !important;
  }
}
.g-wysiwyg :where(img) { margin-top: 1em; margin-bottom: 1em; }
.g-wysiwyg :where(p) { margin-bottom: 1em; }
@media (max-width: 640px) {
  .g-wysiwyg :where(p + img) { margin-top: 0; }
}
.g-wysiwyg :where(.mini) { font-size: .85em; font-weight: 400; }

.g-wysiwyg :where(.inc_TB) { overflow-x: scroll; padding-block-end: 0.5rem; }
.g-wysiwyg :where(table) {
  min-width: 100%;
  border-collapse: collapse;
}
.g-wysiwyg :where(table.nowrap th),
.g-wysiwyg :where(table.nowrap td),
.g-wysiwyg :where(table.now-rap th),
.g-wysiwyg :where(table.now-rap td) {
  white-space: nowrap;
}
.g-wysiwyg :where(table th) {
  background-color: lemonchiffon;
}
.g-wysiwyg :where(table.soudSample-2column) {
  margin-top: 1rem;
}

.g-wysiwyg :where(table.soudSample-2column) tr {
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #ddd;
  border-left: none;
}

.g-wysiwyg :where(table.soudSample-2column) td {
  border: none;
}

.g-wysiwyg :where(table.soudSample-2column) td:nth-child(1) {
  width: 50%;
}

.g-wysiwyg :where(table.soudSample-2column) td:nth-child(2) {
  width: auto;
}

.g-wysiwyg :where(table.soudSample-2column) td:nth-child(2) audio {
  width: 100%;
}

.g-wysiwyg :where(table.soudSample-3column) {
  margin-top: 1rem;
}

.g-wysiwyg :where(table.soudSample-3column) tr {
  border-top: none;
  border-right: none;
  border-bottom: 1px solid #ddd;
  border-left: none;
}

.g-wysiwyg :where(table.soudSample-3column) td {
  border: none;
}

.g-wysiwyg :where(table.soudSample-3column) td:nth-child(1) {
  width: 6%;
}

.g-wysiwyg :where(table.soudSample-3column) td:nth-child(2) {
  width: 44%;
}

.g-wysiwyg :where(table.soudSample-3column) td:nth-child(3) {
  width: auto;
}

.g-wysiwyg :where(table.soudSample-3column) td:nth-child(3) audio {
  width: 100%;
}

@media (max-width: 640px) {
  .g-wysiwyg :where(table) {
    width: 100%;
    display: block;
    overflow: auto;
    box-sizing: border-box;
  }

  .g-wysiwyg :where(table.soudSample-3column) {
    width: auto;
  }
}

.g-wysiwyg :where(table tr > *) {
  border: 1px solid #ccc;
  padding: 0.333em 0.5em;
}

.g-wysiwyg :where(table tr.layout-cell > *) {
  border: none;
  vertical-align: top;
}

.g-wysiwyg :where(table tr.layout-cell > img) {
  width: auto;
}

.g-wysiwyg :where(table tr > [scope="row"]) {
  color: #000;
  background-color: #f0f0f0;
  /* width: 25%; */
}

.g-wysiwyg :where(font) {
  font-size: 1em;
}

.g-wysiwyg :where(ul, ol) {
  margin: 0 0 0 1.25em;
  padding: 0;
  line-height: 1.5;
}

.g-wysiwyg :where(h3) {
	font-size: 1.3em;
	font-weight: bold;
	text-align: left;
	/* border-bottom: solid 1px #ddd; */
	padding: 0.25em;
	border-left: .25em solid black;
	padding-left: .5rem;
	letter-spacing: .05em;
  line-height: 1.3;
}
.g-wysiwyg :where(h3):not(:first-child) {
	margin-top: 3.3rem;
}
.g-wysiwyg :where(h3:lang(de)),
.g-wysiwyg :where(h3:lang(it)),
.g-wysiwyg :where(h3:lang(fr)),
.g-wysiwyg :where(h3:lang(es-es)),
.g-wysiwyg :where(h3:lang(es-mx)),
.g-wysiwyg :where(h3:lang(en-sg)),
.g-wysiwyg :where(h3:lang(en-gb)),
.g-wysiwyg :where(h3:lang(en)) {
  letter-spacing: 0;
}

.g-wysiwyg :where(h4) {
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  background: #d8d8d8;
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 10px;
  line-height: 1.3;
}
.g-wysiwyg :where(h4):not(:first-child) {
  margin-top: 2.25em;
}
@media (max-width: 640px) {
.g-wysiwyg :where(h4):not(:first-child) {
  margin-top: 0.75em;
}
}

.g-wysiwyg :where(h5) {
  font-size: 1.0em;
  font-weight: bold;
  margin: .83em 0 .53em;
  padding-left: .5em;
  border-left: 4px solid #f00;
  line-height: 1.3;
}
.g-wysiwyg :where(h5):not(:first-child) {
  margin-top: 1.75em;
}
.g-wysiwyg :where(h5 + p) {
  margin-top: 0;
  font-size: .83em;
  line-height: 1.5;
}
.g-wysiwyg :where(h5 div p) {
  margin-top: 0;
  font-size: .83em;
  line-height: 1.5;
}

.g-wysiwyg :where(h6) {
  font-size: .9em;
  font-weight: bold;
  margin: 2.33em 0 .53em;
  line-height: 1.3;
}

.g-wysiwyg :where(img[width][height]) {
  height: auto;
}

.g-wysiwyg :where(li):not(:first-child) {
  margin-block-start: .85em;
}
/* @ dicument > for Aplications tab */
.l-article-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 640px) {
  .l-article-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4vw;
  }
}

.l-article-list__item {
  background: #f8f8f8;
}

.l-article-list__item > a {
  text-decoration: none;
  color: black;
}

.l-article-list__more {
  color: inherit;
  display: grid;
  text-decoration: none;
}

.l-article-list__more:hover {
  text-decoration: inherit;
}

.l-article-list__thumb {
  width: 100%;
  height: auto;
  box-shadow: 0 0 0 1px #ccc;
  aspect-ratio: 16 / 10;
}

/* Button Article List */
.b-btn-article-list {
  line-height: 1.3;
  font-size: 0.875rem;
  text-align: inherit;
  background: inherit;
  cursor: inherit;
  border: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  padding: 1em 1.25em;
}

.b-btn-article-list::after {
  content: "";
  flex: 0 0 auto;
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

/* @ document > grid */
.l-docview-grid{}
.l-docview-grid__side{
	background: #f8f8f8;
}
.l-docview-grid__main{
	background: #e5e5e5;
	/* padding: 2.5rem; */
	padding: 4%;
}

@media (min-width: 641px){
	.l-docview-grid{
		display: flex;
		gap: 1.25rem;
	}
	.l-docview-grid > *{
		box-sizing: border-box;
	}
	.l-docview-grid__side{
		flex: 0 0 24%;
	}
	.l-docview-grid__main{
		flex: 1 1 auto;
		height: calc(min(74.66vw, 1300px) * 1.415);
		max-height: calc(100vh - 120px);
	}
}
@media (max-width: 640px){
	.l-docview-grid > * + *{
		margin-top: 1rem;
	}
	.l-docview-grid__main{
		height: calc(100vw * 1.415);
		max-height: calc(100vh - 120px);
	}
}



/* & modal mode */
@media (max-width: 640px){
	.l-docview-grid__side{
		position: fixed;
		z-index: 1;
		inset: 0;
		overflow: auto;
		overscroll-behavior: contain;
		margin: 0;
		padding: min(3.75rem, 4vw);

		transition: 333ms ease;
	}
	.docview-menu:not(:checked) ~ .l-docview-grid__side{
		opacity: 0;
		visibility: hidden;
	}
}

.l-btn-docview{
	line-height: 1.5;
	text-align: left;
	border: .25rem solid #ccc;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-gap: 1em;
	align-items: center;
	padding: 1em;
	padding-left: 3em;
	background: url(../_img2/base/icon-pdf.svg) no-repeat left .5em center / auto 1.75em;
}
.l-btn-docview::after{
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: .25rem .25rem 0;
	border-color: currentcolor transparent transparent;
}
.l-modal__close--docview{
	display: block;
	width: fit-content;
}
@media (min-width: 641px){
	.l-btn-docview,
	.l-modal__close--docview{
		display: none;
	}
}

/* @ document */
.l-docgroup,
.l-docmenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* @ document > group */
.l-docgroup {}

.l-docgroup__name {
  line-height: 1.33;
  background: #dcdddd;
  margin-bottom: 1.875rem;
  padding: 9.6%;
}

.l-docgroup__name:not(:first-child) {
  margin-top: 2.5rem;
}

/* @ document > menu */
.l-docmenu{
	padding: 0 9.6%;
}
.l-docmenu > * + *{
	/* margin-top: 9.6%; */
}
.l-docmenu__item{}
.l-docmenu__item > a{
	overflow-x: auto;
}
.l-docmenu__more{
	line-height: 1.33;
	/* word-break: break-all; */ /* 表示確認の為：230406 */
	color: inherit;
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	gap: 1em;
	margin: 0 -12.17%;
	padding: 1rem 9.6%;
}
.l-docmenu__more::after{
	display: block;
	width: 1em;
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
	background:
		linear-gradient(to left bottom, transparent 50%, #dcdddd 50%) no-repeat top / 100% 50%,
		linear-gradient(to left top, transparent 50%, #dcdddd 50%) no-repeat bottom / 100% 50%;
}
.l-docmenu__more.js-pdf-viewer--is-current{
	background-color: #dcdddd;
}
.l-docmenu__more.js-pdf-viewer--is-current::after{
	content: "";
}
.l-docmenu__more:not(:hover){
	text-decoration: none;
}



/* @ download */
.l-download-grid > *{
	margin-bottom: 1.5rem;
}
.l-download{}
.l-download-list{
	font-size: .875em;
	list-style: none;
	margin: 0;
	padding: 1rem;
}
.l-download-list > * + *{
	margin-top: .25rem;
}
.l-download-list__item{}
.l-download-list__more{
	color: inherit;
}
.l-download-list__more:not(:hover){
	text-decoration: none;
}
@media (min-width: 641px){
	.l-download-grid{
		columns: 2 auto;
		column-gap: 1.5rem;
	}
	.l-download-grid > *{
		page-break-inside: avoid;
		break-inside: avoid;
	}
}
@media (max-width: 640px){}


.l-download-list--grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(max(30%, 9rem), 1fr));
	gap: 1rem;
	padding: 0;
}
.l-download-list--grid > *{
	margin: 0;
}

/* flash pattern */
.l-flash {
  text-align: center;
}

.l-ttl-flash {}

.flash-table {
  min-width: 100%;
  white-space: nowrap;
  border-collapse: collapse;
  table-layout: fixed;
}

.trswitch,
.trwiring,
.tr1 {
  text-align: center;
  padding: 10px 5px;
  border: solid 1px #fff;
}

.trswitch {
  background-color: #c0cfd9;
}

.trwiring {
  background-color: #dddbc8;
}

.tr1 {
  border: solid 1px #ddd;
}

.l-icon-dimmed {
  height: 1.5em;
  vertical-align: bottom;
  margin-right: 0.333em;
}

/* @ update product list */
.l-update-product {
  border: 0.3125rem solid #ddd;
  padding: 1rem;
}

* + .l-update-product {
  margin-top: 1rem;
}

.l-update-product__name {
  font-size: 1.125em;
  font-weight: bold;
}

/* @ update history */
.l-update-history {}

.l-update-history__title {
  line-height: 1.5;
  font-size: 1.25em;
  font-weight: bold;
}

/* @ repair table */
.l-product-combo {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 0;
}
@media (max-width: 768px) { /* 2024/07/01追記 */
  .l-product-combo {
    align-items: flex-start;
    flex-direction: column;
    gap: .5em;
  }
}

.l-product-combo__thumb {
  flex: 0 0 auto;
  max-height: 2.285em;
}

.g-tbl--slim :where(.g-tbl__cell .g-modal) {
  font-size: 1rem;
}

/* @ repair description */
.l-repair-description {
  columns: auto calc(24.5rem);
  column-gap: min(4vw, 3.75rem);
}

.l-repair-description > * {
  break-inside: avoid;
  margin: 0 !important;
}

.l-repair-description > * + * {
  margin-top: min(4vw, 3.75rem) !important;
}

/* @ faq */
.l-faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-faq {
  border-bottom: 1px solid #b2b2b2;
}

.l-faq__title,
.l-faq__body {
  /* font-size: 1.125em; */
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  /* gap: 1.5rem; */
  gap: 1.0rem;
  /* padding: 2rem; */
  padding: .3em .5em;
}
@media (max-width: 640px) { /* 2024/07/03追記 */
  .l-faq__title,
  .l-faq__body {
    padding: 0em .5em;
    font-size: .875em;
    line-height: 1.5;
    gap: 1.0rem;
  }
}

.l-faq__title::before,
.l-faq__body::before {
  flex: 0 0 auto;
  line-height: 1;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  background: #ccc;
  width: 1.83em;
  height: 1.83em;
  border-radius: 0.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-faq__title::before {
  content: "Q";
  background: #49aad2;
}

.l-faq__body::before {
  content: "A";
  background: #ff0000;
}

.l-faq__title {
  align-items: center;
}

.l-faq__body {
  background: #ffe5e6;
  border-top: 1px solid #b2b2b2;
  padding-block-start: 1.0em;
  padding-block-end: 1.0em;
}

.l-faq__body > * > :where(p):first-child {
  margin-top: 0;
}

/* @ sticky contact */
.g-sticky-bottom--contact {
  position: static;
}

/* @ iframe > registry menu */
.fr-regmenu {
  display: flex;
  gap: 3.75rem min(4%, 3.75rem);
}

@media (max-width: 640px) {
  .fr-regmenu {
    flex-direction: column;
  }
}

.fr-regmenu::after {
  content: "";
  flex: 0 0 1px;
  background: #ccc;
}

.fr-regmenu > * {
  flex: 1 1 0;
  align-self: center;
}

.fr-regmenu > :last-child {
  order: 1;
}

.fr-nav--regist {
  font-size: 1.125em;
}

.fr-ttl-regmenu {
  font-size: 1.25em;
  font-weight: normal;
}

.fr-ttl-notice {
  font-size: 1em;
  font-weight: normal;
}

/* 非表示：発光色 @ 2024.03.06 */
.l-prd-function__item--color-red {
  color: white;
  background: #e60012;
}

.l-prd-function__item--color-yellow {
  color: black;
  background: #fff100;
}

.l-prd-function__item--color-green {
  color: white;
  background: #89c997;
}

.l-prd-function__item--color-blue {
  color: white;
  background: #0682d5;
}

.l-prd-function__item--color-purple {
  color: white;
  background: #9900ff;
}

.l-prd-function__item--color-white {
  color: black;
  background: #ffffff;
  outline: 1px solid;
}

.l-prd-function__item--color-lemon {
  color: black;
  background: #eaf88e;
}

.l-prd-function__item--color-cyan {
  color: white;
  background: #00a0e9;
}

.l-prd-function__item--color-pink {
  color: black;
  background: #f3b1bd;
}

.l-prd-function__item--color-multi {
  color: black;
  text-shadow: 0 1px white;
  background: conic-gradient(#fff100, #e60012, #0682d5, #89c997, #fff100) no-repeat center / 100% 100%;
}
