@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.c-btn {
  padding: 0.75rem 0rem;
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  background-color: #00896d;
  border-radius: 0.495625rem;
  max-width: 16.375rem;
  width: 100%;
  color: #fff;
  text-align: center;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 1rem;
  height: 1rem;
  background-image: url(./../images/common/btn-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .c-btn:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 768px) {
  .c-btn:hover::before {
    right: 0.9375rem;
  }
}

.c-btn.c-btn--black {
  color: #fff;
  background-color: #000;
}

.c-btn.c-btn--dark-black {
  color: #fff;
  background-color: #333;
}

.c-btn.c-btn--recruit {
  color: #000;
  background-color: #8dd5c5;
}

.c-btn.c-btn--recruit::before {
  background-image: url(./../images/common/header-icon.svg);
}

.c-btn.c-btn--black::before {
  right: 2.5rem;
}

@media screen and (min-width: 768px) {
  .c-btn.c-btn--black:hover::before {
    right: 2.1875rem;
  }
}

.c-title {
  position: relative;
  font-size: 1rem;
  line-height: 1.75;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: #333;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 1rem;
  }
}

.c-title.c-title--left {
  text-align: left;
}

.c-title.c-title--right {
  text-align: right;
}

.c-title.c-title--left.c-title--white {
  color: #fff;
}

.c-title span {
  display: block;
  font-weight: 700;
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .c-title span {
    line-height: 1.75;
    font-size: 1.25rem;
  }
}

.c-title--center-inline {
  text-align: center;
}
.c-title--center-inline .c-title__inner {
  display: inline-block;
  text-align: left;
}
.c-title--center-inline .c-title__inner span {
  display: block;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-title--center-inline .c-title__inner span {
    line-height: 1.75;
    font-size: 1.25rem;
  }
}

.p-access {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-access {
    padding-block: 9.375rem;
  }
}

.p-access__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-access__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-access__info {
    gap: 3.125rem;
    flex-direction: initial;
    margin-top: 2.5rem;
  }
}

.p-access__company-name {
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 0.9230769231;
}

.p-access__address {
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  padding-left: 0rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-access__address {
    padding-left: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-access__address::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0.0625rem;
    height: 100%;
    background-color: #333;
  }
}

.p-access__map-wraps {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-access__map-wraps {
    margin-top: 5.625rem;
    gap: 6.25rem;
  }
}

.p-access__map-wrap {
  margin-inline: auto;
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__map-wrap {
    margin-top: 0;
    max-width: 50rem;
  }
}

.p-access__map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 47.5%;
}

.p-access__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* パンくずリスト */
.p-breadcrumb {
  padding: 0.9375rem 0;
  background-color: #fff;
}

.p-breadcrumb__inner {
  max-width: 81.25rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-breadcrumb__item {
  display: flex;
  font-weight: 400;
  align-items: center;
  font-size: 1rem;
  color: #1a1a1a;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 0.625rem;
  color: #1a1a1a;
}

.p-breadcrumb__link {
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.3s;
}

.p-breadcrumb__current {
  color: #1a1a1a;
  font-weight: normal;
}

.p-footer {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer {
    display: block;
    background-color: #fff;
    padding: 6.25rem 0 0rem;
  }
}

.p-footer__inner {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 39.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 0 1.5625rem;
    max-width: 78.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__wrap {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
}

.p-footer__logo {
  margin: auto;
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin: initial;
    max-width: 17.25rem;
  }
}

.p-footer__logo a {
  padding: 0.625rem 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-footer__logo a {
    padding: 0.9375rem 0;
  }
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 768px) {
  .p-footer__flex {
    margin-top: 2.1875rem;
  }
}

.p-footer__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    display: flex;
    gap: 3.125rem;
    margin-top: 5rem;
  }
}

.p-footer__nav-item.p-footer__nav-item--right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.p-footer__nav-item.p-footer__nav-item--right span {
  position: relative;
  padding-right: 1.625rem;
}

