@charset "UTF-8";
:root {
  /* fonts */
  --font-main: Zen Kaku Gothic New, sans-serif;
  --font-sub: Yuji Syuku, serif;
  /* colors */
  --color-main-100: #003f7b;
  --color-main-200: #0063c0;
  --color-main-300: #dff1f1;
  --color-main-400: #0078e9;
  --color-main-500: #000;
  --color-accent-100: #e60020;
  --color-accent-200: #000;
  --color-txt-100: #111111;
  --color-txt-200: #000;
  --color-border-100: #d2d2d2;
  --color-border-200: #000;
  --color-line-100: #06c755;
  --color-base-100: #f6f6f6;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-black: #000000;
  /* font-weights */
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
}
@media screen and (min-width: 767px) {
  :root {
    --cmn-pd-sm: 100px;
    --cmn-pd-md: 120px;
    --cmn-pd-lg: 170px;
    --cmn-pd-xl: 180px;
    --ttl-mb-sm: 50px;
    --ttl-mb-md: 60px;
    --ttl-mb-lg: 75px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --cmn-pd-sm: 60px;
    --cmn-pd-md: 80px;
    --cmn-pd-lg: 120px;
    --cmn-pd-xl: 180px;
    --ttl-mb-sm: 40px;
    --ttl-mb-md: 40px;
    --ttl-mb-lg: 50px;
  }
}

/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

/* font-family */
.font-main {
  font-family: Zen Kaku Gothic New, sans-serif;
}

.font-sub {
  font-family: Yuji Syuku, serif;
}

/* font-color */
.color-main-100 {
  color: var(--color-main-100);
}

.color-main-200 {
  color: var(--color-main-200);
}

.color-main-300 {
  color: var(--color-main-300);
}

.color-main-400 {
  color: var(--color-main-400);
}

.color-main-500 {
  color: var(--color-main-500);
}

.color-accent-100 {
  color: var(--color-accent-100);
}

.color-accent-200 {
  color: var(--color-accent-200);
}

.color-txt-100 {
  color: var(--color-txt-100);
}

.color-txt-200 {
  color: var(--color-txt-200);
}

.color-border-100 {
  color: var(--color-border-100);
}

.color-border-200 {
  color: var(--color-border-200);
}

.color-line-100 {
  color: var(--color-line-100);
}

.color-base-100 {
  color: var(--color-base-100);
}

.color-base-200 {
  color: var(--color-base-200);
}

.color-base-300 {
  color: var(--color-base-300);
}

.color-base-400 {
  color: var(--color-base-400);
}

.color-base-500 {
  color: var(--color-base-500);
}

.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

html {
  font-family: var(--font-main);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

iframe {
  border: none;
}

.logo a,
.logo img {
  display: block;
}

@media screen and (min-width: 767px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .cmn-txt-mb {
    margin-bottom: 36px;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .cmn-txt-mb {
    margin-bottom: 30px;
  }
  .inbox,
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
  .logo .logo-item {
    display: block;
    line-height: 1;
  }
}
.btn {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-accent-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0em;
  width: 180px;
  padding: 7.5px 10px;
  color: var(--color-white);
  background: var(--color-accent-100);
}
.btn-accent-100 .btn-cont {
  --icon-width: 14;
  --icon-height: 10;
  --icon-gap: 8;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: calc(var(--icon-width) * 1px + var(--icon-gap) * 1px);
}
.btn-accent-100 .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/mail-icon.png) no-repeat;
  background-size: contain;
}

.btn-main-100, .btn-main-200 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.04em;
  width: 180px;
  padding: 10px 10px;
  color: var(--color-white);
  background: url(/img/common/pat03.png);
}
.btn-main-100::before, .btn-main-200::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 14/14;
  width: 14px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-bg-white.png) no-repeat;
  background-size: contain;
}

.btn-main-200 {
  width: 240px;
}

.ttl, .top-point-ttl, .top-company-ttl, .top-news-ttl, .safety-ttl, .ttl-sm-200, .strength-ttl, .catalog-ttl, .order-ttl, .sub-products-ttl, .recommendation-ttl, .reason-ttl, .flow-ttl, .online-ttl, .facilities-ttl, .system-ttl, .sub-flow-ttl, .ttl-temp, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl, .ttl-sm-200-lh-1, .intro-ttl, .faq-ttl, .ttl-sm, .top-links-ttl, .ttl-sm-lh-1 {
  font-family: var(--font-sub);
  color: var(--color-txt-100);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: var(--font-normal);
}

.ttl-num, .top-point .num, .reason .num {
  font-family: var(--font-sub);
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-normal);
}

.ttl-sm, .top-links-ttl, .ttl-sm-lh-1 {
  font-size: 18px;
}

.ttl-sm-lh-1 {
  line-height: 1;
}

.ttl-sm-200, .strength-ttl, .catalog-ttl, .order-ttl, .sub-products-ttl, .recommendation-ttl, .reason-ttl, .flow-ttl, .online-ttl, .facilities-ttl, .system-ttl, .sub-flow-ttl, .ttl-temp, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl, .ttl-sm-200-lh-1, .intro-ttl, .faq-ttl {
  font-size: 28px;
}

.ttl-sm-200-lh-1, .intro-ttl, .faq-ttl {
  line-height: 1;
}

.ttl-sv, .sv-ttl {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-sub);
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
}

