<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name: TAKAYA FA
Theme URI: https://takaya.co.jp/fa/
Author: TAKAYA ISYS
Description: 逕｣讌ｭ讖溷勣莠区･ｭ驛ｨ繧ｵ繧､繝医ユ繝ｼ繝�
Version: 1.0
*/

html {
 font-family: sans-serif;
 -ms-text-size-adjust: 100%;
 -webkit-text-size-adjust: 100%;
 overflow: auto;
 scroll-behavior: smooth;
}

body {
 font-family: 'YuGothic', 'Yu Gothic','貂ｸ繧ｴ繧ｷ繝�け','繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3','Hiragino Kaku Gothic Pro','繝｡繧､繝ｪ繧ｪ','Meiryo',sans-serif;
}

a, a:visited {
 color: rgb(26, 155, 232);
}

figure {
 margin: 0;
}

img {
  height: auto;
}

/* table */
.normal table {
  width: 100%;
  min-width: 500px;
  margin-bottom: 40px;
  border-collapse: separate;
  table-layout: fixed;
  border-spacing: 0 4px;
}

.normal table tr {
  background-color: rgb(246 248 247);
}

.normal table tr:nth-child(even) {
  background-color: rgb(251, 251, 251);
}

.normal table th,
.normal table td {
  padding: 20px;
  border: none;
  line-height: 1.5em;
}

.normal table th:first-child {
  width: 34%;
  border: none;
  border-right: 40px solid rgb(255, 255, 255);
  background-color: rgb(0, 153, 91);
  border-radius: 5px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  box-sizing: border-box;
}

.simple table {
  width: auto;
  border-collapse:collapse;
}

.simple table th {
  background-color: initial;
}

.simple table th, .simple table td {
  padding: 13px;
  border: 1px solid rgb(221, 221, 221);
}

/* img width 100% */
.width-100pct img {
  width: 100%;
}

/* category color */
.cat-product-news {
  background-color: rgba(58, 149, 32, 1);
}

.cat-event {
  background-color: rgba(255, 154, 59, 1);
}

.cat-commend {
  background-color: rgba(90, 85, 175, 1);
}

.cat-other {
  background-color: rgba(27, 226, 191, 1);
}

/* fade-in */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transform: translate(0, 100px);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* loader */
#loader {
  z-index: 5000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100%;
  height: 100vh;
  background: rgb(255, 255, 255);
  display: block;
  opacity: 1;
  transition: 1s;
}

#loader .loader-icon {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 48px;
  margin: auto;
  border-radius: 50%;
  font-size: 50%;
  text-indent: -9999em;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top: 3px solid rgb(0, 0, 0);
  -webkit-animation: loading-circle 1.1s infinite linear;
  animation: loading-circle 1.1s infinite linear;
}