.p-footer__nav-item.p-footer__nav-item--right span::after {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url(./../images/common/header-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-footer__nav-item a {
  position: relative;
  display: block;
  font-size: 1rem;
  line-height: 1;
  font-weight: 700;
}
.p-footer__nav-bottom-item {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.p-footer__nav-bottom-item a {
  font-weight: 500;
  padding-left: 0.9375rem;
  position: relative;
}
.p-footer__nav-bottom-item a::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.p-footer__company-logo {
  display: flex;
  align-items: center;
  gap: 6.25rem;
  margin-top: 6.6875rem;
}

.p-footer__kinds {
  aspect-ratio: 242/49;
  width: 15.125rem;
}

.p-footer__kinds img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__abits {
  width: 11.1875rem;
  aspect-ratio: 179/64;
}

.p-footer__abits img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer__copyright {
  display: block;
  color: #fff;
  font-size: 0.9375rem;
  background-color: #1c3450;
  line-height: 2.3333333333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 6.25rem;
  }
}

.p-header {
  height: 5rem;
  background-color: #fff;
}

.p-header__inner {
  padding: 0 0.625rem;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 1.25rem;
  }
}

.p-header__logo {
  max-width: 15.5rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 15.625rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.p-header__nav-item.p-header__nav-item--recruit a {
  padding-right: 1.5625rem;
}

.p-header__nav-item.p-header__nav-item--recruit a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-image: url(./../images/common/header-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding: 0.625rem 1.25rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #1c3450;
  border-radius: 1.1409375rem;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #00896d;
  border-radius: 0.4708125rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5rem;
  height: 0.145625rem;
  background-color: #fff;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0.375rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 14.25rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(98, 58, 20, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.p-header__drawer-item.p-header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.3125rem;
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-mv {
  position: relative;
  z-index: 1;
  height: 100vh;
  min-height: 25rem;
}

.p-mv__inner {
  height: inherit;
  min-height: inherit;
}

.p-mv__title-wrap {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  bottom: 10%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrap {
    width: initial;
    transform: initial;
    left: 8%;
  }
}

.p-mv__main-title {
  font-weight: 700;
  font-size: 1.3125rem;
  text-align: center;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__main-title {
    margin-top: 0rem;
    text-align: initial;
    font-size: 3.125rem;
  }
}

.p-mv__sub-title {
  display: flex;
  gap: 1.125rem;
  align-items: center;
  font-weight: 500;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  position: relative;
  padding-left: 1rem;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title {
    font-size: 1.125rem;
  }
}

.p-mv__sub-title span {
  display: inline-block;
  left: 0;
  background-color: #fff;
  height: 0.0625rem;
  width: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title span {
    width: 15.375rem;
  }
}

.p-mv__slick,
.p-mv__slick .slick-list,
.p-mv__slick .slick-track,
.p-mv__slick-img,
.p-mv__slick-img img {
  height: inherit;
  min-height: inherit;
}

.p-mv__slick-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  margin-top: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__btn-wrap {
    align-items: initial;
    flex-direction: initial;
    margin-top: 3.125rem;
  }
}

.p-mv__btn-wrap li {
  flex: 1;
  max-width: 16.375rem;
  width: 100%;
}

.p-mv__news {
  position: relative;
  background: #fff;
  padding: 1.25rem 0.625rem;
  border-radius: 0.4375rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .p-mv__news {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -7%;
    padding: 1.5rem 2.5rem;
  }
}

.p-mv__news-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__news-inner {
    gap: 4rem;
    flex-direction: initial;
    align-items: center;
  }
}

.p-mv__news-flex-sp {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-mv__news-flex-sp {
    display: none;
  }
}

.p-mv__news-flex-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__news-flex-pc {
    display: block;
  }
}

.p-mv__news-title {
  font-size: 1.875rem;
  font-weight: 700;
  position: relative;
  color: #333;
}

.p-mv__news-title::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__news-title::after {
    display: block;
    content: "";
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    width: 1px;
    height: 5.625rem;
    background: #000;
  }
}

.p-mv__news-flex {
  position: relative;
}

.p-mv__news-flex::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__news-flex::after {
    display: block;
    content: "";
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    bottom: 0;
    width: 1px;
    height: 5.625rem;
    background: #000;
  }
}

.p-mv__news-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.p-mv__news-date {
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
  font-weight: 400;
}

.p-mv__news-label {
  display: inline-block;
  padding: 0.3125rem 1.25rem;
  border: 1px solid #000;
  line-height: 1.75;
  border-radius: 0.375rem;
  font-size: 1rem;
  white-space: nowrap;
}

.p-mv__news-text {
  font-size: 0.9375rem;
  margin-top: 0.9375rem;
  line-height: 1.75;
  color: #333;
  text-decoration: underline;
  flex: 1;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-mv__news-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-mv__news-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  line-height: 1.75;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s;
  position: relative;
  padding-right: 1.875rem;
}

.p-mv__news-link.p-mv__news-link--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__news-link.p-mv__news-link--pc {
    display: block;
  }
}

