* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:last-child {
  margin-bottom: 0 !important;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
  color: #202020;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.857;
  }
}

p {
  margin: 0 0 2rem;
}

ul {
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

img,
video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  max-width: 100%;
  border-style: none;
}

a {
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

/* component */
.copyright {
  margin-bottom: 0;
  text-align: center;
  color: white;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  list-style: none;
}
.menu__item-link {
  display: block;
  text-decoration: unset;
  color: #1b1e27;
}
.menu__item-sub {
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: right;
  color: #60646c;
}
.menu__item--detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .menu__item-sub {
    font-size: 16px;
  }
  .menu__item--detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .menu__item--detail .dc-link-icon {
    font-size: 24px;
  }
}

.menutrigger {
  position: relative;
  display: block;
  width: 30px;
  height: 10px;
  cursor: pointer;
}
.menutrigger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2em;
  -webkit-transform-origin: left;
          transform-origin: left;
  background-color: #ff7927;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.menutrigger__line-1 {
  top: 0;
}
.menutrigger__line-2 {
  left: unset;
  right: 0;
  bottom: 0;
  width: 60%;
}
.menutrigger--on .menutrigger__line-1 {
  -webkit-transform: rotate(18deg) translate(0px, -2px);
          transform: rotate(18deg) translate(0px, -2px);
}
.menutrigger--on .menutrigger__line-2 {
  width: 100%;
  -webkit-transform: rotate(-18deg) translate(2px, 0px);
          transform: rotate(-18deg) translate(2px, 0px);
}

.mobilenav {
  display: none;
}
.mobilenav__menutrigger {
  position: relative;
  z-index: 9000;
}
.mobilenav__container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 8500;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 60px 20px;
  background-color: white;
}
.mobilenav__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 60px 40px 40px;
  overflow: auto;
  background-color: white;
}
.mobilenav__in {
  width: 100%;
}
.mobilenav__back {
  position: absolute;
  z-index: 0;
  inset: 0;
}
.mobilenav__back-img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobilenav__nav {
  position: relative;
  z-index: 100;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  width: 100%;
}
.mobilenav__menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobilenav__menu .menu__item {
  width: 100%;
}
.mobilenav--open .mobilenav__menutrigger {
  position: fixed;
  top: 25px;
  right: 20px;
}
.mobilenav--open .mobilenav__container {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .mobilenav {
    display: block;
  }
}

/* component */
/* layout */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #1b1e27;
}
body .dc-section-fv--2 {
  display: none;
}
body.p2 .dc-section-fv--1 {
  display: none;
}
body.p2 .dc-section-fv--2 {
  display: block;
}

.header {
  width: 100%;
}
.header__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1440px;
  max-width: 100%;
  margin: auto;
  padding: 24px;
}
.header__tagline {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 9000;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: white;
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  }
  .header__in {
    height: 100%;
    padding: 10px 5px;
    padding-right: 20px;
  }
  .header__logo-img {
    width: 120px;
  }
  .header__nav {
    display: none;
  }
}

.container {
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .content {
    padding-top: 60px;
  }
}

