/* css/foundation/variable.css */
:root {
  --color-main: #1A4B8C;
  --color-green: #00A86B;
  --color-green-dark: #008955;
  --color-white: #fff;
  --color-text: #333;
  --color-border-light: #e0e0e0;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-border-footer: rgba(255, 255, 255, 0.2);
  --color-background-light: #f8f9fa;
  --color-overlay-main: rgba(26, 75, 140, 0.7);
  --color-secondary: #0D3B66;
}

/* css/foundation/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/* css/foundation/base.css */
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family:
    "Noto Sans JP",
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-white);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
ul,
ol {
  list-style: none;
}
p {
  margin: 0;
  color: var(--color-text);
}
.link {
  color: var(--color-main);
}
.link:hover {
  text-decoration: underline;
}

/* css/layout/layout.css */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--small {
  max-width: 1360px;
}
.container--narrow {
  max-width: 800px;
}
.container--cta {
  max-width: 900px;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

/* css/component/breadcrumb.css */
.breadcrumb {
  background-color: #fff;
  padding: 24px 0;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb__item {
  font-size: 1.4rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #999;
}
.breadcrumb__link {
  color: var(--color-main);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__text {
  color: #666;
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 575px) {
}

/* css/component/button.css */
.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.button--inquiry {
  background-color: var(--color-green);
  color: var(--color-white);
}
.button--inquiry:hover {
  background-color: var(--color-green-dark);
}
.button--outline {
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.button--outline:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}

/* css/component/cta.css */
.cta {
  background-color: #f9f9f9;
  margin: 0;
}
.cta__container {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 80px 0;
  border-radius: 8px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta__title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 24px;
}
.cta__text {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 740px;
  color: var(--color-white);
}
.cta__button {
  text-align: center;
}
.cta .button--inquiry {
  background-color: var(--color-green);
  color: var(--color-white);
  font-weight: bold;
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 1.6rem;
  transition: background-color 0.3s;
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .cta__container {
    padding: 56px 16px;
  }
  .cta__title {
    font-size: 2.4rem;
  }
  .cta .button--inquiry {
    padding: 12px 32px;
  }
}
@media screen and (max-width: 575px) {
}

/* css/component/flow.css */
.flow {
  background-color: #fff;
}
.flow__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.flow__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 84px;
  width: 2px;
  height: calc(100% - 64px);
  background-color: var(--color-main);
  z-index: 1;
}
.flow__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--color-main);
  border-radius: 50%;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  z-index: 2;
}
.flow__content {
  padding: 12px 24px 24px;
}
.flow__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-main);
  margin: 0 0 16px;
}
.flow__text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .flow__items {
    gap: 32px;
  }
  .flow__item {
    gap: 20px;
  }
  .flow__item:not(:last-child)::after {
    left: 23px;
    top: 56px;
    width: 2px;
    height: calc(100% - 48px);
  }
  .flow__number {
    width: 48px;
    height: 48px;
    font-size: 2rem;
  }
  .flow__content {
    padding: 16px;
  }
  .flow__title {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
}