.p-mv__news-link::after {
  position: absolute;
  content: "";
  right: 0;
  width: 1rem;
  height: 1rem;
  background-image: url(./../images/common/btn-black-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-mv__news-link:hover {
  opacity: 0.7;
}

.p-news-list__item + .p-news-list__item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item + .p-news-list__item {
    margin-top: 3.75rem;
  }
}

.p-news-list__item {
  padding-bottom: 3.75rem;
  border-bottom: 1px solid #b3b3b3;
}

.p-news-list__item:first-child {
  padding-top: 3.75rem;
  border-top: 1px solid #b3b3b3;
}

.p-news-list__item a {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-news-list__item a {
    flex-direction: initial;
  }
}

.p-news-list__item-img {
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-img {
    max-width: 25.3125rem;
  }
}

.p-news-list__item-img img {
  width: 100%;
  aspect-ratio: 405/270;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-list__item-content {
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-content {
    margin-left: 3.375rem;
  }
}

.p-news-list__item-meta {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-meta {
    margin-top: 0rem;
  }
}
.p-news-list__item-meta {
  display: flex;
  align-items: center;
}

.p-news-list__item-date {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-news-list__item-category {
  margin-left: 1.25rem;
  padding: 0.3125rem;
  min-width: 7.25rem;
  border: 1px solid #333;
  border-radius: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  background-color: #fff;
  text-align: center;
}

.p-news-list__item-title {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-title {
    margin-top: 2.5rem;
  }
}

.p-news-list__item-text {
  font-weight: 500;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
}

@media screen and (min-width: 768px) {
  .p-news {
    padding-block: 9.375rem;
  }
}

.p-news__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-news__message {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2.3684210526;
}

@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 6.25rem;
  }
}

/* プライバシーポリシー */
.p-privacy {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-block: 9.375rem;
  }
}

.p-privacy__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-privacy__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

/* リード文 */
.p-privacy__lead {
  margin-bottom: 3.75rem;
}
.p-privacy__lead p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333;
}

/* セクション */
.p-privacy__section {
  margin-bottom: 3.125rem;
}
.p-privacy__section:last-child {
  margin-bottom: 0;
}

/* セクションタイトル */
.p-privacy__section-title {
  background-color: #f2f2f2;
  padding: 1.25rem 1.875rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* コンテンツ */
.p-privacy__content {
  padding: 0 1.25rem;
}

/* 項目 */
.p-privacy__item {
  margin-bottom: 1.875rem;
}
.p-privacy__item:last-child {
  margin-bottom: 0;
}

/* 項目番号付き見出し */
.p-privacy__item-number {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.625rem;
  line-height: 1.6;
}

/* 項目テキスト */
.p-privacy__item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  color: #333;
  padding-left: 1.25rem;
}

/* 通常テキスト */
.p-privacy__text {
  font-size: 1rem;
  line-height: 1.625;
  color: #333;
  padding-left: 1.25rem;
}

/* Q&Aセクション */
.p-qa {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-qa {
    padding-block: 9.375rem;
  }
}

.p-qa__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-qa__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-qa__message {
  text-align: center;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2.3684210526;
}

.p-qa__wraps {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-qa__wraps {
    margin-top: 6.25rem;
  }
}

/* タイトル */
.p-qa__title {
  background-color: #cce7e2;
  padding: 1.25rem 2.5rem;
}

.p-qa__title h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #00896d;
  text-align: center;
  line-height: 1.75;
}

/* Q&Aリスト */
.p-qa__list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.75rem;
}

