/* === Foundation === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", "Kozuka Gothic Pro", "Yu Gothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  font-weight: 500;
  font-style: normal;
  height: 100%;
  color: #595757;
  -webkit-font-feature-settings: "lnum";
          font-feature-settings: "lnum";
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

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

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

main {
  margin-bottom: 8rem;
}

/* === Layout === */
.l-inner {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.l-header {
  background-color: #fff;
  padding: 1rem 2rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 992px) {
  .l-header {
    position: relative;
  }
  .l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.l-header.is-animated {
  -webkit-animation: slideDown 0.8s ease forwards;
          animation: slideDown 0.8s ease forwards;
  opacity: 0.75;
}
@-webkit-keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.85;
  }
}
@keyframes slideDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0.85;
  }
}
.l-header .l-header__inner {
  margin: 0 auto;
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 992px) {
  .l-header .l-header__inner {
    max-width: 1100px;
  }
}

.p-logo {
  width: 20rem;
}
.p-logo img {
  height: 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-logo img {
    height: 4rem;
  }
}

.p-hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  z-index: 110;
}
@media screen and (min-width: 992px) {
  .p-hamburger {
    display: none;
  }
}
.p-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-hamburger span:nth-child(1) {
  top: 0;
}
.p-hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-hamburger span:nth-child(3) {
  bottom: 0;
}
.p-hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.p-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.p-hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 50%;
}

.c-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 90;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-overlay.is-open {
  display: block;
  opacity: 1;
}

.l-footer {
  background-color: #727171;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
}
.l-footer .l-footer__nav {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer__nav > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
}
.l-footer .l-footer__nav > ul > li {
  min-width: 120px;
  text-align: left;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
.l-footer .l-footer__nav > ul > li ul li {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer .l-footer__nav > ul > li ul li {
    margin-top: 1rem;
  }
}
.l-footer .l-footer__logo {
  margin-bottom: 2rem;
}
.l-footer .l-footer__logo img {
  max-width: 160px;
  height: auto;
}
.l-footer .c-copyright {
  font-size: 1.3rem;
}

.contact-banner {
  padding: 2rem 1rem;
  text-align: center;
}
.contact-banner .tel-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  text-decoration: none;
}
.contact-banner .tel-link img {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.5rem;
}
.contact-banner .hours {
  margin-top: 0.2rem;
}

.l-product-section {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 768px) {
  .l-product-section {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-product-section {
    margin: 12rem auto;
  }
}

/* === Object === */
.fx {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.fx.is-show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

/* Component */
.c-heading {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin: 3rem 0 2rem;
  color: #626C83;
}
@media screen and (min-width: 768px) {
  .c-heading {
    font-size: 4rem;
  }
}

.c-heading--section {
  background: #626C83;
  color: #fff;
  font-weight: 900;
  font-size: 1.6rem;
  text-align: center;
  margin: 5rem auto;
  text-align: center;
  padding: 0.6rem 0;
}
@media screen and (min-width: 768px) {
  .c-heading--section {
    width: 950px;
    font-size: 2.6rem;
  }
}

.c-heading--block {
  font-weight: 700;
  font-size: 2.4rem;
  color: #626C83;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-heading--block {
    font-size: 4rem;
    line-height: 1.6;
  }
  .c-heading--block.is-small {
    font-size: 3.2rem;
  }
}
.c-heading--block .c-heading--sub {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-heading--block .c-heading--sub {
    font-size: 2.2rem;
  }
}
.c-heading--block .c-heading--strong {
  font-size: 4rem;
}

.is-blue .c-heading--block {
  color: #1D96D5;
}
.is-blue .c-heading--section {
  background-color: #1D96D5;
}

.is-green .c-heading--block, .is-green.c-heading--block {
  color: #88BA29;
}
.is-green .c-heading--section {
  background-color: #88BA29;
}

.c-button {
  display: inline-block;
  background-color: #595757;
  font-weight: 700;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 0.9rem 0;
  font-size: 1.8rem;
  border-radius: 60rem;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-button {
    padding: 1rem 0;
    font-size: 2rem;
    max-width: 80rem;
    margin: auto;
  }
}
.c-button:hover {
  opacity: 0.85;
}
.c-button--accent {
  background-color: #FFF799;
  color: #000;
}
.c-button--accent:hover {
  background-color: #fff470;
}
.c-button--contact {
  background-color: #A48B78;
}
.c-button--contact:hover {
  background-color: #917662;
}
.c-button--secondary {
  background-color: #626C83;
}
.c-button--outline {
  background: transparent;
  color: #595757;
  border: 1px solid #595757;
}
.c-button--nav {
  padding: 0.6rem 1.2rem !important;
  border-radius: 40px;
  background-color: #595757;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  text-align: center;
  font-size: 1.5rem;
}
.c-button--nav.c-button--nav {
  color: #fff;
  padding: 1rem 5.2rem !important;
}

.c-link-button {
  display: inline-block;
  background-color: #626C83;
  color: #fff;
  text-align: center;
  padding: 0.6rem 2rem;
  font-size: 2rem;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  max-width: 25rem;
  margin: auto;
}
.c-link-button:hover {
  opacity: 0.85;
}

.c-button--download {
  background-color: #f9eb66;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 700;
}

.c-link-anchor {
  text-decoration: underline;
}

.c-lead {
  text-align: center;
  font-size: 1.8rem;
  color: #595757;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-lead {
    font-size: 4rem;
  }
}