/* css/component/footer.css */
.footer {
  background:
    linear-gradient(
      to right,
      var(--color-main) 0%,
      var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 80px 0 24px;
}
.footer-content {
  padding-bottom: 48px;
}
.footer-content__info {
  width: 300px;
}
.footer-content__logo {
  width: 140px;
}
.footer-content__address {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}
.footer-content__contact-tel {
  margin-top: 8px;
  display: block;
}
.footer-content .container {
  display: flex;
  justify-content: space-between;
}
.footer-content__nav {
  display: flex;
  gap: 64px;
}
.footer-content__nav-column {
  width: 26.4rem;
  max-width: 100%;
}
.footer-content__nav-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-green);
}
.footer-content__nav-list {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.footer-content__nav-list li {
  margin-bottom: 16px;
}
.footer-content__nav-list a:hover {
  text-decoration: underline;
}
.copyright {
  text-align: center;
  font-size: 1.4rem;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-footer);
}
.copyright__text {
  color: var(--color-white);
}
.footer-content__company-name {
  color: var(--color-white);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .footer-content__nav {
    gap: 32px;
  }
  .footer-content__nav-column {
    width: 18.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 64px 0 24px;
  }
  .footer-content .container {
    flex-direction: column;
  }
  .footer-content__info {
    width: 100%;
    margin-bottom: 32px;
  }
  .footer-content__nav {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-content__nav-column {
    width: calc(50% - 15px);
    margin-bottom: 15px;
  }
  .footer-content__nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 575px) {
  .footer-content__nav {
    gap: 16px;
  }
  .footer-content__nav-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .footer-content__nav-column {
    width: 280px;
    margin-bottom: 20px;
  }
}

/* css/component/header.css */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
}
.header-content__logo {
  width: auto;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header-content__logo a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  color: var(--color-text);
}
.header-content__logo img {
  width: 120px;
  height: auto;
}
.header-content__company-name {
  font-size: 2.6rem;
  font-weight: bold;
  white-space: nowrap;
}
.header-content__company-name ruby {
  ruby-align: center;
}
.header-content__company-name rt {
  font-size: 0.6em;
  font-weight: normal;
  color: var(--color-text-light);
}
.header-content__menu {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  gap: 2.4rem;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.header-content__menu-link:hover {
  color: var(--color-main);
}
.header-content__menu-button {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}
.header-content__menu-button span {
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background-color: var(--color-main);
  transition: all 0.3s ease;
}
.header-content__menu-button span:nth-child(1) {
  top: 14px;
}
.header-content__menu-button span:nth-child(2) {
  top: 22px;
}
.header-content__menu-button span:nth-child(3) {
  top: 30px;
}
.header-content__menu-button.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header-content__menu-button.is-active span:nth-child(2) {
  opacity: 0;
}
.header-content__menu-button.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media screen and (max-width: 1400px) {
  .header-content__menu-button {
    display: block;
  }
  .header-content__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -5px 0 10px var(--color-shadow);
    padding: 80px 20px 20px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 100;
  }
  .header-content__nav.is-active {
    right: 0;
  }
  .header-content__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header-content__menu-item {
    width: 100%;
    border-bottom: 1px solid var(--color-border-light);
  }
  .header-content__menu-link,
  .header-content__menu-item .button {
    display: block;
    padding: 15px 0;
    width: 100%;
    text-align: left;
  }
  .header-content__menu-item .button--inquiry {
    margin-top: 20px;
    text-align: center;
  }
  .header-content__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-overlay);
    z-index: 99;
  }
  .header-content__overlay.is-active {
    display: block;
  }
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
  .header-content__logo a {
    gap: 0.4rem;
  }
  .header-content__company-name {
    font-size: 1.8rem;
  }
  .header-content__logo img {
    width: 80px;
  }
}

/* css/component/page-hero.css */
.page-hero {
  position: relative;
  background-color: var(--color-main);
  height: 400px;
  display: flex;
  align-items: center;
}
.page-hero__content {
  position: relative;
  text-align: left;
  color: var(--color-white);
  width: 100%;
}
.page-hero__title {
  font-size: 3.2rem;
  font-weight: bold;
  margin: 0 0 16px;
  display: inline-block;
  border-bottom: 4px solid var(--color-green);
  padding-bottom: 8px;
}
.page-hero__subtitle {
  font-size: 1.8rem;
  line-height: 1.6;
  margin: 0;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .page-hero {
    height: 360px;
  }
  .page-hero__title {
    font-size: 2.6rem;
    margin-bottom: 8px;
  }
  .page-hero__subtitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 575px) {
}

