@charset "utf-8";

:root {
  --bs-font-sans-serif: "Noto Sans JP", sans-serif;
  --bs-font-serif: "Shippori Mincho", serif;
  --bs-emphasis-color: #000;
  --bs-body-bg: #fff;
  --bs-body-color: #333 !important;
  --bs-body-width: 1366px;
}

/* @media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: auto;
  }
} */

/*---------------------------------------------------
font-familyここから
----------------------------------------------------*/

body {
  font-family: var(--bs-font-serif);
  font-weight: 500;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #222;
}

html.is-initial-anchor-pending body {
  visibility: hidden;
}

.ff-noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

/*---------------------------------------------------
リセットCSSここから
----------------------------------------------------*/
header a,
main a,
footer a {
  color: #222 !important;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.ls-none {
  list-style-type: none !important;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  background-color: #fff;
  border: 1px solid #333 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder {
  color: #777;
}

input[type="text"]:focus {
  outline: 0;
}

input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
}

button:focus {
  outline: 0;
}

*:focus {
  outline: none;
}

.width-fit-content {
  width: fit-content;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wm-rl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.nav-border {
  border-top: 0.031rem solid #fff;
}

.text-policy {
  color: #70aab3 !important;
}

/*------------------------------
 common設定
------------------------------*/

html.is-fixed {
  height: 100%;
  overflow: hidden;
  scrollbar-gutter: stable !important;
}

html {
  scroll-behavior: auto !important;
}

.link-hover {
  transition: 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

.link-disabled {
  pointer-events: none;
}

.scroll-hint-icon {
  letter-spacing: 0;
}

.common-page-pt {
  padding-top: 129px;
}

.h1-common {
  font-size: 2.5rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.2em !important;
}

.h2-common {
  font-size: 2rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.2em !important;
}

.h3-common {
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.2em !important;
}

.h3-products {
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.1em !important;
}

.h4-common {
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.1em !important;
}

.p-noto {
  font-family: var(--bs-font-sans-serif);
  font-weight: normal;
}

.h2-noto {
  font-family: var(--bs-font-sans-serif);
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.2em !important;
}

.h4-noto {
  font-family: var(--bs-font-sans-serif);
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.2em !important;
}

@media (hover: hover) {
  .link-hover:hover {
    opacity: 0.6;
  }

  .hover-pointer:hover {
    cursor: pointer;
  }
}

@media screen and (min-width: 992px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .h2-common {
    font-size: 2.5rem !important;
  }

  .h3-common {
    font-size: 2rem !important;
  }

  .h3-products {
    font-size: 2rem !important;
    letter-spacing: 0.2em !important;
  }

  .h2-noto {
    font-size: 2rem !important;
  }
}

@media screen and (min-width: 1400px) {
  .h1-common {
    font-size: 3.5rem !important;
  }
}

/*---------------------------------------------------
 header
----------------------------------------------------*/

html.is-fixed {
  overflow: hidden;
}

.header-wrapper {
  position: fixed;
  top: 32px;
  right: 0;
  left: 0;
  z-index: 9900;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  background-color: var(--light-gray-ef);
  transition: background-color 0.4s ease;
}

html.is-fixed .header-inner {
  background-color: transparent;
}

.header-logo {
  flex-shrink: 0;
  position: relative;
  z-index: 9902;
  transition: opacity 0.4s ease;
}

.header-logo img {
  max-width: 141px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header-nav,
.header-nav-list {
  gap: 24px;
}

.header-nav-list {
  white-space: nowrap;
}

.header-nav {
  transition: opacity 0.4s ease;
}

html.is-fixed .header-logo,
html.is-fixed .header-nav {
  opacity: 0;
  pointer-events: none;
}

.header-nav-list a {
  display: block;
}

.header-nav-item {
  position: relative;
}

.header-nav-item.has-dropdown::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  width: calc(100% + 48px);
  height: 28px;
  transform: translateX(-50%);
}

.header-nav-dropdown-toggle {
  position: relative;
  padding: 0 20px 0 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.header-nav-dropdown-toggle::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 7.5px;
  height: 7.5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.4s ease;
}

.header-nav-dropdown {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  margin: 0;
  width: max-content;
  padding: 16px 24px 24px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: var(--light-gray-ef);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 0.4s ease, visibility 0.3s ease;
}

.header-nav-item.has-dropdown:hover .header-nav-dropdown,
.header-nav-item.has-dropdown:focus-within .header-nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header-nav-dropdown li+li {
  margin-top: 16px;
}

.ham-box {
  display: inline-flex;
  position: relative;
  width: 56px;
  height: 48px;
  flex: 0 0 57px;
  padding: 0;
  border: none;
  background: var(--main-navy);
  border-radius: 3px;
  cursor: pointer;
  z-index: 9902;
  transition: 0.4s ease;
}

.ham-box:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.ham-bar,
.ham-bar::before,
.ham-bar::after {
  background-color: #fff;
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 1px;
  opacity: 1;
}

.ham-bar {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  transition: 0.4s ease;
}

.ham-bar::before {
  content: "";
  top: -8px;
  left: 0;
  transition: 0.4s ease;
}

.ham-bar::after {
  content: "";
  top: 8px;
  left: 0;
  transition: 0.4s ease;
}

.ham-box.is-active {
  background-color: #fff;
}

.ham-box.is-active .ham-bar {
  background-color: transparent !important;
}

.ham-box.is-active .ham-bar::before {
  background-color: var(--main-navy);
  transform: translateY(8px) rotate(45deg);
  transition: 0.4s ease;
}

.ham-box.is-active .ham-bar::after {
  background-color: var(--main-navy);
  transform: translateY(-8px) rotate(-45deg);
  transition: 0.4s ease;
}

.ham-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  opacity: 0;
  pointer-events: none;
  z-index: 9800;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.ham-drawer.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ham-drawer-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100svh;
  overflow-y: auto;
  scrollbar-gutter: stable;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  background-color: #fff;
}

.ham-drawer-inner {
  padding-top: 96px;
  padding-bottom: 32px;
  background-color: var(--main-navy);
  color: #fff;
}

.ham-topic-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ham-drawer.is-active .ham-drawer-wrapper {
  opacity: 1;
}

.common-nav-list a {
  line-height: 1.2;
  transition: 0.4s ease;
}

.common-nav-list a:hover {
  opacity: 0.6;
}

.common-nav-white .common-nav-list a {
  color: #fff !important;
}

.common-nav-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "about ."
    "product product"
    "works support"
    "company news"
    "company column";
  column-gap: 12px;
  row-gap: 72px;
  margin-bottom: 60px;
}