.p-qa__item {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

/* 質問部分 */
.p-qa__question {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.p-qa__question-icon {
  width: 4.125rem;
  height: 4.125rem;
  border: 1px solid #af272d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #af272d;
  flex-shrink: 0;
}

.p-qa__question-text {
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a1a;
}

/* 回答部分 */
.p-qa__answer {
  padding-left: 5rem;
}

.p-qa__answer-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6875;
  padding-left: 1.25rem;
  border-left: 1px solid #d4e8e4;
}

.p-sub-build {
  position: relative;
  height: 100vh;
}
.p-sub-build::before {
  display: none;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-sub-build::before {
    height: 40%;
  }
}
@media screen and (min-width: 768px) {
  .p-sub-build {
    height: 68.75rem;
  }
}

.p-sub-build__top {
  position: absolute;
  z-index: 2;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
}
@media screen and (min-width: 768px) {
  .p-sub-build__top {
    top: 20%;
    width: initial;
  }
}

.p-sub-build__title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.p-sub-build__title-wrap::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 4.375rem;
  height: 4.375rem;
  background-image: url(./../images/common/building-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-sub-build__title-wrap.p-sub-build__title-wrap--mansion::before {
  background-image: url(./../images/common/mansion-icon.svg);
}

.p-sub-build__top-text {
  font-size: 0.875rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-build__top-text {
    font-size: 1rem;
    margin-top: 4.875rem;
  }
}

.p-sub-build__title {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.75;
  text-transform: uppercase;
  text-align: left;
  font-weight: 700;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-sub-build__title {
    font-size: 1rem;
  }
}

.p-sub-build__title span {
  display: block;
  font-size: 1.25rem;
  color: #008a6c;
}
@media screen and (min-width: 768px) {
  .p-sub-build__title span {
    line-height: 1.75;
    font-size: 2.375rem;
  }
}

.p-sub-build__img {
  height: inherit;
}

.p-sub-build__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-build__message {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-build__message {
    font-size: 2.1875rem;
    margin-top: 9.375rem;
  }
}

.p-sub-build__message-text {
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-build__message-text {
    margin-top: 3.75rem;
  }
}

.p-sub-business {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-business {
    padding-block: 9.375rem;
  }
}

.p-sub-business__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-business__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-sub-business__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-sub-business__title h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-sub-business__title span {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #008a6c;
}
@media screen and (min-width: 768px) {
  .p-sub-business__title span {
    font-size: 1.75rem;
    line-height: 1.75;
  }
}

.p-sub-business__text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-sub-business__text {
    margin-top: 3.75rem;
  }
}

.p-sub-business__grid-img {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-business__grid-img {
    margin-top: 5rem;
  }
}

.p-sub-business__grid-note {
  grid-column: 1/-1;
  background-color: #5a5a5a;
  color: #fff;
  text-align: center;
  padding: 0.9375rem 0.625rem;
  margin-top: 2.5rem;
  width: 100%;
  margin-inline: auto;
}
.p-sub-business__grid-note p {
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75;
}
.p-sub-business__grid-note p:first-child {
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-business__grid-note {
    width: 60%;
    padding: 1.875rem 1.25rem;
  }
}

.p-sub-cleaning {
  background-color: #fafaf2;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning {
    padding-block: 9.375rem;
  }
}

.p-sub-cleaning.p-sub-cleaning--regular {
  background-color: #f6f6f6;
}

.p-sub-cleaning__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-sub-cleaning__tips-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.875rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__tips-flex {
    padding-inline: 6.25rem;
    flex-direction: initial;
    align-items: center;
  }
}

.p-sub-cleaning__tips-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__tips-left {
    width: 65%;
  }
}

.p-sub-cleaning__tips-img {
  flex: 1;
  width: 18.125rem;
  aspect-ratio: 290/248;
}

.p-sub-cleaning__tips-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-cleaning__tips-text {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 2.3684210526;
  color: #333;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__tips-text {
    margin-top: 5rem;
  }
}

.p-sub-cleaning__flex-wrap {
  display: flex;
}

.p-sub-cleaning__flex {
  display: flex;
  flex-direction: column;
  gap: 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__flex {
    flex-direction: initial;
  }
}

.p-sub-cleaning__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__left {
    width: 45%;
  }
}

.p-sub-cleaning__message {
  font-size: 2.1875rem;
  line-height: 1.75;
  font-weight: 700;
  color: #333;
}

.p-sub-cleaning__title-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}

.p-sub-cleaning__title p {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1;
  color: #333;
  margin: 0;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

.p-sub-cleaning__title-img {
  aspect-ratio: 364/36;
  position: relative;
  top: -0.625rem;
}

.p-sub-cleaning__title-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-sub-cleaning__text-wrap {
    margin-top: 4.25rem;
  }
}

.p-sub-cleaning__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  margin-top: 1.25rem;
}