/* css/component/heading.css */
.heading-secondary {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-main);
  margin-top: 0;
  margin-bottom: 40px;
  padding-left: 16px;
  border-left: 4px solid var(--color-main);
}
.heading-tertiary {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  margin: 0;
  padding: 16px 24px;
  background-color: #144085;
  display: block;
  width: 100%;
  border-radius: 4px;
}
.heading-tertiary--margin-bottom {
  margin-bottom: 16px;
}
.heading-quaternary {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 16px;
}
.heading-quaternary--dot {
  position: relative;
  padding-left: 16px;
}
.heading-quaternary--dot::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: bold;
}
.heading-quinary {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-main);
  margin: 0 0 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .heading-secondary {
    font-size: 2.2rem;
    margin-bottom: 32px;
  }
  .heading-tertiary {
    font-size: 1.6rem;
    padding: 12px 16px;
  }
}

/* css/component/table.css */
.base-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
}
.base-table__thead th {
  background-color: var(--color-main);
  border: 1px solid #ccc;
  color: #fff;
  padding: 24px 16px;
}
.base-table__tbody th {
  background-color: #F0F4FA;
  border: 1px solid #ccc;
  padding: 16px 16px;
}
.base-table__tbody td {
  padding: 16px 16px;
  border: 1px solid #ccc;
  text-align: center;
}

/* css/component/footnote.css */
.footnote__link {
  color: var(--color-main);
}
.footnote__link:hover {
  text-decoration: underline;
}

/* css/page/news.css */
.news__content {
  max-width: 800px;
  margin: 0 auto;
}
.news__list {
  margin-bottom: 40px;
  padding-left: 0;
}
.news__item {
  padding: 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}
.news__item:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.news__link {
  display: flex;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  padding: 20px 8px;
  width: 100%;
}
.news__date {
  width: 120px;
  font-weight: bold;
  padding-right: 20px;
}
.news__more {
  text-align: center;
}
.pagination {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 80px;
}
.pagination__btn {
  width: 40px;
  height: 40px;
  background-color: #ECECEC;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.pagination__btn.active {
  background-color: var(--color-main);
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-bottom: 64px;
    gap: 16px;
  }
}
@media screen and (max-width: 575px) {
  .news__content {
    width: 100%;
  }
  .news__link {
    flex-direction: column;
  }
  .news__date {
    width: 100%;
    padding-bottom: 4px;
  }
}

/* css/page/hero.css */
.hero__container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay-main);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero__title {
  font-size: 4rem;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1.6;
  letter-spacing: 0.08em;
  padding: 0;
  margin: 0;
  margin-bottom: 12px;
}
.hero__text {
  font-size: 1.8rem;
  color: var(--color-white);
  line-height: 1.6;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .hero__container {
    height: 360px;
  }
  .hero__content {
    height: 360px;
    padding: 0 20px;
    text-align: left;
    align-items: flex-start;
  }
  .hero__title {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 575px) {
}

/* css/page/cadewa.css */
.cadewa-about__content {
  max-width: 100%;
}
.cadewa-about__text {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: left;
  margin: 0;
}
.cadewa-about__movie-container {
  max-width: 800px;
  margin: 2.4rem auto 0;
}
.cadewa-about__movie {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.cadewa-about__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 575px) {
}

/* css/page/cadewa-smart.css */
.cadewa-smart-features__list {
  list-style: none;
  padding-left: 0;
}
.cadewa-smart-features__item {
  position: relative;
  font-size: 1.6rem;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.cadewa-smart-features__item::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-main);
  font-size: 1.6rem;
  font-weight: bold;
}
.cadewa-smart-features__content {
  margin-bottom: 40px;
}
.cadewa-smart-features__item--sub {
  margin-bottom: 12px;
}
.cadewa-smart-features__item--sub::before {
  left: 4px;
  color: var(--color-main);
  font-size: 1.4rem;
}
.cadewa-smart-features__text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.cadewa-smart-features__text--notice {
  font-size: 1.4rem;
  color: #555;
  margin: 4px 0;
}
.cadewa-smart-features__text--medium {
  font-weight: 500;
}
.cadewa-smart-features__text--blue {
  color: var(--color-main);
}
.cadewa-smart-features__image-container {
  margin-bottom: 24px;
  max-width: 100%;
}
.cadewa-smart-features__image-container--half {
  max-width: 564px;
}
.cadewa-smart-features__image-container--quarter {
  max-width: 282px;
}
.cadewa-smart-features__image {
  width: 100%;
  height: auto;
}
.cadewa-smart-features__header {
  margin-bottom: 24px;
}
.cadewa-smart-features__intro {
  margin-bottom: 32px;
}
.dx-support__text-content {
  margin-bottom: 32px;
}
.dx-support__subfeature {
  margin-top: 24px;
  margin-bottom: 16px;
}
.dx-support__feature-list {
  margin: 0 0 16px;
}
.external-integration__desc {
  margin: 0;
}
.external-integration__text-content {
  margin-bottom: 32px;
}
.external-integration__text {
  margin: 0;
}
.external-integration__text:last-child {
  margin-bottom: 0;
}
.external-integration__text-note {
  font-size: 1.4rem;
  color: #555;
  margin: 4px 0;
}
.smart-use-sub {
  background-color: #ececeb;
}
.cadewa-smart-features__link {
  color: var(--color-main);
}
.cadewa-smart-features__link:hover {
  text-decoration: underline;
}