.c-link-with-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1D96D5;
  text-decoration: none;
  position: relative;
  padding-left: 1em;
}
.c-link-with-icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.c-link-with-icon:hover {
  text-decoration: underline;
}

.c-product-row {
  margin: 0 auto 5rem;
}
@media screen and (min-width: 768px) {
  .c-product-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3rem;
    max-width: 800px;
  }
}
.c-product-row .c-product-row__img {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .c-product-row .c-product-row__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 280px;
  }
  .c-product-row .c-product-row__img.is-md {
    max-width: 330px;
  }
}
.c-product-row .c-product-row__img img {
  width: 100%;
  height: auto;
  display: block;
}
.c-product-row .c-product-row__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-product-row .c-product-row__body .c-heading--block {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-product-row .c-product-row__body .c-heading--block {
    text-align: left;
  }
}
.c-product-row .c-product-row__body p {
  text-align: left;
  margin-bottom: 2rem;
}
.c-product-row:last-of-type {
  margin-bottom: 0;
}

.c-product-row.is-float {
  display: block;
}
.c-product-row.is-float .c-product-row__img {
  float: left;
  width: 40%;
  max-width: 280px;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.c-product-row.is-float .c-product-row__img img {
  width: 100%;
  height: auto;
  display: block;
}
.c-product-row.is-float .c-product-row__body .c-heading--block {
  text-align: left;
  margin-top: 0;
}
.c-product-row.is-float .c-product-row__body p {
  margin-bottom: 1.5rem;
}
.c-product-row.is-float::after {
  content: "";
  display: table;
  clear: both;
}

.c-product-image-row {
  max-width: 950px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-product-image-row img {
  width: 100%;
  height: auto;
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .c-product-image-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3rem;
  }
  .c-product-image-row img {
    width: 100%;
    max-width: 280px;
  }
}

.c-product-text-block {
  max-width: 800px;
  margin: 0 auto 4rem;
}
.c-product-text-block .c-heading--block {
  margin: 3.5rem 0;
}
.c-product-text-block p {
  text-align: left;
  margin-bottom: 2rem;
}
.c-product-text-block .c-product-text__emphasis {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-product-text-block .c-product-text__emphasis {
    font-size: 1.8rem;
  }
}

.c-product-video {
  width: 100%;
  text-align: center;
}
.c-product-video .wp-block-embed {
  max-width: 100% !important;
  width: 100% !important;
}
.c-product-video .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.c-product-video .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-product-video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.c-product-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-product-note {
  border: 1px solid #999;
  padding: 2rem;
  margin-top: 5rem;
}
.c-product-note .c-product-note__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-product-note {
    padding: 3rem;
  }
  .c-product-note .c-product-note__title {
    font-size: 1.8rem;
  }
}