.item-about {
  grid-area: about;
}

.item-product {
  grid-area: product;
}

.item-works {
  grid-area: works;
}

.item-support {
  grid-area: support;
}

.item-company {
  grid-area: company;
}

.item-news {
  grid-area: news;
}

.item-column {
  grid-area: column;
  margin-top: -80px;
}

.common-nav-heading {
  display: inline-flex;
  flex-direction: column;
  gap: 8px 0;
  margin-bottom: 48px;
}

.common-nav-en {
  font-size: 1.5rem !important;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.common-nav-ja {
  font-size: 0.75rem !important;
  font-weight: 400;
  letter-spacing: 0;
}

.common-nav-sub-list {
  font-size: 1rem !important;
  letter-spacing: 0;
  font-weight: normal;
  line-height: 1;
}

.item-product .common-nav-sub-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(6, auto);
  column-gap: 20px;
  row-gap: 24px;
}

.common-nav-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px 0;
}

.common-nav-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
  width: 100%;
  height: 68px;
  padding: 0 24px;
  border-radius: 5px;
  background-color: var(--main-blue);
  color: #fff !important;
  transition: 0.4s ease;
}

.common-nav-btn:hover {
  opacity: 0.6;
}

.common-nav-btn span {
  font-size: 1.125rem !important;
  line-height: 1;
  letter-spacing: 0;
}

.common-nav-utility {
  margin-bottom: 0;
}

.common-nav-white .common-nav-utility a {
  color: #fff !important;
}

.common-nav-utility a {
  font-size: 0.875rem !important;
  letter-spacing: 0;
  line-height: 1;
  transition: 0.4s ease;
}

.common-nav-utility a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 991.98px) {
  .ham-drawer-inner.container {
    max-width: none;
  }
}