/* css/page/services.css */
.services {
  background-color: var(--color-background-light);
}
.services__items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.services__item {
  width: calc(25% - 22.5px);
  background-color: var(--color-white);
  box-shadow: 0 3px 10px var(--color-shadow);
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}
.services__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 16px var(--color-shadow);
}
.services__image {
  aspect-ratio: 16 / 9;
  border-radius: 8px 8px 0 0;
}
.services__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.services__content {
  padding: 24px 24px 60px;
}
.services__title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 16px;
  margin-top: 0;
}
.services__text {
  font-size: 1.6rem;
  margin-bottom: 0;
  margin-top: 0;
}
.services__icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
}
.services__icon-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
}
.services__icon-arrow .material-icons {
  font-size: 20px;
}
@media screen and (max-width: 1024px) {
  .services__items {
    gap: 32px;
  }
  .services__item {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 768px) {
  .services__items {
    flex-direction: column;
  }
  .services__item {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .services__item {
    width: 100%;
  }
  .services__content {
    padding: 20px 20px 56px;
  }
}

/* css/page/support.css */
.support {
  background-color: #f9f9f9;
}
.support__content {
  max-width: 100%;
}
.support__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 24px;
}
.support__item {
  background-color: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.support__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.support__icon .material-icons {
  font-size: 32px;
  color: var(--color-main);
}
.support__content-inner {
  flex: 1;
}
.support__title {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-main);
  margin: 0 0 8px;
  text-align: left;
}
.support__description {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .support__item {
    padding: 24px;
  }
  .support__icon {
    width: 32px;
  }
  .support__icon .material-icons {
    font-size: 26px;
  }
  .support__title {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
}

/* css/page/training.css */
.training__content {
  max-width: 100%;
}
.training__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 24px;
}
.training__columns {
  display: flex;
  max-width: 100%;
  margin: 0;
  gap: 40px;
}
.training__column {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 24px;
}
.training__heading {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-main);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.training__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.training__list-item {
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 8px 0 8px 16px;
  position: relative;
}
.training__list-item::before {
  content: "\2022";
  position: absolute;
  font-size: 24px;
  top: 0;
  left: 0;
  color: var(--color-main);
  font-weight: bold;
}
.training__price-info {
  font-size: 1.6rem;
  line-height: 1.8;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .training__columns {
    flex-direction: column;
    gap: 24px;
  }
  .training__heading {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
}

/* css/page/product-cards.css */
.product-cards {
  background-color: #f5f5f5;
}
.product-cards__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.product-cards__item {
  background-color: var(--color-white);
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--color-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.product-cards__header {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 20px 12px;
  text-align: center;
}
.product-cards__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0;
}
.product-cards__content {
  padding: 16px;
  min-height: 120px;
  position: relative;
  height: 100%;
}
.product-cards__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
}
.product-cards__more {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.product-cards__more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #0d47a1;
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.3s;
}
.product-cards__more-link:hover {
  background-color: #1565c0;
}
.product-cards__more-link .material-icons {
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .product-cards__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .product-cards__items {
    grid-template-columns: 1fr;
  }
  .product-cards__more-link .material-icons {
    font-size: 16px;
  }
  .product-cards__more-link {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 575px) {
}

/* css/page/product-features.css */
.p-product-features {
  padding: 80px 0;
}
.p-product-features__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.p-product-features__item {
  text-align: center;
  padding: 32px;
  background-color: var(--color-background-light);
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--color-shadow);
}
.p-product-features__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 50%;
  margin-bottom: 20px;
}
.p-product-features__icon .material-icons {
  font-size: 40px;
}
.p-product-features__title {
  font-size: 2rem;
  color: var(--color-main);
  margin: 0 0 16px;
}
.p-product-features__text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0;
}

