@charset "UTF-8";

/* header nav
--------------------------------------------------*/
nav.nav_top {
  position: relative;
  top: 15px !important;
  margin-bottom: 0;
  z-index: 10;
}

body nav.nav_top.fixed2 {
  top: 0 !important;
}

ul.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: min(100%, 1000px);
  margin: 0;
  padding: 5px;
  list-style: none;
  overflow-x: auto;
  white-space: nowrap;
  box-sizing: border-box;
  background: #fff;
  scrollbar-width: none;
}

ul.nav__list::-webkit-scrollbar {
  display: none;
}

ul.nav__list li {
  flex: 0 0 auto;
}

nav.nav_top>ul li {
  padding: 0 !important;
  font-size: 12px;
  border-right: unset;
}

nav.nav_top>ul li:first-child {
  border-left: unset;
}

ul.nav__list li a {
  display: block;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #111;
  text-decoration: none;
  background: #f4f4f4;
  border-radius: 100vmax;
  transition: .25s;
}

ul.nav__list li a:hover {
  background: #111;
  color: #fff;
}

/*breadcrumb
--------------------------------------------------*/
.breadcrumb {
  margin-top: 25px !important;
}

.breadcrumb__list {
  margin: 10px 0;
  font-size: 11px;
}

.breadcrumb__item a {
  text-decoration: underline;
}

/*header-image
--------------------------------------------------*/
.cap-kv {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.cap-kv__image img {
  display: block;
  width: 100%;
  height: auto;
}

.cap-kv__content {
  position: absolute;
  top: 8%;
  left: 2%;
  z-index: 2;
  color: #07162d;
}

.cap-kv__content h2 {
  margin: 0 0 26px;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .04em;
}

.cap-kv__content>p {
  margin: 0 0 70px;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.cap-kv__content ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cap-kv__content li {
  position: relative;
  width: 100px;
  text-align: center;
}

.cap-kv__content li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 1px;
  height: 95px;
  background: #cfd4dc;
}

.cap-kv__content li img {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.cap-kv__content li p {
  margin: 0;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.cap-kv__content li span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
}

/*メイン下スライダー
--------------------------------------------------*/
.cap-slider {
  width: 100%;
  overflow: hidden;
}

.cap-slider__track {
  display: flex;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: capSlide 40s linear infinite;
  will-change: transform;
}

.cap-slider__track:hover {
  animation-play-state: paused;
}

.cap-slider__track li {
  flex: 0 0 auto;
  width: 200px;
  height: auto;
  overflow: hidden;
}

.cap-slider__track a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.cap-slider__track a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.cap-slider__track a:hover::after {
  opacity: .28;
}

.cap-slider__track img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes capSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .cap-slider__track li {
    width: 220px;
    height: auto;
    margin-right: 14px;
  }
}

/*印刷等の表
--------------------------------------------------*/
.processing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.processing-table th,
.processing-table td {
  border: 1px solid #ddd;
  padding: 16px 12px;
  text-align: center;
  font-size: 16px;
}

.processing-table thead th {
  background: #f5f5f5;
  font-weight: 700;
}

.processing-table tbody th {
  background: #fafafa;
  font-weight: 700;
}

/* 特集セクション
--------------------------------------------------*/
section.feature#feature {
  margin-top: 38px;
  margin-bottom: 0;
  padding: 40px 20px;
  background: #fff;
  box-sizing: border-box;
}

section.feature#feature .feature__inner {
  max-width: 1200px;
  margin: 0 auto;
}

section.feature#feature .feature__title {
  display: inline-block;
  margin: 0 24px 0 0;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

section.feature#feature .feature__lead {
  display: inline-block;
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
}

section.feature#feature .l-feature__list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

section.feature#feature .l-feature__list li {
  min-width: 0;
}

section.feature#feature .l-feature__list a {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  color: #111;
  text-decoration: none;
  background: #eee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

section.feature#feature .l-feature__list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

section.feature#feature .l-feature__list a:hover img {
  transform: scale(1.05);
}

section.feature#feature .l-feature__list a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, .88) 0%,
    rgba(255, 255, 255, .68) 38%,
    rgba(255, 255, 255, .08) 72%
  );
}

section.feature#feature .l-feature__list a::after {
  content: "›";
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  font-size: 36px;
  line-height: 1;
  color: #111;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

section.feature#feature .l-feature__list a:hover::after {
  transform: translateX(4px);
  background: #111;
  color: #fff;
}

section.feature#feature .l-feature__list p {
  position: absolute;
  left: 28px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  color: #111;
}

section.feature#feature .l-feature__list p span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #111;
}

/* SP
--------------------------------------------------*/
@media screen and (max-width: 768px) {
  section.feature#feature {
    padding: 32px 16px;
  }

  section.feature#feature .feature__title,
  section.feature#feature .feature__lead {
    display: block;
  }

  section.feature#feature .feature__lead {
    margin-top: 8px;
    margin-bottom: 20px;
  }

  section.feature#feature .l-feature__list ul {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  section.feature#feature .l-feature__list a {
    height: 240px;
    border-radius: 14px;
  }

  section.feature#feature .l-feature__list p {
    left: 22px;
    font-size: 22px;
  }

  section.feature#feature .l-feature__list p span {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
  }

  section.feature#feature .l-feature__list a::after {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}