.p-sub-cleaning__items {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__items {
    margin-top: 3.75rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-sub-cleaning__item-img {
  aspect-ratio: 286/286;
}

.p-sub-cleaning__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-cleaning__img {
  aspect-ratio: 580/580;
  flex: 1;
}

.p-sub-cleaning__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-cleaning__box-items {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__box-items {
    margin-top: 9.375rem;
  }
}

.p-sub-cleaning__box {
  display: flex;
  flex-direction: column;
  border: 1px solid #999;
  background-color: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__box {
    flex-direction: initial;
  }
}

.p-sub-cleaning__box-img-wrapper {
  flex-shrink: 0;
  max-width: 22.9375rem;
  background-color: #f5e6cc;
  padding-inline: 0.9375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-sub-cleaning__box-img-wrapper {
    flex-direction: initial;
  }
}

.p-sub-cleaning__box-img {
  width: 100%;
  aspect-ratio: 367/293;
}
.p-sub-cleaning__box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-cleaning__box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.p-sub-cleaning__box-title {
  background-color: #000;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.p-sub-cleaning__box-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}
.p-sub-cleaning__box-text p {
  margin: 0 0 0.9375rem;
}
.p-sub-cleaning__box-text p:last-child {
  margin-bottom: 0;
}

.p-sub-company__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-company__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-sub-company__message {
  background-image: url(./../images/common/sub-company-message.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 5rem;
  padding-inline: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__message {
    padding-inline: 0rem;
    padding-block: 9.375rem;
  }
}

.p-sub-company__message-wrap {
  text-align: left;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-sub-company__message-wrap {
    text-align: center;
  }
}

.p-sub-company__message-title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-company__message-title {
    font-size: 2.1875rem;
  }
}

.p-sub-company__message-text {
  font-size: 1rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__message-text {
    font-size: 1.1875rem;
    line-height: 2.3684210526;
    margin-top: 5rem;
  }
}

.p-sub-company__message-name {
  font-size: 1.0625rem;
  line-height: 2.1764705882;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__message-name {
    margin-top: 2.5rem;
  }
}

.p-sub-company__message-name span {
  display: inline-block;
  margin-left: 0.9375rem;
  font-size: 1.625rem;
  line-height: 1.4230769231;
}

.p-sub-company__information {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__information {
    padding-block: 9.375rem;
  }
}

.p-sub-company__information-title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  display: flex;
  justify-content: center;
}

.p-sub-company__information-title.p-sub-company__information-title--quality {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__information-title.p-sub-company__information-title--quality {
    margin-top: 9.375rem;
  }
}

.p-sub-company__information-title span {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-company__information-title span {
    font-size: 1.75rem;
    line-height: 1.75;
  }
}

.p-sub-company__information-text {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__information-text {
    margin-top: 5rem;
    font-size: 1.5625rem;
    line-height: 1.75;
  }
}

.p-sub-company__profile {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__profile {
    margin-top: 5rem;
  }
}

.p-sub-company__profile-title.p-sub-company__profile-title--history {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company__profile-title.p-sub-company__profile-title--history {
    margin-top: 9.375rem;
  }
}

.p-sub-company__profile-title {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  display: flex;
  justify-content: center;
}

.p-sub-company__profile-title span {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-company-profile__list {
  display: flex;
  gap: 0.625rem;
  width: 100%;
  min-height: 4.3125rem; /* 最小高さを指定 */
}

.p-company-profile__term {
  background-color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 4.3125;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  white-space: nowrap;
}

/* brを含む項目用 */
.p-company-profile__term:has(br) {
  line-height: 1.4;
  white-space: normal;
}

.p-company-profile__description {
  background-color: #fff;
  line-height: 4.3125;
  font-size: 1rem;
  vertical-align: center;
  padding-inline: 1.25rem;
  width: 100%;
  align-items: center;
}

.p-company-profile__list + .p-company-profile__list {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-company-profile__list + .p-company-profile__list {
    margin-top: 0.625rem;
  }
}

.p-company-profile__term {
  max-width: 7.5rem;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-company-profile__term {
    max-width: 10.5rem;
  }
}

.p-sub-company {
  background-color: #f6f6f6;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-company {
    padding-block: 9.375rem;
  }
}

.p-sub-company__profile-inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-company__profile-inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-sub-mv {
  position: relative;
  height: 100vh;
}
.p-sub-mv::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-sub-mv {
    height: 56.25rem;
  }
}

.p-sub-mv.p-sub-mv--news {
  background-color: #93d6dd;
}
@media screen and (min-width: 768px) {
  .p-sub-mv.p-sub-mv--news {
    height: 23.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-mv.p-sub-mv--news::before {
    display: none;
  }
}

.p-sub-mv__title-wrap {
  position: absolute;
  z-index: 2;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title-wrap {
    top: 20%;
  }
}

.p-sub-mv__title-wrap.p-sub-mv__title-wrap--news {
  top: 60%;
}

.p-sub-mv__title-wrap.p-sub-mv__title-wrap--news::before {
  background-image: url(./../images/common/news-icon.svg);
}

.p-sub-mv__title-wrap.p-sub-mv__title-wrap--privacy {
  top: 60%;
}

.p-sub-mv__title-wrap.p-sub-mv__title-wrap--privacy::before {
  background-image: url(./../images/common/privacy-icon.svg);
}

.p-sub-mv__title-wrap::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  background-image: url(./../images/common/sub-strength-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title-wrap::before {
    width: 4.375rem;
    height: 4.375rem;
  }
}

.p-sub-mv__title-wrap.p-sub-mv__title-wrap--cleaning::before {
  background-image: url(./../images/common/sub-cleaning-icon.svg);
}

.p-sub-mv__title-wrap.p-sub-mv__title-wrap--build::before {
  background-image: url(./../images/common/building-icon.svg);
}

.p-sub-mv__title-wrap.p-sub-mv__title-wrap--company::before {
  background-image: url(./../images/common/company-icon.svg);
}

.p-sub-mv__title {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.75;
  text-transform: uppercase;
  text-align: left;
  font-weight: 700;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title {
    font-size: 1rem;
  }
}

.p-sub-mv__title span {
  display: block;
  font-size: 1.25rem;
  color: #008a6c;
}
@media screen and (min-width: 768px) {
  .p-sub-mv__title span {
    line-height: 1.75;
    font-size: 2.375rem;
  }
}

.p-sub-mv__img {
  height: inherit;
}

.p-sub-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-step {
  background-color: #00896d;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-step {
    padding-block: 9.375rem;
  }
}

.p-sub-step__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-step__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-sub-step__title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-sub-step__wrap {
  background-color: #fff;
  width: 100%;
  margin-inline: auto;
  margin-top: 5.375rem;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-step__wrap {
    padding: 5rem 0rem 5rem 9.375rem;
  }
}

.p-sub-step__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
}
.p-sub-step__item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-sub-step__item {
    flex-direction: initial;
    align-items: initial;
    gap: 6.25rem;
  }
}