@keyframes loading-circle{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

/* breadcrumb */
.w-breadcrumb ol {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.w-breadcrumb ol li {
  margin-right: 2em;
  margin-bottom: 5px;
  font-size: 10px;
  position: relative;
}

.w-breadcrumb ol li:not(:last-child):before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 1px solid rgb(221, 221, 221);
  border-right: 1px solid rgb(221, 221, 221);
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(45deg);
}

.w-breadcrumb ol li a {
  display: inline-block;
  text-decoration: none;
  font-size: 10px;
}

@media (min-width: 429px) {
  .w-breadcrumb ol {
    margin: 0;
    margin-bottom: 60px;
  }

  .w-breadcrumb ol li {
    font-size: 12px;
  }

  .w-breadcrumb ol li a {
    font-size: 12px;
  }
}

/* header
------------------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  z-index: 1000;
}

.w-header {
  margin: 0 auto;
  padding: 12px 7% 9px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
}

.w-header .w-header-left {
  display: flex;
}

.w-header .w-header-right {
  margin-left: auto;
  display: flex;
}

.w-header .w-header-left .w-logo {
  width: 30%;
  min-width: 120px;
  max-width: 180px;
  margin-bottom: 0;
}

.w-header .w-header-left .w-logo img {
  width: 100%;
}

.w-header .w-header-left .w-nav-normal {
  margin-bottom: 8px;
}

.w-header .w-header-left .w-nav-normal nav ul {
  display: none;
  flex-wrap: nowrap;
  list-style: none;
  white-space: nowrap;
}

.w-header .w-header-left .w-nav-normal nav ul li a {
  padding: 10px 15px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 600;
  display: inline-block;
}

.w-header .w-header-left .w-nav-normal nav ul li a:hover {
  text-decoration: underline;
}

.w-header .w-header-right .w-searchform {
  margin-left: 30px;
  margin-right: 20px;
  display: none;
}

.w-header .w-header-right .w-searchform .search-form {
  display: flex;
}

.w-header .w-header-right .w-searchform .search-form .text-box {
  width: 150px;
  padding: 8px 4px;
  font-size: 14px;
}

.w-header .w-header-right .w-searchform .search-form .btn-search {
  width: 48px;
  height: 42px;
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
}

.w-header .w-header-right .w-top-buttons {
  display: none;
  align-items: baseline;
}

.w-header .w-header-right .w-top-buttons .w-search-box {
  display: none;
}

.w-header .w-header-right .w-top-buttons a {
  padding: 12px 11px 9px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  border-radius: 5px;
  margin-left: 10px;
}

.w-header .w-header-right .w-top-buttons .w-img img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-bottom: 3px;
}

.w-header .w-header-right .w-top-buttons .btn-contact {
  width: 84px;
  font-size: 13px;
  background-color: rgb(0, 153, 91);
}

.w-header .w-header-right .w-top-buttons .btn-english {
  width: 84px;
  color: rgb(0, 153, 91);
  font-weight: 600;
}

/* humbarger */
.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents {
  padding: 80px 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: -100%;
  left: 0;
  transition: .5s;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents nav ul.main-menu {
  margin-bottom: 30px;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents nav ul.main-menu li a {
  padding: 20px;
  display: inline-block;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 3px;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents nav ul.main-menu li a:hover {
  text-decoration: underline;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-buttons li a {
  width: 230px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 10px 30px;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 2px;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-buttons li.btn-contact a {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 153, 91);
  border: 3px solid rgb(0, 153, 91);
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-buttons li.btn-english a {
  color: rgb(0, 153, 91);
  border: 3px solid rgb(0, 153, 91);
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-buttons li a img {
  margin-left: auto;
  width: 25px;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-searchform li .search-form {
  display: flex;
  justify-content: center;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-searchform {
  margin-top: 30px;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-searchform li .search-form .text-box {
  width: 60%;
  max-width: 200px;
  padding: 8px 4px;
  font-size: 14px;
}

.w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-searchform li .search-form .btn-search {
  width: 48px;
  height: 42px;
  padding: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
}

.w-header .w-header-right .w-nav-hamburger .humbarger {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 3000;
}

.w-header .w-header-right .w-nav-hamburger .humbarger div {
  width: 25px;
  height: 2px;
  border-radius: 50px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  right: 8px;
  transition: .3s;
}

.w-header .w-header-right .w-nav-hamburger .humbarger .line-1 {
  top: 10px;
}

.w-header .w-header-right .w-nav-hamburger .humbarger .line-2 {
  top: 18px;
}

.w-header .w-header-right .w-nav-hamburger .humbarger .line-3 {
  top: 26px;
}

#humbarger {
  display: none;
}

#humbarger:checked + label {
  width: 50px;
  height: 50px;
}

#humbarger:checked + label div {
  top: 30px;
}

#humbarger:checked + label .line-1 {
  width: 40px;
  transform: rotate(-45deg);
}

#humbarger:checked + label .line-2 {
  background-color: transparent;
}

#humbarger:checked + label .line-3 {
  width: 40px;
  transform: rotate(45deg);
}

#humbarger:checked ~ .w-nav-hamburger-contents {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media (min-width: 429px) {
  .w-header .w-header-left .w-logo {
    width: 100%;
  }

  .w-header .w-header-right .w-nav-hamburger .w-nav-hamburger-contents ul.w-hamburger-buttons li a {
    padding: 10px 40px;
  }
}

@media (min-width: 641px) {
  .w-header {
    padding: 12px 12% 9px 7%;
  }

  .w-header .w-header-left .w-logo {
    margin-bottom: 8px;
  }

  .w-header .w-header-right .w-top-buttons {
    display: flex;
  }

  .w-header .w-header-right .w-nav-hamburger .humbarger {
    width: 50px;
    height: 50px;
    top: 19px;
    right: 20px;
  }

  .w-header .w-header-right .w-nav-hamburger .humbarger div {
    width: 30px;
    height: 3px;
    right: 10px;
  }

  .w-header .w-header-right .w-nav-hamburger .humbarger .line-1 {
    top: 15px;
  }

  .w-header .w-header-right .w-nav-hamburger .humbarger .line-2 {
    top: 25px;
  }

  .w-header .w-header-right .w-nav-hamburger .humbarger .line-3 {
    top: 35px;
  }
}

@media (min-width: 835px) {
  .w-header {
    padding: 12px 9% 9px 7%;
  }

  .w-header .w-header-right .w-searchform {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1640px) {
  .w-header .w-header-left .w-nav-normal nav ul {
    display: flex;
  }
}

@media (min-width: 1750px) {
  .w-header {
    padding: 12px 10% 10px;
  }
}

/* footer
------------------------------------------------------------------------*/
/* contact */
.w-contact {
  margin-bottom: 50px;
  width: 100%;
  height: 360px;
  position: relative;
}

.w-contact .w-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.w-contact .w-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-contact .w-text {
  margin: 0;
  padding: 35px;
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  border-radius: 5px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.w-contact .w-text::before {
  content: "";
  display: none;
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  border: 2px solid rgb(0, 153, 91);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.w-contact .w-text .title-en {
  margin: 0;
  margin-bottom: 4px;
  color: rgb(0, 153, 91);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 3px;
}

.w-contact .w-text .title {
  margin: 0;
  margin-bottom: 0;
  font-size: 14px;
  position: relative;
  letter-spacing: 1px;
}

.w-contact .w-text .text {
  margin-bottom: 20px;
  font-size: 0.8em;
  line-height: 1.3em;
  text-align: center;
}

.w-contact .w-text .text span {
  display: inline-block;
}

.w-contact .w-text .button {
  width: 100%;
  max-width: 400px;
  padding: 22px 15px;
  box-sizing: border-box;
  display: inline-block;
  text-align: center;
  position: relative;
  text-decoration: none;
}

.w-contact .w-text .button .button-text {
  background: linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  background: -webkit-linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.1em;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.5em;
}

.w-contact .w-text .button .button-text-normal {
  display: none;
}

.w-contact .w-text .button .button-text-min {
  display: block;
}

.w-contact .w-text .button .button-background {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.w-contact .w-text .button .button-background::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  background: -webkit-linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.w-contact .w-text .button .button-background::after {
  content: "";
  display: block;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 641px) {
  .w-contact {
    height: 500px;
  }

  .w-contact .w-text::before {
    display: block;
  }

  .w-contact .w-text .title-en {
    margin-bottom: 10px;
    font-size: 60px;
    letter-spacing: 6px;
  }

  .w-contact .w-text .title {
    margin-bottom: 25px;
    font-size: 20px;
  }

  .w-contact .w-text .text {
    margin-bottom: 35px;
    font-size: 1em;
  }

  .w-contact .w-text .button .button-text-normal {
    display: block;
  }

  .w-contact .w-text .button .button-text-min {
    display: none;
  }

  .w-contact .w-text .button .button-background::after {
    width: calc(100% - 6px);
    height: calc(100% - 6px);
  }
}

@media (min-width: 835px) {
  .w-contact .w-text {
    width: 80%
  }
}

footer .w-footer-main {
  padding: 30px 5%;
  background-color: rgb(245, 245, 245);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

footer .w-footer-main .w-company-info {
  margin-right: 0;
  margin-bottom: 27px;
  display: flex;
  flex-direction: column;
}

footer .w-footer-main .w-company-info .w-name {
  margin-bottom: 18px;
  padding: 0 10px;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.5em;
}

footer .w-footer-main .w-company-info .w-name span {
  display: inline-block;
}

footer .w-footer-main .w-company-info .w-text .address,
footer .w-footer-main .w-company-info .w-text .number {
  margin-bottom: 10px;
  padding: 0 10px;
  line-height: 1.4em;
  letter-spacing: 1px;
}

footer .w-footer-main .w-nav {
  padding-top: 40px;
  border-top: 1px solid rgb(221, 221, 221);
}

footer .w-footer-main .w-nav nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

footer .w-footer-main .w-nav nav ul.footer-menu,
footer .w-footer-main .w-nav nav ul.footer-company-menu {
  display: inline-block;
  vertical-align: top;
}

footer .w-footer-main .w-nav nav ul.footer-menu li a:not(ul.footer-menu li ul li a),
footer .w-footer-main .w-nav nav ul.footer-company-menu li a {
  margin-bottom: 4px;
  padding-left: 22px;
  position: relative;
}

footer .w-footer-main .w-nav nav ul.footer-menu li a:not(ul.footer-menu li ul li a)::before,
footer .w-footer-main .w-nav nav ul.footer-company-menu li a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid rgb(0, 153, 91);
  border-right: 2px solid rgb(0, 153, 91);
  transform: rotate(45deg);
  position: absolute;
  top: 9px;
  left: 6px;
}

footer .w-footer-main .w-nav nav ul.footer-menu &gt; li {
  margin-right: 15px;
  display: inline-block;
  vertical-align: top;
}

footer .w-footer-main .w-nav nav ul.footer-menu li ul li ul {
  margin-bottom: 5px;
  padding-left: 23px;
}

footer .w-footer-main .w-nav nav ul li a {
  padding: 5px 10px;
  display: block;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

footer .w-footer-main .w-nav nav ul.footer-menu li ul li ul li a {
  color: rgb(0, 0, 0);
  position: relative;
  font-size: 14px;
}

footer .w-footer-main .w-nav nav ul.footer-menu li ul li ul li a::before {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -4px;
  transform: translateY(-50%);
}

footer .w-footer-sub {
  padding: 10px 5%;
  padding-bottom: 140px;
  background-color: rgb(245, 245, 245);
  border-top: 1px solid rgb(221, 221, 221);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .w-footer-sub .w-left ul {
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}


footer .w-footer-sub .w-left ul li a {
  margin-right: 15px;
  padding-right:15px;
  border-right: 1px solid rgb(0, 0, 0);
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: rgb(0, 0, 0);
}

footer .w-footer-sub .w-left ul li:last-child a {
  border: none;
}

footer .w-footer-sub .w-right span {
  font-size: 14px;
  display: inline-block;
}

footer .w-footer-fixed {
  width: 100%;
  text-align: right;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

footer .w-footer-fixed .movie-bnr-pc {
  display: none;
  position: absolute;
  right: 0;
  bottom: 70px;
}

footer .w-footer-fixed .movie-bnr-pc a img {
  width: 288px;
  height: 120px;
  margin-bottom: 5px;
}

footer .w-footer-fixed .movie-bnr-sp {
  width: 100%;
  display: none;
  position: relative;
}

footer .w-footer-fixed .movie-bnr-sp img {
  width: 100%;
  height: 127px;
  object-fit: cover;
  vertical-align: bottom;
}

footer .w-footer-fixed .page-top {
  width: 50px;
  height: 50px;
  margin-bottom: 13px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(0, 153, 91);
  box-shadow: 0 0 20px rgb(221, 221, 221);
  position: relative;
  right: auto;
  bottom: auto;
  cursor : pointer;
}

footer .w-footer-fixed .page-top:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgb(0, 153, 91);
  border-right: 1px solid rgb(0, 153, 91);
  position: absolute;
  top: 21px;
  left: 19px;
  transform: rotate(-45deg);
}

@media (min-width: 330px) {
  footer .w-footer-fixed .movie-bnr-sp {
    display: block;
  }
}

@media (min-width: 641px) {
  footer .w-footer-main {
    padding: 50px;
    justify-content: center;
  }

  footer .w-footer-main .w-company-info {
    flex-direction: row;
  }
  footer .w-footer-main .w-company-info .w-text .address,
  footer .w-footer-main .w-company-info .w-text .number {
    letter-spacing: 3px;
  }

  footer .w-footer-sub {
    padding-bottom: 10px;
  }

  footer .w-footer-fixed .movie-bnr-pc {
    display: block;
  }

  footer .w-footer-fixed .movie-bnr-sp {
    display: none;
  }

  footer .w-footer-fixed .page-top {
    margin-bottom: 0;
    position: absolute;
    right: 15px;
    bottom: 15px;
  }
}

@media (min-width: 1367px) {
  footer .w-footer-main {
    flex-direction: row;
  }

  footer .w-footer-main .w-nav {
    padding: 0;
    border: none;
  }

  footer .w-footer-main .w-company-info {
    margin-right: 100px;
    flex-direction: column;
  }

  footer .w-footer-sub {
    padding: 10px 15%;
  }
}

/* 404
------------------------------------------------------------------------*/
.m-404 .w-main-contents {
  margin: 100px 5%;
  text-align: center;
  line-height: 1.7em;
}

.m-404 .w-main-contents h1 {
  font-size: 1.5em;
  color: rgb(0, 153, 91);
}

.m-404 .w-main-contents p {
  margin-bottom: 40px;
}

.m-404 .w-main-contents div a {
  display: inline-block;
  padding: 10px 30px;
  background-color: rgb(0, 153, 91);
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 5px;
}

@media (min-width: 429px) {
  .m-404 .w-main-contents {
    margin: 150px 8%;
  }

  .m-404 .w-main-contents h1 {
    font-size: 2em;
  }
}

@media (min-width: 1367px) {
  .m-404 .w-main-contents {
    margin: 200px 15%;
  }
}

/* top
------------------------------------------------------------------------*/
/* movie */
.m-i .w-top {
  width: 100%;
  height: calc(85vh - 50px);
  min-height: 600px;
  margin-top: 60px;
  margin-bottom: 7vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.m-i .w-top .w-video {
  width: 100%;
  height: 100%;
  position: absolute;
}

.m-i .w-top .w-video figure {
  height: 100%;;  
}

.m-i .w-top .w-video figure video {
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  z-index: -1;
  object-fit: cover;
  object-position: bottom;
  filter: brightness(0.6);
}

.m-i .w-top .w-top-message-box {
  width: 100%;
  height: 100%;
  padding: 20px 2%;
  display: flex;
  justify-content: center;
  align-items: end;
  box-sizing: border-box;
}

.m-i .w-top .w-top-message-box .w-img-pc {
  display: none;
}

.m-i .w-top .w-top-message-box .w-img-sp {
  width: 100%;
  margin: 0 2% 0 2%;
  display: block;
  text-align: center;
}

.m-i .w-top .w-top-message-box .w-img img {
  width: 100%;
}

.m-i .w-top .w-top-message-box .w-img-sp img {
  width: 70%;;
}

.m-i .w-top .w-top-message-box .w-text {
  width: 100%;
  margin: 0 2% 0 2%;
  color: rgb(255, 255, 255);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgb(0, 0, 0);
}

.m-i .w-top .w-top-message-box .w-text .t-small {
  margin-bottom: 10px;
}

.m-i .w-top .w-top-message-box .w-text .t-small * {
  margin: 0;
  font-size: 1em;
  letter-spacing: 0.1em;
  line-height: 1.2em;
}

.m-i .w-top .w-top-message-box .w-text .t-medium * {
  margin: 0;
  font-size: 1.4em;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box {
  margin: 0;
  padding: 15px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.93);
  box-shadow: 2px 2px 10px rgb(0, 0, 0);
}


.m-i .w-top .w-top-message-box .w-text .top-message-box .w-title {
  padding-left: 13px;
  display: block;
  position: relative;
  color:rgb(0, 153, 91);
  font-size: 0.8em;
  text-shadow: none;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-title::before {
  content: "";
  width: 5px;
  height: 88%;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  background: rgb(0, 153, 91);
  border-radius: 5px;
  transform: translateY(-55%);
}

.m-i .w-top .w-top-message-box .w-text .top-message-box p {
  margin: 18px 0;
  font-size: 1.5em;
  color: rgb(0, 153, 91);
  text-shadow: none;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box p span {
  display: inline-block;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-button {
  text-align: right;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button {
  padding: 0;
  padding-right: 25px;
  display: inline-block;
  position: relative;
  border-radius: 5px;
  font-size: 0.77em;
  color: rgb(0, 153, 91);
  text-decoration: none;
  letter-spacing: 2px;
  text-shadow: none;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button::before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 7px;
  right: 5px;
  transform: translateY(-50%);
  transition: .3s;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button::after {
  content: "";
  display: block;
  width: 5px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 5px;
  right: 5px;
  transform: rotate(45deg);
  transition: .3s;
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button:hover {
  color: rgba(59, 223, 94, 1);
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button:hover::before {
  right: 0;
  background-color: rgba(59, 223, 94, 1);
}

.m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button:hover::after {
  right: 0;
  background-color: rgba(59, 223, 94, 1);
}

@media (min-width: 429px) {
  .m-i .w-top {
    height: calc(95vh - 50px);
    margin-bottom: 170px;
  }

  .m-i .w-top .w-video figure video {
      object-position: center;
  }

  .m-i .w-top .w-top-message-box {
    padding: 30px 2% 10px;
    align-items: center;
  }

  .m-i .w-top .w-top-message-box .w-img-sp img {
    width: 60%;;
  }

  .m-i .w-top .w-top-message-box .w-text {
    width: 80%;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box {
    padding: 25px;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-title {
    padding-left: 16px;
    font-size: 1.1em;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box p {
    margin: 20px 0;
    font-size: 2em;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button {
    padding-right: 25px;
    font-size: 1.1em;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button::before {
    top: 12px;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button::after {
    top: 9px;
  }
}

@media (min-width: 835px) {
  .m-i .w-top .w-top-message-box {
    padding-top: 0;
  }

  .m-i .w-top .w-top-message-box .w-img-pc {
    width: 36%;
    margin: 0 2% 0 2%;
    display: block;
  }

  .m-i .w-top .w-top-message-box .w-img-sp {
    display: none;
  }

  .m-i .w-top .w-top-message-box .w-text {
    width: 41%;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box {
    margin: 20px 0 20px 0;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box p {
    font-size: 2.5em;
  }
}

@media (min-width: 1367px) {
  .m-i .w-top .w-top-message-box .w-text .t-small * {
    font-size: 1.1em;
  }

  .m-i .w-top .w-top-message-box .w-text .t-medium * {
    font-size: 1.5em;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box {
    padding: 30px;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-title {
    font-size: 1.25em;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box p {
    margin: 37px 0;
    font-size: 3em;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button {
    font-size: 1.2em;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button::before {
    top: 15px;
  }

  .m-i .w-top .w-top-message-box .w-text .top-message-box .w-button .button::after {
    top: 12px;
  }
}

/* about */
.m-i .w-about {
  margin: 0 5%;
  margin-bottom: 35px;;
  overflow: hidden;
}

.m-i .w-about .w-title .gradation {
  margin-bottom: 0;
  padding: 8px 0;
  padding-left: 4px;
  display: inline-block;
  position: relative;
  background: linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  background: -webkit-linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: -2px;
  transform: skewX(-18deg);
}

.m-i .w-about .w-title .gradation::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  background: -webkit-linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  position: absolute;
  right: -58px;
  bottom: 35%;
}

.m-i .w-about .w-title h1 {
  margin: 0;
  margin-bottom: 35px;
  font-size: 2em;
}

.m-i .w-about .w-title h1 span {
  display: inline-block;
}

.m-i .w-about .w-about-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m-i .w-about .w-about-contents .w-text {
  width: 100%;
  margin-bottom: 70px;
  padding-right: 0;
  box-sizing: border-box;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2em;
}

.m-i .w-about .w-about-contents .w-text .w-buttons a {
  margin: 0 auto;
  margin-top: 35px;
  padding: 10px 15px;
  border: 2px solid rgb(0, 153, 91);
  border-radius: 5px;
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
  letter-spacing: 1px;
  position: relative;
  transition: .3s;
}

.m-i .w-about .w-about-contents .w-text .w-buttons a:hover {
  color: rgba(59, 223, 94, 1);
  border: 2px solid rgba(59, 223, 94, 1);
}

.m-i .w-about .w-about-contents .w-text .w-buttons a::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  transition: .3s;
}

.m-i .w-about .w-about-contents .w-text .w-buttons a::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 21px;
  right: 43px;
  transform: rotate(45deg);
  transition: .3s;
}

.m-i .w-about .w-about-contents .w-text .w-buttons a:hover::before {
  right: 30px;
  background-color: rgba(59, 223, 94, 1);
}

.m-i .w-about .w-about-contents .w-text .w-buttons a:hover::after {
  right: 29px;
  background-color: rgba(59, 223, 94, 1);
}

.m-i .w-about .w-about-contents .w-img {
  margin-bottom: 30px;
  width: 100%;
}

.m-i .w-about .w-about-contents .w-img img {
  width: 100%;
}

@media (min-width: 429px) {
  .m-i .w-about {
    margin: 0 8%;
    margin-bottom: 70px;
  }

  .m-i .w-about .w-title .gradation {
    padding: 19px 0;
    padding-left: 6px;
    font-size: 4em;
    letter-spacing: -3px;
  }

  .m-i .w-about .w-title .gradation::after {
    width: 95px;
    right: -115px;
  }

  .m-i .w-about .w-title h1 {
    margin-bottom: 50px;
    font-size: 3.7em;
  }

  .m-i .w-about .w-about-contents .w-text {
    font-weight: 600;
  }
}

@media (min-width: 835px) {
  .m-i .w-about .w-title .gradation {
    padding: 19px 0;
    padding-left: 6px;
    font-size: 6.8em;
    letter-spacing: -6px;
  }

  .m-i .w-about .w-title .gradation::after {
    width: 125px;
    right: -135px;
  }

  .m-i .w-about .w-title h1 {
    margin-bottom: 70px;
    font-size: 4em;
  }

  .m-i .w-about .w-about-contents {
    flex-direction: row;
  }

  .m-i .w-about .w-about-contents .w-text {
    width: 40%;
    padding-right: 30px;
  }

  .m-i .w-about .w-about-contents .w-img {
    width: 55%;
  }
}

@media (min-width: 1367px) {
  .m-i .w-about {
    margin: 0 15%;
  }
}

/* lineup */
.m-i .w-products {
  margin-bottom: 100px;
  position: relative;
  z-index: 0;
}

.m-i .w-products .w-title {
  position: relative;
  top: -10px;
  left: 0;
  z-index: 1;
}

.m-i .w-products .w-title h2 {
  font-size: 1.4em;
  color: rgb(0, 153, 91);
  position: absolute;
  top: 0;
  left: 5%;
}

.m-i .w-products .w-title h2::before {
  content: "Lineup";
  display: block;
  color: rgba(233, 233, 233, 0.45);
  font-size: 2.4em;
  font-weight: 600;
  letter-spacing: 6px;
  position: absolute;
  top: -37px;
  left: -12px;
  z-index: -1;
  font-family: 'Hiragino Kaku Gothic ProN','繝偵Λ繧ｮ繝手ｧ偵ざ ProN W3','繝｡繧､繝ｪ繧ｪ', 'Meiryo','�ｭ�ｳ 繧ｴ繧ｷ繝�け',sans-serif;
}

.m-i .w-products .background {
  padding-top: 75px;
  padding-bottom: 25px;
  background-color: rgb(245, 245, 245);
  clip-path: polygon(0% 3%, 100% 0%, 100% 100%, 0% 100%);
}

.m-i .w-products .background .w-product-box {
  margin: 0 5%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
}

.m-i .w-products .background .w-product-box .product-box {
  margin-bottom: 70px;
  width: 100%;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.m-i .w-products .background .w-product-box .product-box .tag {
  padding-left: 6px;
  position: absolute;
  top: -10px;
  left: -10px;
}

.m-i .w-products .background .w-product-box .product-box .tag::before {
  content: "";
  width: 175%;
  height: 175%;
  position: absolute;
  top: 0;
  right: -75%;
  background: #00995b;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.m-i .w-products .background .w-product-box .product-box .tag span {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 0.7em;
  text-shadow: 2px 2px 10px rgb(93 93 93);
}

.m-i .w-products .background .w-product-box .product-box img {
  margin: 0 auto;
  padding-bottom: 0;
  width: 100%;
  display: block;
}

.m-i .w-products .background .w-product-box .product-box h3 {
  margin: 0;
  margin-bottom: 7px;
  padding-top: 16px;
  border-top: 1px solid rgb(221, 221, 221);
  color: rgb(0, 153, 91);
}

.m-i .w-products .background .w-product-box .product-box p {
  margin: 0;
  margin-bottom: 10px;
  font-size: 0.9em;
  line-height: 1.5em;
}

.m-i .w-products .button {
  position: relative;
  left: 0;
  bottom: 28px;
  text-align: center;
}

.m-i .w-products .button a {
  width: 80%;
  max-width: 80%;
  padding: 20px 0;
  display: inline-block;
  color: rgb(255, 255, 255);
  font-weight: 600;
  letter-spacing: 3px;
  background-color: rgb(0, 153, 91);
  border: 3px solid rgb(0, 153, 91);
  border-radius: 5px;
  box-shadow: 0 31px 12px -27px rgb(160, 173, 169);
  text-decoration: none;
  transition: .3s;
}

.m-i .w-products .button a:hover {
  color: rgb(0, 153, 91);
  background-color: rgb(255, 255, 255);
}

@media (min-width: 429px) {
  .m-i .w-products .w-title {
    top: -4px;
  }

  .m-i .w-products .w-title h2 {
    font-size: 2.5em;
    left: 10%;
  }

  .m-i .w-products .w-title h2::before {
    font-size: 2.5em;
    letter-spacing: 4px;
    top: -63px;
    left: -25px;
  }

  .m-i .w-products .background {
    padding-top: 135px;
    padding-bottom: 120px;
    clip-path: polygon(0% 7%, 100% 0%, 100% 100%, 0% 100%);
  }

  .m-i .w-products .background .w-product-box {
    margin: 0 8%;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .m-i .w-products .background .w-product-box .product-box {
    margin-bottom: 0;
    width: 45%;
  }

  .m-i .w-products .background .w-product-box .product-box img {
    padding-bottom: 10px;
  }

  .m-i .w-products .background .w-product-box .product-box h3 {
    padding-top: 20px;
  }

  .m-i .w-products .button a {
     width: 400px;
     max-width: 50%;
   }
}

@media (min-width: 835px) {
  .m-i .w-products .w-title {
    top: 20px;
  }

  .m-i .w-products .w-title h2::before {
    font-size: 3em;
    letter-spacing: 12px;
    top: -100px;
    left: -60px;
  }

  .m-i .w-products .background {
    padding-top: 200px;
    padding-bottom: 120px;
    clip-path: polygon(0% 18%, 100% 0%, 100% 100%, 0% 100%);
  }

  .m-i .w-products .background .w-product-box .product-box {
    width: calc(90% / 4);
  }
}

@media (min-width: 1367px) {
  .m-i .w-products .w-title h2 {
    font-size: 3em;
    left: 15%;
  }

  .m-i .w-products .background .w-product-box {
    margin: 0 15%;
    flex-wrap:nowrap;
  }
}

/* new-features */
.m-i .w-new-features {
  margin: 0 5%;
  margin-bottom: 100px;
}

.m-i .w-new-features .w-title {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.m-i .w-new-features .w-title h2 {
  margin-right: 20px;
  margin-bottom: 40px;
  padding-top: 30px;
  color: rgb(0, 153, 91);
  font-size: 1.7em;
  position: relative;
  letter-spacing: 3px;
}

.m-i .w-new-features .w-title h2::before {
  content: "Features";
  display: block;
  font-weight: 100;
  color: rgb(221, 221, 221);
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: -1px;
  letter-spacing: 4px;
}

.m-i .w-new-features .w-title .w-view-all {
  margin-left: auto;
}

.m-i .w-new-features .w-title .w-view-all a {
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
}

.m-i .w-new-features .w-title .w-view-all a:hover {
  color: rgba(59, 223, 94, 1);
}

.m-i .w-new-features .new-features a {
  text-decoration: none;
  color:rgb(0, 0, 0);
  line-height: 1.5em;
}

.m-i .w-new-features .new-features .w-text {
  padding: 20px 40px;
  background-color: rgb(232, 243, 230);
  border-radius: 5px;
}

@media (min-width: 429px) {
  .m-i .w-new-features {
    margin: 0 8%;
    margin-bottom: 130px;
  }

  .m-i .w-new-features .w-title h2 {
    font-size: 2.5em;
    letter-spacing: 7px;
  }

  .m-i .w-new-features .w-title h2::before {
    top: -10px;
  }

  .m-i .w-new-features .w-title .w-view-all a {
    font-size: 1.5em;
  }
}

@media (min-width: 1367px) {
  .m-i .w-new-features {
    margin: 0 15%;
    margin-bottom: 130px;
  }
}

/* news */
.m-i .w-news {
  margin: 0 5%;
  margin-bottom: 100px;
}

.m-i .w-news .w-title {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.m-i .w-news .w-title h2 {
  margin-right: 20px;
  margin-bottom: 40px;
  padding-top: 30px;
  color: rgb(0, 153, 91);
  font-size: 1.7em;
  position: relative;
  letter-spacing: 3px;
}

.m-i .w-news .w-title h2::before {
  content: "News";
  display: block;
  font-weight: 100;
  color: rgb(221, 221, 221);
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: -1px;
  letter-spacing: 4px;
}

.m-i .w-news .w-title .w-view-all {
  margin-left: auto;
}

.m-i .w-news .w-title .w-view-all a {
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
}

.m-i .w-news .w-title .w-view-all a:hover {
  color: rgba(59, 223, 94, 1);
}

.m-i .w-news .w-news-box .news-box {
  margin: 10px 0;
  padding: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(221, 221, 221);
  display: flex;
  flex-direction: column-reverse;
}

.m-i .w-news .w-news-box .news-box .w-img {
  margin-right: 0;
  margin-bottom: 10px;
  width: 100%;
}

.m-i .w-news .w-news-box .news-box .w-img img {
  width: 100%;
  min-width: 200px;
  height: 100%;
  min-height: 150px;
  object-fit: contain;
}

.m-i .w-news .w-news-box .news-box .w-text time {
  margin: 0;
  margin-bottom: 10px;
  display: block;
  color: rgb(177, 177, 177);
}

.m-i .w-news .w-news-box .news-box .w-text .news-category {
  margin-right: 10px;
  padding: 7px 12px 5px;
  display: inline-block;;
  border-radius: 5px;
  color: rgb(255, 255, 255);
  font-size: 0.8em;
  letter-spacing: 1px;
  vertical-align: middle;
  text-decoration: none;
}

.m-i .w-news .w-news-box .news-box .w-text p a {
  color: rgb(0, 0, 0);
  text-decoration: none;
}

@media (min-width: 429px) {
  .m-i .w-news {
    margin: 0 8%;
    margin-bottom: 130px;
  }

  .m-i .w-news .w-title h2 {
    font-size: 2.5em;
    letter-spacing: 7px;
  }

  .m-i .w-news .w-title h2::before {
    top: -10px;
  }

  .m-i .w-news .w-title .w-view-all a {
    font-size: 1.5em;
  }

  .m-i .w-news .w-news-box .news-box {
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
    flex-direction: row;
  }

  .m-i .w-news .w-news-box .news-box .w-img {
    margin-right: 30px;
    width: 200px;
  }

  .m-i .w-news .w-news-box .news-box .w-text time {
    margin: 0;
    margin-right: 15px;
    display: inline-block;
  }
}

@media (min-width: 1367px) {
  .m-i .w-news {
    margin: 0 15%;
    margin-bottom: 130px;
  }
}

/* support */
.m-i .w-support {
  margin: 0 5%;
  margin-bottom: 100px;
}

.m-i .w-support .w-title {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
}

.m-i .w-support .w-title h2 {
  margin-right: 20px;
  margin-bottom: 40px;
  padding-top: 30px;
  font-size: 1.7em;
  color: rgb(0, 153, 91);
  position: relative;
  letter-spacing: 7px;
}

.m-i .w-support .w-title h2::before {
  content: "Support";
  display: block;
  font-weight: 100;
  color: rgb(221, 221, 221);
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: -1px;
  letter-spacing: 4px;
}

.m-i .w-support .w-title .w-view-all {
  margin-left: auto;
}

.m-i .w-support .w-title .w-view-all a {
  display: inline-block;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
}

.m-i .w-support .w-title .w-view-all a:hover {
  color: rgba(59, 223, 94, 1);
}

.m-i .w-support .w-support-box {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
}

.m-i .w-support .w-support-box .support-box {
  margin: 0;
  margin-bottom: 45px;
  width: 100%;
  padding: 20px 20px 30px;
  border: 3px solid rgb(221, 221, 221);
  text-align: center;
  box-sizing: border-box;
  transform: none;
  background-color: rgb(251, 251, 251);
}

.m-i .w-support .w-support-box .support-box a {
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.m-i .w-support .w-support-box .support-box .w-img img {
  width: 130px;
  min-width: 100px;
  max-width: 90%;
  padding: 0 10px;
  box-sizing: border-box;
}

.m-i .w-support .w-support-box .support-box .w-text h4 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 1.5em;
  color: rgb(0, 153, 91);
}

.m-i .w-support .w-support-box .support-box .w-text p {
  margin: 0;
  font-size: 0.8em;
  line-height: 1.7em;
}

.m-i .w-support .w-support-box .support-box .w-text p span {
  display: inline-block;
}

@media (min-width: 429px) {
  .m-i .w-support {
    margin: 0 8%;
    margin-bottom: 150px;
  }

  .m-i .w-support .w-title h2 {
    font-size: 2.5em;
  }

  .m-i .w-support .w-title h2::before {
    top: -10px;
  }

  .m-i .w-support .w-title .w-view-all a {
    font-size: 1.5em;
  }

  .m-i .w-support .w-support-box {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .m-i .w-support .w-support-box .support-box {
    padding: 35px 20px;
    margin-bottom: 8px;
    transform: skewX(-7deg);
  }

  .m-i .w-support .w-support-box .support-box a {
     flex-direction: row-reverse;
     transform: skewX(7deg);
     align-items: center;
   }

   .m-i .w-support .w-support-box .support-box .w-text h4 {
     margin-bottom: 20px;
   }
}

@media (min-width: 835px) {
  .m-i .w-support .w-support-box {
    flex-wrap: nowrap;
  }

  .m-i .w-support .w-support-box .support-box {
    margin: 0;
    padding: 20px 20px 30px;
    width: 33%;
    min-width: initial;
  }

  .m-i .w-support .w-support-box .support-box a {
    flex-direction: column;
    align-items: stretch;
  }

  .m-i .w-support .w-support-box .support-box .w-img img {
    width: 100%;
    max-width: initial;
    padding: 0 50px;
  }

  .m-i .w-support .w-support-box .support-box .w-text h4 {
    margin-bottom: 40px;
  }

  .m-i .w-support .w-support-box .support-box .w-text p {
    font-size: 1em;
  }
}

@media (min-width: 1367px) {
  .m-i .w-support {
    margin: 0 15%;
    margin-bottom: 220px;
  }
}

/* home, category (news)
------------------------------------------------------------------------*/
/* breadcrumb */
.m-h .w-breadcrumb ol,
.m-c .w-breadcrumb ol {
  margin: 0;
  margin-top: 25px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.m-h .w-breadcrumb ol li,
.m-c .w-breadcrumb ol li {
  margin-right: 2em;
  margin-bottom: 5px;
  font-size: 10px;
  position: relative;
}

.m-h .w-breadcrumb ol li:not(:last-child):before,
.m-c .w-breadcrumb ol li:not(:last-child):before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 1px solid rgb(221, 221, 221);
  border-right: 1px solid rgb(221, 221, 221);
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(45deg);
}

.m-h .w-breadcrumb ol li a,
.m-c .w-breadcrumb ol li a {
  display: inline-block;
  text-decoration: none;
  font-size: 10px;
}
/* ---------- */

.m-h .w-header-content,
.m-c .w-header-content {
  width: 100%;
  height: 75vh;
  position: relative;
  box-shadow: 0px -8px 8px -1px rgba(231, 231, 231,0.16) inset;
}

.m-h .w-header-content figure,
.m-c .w-header-content figure {
  width: 100%;
  height: 100%;
}

.m-h .w-header-content img,
.m-c .w-header-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  position: relative;
  z-index: -1;
}

.m-h .w-header-content .w-text,
.m-c .w-header-content .w-text {
  position: absolute;
  bottom: 0;
  left: 5%;
}

.m-h .w-header-content .w-text .title-en,
.m-c .w-header-content .w-text .title-en {
  font-size: 3.8em;
  font-weight: 600;
  color: rgba(233, 233, 233, 0.45);
  letter-spacing: 2px;
}

.m-h .w-header-content .w-text h1,
.m-c .w-header-content .w-text h1 {
  margin: 0;
  margin-bottom: 30px;
  font-size: 1.3em;
  color: rgb(0, 153, 91);
  letter-spacing: 2px;
}

.m-h .w-main-contents,
.m-c .w-main-contents {
  margin: 0 5% 150px;
}

.m-h .w-main-contents .w-top-text,
.m-c .w-main-contents .w-top-text {
  margin: 55px 0 40px;
  padding-bottom: 35px;
  border-bottom: 6px double rgb(245, 245, 245);
}

.m-h .w-main-contents .w-top-text p,
.m-c .w-main-contents .w-top-text p {
  margin: 0;
  margin-bottom: 16px;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
}

.m-c .w-main-contents .w-category-info {
  margin-bottom: 30px;
}

.m-c .w-main-contents .w-category-info .current-category-name {
  display: inline-block;
}

.m-c .w-main-contents .w-category-info .w-other-categories {
  margin-bottom: 0;
  padding: 5px 15px;
  background-color: rgb(251, 251, 251);
  border: 1px solid rgb(221, 221, 221);
  border-radius: 5px;
}

.m-c .w-main-contents .w-category-info .w-other-categories .heading {
  margin: 15px 0px 5px;
}

.m-c .w-main-contents .w-category-info .w-other-categories .news-category:first-child {
  margin-left: 0;
}

.m-c .w-main-contents .w-view-all {
  margin-bottom: 32px;
  text-align: right;
}

.m-c .w-main-contents .w-view-all a {
  font-size: 1.2em;
  font-weight: 600;
  color: rgb(0, 153, 91);
}

.m-c .w-main-contents .w-view-all a:hover {
  color: rgba(59, 223, 94, 1);
}

.m-h .w-main-contents .w-news-box .news-box,
.m-c .w-main-contents .w-news-box .news-box {
  margin-bottom: 20px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgb(221, 221, 221);
  display: flex;
  flex-direction: column;
}

.m-h .w-main-contents .w-news-box .news-box .w-img,
.m-c .w-main-contents .w-news-box .news-box .w-img {
  margin-right: 0;
  width: 100%;
  aspect-ratio: 4/ 3;
}

.m-h .w-main-contents .w-news-box .news-box .w-img img,
.m-c .w-main-contents .w-news-box .news-box .w-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-h .w-main-contents .w-news-box .news-box .w-text time,
.m-c .w-main-contents .w-news-box .news-box .w-text time {
  margin: 10px;
  margin-bottom: 0;
  display: inline-block;
  color: rgb(177, 177, 177);
}

.m-h .w-main-contents .w-news-box .news-box .w-text a,
.m-c .w-main-contents .w-news-box .news-box .w-text a,
.m-c .w-main-contents .w-category-info .w-other-categories .news-category {
  text-decoration: none;
}

.m-h .w-main-contents .w-news-box .news-box .w-text .w-category .news-category,
.m-c .w-main-contents .w-news-box .news-box .w-text .w-category .news-category,
.m-c .w-main-contents .w-category-info .w-other-categories .news-category {
  margin: 10px;
  padding: 6px 11px;
  font-size: 0.8em;
  color: rgb(255, 255, 255);
  display: inline-block;
  border-radius: 5px;
}

.m-h .w-main-contents .w-news-box .news-box .w-text .w-news-title p a,
.m-c .w-main-contents .w-news-box .news-box .w-text .w-news-title p a {
  padding: 10px;
  color: rgb(0, 0, 0);
  font-size: 1.2em;
  letter-spacing: 1px;
}

.nav-links a {
  margin: 5px;
  padding: 10px 15px;
  display: inline-block;
  text-decoration: none;
  background-color: rgb(251, 251, 251);
  border: 1px solid rgb(221, 221, 221);
  border-radius: 5px;
}

.nav-links .current {
  margin: 5px;
  padding: 11px 16px;
  display: inline-block;
  text-decoration: none;
  background-color: rgb(221, 221, 221);
  border-radius: 5px;
}

@media (min-width: 429px) {
  /* breadcrumb */
  .m-h .w-breadcrumb ol,
  .m-c .w-breadcrumb ol {
    margin: 0;
    margin-top: 40px;
  }

  .m-h .w-breadcrumb ol li,
  .m-c .w-breadcrumb ol li {
    font-size: 12px;
  }

  .m-h .w-breadcrumb ol li a,
  .m-c .w-breadcrumb ol li a {
    font-size: 12px;
  }
  /* ---------- */

  .m-h .w-header-content .w-text,
  .m-c .w-header-content .w-text {
    bottom: 5%;
    left: 5%;
  }

  .m-h .w-header-content .w-text .title-en,
  .m-c .w-header-content .w-text .title-en {
    font-size: 6em;
  }

  .m-h .w-header-content .w-text h1,
  .m-c .w-header-content .w-text h1 {
    font-size: 1.8em;
  }

  .m-h .w-main-contents,
  .m-c .w-main-contents {
    margin: 0 8% 180px;
  }

  .m-h .w-main-contents .w-top-text,
  .m-c .w-main-contents .w-top-text {
    margin: 60px 0 60px;
  }

  .m-h .w-main-contents .w-top-text p,
  .m-c .w-main-contents .w-top-text p {
    font-weight: 600;
  }

  .m-c .w-main-contents .w-category-info .w-other-categories {
    margin-bottom: 60px;
  }

  .m-h .w-main-contents .w-news-box .news-box .w-text .w-category .news-category,
  .m-c .w-main-contents .w-news-box .news-box .w-text .w-category .news-category,
  .m-c .w-main-contents .w-category-info .w-other-categories .news-category {
    padding: 10px 15px;
    font-size: 1em;
  }

  .m-c .w-main-contents .w-view-all {
    margin-bottom: 0;
  }

  .m-c .w-main-contents .w-view-all a {
    font-size: 1.5em;
  }

  .m-h .w-main-contents .w-news-box .news-box,
  .m-c .w-main-contents .w-news-box .news-box {
    padding-bottom: 15px;
    flex-direction: row;
  }

  .m-h .w-main-contents .w-news-box .news-box .w-img,
  .m-c .w-main-contents .w-news-box .news-box .w-img {
    margin-right: 30px;
    width: 300px;
  }

  .m-h .w-main-contents .w-news-box .news-box .w-text time,
  .m-c .w-main-contents .w-news-box .news-box .w-text time {
    margin-bottom: 10px;
  }
}

@media (min-width: 835px) {
  .m-h .w-header-content .w-text .title-en,
  .m-c .w-header-content .w-text .title-en {
    font-size: 11em;
  }

  .m-h .w-header-content .w-text h1,
  .m-c .w-header-content .w-text h1 {
    font-size: 2.5em;
  }
}

@media (min-width: 1367px) {
  .m-h .w-header-content .w-text,
  .m-c .w-header-content .w-text {
    bottom: 5%;
    left: 10%;
  }

  .m-h .w-main-contents,
  .m-c .w-main-contents {
    margin: 0 15% 200px;
  }

  .m-h .w-main-contents .w-top-text,
  .m-c .w-main-contents .w-top-text {
    margin: 60px 0 40px;
  }
}

/* page
------------------------------------------------------------------------*/
/* breadcrumb */
.m-p .w-breadcrumb ol {
  margin: 0;
  margin-top: 25px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
/* ---------- */

.m-p .w-breadcrumb ol li {
  margin-right: 2em;
  margin-bottom: 5px;
  font-size: 10px;
  position: relative;
}

.m-p .w-breadcrumb ol li:not(:last-child):before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 1px solid rgb(221, 221, 221);
  border-right: 1px solid rgb(221, 221, 221);
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(45deg);
}

.m-p .w-breadcrumb ol li a {
  display: inline-block;
  text-decoration: none;
  font-size: 10px;
}
/* ---------- */

.m-p .w-header-content {
  width: 100%;
  height: 75vh;
  position: relative;
  box-shadow: 0px -8px 8px -1px rgba(231, 231, 231, 0.16) inset;
}

.m-p .w-header-content figure {
  width: 100%;
  height: 100%;
}

.m-p .w-header-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: -1;
}

.m-p .w-header-content .w-text {
  position: absolute;
  bottom: 0;
  left: 5%;
}

.m-p .w-header-content .w-text .title-en {
  font-size: 3.8em;
  font-weight: 600;
  color: rgba(233, 233, 233, 0.45);
  letter-spacing: 2px;
}

.m-p .w-header-content .w-text h1 {
  margin: 0;
  margin-bottom: 30px;
  font-size: 1.3em;
  color: rgb(0, 153, 91);
  letter-spacing: 2px;
}

.m-p .w-main-contents {
  margin: 0 5% 150px;
}

.m-p .w-main-contents iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  width:100%;
  height:100%;
}

.m-p .w-main-contents .w-top-text {
  margin: 55px 0;
  padding-bottom: 35px;
  border-bottom: 6px double rgb(245, 245, 245);
}

.m-p .w-main-contents .w-top-text p {
  margin: 0;
  margin-bottom: 16px;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
}

.m-p .w-main-contents h2 {
  margin-bottom: 20px;
  color: rgb(0, 153, 91);
  font-size: 1.5em;
  letter-spacing: 2px;
}

.m-p .w-main-contents h5 {
  line-height: 1.5em;
}

.m-p .w-main-contents p {
  margin-bottom: 35px;
  line-height: 1.7em;
}

.m-p .normal-button a {
  padding: 15px 20px;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 0.9em;
  transition: .3s;
  border: 3px solid rgb(0, 153, 91) !important;
}

.m-p .normal-button a:hover {
  color: rgb(0, 153, 91) !important;
  background-color: rgb(255, 255, 255) !important;
  border: 3px solid rgb(0, 153, 91) !important;
}

@media (min-width: 429px) {
  /* breadcrumb */
  .m-p .w-breadcrumb ol {
    margin: 0;
    margin-top: 40px;
  }

  .m-p .w-breadcrumb ol li {
    font-size: 12px;
  }

  .m-p .w-breadcrumb ol li a {
    font-size: 12px;
  }
  /* ---------- */

  .m-p .w-header-content .w-text {
    bottom: 5%;
    left: 5%;
  }

  .m-p .w-header-content .w-text .title-en {
    font-size: 6em;
  }

  .m-p .w-header-content .w-text h1 {
    font-size: 1.8em;
  }

  .m-p .w-main-contents {
    margin: 0 8% 180px;
  }

  .m-p .w-main-contents .w-top-text {
    margin: 60px 0;
  }

  .m-p .w-main-contents .w-top-text p {
    font-weight: 600;
  }

  .m-p .w-main-contents h2 {
    margin-bottom: 40px;
    font-size: 2em;
  }

  .m-p .normal-button a {
    padding: 20px 40px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1em;
  }
}

@media (min-width: 835px) {
  .m-p .w-header-content .w-text .title-en {
    font-size: 11em;
  }

  .m-p .w-header-content .w-text h1 {
    font-size: 2.5em;
  }

  .m-p .w-header-content img {
    object-position: center;
  }
}

@media (min-width: 1367px) {
  .m-p .w-header-content .w-text {
    bottom: 5%;
    left: 10%;
  }

  .m-p .w-main-contents {
    margin: 0 15% 200px;
  }

  .m-p .w-main-contents .w-top-text {
    margin: 60px 0;
  }

  .m-p .w-main-contents h2 {
    font-size: 2.5em;
  }
}

/* page-contact
------------------------------------------------------------------------*/
.m-p-contact .w-main-contents .item-row {
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgb(226, 226, 226);
}

.m-p-contact .w-main-contents .item-row .item-name {
  width: 300px;
  margin-bottom: 5px;
}

.m-p-contact .w-main-contents .item-row .item-value {
  width: 100%;
}

.m-p-contact .w-main-contents .required {
  margin-right: 10px;
  padding: 3px 8px;
  font-size: 12px;
  color: rgb(255, 255, 255);
  vertical-align: middle;
  background-color: rgb(206, 5, 44);
}

.m-p-contact .w-main-contents .not-required {
  margin-right: 10px;
  padding: 3px 8px;
  font-size: 12px;
  color: rgb(255, 255, 255);
  vertical-align: middle;
  background-color: rgb(119, 119, 119);
}

.m-p-contact .w-main-contents p input[type="text"],
.m-p-contact .w-main-contents p input[type="email"],
.m-p-contact .w-main-contents p input[type="tel"],
.m-p-contact .w-main-contents p textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 5px;
  box-sizing: border-box;
  background-color: rgb(245, 245, 245);
}

.m-p-contact .w-main-contents p input[type="submit"] {
  padding: 15px 30px;;
  border: none;
  background-color: rgb(0, 153, 91);
  border-radius: 5px;
  color: rgb(255, 255, 255);
  letter-spacing: 3px;
}

@media (min-width: 835px) {
  .m-p-contact .w-main-contents .item-row {
    flex-direction: row;
  }
}

/* page-faq
------------------------------------------------------------------------*/
.m-p-faq .w-main-contents dl {
  margin-bottom: 80px;
}

.m-p-faq .w-main-contents dl dt {
  padding: 20px;
  padding-top: 97px;
  font-size: 1.2em;
  font-weight: 600;
  position: relative;
}

.m-p-faq .w-main-contents dl dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgb(0, 153, 91);
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 153, 91);
  font-weight: 600;
  position: absolute;
  left: 20px;
  top: 28px;
}

.m-p-faq .w-main-contents dl dt p {
  margin: 0 0 15px;
  line-height: 2em;
}

.m-p-faq .w-main-contents dl dd {
  margin: 0;
  padding: 20px;
  padding-top: 105px;
  position: relative;
  border-radius: 5px;
  background-color: rgb(245, 245, 245);
}

.m-p-faq .w-main-contents dl dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--taaya-color);
  border-radius: 50%;
  background-color: rgb(0, 153, 91);
  color: rgb(255, 255, 255);
  font-weight: 600;
  position: absolute;
  left: 20px;
  top: 28px;
}

.m-p-faq .w-main-contents dl dd p {
  margin: 0 0 15px;
  line-height: 2em;
}

.m-p-faq .w-main-contents dl dd ol li {
  margin-bottom: 42px;
  line-height: 1.4em;
}

@media (min-width: 429px) {
  .m-p-faq .w-main-contents dl dd {
    padding-top: 33px;
    padding-left: 90px;
  }

  .m-p-faq .w-main-contents dl dt {
    padding-top: 33px;
    padding-left: 90px;
  }
}

/* page-sitemap
------------------------------------------------------------------------*/
.m-p-sitemap .w-main-contents ul {
  margin-top: 20px;
  list-style: none;
}

.m-p-sitemap .w-main-contents ul li {
  margin-bottom: 20px;
}

.m-p-sitemap .w-main-contents ul li a {
  text-decoration: none;
}

@media (min-width: 429px) {
  /* breadcrumb */
  .m-p-sitemap .w-breadcrumb ol {
    margin: 40px 0;
  }
  /* ---------- */
}

/* page-products
------------------------------------------------------------------------*/
/* breadcrumb */
.m-p-products .w-breadcrumb ol {
  margin: 0 5%;
  margin-top: 25px;
}
/* ---------- */

.m-p-products .w-main-contents {
  margin: 0;
  margin-bottom: 200px;
}

.m-p-products .w-main-contents .w-top-text {
  margin: 55px 5% 0;
}

.m-p-products .w-main-contents .w-products {
  margin-bottom: 30px;
  overflow: hidden;
}

.m-p-products .w-main-contents .w-products .w-name {
  margin: 0 5%;
}

.m-p-products .w-main-contents .w-products .w-name .num {
  padding-top: 50px;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
}

.m-p-products .w-main-contents .w-products .w-name h2 {
  margin: 5px 0 30px;
  color: rgb(0, 0, 0);
  letter-spacing: 1px;
  font-size: 2em;
}

.m-p-products .w-main-contents .w-products .w-about {
  margin: 0 5%;
  margin-bottom: 60px;
}

.m-p-products .w-main-contents .w-products .w-about .w-text p {
  margin: 0;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.6em;
  letter-spacing: 1px;
}

/* 繝ｩ繧､繝ｳ繝翫ャ繝暦ｼ域眠讖溯��� */
.m-p-products .w-main-contents .w-products-1 .w-new-features {
  margin-bottom: 50px;
  padding: 5px 5%;
}


.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features {
  padding: 20px 60px;
  border-radius: 5px;
  background-color: rgb(239, 245, 238);
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-title {
  color: rgb(0, 153, 91);
  font-size: 1.5em;
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-text {
  font-weight: 600;
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-buttons {
  margin-bottom: 5px;
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-buttons a {
  width: 90%;
  max-width: 200px;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
  letter-spacing: 1px;
  position: relative;
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-buttons a:hover {
  color: rgba(59, 223, 94, 1);
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-buttons a::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-buttons a::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 15px;
  right: 43px;
  transform: rotate(45deg);
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-buttons a:hover::before {
  right: 30px;
  background-color: rgba(59, 223, 94, 1);
}

.m-p-products .w-main-contents .w-products-1 .w-new-features .new-features .w-buttons a:hover::after {
  right: 30px;
  background-color: rgba(59, 223, 94, 1);
}

/* 繝ｩ繧､繝ｳ繝翫ャ繝暦ｼ亥ｸｯ-1�� */
.m-p-products .w-main-contents .w-products-1 .w-lineup {
  padding: 5px 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  background-color: rgb(251, 251, 251);
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box {
  width: 100%;
  margin: 40px 0;
  padding: 23px;
  position: relative;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  border: 1px solid rgb(243, 243, 243);
  box-shadow: 0 0 20px -10px rgb(221, 221, 221);
  display: flex;
  flex-direction: column;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .tag
 {
  padding: 8px 3px 3px 10px;
  position: absolute;
  top: -10px;
  left: -10px;
}


.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .tag span {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 1.3em;
  text-shadow: 2px 2px 10px rgb(93, 93, 93);
}


.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .tag::before {
  content: "";
  width: 170%;
  height: 190%;
  position: absolute;
  top: 0;
  right: -70%;
  background: #00995b;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-img {
  width: 100%;
  overflow: hidden;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-img img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(1px 1px 4px rgb(221, 221, 221));
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-img img:hover {
  transform: scale(1.02);
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-text {
  margin-bottom: 35px;
  padding: 0 10px;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-text h3 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 1.5em;
  color: rgb(0, 153, 91);
  border-bottom: 1px solid rgb(0, 153, 91);
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-text p {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.5em;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-buttons {
  margin: 0;
  margin-top: auto;
  padding: 0 10px;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-buttons a {
  padding: 13px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.9em;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  background-color: rgb(0, 153, 91);
  border-radius: 5px;
  position: relative;
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-buttons a:hover {
  opacity: 0.8;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-buttons a .small {
  margin-top: 5px;
  display: block;
  font-size: 0.7em;
}

.m-p-products .w-main-contents .w-products-1 .w-lineup .product-box .w-buttons a img {
  width: 28px;
  margin-left: 7px;
}

/* 繝ｩ繧､繝ｳ繝翫ャ繝暦ｼ亥ｸｯ-2�� */
.m-p-products .w-main-contents .w-products-2 .w-lineup,
.m-p-products .w-main-contents .w-products-3 .w-lineup {
  width: 100%;
  padding: 45px 5%;
  padding-right: 10%;
  box-sizing: border-box;
  background-color: rgb(251, 251, 251);
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box {
  width: 100%;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}

.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box {
  width: 47%;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-img,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-img {
  width: 100%;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 5px;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-img img,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-img img:hover,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-img img:hover {
  transform: scale(1.05);
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-text,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-text h3,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text h3 {
  margin: 0;
  margin-bottom: 10px;
  padding: 20px 0 10px;
  border-bottom: 1px solid rgb(0, 153, 91);
  font-size: 1.2em;
  color: rgb(0, 153, 91);
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-text .w-buttons,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text .w-buttons {
  margin-top: auto;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-text .w-buttons a,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text .w-buttons a {
  padding: 7px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.7em;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 153, 91);
  letter-spacing: 1px;
  border-radius: 5px;
  position: relative;
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-text .w-buttons a:hover,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text .w-buttons a:hover {
  opacity: 0.8;
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-text .w-buttons a img,
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text .w-buttons a img {
  width: 15px;
  margin-left: 10px;
}

/* 繝輔Λ繧､繝ｳ繧ｰ繝励Ο繝ｼ繝悶ユ繧ｹ繧ｿ */
.m-p-products .w-main-contents .w-products-1 .w-name h2 {
  margin-bottom: 30px;
}

.m-p-products .w-main-contents .w-products-1 .w-about {
  margin: 0 5%;
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-img {
  margin-bottom: 55px;
  width: 100%;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text {
  width: 100%;
  padding-left: 0;
  box-sizing: border-box;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text mark {
  margin: 0;
  margin-bottom: 25px;
  display: inline-block;
  font-size: 2.5em;
  font-weight: 600;
  background: linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  background: -webkit-linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0px;
  position: relative;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .mark-normal {
  width: 10em;
  display: none;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .mark-min {
  display: block;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text mark::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  background: -webkit-linear-gradient(120deg, rgb(0, 153, 91) 0%, rgb(59, 223, 94) 99%, rgb(59, 223, 94) 100%);
  position: absolute;
  bottom: 0.5em;
  left: 4.3em;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .w-buttons a {
  width: 90%;
  max-width: 200px;
  margin-top: 35px;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
  letter-spacing: 1px;
  position: relative;
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .w-buttons a:hover {
  color: rgba(59, 223, 94, 1);
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .w-buttons a::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .w-buttons a::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 15px;
  right: 43px;
  transform: rotate(45deg);
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .w-buttons a:hover::before {
  right: 30px;
  background-color: rgba(59, 223, 94, 1);
}

.m-p-products .w-main-contents .w-products-1 .w-about .w-text .w-buttons a:hover::after {
  right: 29px;
  background-color: rgba(59, 223, 94, 1);
}

/* 繧｢繝励Μ繧ｱ繝ｼ繧ｷ繝ｧ繝ｳ繧ｽ繝輔ヨ */
.m-p-products .w-main-contents .w-products-2 .w-about .w-buttons a {
  width: 90%;
  max-width: 200px;
  margin-top: 35px;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
  letter-spacing: 1px;
  position: relative;
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-2 .w-about .w-buttons a:hover {
  color: rgba(59, 223, 94, 1);
}

.m-p-products .w-main-contents .w-products-2 .w-about .w-buttons a::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 50%;
  right: 44px;
  transform: translateY(-50%);
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-2 .w-about .w-buttons a::after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 15px;
  right: 43px;
  transform: rotate(45deg);
  transition: .3s;
}

.m-p-products .w-main-contents .w-products-2 .w-about .w-buttons a:hover::before {
  right: 30px;
  background-color: rgba(59, 223, 94, 1);
}

.m-p-products .w-main-contents .w-products-2 .w-about .w-buttons a:hover::after {
  right: 29px;
  background-color: rgba(59, 223, 94, 1);
}

.m-p-products .w-main-contents .w-products-2 .w-lineup .product-box .w-text .w-buttons a {
  padding: 9px 14px;
}

/* 繧ｪ繝励す繝ｧ繝ｳ讖溯� */
.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-img {
  aspect-ratio: 1 / 1;
}

.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text {
  position: relative;
}

.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text .tag {
  padding-left: 6px;
  position: absolute;
  top: -10px;
  left: -10px;
}

.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text .tag::before {
  content: "";
  width: 180%;
  height: 175%;
  position: absolute;
  top: 0;
  right: -80%;
  background: #00995b;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.m-p-products .w-main-contents .w-products-3 .w-lineup .product-box .w-text .tag span {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 0.7em;
  text-shadow: 2px 2px 10px rgb(93 93 93);
}

@media (min-width: 429px) {
  /* breadcrumb */
  .m-p-products .w-breadcrumb ol {
    margin: 0 8%;
    margin-top: 40px;
  }
  /* ---------- */

  .m-p-products .w-main-contents .w-top-text {
    margin: 60px 8% 0;
  }

  .m-p-products .w-main-contents .w-products .w-name {
    margin: 0 8%;
  }

  .m-p-products .w-main-contents .w-products .w-name .num {
    padding-top: 80px;
    font-size: 1.6em;
    font-weight: 600;
    color: rgb(0, 153, 91);
  }

  .m-p-products .w-main-contents .w-products .w-name h2 {
    margin: 10px 0 60px;
    font-size: 2.3em;
  }

  .m-p-products .w-main-contents .w-products .w-about {
    margin: 0 8%;
    margin-bottom: 60px;
  }

  .m-p-products .w-main-contents .w-products-1 .w-new-features,
  .m-p-products .w-main-contents .w-products-1 .w-lineup {
    padding: 5px 8%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-name h2 {
    margin-bottom: 60px;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text mark {
    margin-bottom: 30px;
    font-size: 3.5em;
    letter-spacing: -3px;
    transform: skewX(-12deg);
  }

  .m-p-products .w-main-contents .w-products-1 .w-lineup .product-box {
    padding: 30px;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup,
  .m-p-products .w-main-contents .w-products-3 .w-lineup {
    padding: 45px 8%;
  }
}

@media (min-width: 641px) {
  .m-p-products .w-main-contents .w-products-1 .w-lineup {
    flex-direction: row;
  }

  .m-p-products .w-main-contents .w-products-1 .w-lineup .product-box {
    width: 49%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text mark {
    margin-bottom: 50px;
    font-size: 3.2em;
    letter-spacing: -5px;
    white-space: nowrap;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text .mark-normal {
    display: block;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text .mark-min {
    display: none;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text mark::after {
    width: 60px;
    left: 9.5em;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup{
    flex-direction: row;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup .product-box {
    width: 47%;
  }

  .m-p-products .w-main-contents .w-products-3 .w-lineup .product-box {
    width: 47%;
    flex-direction: row;
  }
}

@media (min-width: 835px) {
  .m-p-products .w-main-contents .w-products .w-name .num {
    padding-top: 120px;
  }

  .m-p-products .w-main-contents .w-products .w-name h2 {
    margin: 10px 0 60px;
    font-size: 3em;
  }

  .m-p-products .w-main-contents .w-products-1 .w-new-features,
  .m-p-products .w-main-contents .w-products-1 .w-lineup {
    padding: 5px 8%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about {
    flex-direction: row;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-img {
    margin-bottom: 0;
    width: 50%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text {
    width: 50%;
    padding-left: 4%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text mark {
    font-size: 4.3vw;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup,
  .m-p-products .w-main-contents .w-products-3 .w-lineup {
    padding: 45px 8%;
  }
}

@media (min-width: 1025px) {
  .m-p-products .w-main-contents .w-products-1 .w-new-features,
  .m-p-products .w-main-contents .w-products-1 .w-lineup {
    padding: 5px 2%;
    padding-left: 8%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-lineup .product-box {
    width: 24%;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup,
  .m-p-products .w-main-contents .w-products-3 .w-lineup {
    padding: 45px 2%;
    padding-left: 8%;
    justify-content: flex-start;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup .product-box,
  .m-p-products .w-main-contents .w-products-3 .w-lineup .product-box {
    margin: 20px 0;
    margin-right: 6%;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup .product-box {
    width: 44%;
    flex-direction: row;
  }

  .m-p-products .w-main-contents .w-products-3 .w-lineup .product-box {
    width: 27%;
  }
}

@media (min-width: 1367px) {
  /* breadcrumb */
  .m-p-products .w-breadcrumb ol {
    margin: 0 15%;
    margin-top: 40px;
  }
  /* ---------- */

  .m-p-products .w-main-contents .w-top-text {
    margin: 60px 15% 0;
  }

  .m-p-products .w-main-contents .w-products .w-name {
    margin: 0 15%;
  }

  .m-p-products .w-main-contents .w-products .w-about {
    margin: 0 15%;
    margin-bottom: 60px;
  }

  .m-p-products .w-main-contents .w-products-1 .w-new-features,
  .m-p-products .w-main-contents .w-products-1 .w-lineup {
    padding: 5px 2%;
    padding-left: 15%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-lineup .product-box {
    width: 23%;
  }

  .m-p-products .w-main-contents .w-products-1 .w-about .w-text mark {
    font-size: 3.9em;
  }

  .m-p-products .w-main-contents .w-products-2 .w-lineup,
  .m-p-products .w-main-contents .w-products-3 .w-lineup {
    padding: 30px 15%;
    padding-right: 10%;
  }
}

/* page-applications
------------------------------------------------------------------------*/
/* breadcrumb */
.m-p-applications .w-breadcrumb ol {
  margin: 0 5%;
  margin-top: 25px;
}
/* ---------- */

.m-p-applications .w-main-contents {
  margin: 0;
  margin-bottom: 150px;
}

.m-p-applications .w-main-contents .w-top-text {
  margin: 55px 5%;
}

.m-p-applications .w-main-contents section:not(.width-100pct) {
  margin: 0 5%;
}

.m-p-applications .w-main-contents section.width-100pct &gt; *:not(.w-applications)  {
  margin: 0 5%;
}

.m-p-applications .w-main-contents h2 {
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgb(0, 153, 91);
}

.m-p-applications .w-main-contents .w-applications {
  margin-top: 80px;
  padding: 50px 5% 30px;
  background-color: rgba(251, 251, 251);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.m-p-applications .w-main-contents .w-applications .application-box {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.m-p-applications .w-main-contents .w-applications .application-box h2 {
  font-size: 1.6em;
}

.m-p-applications .w-main-contents .w-applications .application-box .w-img {
  margin-bottom: 35px;
}

.m-p-applications .w-main-contents .w-applications .application-box .w-img img {
  width: 100%;
  object-fit: contain;
}

.m-p-applications .w-main-contents .w-applications .application-box ul {
  padding-left: 20px;
}

.m-p-applications .w-main-contents .w-applications .application-box ul li {
  margin-bottom: 6px;
  padding: 5px 0;
}

.m-p-applications .w-main-contents .w-applications .application-box .w-buttons {
  margin: 0;
  margin-top: auto;
}

.m-p-applications .w-main-contents .w-applications .application-box .w-buttons a {
  width: 100%;
  max-width: 200px;
  padding: 6px 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.9em;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  background-color: rgb(0, 153, 91);
  border-radius: 5px;
  position: relative;
  transition: .3s;
}

.m-p-applications .w-main-contents .w-applications .application-box .w-buttons a:hover {
  opacity: 0.8;
}

.m-p-applications .w-main-contents .w-applications .application-box .w-buttons a .small {
  margin-top: 5px;
  display: block;
  font-size: 0.7em;
}

.m-p-applications .w-main-contents .w-applications .application-box .w-buttons a img {
  width: 22px;
  margin-left: 7px;
}

@media (min-width: 429px) {
  /* breadcrumb */
  .m-p-applications .w-breadcrumb ol {
    margin: 0 8%;
    margin-top: 40px;
  }
  /* ---------- */

  .m-p-applications .w-main-contents {
    margin: 0;
    margin-bottom: 180px;
  }

  .m-p-applications .w-main-contents .w-top-text {
    margin: 60px 8%;
  }

  .m-p-applications .w-main-contents section:not(.width-100pct) {
    margin: 0 8%;
  }

  .m-p-applications .w-main-contents section.width-100pct &gt; *:not(.w-applications)  {
    margin: 0 8%;
  }

  .m-p-applications .w-main-contents .w-applications {
    padding: 50px 8% 30px;
  }
}

@media (min-width: 641px) {
  .m-p-applications .w-main-contents .w-applications .application-box {
    width: 43%;
  }
}

@media (min-width: 1367px) {
  /* breadcrumb */
  .m-p-applications .w-breadcrumb ol {
    margin: 0 15%;
    margin-top: 40px;
  }
  /* ---------- */

  .m-p-applications .w-main-contents {
    margin: 0;
    margin-bottom: 200px;
  }

  .m-p-applications .w-main-contents .w-top-text {
    margin: 60px 15%;
  }

  .m-p-applications .w-main-contents section:not(.width-100pct) {
    margin: 0 15%;
  }

  .m-p-applications .w-main-contents section.width-100pct &gt; *:not(.w-applications)  {
    margin: 0 15%;
  }

  .m-p-applications .w-main-contents .w-applications {
    padding: 50px 15% 30px;
  }
}

/* page-about-ict
------------------------------------------------------------------------*/
/* breadcrumb */
.m-p-about-ict .w-breadcrumb ol {
  margin: 25px 5%;
  margin-bottom: 45px;
}
/* ---------- */

.m-p-about-ict .w-main-contents {
  margin: 0;
}

.m-p-about-ict .w-main-contents .w-contents {
  margin-bottom: 100px;
}

.m-p-about-ict .w-main-contents .w-contents h2 {
  margin: 0 5%;
  margin-bottom: 70px;
  font-size: 36px;
  color: rgb(0, 0, 0);
}

.m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-title {
  margin: 0 5%;
  margin-bottom: 60px;
}

.m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-title h3 {
  margin: 80px 0 50px;
  padding: 14px 20px;
  border-left: 2px solid rgb(0, 153, 91);
  border-bottom: 1px solid rgb(221, 221, 221);
  font-size: 1.6em;
  letter-spacing: 1px;
  line-height: 1.4em;
}

.m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-main .content-box {
  margin: 0 5%;
  margin-bottom: 100px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-text {
  margin-bottom: 60px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-text p {
  margin-bottom: 20px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-text p span {
  display: inline;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote {
  margin: 0;
  margin-bottom: 130px;
  padding: 4.5em 30px;
  border: 4px double rgb(245,245,245);
  border-radius: 5px;
  background-color: rgb(251, 251, 251);
  position: relative;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote img {
  width: 2.5em;
  height: 2.5em;
  position: absolute;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote img:first-child {
  top: 1.5em;
  left: 30px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote img:last-child {
  bottom: 1.5em;
  right: 30px;
  transform: scale(-1, -1);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote cite {
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid rgb(221, 221, 221);
  display: inline-block;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote cite a {
  color: rgb(0, 0, 0);
  text-decoration:none;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-supplement {
  margin-bottom: 60px;
  padding: 15px 24px;
  border-left: 3px dotted rgb(235, 241, 234);
  border-right: 3px dotted rgb(235, 241, 234);
  border-radius: 25px;
  color: rgb(145, 145, 145);
  display: inline-block;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-supplement mark {
  background-color: initial;
  color: rgb(0, 153, 91);
  font-size: 0.8em;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-supplement mark img {
  width: 1.5em;
  height: 1.5em;
  margin-right: 3px;
  vertical-align: text-bottom;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-supplement p {
  margin-bottom: 0;
  font-size: 0.8em;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-content-title h4 {
  margin-bottom: 13px;
  padding: 20px 0;
  border-top: 2px solid rgb(111, 157, 139);
  border-bottom: 2px solid rgb(111, 157, 139);
  font-size: 1.5em;
  color: rgb(0, 153, 91);
  text-align: center;
  letter-spacing: 1px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections {
  padding: 15px 8%;
  border-radius: 5px;
  background-color: rgb(232, 243, 230);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections .inspection-box {
  width: 45%;
  box-sizing: border-box;
}


.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections .inspection-box .w-img {
  margin: 5%;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections .inspection-box .w-img img {
  width: 100%;
  vertical-align: middle;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections .inspection-box .w-title {
  text-align: center;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 {
  margin: 0;
  margin-bottom: 100px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle .w-content-title {
  width: 100%;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle .w-content-title h4 {
  margin-bottom: 67px;
  padding: 20px 0;
  border-top: 1px solid rgb(181, 181, 181);
  border-bottom: 1px solid rgb(181, 181, 181);
  color: rgb(82, 82, 82);
  font-size: 1.5em;
  letter-spacing: 1px;
  text-align: center;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle {
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: rgb(251, 251, 251);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details {
  width: 100%;
  margin-bottom: 30px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details summary {
  padding: 30px;
  padding-right: 70px;
  border-radius: 5px;
  display: block;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
  position: relative;
  transition: .3s;
  box-shadow: 0 3px 36px -21px rgb(221 221 221);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details summary::-webkit-details-marker {
  display: none;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details summary::before,
.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details summary::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  transition: .3s;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details summary::before {
  right: 42px;
  transform: translateY(-50%) rotate(45deg);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details[open] summary::before {
  right: 42px;
  transform: translateY(-50%) rotate(-45deg);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details summary::after {
  right: 36px;
  transform: translateY(-50%) rotate(-45deg);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details[open] summary::after {
  right: 36px;
  transform: translateY(-50%) rotate(45deg);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details[open] summary {
  background-color: rgb(239, 245, 238);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details .w-main {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details .w-main-left {
  left: 0;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details .w-main-right {
  right: 0;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details .w-main .main {
  margin-top: 10px;
  padding: 30px;
  border: 3px solid rgb(239, 245, 238);
  border-radius: 5px;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box {
  margin-bottom: 30px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-title h4 {
  margin-bottom: 40px;
  padding: 17px 31px;
  border-top: 1px solid rgb(0, 153, 91);
  border-bottom: 1px solid rgb(0, 153, 91);
  display: inline-block;
  color: rgb(0, 153, 91);
  font-size: 1.1em;
  position: relative;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-title h4:before {
  content: "";
  display: block;
  width: 5px;
  height: 25px;
  border-radius: 2px;
  background-color: rgb(0, 153, 91);
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-text,
.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-img {
  width: 100%;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-text p {
  margin-bottom: 17px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-img img {
  width: 100%;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 {
  margin-bottom: 120px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison .w-title h4 {
  margin-bottom: 40px;
  padding: 17px 31px;
  border-top: 1px solid rgb(0, 153, 91);
  border-bottom: 1px solid rgb(0, 153, 91);
  color: rgb(0, 153, 91);
  font-size: 1.1em;
  position: relative;
  display: inline-block;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison .w-title h4:before {
  content: "";
  display: block;
  width: 5px;
  height: 25px;
  border-radius: 2px;
  background-color: rgb(0, 153, 91);
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure {
  width: 100%;
  overflow-x: auto;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table {
  width: 100%;
  min-width: 500px;
  table-layout: fixed;
  border-spacing: 0 4px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table tr:first-child th:not(:first-child) {
  border-bottom: 2px solid rgb(71 129 107);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table tr:not(:first-child) {
  background-color: rgb(246 248 247);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table tr:nth-child(even) {
  background-color: rgb(251, 251, 251);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table th,
.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table td {
  padding: 20px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table tr td:nth-of-type(1) {
    border-right: 2px solid rgb(255, 255, 255);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table tr td:last-child {
    border-left: 2px solid rgb(255, 255, 255);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 .feature-comparison figure table th:first-child {
  width: 23%;
  border: none;
  border-right: 40px solid rgb(255, 255, 255);
  background-color: rgb(0, 153, 91);
  border-radius: 5px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  box-sizing: border-box;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure {
  width: 100%;
  overflow-x: auto;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure table {
  width: 100%;
  min-width: 500px;
  margin-bottom: 30px;
  table-layout: fixed;
  border-spacing: 0 4px;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure table tr:first-child th:not(:first-child) {
  border-bottom: 2px solid rgb(71 129 107);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure table tr:not(:first-child) {
  background-color: rgb(246 248 247);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure table tr:nth-child(even) {
  background-color: rgb(251, 251, 251);
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure table th,
.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure table td {
  padding: 20px;
  text-align: center;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison figure table th:first-child {
  width: 23%;
  border: none;
  border-right: 40px solid rgb(255, 255, 255);
  background-color: rgb(0, 153, 91);
  border-radius: 5px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  box-sizing: border-box;
}

.m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-6 .ability-comparison .w-supplement p {
  margin: 0;
  margin-bottom: 10px;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 {
  margin: 0;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market {
  padding: 50px 5%;
  background-color: rgb(251, 251 ,251);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box {
  width: 45%;
  margin-bottom: 50px;
  cursor: pointer;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box:hover .w-img img {
  filter: brightness(1);
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box:hover .w-img::after {
  visibility: visible;
  opacity: 1;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-img {
  font-size: 0;
  position: relative;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: 5px;
  filter: brightness(0.7);
  transition: .3s;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-img::after {
  content: "隧ｳ縺励￥隕九ｋ";
  display: flex;
  width: 90%;
  height: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  color: rgb(0, 153, 91);
  letter-spacing: 1px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-title h3 {
  margin: 20px 0;
  padding-right: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgb(200, 200, 200);
  font-size: 1em;
  letter-spacing: 2px;
  position: relative;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-title h3::before,
.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-title h3::after {
  content: "";
  display: block;
  background-color: rgb(200, 200, 200);
  position: absolute;
  right: 0;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-title h3::before {
  width: 20px;
  height: 2px;
  top: 16px;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-title h3::after {
  width: 8px;
  height: 2px;
  top: 13px;
  transform: rotate(45deg);
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-detail {
  width: 700px;
  max-width: 90%;
  padding: 30px 50px;
  border: 1px solid rgb(243, 243, 243);
  box-sizing: border-box;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 0 20px -2px rgb(243, 243, 243);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  transition: .3s;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-detail .popup-close-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 19px;
  right: 22px;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-detail .popup-close-icon:before,
.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-detail .popup-close-icon::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 5px;
  background-color: rgb(155, 155, 155);
  position: absolute;
  top: 20px;
  right: 8px;
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-detail .popup-close-icon:before {
  transform: rotate(45deg);
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-detail .popup-close-icon::after {
  transform: rotate(-45deg);
}

.m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-curtain {
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: .3s;
}

.m-p-about-ict .w-main-contents .w-contents-3 .w-content-title ,
.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-1,
.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 {
  position: relative;
  z-index: -1;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-1 .w-img img {
  width: 100%;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box .w-img {
  width: 100%;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box .w-img img {
  width: 100%;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box .w-text {
  width: 100%;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column-reverse;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-top: 1px solid rgb(0, 153, 91);
  border-bottom: 1px solid rgb(0, 153, 91);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text p {
  margin-bottom: 12px;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text p a {
  margin-bottom: 5px;
  display: block;
  text-decoration: none;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text p a img {
  width: 0.8em;
  margin-left: 5px;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text::before,
.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text::after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background: rgb(0, 153, 91);
  position: absolute;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text::before {
  top: 0;
  left: 0;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text::after {
  bottom: 0;
  right: 0;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-img {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-img img {
  width: 100%;
  max-width: 450px;
  border-radius: 5px;
  box-shadow: 0 0 20px -10px rgb(221 221 221);
}

.m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons .reason-box {
  width: 100%;
  min-height: 300px;
  margin-bottom: 20px;
  position: relative;
}


.m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons .reason-box .w-title {
  font-size: 1.3em;
  color: rgb(0, 153, 91);
}

.m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons .reason-box .w-img {
  width: 40%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.1;
}

.m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons .reason-box .w-img img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

@media (min-width: 429px) {
  /* breadcrumb */
  .m-p-about-ict .w-breadcrumb ol {
    margin: 40px 8%;
    margin-bottom: 100px;
  }
  /* ---------- */
  .m-p-about-ict .w-main-contents .w-contents {
    margin-bottom: 200px;
  }

  .m-p-about-ict .w-main-contents .w-contents h2 {
    margin: 0 8%;
    margin-bottom: 70px;
  }

  .m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-title {
    margin: 0 8%;
    margin-bottom: 60px;
  }

  .m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-title h3 {
    padding: 20px 40px;
    line-height: 2em;
  }

  .m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-main .content-box {
    margin: 0 8%;
    margin-bottom: 100px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 {
    margin: 0;
    margin-bottom: 100px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle {
    padding: 24px 8%;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 {
    margin-bottom: 150px;
  }

  .m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 {
    margin: 0;
  }

  .m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market {
    padding: 50px 8%;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box .w-img {
    width: 45%;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box .w-text {
    width: 45%;
  }
}

@media (min-width: 641px) {
  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote {
    margin-bottom: 200px;
    padding: 6.5em 50px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote cite {
    margin-top: 40px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote img {
    width: 4.5em;
    height: 4.5em;
    position: absolute;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote img:first-child {
    top: 1.5em;
    left: 50px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box blockquote img:last-child {
    bottom: 1.5em;
    right: 50px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections {
    padding: 40px 5%;
    justify-content: flex-start;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections .inspection-box {
    width: 33%;
    padding: 2%;
    text-align: center;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle {
    padding: 24px 15%;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main {
    flex-direction: row;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-text,
  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-img {
    width: 45%;
  }

  .m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box {
    width: 27%;
  }

  .m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market .market-box .w-title h3 {
    font-size: 1.2em;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box {
    width: 30%;
    flex-direction: column;
    justify-content: flex-start;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box .w-img {
    width: 100%;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-2 .w-items .item-box .w-text {
    width: 100%;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box {
    flex-direction: row;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-text {
    width: 45%;
  }

  .m-p-about-ict .w-main-contents .w-contents-3 .contents-row .w-contents-main .content-box-3-3 .sales-agent-box .w-img {
    width: 45%;
  }

  .m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons {
    justify-content: space-between;
  }

  .m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons .reason-box {
    width: 45%;
  }
}

@media (min-width: 835px) {
  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details {
    width: 45%;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details .w-main {
    width: calc((20% / 9) * 100);
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 .w-measuring-principle details .w-main-right {
    right: calc((20% / 9) * 100 - 100%);
  }

  .m-p-about-ict .w-main-contents .w-contents-4 .contents-row .w-contents-main .content-box-4-1 .w-reasons .reason-box .w-title {
    font-size: 1.7em;
  }
}

@media (min-width: 1025px) {
  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-1 .about-box .w-text p span {
    display: inline-block;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections {
    padding: 15px 8%;
    justify-content: flex-start;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-2 .w-inspections .inspection-box {
    width: 20%;
    padding: 3%;
  }
}

@media (min-width: 1367px) {
  /* breadcrumb */
  .m-p-about-ict .w-breadcrumb ol {
    margin: 40px 15%;
    margin-bottom: 100px;
  }
  /* ---------- */

  .m-p-about-ict .w-main-contents .w-contents h2 {
    margin: 0 15%;
    margin-bottom: 70px;
  }

  .m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-title {
    margin: 0 15%;
    margin-bottom: 60px;
  }

  .m-p-about-ict .w-main-contents .w-contents .contents-row .w-contents-main .content-box {
    margin: 0 15%;
    margin-bottom: 100px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-3 {
    margin: 0;
    margin-bottom: 100px;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main {
    flex-direction: row;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-text,
  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-4 .w-types .type-box .w-main .w-img {
    width: 45%;
  }

  .m-p-about-ict .w-main-contents .w-contents-1 .contents-row .w-contents-main .content-box-1-5 {
    margin-bottom: 180px;
  }

  .m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 {
    margin: 0;
  }

  .m-p-about-ict .w-main-contents .w-contents-2 .contents-row .w-contents-main .content-box-2-1 .w-market {
    padding: 50px 15%;
  }
}

/* single
------------------------------------------------------------------------*/
/* breadcrumb */
.m-s .w-breadcrumb ol {
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.m-s .w-breadcrumb ol li {
  margin-right: 2em;
  margin-bottom: 5px;
  font-size: 10px;
  position: relative;
}

.m-s .w-breadcrumb ol li:not(:last-child):before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 1px solid rgb(221, 221, 221);
  border-right: 1px solid rgb(221, 221, 221);
  top: 50%;
  right: -1em;
  transform: translateY(-50%) rotate(45deg);
}

.m-s .w-breadcrumb ol li a {
  display: inline-block;
  text-decoration: none;
  font-size: 10px;
}
/* ---------- */

.m-s .w-header-content {
  width: 100%;
  height: 30vh;
  min-height: 250px;
  position: relative;
  box-shadow: 0px -8px 8px -1px rgba(231, 231, 231, 0.16) inset;
}

.m-s .w-header-content figure {
  width: 100%;
  height: 100%;
}

.m-s .w-header-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
  margin: 0 0 0 auto;
  position: relative;
  z-index: -1;
}

.m-s .w-header-content .w-text {
  position: absolute;
  bottom: 5%;
  left: 5%;
}

.m-s .w-header-content .w-text .title-en {
  margin-bottom: 2px;
  font-size: 3em;
  font-weight: 600;
  color: rgba(179, 179, 179, 0.8);
  letter-spacing: 2px;
  mix-blend-mode: color-burn;
}

.m-s .w-header-content .w-text h2 {
  margin: 0 0 23px;
  font-size: 1.2em;
  color: rgb(0, 153, 91);
  letter-spacing: 2px;
  position: relative;
}

.m-s .w-main-contents {
  margin: 0 5%;
  margin-top: 25px;
  margin-bottom: 150px;
}

.m-s .normal-button a {
  padding: 15px 20px;
  font-weight: normal;
  letter-spacing: 2px;
  font-size: 0.9em;
  transition: .3s;
  border: 3px solid rgb(0, 153, 91);
}

.m-s .normal-button a:hover {
  color: rgb(0, 153, 91) !important;
  background-color: rgb(255, 255, 255) !important;
}

@media (min-width: 429px) {
  /* breadcrumb */
  .m-s .w-breadcrumb ol {
    margin: 0;
    margin-bottom: 60px;
  }

  .m-s .w-breadcrumb ol li {
    font-size: 12px;
  }

  .m-s .w-breadcrumb ol li a {
    font-size: 12px;
  }
  /* ---------- */

  .m-s .w-header-content .w-text {
    left: 8%;
  }

  .m-s .w-main-contents {
    margin: 0 8%;
    margin-top: 40px;
    margin-bottom: 180px;
  }

  .m-s .normal-button a {
    padding: 20px 40px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 1em;
  }
}

@media (min-width: 1367px) {
  .m-s .w-header-content .w-text {
    left: 15%;
  }

  .m-s .w-main-contents {
    margin: 0 15%;
    margin-top: 40px;
    margin-bottom: 200px;
  }
}

/* single-products
------------------------------------------------------------------------*/
.m-s-p .w-main-contents {
  margin: 0 5%;
  margin-top: 25px;
  margin-bottom: 150px;
}

.m-s-p .w-main-contents .category {
  margin-bottom: 7px;
  color: rgb(221, 221, 221);
  font-size: 1em;
  font-weight: normal;
}

.m-s-p .w-main-contents .w-title .w-tag {
  position: relative;
  padding: 20px 0;
}
.m-s-p .w-main-contents .w-title .w-tag .tag {
  padding-left: 6px;
  position: absolute;
  top: 0;
  left: -10px;
}

.m-s-p .w-main-contents .w-title .w-tag .tag::before {
  content: "";
  width: 195%;
  height: 210%;
  position: absolute;
  top: -30%;
  right: -95%;
  background: #00995b;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.m-s-p .w-main-contents .w-title .w-tag .tag span {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 1.2em;
  text-shadow: 2px 2px 10px rgb(93 93 93);
}

.m-s-p .w-main-contents .w-title h1 {
  margin: 0;
  margin-top: 10px;
  font-size: 2em;
  letter-spacing: 2px;
}

.m-s-p .w-main-contents h2 {
  margin: 80px 0 50px;
  padding: 14px 20px;
  border-bottom: 1px solid rgb(221, 221, 221);
  border-left: 2px solid rgb(0, 153, 91);
  line-height: 1.4em;
}

.m-s-p .w-main-contents h3 {
  margin: 50px 0 20px;
}

.m-s-p .w-main-contents p {
  margin: 15px 0;
  line-height: 1.5em;
}

.m-s-p .w-main-contents iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  width:100%;
  height:100%;
}

.m-s-p .w-applications-and-options .w-lineup {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.m-s-p .w-applications-and-options h3 {
  padding: 20px 38px;
  background-color: rgb(251, 251, 251);
}

.m-s-p .w-applications-and-options .w-lineup .product-box {
  width: 47%;
  margin-right: 0;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.m-s-p .w-applications-and-options .w-lineup .product-box a {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.m-s-p .w-applications-and-options .w-lineup .product-box a:hover img {
  scale: 1.05;
}

.m-s-p .w-applications-and-options .w-lineup .product-box a .tag {
  padding-left: 6px;
  position: absolute;
  top: -10px;
  left: -10px;
}

.m-s-p .w-applications-and-options .w-lineup .product-box a .tag::before {
  content: "";
  width: 175%;
  height: 175%;
  position: absolute;
  top: 0;
  right: -75%;
  background: #00995b;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.m-s-p .w-applications-and-options .w-lineup .product-box a .tag span {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 0.7em;
  text-shadow: 2px 2px 10px rgb(93 93 93);
}

.m-s-p .w-applications-and-options .w-lineup .product-box .w-img {
  margin-bottom: 10px;
  overflow: hidden;
}

.m-s-p .w-applications-and-options .w-lineup .product-box .w-img img {
  width: 100%;
  border-radius: 5px;
  transition: .3s;
  position: relative;
  z-index: -1;
}

.m-s-p .w-applications-and-options .w-lineup .product-box .w-text h4 {
  margin: 0;
}

.m-s-p .w-related-products {
  padding: 50px 5%;
  background-color: rgb(251, 251, 251);
}

.m-s-p .w-related-products h4 {
  font-size: 2em;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.m-s-p .w-related-products .category {
  margin-top: 10px;
  margin-bottom: 25px;
  color: rgb(221, 221, 221);
}

.m-s-p .w-related-products .w-lineup {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.m-s-p .w-related-products .w-lineup .product-box {
  width: calc(45% - 10px);
  padding: 10px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.m-s-p .w-related-products .w-lineup .product-box .w-img a {
  display: block;
}

.m-s-p .w-related-products .w-lineup .product-box .tag {
  padding-left: 6px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.5em;
}

.m-s-p .w-related-products .w-lineup .product-box .tag::before {
  content: "";
  width: 175%;
  height: 175%;
  position: absolute;
  top: 0;
  right: -75%;
  background: #00995b;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.m-s-p .w-related-products .w-lineup .product-box .tag span {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 0.7em;
  text-shadow: 2px 2px 10px rgb(93 93 93);
}

.m-s-p .w-related-products .w-lineup .product-box .w-img img {
  width: 100%;
}

.m-s-p .w-related-products .w-lineup .product-box .w-text {  
  border-top: 1px solid rgb(221, 221, 221);
}

.m-s-p .w-related-products .w-lineup .product-box .w-text h5 {
  margin: 0;
  margin-bottom: 7px;
  padding-top: 16px;
  font-size: 1.2em;
  color: rgb(0, 153, 91);
}

.m-s-p .w-related-products .w-lineup .product-box .w-text p {
  font-size: 0.9em;
  line-height: 1.5em;
}

.m-s-p .w-related-products .w-lineup .product-box .w-buttons {
  margin: 0;
  margin-top: auto;
}

.m-s-p .w-related-products .w-lineup .product-box .w-buttons a {
  padding: 7px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.9em;
  color: rgb(255, 255, 255);
  letter-spacing: 1px;
  background-color: rgb(0, 153, 91);
  border-radius: 5px;
  position: relative;
  transition: .3s;
}

.m-s-p .w-related-products .w-lineup .product-box .w-buttons img {
  width: 23px;
  margin-left: 7px;
}

.m-s-p .w-related-products .view-lineup {
  width: 90%;
  max-width: 200px;
  margin-top: 35px;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  color: rgb(0, 153, 91);
  letter-spacing: 1px;
  position: relative;
  transition: .3s;
}

.m-s-p .w-related-products .view-lineup:hover {
  color: rgba(59, 223, 94, 1);
}

.m-s-p .w-related-products .view-lineup:before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  transition: .3s;
}

.m-s-p .w-related-products .view-lineup:after {
  content: "";
  display: block;
  width: 12px;
  height: 1px;
  position: absolute;
  background-color: rgb(0, 153, 91);
  top: 15px;
  right: 3px;
  transform: rotate(45deg);
  transition: .3s;
}

.m-s-p .w-related-products .view-lineup:hover::before {
  right: -3px;
  background-color: rgba(59, 223, 94, 1);
}

.m-s-p .w-related-products .view-lineup:hover::after {
  right: -4px;
  background-color: rgba(59, 223, 94, 1);
}

@media (min-width: 429px) {
  .m-s-p .w-main-contents {
    margin: 0 8%;
    margin-top: 40px;
    margin-bottom: 180px;
  }

  .m-s-p .w-main-contents .category {
    margin-bottom: 21px;
    font-size: 1.2em;
    font-weight: 600;
  }

  .m-s-p .w-main-contents .w-title h1 {
    font-size: 3em;
  }

  .m-s-p .w-main-contents h2 {
    padding: 20px 40px;
    line-height: 2em;
  }

  .m-s-p .w-related-products {
    padding: 50px 8%;
  }
}

@media (min-width: 641px) {
  .m-s-p .w-applications-and-options .w-lineup {
    justify-content: flex-start;
  }

  .m-s-p .w-applications-and-options .w-lineup .product-box {
    width: calc(33% - 40px);
    margin-right: 40px;
  }
}

@media (min-width: 835px) {
  .m-s-p .w-main-contents .w-title h1 {
    font-size: 4.2em;
  }

  .m-s-p .w-related-products .w-lineup .product-box .tag {
    font-size: 1.2em;
  }

  .m-s-p .w-related-products .w-lineup .product-box {
    width: calc(25% - 70px);
    margin-right: 50px;
  }
}

@media (min-width: 1025px) {
  .m-s-p .w-applications-and-options .w-lineup .product-box {
    width: calc(20% - 50px);
    margin-right: 50px;
  }
}

@media (min-width: 1367px) {
  .m-s-p .w-main-contents {
    margin: 0 15%;
    margin-top: 40px;
    margin-bottom: 200px;
  }

  .m-s-p .w-related-products {
    padding: 50px 15%;
  }
}

/* single-news
------------------------------------------------------------------------*/
.m-s-n .w-main-contents .w-time time {
  margin-bottom: 8px;
  display: inline-block;
  font-size: 0.8em;
  color: rgb(177, 177, 177);
  letter-spacing: 3px;
}

.m-s-n .w-main-contents .w-category .news-category {
  margin: 0 10px;
  margin-bottom: 10px;
  margin-left: 0;
  padding: 7px 11px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  display: inline-block;
  border-radius: 5px;
}

.m-s-n .w-main-contents h1 {
  margin: 15px 0 30px;
}

.m-s-n .w-main-contents .news-thumbnail {
  margin: 0 auto;
  margin-bottom: 45px;
  width: 100%;
  max-width: 1024px;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 5px;
}

.m-s-n .w-main-contents p {
  margin: 15px 0;
  line-height: 1.5em;
}

@media (min-width: 429px) {
  .m-s-n .w-main-contents .w-time time {
    margin-bottom: 13px;
    font-size: 1.2em;
  }

  .m-s-n .w-main-contents .w-category .news-category {
    margin: 10px;
    margin-left: 0;
    padding: 10px 15px;
  }

  .m-s-n .w-main-contents h1 {
    margin: 30px 0 50px;
  }

  .m-s-n .w-main-contents .news-thumbnail {
    margin-bottom: 100px;
  }
}

@media (min-width: 835px) {
  .m-s-n .w-main-contents h1 {
    margin: 70px 0 80px;
  }
}


/* search
------------------------------------------------------------------------*/
.m-search .w-main-contents {
  margin: 100px 5%;
  line-height: 1.7em;
}

.m-search .w-main-contents .w-searchform {
  margin-bottom: 40px;
}

.m-search .w-main-contents .w-searchform .search-form {
  display: flex;
}

.m-search .w-main-contents .w-searchform .search-form .text-box {
  width: 100%;
  max-width: 500px;
  margin-right: 15px;
  padding: 6px 10px;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
}

.m-search .w-main-contents .w-searchform .search-form .btn-search {
  padding: 12px 6px 10px;
  border: solid 1px rgb(204, 204, 204);
  border-radius: 4px;
  background-color: rgb(245, 245, 245);
  text-align: center;
  line-height: 1;
  transition: all .2s ease 0s;
}

.m-search .w-main-contents .w-found-number {
  margin-bottom: 70px;
  font-weight: 600;
}

.m-search .w-main-contents .w-search-result h1 {
  margin-bottom: 50px;
  color: rgb(0, 153, 91);
}

.m-search .w-main-contents .w-search-result .result-box {
  margin-bottom: 45px;
}

.m-search .w-main-contents .w-search-result .result-box h2 {
  margin-bottom: 5px;
  font-size: 1.3em;
}

.m-search .w-main-contents .w-search-result .result-box h2 a {
  text-decoration: none;
  color: rgb(0, 153, 91);
}

.m-search .w-main-contents .w-search-result .result-box h2 a:hover {
  text-decoration: underline;
}

.m-search .w-main-contents .w-search-result .result-box p {
  margin: 0;
  font-size: 0.9em;
}

@media (min-width: 429px) {
  .m-search .w-main-contents {
    margin: 150px 8%;
  }
}

@media (min-width: 1367px) {
  .m-search .w-main-contents {
    margin: 200px 15%;
  }
}
</pre></body></html>