.sub-ttl, .top-point-subttl, .intro-subttl, .reason-subttl, .faq-term, .system-subttl, .safety-subttl, .sub-flow-subttl, .sub-ttl-white, .sub-products-subttl {
  font-family: var(--font-sub);
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0em;
}

.sub-ttl-white, .sub-products-subttl {
  color: var(--color-white);
}

.sub-ttl-lg, .catalog-subttl, .order-subttl, .flow-subttl {
  font-size: 20px;
  font-family: var(--font-sub);
  font-weight: var(--font-normal);
  color: var(--color-white);
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.txt, .top-about-txt, .top-products-txt, .strength-txt, .order-txt, .order .cont-item, .online-txt, .faq-definition, .facilities-lead, .safety-txt, .txt-white, .reason-txt, .txt-xs {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-sm, .footer address, .footer-schedule, .catalog-txt, .order .notice, .sub-products-txt, .flow-txt, .facilities-txt, .system-txt, .sub-flow-txt, .drawer-schedule {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}

.txt-xs {
  font-size: 13px;
}

.txt-white, .reason-txt {
  color: var(--color-white);
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: var(--font-medium);
  line-height: 16px;
  letter-spacing: 0.08em;
  color: var(--color-main-200);
}

.txt-news-tag, .top-news-item .tag, .detail .tag {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: var(--font-medium);
  line-height: 12px;
  letter-spacing: 0.08em;
  color: var(--color-white);
}

.txt-news-ttl, .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.8;
  font-weight: var(--font-medium);
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
}

.txt-hd-nav {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-txt-100);
  font-weight: var(--font-bold);
}

.txt-ft-nav, .footer-nav, .footer .nav-sub, .txt-ft-nav-sm {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--color-white);
  font-weight: var(--font-medium);
}

.txt-ft-nav-sm {
  font-size: 12px;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel {
  font-family: var(--font-sub);
  font-size: 20px;
  font-weight: var(--font-normal);
  position: relative;
  line-height: 1;
  letter-spacing: -0.1em;
  color: var(--color-txt-100);
}
.tel-num {
  --icon-width-def: 18;
  --icon-height: 25;
  --icon-width: 10;
  display: inline-block;
  display: block;
  line-height: 1;
  padding-left: 3px;
  margin-left: calc(var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width-def)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 2px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

/*site-map ---------------------------------------------*/
.site-map {
  --color-site-map: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.site-map-list {
  font-size: 16px;
  color: var(--color-site-map);
}
.site-map-item {
  border-bottom: 1px solid var(--color-site-map);
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 15px 0 15px 30px;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*404 ---------------------------------------------*/
.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-400);
  padding: var(--cmn-pd-md, 60px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.privacy .ttl02 {
  font-size: 20px;
  font-family: var(--font-main);
  padding-bottom: 7px;
  margin-bottom: 12px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 50px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-400);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-400);
  --color-contact-th-txt: #fff;
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
  padding: var(--cmn-pd-md, 120px) 0;
}
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  background: var(--color-contact-td-bg);
}
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  width: 30%;
  color: var(--color-contact-th-txt);
  background: var(--color-contact-th-bg);
}
#contact table .required-mark {
  color: var(--color-contact-required-mark-txt);
  font-size: 13px;
  border-radius: 0;
  background: var(--color-contact-required-mark-bg);
}
#contact label[for=agree] a {
  color: var(--color-contact-main);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-contact-main);
}
#contact .contact-btn.contact-submits-wrap button[type=button],
#contact input[type=button],
#contact input[type=submit],
#contact button[type=button] {
  color: #fff;
  background: var(--color-contact-main);
  font-size: 16px;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact button[type=button]:hover {
  opacity: 0.7;
}
#contact .contact-btn.contact-submits-wrap button[type=button][disabled],
#contact input[type=button][disabled],
#contact input[type=submit][disabled],
#contact button[type=button][disabled] {
  color: var(--color-contact-disabled-txt);
  background: var(--color-contact-disabled-bg);
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    background: var(--color-contact-td-bg);
  }
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    width: 100%;
    color: var(--color-contact-th-txt);
    background: var(--color-contact-th-bg);
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-contact-required-mark-txt);
    font-size: 3.5vw;
    border-radius: 0;
    background: var(--color-contact-required-mark-bg);
  }
  #contact input[type=button],
  #contact input[type=submit],
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-400);
  padding: var(--cmn-pd-md, 60px) 0;
}
.complete-box {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-complete-txt);
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-complete-link);
  text-decoration: underline;
}

.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  gap: 20px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  line-height: 1;
  width: 30px;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-txt-100);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 40px;
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 14px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: 3px;
  color: var(--color-tag-change-def-txt);
  background: var(--color-tag-change-def-bg);
}
.tag-change li a {
  display: block;
  padding: 9px 16px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background: var(--color-tag-change-current-bg);
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 60px;
  --color-page-btn-pt: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--color-page-btn-mt);
  padding-top: var(--color-page-btn-pt);
  text-align: center;
  border-top: 1px solid var(--color-page-btn-border);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page-btn .left,