.footer {
  padding-top: 14px;
  padding-bottom: 14px;
  background: #1b1e27;
}
/* layout */
/* block */
.dc-a {
  -webkit-transition: opacity 0.6s 0s, -webkit-transform 0.6s 0s;
  transition: opacity 0.6s 0s, -webkit-transform 0.6s 0s;
  transition: opacity 0.6s 0s, transform 0.6s 0s;
  transition: opacity 0.6s 0s, transform 0.6s 0s, -webkit-transform 0.6s 0s;
}
.dc-a.--fade {
  opacity: 0;
}
.dc-a.--fade.--show {
  opacity: 1;
}
.dc-a.--fadeUp {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.dc-a.--fadeUp.--show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.dc-a.--fadeDown {
  opacity: 0;
  -webkit-transform: translateY(-40px);
          transform: translateY(-40px);
}
.dc-a.--fadeDown.--show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.dc-a.--fadeRight {
  opacity: 0;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
}
.dc-a.--fadeRight.--show {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.dc-a.--fadeLeft {
  opacity: 0;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
.dc-a.--fadeLeft.--show {
  opacity: 1;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.dc-link {
  text-decoration: unset;
}
.dc-link-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
}
.dc-txt1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}
.dc-txt1__tag {
  padding-top: 4.8px;
  padding-right: 9.6px;
  padding-bottom: 4.8px;
  padding-left: 9.6px;
  border-radius: 2px;
  background: #f5c985;
}
.dc-btn {
  cursor: pointer;
  text-decoration: unset;
}
.dc-btn1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 3.2px;
  padding-top: 3.2px;
  padding-right: 3.2px;
  padding-bottom: 3.2px;
  padding-left: 24px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
  background-color: #ff7927;
}
.dc-btn1__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 1.6px;
  background-color: white;
}
.dc-btn1__icon-img {
  width: 24px;
}
.dc-btn1__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}
.dc-btn1__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.dc-btn1__wrap .dc-btn1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.dc-btn1__wrap .dc-btn1__txt {
  width: 122px;
  max-width: 100%;
  text-align: center;
}
.dc-btn1--large {
  padding-left: 30px;
  font-size: 20px;
}
.dc-btn1--large .dc-btn1__icon {
  width: 40px;
  height: 40px;
}
.dc-btn1--secondary {
  background-color: #0a64a8;
}
.dc-btn1--form {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  width: 100%;
  border: 0;
}
@media screen and (max-width: 768px) {
  .dc-btn1__wrap {
    gap: 8px;
  }
  .dc-btn1--form {
    gap: 15px;
    padding-left: 15px;
    font-size: 14px;
    line-height: 110%;
  }
}
.dc-hd {
  margin: 0;
}
.dc-hd1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dc-hd1__sub {
  position: relative;
  z-index: 10;
  margin-bottom: -27px;
  padding-top: 8px;
  padding-right: 32px;
  padding-bottom: 8px;
  padding-left: 32px;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  border-radius: 2em;
  border: 2px solid;
  color: #d37d00;
  background: #ffffff;
}
.dc-hd1__main {
  padding-top: 36px;
  padding-right: 72px;
  padding-bottom: 24px;
  padding-left: 72px;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 6px;
  color: white;
  background: #d37d00;
}
@media screen and (max-width: 768px) {
  .dc-hd1__sub {
    font-size: 20px;
  }
  .dc-hd1__main {
    width: 340px;
    max-width: 100%;
    font-size: 26px;
    line-height: 1.45;
    padding: 35px 20px 22px;
  }
}
.dc-hd2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.dc-hd2__sub {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding-top: 7px;
  padding-right: 14px;
  padding-bottom: 7px;
  padding-left: 14px;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  background: #d37d00;
}
.dc-hd2__main {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.05em;
}
.dc-hd3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  text-align: center;
}
.dc-hd3__sub {
  padding-top: 8px;
  padding-right: 32px;
  padding-bottom: 8px;
  padding-left: 32px;
  border-radius: 2em;
  border: 2px solid;
  color: #d37d00;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
}
.dc-hd3__main {
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .dc-hd3 {
    margin-bottom: 20px;
  }
  .dc-hd3__sub {
    padding: 5px 30px;
    font-size: 20px;
  }
  .dc-hd3__main {
    font-size: 26px;
  }
}
.dc-hd-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .dc-hd-primary {
    gap: 2px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .dc-hd-primary__icon {
    width: 36px;
  }
}
.dc-list {
  list-style: none;
}
.dc-list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.dc-list1__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 196px;
  height: 116px;
  padding-top: 32px;
  padding-right: 12px;
  padding-bottom: 32px;
  padding-left: 12px;
  border-radius: 6px;
  border: 1px solid #94bf88;
  -webkit-box-shadow: 4px 4px 24px 0px rgba(148, 191, 136, 0.1215686275);
          box-shadow: 4px 4px 24px 0px rgba(148, 191, 136, 0.1215686275);
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
}
.dc-list1__item::before {
  content: attr(data-count);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-bottom-right-radius: 6px;
  background: #94bf88;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: white;
}
.dc-list1--orange .dc-list1__item {
  border: 1px solid #f19b1b;
  -webkit-box-shadow: 4px 4px 24px 0px rgba(241, 155, 27, 0.1215686275);
          box-shadow: 4px 4px 24px 0px rgba(241, 155, 27, 0.1215686275);
}
.dc-list1--orange .dc-list1__item::before {
  background: #f19b1b;
}
.dc-list-check {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
}
.dc-list-check__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.dc-list-check__item::before {
  content: "";
  display: block;
  width: 24px;
  min-width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  background-image: url("../img/icon_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.dc-box-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #faf6f0;
}
.dc-box-primary__hd {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0;
}
.dc-box-primary--full {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .dc-box-primary {
    padding: 18px 14px;
  }
}
.dc-card1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
}
.dc-card1__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .dc-card1__group {
    gap: 20px;
  }
}
.dc-card2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 960px;
  max-width: 100%;
  margin: auto;
  padding: 24px;
  border-radius: 6px;
  background: #ffffff;
  -webkit-box-shadow: 4px 4px 24px 0px rgba(211, 125, 0, 0.1215686275);
          box-shadow: 4px 4px 24px 0px rgba(211, 125, 0, 0.1215686275);
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
}
.dc-card2__hd {
  margin-bottom: 24px;
}
.dc-card2__column--txt {
  padding-top: 40px;
}
.dc-card2__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .dc-card2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    font-size: 15px;
  }
  .dc-card2__hd {
    margin-bottom: 12px;
  }
  .dc-card2__column--txt {
    padding-top: 0;
  }
  .dc-card2__group {
    gap: 24px;
  }
}
.dc-card3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: 340px;
  max-width: 100%;
}
.dc-card3__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  padding: 12px;
}
.dc-card3__header {
  position: relative;
}
.dc-card3__header::after {
  background-image: url("../img/logo_2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -16px;
  left: 8px;
  width: 120px;
  height: 60px;
}
.dc-card3__content {
  padding-bottom: 24px;
  border-bottom: 2px solid #f5c985;
}
.dc-card3__img {
  border-radius: 4px;
}
.dc-card3__hd {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
}
.dc-card3__des {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
}
.dc-card3__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  text-align: left;
}
.dc-card3__meta-hd {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}
.dc-card3__meta-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.dc-card3__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.dc-qa1 {
  width: 860px;
  max-width: 100%;
}
.dc-qa1__q {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-top: 24px;
  padding-right: 48px;
  padding-bottom: 24px;
  padding-left: 24px;
  background: #faf6f0;
  cursor: pointer;
}
.dc-qa1__q-txt {
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ff8c00;
}
.dc-qa1__q::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  width: 36px;
  height: 36px;
  margin: auto;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  background-image: url("../img/icon_plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.dc-qa1__hd {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0;
}
.dc-qa1__a {
  display: none;
  padding-top: 24px;
  padding-right: 16px;
  padding-bottom: 24px;
  padding-left: 60px;
  border: 4px solid #faf6f0;
  background: #ffffff;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0;
}
.dc-qa1--open .dc-qa1__q::after {
  background-image: url("../img/icon_minus.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .dc-qa1__q {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
    padding-right: 48px;
  }
  .dc-qa1__a {
    padding: 15px;
  }
}
.dc-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dc-columns__column {
  max-width: 100%;
}
.dc-block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.dc-block1__hd {
  margin-bottom: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 999px;
  background: #94bf88;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: white;
}
.dc-block1--orange .dc-block1__hd {
  background: #f19b1b;
}
.dc-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  width: 393px;
  max-width: 100%;
  padding: 24px;
  border-radius: 6px;
  border: 1px solid #f5c985;
  -webkit-box-shadow: 4px 4px 24px 0px rgba(211, 125, 0, 0.1215686275);
          box-shadow: 4px 4px 24px 0px rgba(211, 125, 0, 0.1215686275);
  background-color: white;
}
.dc-form__des {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
}
.dc-form__des p {
  margin-bottom: 0;
}
.dc-form__des-small {
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
  letter-spacing: 0;
}
.dc-form__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px; /* 24px -> 16px (フォーム項目追加のため) */
  width: 100%;
}
.dc-form__btn {
  width: 100%;
}
.dc-form--2 {
  gap: 20px;
  width: 345px;
  padding: 24px 21px;
}
.dc-form--2 .dc-input {
  padding: 10px;
}
.dc-form--2 .dc-input__supp {
  white-space: nowrap;
}
.dc-form--2 .dc-btn1--form {
  font-size: 14px;
}
.dc-form--2 .dc-form__des {
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}
.dc-form--2 .dc-form__des-small {
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
}
.dc-form--2 .dc-form__items {
  gap: 14px; /* フォーム(小)のgapは14pxのまま */
  width: 100%;
}
@media screen and (max-width: 768px) {
  .dc-form--2 {
    padding: 20px 14px;
  }
  .dc-form--2 .dc-input__supp {
    white-space: unset;
  }
}
.dc-input {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  width: 100%;
  padding: 14px;
  border: 1px solid #e6e6e6;
  background-color: white;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
}
.dc-input__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 0; /* 既存のマージンを削除 */
}
.dc-input__wrap--select {
  position: relative;
}
.dc-input__wrap--select::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 14px;
  width: 16px;
  height: 16px;
  margin: auto;
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.dc-input__wrap--check {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px; /* 10px -> 8px */
  padding-top: 2px;
  padding-left: 28px; /* 24px -> 28px */
}
.dc-input__supp {
  display: block;
  font-weight: 400;
  font-size: 11px; /* 12px -> 11px */
  line-height: 1.4; /* 130% -> 1.4 */
  letter-spacing: 0;
}
.dc-input__supp-link {
  color: #00acba;
  text-decoration: underline; /* リンクを分かりやすく */
}
.dc-input__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.dc-input-txt::-webkit-input-placeholder {
  color: #b6b6b6;
}
.dc-input-txt::-moz-placeholder {
  color: #b6b6b6;
}
.dc-input-txt:-ms-input-placeholder {
  color: #b6b6b6;
}
.dc-input-txt::-ms-input-placeholder {
  color: #b6b6b6;
}
.dc-input-txt::placeholder {
  color: #b6b6b6;
}
.dc-input-select:not(.dc-input-select--changed) {
  color: #b6b6b6;
}
.dc-input-check {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px; /* 16px -> 20px */
  height: 20px; /* 16px -> 20px */
  padding: 10px;
  margin: 0;
}
.dc-input-check__label {
  font-weight: 400;
  font-size: 13px; /* 12px -> 13px */
  line-height: 1.2; /* 100% -> 1.2 */
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .dc-input-check {
    padding: 8px !important;
  }
}