/*キラメックが選ばれる理由
--------------------------------------------------*/
ul.list_reason li:nth-child(1) dl dd {
  background: url(../images/img-reason_item1.jpg) no-repeat;
}

ul.list_reason li:nth-child(3) dl dd {
  background: url(../images/img-reason_item3.jpg) no-repeat;
}

ul.list_reason li:nth-child(4) dl dd {
  background: url(../images/img-reason_item4.jpg) no-repeat;
}


/* 用途別シーンへ
--------------------------------------------------*/
#capuse {
  margin-top: -30px;
  margin-bottom: 60px;
  padding-top: 60px;
}

.cap-use {
  margin: 0 10px;
  background: #fff;
}

.cap-use__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cap-use__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.08em;
}

.cap-use__title::before,
.cap-use__title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #d90000;
}

.cap-use__lead {
  margin: 16px 0 36px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.cap-use__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 15px;
}

.cap-use__card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 15px 50px 15px 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  color: #111;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: 0.2s ease;
}

/* color */
.cap-use__card:nth-child(1) {
  color: #1f8a70;
}

.cap-use__card:nth-child(1):visited {
  color: #1f8a70;
}

.cap-use__card:nth-child(2) {
  color: #7b4bb3;
}

.cap-use__card:nth-child(2):visited {
  color: #7b4bb3;
}

.cap-use__card:nth-child(3) {
  color: #f26b38;
}

.cap-use__card:nth-child(3):visited {
  color: #f26b38;
}

.cap-use__card:nth-child(4) {
  color: #2e7d32;
}

.cap-use__card:nth-child(4):visited {
  color: #2e7d32;
}

.cap-use__card:nth-child(5) {
  color: #3b82f6;
}

.cap-use__card:nth-child(5):visited {
  color: #3b82f6;
}

.cap-use__card:nth-child(6) {
  color: #e85d75;
}

.cap-use__card:nth-child(6):visited {
  color: #e85d75;
}

.cap-use__card:nth-child(7) {
  color: #d4a017;
}

.cap-use__card:nth-child(7):visited {
  color: #d4a017;
}

.cap-use__card:nth-child(8) {
  color: #00a896;
}

.cap-use__card:nth-child(8):visited {
  color: #00a896;
}

.cap-use__card:nth-child(9) {
  color: #2563eb;
}

.cap-use__card:nth-child(9):visited {
  color: #2563eb;
}

.cap-use__card:hover {
  border-color: #d90000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 0, 0, 0.12);
}

.cap-use__card:visited {
  color: #111;
}

.cap-use__icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cap-use__icon img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.cap-use__text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.cap-use__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #d90000;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.cap-use__btn-wrap {
  margin-top: 32px;
  text-align: center;
}

.cap-use__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 420px;
  padding: 14px 24px;
  border: 1px solid #ccc;
  border-radius: 999px;
  color: #111;
  background: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s;
}

.cap-use__btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d90000;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.cap-use__btn:hover {
  text-decoration: none;
  border-color: #d90000;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 0, 0, 0.12);
}

.cap-use__btn:visited {
  color: #111;
}

/* 格安・激安ページ
--------------------------------------------------*/
.affordable-cap-banner {
  margin: 28px 0 42px;
}

.affordable-cap-banner__link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 150px;
  padding: 22px 22px 22px 26px;
  border: 2px solid #d90000;
  border-radius: 10px;
  background:
    linear-gradient(90deg, #fff 0%, #fff5f5 55%, #fff 100%);
  color: #111;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: 0.5s;
}

.affordable-cap-banner__link:hover {
  color: #111;
  opacity: 0.5;
  text-decoration: none;
}

.affordable-cap-banner__link:visited {
  color: #111;
}

.affordable-cap-banner__badge {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  margin-right: 26px;
  border-radius: 50%;
  background: #d90000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.affordable-cap-banner__badge span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.affordable-cap-banner__badge strong {
  margin-top: 4px;
  font-size: 22px;
  line-height: 1.2;
}

.affordable-cap-banner__body {
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.affordable-cap-banner__label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  background: #d90000;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.affordable-cap-banner__title {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.affordable-cap-banner__title::first-letter {
  color: #d90000;
}

.affordable-cap-banner__text {
  margin: 8px 0 12px;
  font-size: 16px;
  font-weight: 700;
}

.affordable-cap-banner__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.affordable-cap-banner__points li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  font-weight: 700;
}

.affordable-cap-banner__points li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #d90000;
  font-size: 12px;
}

.affordable-cap-banner__image {
  flex: 0 0 260px;
  margin: 0 24px;
}

.affordable-cap-banner__image img {
  display: block;
  width: 100%;
  height: auto;
}

.affordable-cap-banner__cta {
  flex: 0 0 340px;
  min-height: 80px;
  border-radius: 8px;
  background: #d90000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.affordable-cap-banner__cta b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #d90000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
}