.page-btn .mid,
.page-btn .right {
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--color-page-btn-txt);
  font-weight: var(--font-medium);
}
.page-btn .left {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-right: auto;
}
.page-btn .left a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 22px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.page-btn .right {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-left: auto;
}
.page-btn .right a {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 22px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.page-btn .mid {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}

.detail {
  --color-news-detail: var(--color-txt-100);
}
.detail-ttl {
  font-size: 20px;
  color: var(--color-news-detail);
  margin-bottom: 12px;
  line-height: 1.5;
}

/*==========================================
top
===========================================*/
/*bg-hero ---------------------------------------------*/
.bg-hero {
  background: url(/img/top/bg-hero.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}

/*header ---------------------------------------------*/
.header {
  height: 75px;
  width: 100%;
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding: 15px;
}
.header .logo {
  width: 90px;
}
.header .logo img {
  display: block;
  width: 100%;
  height: auto;
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 500px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.mv .bx-wrapper,
.mv ul {
  height: 100%;
}
.mv li {
  height: var(--mv-height);
  position: relative;
  z-index: 1;
}
.mv li:nth-child(1)::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: var(--mv-height);
  top: 0;
  background: url(/img/top/mv-bg01.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.mv li:nth-child(2)::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: var(--mv-height);
  top: 0;
  background: url(/img/top/mv-bg02.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.mv li:nth-child(3)::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: var(--mv-height);
  top: 0;
  background: url(/img/top/mv-bg03.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.mv li:nth-child(4)::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: var(--mv-height);
  top: 0;
  background: url(/img/top/mv-bg04.png) no-repeat;
  background-size: cover;
  background-position: center;
}
.mv-catch {
  position: absolute;
  z-index: 100;
  width: 150%;
  max-width: 700px;
  left: 55%;
  top: 250px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.mv-catch::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 714/469;
  width: 30%;
  max-width: 600px;
  left: 24%;
  top: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/top/mv-deco.png) no-repeat;
  background-size: contain;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-about::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 999/892;
  width: 400px;
  left: 0;
  bottom: -26px;
  background: url(/img/top/top-about-deco02.png) no-repeat;
  background-size: contain;
}
.top-about-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-about-txtarea {
  width: 100%;
}
.top-about-ttl {
  width: 300px;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  margin-bottom: 20px;
}
.top-about-ttl img {
  display: block;
}
.top-about-txt {
  margin-bottom: 30px;
}
.top-about .btn-main-100 {
  margin: 0 auto;
  margin-bottom: 36px;
}
.top-about-img {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: 0 auto;
}
.top-about-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 360/184;
  width: 60%;
  max-width: 280px;
  left: -10%;
  bottom: -16%;
  background: url(/img/top/top-about-deco01.png) no-repeat;
  background-size: contain;
}

/*top-point ---------------------------------------------*/
.top-point {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/top/top-point-bg.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-point::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 467/394;
  width: 400px;
  left: 0;
  bottom: 40px;
  background: url(/img/top/top-point-deco-l.png) no-repeat;
  background-size: contain;
}
.top-point::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 396/169;
  width: 180px;
  right: -50px;
  top: 0;
  background: url(/img/top/top-point-deco-r.png) no-repeat;
  background-size: contain;
}
.top-point-ttl {
  margin-bottom: 60px;
  word-break: keep-all;
}
.top-point-ttl .main-color {
  color: var(--color-main-100);
}
.top-point-ttl .lg {
  font-size: 36px;
}
.top-point-ttl .deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-point-ttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 108/107;
  width: 60px;
  left: 46%;
  top: 61%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/img/top/top-point-ttl-deco.png) no-repeat;
  background-size: contain;
}
.top-point-list {
  width: 100%;
  gap: 30px 6%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.top-point-item {
  width: 47%;
  max-width: 270px;
  position: relative;
  z-index: 1;
}
.top-point .num {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--color-main-100);
  color: var(--color-white);
  padding: 8px 0;
}
.top-point-subttl {
  width: 100%;
  text-align: center;
}
.top-point-subttl .accent-color {
  color: var(--color-accent-100);
}
.top-point-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  padding-top: 14px;
  margin-bottom: 12px;
}
.top-point-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-products ---------------------------------------------*/
.top-products {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/top/top-products-bg.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-products-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-products-ttl {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
  margin-bottom: var(--ttl-mb-md);
}
.top-products-ttl img {
  display: block;
}
.top-products-txtarea {
  width: 100%;
  max-width: 740px;
  margin-top: 30px;
}
.top-products-txt {
  width: 100%;
  max-width: 650px;
  margin-bottom: 30px;
}
.top-products .btn-main-100 {
  margin: 0 auto;
  margin-bottom: 36px;
}
.top-products-img {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}
.top-products-img:not(:last-child) {
  margin-bottom: 20px;
}

/*top-links ---------------------------------------------*/
.top-links {
  padding: var(--cmn-pd-sm) 20px;
  background: url(/img/common/pat01.png);
  overflow: hidden;
}
.top-links-list {
  width: 100%;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-links-item {
  width: 100%;
  max-width: 830px;
  position: relative;
  z-index: 1;
  border: 5px solid var(--color-white);
}
.top-links-item:nth-of-type(1) .top-links-box {
  background: url(/img/top/top-links-bg01.png) no-repeat center center/cover;
}
.top-links-item:nth-of-type(1) .top-links-box::before {
  aspect-ratio: 277/167;
  width: 70px;
  left: 5px;
  bottom: 10px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background: url(/img/top/top-links-deco01.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(2) .top-links-box {
  background: url(/img/top/top-links-bg02.png) no-repeat center center/cover;
}
.top-links-item:nth-of-type(2) .top-links-box::before {
  aspect-ratio: 256/151;
  width: 70px;
  right: 5px;
  bottom: 10px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  background: url(/img/top/top-links-deco02.png) no-repeat;
  background-size: contain;
}
.top-links-box {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  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;
  position: relative;
  z-index: 1;
}
.top-links-box::before {
  content: "";
  position: absolute;
  z-index: -1;
}
.top-links-ttl {
  padding: 8px 8px;
  padding-right: 32px;
  background: url(/img/top/top-links-ttl-bg.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
  text-align: center;
  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;
  word-break: keep-all;
}
.top-links-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 26/26;
  width: 14px;
  right: 8px;
  top: 50%;
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-bg-main.png) no-repeat;
  background-size: contain;
}

/*top-company ---------------------------------------------*/
.top-company {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}
.top-company-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.top-company-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-company-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 98/46;
  width: 58px;
  left: -20px;
  top: 24px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: url(/img/top/top-company-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.top-company-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 134/46;
  width: 84px;
  right: -2px;
  top: -12px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: url(/img/top/top-company-ttl-deco-r.png) no-repeat;
  background-size: contain;
}
.top-company-body {
  -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;
}
.top-company-table {
  margin: 0 auto;
  margin-bottom: 30px;
}
.top-company-row {
  display: block;
  width: 100%;
}
.top-company-row:not(:last-child) {
  margin-bottom: 10px;
}
.top-company-header, .top-company-data {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
}
.top-company-header {
  color: var(--color-white);
  text-align: center;
  vertical-align: middle;
  width: 100px;
  padding: 4.5px 4px;
  background: var(--color-main-200);
}
.top-company-data {
  color: var(--color-txt-100);
  padding: 4.5px 10px;
}
.top-company-data .tel-link {
  display: block;
}
.top-company .tel-svg {
  display: block;
  width: 190px;
}
.top-company iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
}

/*top-news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: var(--cmn-pd-lg);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/common/pat02.png);
}
.top-news::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 348/224;
  width: 160px;
  left: -30px;
  top: 110px;
  background: url(/img/top/top-news-deco-l.png) no-repeat;
  background-size: contain;
}
.top-news::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 391/211;
  width: 170px;
  right: -30px;
  bottom: 40px;
  background: url(/img/top/top-news-deco-r.png) no-repeat;
  background-size: contain;
}
.top-news-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.top-news-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-news-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 219/98;
  width: 150px;
  top: -31px;
  right: -32px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: url(/img/top/top-news-ttl-deco.png) no-repeat;
  background-size: contain;
}
.top-news-list {
  width: 100%;
  gap: 40px 20px;
  margin-bottom: 52px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-img {
  aspect-ratio: 320/200;
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.top-news-item-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news-item .meta {
  margin-bottom: 4px;
}
.top-news-item .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 8px;
  gap: 7px;
}
.top-news-item .tag {
  padding: 3px 7px;
  text-align: center;
  background: var(--color-accent-100);
}

/*==========================================
footer
===========================================*/
.footer {
  padding-top: 50px;
  padding-bottom: 80px;
  background: var(--color-main-200);
  color: var(--color-white);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 30px;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  background: url(/img/common/footer-wave.png) no-repeat;
  background-size: cover;
}
.footer-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: auto;
  margin: 0 auto;
}
.footer-logo {
  margin-bottom: 30px;
}
.footer address {
  margin-bottom: 20px;
}
.footer-schedule {
  line-height: 1;
  gap: 10px;
  -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: start;
  margin-bottom: 30px;
}
.footer-schedule .bg {
  display: inline-block;
  font-size: 15px;
  color: var(--color-accent-100);
  padding: 1.5px 4px 3.5px;
  background: var(--color-white);
  text-align: center;
  margin-right: 8px;
}
.footer-info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.footer .tel-wrapper {
  width: 100%;
  padding: 20px 10px;
  background: var(--color-white);
  gap: 20px;
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .tel-area .tel {
  margin-bottom: 5px;
}
.footer .tel-area .tel-svg {
  display: block;
  width: 190px;
}
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 50px;
  margin-bottom: 40px;
}
.footer .nav-list {
  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: start;
  gap: 20px;
}
.footer .nav-item {
  position: relative;
  z-index: 1;
}
.footer .nav-sub {
  font-size: 12px;
}
.footer .copy {
  display: block;
  font-family: var(--font-main);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}

/*side-btn ---------------------------------------------*/
.side-btn {
  z-index: 10;
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 56px;
}
.side-btn a {
  display: block;
}

/*==========================================
sv
===========================================*/
.sv {
  --sv-height: 200px;
  height: var(--sv-height);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.sv-wrap {
  width: 100%;
  height: 100%;
  max-width: 1720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sv-img {
  width: 100%;
  height: 100%;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-ttl {
  position: absolute;
  z-index: 1;
  inset: 0;
  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;
}
.sv-ttl-deco {
  display: inline-block;
  padding: 4.1px 28px 6.1px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
.sv-ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 104/39;
  width: 70px;
  left: -28px;
  bottom: -10px;
  background: url(/img/common/sv-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.sv-ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 69/24;
  width: 47px;
  right: -6px;
  top: -6px;
  background: url(/img/common/sv-ttl-deco-r.png) no-repeat;
  background-size: contain;
}

/*==========================================
wholesale
===========================================*/
/*strength ---------------------------------------------*/
.strength {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/section-bg01.png) no-repeat center bottom/contain;
  background: url(/img/common/page01-sec01-bg.png) no-repeat center bottom/cover;
}
.strength .inner {
  padding: 0;
  margin: 0;
}
.strength::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 250/141;
  width: 110px;
  right: 0px;
  top: 187px;
  background: url(/img/wholesale/strength-deco-r.png) no-repeat;
  background-size: contain;
}
.strength::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 464/394;
  width: 464px;
  left: 0;
  bottom: 102px;
  background: url(/img/wholesale/strength-deco-l.png) no-repeat;
  background-size: contain;
}
.strength-ttl {
  margin: 0 20px;
  margin-bottom: var(--ttl-mb-sm);
  margin-bottom: 40px;
  word-break: keep-all;
  gap: 12px;
}
.strength-ttl .sm {
  font-size: 18px;
}
.strength-ttl .bg {
  padding: 7.2px 17px;
  background: var(--color-main-300);
}
.strength-ttl .accent-color {
  color: var(--color-accent-100);
}
.strength-ttl .main-color {
  color: var(--color-main-100);
}
.strength-figure-area {
  overflow-x: scroll;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.strength-figure {
  width: 100%;
  min-width: 640px;
}
.strength-txt {
  margin: 0 20px;
}

/*intro ---------------------------------------------*/
.intro {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/pat01.png);
  overflow: hidden;
}
.intro-ttl {
  color: var(--color-white);
  margin-bottom: 37px;
}
.intro-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.intro-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 116/33;
  width: 70px;
  left: 0;
  top: 65%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/ttl-deco-wave-l.png) no-repeat;
  background-size: contain;
}
.intro-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 116/33;
  width: 70px;
  right: 0;
  top: 65%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url(/img/common/ttl-deco-wave-r.png) no-repeat;
  background-size: contain;
}
.intro-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 20px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.intro-item {
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
.intro-subttl {
  width: 100%;
  height: 100%;
  background: var(--color-main-300);
  border: 3px solid var(--color-white);
  border-top: none;
  padding: 10px 10px 20px;
  text-align: center;
  position: relative;
}
.intro-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 6px);
  height: 36px;
  left: -3px;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: var(--color-main-300);
  border: 3px solid var(--color-white);
  border-bottom: none;
}
.intro-subttl .sm {
  font-size: 15px;
}
.intro-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 60px;
}
.intro-img img {
  display: block;
  width: 100%;
  height: 100%;
}