@media screen and (min-width: 992px) {

  .ham-topic-title {
    -webkit-line-clamp: 1;
  }

  .ham-drawer-inner {
    padding-top: 60px;
    margin-top: 20px;
    margin-bottom: 36px;
  }

  .header-inner {
    padding: 12px 32px;
  }

  .header-logo img {
    max-width: 197px;
  }

  .common-nav-heading {
    margin-bottom: 24px;
  }

  .common-nav-sub-list {
    font-size: 1.125rem !important;
  }

  .common-nav-list {
    grid-template-columns: repeat(5, max-content);
    grid-template-areas:
      "about product product works ."
      "support company news column .";
    justify-content: space-between;
    column-gap: unset;
    row-gap: 48px;
    margin-bottom: 48px;
  }

  .item-column {
    margin-top: 0;
  }

  .item-product .common-nav-sub-list {
    grid-template-columns: none;
  }

  .common-nav-btn-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
  }

  .common-nav-btn {
    height: 70px;
  }

  .common-nav-utility {
    display: flex;
    gap: 0 16px;
  }

}

@media screen and (min-width: 1200px) {
  .common-nav-list {
    grid-template-areas:
      "about product product works support"
      "company news . . ."
      "company column . . .";
  }

  .item-column {
    margin-top: -56px;
  }
}

@media screen and (min-width: 1400px) {
  .item-column {
    margin-top: 0;
  }

  .common-nav-list {
    grid-template-columns: repeat(6, max-content);
    grid-template-areas:
      "about product product works support company"
      "news column . . . .";
    row-gap: 40px;
    margin-bottom: 16px;
  }
}


/*---------------------------------------------------
 footer
----------------------------------------------------*/