.p-sub-step__label {
  flex-shrink: 0;
  width: 15.625rem;
  background-color: #4a4a4a;
  color: #fff;
  padding: 0.625rem 1.5625rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-sub-step__label--active {
  background-color: #3d8b72;
}

.p-sub-step__number {
  font-size: 1rem;
  font-weight: 700;
}

.p-sub-step__topic {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
  white-space: nowrap;
}

.p-sub-step__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.625rem 0;
}

.p-sub-step__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  margin: 0 0 0.9375rem;
}
.p-sub-step__item:not(:first-child) .p-sub-step__text {
  margin: 0;
}

.p-sub-step__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p-sub-step__contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9375rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-step__contact-item {
    flex-direction: initial;
  }
}

.p-sub-step__contact-label {
  color: #333;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.75;
  min-width: 6.875rem;
}

.p-sub-step__contact-tel {
  color: #333;
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 700;
  font-size: 0.9375rem;
}

.p-sub-step__contact-time {
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.75;
}

.p-sub-step__contact-mail {
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-step__contact-mail {
    text-align: initial;
  }
}

.p-sub-step__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  padding-right: 1.875rem;
}

.p-sub-step__contact-link::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-image: url(./../images/common/btn-black-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  right: 0;
}

.p-sub-step__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.p-sub-strengths__bg {
  background-image: url(./../images/common/strength-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__bg {
    padding-block: 9.375rem;
  }
}

.p-sub-strengths__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__inner {
    padding: 0 1.5625rem;
    max-width: 87.5rem;
  }
}

.p-sub-strengths__title {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__title {
    margin-bottom: 3.75rem;
  }
}

.p-sub-strengths__subtitle {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-sub-strengths__heading {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__heading {
    font-size: 1.75rem;
  }
}

.p-sub-strengths__img {
  margin-inline: auto;
  width: 100%;
  aspect-ratio: 745/708;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__img {
    width: 46.5625rem;
  }
}

.p-sub-strengths__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-strengths__items {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__items {
    padding-block: 9.375rem;
  }
}

.p-sub-strengths__heading img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-strengths__flex {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__flex {
    gap: 3.75rem;
    flex-direction: initial;
    padding-inline: 6.25rem;
  }
}

.p-sub-strengths__item-img {
  width: 100%;
  aspect-ratio: 640/400;
}
@media screen and (min-width: 768px) {
  .p-sub-strengths__item-img {
    width: 50%;
  }
}

.p-sub-strengths__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-strengths__text-block {
  flex: 1;
}

.p-sub-strengths__message {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.75;
}

.p-sub-strengths__text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 1.875rem;
}

.p-top-area {
  background-color: #1c3450;
  color: #fff;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-area {
    padding-block: 6.25rem;
  }
}

.p-top-area__inner {
  margin: auto;
  padding: 0 0.625rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-area__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-top-area__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__flex {
    gap: 6.25rem;
    flex-direction: initial;
  }
}

.p-top-area__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-area__left {
    width: 50%;
  }
}

.p-top-area__title {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-area__title {
    display: initial;
    align-items: initial;
    justify-content: initial;
  }
}

.p-top-area__text {
  margin-top: 2.5rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.625;
}
@media screen and (min-width: 768px) {
  .p-top-area__text {
    margin-top: 3.75rem;
  }
}

.p-top-area__text.u-sp {
  padding-inline: 0.625rem;
}

.p-top-area__message.u-sp {
  padding-inline: 0.625rem;
}

.p-top-area__message {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top-area__message {
    margin-top: 2.1875rem;
    font-size: 1.25rem;
    line-height: 1.75;
  }
}

.p-top-area__message span {
  font-size: 1.25rem;
  color: #8dd5c5;
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__message span {
    font-size: 2.5rem;
    line-height: 1.75;
  }
}