/*catalog ---------------------------------------------*/
.catalog {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/wholesale/catalog-bg.png) no-repeat center center/cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.catalog-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.catalog-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.catalog-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 98/46;
  width: 58px;
  left: -20px;
  top: 24px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: url(/img/top/top-company-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.catalog-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 134/46;
  width: 84px;
  right: -2px;
  top: -12px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: url(/img/top/top-company-ttl-deco-r.png) no-repeat;
  background-size: contain;
}
.catalog-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.catalog-item {
  width: 100%;
}
.catalog-txtarea {
  width: 100%;
}
.catalog-subttl {
  width: 100%;
  padding: 7px 20px;
  text-align: center;
  background: var(--color-main-100);
  margin-bottom: 20px;
}
.catalog .sub-catalog-list {
  gap: 20px 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.catalog .sub-catalog-item {
  width: 100%;
}
.catalog-img {
  aspect-ratio: 320/200;
  width: 100%;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.catalog-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.catalog .item-name {
  width: 100%;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-txt-100);
}
.catalog .item-info {
  width: 100%;
  padding-top: 10px;
  gap: 8px;
  margin-bottom: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}
.catalog .item-info .bg {
  display: inline-block;
  padding: 0 8px;
  background: var(--color-accent-100);
  color: var(--color-white);
  margin-right: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.catalog-txt {
  width: 100%;
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  padding: 8px 4px;
  background: var(--color-white);
}

/*order ---------------------------------------------*/
.order {
  padding-top: var(--cmn-pd-md);
  padding-bottom: var(--cmn-pd-lg);
  background: url(/img/common/pat02.png);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.order::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 348/224;
  width: 348px;
  left: min(50% - 960px, 0px);
  top: 635px;
  background: url(/img/top/top-news-deco-l.png) no-repeat;
  background-size: contain;
}
.order::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 391/211;
  width: 391px;
  right: min(50% - 960px, 0px);
  top: 540px;
  background: url(/img/top/top-news-deco-r.png) no-repeat;
  background-size: contain;
}
.order-ttl {
  margin-bottom: var(--ttl-mb-sm);
}
.order-ttl .accent-color {
  color: var(--color-accent-100);
}
.order-txt {
  margin-bottom: 20px;
  text-align: left;
}
.order .notice {
  color: var(--color-txt-100);
}
.order-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 20px;
  margin-top: 40px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.order-item {
  width: 100%;
  background: var(--color-white);
  padding: 20px;
}
.order-subttl {
  width: 100%;
  padding: 10.5px 20px;
  background: var(--color-main-200);
  margin-bottom: 10px;
}
.order .cont-list {
  width: 100%;
  text-align: left;
}
.order .cont-item {
  width: 100%;
  line-height: 25px;
  border-bottom: 1px solid var(--color-border-100);
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order .cont-item .check {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.order .cont-item .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 14/15;
  width: 14px;
  left: 0;
  top: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/check-red.png) no-repeat;
  background-size: contain;
}

/*==========================================
products
===========================================*/
/*sub-products ---------------------------------------------*/
.sub-products {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/page01-sec01-bg.png) no-repeat center bottom/100%;
  overflow: hidden;
}
.sub-products-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.sub-products-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.sub-products-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 98/46;
  width: 58px;
  left: 40px;
  bottom: -20px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: url(/img/top/top-company-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.sub-products-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 134/46;
  width: 84px;
  right: 78px;
  top: -42px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: url(/img/top/top-company-ttl-deco-r.png) no-repeat;
  background-size: contain;
}
.sub-products-ttl .main-color {
  color: var(--color-main-100);
}
.sub-products-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
}
.sub-products-item {
  width: 100%;
  background: var(--color-white);
  padding: 20px;
  border: 5px solid var(--color-main-300);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.sub-products-item::before {
  content: "";
  position: absolute;
  aspect-ratio: 233/55;
  width: 173px;
  right: -10px;
  bottom: -16px;
  background: url(/img/products/sub-products-deco.png) no-repeat;
  background-size: contain;
}
.sub-products-subttl {
  width: 100%;
  padding: 4.7px 10px;
  background: var(--color-main-100);
}
.sub-products-body {
  width: 100%;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sub-products-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 320/200;
  width: 100%;
  position: relative;
  z-index: 1;
}
.sub-products-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub-products-info {
  width: 100%;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}
.sub-products-info .bg {
  display: inline-block;
  width: 120px;
  background: var(--color-accent-100);
  color: var(--color-white);
  margin-right: 7px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
.sub-products-txtarea {
  width: 100%;
  gap: 13px;
}
.sub-products-txt {
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
}
.sub-products-notice {
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

/*==========================================
buyer
===========================================*/
/*recommendation ---------------------------------------------*/
.recommendation {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}
.recommendation-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.recommendation-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.recommendation-ttl span {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-top: 0px;
  color: var(--color-accent-100);
}
.recommendation-ttl span::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 6/6;
  width: 4px;
  left: 50%;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--color-main-100);
  border-radius: 50%;
}
.recommendation-list {
  width: 100%;
  position: relative;
  gap: 24px;
  z-index: 1;
  -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;
}
.recommendation-col {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.recommendation-item {
  width: 100%;
  max-width: 450px;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: var(--font-medium);
  color: var(--color-white);
  text-align: center;
  padding: 16px 10px;
  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;
  background: url(/img/common/pat04.png);
  position: relative;
  z-index: 1;
}
.recommendation-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 227/34;
  width: 160px;
  left: 50%;
  bottom: -12px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/common/deco-wave-main.png) no-repeat;
  background-size: contain;
}
.recommendation-img {
  position: absolute;
  z-index: -1;
  width: 130px;
  right: 0;
  top: 40px;
}
.recommendation-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*reason ---------------------------------------------*/
.reason {
  padding-bottom: var(--cmn-pd-md);
  overflow: hidden;
  background: url(/img/common/page01-sec01-bg.png) no-repeat center bottom/cover;
}
.reason-ttl {
  margin-bottom: var(--ttl-mb-md);
  margin-bottom: 30px;
  word-break: keep-all;
}
.reason-ttl .accent-color {
  color: var(--color-accent-100);
}
.reason-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 30px;
}
.reason-item {
  width: 100%;
}
.reason .num {
  display: inline-block;
  width: 50px;
  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;
  background: var(--color-accent-100);
  padding: 8px 0;
}
.reason-txtarea {
  width: 100%;
  padding: 10px 20px 20px;
  background: var(--color-main-100);
  position: relative;
}
.reason-txtarea::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 24px;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: var(--color-main-100);
}
.reason-subttl {
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  background: var(--color-white);
  margin-bottom: 12px;
}
.reason-txt {
  text-align: left;
}
.reason-txt p {
  display: inline;
}