.footer-contact {
  background: linear-gradient(#0F6EB3 0%,
      #65A6D5 38%,
      #FFFFFF 80%,
      #FFFFFF 100%);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0 16px;
  margin-bottom: 24px;
}

.footer-contact-link::after {
  content: "";
  width: 37px;
  height: 37px;
  background-image: url('../images/common/icon_contact_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(1px);
}

.footer-tel-link {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
}

.footer-tel-link::before {
  content: "";
  width: 51px;
  height: 30px;
  background-image: url('../images/common/icon_freedial.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-contact-desc {
  margin-bottom: 40px;
}

.footer-bg-logo {
  width: calc(100vw * 1.32564);
  max-width: 885px;
  transform: translateX(calc(100vw * -0.41026));
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo img {
  max-width: 354px;
}

.footer-nav-btn-wrapper {
  padding-bottom: 80px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--main-blue);
}

.footer-nav-utility-wrapper {
  margin-bottom: 32px;
}

.common-nav-sub-list-item,
.common-nav-support-membership,
.footer-nav-support-membership {
  line-height: 1.1;
}

@media screen and (min-width: 390px) {
  .d-390-none {
    display: none;
  }
}

@media screen and (min-width: 420px) {
  .common-nav-sub-list-item {
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .footer-bg-logo {
    transform: translateX(calc(74vw - 885px));
  }
}

@media screen and (min-width: 992px) {
  .footer-contact {
    background: linear-gradient(#0F6EB3 0%,
        #65A6D5 50%,
        #FFFFFF 88%,
        #FFFFFF 100%);
  }

  .footer-contact-link {
    gap: 0 24px;
    margin-bottom: 27px;
  }

  .footer-contact-link::after {
    width: 47px;
    height: 47px;
    transform: translateY(2px);
  }

  .footer-tel-link::before {
    width: 61px;
    height: 36px;
  }

  .footer-contact-desc {
    margin-bottom: 24px;
  }

  .footer-bg-logo-inner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-bg-logo-wrapper {
    min-height: 436px;
  }

  .footer-bg-logo {
    position: absolute;
    right: 50%;
    bottom: 0;
    width: 885px;
    transform: none;
  }

  .footer-bg-logo-inner p {
    transform: translateY(8px);
  }

  .footer-logo img {
    max-width: 470px;
  }

  .footer-nav-btn-wrapper {
    padding-bottom: 48px;
    margin-bottom: 16px;
  }

  .common-nav-btn.footer-nav-btn {
    height: 70px;
  }

  .footer-nav-utility-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 1400px) {
  .footer-bg-logo-inner p {
    padding-left: 20px;
    transform: translateY(12px);
  }

  .footer-nav-btn-wrapper {
    padding-bottom: 56px;
  }

  .common-nav-btn.footer-nav-btn {
    height: 82px;
  }

  .footer-nav-support-membership {
    line-height: 1.1;
  }
}

/*-------------------------
breadcrumb
-------------------------*/
.breadcrumb {
  display: block;
  margin-bottom: 0;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 16px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.breadcrumb-item {
  display: inline-flex;
  align-items: start;
  max-width: 100%;
  padding-left: 0;
}

.breadcrumb-list .breadcrumb-item::before {
  display: block;
  flex: 0 0 auto;
  float: none;
  content: "";
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  padding-right: 0;
  border-top: 1px solid #A0A0A0;
  border-right: 1px solid #A0A0A0;
  transform: rotate(45deg);
  position: relative;
  top: 0.75em;
}

.breadcrumb-list .breadcrumb-item:first-child::before {
  content: none;
}

.breadcrumb-item>a,
.breadcrumb-item>span {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #A0A0A0 !important;
  padding-left: 16px;
}

.breadcrumb-item:first-child a,
.breadcrumb-item:first-child span {
  padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: unset !important;
}

.breadcrumb-white .breadcrumb-list .breadcrumb-item::before {
  border-color: #fff;
}

.breadcrumb-white .breadcrumb-item>a,
.breadcrumb-white .breadcrumb-item>span {
  color: #fff !important;
}

/*---------------------------------------------------
 noimage
----------------------------------------------------*/

.product-card-thumb img.is-noimage,
.works-slider-card-thumb>img.is-noimage,
.column-card-thumb img.is-noimage,
.column-pickup-thumb img.is-noimage,
.case-card-thumb img.is-noimage {
  object-fit: contain !important;
  object-position: center !important;
  background-color: #fff;
  border: 1px solid #B0B0B0;
}

/*---------------------------------------------------
 common-btn
----------------------------------------------------*/

/*デフォルト：青枠＋青文字*/

.common-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 172px;
  min-height: 48px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0.1em !important;
  border-radius: 5px;
  border: 1px solid var(--main-blue);
  color: var(--main-blue) !important;
  padding: 0 38px 0 24px;
  transition: 0.4s ease;
}

.common-btn::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--main-blue);
  border-right: 2px solid var(--main-blue);
  transform: translateY(-50%) rotate(45deg);
}

.common-btn:hover {
  opacity: 0.6;
}

.common-btn span {
  display: inline-block;
  min-width: 5.5em;
  text-align: center;
}

/*白枠線＋白文字*/

.common-btn-white {
  border: 1px solid #fff;
  color: #fff !important;
}

.common-btn-white::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*ヘッダー用：ネイビー背景＋白文字*/

.common-btn-header {
  background-color: var(--main-navy);
  color: #fff !important;
  border: unset!important;
}

.common-btn-header::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*---------------------------------------------------
 pdf-btn
----------------------------------------------------*/

.pdf-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
  min-width: 172px;
  min-height: 48px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0.2em !important;
  border-radius: 5px;
  background-color: var(--main-blue) !important;
  color: #fff !important;
  padding: 0 56px;
  transition: 0.4s ease;
}

.pdf-btn::after {
  content: "";
  width: 16px;
  height: 19px;
  background-image: url(../images/common/icon_pdf.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.pdf-btn:hover {
  opacity: 0.6;
}

/*---------------------------------------------------
 dl-btn
----------------------------------------------------*/

.dl-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 16px;
  min-width: 172px;
  min-height: 48px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0.2em !important;
  border-radius: 5px;
  background-color: var(--main-blue) !important;
  color: #fff !important;
  padding: 0 26px;
  transition: 0.4s ease;
  cursor: pointer;
}

.dl-btn::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/common/icon_dl.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.dl-btn:hover {
  opacity: 0.6;
}

/*---------------------------------------------------
 lower-fv
----------------------------------------------------*/

.common-fv {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.common-fv-container {
  position: relative;
  z-index: 1;
}

.common-fv-text {
  max-width: 100%;
}

.common-fv-text p {
  margin-bottom: 26px;
}

.common-fv-text p:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .common-fv-text {
    max-width: 380px;
  }

  .common-fv-text p {
    margin-bottom: 28px;
  }
}

@media (min-width: 1200px) {
  .common-fv-text {
    max-width: 460px;
  }
}

@media (min-width: 1400px) {
  .common-fv-text {
    max-width: 526px;
  }
}

/*---------------------------------------------------
 scroll-fv
----------------------------------------------------*/

@media (min-width: 1200px) and (max-width: 1399.98px) and (max-height: 820px) {
  .is-scroll-fv {
    height: 100vh;
    height: 100svh;
    padding-bottom: 0;
  }

  .is-scroll-fv .common-fv-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .is-scroll-fv .common-fv-container>.row:first-child {
    flex: 0 0 auto;
  }

  .is-scroll-fv .common-fv-container>.row.align-items-lg-end {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    margin-bottom: 0 !important;
  }

  .fv-scroll-copy-col {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .js-fv-scroll-copy {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .js-fv-scroll-copy::-webkit-scrollbar {
    display: none;
  }
}

@media (min-width: 1200px) {
  .is-scroll-fv-adaptive {
    height: min(var(--scroll-fv-max-height), 100svh);
    min-height: 768px;
    padding-bottom: 0;
  }

  .is-scroll-fv-about {
    --scroll-fv-max-height: 1065px;
  }

  .is-scroll-fv-development {
    --scroll-fv-max-height: 1021px;
  }

  .is-scroll-fv-subsidy {
    --scroll-fv-max-height: 967px;
  }

  .is-scroll-fv-adaptive .common-fv-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
  }

  .is-scroll-fv-adaptive .common-fv-container>.row:first-child {
    flex: 0 0 auto;
  }

  .is-scroll-fv-adaptive .common-fv-container>.row.align-items-lg-end {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    margin-bottom: 0 !important;
  }

  .is-scroll-fv-adaptive .fv-scroll-copy-col {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .is-scroll-fv-adaptive .js-fv-scroll-copy {
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .is-scroll-fv-adaptive .js-fv-scroll-copy::-webkit-scrollbar {
    display: none;
  }
}

/*---------------------------------------------------
 product-card
----------------------------------------------------*/

.product-card-thumb {
  overflow: hidden;
  aspect-ratio: 327 / 419;
  background-color: #EEE;
}

.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-card-category {
  padding: 4px 6px 4px 8px;
}

.products-list-col[hidden] {
  display: none;
}

.products-list {
  row-gap: 40px;
}

@media (min-width: 992px) {
  .products-list {
    row-gap: 80px;
  }
}

/*---------------------------------------------------
 category-tabs
----------------------------------------------------*/

.category-tabs {
  gap: 24px 16px;
  margin-bottom: 30px;
  max-width: 100%;
  scroll-margin-top: 129px;
}

.category-tab {
  display: inline-block;
  max-width: 100%;
  padding: 8px calc(24px - 0.2em) 8px 24px;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.875rem !important;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  border: 1px solid #222222;
  border-radius: 50rem;
  color: #B0B0B0 !important;
  background: #fff !important;
  appearance: none;
  cursor: pointer;
}

.category-tab.active {
  background: var(--main-blue) !important;
  border-color: transparent;
  color: #fff !important;
}

.category-tab:not(.active) {
  transition: 0.4s ease;
}

.category-tab:not(.active):hover {
  background: #E3F3FF !important;
}

@media screen and (min-width: 992px) {
  .category-tabs {
    gap: 24px 34px;
    margin-bottom: 24px;
  }
}

/*---------------------------------------------------
 works-slider
----------------------------------------------------*/

.works-slider-section {
  overflow: hidden;
}

.works-slider-section-related {
  background-color: #fff;
}

.works-slider-section-related .works-slider-nav {
  border: 1px solid var(--main-blue);
}

.works-slider-section-related .works-slider-pagination .swiper-pagination-bullet-active {
  background: var(--main-blue);
}

.works-slider-frame {
  position: relative;
  width: min(calc(100% - 60px), 1800px);
  margin-inline: auto;
  margin-bottom: 32px;
}

.works-slider {
  overflow: hidden;
}

.works-slider .swiper-slide {
  width: 100%;
}

.works-slider-card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 546 / 341;
  margin-bottom: 16px;
}

.works-slider-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.works-slider-card-voice {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  display: block;
  width: 72px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 50rem;
}

.works-slider-card-body {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.works-slider .swiper-slide-active .works-slider-card-body {
  opacity: 1;
  visibility: visible;
}

.works-slider-products {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
}

.works-slider-nav {
  position: absolute;
  top: calc((100vw - 30px) * 201 / 327 / 2);
  z-index: 2;
  width: 43px;
  height: 43px;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.works-slider-nav.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.works-slider-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--main-green);
  border-right: 2px solid var(--main-green);
}

.works-slider-nav-prev {
  left: -17px;
}

.works-slider-nav-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.works-slider-nav-next {
  right: -17px;
}

.works-slider-nav-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.works-slider-pagination.swiper-pagination {
  position: static;
  line-height: 1;
  margin-bottom: 48px;
}

.works-slider-pagination .swiper-pagination-bullet {
  width: 6.5px;
  height: 6.5px;
  margin: 0 13px !important;
  background: #A8A8A8;
  opacity: 1;
}

.works-slider-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .works-slider-frame {
    width: min(calc(100% - 72px), 1800px);
  }

  .works-slider .swiper-slide {
    width: 546px;
  }

  .works-slider-card {
    opacity: 0.6;
    transform: scale(0.86);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  .works-slider .swiper-slide-active .works-slider-card {
    opacity: 1;
    transform: scale(1);
  }

  .works-slider-nav {
    top: 160px;
    width: 58px;
    height: 58px;
  }

  .works-slider-nav::before {
    width: 11px;
    height: 11px;
  }

  .works-slider-nav-prev {
    left: calc(50% - 546px / 2 - 80px);
  }

  .works-slider-nav-next {
    right: calc(50% - 546px / 2 - 80px);
  }
}

@media screen and (min-width: 992px) {
  .works-slider-card-voice {
    right: 10px;
    bottom: 10px;
    width: 103px;
  }

  .works-slider-frame {
    width: min(100%, 1800px);
  }
}

/*---------------------------------------------------
 article-card
----------------------------------------------------*/

.column-card-thumb {
  overflow: hidden;
  aspect-ratio: 306 / 203;
  background-color: #EEE;
}

.column-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.column-card-title {
  margin-bottom: 0;
  font-family: var(--bs-font-sans-serif);
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.column-detail-cat {
  gap: 32px;
}

.top-news-item {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 24px 0 16px 0;
  border-bottom: 1px solid var(--common-black);
}

.top-news-item-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #222;
  border-right: 1.5px solid #222;
  transform: translate(-50%, -50%) rotate(45deg);
}

.top-news-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  min-width: 0;
  line-height: 1;
}

.top-news-item-categories {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-width: 0;
}

.top-news-item-ttl {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.top-news-empty {
  padding: 24px 0;
  border-top: 1px solid #8c8c8c;
  border-bottom: 1px solid #8c8c8c;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--bs-font-sans-serif);
  line-height: 1;
  font-weight: 600;
}

.news-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.news-pagination-page,
.news-pagination-ellipsis,
.news-pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #222 !important;
}

.news-pagination-page {
  border: 1px solid #222;
  border-radius: 5px;
  transition: 0.4s ease;
}

a.news-pagination-page:not(.is-current):hover {
  background-color: #E3F3FF;
}

.news-pagination-number {
  display: inline-block;
  transform: translate(0.05em, -0.05em);
}

.news-pagination-page.is-current {
  border-color: var(--main-blue);
  background-color: var(--main-blue);
  color: #fff !important;
  pointer-events: none;
}

.news-pagination-ellipsis::before {
  content: "...";
  display: inline-block;
  line-height: 1;
  letter-spacing: 0;
  transform: translateY(-0.3em);
}

.news-pagination-arrow::before,
.news-detail-nav-link::before,
.news-detail-nav-link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.news-pagination-arrow-prev::before {
  transform: rotate(-135deg);
}

.news-pagination-arrow-next::before {
  transform: rotate(45deg);
}

.news-pagination-arrow.is-hidden,
.news-detail-nav-link.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.news-detail-cat {
  gap: 24px;
}

.news-detail-content {
  line-height: 2;
}

.news-detail-content>*:last-child {
  margin-bottom: 0;
}

.news-detail-nav {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.news-detail-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #222 !important;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.875rem !important;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.news-detail-nav-link-prev {
  justify-self: start;
}

.news-detail-nav-link-prev::before {
  transform: rotate(-135deg);
}

.news-detail-nav-link-prev::after {
  content: none;
}

.news-detail-nav-link-next {
  justify-self: end;
}

.news-detail-nav-link-next::before {
  content: none;
}

.news-detail-nav-link-next::after {
  transform: rotate(45deg);
}

@media screen and (min-width: 992px) {
  .top-news-item {
    padding: 24px 16px;
  }

  .top-news-item-meta {
    gap: 40px;
  }

  .news-detail-cat {
    gap: 40px;
  }
}

/*---------------------------------------------------
 form
----------------------------------------------------*/

.contact-form-row {
  margin-bottom: 32px;
}

.fpcorp-form-errors {
  padding: 20px 24px;
  margin-bottom: 32px;
  border: 1px solid #F25858;
  background-color: #fff7f7;
  color: #9d1e1e;
}

.fpcorp-form-errors-title {
  margin-bottom: 8px;
  font-weight: 600;
}

.fpcorp-form-errors ul {
  padding-left: 1.4em;
  margin-bottom: 0;
}

.fpcorp-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.fpcorp-form-turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.fpcorp-form-confirm-header {
  margin-bottom: 32px;
  text-align: center;
}

.fpcorp-form-confirm-title {
  margin-bottom: 8px;
  color: var(--main-blue);
  font-size: 1.25rem;
  font-weight: 700;
}

.fpcorp-form-confirm-text {
  margin-bottom: 0;
  color: #555;
}

.fpcorp-form-confirm-list {
  border-top: 1px solid #c8d0d8;
}

.fpcorp-form-confirm-row {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  margin: 0;
  border-bottom: 1px solid #c8d0d8;
}

.fpcorp-form-confirm-row dt {
  font-weight: 700;
}

.fpcorp-form-confirm-row dd {
  margin: 0;
  color: #555;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.fpcorp-form-confirm-values {
  display: grid;
  gap: 4px;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.fpcorp-form-confirm-empty {
  color: #999;
}

.contact-form-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-form-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 18px;
  padding: 3px 6px;
  border-radius: 2px;
  color: #fff;
  font-family: var(--bs-font-sans-serif);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.contact-form-badge-required {
  background-color: #F25858;
}

.contact-form-badge-optional {
  background-color: #B4B4B4;
}

.contact-form .contact-form-control {
  display: block;
  width: 100%;
  min-height: 49px;
  padding: 8px 20px;
  border: 0 !important;
  background-color: #f3f3f3 !important;
  color: #333;
  font: inherit;
  line-height: 1.7;
}

.contact-form .contact-form-control-short {
  max-width: 240px;
}

.contact-form .contact-form-textarea {
  min-height: 176px;
  resize: vertical;
}

.contact-form .contact-form-textarea::placeholder {
  color: #757575;
}

.contact-checks {
  display: grid;
  gap: 8px;
}

.contact-checks-type {
  grid-template-columns: 1fr;
}

.manual-checks {
  row-gap: 16px;
}

.contact-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  color: #555;
  line-height: 1.7;
  cursor: pointer;
}

.contact-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 0.35em;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  accent-color: var(--main-blue);
}

.contact-survey-title {
  margin-bottom: 8px;
}

.contact-privacy {
  margin-bottom: 40px;
}

.contact-privacy-check {
  margin-bottom: 8px;
}

.contact-privacy-title {
  font-weight: 600;
}

.contact-privacy-text {
  color: #555;
  line-height: 2;
  margin-bottom: 0;
}

.contact-submit {
  display: flex;
  justify-content: center;
  padding-top: 16px;
  margin-bottom: 0;
}

.contact-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 48px;
  padding: 0 32px;
  border: 0;
  border-radius: 5px;
  background-color: var(--main-blue);
  color: #fff;
  font-family: var(--bs-font-sans-serif);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  transition: opacity 0.4s ease;
}

.contact-submit-button:where(a) {
  text-decoration: none;
}

.contact-submit-button:hover {
  opacity: 0.7;
}

.contact-submit-confirm {
  flex-wrap: wrap;
  gap: 20px 48px;
  padding-top: 40px;
}

.contact-submit-confirm .contact-submit-button {
  min-width: 220px;
}

.contact-submit-button-secondary {
  border: 1px solid #c9c9c9;
  background-color: #fff;
  color: #555;
}

.catalog-select-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.catalog-select-list {
  row-gap: 56px;
}

.catalog-select-item {
  position: relative;
  width: 100%;
  color: #222;
  cursor: pointer;
}

.manual-select .catalog-select-item {
  width: min(100%, 250px);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .catalog-select:not(.manual-select) .catalog-select-item {
    width: min(100%, 250px);
    margin-right: auto;
    margin-left: auto;
  }
}

.catalog-select-thumb {
  margin: 0 0 12px;
}

.manual-select .catalog-select-thumb {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  aspect-ratio: 250 / 342;
  padding-bottom: 6.43%;
  margin-right: auto;
  margin-left: auto;
  background-color: #eee;
}

.manual-select .catalog-select-thumb img {
  width: 71.2% !important;
  height: auto;
  max-height: 78.95%;
  object-fit: contain;
}

.catalog-select-check {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  line-height: 1;
}

.catalog-select-check input {
  width: 26px;
  height: 26px;
  margin: 0;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  accent-color: var(--main-blue);
}

.catalog-select-all input {
  width: 26px;
  height: 26px;
}

.catalog-select-subtitle,
.catalog-select-name {
  display: block;
}

.manual-dl-btn {
  min-width: 252px;
}

.manual-dl-btn-disabled {
  pointer-events: none;
  opacity: 0.45;
}

@media screen and (min-width: 768px) {
  .catalog-select-header {
    justify-content: flex-end;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 992px) {
  .catalog-select-list {
    row-gap: 80px;
  }

  .contact-form-row {
    margin-bottom: 56px;
  }

  .fpcorp-form-confirm-row {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    padding: 26px 0;
  }

  .contact-form-row-checkboxes {
    grid-template-columns: 1fr;
  }

  .contact-checks-type {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 72px;
    row-gap: 8px;
  }

  .manual-checks {
    grid-template-columns: none;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    column-gap: 120px;
  }

  .contact-privacy {
    margin-bottom: 64px;
  }
}

@media screen and (min-width: 1400px) {
  .manual-select .catalog-select-list {
    --bs-gutter-x: 25px;
  }
}

.manual-select .manual-thanks-card .catalog-select-thumb {
  align-items: center;
  padding-bottom: 0;
}

/*---------------------------------------------------
 order
----------------------------------------------------*/

.os-order-1 {
  order: 1 !important;
}

.os-order-2 {
  order: 2 !important;
}

.os-order-3 {
  order: 3 !important;
}

.os-order-4 {
  order: 4 !important;
}

.os-order-5 {
  order: 5 !important;
}

.os-order-6 {
  order: 6 !important;
}

.os-order-7 {
  order: 7 !important;
}

.os-order-8 {
  order: 8 !important;
}

.os-order-9 {
  order: 9 !important;
}

.os-order-10 {
  order: 10 !important;
}

.os-order-11 {
  order: 11 !important;
}

.os-order-12 {
  order: 12 !important;
}

@media screen and (min-width: 992px) {

  .os-order-lg-1 {
    order: 1 !important;
  }

  .os-order-lg-2 {
    order: 2 !important;
  }

  .os-order-lg-3 {
    order: 3 !important;
  }

  .os-order-lg-4 {
    order: 4 !important;
  }

  .os-order-lg-5 {
    order: 5 !important;
  }

  .os-order-lg-6 {
    order: 6 !important;
  }

  .os-order-lg-7 {
    order: 7 !important;
  }

  .os-order-lg-8 {
    order: 8 !important;
  }

  .os-order-lg-9 {
    order: 9 !important;
  }

  .os-order-lg-10 {
    order: 10 !important;
  }

  .os-order-lg-11 {
    order: 11 !important;
  }

  .os-order-lg-12 {
    order: 12 !important;
  }
}