.p-top-area__img {
  flex: 1;
  padding-inline: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__img {
    padding-inline: 0rem;
  }
}

.p-top-area__information {
  margin-top: 2.5rem;
  padding: 1.25rem;
  border: 1px solid #fff;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__information {
    margin-top: 0rem;
    padding: 3.125rem;
  }
}

.p-top-area__information__category-items {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top-area__information__category-items {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
  }
}

.p-top-area__information-category-item {
  font-size: 1rem;
  line-height: 1.75;
  padding-inline: 1.5625rem;
  padding-block: 0.375rem;
  font-weight: 700;
  border-radius: 0.7433125rem;
  background-color: #fff;
  color: #1c3450;
}

.p-top-area__information-text {
  text-align: center;
  margin-top: 0rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__information-text {
    margin-top: 1.6875rem;
  }
}

.p-top-area__information-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  border-radius: 4px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__information-flex {
    margin-top: 2.5rem;
    align-items: center;
    flex-direction: initial;
    gap: 8.125rem;
  }
}

.p-top-area__information-contact {
  gap: 0.9375rem;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-area__information-contact {
    display: flex;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-top-area__information-contact:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -4.0625rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.0625rem;
    height: 5rem;
    background-color: #fff;
  }
}

.p-top-area__information-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  padding-left: 2.5rem;
}

.p-top-area__information-contact-content-flex {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-area__information-contact-content-flex {
    flex-direction: column;
  }
}

.p-top-area__information-contact-content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(./../images/common/area-tell.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: 0.3s;
}

.p-top-area__information-contact-content.p-top-area__information-contact-content--mail::before {
  background-image: url(./../images/common/area-mail.svg);
  width: 1.625rem;
  height: 1.25rem;
  top: 30%;
}

.p-top-area__information-contact-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
}

.p-top-area__information-contact-tel {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-top-area__information-contact-tel:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-top-area__information-contact-tel {
    font-size: 1.5rem;
  }
}

.p-top-area__information-contact-link {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.p-top-area__information-contact-link:hover {
  opacity: 0.7;
}

.p-top-area__information-contact-time {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #fff;
  margin: 0;
}

.p-top-business {
  background-image: url(./../images/common/p-top-business.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-business {
    padding-block: 9.375rem;
  }
}

.p-top-business__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-business__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-top-business__title {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-business__title {
    display: initial;
    align-items: initial;
    justify-content: initial;
  }
}

.p-top-business__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__flex {
    flex-direction: initial;
  }
}

.p-top-business__left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-business__left {
    width: 35%;
  }
}

.p-top-business__topic {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-business__topic {
    padding-left: 3.125rem;
    text-align: initial;
    line-height: 1.75;
    font-size: 1.875rem;
    border-bottom: 4px solid #00896d;
  }
}