/* フォームのラベルと必須マークのためのCSS */
.dc-input__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px; /* ラベルと入力欄の間の隙間 */
  width: 100%;
}
.dc-input__label {
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  color: #333;
  text-align: left;
}
.dc-input__required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #ff7927; /* 必須マークの色（プライマリカラー） */
  border-radius: 2px;
  vertical-align: middle;
}

/* フリーメールエラー時のスタイル */
.dc-input-txt.is-error {
  border-color: #d93025; /* エラー時に枠を赤くする */
  background-color: #fef4f3;
}

.dc-section {
  position: relative;
}
.dc-section__back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.dc-section__back-img {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
}
.dc-section__in {
  position: relative;
  z-index: 10;
  max-width: 100%;
  margin: auto;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .dc-section__in {
    width: 500px;
    padding: 0 20px;
  }
}
.dc-section1 {
  padding-top: 80px;
  padding-right: 24px;
  padding-bottom: 80px;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .dc-section1 {
    padding: 40px 0;
  }
}
.dc-section--center {
  text-align: center;
}
.dc-section--orange {
  background: #faf6f0;
}
.dc-section-fv {
  width: 1392px;
  max-width: 100%;
  margin: auto;
  border-radius: 6px;
  background: #faf6f0;
  overflow: hidden;
}
.dc-section-fv__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  width: 1392px;
  padding-top: 42px;
  padding-bottom: 42px;
  padding-right: 24px;
  padding-left: 24px;
}
.dc-section-fv__back {
  left: unset;
  right: 0;
  width: 980px;
}
.dc-section-fv__intro {
  display: inline-block;
  margin-bottom: 9px;
  padding-top: 7.2px;
  padding-right: 18px;
  padding-bottom: 9px;
  padding-left: 18px;
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  border-radius: 2em;
  background-color: white;
}
.dc-section-fv__title {
  margin-bottom: 0;
  font-weight: 800;
  font-size: 42px;
  line-height: 140%;
  letter-spacing: 0;
}
.dc-section-fv__btns {
  margin-top: 48px;
}
.dc-section-fv--2 .dc-section-fv__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dc-section-fv--2 .dc-section-fv__intro {
  margin-bottom: 20px;
  padding-top: 9.6px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
}
.dc-section-fv--2 .dc-section-fv__title {
  margin-bottom: 10px;
}
.dc-section-fv--2 .dc-section-fv__title img {
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .dc-section-fv__in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .dc-section-fv__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .dc-section-fv__intro {
    font-size: 14px;
    text-align: center;
    padding: 12px 20px;
  }
  .dc-section-fv__title {
    font-size: 32px;
    text-align: center;
  }
  .dc-section-fv__btns {
    margin-top: 15px;
  }
  .dc-section-fv--2 .dc-section-fv__in {
    gap: 20px;
    padding: 40px 20px;
  }
  .dc-section-fv--2 .dc-section-fv__right, .dc-section-fv--2 .dc-section-fv__left {
    width: 100%;
  }
  .dc-section-fv--2 .dc-section-fv__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .dc-section-fv--2 .dc-section-fv__intro {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
    padding: 12px 20px;
  }
  .dc-section-fv--2 .dc-section-fv__title {
    font-size: 32px;
    text-align: center;
  }
  .dc-section-fv--2 .dc-section-fv__title img {
    width: 300px;
    margin-top: 0;
  }
}
.dc-section-prob {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .dc-section-prob {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.dc-section-video {
  padding: 60px 0;
  text-align: center;
}
.dc-section-video iframe {
  height: auto;
  max-width: 100%;
  aspect-ratio: 800/450;
}
@media screen and (max-width: 768px) {
  .dc-section-video {
    padding: 30px 0;
  }
}
.dc-section-solution {
  padding: 80px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
}
.dc-section-solution__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: 1080px;
}
.dc-section-solution__il {
  position: absolute;
  top: 0;
  left: 0;
}
.dc-section-solution__il--1 {
  left: 48px;
}
.dc-section-solution__il--2 {
  left: unset;
  top: 42px;
  right: -68px;
}
@media screen and (max-width: 768px) {
  .dc-section-solution {
    padding: 20px 0 40px;
    font-size: 16px;
  }
  .dc-section-solution__il {
    display: none;
  }
}
.dc-section-feature {
  padding-top: 80px;
  padding-right: 24px;
  padding-bottom: 80px;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .dc-section-feature {
    padding: 30px 0px 40px;
  }
}
.dc-section-cta {
  padding-top: 80px;
  padding-right: 24px;
  padding-bottom: 80px;
  padding-left: 24px;
  color: white;
  text-align: center;
}
.dc-section-cta__hd {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0;
}
.dc-section-cta__supp {
  margin-top: 8px;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0;
}
.dc-section-cta__btns {
  gap: 32px;
}
.dc-section-cta__in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .dc-section-cta {
    padding: 40px 0;
  }
  .dc-section-cta__hd {
    font-size: 28px;
  }
  .dc-section-cta__supp {
    margin-top: 12px;
    font-size: 16px;
  }
  .dc-section-cta__in {
    gap: 20px;
  }
  .dc-section-cta__btns {
    gap: 10px;
  }
}
.dc-section-comparison__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 970px;
  max-width: 100%;
  margin: auto;
  padding: 32px;
  overflow: auto;
}
.dc-section-comparison__img img {
  width: 100%;
  max-width: unset;
  min-width: 900px;
}
@media screen and (max-width: 768px) {
  .dc-section-comparison .dc-section__in {
    width: 700px;
  }
  .dc-section-comparison__img {
    padding: 0;
  }
}
.dc-section-flow__blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .dc-section-flow .dc-section__in {
    width: 700px;
  }
}
.dc-section-qa__list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 860px;
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .dc-section-qa .dc-section__in {
    width: 700px;
  }
}
.dc-section-form__content {
  width: 1080px;
  max-width: 100%;
  margin: auto;
  padding: 42px 20px;
  border-radius: 12px;
  background-color: white;
}
.dc-section-form__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 425px;
  max-width: 100%;
}
.dc-section-form__right {
  width: 393px;
  max-width: 100%;
}
.dc-section-form__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  width: 878px;
  max-width: 100%;
  margin: auto;
}
.dc-section-form__intro {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .dc-section-form {
    padding: 30px 0;
  }
  .dc-section-form .dc-section__in {
    width: 700px;
  }
  .dc-section-form__in {
    padding: 0 10px;
  }
  .dc-section-form__content {
    padding: 30px 20px;
  }
  .dc-section-form__columns {
    gap: 30px;
  }
}
@media screen and (max-width: 375px) {
  .dc-section-form__content {
    padding: 30px 10px;
  }
}
.dc-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9000;
}
.dc-modal__in {
  position: relative;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .dc-tb {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .dc-tb-hidden {
    display: none !important;
  }
  [id] {
    scroll-margin-top: 60px;
  }
}
@media screen and (min-width: 376px) {
  .dc-sp {
    display: none !important;
  }
}
@media screen and (max-width: 375px) {
  .dc-sp-hidden {
    display: none !important;
  }
}
/* block */


.dc-section-example {
  display: none;
}


/* --- ▼▼▼ 比較表 (dc-section-comparison) CSS (モバイル崩れ修正) ▼▼▼ --- */

/* ラッパー: 幅970px、中央寄せ、横スクロール */
.dc-section-comparison .comparison-table-wrapper {
  width: 970px; /* デスクトップでの幅を固定 */
  max-width: 100%; /* 画面幅が970px未満なら縮小 */
  margin: auto;
  padding: 0;
  overflow-x: auto; /* ★モバイルでスクロールさせる */
  -webkit-overflow-scrolling: touch;
  border: 1px solid #EAEAEA; /* 非常に薄い外枠線 */
}

/* 比較表テーブル本体: 列幅固定 */
.comparison-table {
  /* width: 100%; を削除し、以下3行に変更 */
  width: 100%; /* 基本はラッパーに追従 */
  max-width: unset; /* 最大幅は制限しない */
  min-width: 900px; /* ★テーブルの最小幅を900pxに設定。これを下回るラッパーではスクロール */
  
  border-collapse: collapse; /* 罫線を結合 */
  border-spacing: 0;
  background-color: #fff;
  table-layout: fixed; /* 列幅を固定 */
}

/* --- ヘッダー行 (thead) --- */
.comparison-table thead th {
  padding: 14px 12px;
  color: white;
  font-weight: bold;
  vertical-align: middle;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

/* 左上の空セル */
.comparison-table .header-label {
  background-color: #fff;
  border-right: 1px solid #EAEAEA;
  border-bottom: 1px solid #EAEAEA;
  width: 18%; /* ラベル列の幅 */
}

/* ヘッダーの背景色と幅 */
.comparison-table .header-ec {
  background-color: #f39c12; /* オレンジ */
  width: 22%; /* EC分析AI列 */
}
.comparison-table .header-general,
.comparison-table .header-consultant,
.comparison-table .header-internal {
  background-color: #555; /* 濃いグレー */
  width: 20%; /* 残り均等 */
}
.comparison-table thead tr {
   border-bottom: 1px solid #EAEAEA;
}

/* --- データ行 (tbody) --- */

/* 行ヘッダー (導入コストなど) */
.comparison-table tbody th.cell-label {
  color: #333;
  font-weight: bold;
  text-align: center;
  padding: 20px 10px;
  border-right: 1px solid #EAEAEA;
  vertical-align: middle;
  font-size: 14px;
  white-space: nowrap;
  line-height: 1.4;
}

/* データセル (td) */
.comparison-table tbody td {
  padding: 20px 12px;
  vertical-align: middle;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  height: 60px;
  color: #111;
  white-space: normal;
  line-height: 1.4;
}

/* 行間の線 */
.comparison-table tbody tr {
  border-bottom: 1px solid #EAEAEA;
}
.comparison-table tbody tr:last-child {
  border-bottom: none;
}

/* --- 行の交互背景色と、列ごとの背景色指定 --- */

/* 奇数行 (1, 3, 5行目) */
.comparison-table tbody tr:nth-child(odd) th.cell-label {
    background-color: #fff; /* 白 */
}
.comparison-table tbody tr:nth-child(odd) td.cell-ec {
    background-color: #fdebc9; /* 薄いオレンジ */
}
.comparison-table tbody tr:nth-child(odd) td.cell-general,
.comparison-table tbody tr:nth-child(odd) td.cell-consultant,
.comparison-table tbody tr:nth-child(odd) td.cell-internal {
    background-color: #e0e0e0; /* 薄いグレー */
}

/* 偶数行 (2, 4, 6行目) */
.comparison-table tbody tr:nth-child(even) th.cell-label {
    background-color: #F9F9F7; /* 非常に薄いベージュ */
}
.comparison-table tbody tr:nth-child(even) td.cell-ec {
    background-color: #FFF9F2; /* 非常に薄いオレンジ */
}
.comparison-table tbody tr:nth-child(even) td.cell-general,
.comparison-table tbody tr:nth-child(even) td.cell-consultant,
.comparison-table tbody tr:nth-child(even) td.cell-internal {
    background-color: #F0F0F0; /* 非常に薄いグレー */
}
/* --- ▲▲▲ 比較表 CSS (モバイル崩れ修正) ▲▲▲ --- */