/*flow ---------------------------------------------*/
.flow {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/buyer/flow-bg.png) no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 467/394;
  width: 467px;
  left: -88px;
  bottom: 50px;
  background: url(/img/buyer/flow-deco-l.png) no-repeat;
  background-size: contain;
}
.flow::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 289/123;
  width: 140px;
  right: 10px;
  top: 114px;
  background: url(/img/buyer/flow-deco-r.png) no-repeat;
  background-size: contain;
}
.flow-ttl {
  margin-bottom: var(--ttl-mb-sm);
}
.flow-list {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flow-item {
  width: 100%;
  text-align: center;
}
.flow-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.flow-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow-txtarea {
  width: 100%;
  height: 100%;
  padding: 10px 20px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-main-100);
  border-top: none;
  position: relative;
}
.flow-txtarea::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% + 2px);
  height: 40px;
  left: -1px;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: var(--color-white);
  border: 1px solid var(--color-main-100);
  border-bottom: none;
}
.flow .num {
  display: block;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-sub);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: var(--font-normal);
  color: var(--color-accent-100);
}
.flow .num .lg {
  font-size: 18px;
  letter-spacing: -0.16em;
}
.flow-subttl {
  width: 100%;
  color: var(--color-main-100);
  margin-bottom: 12px;
}
.flow-txt {
  color: var(--color-txt-100);
  margin-bottom: 16px;
  text-align: left;
}
.flow-txt p {
  display: inline;
}
.flow-contact {
  width: 100%;
  padding: 10px;
  background: var(--color-main-300);
}
.flow .tel-area {
  margin-bottom: 12px;
}
.flow .tel {
  margin-bottom: 8px;
}
.flow .tel-svg {
  display: block;
  width: 190px;
}