/* css/page/duct-option.css */
.duct-option__text {
  margin-bottom: 32px;
  line-height: 1.7;
}
.duct-option__heading {
  margin-bottom: 16px;
}
.duct-option__image {
  width: 100%;
  max-width: 100%;
}
.duct-option__image--half {
  max-width: 564px;
}
.duct-option__item {
  padding-bottom: 64px;
}
.duct-option__item:last-child {
  padding-bottom: 0;
}

/* css/page/planest.css */
.planest-series {
  background-color: #f5f5f5;
}
.planest-series__content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.planest-series__image {
  width: 100%;
}
.planest-series__item {
  width: calc(25% - 30px);
  background-color: var(--color-white);
  box-shadow: 0 3px 10px var(--color-shadow);
  border-radius: 8px;
  text-align: center;
}
.planest-series__title {
  color: var(--color-main);
  font-weight: 700;
  padding-bottom: 16px;
}
.planest-features__text {
  margin-bottom: 40px;
}
.planest-features-detail__image {
  margin-bottom: 64px;
}
.planest-features-detail__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.planest-features-detail__item {
  width: calc(50% - 20px);
}
.border-bottom-line {
  border-bottom: 1px solid #cccccc;
}
.planest-features-detail__item .heading-quinary {
  padding-bottom: 16px;
}
.hiroi-other__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.hiroi-other__item {
  width: calc(25% - 30px);
  background-color: #f5f5f5;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 3px 10px var(--color-shadow);
}
.hiroi-other__item .heading-quinary {
  padding-bottom: 8px;
}
.planest-features-detail {
  margin-bottom: 64px;
}
.benri__items {
  display: flex;
  gap: 64px;
}
.benri__item {
  width: calc(100% / 3);
}
.benri__item .heading-quinary {
  padding-bottom: 16px;
}
.benri__image {
  margin-bottom: 16px;
}
.kanri__text {
  margin-bottom: 64px;
}
.kanri-main__image {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .hiroi-other__item {
    width: calc(50% - 20px);
  }
  .benri__items {
    gap: 40px;
    flex-wrap: wrap;
  }
  .benri__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .planest-series__content {
    flex-wrap: wrap;
  }
  .planest-series__item {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 575px) {
  .planest-series__content {
    flex-direction: column;
  }
  .planest-series__item {
    width: 100%;
  }
  .planest-features-detail__items {
    flex-direction: column;
  }
  .planest-features-detail__item {
    width: 100%;
  }
  .hiroi-other__items {
    flex-direction: column;
  }
  .hiroi-other__item {
    width: 100%;
  }
  .benri__items {
    flex-direction: column;
  }
  .benri__item {
    width: 100%;
  }
}

/* css/page/zumen.css */
.supported-drawings__text {
  margin-bottom: 40px;
}
.supported-drawings__icons {
  display: flex;
  gap: 40px;
}
.supported-drawings__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.supported-drawings__icon .material-symbols-outlined {
  color: var(--color-main);
  font-size: 40px;
}
.delivered-drawing-data {
  background-color: #f5f5f5;
}
.delivered-drawing__content {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 40px;
}
.delivered-drawing {
  background-color: #f5f5f5;
}
.delivered-drawing__item {
  width: calc(100% / 3 - 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
  background-color: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.1);
}
.delivered-drawing__label {
  color: var(--color-main);
  font-weight: 500;
}
.zumen-table {
  min-width: 825px;
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-sp-text {
  display: none;
}
@media screen and (max-width: 825px) {
  .table-sp-text {
    display: block;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .delivered-drawing__content {
    gap: 24px;
  }
  .delivered-drawing__item {
    width: calc(100% / 2 - 12px);
  }
}

/* css/page/duct-connect.css */
.comming-soon {
  text-align: center;
}

/* css/page/contact.css */
.contact-form__label {
  font-weight: 500;
  color: var(--color-text);
  display: inline-block;
  margin-bottom: 8px;
}
.required {
  background-color: #E74C3C;
  color: var(--color-white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-left: 8px;
}
.contact-form__input {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-radius: 8px;
}
.contact-form__textarea {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  min-height: 100px;
  padding: 12px 16px;
  border-radius: 8px;
}
.contact-form__item {
  margin-bottom: 24px;
}
.contact-form__checkbox-group {
  text-align: center;
  margin-bottom: 40px;
}
.contact-form__button {
  text-align: center;
  margin-bottom: 80px;
}
.contact-form__button .button {
  border: none;
  padding: 16px 32px;
}
.contact-form__checkbox-input {
  opacity: 0;
}
.contact-form__checkbox-label {
  position: relative;
  padding-left: 24px;
}
.contact-form__checkbox-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: -4px;
}
.contact-form__checkbox-input:checked + .contact-form__checkbox-label::before {
  background-color: var(--color-main);
  border-color: var(--color-main);
}
.contact-form__checkbox-input:checked + .contact-form__checkbox-label::after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  position: absolute;
  top: 4px;
  left: 4px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .contact-form__button {
    margin-bottom: 64px;
  }
}

/* css/page/company.css */
.company-table th {
  text-align: left;
  padding: 24px 24px;
}
.company-table td {
  text-align: left;
  padding: 24px 24px;
}
.access-map__image iframe {
  width: 100%;
  height: 500px;
}

/* css/page/policy.css */
.policy {
  padding-top: 16px;
  padding-bottom: 80px;
}
.policy-content {
  margin-bottom: 40px;
}
.policy-content:last-child {
  margin-bottom: 0;
}
.policy-content .heading-secondary {
  margin-bottom: 24px;
}
.policy-content ul {
  padding-left: 0;
}
.policy-content ol {
  padding-left: 0;
}
.policy-content__author {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .policy {
    padding-bottom: 64px;
  }
}

/* css/utility/display.css */
.show-sp {
  display: none;
}
.show-pc {
  display: block;
}
.show-pc-flex {
  display: flex;
}
@media screen and (max-width: 575px) {
  .show-sp {
    display: block;
  }
  .show-pc {
    display: none;
  }
  .show-pc-flex {
    display: none;
  }
}

/* css/utility/spacing.css */
.layout-section {
  padding: 80px 0;
}
.layout-section--padding-sm-top {
  padding: 16px 0 80px;
}
.layout-cadewa-smart-features {
  padding: 40px 0;
}
.layout-cadewa-smart-features-item {
  margin-bottom: 40px;
}
.layout-cadewa-smart-features-item:last-of-type {
  margin-bottom: 0;
}
.margin-bottom-0 {
  margin-bottom: 0 !important;
}
.padding-top-0 {
  padding-top: 0 !important;
}
.padding-bottom-0 {
  padding-bottom: 0 !important;
}
.layout-padding-bottom-middle {
  padding-bottom: 64px;
}
.layout-padding-bottom-small {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .layout-section {
    padding: 64px 0;
  }
  .layout-section--padding-sm-top {
    padding: 16px 0 64px;
  }
}

/* css/style.css */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