.c-product-download {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}
@media screen and (min-width: 768px) {
  .c-product-download {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

/* Project */
.p-page-heading {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-page-heading {
    margin-bottom: 8rem;
  }
}

.p-access-message {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.p-access-message .c-text {
  font-size: 1.4rem;
  line-height: 1.8;
}

.p-access-image {
  margin: 2rem 0 1rem;
}

.p-access-note {
  font-size: 1.1rem;
  text-align: center;
}

.p-access-map {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-access-map {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
.p-access-map .p-access-map__address {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  margin-bottom: 2rem;
}
.p-access-map .p-access-map__address img {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-access-map .p-access-map__address {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 2rem;
  }
  .p-access-map .p-access-map__address br {
    display: none;
  }
  .p-access-map .p-access-map__address img {
    display: inline-block;
    width: 2.8rem;
    height: auto;
  }
}
.p-access-map .p-access-map__icon {
  margin-bottom: 2.4rem;
}
.p-access-map .p-access-map__icon a img {
  width: 15rem;
  height: auto;
}
.p-access-map .p-access-map__tel-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
  margin-top: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-access-map .p-access-map__tel-group {
    gap: 1.6rem;
  }
}
.p-access-map .p-access-map__tel,
.p-access-map .p-access-map__fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.p-access-map .p-access-map__tel img,
.p-access-map .p-access-map__fax img {
  width: 4.2rem;
  height: auto;
}
.p-access-map .p-access-map__tel a,
.p-access-map .p-access-map__tel span,
.p-access-map .p-access-map__fax a,
.p-access-map .p-access-map__fax span {
  font-size: 4rem;
  font-weight: 900;
}
.p-access-map .p-access-map__hours {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.p-company-lead {
  text-align: center;
  margin-bottom: 3rem;
}
.p-company-lead .c-heading {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-company-lead .c-heading {
    font-size: 1.8rem;
  }
}

.p-company-message {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 768px) {
  .p-company-message {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
.p-company-message .c-text {
  margin-bottom: 1.5rem;
}

.p-company-ceo {
  text-align: center;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 768px) {
  .p-company-ceo {
    max-width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 3rem;
  }
}
.p-company-ceo__image {
  margin-bottom: 1rem;
}
.p-company-ceo__image img {
  max-width: 300px;
  height: auto;
}
.p-company-ceo__intro p {
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-ceo__intro p {
    text-align: left;
  }
}

.p-company-info {
  margin: 0 auto;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-company-info {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
.p-company-info__table {
  margin-top: 2rem;
}
.p-company-info__table table {
  max-width: 600px;
  width: 100%;
  margin: auto;
  border-collapse: collapse;
  border-top: 1px solid #595757;
}
.p-company-info__table table th {
  width: 20%;
  padding: 1.5rem;
  background-color: #DCDDDD;
  border-bottom: 1px solid #595757;
  text-align: left;
  vertical-align: top;
}
.p-company-info__table table td {
  padding: 1.5rem;
  border-bottom: 1px solid #595757;
  vertical-align: top;
}

.p-contact-banner {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  max-width: 800px;
  margin: 6rem auto 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-banner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-banner {
    margin: 10rem auto 3rem;
  }
}
.p-contact-banner .p-contact-banner__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #a98e6f;
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 10rem;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__button {
    font-size: 4rem;
  }
}
.p-contact-banner .p-contact-banner__button img {
  width: 3rem;
  margin-right: 1rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__button img {
    width: 6rem;
  }
}
.p-contact-banner .p-contact-banner__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  color: #727171;
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__tel {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 6rem;
  }
}
.p-contact-banner .p-contact-banner__tel .p-contact-banner__tel-icon img {
  width: 10rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__tel .p-contact-banner__tel-icon img {
    width: 14rem;
  }
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__tel .p-contact-banner__tel-info {
    text-align: left;
  }
}
.p-contact-banner .p-contact-banner__tel .p-contact-banner__tel-info .tel-link {
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.3rem;
  font-size: 4.5rem;
  text-wrap: nowrap;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__tel .p-contact-banner__tel-info .tel-link {
    font-size: 8rem;
    margin-bottom: 0;
  }
}
.p-contact-banner .p-contact-banner__tel .p-contact-banner__tel-info .hours {
  font-size: 1.6rem;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__tel .p-contact-banner__tel-info .hours {
    font-size: 2.9rem;
  }
}
.p-contact-banner .p-contact-banner__tel-icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-contact-banner .p-contact-banner__tel-icon {
    display: block;
  }
}

.p-contact-banner__spphone {
  margin: 4rem auto 0;
}
.p-contact-banner__spphone img {
  width: 15rem;
}

.p-contact-intro {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-contact-intro {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.p-contact-form {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 7rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-contact-form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.p-contact-form__row {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

.p-contact-form__label {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contact-form__label {
    width: 20rem;
  }
}

.p-contact-form__required {
  font-size: 1.1rem;
  color: #fff;
  padding: 0.3rem 0.7rem;
  min-width: 10rem;
  background: #626C83;
  border-radius: 60px;
  margin-left: 1rem;
}

.p-contact-form__input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-contact-form__input input,
.p-contact-form__input textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ccc;
}
.p-contact-form__input textarea {
  resize: vertical;
  min-height: 160px;
}

.p-contact-form__note {
  margin: 5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-contact-form__note {
    text-align: center;
  }
}

.p-contact-form__agree {
  margin: 3rem auto 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__agree {
    text-align: center;
  }
}

.p-contact-form__submit {
  margin: 10rem auto;
}
@media screen and (min-width: 768px) {
  .p-contact-form__submit {
    width: 30rem;
  }
}

.p-page-contact .p-contact-banner .p-contact-banner__button {
  display: none;
}

.p-contact-form__agree {
  font-size: 1.6rem;
  line-height: 1.6;
}
.p-contact-form__agree label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.p-contact-form__agree input[type=checkbox] {
  width: 2.2rem;
  height: 2.2rem;
  accent-color: #0070c0;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-contact-form__agree .wpcf7-list-item-label {
  cursor: pointer;
  display: inline-block;
}

.p-confirm-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-confirm-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4rem;
    max-width: 500px;
    margin: 4rem auto 0;
  }
}
.p-confirm-buttons .c-button {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
}

.wpcf7 input[type=submit] {
  display: none;
}

.is-error {
  border: 1px solid red !important;
  background-color: #fff8f8;
}

.error-msg {
  color: red;
  font-size: 1.2rem;
  margin-top: 0.3em;
}

.grecaptcha-badge {
  bottom: 10px;
  right: 10px;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  opacity: 0.6;
}

.p-global-nav {
  display: block;
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  background: #F6F4F2;
  padding: 4rem 2rem 8rem;
  z-index: 100;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: 100vh;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .p-global-nav {
    top: -500%;
  }
}
@media screen and (min-width: 992px) {
  .p-global-nav {
    position: relative;
    top: 0;
    background: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: auto;
    overflow: visible;
    height: auto;
  }
}
.p-global-nav.is-open {
  top: 0;
}
.p-global-nav .p-global-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .p-global-nav .p-global-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.5rem;
    padding-left: 0;
    margin: 0;
  }
}
.p-global-nav .p-global-nav__item {
  position: relative;
}
.p-global-nav .p-global-nav__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: currentColor;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-global-nav .p-global-nav__item:hover::after {
  width: 100%;
}
.p-global-nav .p-global-nav__item:last-child a {
  border-bottom: 1px solid #595757;
}
@media screen and (min-width: 992px) {
  .p-global-nav .p-global-nav__item:last-child a {
    border: none;
  }
}
.p-global-nav .p-global-nav__item a {
  border-bottom: 1px solid #595757;
  text-decoration: none;
  display: block;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .p-global-nav .p-global-nav__item a {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-global-nav .p-global-nav__item.p-global-nav__item--cta {
  margin: 8rem auto 0;
  max-width: 25rem;
}
.p-global-nav .p-global-nav__item.p-global-nav__item--cta::after {
  height: 0;
}
@media screen and (min-width: 992px) {
  .p-global-nav .p-global-nav__item.p-global-nav__item--cta {
    margin: 0;
  }
}
.p-global-nav .p-global-nav__sub {
  margin: 0;
}
@media screen and (min-width: 992px) {
  .p-global-nav .p-global-nav__sub {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #F6F4F2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem 2rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s, -webkit-transform 0.3s ease;
  }
}
.p-global-nav .p-global-nav__sub li a {
  display: block;
  padding: 2rem 5rem 2rem 2rem;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.p-global-nav .p-global-nav__sub li a::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../../assets/img/nav-icon.png") no-repeat center center;
  background-size: contain;
  margin-right: 0.8rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (min-width: 992px) {
  .p-global-nav__item.is-open .p-global-nav__sub {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

.p-main-visual__slider {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-main-visual__slider {
    width: 100%;
    max-width: 1200px;
    max-height: 534px;
    overflow: hidden;
    margin: 3rem auto 0;
  }
}
.p-main-visual__slider .swiper-slide img {
  width: 100%;
  display: block;
  height: auto;
}
.p-main-visual__slider .swiper-pagination-bullet-active {
  background-color: #595757;
}

.p-main-visual__pagination {
  margin-top: 2rem;
  text-align: center;
}

.p-main-visual {
  position: relative;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-main-visual {
    padding-bottom: 8rem;
  }
}
.p-main-visual .swiper-pagination {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}

.p-message {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-message {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-message {
    margin: 10 auto 8rem;
  }
}
.p-message .c-lead {
  margin-bottom: 3rem;
}

.p-product-benefit {
  max-width: 950px;
  margin: 0 auto 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2rem;
}
.p-product-benefit__image, .p-product-benefit__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-product-benefit__image img {
  width: 100%;
  height: auto;
}
.p-news {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-news {
    text-align: center;
    margin: 10rem auto 0;
  }
}
.p-news .p-news__inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border: 1px solid #595757;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-news .p-news__inner {
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-news .p-news__inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-news .p-news__heading {
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  text-align: center;
}
.p-news ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-news ul {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.p-news ul li {
  margin-bottom: 2rem;
}
.p-news ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-news ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 2rem;
    margin-bottom: 0.75rem;
  }
}
.p-news ul li span {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-news ul li span {
    display: inline-block;
  }
}
.p-news ul li .p-news__date {
  min-width: 100px;
}
.p-news ul li .p-news__text {
  text-align: left;
}

.p-news-message {
  max-width: 800px;
  margin: 2rem auto;
}
.p-news-list {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 10rem auto;
}
@media screen and (min-width: 768px) {
  .p-news-list {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
.p-news-list ul {
  list-style: none;
  padding: 0;
}
.p-news-list ul li {
  border-bottom: 1px solid #595757;
  padding: 2rem 0;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-news-list ul li:first-child {
  border-top: 1px solid #595757;
}
.p-news-list ul li .p-news-date {
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.p-news-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}
.p-news-pagination a {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  color: #595757;
  text-decoration: none;
}
.p-news-pagination a.current {
  background-color: #595757;
  color: #fff;
  border-color: #595757;
}

.p-news-detail {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  margin: 0 auto;
  padding-top: 5rem;
  border-top: 1px solid #595757;
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-news-detail {
    padding-top: 3rem;
  }
}
.p-news-detail .c-text {
  padding-top: 5rem;
}

.p-news-schedule {
  list-style: none;
}
.p-news-schedule li {
  margin-bottom: 0.5rem;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.p-news-back {
  margin: 10rem auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news-back {
    width: 600px;
    margin: 20rem auto 0;
  }
}

.p-privacy {
  max-width: 900px;
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}
.p-privacy .p-privacy-date {
  text-align: right;
  margin-top: 5rem;
}
.p-privacy h3 {
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 0.5rem;
}
.p-privacy p {
  margin-bottom: 1.5rem;
}

.p-product-hero {
  margin: 0 auto 4rem;
  text-align: center;
}
.p-product-hero .p-product-hero__title img {
  max-width: 100%;
  height: auto;
}
.p-product-hero .p-product-hero__lead {
  font-weight: 700;
  margin: 4rem auto 3rem;
  color: #626C83;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .p-product-hero .p-product-hero__lead {
    font-size: 4rem;
  }
}
.p-product-hero .p-product-hero__lead img {
  max-width: 25rem;
  margin: auto;
}
.p-product-hero .p-product-hero__emphasis {
  font-size: 2.4rem;
}
.p-product-hero .p-product-hero__text {
  text-align: left;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-product-hero .p-product-hero__text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}

.p-product-feature__note {
  text-align: center;
}

.p-product-feature__kincho {
  color: #c62828;
}
.p-product-feature__kincho img {
  height: 2.8em;
  display: block;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-product-feature__kincho {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5rem;
    font-weight: 700;
  }
  .p-product-feature__kincho img {
    height: 2.8em;
  }
  .p-product-feature__kincho span {
    font-size: 2.2rem;
  }
}

.p-product-server-list {
  margin: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-product-server-list {
    margin: 8rem 0;
  }
}

.p-product-photo {
  margin: 4rem auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-product-photo {
    margin: 10rem 0 0;
  }
}
.p-product-photo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.p-product-scene {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem;
  background: #FFFEEE;
  padding: 4rem 2rem;
}
.p-product-scene .p-product-scene__item {
  overflow: hidden;
  margin-top: 7rem;
}
.p-product-scene .p-product-scene__item:after {
  content: "";
  display: table;
  clear: both;
}
.p-product-scene .p-product-scene__item:first-child {
  margin-top: 0;
}
.p-product-scene .p-product-scene__item .p-product-scene__img {
  float: left;
  width: 80px;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}
.p-product-scene .p-product-scene__item .p-product-scene__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-product-scene .p-product-scene__item.is-reverse .p-product-scene__img {
  float: right;
  margin-left: 1.5rem;
  margin-right: 0;
}
.p-product-scene .p-product-scene__label {
  font-size: 1.2rem;
  color: #1D96D5;
  margin-bottom: 0.3rem;
}
.p-product-scene .p-product-scene__ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1D96D5;
  margin-bottom: 0.8rem;
}
.p-product-scene .p-product-scene__text p {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-product-scene {
    padding: 4rem;
    gap: 2rem;
  }
  .p-product-scene .p-product-scene__img {
    width: 120px;
    margin-right: 2rem;
  }
  .p-product-scene.is-reverse .p-product-scene__img {
    margin-left: 2rem;
    margin-right: 0;
  }
  .p-product-scene .p-product-scene__label {
    font-size: 1.6rem;
  }
  .p-product-scene .p-product-scene__ttl {
    font-size: 2rem;
  }
}

.p-product-virus .p-product-virus__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}
.p-product-virus .p-product-virus__images img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-product-virus .p-product-virus__images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
  .p-product-virus .p-product-virus__images img {
    max-width: 240px;
  }
}

.product-feature__note {
  text-align: center;
}

/* object/project/_product-list.scss */
.p-product-list .p-product-list__items_wrap {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-list__items_wrap {
    margin-top: 12rem;
  }
  .p-product-list .p-product-list__items_wrap:nth-of-type(odd) .p-product-list__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-product-list .p-product-list__items_wrap .p-product-list__items {
    max-width: 1100px;
    margin: 0 auto 5rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-product-list .p-product-list__items_wrap .p-product-list__items {
    margin: 0 auto 10rem;
  }
}
.p-product-list .p-product-list__items_wrap.is-gray {
  background-color: #F6F4F2;
  padding: 5rem 0;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-list__items_wrap.is-gray {
    padding: 10rem 0;
  }
}
.p-product-list .p-product-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-list__items {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-list__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 5%;
  }
}
.p-product-list .p-product-item__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-item__image {
    width: 45%;
  }
}
.p-product-list .p-product-item__image img {
  width: 100%;
  height: auto;
  display: block;
}
.p-product-list .p-product-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-item {
    width: 50%;
  }
}
.p-product-list .p-product-item__body {
  text-align: left;
}
.p-product-list .p-product-item__logo {
  margin-bottom: 1rem;
}
.p-product-list .p-product-item__logo img {
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-item__logo img {
    max-width: 44rem;
  }
}
.p-product-list .p-product-item__title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-item__title {
    font-size: 4rem;
    margin: 3rem 0;
  }
}
.p-product-list .p-product-item__text {
  margin-bottom: 4rem;
}
.p-product-list .p-product-item__button {
  text-align: center;
  margin-top: 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-product-list .p-product-item__button {
    max-width: 45rem;
  }
}

.p-product-download {
  margin: 4rem auto 0;
  text-align: center;
}

/* Utility */
.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-sm {
  margin-bottom: 0.5rem !important;
}

.u-mb-md {
  margin-bottom: 1rem !important;
}

.u-mb-lg, .p-news-detail .c-text, .p-news-schedule {
  margin-bottom: 2rem !important;
}

.u-pt-sm {
  padding-top: 0.5rem !important;
}

.u-pt-md {
  padding-top: 1rem !important;
}

.u-pt-lg {
  padding-top: 2rem !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-primary {
  color: #595757 !important;
}

.u-fs-sm {
  font-size: 1.2rem !important;
}

.u-fs-md {
  font-size: 1.5rem !important;
}

.u-fs-lg {
  font-size: 2rem !important;
}

.u-text-red {
  color: #d32f2f;
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

.u-only-pc {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .u-only-pc {
    display: block !important;
  }
}

.has-primary-color {
  color: #595757;
}

.has-primary-background-color {
  background-color: #595757;
}

.has-primary-border-color {
  border-color: #595757;
}

.has-secondary-color {
  color: #626C83;
}

.has-secondary-background-color {
  background-color: #626C83;
}

.has-secondary-border-color {
  border-color: #626C83;
}

.has-dark-bg-color {
  color: #727171;
}

.has-dark-bg-background-color {
  background-color: #727171;
}

.has-dark-bg-border-color {
  border-color: #727171;
}

.has-light-bg-color {
  color: #F6F4F2;
}

.has-light-bg-background-color {
  background-color: #F6F4F2;
}

.has-light-bg-border-color {
  border-color: #F6F4F2;
}

.has-blue-color {
  color: #1D96D5;
}

.has-blue-background-color {
  background-color: #1D96D5;
}

.has-blue-border-color {
  border-color: #1D96D5;
}

.has-green-color {
  color: #88BA29;
}

.has-green-background-color {
  background-color: #88BA29;
}

.has-green-border-color {
  border-color: #88BA29;
}

.has-small-font-size {
  font-size: 1.2rem;
}

.has-base-font-size {
  font-size: 1.4rem;
}

.has-medium-font-size {
  font-size: 1.6rem;
}

.has-large-font-size {
  font-size: 2rem;
}/*# sourceMappingURL=styles.css.map */