/*online ---------------------------------------------*/
.online {
  padding: var(--cmn-pd-sm) 0;
  overflow: hidden;
  background: url(/img/common/pat02.png);
  position: relative;
  z-index: 1;
}
.online::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 348/224;
  width: 170px;
  left: -20px;
  bottom: 100px;
  background: url(/img/top/top-news-deco-l.png) no-repeat;
  background-size: contain;
}
.online::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 391/211;
  width: 190px;
  right: -20px;
  bottom: 160px;
  background: url(/img/top/top-news-deco-r.png) no-repeat;
  background-size: contain;
}
.online-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.online-ttl .accent-color {
  color: var(--color-accent-100);
}
.online-body {
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.online-txt {
  margin-bottom: 35px;
}
.online .btn-main-200 {
  margin: 0 auto;
}
.online-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/*faq ---------------------------------------------*/
.faq {
  padding-top: var(--cmn-pd-md);
  padding-bottom: var(--cmn-pd-lg);
  background: url(/img/common/pat01.png);
  overflow: hidden;
}
.faq-ttl {
  color: var(--color-white);
  margin-bottom: var(--ttl-mb-lg);
}
.faq-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}
.faq-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 116/33;
  width: 70px;
  left: 0;
  top: 65%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/ttl-deco-wave-l.png) no-repeat;
  background-size: contain;
}
.faq-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 116/33;
  width: 70px;
  right: 0;
  top: 65%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url(/img/common/ttl-deco-wave-r.png) no-repeat;
  background-size: contain;
}
.faq-list {
  gap: 30px;
}
.faq-item {
  width: 100%;
  padding: 30px 20px;
  background: var(--color-white);
}
.faq-term {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 10px;
}
.faq-term .en {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--color-white);
  background: var(--color-main-400);
  border-radius: 50%;
  width: 30px;
  padding: 4px 0px 6px;
  text-align: center;
  margin-right: 8px;
}
.faq-definition {
  width: 100%;
  background: var(--color-main-300);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 16px;
}
.faq-definition .en {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: var(--font-sub);
  font-size: 16px;
  line-height: 18px;
  color: var(--color-white);
  background: var(--color-accent-100);
  font-weight: var(--font-normal);
  border-radius: 50%;
  width: 24px;
  padding: 1px 0px 5px;
  text-align: center;
  margin-right: 8px;
}