.p-top-business__topic::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top-business__topic::before {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
    width: 2.5rem;
    height: 2.5rem;
    background-image: url(./../images/common/building-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.p-top-business__topic.p-top-business__topic--mansion::before {
  background-image: url(./../images/common/mansion-icon.svg);
}

.p-top-business__topic span {
  display: inline-block;
  font-size: 1.5625rem;
  color: #00896d;
  margin-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__topic span {
    line-height: 1.75;
    font-size: 2.375rem;
  }
}

.p-top-business__text {
  font-weight: 500;
  line-height: 1.4375;
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__text {
    margin-top: 2.5625rem;
  }
}

.p-top-business__btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-business__btn {
    margin-top: 3.75rem;
  }
}

.p-top-business__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-top-business__items {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-top-business__item {
  background-color: #fafafa;
}
.p-top-business__item:nth-child(odd) {
  background-color: #fff;
}
.p-top-business__item:nth-child(even) {
  background-color: #fafafa;
}

.p-top-business__img {
  aspect-ratio: 235/235;
  overflow: hidden;
}

.p-top-business__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.p-top-business__item:hover .p-top-business__img img {
  transform: scale(1.1);
}

.p-top-business__item-block {
  padding: 0.9375rem;
}

.p-top-business__item-title {
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.p-top-business__item-text {
  text-align: left;
  font-weight: 400;
  line-height: 1.3125;
  margin-top: 0.625rem;
}

.p-top-cleaning {
  background-image: url(./../images/common/top-cleaning-background.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-cleaning {
    padding-block: 9.375rem;
  }
}

.p-top-cleaning__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-cleaning__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-top-cleaning__items {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(1, 1fr);
  flex: 1;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-cleaning__items {
    margin-top: 5rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-top-cleaning__item {
  background-color: #fff;
  position: relative;
}

.p-top-cleaning__item::after {
  position: absolute;
  content: "";
  bottom: 0.625rem;
  right: 0.625rem;
  width: 1rem;
  height: 1rem;
  background-image: url(./../images/common/btn-black-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-top-cleaning__img {
  aspect-ratio: 350/235;
  overflow: hidden;
}

.p-top-cleaning__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.p-top-cleaning__item:hover .p-top-cleaning__img img {
  transform: scale(1.1);
}

.p-top-cleaning__item-block {
  padding: 3.125rem 1.875rem 3.125rem 1.25rem;
}

.p-top-cleaning__item-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3125;
}

.p-top-cleaning__btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-cleaning__btn {
    margin-top: 3.75rem;
  }
}

.p-top-information {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-information {
    padding-block: 9.375rem;
  }
}

.p-top-information__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-information__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-top-information__items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-information__items {
    gap: 4.875rem;
    flex-direction: initial;
  }
}

.p-top-information__item {
  background-color: #f2f2f2;
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
  border-radius: 1.0625rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-information__item {
    padding-block: 3.125rem;
    padding-inline: 4.6875rem;
  }
}

.p-top-information__item-title {
  position: relative;
  padding-left: 1.25rem;
  color: #000;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__item-title {
    padding-left: 3.75rem;
  }
}

.p-top-information__item-title::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 4.375rem;
  background-image: url(./../images/common/top-company-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.p-top-information__item-title.p-top-information__item-title--question::before {
  background-image: url(./../images/common/top-q&a-icon.svg);
}

.p-top-information__item-text {
  text-align: left;
  margin-top: 1.25rem;
  flex-grow: 1;
}

.p-top-information__btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__btn {
    margin-top: 3.75rem;
  }
}

.p-top-information__recruit {
  padding-top: 4.375rem;
  padding-left: 0.625rem;
  padding-bottom: 2.5rem;
  background-color: #f2f2f2;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__recruit {
    background-image: url(./../images/common/top-information-recruit.webp);
    border-radius: 1.0625rem;
    background-color: initial;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 4.375rem;
    padding-left: 6.875rem;
    padding-bottom: 2.5rem;
    margin-inline: 6.25rem;
    margin-top: 9.375rem;
  }
}

.p-top-information__recruit-message {
  text-align: center;
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 700;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__recruit-message {
    margin-top: 0rem;
    text-align: initial;
    font-size: 2.5625rem;
  }
}

.p-top-information__recruit-title {
  margin-top: 0rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-information__recruit-title {
    margin-top: 3.625rem;
    display: initial;
    align-items: initial;
    justify-content: initial;
  }
}

.p-top-information__recruit-img {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-information__recruit-img {
    margin-top: 0rem;
  }
}

.p-top-information__recruit-text {
  font-size: 1rem;
  line-height: 1.4375;
  color: #000;
  margin-top: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-top-information__recruit-text {
    margin-top: 2.5rem;
  }
}

.p-top-information__recruit-btn {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-information__recruit-btn {
    text-align: initial;
  }
}

.p-top-strengths {
  padding-top: 15.625rem;
  padding-bottom: 5rem;
  background-image: url(./../images/common/p-top-strengths-background.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-top-strengths {
    padding-block: 9.375rem;
  }
}

.p-top-strengths__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-top-strengths__title {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__title {
    margin-bottom: 3.75rem;
  }
}

.p-top-strengths__subtitle {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__subtitle {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-top-strengths__heading {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__heading {
    font-size: 1.75rem;
  }
}

.p-top-strengths__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-top-strengths__grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0;
  }
}

.p-top-strengths__grid-item {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__grid-item {
    padding-inline: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top-strengths__grid-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #000;
  }
}
@media screen and (min-width: 768px) {
  .p-top-strengths__grid-item:first-child::before {
    content: "";
    position: absolute;
    left: 0rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #000;
  }
}
@media screen and (min-width: 768px) {
  .p-top-strengths__grid-item:last-child::before {
    content: "";
    position: absolute;
    right: 0rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #000;
  }
}

.p-top-strengths__grid-title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2777777778;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__grid-title {
    font-size: 1.125rem;
  }
}

.p-top-strengths__grid-img {
  overflow: hidden;
  aspect-ratio: 200/168;
  width: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.875rem;
  margin-inline: auto;
}
.p-top-strengths__grid-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-strengths__grid-text {
  font-size: 1rem;
  line-height: 1.7058823529;
  font-weight: 500;
  color: #333;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__grid-text {
    font-size: 1.0625rem;
  }
}

.p-top-strengths__btn {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-strengths__btn {
    margin-top: 6.25rem;
  }
}

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

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

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

.u-sp-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .u-sp-flex {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
