@charset "UTF-8";
/*--------------------------------------------------------------
* フォントの読み込み
----------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&family=Quicksand:wght@700&display=swap");
/*--------------------------------------------------------------
* 使用font の変数
----------------------------------------------------------------*/
/*--------------------------------------------------------------
* フォントサイズ の変数
----------------------------------------------------------------*/
/* pc
_______________________________________________________________________________________________________*/
/* sp
_______________________________________________________________________________________________________*/
/* =========================================================================================================
	共通定義する値
========================================================================================================= */
/* コンテンツ幅
_______________________________________________________________________________________________________*/
/* 使用色
_______________________________________________________________________________________________________*/
/*--------------------------------------------------------------
* globalフォルダの_index.scss
----------------------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 auto;
  padding: 0;
  background-color: #F7F7F7;
  color: #3B3B3B;
  letter-spacing: 0;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: auto;
}

a:link, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

img {
  vertical-align: middle;
  max-width: 100%;
  image-rendering: auto;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/*--------------------------------------------------------------
* foundationフォルダの_index.scss
----------------------------------------------------------------*/
.l-header {
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 20;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header__inner {
  background: transparent;
  width: 100%;
  height: 80px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 20;
}
.l-header__logo {
  width: 203px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.l-header__logo.is-show {
  opacity: 0;
  visibility: visible;
}
.l-header__glonal-nav {
  width: 100%;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s cubic-bezier(0.51, 0.07, 0.74, 0.89);
  transition: 0.4s cubic-bezier(0.51, 0.07, 0.74, 0.89);
  position: absolute;
  top: 0;
  z-index: -1;
}
.l-header__glonal-nav.is-show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
* layoutフォルダの_index.scss
----------------------------------------------------------------*/
.l-mv {
  background: #9ED5D5;
  width: 100%;
  padding-top: 74px;
  padding-bottom: 50px;
}
.l-mv__inner {
  margin: 0 auto;
  padding: 0 20px;
}

.l-about {
  background: #F7F7F7;
  padding-top: 107px;
}

.l-place {
  background: #FFFFFF;
  padding-bottom: 125px;
}

.l-works {
  background: #FFFFFF;
  padding-bottom: 109px;
}

.l-product {
  padding-top: 114px;
  padding-bottom: 83px;
  background: #F7F7F7;
}

.l-features {
  background: #FCFCFC;
  padding-top: 115px;
  padding-bottom: 93px;
}

.l-siaa {
  padding-top: 89px;
}

.l-contact {
  background: #F7F7F7;
  padding-top: 96px;
  padding-bottom: 115px;
}

.l-customer {
  padding-bottom: 122px;
}

.l-under-works-top {
  padding-top: 80px;
  background: #F7F7F7;
}

.l-under-works {
  padding-top: 80px;
  background: #F7F7F7;
}

.l-news-top {
  padding-top: 80px;
}

.l-policy {
  padding-top: 80px;
  background: #F7F7F7;
}

/*--------------------------------------------------------------
* layoutフォルダの_index.scss
----------------------------------------------------------------*/
.c-content-inner {
  margin: 0 auto;
  padding: 0 20px;
}

.c-contact-button {
  border-radius: 21px;
  padding: 10px 60px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  min-width: 240px;
}
.c-contact-button::after {
  content: "";
  position: absolute;
  top: 40%;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #297C7C;
  border-right: 2px solid #297C7C;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-contact-button:hover .c-contact-button::after {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

a:hover .c-contact-button::after {
  -webkit-transform: translateX(5px) rotate(-45deg);
          transform: translateX(5px) rotate(-45deg);
}

.c-good-pic {
  border-radius: 9px;
  background: #FFFFFF;
  color: #297C7C;
  position: relative;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-good-pic:nth-of-type(1) {
  padding-top: 33px;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.c-good-pic:nth-of-type(1) .c-good-pic__img {
  margin-bottom: 17px;
}
.c-good-pic:nth-of-type(2) {
  padding-top: 40px;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.c-good-pic:nth-of-type(2) .c-good-pic__img {
  margin-bottom: 21px;
}
.c-good-pic:nth-of-type(3) {
  padding-top: 32px;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.c-good-pic:nth-of-type(3) .c-good-pic__img {
  margin-bottom: 21px;
}
.c-good-pic:nth-of-type(4) {
  padding-top: 35px;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
.c-good-pic:nth-of-type(4) .c-good-pic__img {
  margin-bottom: 21px;
}
.c-good-pic__no-area {
  position: absolute;
  top: -22px;
  left: 4px;
}
.c-good-pic__no {
  font-family: "Quicksand";
  font-weight: 700;
  font-size: 19px;
  font-size: 1.9rem;
  left: 50%;
  position: relative;
}
.c-good-pic__no::before {
  content: "";
  background: #297C7C;
  border-radius: 2px;
  width: 8px;
  height: 1px;
  position: absolute;
  top: 27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-good-pic__no::after {
  content: "Good!";
  font-size: 12px;
  font-size: 1.2rem;
  position: absolute;
  top: 28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.c-good-pic__img {
  margin-bottom: 16px;
}
.c-good-pic__title {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  width: 100%;
}
.c-good-pic__title span {
  display: block;
}

.c-content-heading {
  color: #297C7C;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  text-align: center;
  margin-bottom: 72px;
}
.c-content-heading::after {
  content: "";
  background: #297C7C;
  width: 2px;
  height: 20px;
  position: absolute;
  top: 44px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-test-heading {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.c-test-heading__top {
  display: block;
  background: #297C7C;
  color: #FFFFFF;
  padding: 8px 10px;
}
.c-test-heading__bottom {
  display: block;
  padding: 20px 0;
}

/*--------------------------------------------------------------
* componetフォルダの_index.scss
----------------------------------------------------------------*/
.js-product-item.is-active .p-product-content__item-top::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.js-fade-in {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}
.js-fade-in.is-show {
  opacity: 1;
}

/*--------------------------------------------------------------
* javascriptフォルダの_index.scss
----------------------------------------------------------------*/
.p-hamburger {
  position: relative;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.p-hamburger__line {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  left: 6px;
  background: #FFFFFF;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.p-hamburger__line:nth-child(1) {
  top: 10px;
}
.p-hamburger__line:nth-child(2) {
  top: 20px;
}
.p-hamburger__line:nth-child(3) {
  top: 30px;
}
.p-hamburger.is-active .p-hamburger__line {
  background: #297C7C;
}
.p-hamburger.is-active .p-hamburger__line:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-hamburger.is-active .p-hamburger__line:nth-child(2), .p-hamburger.is-active .p-hamburger__line:nth-child(3) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-global-nav {
  background: #9ED5D5;
  color: #FFFFFF;
  width: 100%;
}
.p-global-nav__header-logo {
  width: 203px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin-left: 20px;
  padding-top: 27px;
}
.p-global-nav__inner {
  height: 100vh;
  padding: 60px 45px;
  overflow-y: auto;
}
.p-global-nav__items {
  margin-bottom: 25px;
}
.p-global-nav__item {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
.p-global-nav__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.p-global-nav__logo {
  display: none;
}
.p-global-nav__tel01 {
  display: block;
  font-family: "Quicksand";
  font-size: 20px;
  font-size: 2rem;
  font-size: 20px;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.p-global-nav__tel02 {
  display: block;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 12px;
}
.p-global-nav__button {
  display: inline-block;
  background: #FFFFFF;
  color: #297C7C;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 7px 22px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  min-width: 100px;
}
.p-global-nav__button::after {
  right: 10px;
  border-color: #FFFFFF;
}
.p-global-nav__you-tube {
  display: block;
  font-size: 16px;
  font-size: 4.2666666667vw;
  letter-spacing: -0.02em;
  font-weight: 700;
  padding-left: 46px;
  position: relative;
}
.p-global-nav__you-tube::before {
  content: "";
  background: url("../img/icon_youtube.png") no-repeat center center;
  background-size: contain;
  width: 38px;
  height: 30px;
  position: absolute;
  top: -4px;
  left: 0;
}

.p-footer-top {
  background-color: #297C7C;
  color: #FFFFFF;
  position: relative;
  text-align: center;
}
.p-footer-top::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 100px;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url("../img/icon_qanda.svg") no-repeat center top;
}
.p-footer-top__inner {
  background: url("../img/img_footer01-sp.png") no-repeat;
  background-position: bottom;
  background-size: 62%;
  padding-bottom: 180px;
  padding-bottom: 48vw;
}
.p-footer-top__content {
  padding: 84px 0 36px;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer-top__heading {
  font-size: 18px;
  font-size: 4.8vw;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.p-footer-top__heading span {
  display: block;
}
.p-footer-top__button {
  display: inline-block;
  background: #FFFFFF;
  color: #297C7C;
  margin-bottom: 25px;
  padding: 10px 60px;
  letter-spacing: 0;
}
.p-footer-top__button::after {
  border-bottom: 2px solid #297C7C;
  border-right: 2px solid #297C7C;
  right: 44px;
}
.p-footer-top__tel01 {
  display: block;
  font-family: "Quicksand";
  font-size: 34px;
  font-size: 3.4rem;
  font-size: 34px;
  font-size: 9.0666666667vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.p-footer-top__tel02 {
  display: block;
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: 15px;
  font-size: 1.5rem;
}

.p-footer-bottom {
  padding: 45px 0;
}
.p-footer-bottom__content-left {
  margin-bottom: 28px;
}
.p-footer-bottom__content-address-name {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.p-footer-bottom__content-address01, .p-footer-bottom__content-address02, .p-footer-bottom__content-address03 {
  letter-spacing: 0.1em;
  line-height: 2;
}
.p-footer-bottom__content-address01 .p-footer-bottom__content-address01-sp, .p-footer-bottom__content-address02 .p-footer-bottom__content-address01-sp, .p-footer-bottom__content-address03 .p-footer-bottom__content-address01-sp {
  display: block;
}
.p-footer-bottom__content-address01 {
  margin-bottom: -4px;
}
.p-footer-bottom__content-address02 {
  margin-bottom: 5px;
}
.p-footer-bottom__content-address03 {
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.p-footer-bottom__content-address04 {
  font-size: 16px;
  font-size: 1.6rem;
}
.p-footer-bottom__tel01 {
  display: block;
  font-family: "Quicksand";
  font-size: 34px;
  font-size: 3.4rem;
  font-size: 32px;
  font-size: 8.5333333333vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #297C7C;
  margin-bottom: 17px;
}
.p-footer-bottom__tel02 {
  display: block;
  letter-spacing: 0.14em;
  line-height: 2;
  margin-bottom: 24px;
  font-size: 15px;
  font-size: 1.5rem;
}
.p-footer-bottom__button {
  display: none;
}

/* =========================================================================================================
	* 下層共通箇所
========================================================================================================= */
.under-main {
  margin-top: 167px;
}

.page_title {
  color: #297C7C;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
  text-align: center;
  line-height: 1.5;
}

.page_title::after {
  content: "";
  background: #297C7C;
  width: 2px;
  height: 20px;
  position: absolute;
  top: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/*contact,news,works共通*/
.main_text {
  margin-top: 73px;
  color: #297C7C;
  letter-spacing: 0.04em;
  line-height: 1.64;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.error_text {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.error_text p {
  margin-bottom: 20px;
}

.top_return_button {
  background-color: #297C7C;
  border: none;
  color: #fff !important;
  padding: 12px;
  width: 242px;
  border-radius: 35px;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

/*--------------------------------------------------------------
* projectフォルダの_index.scss
----------------------------------------------------------------*/
.p-mv-content__left {
  margin-bottom: 0px;
}
.p-mv-content__logo-sp {
  width: 279px;
  margin: 0 auto;
  margin-bottom: 44px;
}
.p-mv-content__logo-pc {
  display: none;
}
.p-mv-content__main-img-sp {
  margin-bottom: 31px;
}
.p-mv-content__main-img-sp img {
  max-width: 98%;
}
.p-mv-content__main-img-pc {
  display: none;
}
.p-mv-content__lead {
  color: #FFFFFF;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 35px;
  line-height: 1.6;
}
.p-mv-content__news {
  background: #FFFFFF;
  color: #297C7C;
  padding: 4px 27px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-mv-content__news-date {
  display: block;
  font-family: "Quicksand";
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  padding-right: 8px;
  margin-right: 4px;
  border-right: 2px solid #297C7C;
}
.p-mv-content__news-text {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 120px;
  width: 32vw;
}

.p-about-content {
  padding-bottom: 109px;
}
.p-about-content__logo {
  max-width: 210px;
  margin: 0 auto;
  margin-bottom: 55px;
}
.p-about-content__lead {
  font-size: 16px;
  font-size: 1.6rem;
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-weight: 700;
  color: #297C7C;
  text-align: center;
  margin-bottom: 50px;
}
.p-about-content__title {
  font-size: 18px;
  font-size: 4.8vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 27px;
}
.p-about-content__virus-type-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.p-about-content__virus-01-width, .p-about-content__virus-02-width, .p-about-content__virus-03-width {
  background: #297C7C;
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50%;
  max-width: 100px;
  width: calc(33.33333% - 13.33333px);
  line-height: 1;
}
.p-about-content__virus-01-width span, .p-about-content__virus-02-width span, .p-about-content__virus-03-width span {
  display: block;
}
.p-about-content__virus-01-height, .p-about-content__virus-02-height, .p-about-content__virus-03-height {
  position: relative;
  padding-top: 100%;
  height: 0;
}
.p-about-content__virus-title {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
.p-about-content__virus-title span {
  display: block;
}
.p-about-content__virus-text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 102px;
}
.p-about-content__inspection-pic-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-about-content__inspection-pic {
  width: calc(50% - 6px);
}
.p-about-content__inspection-title-area {
  margin: 0 auto;
  text-align: center;
}
.p-about-content__inspection-title {
  color: #297C7C;
  display: inline-block;
  font-size: 19px;
  font-size: 5.0666666667vw;
  margin: 0 auto;
  margin-bottom: 48px;
  text-align: left;
}
.p-about-content__inspection-title span {
  display: block;
}
.p-about-content__inspection-text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.p-about-content__inspection-text span {
  display: block;
}

.p-place-content {
  padding-top: 116px;
}
.p-place-content__lead {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.p-place-content__lead span {
  display: block;
}
.p-place-content__text {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
}
.p-place-content__text span {
  display: block;
}
.p-place-content__slider-item {
  width: 165px;
  width: 44vw;
}
.p-place-content__slider-item-img {
  margin-bottom: 20px;
}
.p-place-content__slider-item-title {
  color: #297C7C;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.p-works-content__heading {
  margin-bottom: 75px;
}
.p-works-content__slider-area {
  margin-bottom: 16px;
}
.p-works-content__slider-items {
  width: 72%;
  margin: 0 auto;
}
.p-works-content__slider-item {
  width: 73%;
}
.p-works-content__slider-item-img {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.p-works-content__slider-item-img::before {
  content: "";
  display: block;
  padding-top: 55%;
}
.p-works-content__slider-item-img-inner {
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-works-content__slider-item-title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
.p-works-content__text {
  color: #297C7C;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
}
.p-works-content__text span {
  display: block;
}
.p-works-content__button-area {
  text-align: center;
  margin: 0 auto;
}
.p-works-content__button {
  background: #297C7C;
  color: #FFFFFF;
  display: inline-block;
  width: 73%;
}
.p-works-content__button::after {
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

.p-product-content__heading {
  margin-bottom: 47px;
  line-height: 2.4;
}
.p-product-content__lead-area {
  text-align: center;
  margin-bottom: 40px;
}
.p-product-content__lead {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-product-content__lead span {
  display: block;
}
.p-product-content__logo {
  max-width: 210px;
  margin: 0 auto;
  margin-bottom: 42px;
}
.p-product-content__item {
  background: #FFFFFF;
  border-radius: 9px;
}
.p-product-content__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.p-product-content__item-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 40px 12px 24px;
}
.p-product-content__item-top::after {
  content: "";
  background: url("../img/icon_triangle-left.svg") no-repeat center;
  background-size: contain;
  width: 16px;
  height: 14px;
  position: absolute;
  right: 20px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-product-content__item-top-logo {
  margin-right: 15px;
  width: 120px;
}
.p-product-content__item-top-title {
  color: #297C7C;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-product-content__item-top-title span {
  display: block;
}
.p-product-content__item-bottom {
  padding: 14px 24px 20px;
  display: none;
}
.p-product-content__item-bottom-text {
  font-size: 16px;
  font-size: 1.6rem;
}

.p-features-content__heading {
  margin-bottom: 72px;
}
.p-features-content__lead-area {
  text-align: center;
  margin-bottom: 25px;
}
.p-features-content__lead-heading {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.p-features-content__lead-heading span {
  display: block;
}
.p-features-content__lead-text {
  font-size: 1.4;
}
.p-features-content__lead-text span {
  display: block;
}
.p-features-content__text-area {
  margin-bottom: 84px;
}
.p-features-content__text {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
}
.p-features-content__test01-heading {
  margin-bottom: -10px;
}
.p-features-content__test01-text-area {
  margin-bottom: 28px;
}
.p-features-content__test01-text01, .p-features-content__test01-text02, .p-features-content__test01-text03 {
  font-size: 14px;
  font-size: 1.4rem;
}
.p-features-content__test01-img {
  margin-bottom: 21px;
}
.p-features-content__test01-img img {
  margin-bottom: 21px;
}
.p-features-content__test01-img-title {
  font-size: 14px;
  font-size: 1.4rem;
}
.p-features-content__test01-result-area {
  margin-bottom: 87px;
}
.p-features-content__test01-result {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.p-features-content__test01-result span {
  display: block;
}
.p-features-content__test02-heading {
  margin-bottom: -10px;
}
.p-features-content__test02-text-area {
  margin-bottom: 27px;
}
.p-features-content__test02-text01, .p-features-content__test02-text02, .p-features-content__test02-text03 {
  font-size: 14px;
  font-size: 1.4rem;
}
.p-features-content__test02-img {
  margin-bottom: 18px;
}
.p-features-content__test02-img img {
  margin-bottom: 25px;
}
.p-features-content__test02-img-title {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: left;
}
.p-features-content__test02-result-area {
  margin-bottom: 32px;
}
.p-features-content__test02-result {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.p-features-content__test02-result span {
  display: block;
}
.p-features-content__test-explanation-area {
  margin-bottom: 47px;
}
.p-features-content__test-explanation-text {
  background: #297C7C;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 30px 30px;
}
.p-features-content__movie-area {
  position: relative;
  width: 87%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding-bottom: 48%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  margin-bottom: 46px;
  border-radius: 10px;
}
.p-features-content__movie-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-features-content__movie-img {
  margin-bottom: 60px;
}
.p-features-content__movie-img img {
  width: 286px;
  width: 76.2666666667vw;
}
.p-features-content__movie-text-area {
  margin-bottom: 35px;
}
.p-features-content__movie-text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-features-content__button-area {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 77px;
}
.p-features-content__button {
  display: inline-block;
  background: #297C7C;
  color: #FFFFFF;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 10px;
  width: 73%;
}
.p-features-content__button::after {
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  margin-left: 5px;
}
.p-features-content__specialist-person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
}
.p-features-content__specialist-person-img {
  width: 107px;
  margin-right: 26px;
}
.p-features-content__specialist-person-pc {
  display: none;
}
.p-features-content__specialist-person-title {
  color: #297C7C;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 26px;
}
.p-features-content__specialist-person-title span {
  display: block;
}
.p-features-content__specialist-person-text {
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 18px;
}
.p-features-content__specialist-person-text span {
  display: block;
}
.p-features-content__specialist-person-name {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-features-content__specialist-text01 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 82px;
}
.p-features-content__specialist-text02 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 99px;
}
.p-features-content__specialist-text-lead {
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 47px;
  text-align: center;
}
.p-features-content__specialist-text-lead span {
  display: block;
}
.p-features-content__specialist-text-excerpt {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
}
.p-features-content__specialist-text-excerpt span {
  display: block;
}

.p-siaa-content__heading {
  margin-bottom: 72px;
}
.p-siaa-content__heading-lead-area {
  margin-bottom: 28px;
}
.p-siaa-content__heading-lead-title {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
}
.p-siaa-content__heading-lead-title span {
  display: block;
}
.p-siaa-content__heading-lead-text {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
}
.p-siaa-content__heading-lead-text span {
  display: block;
}
.p-siaa-content__mark-area {
  padding-bottom: 30px;
}
.p-siaa-content__mark {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 17px 0;
}
.p-siaa-content__mark:not(:last-of-type) {
  margin-bottom: 20px;
}
.p-siaa-content__mark-top-heading {
  color: #707070;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}
.p-siaa-content__mark-top-heading span {
  display: block;
}
.p-siaa-content__mark-top-heading-text01 {
  font-size: 16px;
  font-size: 1.6rem;
}
.p-siaa-content__mark-top-heading-text02 {
  font-size: 12px;
  font-size: 1.2rem;
}
.p-siaa-content__mark-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
}
.p-siaa-content__mark-img {
  margin: 0 10px;
}
.p-siaa-content__mark-img img {
  width: 100px;
}

.p-certificate-content {
  background: #FFFFFF;
  padding-top: 54px;
  padding-bottom: 20px;
}
.p-certificate-content__heading {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 45px;
  text-align: center;
}
.p-certificate-content__heading span {
  display: block;
}
.p-certificate-content__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-certificate-content__items-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-certificate-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0 10px;
  margin-bottom: 40px;
}
.p-certificate-content__item:nth-of-type(1) .p-certificate-content__item-img {
  margin-bottom: 5px;
}
.p-certificate-content__item:nth-of-type(1) .p-certificate-content__item-img img {
  max-width: 80px;
}
.p-certificate-content__item:nth-of-type(2) .p-certificate-content__item-img {
  margin-bottom: 25px;
}
.p-certificate-content__item:nth-of-type(2) .p-certificate-content__item-img img {
  max-width: 133px;
}
.p-certificate-content__item .p-certificate-content__item-img-left {
  margin-right: 47px;
}
.p-certificate-content__item .p-certificate-content__item-img-left img {
  max-width: 80px;
}
.p-certificate-content__item .p-certificate-content__item-img-right img {
  max-width: 110px;
}
.p-certificate-content__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.p-contact-content__heading {
  margin-bottom: 58px;
}
.p-contact-content__lead {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 42px;
  letter-spacing: -1px;
  text-align: center;
}
.p-contact-content__lead span {
  display: block;
}
.p-contact-content__slider-items {
  width: 73%;
  margin: 0 auto;
  margin-bottom: 80px;
}
.p-contact-content__slider-item-img {
  margin-bottom: 20px;
}
.p-contact-content__slider-item-title {
  color: #297C7C;
  font-size: 17px;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.p-contact-content__slider-item-text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}
.p-contact-content__button-area {
  margin: 0 auto;
  text-align: center;
}
.p-contact-content__button {
  background: #297C7C;
  color: #FFFFFF;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  display: inline-block;
  width: 73%;
}
.p-contact-content__button::after {
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

.p-customer-content__heading {
  margin-bottom: 58px;
}
.p-customer-content__lead {
  color: #297C7C;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 37px;
}
.p-customer-content__slider-items {
  width: 73%;
  margin: 0 auto;
  margin-bottom: 60px;
}
.p-customer-content__slider-item-img {
  margin-bottom: 20px;
}
.p-customer-content__slider-item-title {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
.p-customer-content__slider-item-name {
  text-align: center;
}
.p-customer-content__slider-item-name span {
  display: block;
}
.p-customer-content__slider-item-name01 {
  font-size: 14px;
  font-size: 1.4rem;
}
.p-customer-content__slider-item-name02 {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-customer-content__slider-item-text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2;
}

.p-under-works-top-content {
  padding-top: 78px;
  padding-bottom: 100px;
}
.p-under-works-top-content__heading {
  margin-bottom: 85px;
}
.p-under-works-top-content__logo {
  width: 200px;
  margin: 0 auto;
  margin-bottom: 53px;
}
.p-under-works-top-content__lead {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #297C7C;
  text-align: center;
  margin-bottom: 55px;
}
.p-under-works-top-content__lead span {
  display: block;
}
.p-under-works-top-content__items {
  margin-bottom: 55px;
}
.p-under-works-top-content__item {
  width: 90%;
  margin: 0 auto;
}
.p-under-works-top-content__item:not(:last-of-type) {
  margin-bottom: 40px;
}
.p-under-works-top-content__item-img {
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.p-under-works-top-content__item-img::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.p-under-works-top-content__item-img-inner {
  position: absolute;
  background-size: cover;
  background-position: center center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-under-works-top-content__item-name {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
}

.p-under-works-content {
  padding-top: 78px;
  padding-bottom: 100px;
}
.p-under-works-content__heading {
  margin-bottom: 85px;
}
.p-under-works-content__inner {
  max-width: 662px;
  margin: 0 auto;
}
.p-under-works-content__content-area {
  margin-bottom: 100px;
}
.p-under-works-content__name {
  color: #297C7C;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 34px;
  text-align: center;
}
.p-under-works-content__name span {
  display: block;
}
.p-under-works-content__news-name {
  color: #297C7C;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 58px;
  text-align: center;
}
.p-under-works-content__news-name span {
  display: block;
}
.p-under-works-content__item {
  border-bottom: 1px solid #297C7C;
}
.p-under-works-content__item:not(:last-of-type) {
  margin-bottom: 35px;
}
.p-under-works-content__item-time {
  color: #297C7C;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Quicksand";
  margin-bottom: 10px;
}
.p-under-works-content__item-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #707070;
  color: #3B3B3B;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-under-works-content__button-area {
  text-align: center;
  margin: 0 auto;
}
.p-under-works-content__button {
  background: #297C7C;
  color: #FFFFFF;
  display: inline-block;
  width: 73%;
}
.p-under-works-content__button::after {
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
}

.p-under-works-content__content-single figure {
  margin-bottom: 25px;
  border-radius: 10px;
}

.p-under-works-content__content-single p {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 45px;
}

.p-policy-content {
  padding-top: 78px;
  padding-bottom: 114px;
  font-size: 16px;
  font-size: 1.6rem;
}
.p-policy-content__heading {
  margin-bottom: 111px;
}
.p-policy-content__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.p-policy-content__content-area {
  margin-bottom: 275px;
}
.p-policy-content__content-heading {
  font-weight: 500;
  margin-bottom: 38px;
}
.p-policy-content__content-text {
  margin-bottom: 18px;
}
.p-policy-content__content-group {
  margin-bottom: 48px;
}
.p-policy-content__content-group-heading {
  margin-bottom: 8px;
}
.p-policy-content__content-group-heading span {
  display: block;
}
.p-policy-content__content-group-list:not(:last-of-type) {
  margin-bottom: 8px;
}
.p-policy-content__content-group-text span {
  display: block;
}
.p-policy-content__button-area {
  text-align: center;
  margin: 0 auto;
}
.p-policy-content__button {
  background: #297C7C;
  color: #FFFFFF;
  display: inline-block;
  width: 73%;
}

/*--------------------------------------------------------------
* projectフォルダの_index.scss
----------------------------------------------------------------*/
.u-color-maincolor {
  color: #297C7C;
}

.u-mark-img-green img {
  width: 80px;
}

.u-pc-inline-block {
  display: block;
}

.u-pc-block.scss {
  display: block;
}

.u-pc-none {
  display: block !important;
}

.u-sp-none {
  display: none !important;
}

.u-under {
  background: #FFFFFF;
}

.u-heading-box {
  position: relative;
  padding-left: 18px;
}
.u-heading-box::before {
  content: "";
  background: #3B3B3B;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

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

.u-sp-opacity0 {
  opacity: 0;
  visibility: hidden;
}
.u-sp-opacity0.is-show {
  opacity: 1;
  visibility: visible;
}

/*--------------------------------------------------------------
* utilityフォルダの_index.scss
----------------------------------------------------------------*/
.p-place-content__slider-area .slick-slide {
  margin-right: 30px;
  margin-left: 30px;
}
.p-place-content__slider-area .slide-arrow {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
}
.p-place-content__slider-area .prev-arrow {
  left: 0;
}
.p-place-content__slider-area .next-arrow {
  right: 0;
}
.p-place-content__slider-area .slide-arrow {
  width: 14px;
}
.p-works-content__slider-area .slide-arrow {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 14px;
}
.p-works-content__slider-area .prev-arrow {
  left: -50px;
}
.p-works-content__slider-area .next-arrow {
  right: -50px;
}

.p-customer-content__slider-area .slick-dots {
  bottom: -45px;
}
.p-customer-content__slider-area .slick-dots li button:before {
  opacity: 1;
  color: #297C7C;
}
.p-customer-content__slider-area .slick-dots li.slick-active button:before {
  color: #9ED5D5;
}
.p-customer-content__slider-area .slide-arrow {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 14px;
}
.p-customer-content__slider-area .prev-arrow {
  left: -50px;
}
.p-customer-content__slider-area .next-arrow {
  right: -50px;
}
.p-contact-content__slider-area .slide-arrow {
  bottom: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 14px;
}
.p-contact-content__slider-area .prev-arrow {
  left: -50px;
}
.p-contact-content__slider-area .next-arrow {
  right: -50px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination .page-numbers:not(:last-child) {
  margin-right: 15px;
}
.pagination > .prev.page-numbers {
  margin-right: 15px;
}
.pagination > .next.page-numbers {
  margin-left: 15px;
}
.pagination .dots {
  color: #297C7C;
}
.pagination a {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #297C7C;
}
.pagination .page-numbers.current {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
}

.mw_wp_form_confirm-none {
  display: none;
}

.mw_wp_form_confirm .mw_wp_form_confirm-none {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mw_wp_form_confirm .contact_form_button:first-of-type {
  margin-right: 10px;
}
.mw_wp_form_confirm .contact_form_input,
.mw_wp_form_confirm .contact_form_radio,
.mw_wp_form_confirm .contact_form_textarea {
  border: none;
  padding: 12px 15px;
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFFFFF;
  min-height: 48px;
}

.thanks_text_p {
  text-align: left;
  display: inline-block;
}

.thanks_text {
  text-align: center;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

/*--------------------------------------------------------------
* externalフォルダの_index.scss
----------------------------------------------------------------*/
/* =========================================================================================================
	* foundation   //基準の設定
========================================================================================================= */
/* =========================================================================================================
	* layout _l
========================================================================================================= */
/* =========================================================================================================
  * component _c
========================================================================================================= */
/* =========================================================================================================
* javascript //jsで操作される設定  _js
========================================================================================================= */
/* =========================================================================================================
	* project _p
========================================================================================================= */
/* =========================================================================================================
	* utility //調整用ファイル _u
========================================================================================================= */
/* =========================================================================================================
	* external //外部ライブラリーの上書き _ex
========================================================================================================= */
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  a:hover {
    opacity: 0.8;
  }
  .l-header {
    height: 100px;
  }
  .l-header__inner {
    height: 100px;
    padding: 0 90px;
  }
  .l-header__logo {
    opacity: 1;
  }
  .l-mv {
    padding-top: 100px;
    padding-bottom: 0px;
  }
  .l-mv__inner {
    max-width: 1260px;
    padding: 0 40px;
  }
  .l-about {
    padding-top: 150px;
  }
  .l-works {
    padding-bottom: 136px;
  }
  .l-product {
    padding-top: 97px;
    padding-bottom: 57px;
  }
  .l-features {
    padding-top: 94px;
  }
  .l-siaa {
    padding-top: 95px;
  }
  .l-contact {
    padding-bottom: 92px;
  }
  .l-customer {
    padding-bottom: 274px;
  }
  .c-content-inner {
    padding: 0 40px;
    max-width: 1080px;
  }
  .c-good-pic:nth-of-type(1) {
    padding-top: 33px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .c-good-pic:nth-of-type(1) .c-good-pic__img {
    margin-bottom: 14px;
    width: 134px;
  }
  .c-good-pic:nth-of-type(2) {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .c-good-pic:nth-of-type(2) .c-good-pic__img {
    margin-bottom: 23px;
    width: 73px;
  }
  .c-good-pic:nth-of-type(3) {
    padding-top: 38px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .c-good-pic:nth-of-type(3) .c-good-pic__img {
    margin-bottom: 19px;
    width: 65px;
  }
  .c-good-pic:nth-of-type(4) {
    padding-top: 46px;
    padding-bottom: 20px;
    margin-bottom: 0;
  }
  .c-good-pic:nth-of-type(4) .c-good-pic__img {
    margin-bottom: 20px;
    width: 84px;
  }
  .c-good-pic__no-area {
    top: -31px;
    left: 2px;
  }
  .c-good-pic__no {
    font-size: 2.4rem;
  }
  .c-good-pic__no::before {
    top: 33px;
    left: 50%;
  }
  .c-good-pic__no::after {
    font-size: 1.4rem;
    top: 34px;
  }
  .c-good-pic__title {
    bottom: 10%;
  }
  .c-test-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c-test-heading__top {
    display: inline-block;
    padding: 0;
    width: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-test-heading__bottom {
    text-align: left;
    padding: 0 10px;
    line-height: 1.2;
  }
  .p-hamburger.is-active .p-hamburger__line {
    background: #FFFFFF;
  }
  .p-global-nav__header-logo {
    margin-left: 90px;
    padding-top: 36px;
  }
  .p-global-nav__inner {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 120px;
  }
  .p-global-nav__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-global-nav__left {
    width: 380px;
  }
  .p-global-nav__right {
    padding-left: 100px;
    padding-left: 7.3206442167vw;
  }
  .p-global-nav__items {
    margin-bottom: 0px;
  }
  .p-global-nav__item {
    font-size: 2.2rem;
  }
  .p-global-nav__item:not(:last-of-type) {
    margin-bottom: 31px;
  }
  .p-global-nav__logo {
    display: block;
    width: 288.5px;
    margin-bottom: 22px;
  }
  .p-global-nav__tel01 {
    font-size: 3.6rem;
    margin-bottom: 8px;
  }
  .p-global-nav__tel02 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .p-global-nav__button {
    font-size: 1.6rem;
    margin-bottom: 34px;
    padding: 10px 30px;
  }
  .p-global-nav__you-tube {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  .p-footer-top__inner {
    background: url("../img/img_footer01-pc.png") no-repeat right bottom;
    background-size: 18%;
    padding-bottom: 0;
  }
  .p-footer-top__content {
    padding: 72px 0 32px;
  }
  .p-footer-top__heading {
    font-size: 2.6rem;
    margin-bottom: 12px;
  }
  .p-footer-top__heading span {
    display: inline;
  }
  .p-footer-top__button {
    margin-bottom: 20px;
  }
  .p-footer-top__tel01 {
    font-size: 4.1rem;
    margin-bottom: 6px;
  }
  .p-footer-bottom {
    padding: 77px 0;
  }
  .p-footer-bottom__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-footer-bottom__content-left {
    margin-bottom: 0;
  }
  .p-footer-bottom__content-address01 .p-footer-bottom__content-address01-sp, .p-footer-bottom__content-address02 .p-footer-bottom__content-address01-sp, .p-footer-bottom__content-address03 .p-footer-bottom__content-address01-sp {
    display: inline;
  }
  .p-footer-bottom__content-address01 {
    margin-bottom: 2px;
  }
  .p-footer-bottom__content-address03 {
    margin-bottom: 21px;
  }
  .p-footer-bottom__content-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-footer-bottom__tel01 {
    font-size: 4.1rem;
  }
  .p-footer-bottom__button {
    display: inline-block;
    text-align: center;
    background: #297C7C;
    color: #FFFFFF;
    margin: 0 0 0 auto;
    padding: 10px 60px;
    z-index: -1;
  }
  .p-footer-bottom__button::after {
    border-bottom: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
  }
  /*contact,news,works共通*/
  .main_text {
    margin-top: 116px;
    font-size: 2.8rem;
  }
  .p-mv-content {
    height: 100vh;
    height: calc(100vh - 100px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-mv-content__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 0 24px;
  }
  .p-mv-content__left {
    margin-bottom: 0;
    width: 515px;
    width: 37.701317716vw;
    max-width: 515px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 80px;
  }
  .p-mv-content__logo-sp {
    display: none;
  }
  .p-mv-content__logo-pc {
    display: block;
    margin-bottom: 50px;
    width: 515px;
    width: 37.701317716vw;
    max-width: 515px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-mv-content__main-img-sp {
    display: none;
  }
  .p-mv-content__main-img-pc {
    display: block;
    margin-left: 40px;
    width: 591px;
    width: 43.2650073206vw;
    max-width: 591px;
  }
  .p-mv-content__lead {
    font-size: 19px;
    font-size: 1.3909224012vw;
    font-size: min(1.39vw, 19px);
    line-height: 1.8;
    margin-bottom: 140px;
  }
  .p-mv-content__lead span {
    display: block;
  }
  .p-mv-content__news {
    margin: 0 auto;
    padding: 4px 20px 4px 20px;
    margin-right: 20px;
  }
  .p-mv-content__news-date {
    padding-right: 14px;
    margin-right: 4px;
    font-size: 16px;
    font-size: 1.1713030747vw;
  }
  .p-mv-content__news-text {
    max-width: 300px;
    width: 300px;
    width: 21.9619326501vw;
  }
  .p-about-content {
    padding-bottom: 146px;
  }
  .p-about-content__logo {
    max-width: 364px;
    margin-bottom: 80px;
  }
  .p-about-content__lead {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .p-about-content__title {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .p-about-content__virus-type-area {
    margin-bottom: 57px;
  }
  .p-about-content__virus-01-width, .p-about-content__virus-02-width, .p-about-content__virus-03-width {
    font-size: 2.1rem;
    border-radius: 100px;
    max-width: none;
    width: calc(33.33333% - 33.33333px);
  }
  .p-about-content__virus-01-height, .p-about-content__virus-02-height, .p-about-content__virus-03-height {
    height: 28px;
    padding: 20px 0;
  }
  .p-about-content__virus-title span {
    display: inline-block;
  }
  .p-about-content__virus-text {
    font-size: 1.8rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 88px;
  }
  .p-about-content__virus-text span {
    display: block;
  }
  .p-about-content__inspection-pic-area {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-bottom: 59px;
  }
  .p-about-content__inspection-pic {
    width: calc(25% - 25px);
  }
  .p-about-content__inspection-title {
    font-size: 1.9rem;
    margin-bottom: 30px;
  }
  .p-about-content__inspection-title span {
    display: inline-block;
  }
  .p-about-content__inspection-text {
    line-height: 1.6;
  }
  .p-place-content {
    padding-top: 135px;
  }
  .p-place-content__heading {
    margin-bottom: 66px;
  }
  .p-place-content__lead {
    font-size: 3.1rem;
  }
  .p-place-content__lead span {
    display: inline-block;
    margin: 0;
  }
  .p-place-content__text {
    font-size: 1.8rem;
  }
  .p-place-content__text span {
    display: inline-block;
  }
  .p-place-content__slider-items {
    padding: 0 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  .p-place-content__slider-item {
    width: 200px;
  }
  .p-works-content__heading {
    margin-bottom: 85px;
  }
  .p-works-content__slider-area {
    margin-bottom: 40px;
  }
  .p-works-content__slider-items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-works-content__slider-item {
    width: calc(33.33333% - 30px);
  }
  .p-works-content__slider-item:not(:last-of-type) {
    margin-right: 5%;
  }
  .p-works-content__slider-item-img {
    height: 160px;
  }
  .p-works-content__text {
    font-size: 2rem;
    margin-bottom: 72px;
  }
  .p-works-content__text span {
    display: inline-block;
  }
  .p-works-content__button {
    max-width: 242px;
  }
  .p-product-content__heading {
    margin-bottom: 71px;
    line-height: 1.5;
  }
  .p-product-content__lead-area {
    position: relative;
  }
  .p-product-content__lead {
    position: absolute;
    top: 194px;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 2.3rem;
  }
  .p-product-content__lead span {
    display: inline-block;
  }
  .p-product-content__logo {
    max-width: 300px;
    margin-bottom: 170px;
  }
  .p-product-content__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-product-content__item {
    width: calc(50% - 44px);
    margin-bottom: 42px;
  }
  .p-product-content__item:not(:last-of-type) {
    margin-bottom: 42px;
  }
  .p-product-content__item-top {
    padding: 42px 10px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-product-content__item-top::after {
    width: 0;
    height: 0;
  }
  .p-product-content__item-top-logo {
    margin-right: 0;
    margin-bottom: 30px;
    width: 220px;
  }
  .p-product-content__item-top-title {
    font-size: 1.6rem;
  }
  .p-product-content__item-bottom {
    padding: 8px 64px 36px;
    line-height: 1.6;
    display: block;
  }
  .p-product-content__item-bottom-text {
    line-height: 1.9;
  }
  .p-features-content__heading {
    margin-bottom: 77px;
  }
  .p-features-content__lead-heading {
    font-size: 3.1rem;
    margin-bottom: 19px;
  }
  .p-features-content__lead-heading span {
    display: inline-block;
  }
  .p-features-content__lead-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 65px;
  }
  .p-features-content__lead-text span {
    display: inline-block;
  }
  .p-features-content__text-area {
    margin-bottom: 68px;
  }
  .p-features-content__text {
    color: #3B3B3B;
    font-size: 2.7rem;
    text-align: center;
  }
  .p-features-content__text span {
    display: block;
  }
  .p-features-content__test-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: -29px;
  }
  .p-features-content__test01, .p-features-content__test02 {
    width: calc(50% - 44px);
  }
  .p-features-content__test01-heading {
    margin-bottom: 20px;
  }
  .p-features-content__test01-heading {
    margin-bottom: 31px;
  }
  .p-features-content__test01-text-area {
    margin-bottom: 45px;
  }
  .p-features-content__test01-text-area {
    margin: 0 auto;
    max-width: 380px;
    margin-bottom: 30px;
  }
  .p-features-content__test01-text01, .p-features-content__test01-text02, .p-features-content__test01-text03 {
    text-align: left;
  }
  .p-features-content__test01-img img {
    width: 310px;
    width: 82.6666666667vw;
    margin-bottom: 17px;
  }
  .p-features-content__test01-img {
    margin-bottom: 47px;
  }
  .p-features-content__test01-result span {
    display: inline-block;
  }
  .p-features-content__test02-heading {
    margin-bottom: 31px;
  }
  .p-features-content__test02-text-area {
    margin: 0 auto;
    max-width: 380px;
    margin-bottom: 30px;
  }
  .p-features-content__test02-img {
    margin-bottom: 25px;
  }
  .p-features-content__test02-img img {
    width: 310px;
    width: 82.6666666667vw;
    margin-bottom: 20px;
  }
  .p-features-content__test02-img-title {
    margin-left: 19px;
  }
  .p-features-content__test02-img-title span {
    display: inline-block;
  }
  .p-features-content__test02-result-area {
    margin: 0 auto;
    margin-bottom: 22px;
  }
  .p-features-content__test02-result {
    letter-spacing: -0.02em;
  }
  .p-features-content__test02-result span {
    display: inline;
  }
  .p-features-content__test-explanation-text {
    border-radius: 43px;
    font-size: 1.8rem;
    padding: 16px 30px;
    margin-bottom: 73px;
  }
  .p-features-content__movie-area {
    width: 48%;
    padding-bottom: 26.2%;
    margin-bottom: 60px;
  }
  .p-features-content__movie-img-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    margin-bottom: 14px;
    max-width: 850px;
  }
  .p-features-content__movie-img {
    width: 50%;
    padding-right: 40px;
    padding-top: 41px;
  }
  .p-features-content__movie-img-area-right {
    width: 50%;
  }
  .p-features-content__movie-text-area {
    margin-bottom: 40px;
  }
  .p-features-content__movie-text {
    margin-top: 20px;
    margin-left: 16px;
  }
  .p-features-content__button-area {
    text-align: right;
  }
  .p-features-content__button {
    max-width: 242px;
    text-align: center;
  }
  .p-features-content__specialist-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-features-content__specialist-person-img {
    margin-right: 40px;
    margin-left: 64px;
    width: 135px;
  }
  .p-features-content__specialist-person-right {
    display: none;
  }
  .p-features-content__specialist-person-pc {
    display: block;
    margin-top: -6px;
    margin-bottom: 20px;
  }
  .p-features-content__specialist-person-title {
    font-size: 2rem;
  }
  .p-features-content__specialist-person-title span {
    display: inline-block;
    margin-bottom: 12px;
  }
  .p-features-content__specialist-person-text {
    margin-bottom: 6px;
  }
  .p-features-content__specialist-person-text span {
    display: inline-block;
  }
  .p-features-content__specialist-text01 {
    line-height: 2;
    margin-bottom: 40px;
  }
  .p-features-content__specialist-text02 {
    line-height: 2;
    margin-bottom: 58px;
  }
  .p-features-content__specialist-text-lead {
    text-align: left;
    margin-bottom: 27px;
  }
  .p-features-content__specialist-text-lead span {
    display: inline-block;
  }
  .p-features-content__specialist-text-excerpt {
    text-align: right;
  }
  .p-features-content__specialist-text-excerpt span {
    display: inline-block;
  }
  .p-siaa-content__heading {
    margin-bottom: 62px;
  }
  .p-siaa-content__heading-lead-title {
    font-size: 3.1rem;
    margin-bottom: 21px;
  }
  .p-siaa-content__heading-lead-title span {
    display: inline-block;
  }
  .p-siaa-content__heading-lead-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 66px;
  }
  .p-siaa-content__heading-lead-text span {
    display: inline-block;
  }
  .p-siaa-content__mark-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 27px;
  }
  .p-siaa-content__mark {
    width: calc(50% - 44px);
    padding: 17px 0 22px;
  }
  .p-siaa-content__mark:not(:last-of-type) {
    margin-bottom: 0;
  }
  .p-siaa-content__mark-top-heading-text01 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 7px;
  }
  .p-siaa-content__mark-top-heading-text02 {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .p-siaa-content__mark-bottom {
    padding: 0 64px;
  }
  .p-siaa-content__mark-img img {
    width: 137px;
  }
  .p-certificate-content {
    padding-bottom: 34px;
  }
  .p-certificate-content__heading {
    font-size: 2.3rem;
  }
  .p-certificate-content__heading span {
    display: inline-block;
  }
  .p-certificate-content__items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .p-certificate-content__items-bottom {
    margin-left: 20px;
  }
  .p-certificate-content__item {
    margin-right: 30px;
  }
  .p-certificate-content__item:nth-of-type(1) .p-certificate-content__item-img {
    margin-bottom: 5px;
    margin-right: 10px;
  }
  .p-certificate-content__item:nth-of-type(1) .p-certificate-content__item-img img {
    max-width: 170px;
  }
  .p-certificate-content__item:nth-of-type(2) .p-certificate-content__item-img {
    margin-bottom: 40px;
  }
  .p-certificate-content__item:nth-of-type(2) .p-certificate-content__item-img img {
    max-width: 230px;
  }
  .p-certificate-content__item .p-certificate-content__item-img-left {
    margin-bottom: 5px;
  }
  .p-certificate-content__item .p-certificate-content__item-img-left img {
    max-width: 164px;
  }
  .p-certificate-content__item .p-certificate-content__item-img-right img {
    max-width: 230px;
  }
  .p-contact-content__lead {
    font-size: 3.1rem;
  }
  .p-contact-content__lead span {
    display: inline-block;
  }
  .p-contact-content__slider-items {
    width: 100%;
    margin-bottom: 118px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-contact-content__slider-item {
    width: calc(20% - 28.8px);
  }
  .p-contact-content__button {
    max-width: 242px;
  }
  .p-customer-content__lead {
    font-size: 3.1rem;
    margin-bottom: 80px;
  }
  .p-customer-content__slider-items {
    width: 100%;
  }
  .p-customer-content__slider-item-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-customer-content__slider-item-img {
    width: 43%;
    margin-right: 20px;
    padding-left: 58px;
  }
  .p-customer-content__slider-item-right {
    width: 50%;
  }
  .p-customer-content__slider-item-title {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 33px;
  }
  .p-customer-content__slider-item-name {
    text-align: left;
  }
  .p-customer-content__slider-item-name02 {
    margin-bottom: 30px;
  }
  .p-customer-content__slider-item-text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .p-under-works-top-content {
    padding-top: 87px;
  }
  .p-under-works-top-content__heading {
    margin-bottom: 98px;
  }
  .p-under-works-top-content__logo {
    width: 364px;
    margin-bottom: 43px;
  }
  .p-under-works-top-content__lead {
    font-size: 3rem;
    margin-bottom: 85px;
  }
  .p-under-works-top-content__lead span {
    display: inline-block;
  }
  .p-under-works-top-content__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-under-works-top-content__item {
    width: calc(33.33333% - 33.33333px);
    margin: 0;
    margin-right: 5%;
    margin-bottom: 60px;
  }
  .p-under-works-top-content__item:nth-of-type(3n) {
    margin-right: 0;
  }
  .p-under-works-top-content__item:not(:last-of-type) {
    margin-bottom: 55px;
  }
  .p-under-works-content {
    padding-top: 87px;
    padding-bottom: 150px;
  }
  .p-under-works-content__heading {
    margin-bottom: 108px;
  }
  .p-under-works-content__heading::after {
    top: 55px;
  }
  .p-under-works-content__name {
    font-size: 2.8rem;
    line-height: 1.7;
    margin-bottom: 58px;
  }
  .p-under-works-content__news-name {
    display: none;
  }
  .p-under-works-content__item {
    border: none;
  }
  .p-under-works-content__item:not(:last-of-type) {
    border-bottom: 1px solid #297C7C;
  }
  .p-under-works-content__item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-under-works-content__item-time {
    margin-right: 40px;
  }
  .p-under-works-content__item-title {
    width: 500px;
    margin-bottom: 14px;
  }
  .p-under-works-content__button {
    max-width: 242px;
  }
  .p-under-works-content__content-single figure {
    margin-bottom: 60px;
  }
  .p-under-works-content__content-single p {
    margin-bottom: 95px;
  }
  .p-policy-content {
    padding-top: 87px;
    padding-bottom: 150px;
  }
  .p-policy-content__heading {
    margin-bottom: 132px;
  }
  .p-policy-content__heading::after {
    top: 55px;
  }
  .p-policy-content__content-area {
    margin-bottom: 177px;
  }
  .p-policy-content__content-heading {
    font-size: 1.6rem;
  }
  .p-policy-content__content-text {
    margin-bottom: 36px;
  }
  .p-policy-content__content-group {
    margin-bottom: 38px;
  }
  .p-policy-content__content-group-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .p-policy-content__button {
    max-width: 242px;
  }
  .u-mark-img-green img {
    width: 115px;
    margin-top: 8px;
    margin-left: 10px;
  }
  .u-pc-inline-block {
    display: inline-block;
  }
  .u-pc-block.scss {
    display: block;
  }
  .u-pc-none {
    display: none !important;
  }
  .u-sp-none {
    display: block !important;
  }
  .u-text-align-center {
    text-align: left;
    padding-left: 32px;
    padding-right: 32px;
  }
  .u-sp-opacity0 {
    opacity: 1;
    visibility: visible;
  }
  .p-works-content__slider-area .slick-slide {
    margin-right: 18px;
    margin-left: 18px;
  }
  .p-customer-content__slider-area .slick-dots {
    bottom: -120px;
  }
  .p-customer-content__slider-area .prev-arrow {
    left: 0;
  }
  .p-customer-content__slider-area .next-arrow {
    right: 0;
  }
  .p-contact-content__slider-area .slick-slide {
    margin-right: 18px;
    margin-left: 18px;
  }
  .thanks_text span {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .c-good-pic__title {
    font-size: 1.8rem;
  }
  .p-about-content__inspection-pic {
    width: calc(25% - 60px);
  }
  .p-product-content__item-top-title {
    font-size: 1.6rem;
  }
  .p-product-content__item-top-title span {
    display: inline-block;
  }
  .p-features-content__test-explanation-text {
    text-align: center;
  }
  .p-features-content__test-explanation-text span {
    display: block;
  }
}
/*# sourceMappingURL=maps/common.css.map */