/*==========================================
processing
===========================================*/
/*facilities ---------------------------------------------*/
.facilities {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/page01-sec01-bg.png) no-repeat center bottom/cover;
}
.facilities::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 467/394;
  width: 467px;
  left: -88px;
  bottom: 50px;
  background: url(/img/buyer/flow-deco-l.png) no-repeat;
  background-size: contain;
}
.facilities::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 219/98;
  width: 140px;
  right: -10px;
  top: 156px;
  background: url(/img/processing/facilities-deco-r.png) no-repeat;
  background-size: contain;
}
.facilities-ttl {
  margin-bottom: var(--ttl-mb-lg);
}
.facilities-ttl span {
  color: var(--color-main-200);
  display: inline-block;
  padding-top: 8px;
  position: relative;
  z-index: 1;
}
.facilities-ttl span::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 6/6;
  width: 4px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-accent-100);
  border-radius: 50%;
}
.facilities-ttl .drk {
  color: var(--color-main-100);
}
.facilities-lead {
  text-align: center;
  margin-bottom: 40px;
  text-align: left;
}
.facilities-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.facilities-item {
  width: 100%;
}
.facilities-img {
  aspect-ratio: 320/200;
  width: 100%;
  margin-bottom: 17px;
  position: relative;
  z-index: 1;
}
.facilities-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.facilities-txtarea {
  width: 100%;
}
.facilities-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: var(--font-bold);
  color: var(--color-main-100);
  border-bottom: 1px solid var(--color-txt-100);
  position: relative;
  z-index: 1;
  padding-left: 13px;
  padding-bottom: 4px;
}
.facilities-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 6/10;
  width: 5px;
  left: 0;
  top: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--color-accent-100);
}
.facilities-txt {
  letter-spacing: 0.08em;
  color: var(--color-txt-100);
  padding-top: 8px;
}

/*system ---------------------------------------------*/
.system {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/common/pat01.png);
}
.system-ttl {
  color: var(--color-white);
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.system-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0;
}
.system-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 116/33;
  width: 50px;
  left: 0;
  top: 65%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/ttl-deco-wave-l.png) no-repeat;
  background-size: contain;
}
.system-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 116/33;
  width: 50px;
  right: 0;
  top: 65%;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url(/img/common/ttl-deco-wave-r.png) no-repeat;
  background-size: contain;
}
.system-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.system-item {
  width: 100%;
  text-align: center;
}
.system-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 80px;
}
.system-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.system-txtarea {
  width: 100%;
  height: 100%;
  padding: 16px 10px 30px;
  background: var(--color-white);
  position: relative;
}
.system-txtarea::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: -1;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  background: var(--color-white);
}
.system-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
.system-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 92%;
  height: 1px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-txt-100);
}
.system-txt {
  color: var(--color-txt-100);
  letter-spacing: 0.04em;
  padding-top: 16px;
}
.system-txt p {
  display: inline;
}

/*safety ---------------------------------------------*/
.safety {
  padding: var(--cmn-pd-sm) 0;
  background: url(/img/common/pat02.png);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.safety::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 348/224;
  width: 100px;
  left: -30px;
  bottom: 10px;
  background: url(/img/top/top-news-deco-l.png) no-repeat;
  background-size: contain;
}
.safety::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 391/211;
  width: 110px;
  right: -30px;
  top: 80px;
  background: url(/img/top/top-news-deco-r.png) no-repeat;
  background-size: contain;
}
.safety-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.safety-list {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.safety-item {
  width: 100%;
  font-family: var(--font-sub);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: var(--font-normal);
  color: var(--color-txt-100);
  padding: 8px 0;
  border-bottom: 1px solid var(--color-txt-100);
}
.safety-item .check {
  display: inline-block;
  padding-left: 26px;
  position: relative;
  z-index: 1;
}
.safety-item .check::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 18/18;
  width: 16px;
  left: 0;
  top: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/check-bg-main.png) no-repeat;
  background-size: contain;
}
.safety-txtarea {
  width: 100%;
}
.safety-subttl {
  width: 100%;
  color: var(--color-main-100);
  padding-bottom: 20px;
}
.safety-txt {
  padding-top: 22px;
  margin-bottom: 22px;
}
.safety-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.safety-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*sub-flow ---------------------------------------------*/
.sub-flow {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/processing/sub-flow-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.sub-flow-ttl {
  margin-bottom: var(--ttl-mb-lg);
}
.sub-flow-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.sub-flow-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 98/46;
  width: 58px;
  left: -20px;
  top: 24px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: url(/img/top/top-company-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.sub-flow-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 134/46;
  width: 84px;
  right: -2px;
  top: -12px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: url(/img/top/top-company-ttl-deco-r.png) no-repeat;
  background-size: contain;
}
.sub-flow-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 60px;
}
.sub-flow-item {
  width: 100%;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sub-flow-txtarea {
  width: 100%;
}
.sub-flow-subttl {
  width: 100%;
  color: var(--color-white);
  padding: 9.7px 8px;
  background: var(--color-main-100);
  position: relative;
  z-index: 1;
}
.sub-flow-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 129/59;
  width: 60px;
  right: 0px;
  bottom: -17px;
  background: url(/img/processing/sub-flow-subdeco.png) no-repeat;
  background-size: contain;
}
.sub-flow-subttl .num {
  display: inline-block;
  font-family: var(--font-sub);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: var(--font-normal);
  color: var(--color-white);
  text-transform: uppercase;
  padding: 5px 8px;
  background: var(--color-accent-100);
  margin-right: 4px;
  text-align: center;
}
.sub-flow-subttl .num .lg {
  font-size: 18px;
  letter-spacing: -0.14em;
}
.sub-flow-txt {
  line-height: 30px;
  color: var(--color-txt-100);
  padding-top: 13px;
}
.sub-flow-img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sub-flow-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================================
news
===========================================*/
/*news ---------------------------------------------*/
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*detail ---------------------------------------------*/
.detail .meta {
  margin-bottom: 40px;
}
.detail .date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 12px;
  gap: 7px;
}
.detail .tag {
  padding: 4px 7px;
  text-align: center;
  background: var(--color-accent-100);
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/common/page01-sec01-bg.png) repeat center bottom/cover;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  margin-bottom: var(--ttl-mb-lg);
}
.form-ttl .ttl-deco,
.complete-ttl .ttl-deco,
.notfound-ttl .ttl-deco,
.privacy-ttl .ttl-deco,
.site-map-ttl .ttl-deco,
.news-ttl .ttl-deco {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.form-ttl .ttl-deco::before,
.complete-ttl .ttl-deco::before,
.notfound-ttl .ttl-deco::before,
.privacy-ttl .ttl-deco::before,
.site-map-ttl .ttl-deco::before,
.news-ttl .ttl-deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 98/46;
  width: 58px;
  left: -12px;
  top: 24px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background: url(/img/top/top-company-ttl-deco-l.png) no-repeat;
  background-size: contain;
}
.form-ttl .ttl-deco::after,
.complete-ttl .ttl-deco::after,
.notfound-ttl .ttl-deco::after,
.privacy-ttl .ttl-deco::after,
.site-map-ttl .ttl-deco::after,
.news-ttl .ttl-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 134/46;
  width: 84px;
  right: -2px;
  top: -15px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: url(/img/top/top-company-ttl-deco-r.png) no-repeat;
  background-size: contain;
}

#contact {
  --color-contact-required-mark-bg: var(--color-accent-100);
  --color-contact-th-bg: var(--color-main-100);
  --color-contact-th-txt: var(--color-white);
}

.tag-change {
  --color-tag-change-current-bg: var(--color-accent-100);
}

.detail {
  --color-news-detail: var(--color-txt-100);
}

.page-btn {
  --color-page-btn-border: var(--color-main-200);
}

/*==========================================
drawer
===========================================*/
.drawer {
  z-index: 100;
}
.drawer #nav {
  margin-bottom: 40px;
  z-index: 1000;
}
.drawer .tel-wrapper {
  width: 100%;
  max-width: 280px;
  padding: 20px 10px;
  background: var(--color-white);
  gap: 20px;
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.drawer .tel-area .tel {
  margin-bottom: 5px;
}
.drawer .tel-area .tel-svg {
  display: block;
  width: 190px;
}
.drawer-schedule {
  line-height: 1;
  gap: 10px;
  -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: start;
  margin-bottom: 30px;
}
.drawer-schedule .bg {
  display: inline-block;
  font-size: 15px;
  color: var(--color-accent-100);
  padding: 1.5px 4px 3.5px;
  background: var(--color-white);
  text-align: center;
  margin-right: 8px;
}