@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,
p,
figure,
blockquote,
dl,
dd {
  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 {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* 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 {
  display: block;
  max-width: 100%;
}

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

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-padding-top: 7.5rem;
}
html {
  font-size: 16px;
}

body {
  background-color: #fdfbf5;
  color: #000;
  display: flex;
  flex-direction: column;
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  min-height: 100svh;
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeSpeed;
}

body.is-fixed {
  overflow: hidden;
}
main {
  flex-grow: 1;
}

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  touch-action: manipulation;
}

.l-contact-section {
  margin-top: 60px;
  margin-top: 3.75rem;
}

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

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.l-pager {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.l-post-connect {
  margin-top: 16px;
  margin-top: 1rem;
}

.l-site {
  flex: 1;
}

.c-breadcrumb {
  padding: 16px 0;
  padding: 1rem 0;
}

.c-breadcrumb a {
  color: #009acb;
}

.c-btn {
  align-items: center;
  background-color: #51bde1;
  border: none;
  border-radius: 10px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  justify-content: space-between;
  min-width: 200px;
  min-width: 12.5rem;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
  transition: 0.3s;
}

.c-btn--left {
  justify-content: space-between;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
}
.c-btn__arrow {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  display: block;
  height: 19px;
  height: 1.1875rem;
  position: relative;
  width: 19px;
  width: 1.1875rem;
}

.c-btn__arrow::before {
  background: #000;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
  height: 8px;
  height: 0.5rem;
  left: 55%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  width: 0.375rem;
}

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

.c-btn.c-btn--left .c-btn__arrow::before {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  height: 8px;
  height: 0.5rem;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 6px;
  width: 0.375rem;
}

.c-btn.c-btn--white .c-btn__arrow {
  background-color: #51bde1;
}

.c-btn.c-btn--white .c-btn__arrow::before {
  background: #fff;
}

.c-btn__arrow.c-btn__arrow--left::before {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  left: 45%;
}

.c-btn__arrow.c-btn__arrow--white {
  background-color: #51bde1;
}

.c-btn__arrow.c-btn__arrow--white::before {
  background: #fff;
}

.c-business-btn {
  align-items: center;
  aspect-ratio: 600/260;
  border-radius: 0.625rem;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  max-width: 25rem;
  overflow: hidden;
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  position: relative;
  width: 100%;
}

.c-business-btn--mono {
  background-color: #d18e18;
}

.c-business-btn--hito {
  background-color: #51bde1;
}

.c-business-btn--hito::before {
  aspect-ratio: 320/158;
  background-image: url(./../images/common/hito-text01.svg);
  bottom: 0;
  right: 0;
  width: 160px;
  width: 10rem;
}

.c-business-btn::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 1;
}

.c-business-btn--mono::before {
  aspect-ratio: 320/158;
  background-image: url(./../images/common/mono-text01.svg);
  bottom: 0;
  right: 0;
  width: 160px;
  width: 10rem;
}

.c-business-btn--kane {
  background-color: #a3c000;
}

.c-business-btn--kane::before {
  aspect-ratio: 320/180;
  background-image: url(./../images/common/kane-text01.svg);
  bottom: -7px;
  right: -15px;
  width: 160px;
  width: 10rem;
}

.c-business-btn__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  z-index: 1;
}

.c-business-btn__text {
  color: #fff;
  display: inline-block;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.0142857143em;
  line-height: 1.5;
  text-align: left;
}

.c-business-btn__circle {
  aspect-ratio: 30/30;
  display: inline-block;
  margin-left: auto;
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 30px;
  width: 1.875rem;
}

.c-button {
  align-items: center;
  background-color: #51bde1;
  border: none;
  border-radius: 0.625rem;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  justify-content: space-between;
  overflow: hidden;
  padding: 16px 20px 16px 30px;
  padding: 1rem 1.25rem 1rem 1.875rem;
  position: relative;
  transition: 0.3s;
  width: 200px;
  width: 12.5rem;
  z-index: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.c-button::before {
  background-color: #000;
  border-radius: 50%;
  content: "";
  height: 10px;
  height: 0.625rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s;
  width: 10px;
  width: 0.625rem;
  z-index: -1;
}

.c-button--left.c-button {
  padding: 16px 30px 16px 20px;
  padding: 1rem 1.875rem 1rem 1.25rem;
}

.c-button--left.c-button::before {
  left: 20px;
  left: 1.25rem;
}

.c-button:hover::before,
.c-button:active::before {
  transform: translate(-50%, -50%) scale(100);
}

@keyframes arrow-grow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.c-button__text {
  z-index: 1;
}
.c-button:active .c-button__arrow {
  animation: arrow-grow 0.3s ease-out;
}

.c-button:active {
  -webkit-text-decoration: none;
  cursor: pointer;
  opacity: 1;
  text-decoration: none;
}

.c-button__arrow {
  animation: none;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  display: block;
  height: 19px;
  height: 1.1875rem;
  position: relative;
  transition: translateY(-50%);
  width: 19px;
  width: 1.1875rem;
}

.c-button__arrow::before {
  background: #000;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
  height: 8px;
  height: 0.5rem;
  left: 55%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  width: 0.375rem;
}

.c-button.c-button--white {
  background-color: #fff;
  color: #000;
}
.c-button.c-button--white:active {
  color: #fff;
}

.c-button.c-button--left .c-button__arrow::before {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  height: 8px;
  height: 0.5rem;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 6px;
  width: 0.375rem;
}

.c-button.c-button--white .c-button__arrow {
  background-color: #51bde1;
}

.c-button.c-button--white .c-button__arrow::before {
  background: #fff;
}

.c-button__arrow.c-button__arrow--left::before {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  left: 45%;
}

.c-button__arrow.c-button__arrow--white {
  background-color: #51bde1;
}

.c-button__arrow.c-button__arrow--white::before {
  background: #fff;
}

.c-contact-mv {
  background-color: #f7f7f7;
  padding-bottom: 1px;
  padding-bottom: 0.0625rem;
}

.c-contact-mv__wrap {
  background: linear-gradient(to bottom, #c6f9fc 0%, #c6f9fc calc(100% - 4.375rem), #f7f7f7 calc(100% - 4.375rem), #f7f7f7 100%);
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  padding-top: 100px;
  padding-top: 6.25rem;
  position: relative;
}

.c-contact-mv__inner {
  position: relative;
  z-index: 1;
}

.c-contact-mv__wave {
  background-image: url("../images/common/header-bg-sp.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -1px;
  content: "";
  height: 71px;
  height: 4.4375rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.c-page-btn {
  aspect-ratio: 370/160;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: relative;
  width: 100%;
  z-index: 0;
}

.c-page-btn::before {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.625rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s;
  width: 100%;
}

.c-page-btn--company {
  background-image: url("../images/common/company-btn-sp.png");
}

.c-page-btn--works {
  background-image: url("../images/common/works-btn-sp.png");
}

.c-page-btn--omame {
  background-image: url("../images/common/omame-btn-sp.png");
}

.c-page-btn__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.c-page-btn__text {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
}

.c-page-btn__arrow {
  aspect-ratio: 34/34;
  margin-left: 21px;
  margin-left: 1.3125rem;
  width: 34px;
  width: 2.125rem;
}
.c-page-top {
  align-items: flex-end;
  bottom: 50px;
  bottom: 3.125rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  justify-content: center;
  opacity: 0;
  position: fixed;
  right: 25px;
  right: 1.5625rem;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  z-index: 100;
}

.c-page-top::before {
  aspect-ratio: 48/60;
  background-image: url(./../images/common/top-btn-off.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  font-size: 15px;
  font-size: 0.9375rem;
  width: 48px;
  width: 3rem;
}

.c-page-top:hover::before,
.c-page-top:active::before {
  aspect-ratio: 103/48;
  background-image: url(./../images/common/top-btn-on.png);
  width: 103px;
  width: 6.4375rem;
}
.c-page-top__text {
  color: #000;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  text-align: right;
}

.c-section-title {
  color: #000;
  --color: #5dc2e6;
}

.c-section-title.c-section-title--white {
  --color: #fff;
  color: #fff;
  color: var(--color);
}

.c-section-title__en {
  font-family: "Poppins", serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.0869565217em;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  position: relative;
}

.c-section-title__en::before,
.c-section-title__en::after {
  content: "";
  height: 6px;
  height: 0.375rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  width: 0.375rem;
}

.c-section-title__en::before {
  background-color: var(--color);
  left: 0;
}

.c-section-title__en::after {
  background-color: #d18e18;
  left: 7px;
  left: 0.4375rem;
}

.c-section-title__jp {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.44;
}

@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.js-bound,
.js-anime-up {
  opacity: 0;
}

.js-bound.displayed,
.js-anime-up.displayed {
  opacity: 1;
}

.js-anime-up.displayed span {
  animation: showText 1s backwards;
  display: inline-block;
}

.js-anime-up.displayed > span {
  overflow: hidden;
}

.js-anime-up.displayed > span > span {
  animation: showTextFromBottom 0.5s backwards;
}

@keyframes bound {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 10px));
  }
  100% {
    transform: translateY(-50%);
  }
}
.js-bound.displayed {
  opacity: 1;
}

.js-bound.displayed::before,
.js-bound.displayed::after {
  animation: bound 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}

.js-bound.displayed::after {
  animation-delay: 0.3s;
  /* 2つ目の項目に遅延を追加 */
}

.c-sub-mv {
  background-color: #f7f7f7;
  background-color: transparent;
  padding-bottom: 1px;
  padding-bottom: 0.0625rem;
}

.c-sub-mv__wrap {
  background: linear-gradient(to bottom, #c6f9fc 0%, #c6f9fc calc(100% - 4.375rem), transparent calc(100% - 4.375rem), transparent 100%);
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  min-height: 295px;
  min-height: 18.4375rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-top: 100px;
  padding-top: 6.25rem;
  position: relative;
}

.c-sub-mv__inner {
  position: relative;
  z-index: 1;
}

.c-sub-mv__wave {
  background-image: url("../images/common/header-bg-sp.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 2px;
  content: "";
  height: 71px;
  height: 4.4375rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.c-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.79;
}

.c-text--white {
  color: #fff;
}

.c-text--indent {
  padding-left: 1em;
  text-indent: -1em;
}

.c-text--under-mv {
  -webkit-text-decoration: underline;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #cfa45f;
  text-decoration-thickness: 4px;
  text-underline-offset: 0.05em;
  text-underline-position: under;
}

.c-text--under {
  -webkit-text-decoration: underline;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.05em;
  text-underline-position: under;
}

.c-title {
  color: black;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-404__text-wrap {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.p-404__btn {
  margin-top: 100px;
  margin-top: 6.25rem;
  text-align: center;
}

.p-404__btn a {
  margin-left: auto;
  margin-right: auto;
}

.p-common-header {
  position: relative;
}

.p-common-header__inner {
  padding-left: 35px;
  padding-left: 2.1875rem;
  padding-right: 35px;
  padding-right: 2.1875rem;
}

.p-common-header__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1714285714em;
  line-height: 2.08;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-contact-section {
  background-image: url("../images/common/contact-section-bg-sp.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0 60px;
  padding: 3.125rem 0 3.75rem;
  position: relative;
}

.p-contact-section__contents {
  background-color: #fff;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 25px 28px 30px;
  padding: 1.5625rem 1.75rem 1.875rem;
}

.p-contact-section__left {
  order: 2;
}

.p-contact-section__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.1607142857em;
  line-height: 1.8;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact-section__btn {
  margin-left: auto;
  margin-right: auto;
  margin-top: 29px;
  margin-top: 1.8125rem;
  width: 200px;
  width: 12.5rem;
}

.p-contact-section__img {
  aspect-ratio: 254/185;
  margin-left: auto;
  margin-right: auto;
  order: 1;
  width: 127px;
  width: 7.9375rem;
}

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

.p-contact {
  background-color: #f7f7f7;
}

.p-contact__contents {
  margin-top: 38px;
  margin-top: 2.375rem;
  max-width: 940px;
  max-width: 58.75rem;
}

.p-contact__head {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  width: 280px;
  width: 17.5rem;
}

.p-contact__item {
  font-weight: 700;
  margin: 18px 0;
  margin: 1.125rem 0;
}

.p-contact__item-example {
  color: gray;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-contact__required {
  background-color: #d18e18;
  border-radius: 1.1875rem;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-style: normal;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-left: 10px;
  margin-left: 0.625rem;
  padding: 1px 8px;
  padding: 0.0625rem 0.5rem;
}

.p-contact__content {
  margin: 24px 0 38px;
  margin: 1.5rem 0 2.375rem;
}

.p-contact__content.p-contact__content--confirm {
  margin: 30px 0 38px;
  margin: 1.875rem 0 2.375rem;
}

.p-contact__policy {
  background-color: #fff;
  margin-top: 70px;
  margin-top: 4.375rem;
  padding: 20px 0 20px 30px;
  padding: 1.25rem 0 1.25rem 1.875rem;
}

.p-contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  background: #fff;
  border: none;
  border-radius: 0.625rem;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
  outline: none;
  padding: 12px 25px;
  padding: 0.75rem 1.5625rem;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.p-contact__item-text::-moz-placeholder, .p-contact__item-tel::-moz-placeholder, .p-contact__item-email::-moz-placeholder, .p-contact__item-textarea::-moz-placeholder, .p-contact__item-select::-moz-placeholder {
  color: #c0c0c0;
}

.p-contact__item-text::placeholder,
.p-contact__item-tel::placeholder,
.p-contact__item-email::placeholder,
.p-contact__item-textarea::placeholder,
.p-contact__item-select::placeholder {
  color: #c0c0c0;
}

.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 200px;
  line-height: 1.4;
  overflow: auto;
  resize: none;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-position: right 0.5em center;
  background-repeat: no-repeat;
  background-size: 1em;
  color: inherit;
  padding-right: 3em;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type=radio],
.p-contact__item-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
  border-radius: 0.1875rem;
  color: #333;
  cursor: pointer;
  display: inline-block;
  padding-left: 29px;
  padding-left: 1.8125rem;
  position: relative;
}

.p-contact__item-radio input[type=radio]:focus + span,
.p-contact__item-checkbox input[type=checkbox]:focus + span {
  opacity: 0.7;
}

.p-contact__item-radio input[type=radio] + span::before,
.p-contact__item-checkbox input[type=checkbox] + span::before {
  background: white;
  border: 1px solid black;
  border-radius: 0.1875rem;
  content: "";
  height: 15px;
  height: 0.9375rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  width: 0.9375rem;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::before {
  background: #333;
}

.p-contact__item-radio input[type=radio]:checked + span::before {
  background: white;
}

.p-contact__item-radio input[type=radio] + span::before {
  border-radius: 50%;
}

.p-contact__item-radio input[type=radio] + span::after {
  background: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.p-contact__item-checkbox input[type=checkbox] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::after,
.p-contact__item-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

.wpcf7-spinner {
  position: absolute;
}

.wpcf7-list-item {
  margin-left: 0;
}

.p-contact__description {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.76;
  text-align: center;
}

.p-contact__header {
  position: relative;
}

.p-contact__inner {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-left: 27px;
  padding-left: 1.6875rem;
  padding-right: 27px;
  padding-right: 1.6875rem;
}

.p-contact__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1714285714em;
  line-height: 2.08;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-contact__recaptha {
  line-height: 1.5;
}

.p-contact__recaptha a {
  color: #51bde1;
}

.grecaptcha-badge {
  visibility: hidden;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
  justify-content: center;
  margin: 45px 0 60px;
  margin: 2.8125rem 0 3.75rem;
}

.p-contact__btn::before {
  background-color: #000;
  border-radius: 50%;
  content: "";
  height: 10px;
  height: 0.625rem;
  position: absolute;
  right: 25px;
  right: 1.5625rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s;
  width: 10px;
  width: 0.625rem;
  z-index: -1;
}

.p-contact__btn.p-contact__btn--left::before {
  left: 25px;
  left: 1.5625rem;
  right: auto;
  right: initial;
}

.p-contact__btn:hover::before,
.p-contact__btn:active::before {
  transform: translate(-50%, -50%) scale(100);
}

@keyframes shrinkAndGrow {
  0% {
    transform: scale(1) translateY(-50%);
  }
  50% {
    transform: scale(0.8) translateY(-50%);
  }
  /* 途中で小さく */
  100% {
    transform: scale(1) translateY(-50%);
  }
  /* 元のサイズに戻る */
}
.p-contact__btn {
  align-items: center;
  background-color: #51bde1;
  border-radius: 0.625rem;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  gap: 25px;
  gap: 1.5625rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: 0.3s;
  width: 200px;
  width: 12.5rem;
  z-index: 0;
}

.p-contact__btn.p-contact__btn--left {
  background-color: #fff;
}
/* button */
.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
  display: block;
  padding: 15px 0 15px 30px;
  padding: 0.9375rem 0 0.9375rem 1.875rem;
  text-align: left;
  -webkit-box-sizing: contentbox;
  -webkit-appearance: button;
  background: transparent;
  color: #fff;
  -moz-appearance: button;
       appearance: button;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-size: 0.875rem;
  height: inherit;
  transition: all 0.3s;
  width: inherit;
}

.p-contact__btn.p-contact__btn--left input[type=button] {
  color: #000;
  padding: 15px 0 15px 60px;
  padding: 0.9375rem 0 0.9375rem 3.75rem;
}

.p-contact__btn.p-contact__btn--left input[type=button]:hover {
  color: #fff;
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=button]:hover,
.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
  outline: none;
}

.p-contact__btn-arrow {
  background-color: #fff;
  border-radius: 50%;
  height: 19px;
  height: 1.1875rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  width: 1.1875rem;
}

.p-contact__btn-arrow.p-contact__btn-arrow--left {
  left: 20px;
  left: 1.25rem;
  right: auto;
  right: initial;
}
.p-contact__btn:hover .p-contact__btn-arrow {
  pointer-events: none;
}
.p-footer {
  background-color: #fff;
  padding: 50px 0 30px;
  padding: 3.125rem 0 1.875rem;
  position: relative;
  z-index: 100;
}

.p-footer__inner {
  margin: auto;
}

.p-footer__logo {
  max-width: 140px;
  max-width: 8.75rem;
  width: 100%;
}

.p-footer__logo a {
  display: block;
  padding: 10px 0;
  padding: 0.625rem 0;
}

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

.p-footer__address-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-footer__address {
  font-size: 11px;
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1363636364em;
  line-height: 1.73;
}

.p-footer__map {
  display: inline-block;
  padding: 5px 5px 5px 0;
  padding: 0.3125rem 0.3125rem 0.3125rem 0;
}

.p-footer__nav {
  display: grid;
  grid-template-columns: 130px 1fr;
  grid-row-gap: 25px;
  margin-top: 15px;
  margin-top: 0.9375rem;
  row-gap: 25px;
  row-gap: 1.5625rem;
}

.p-footer__nav-items:nth-child(3) {
  grid-column: span 2;
}

.p-footer__nav-item a {
  color: #199ac5;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.09375em;
  line-height: 1;
  padding: 10px 11px;
  padding: 0.625rem 0.6875rem;
  position: relative;
  text-align: center;
}

.p-footer__sub-nav-list {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-footer__sub-nav-item a {
  color: #000;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  position: relative;
}

.p-footer__sub-nav-item a::before {
  border-top: 1px solid currentColor;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  width: 0.25rem;
}

.p-footer__copyright {
  display: block;
  font-size: 9px;
  font-size: 0.5625rem;
  line-height: 1;
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

.p-footer__copyright span {
  text-transform: uppercase;
}

.p-header {
  height: 60px;
  height: 3.75rem;
  pointer-events: none;
}

.p-header__inner {
  display: flex;
  height: inherit;
  justify-content: space-between;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-top: 18px;
  padding-top: 1.125rem;
}

.p-header__logo {
  aspect-ratio: 216/84;
  max-width: 108px;
  max-width: 6.75rem;
  width: 100%;
  z-index: 901;
}

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

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

.p-header__nav {
  display: none;
  height: inherit;
  pointer-events: auto;
}

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

.p-header__nav-item {
  background-color: #fff;
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  align-items: center;
  background-color: transparent;
  display: flex;
  height: inherit;
  margin-left: 40px;
  margin-left: 2.5rem;
}

.p-header__nav-item.p-header__nav-item--contact a {
  width: 220px;
  width: 13.75rem;
}

.p-header__nav-item a {
  align-items: center;
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  height: inherit;
  justify-content: center;
  letter-spacing: 4px;
  letter-spacing: 0.25rem;
  line-height: 1;
  width: 120px;
  width: 7.5rem;
}

.p-header__nav-item:first-child {
  border-radius: 1.875rem 0 0 1.875rem;
  padding-left: 40px;
  padding-left: 2.5rem;
}

.p-header__nav-item:nth-last-child(2) {
  border-radius: 0 1.875rem 1.875rem 0;
  padding-right: 40px;
  padding-right: 2.5rem;
}

.p-header__nav-item + .p-header__nav-item:not(.p-header__nav-item--contact) {
  position: relative;
}
.p-header__nav-item + .p-header__nav-item:not(.p-header__nav-item--contact)::before {
  background-color: #e8e8e8;
  content: "";
  height: 40px;
  height: 2.5rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.p-header__nav-item a span {
  color: #009acb;
  display: block;
  font-family: "Poppins", serif;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-top: 9px;
  margin-top: 0.5625rem;
}

.p-header__nav-item.p-header__nav-item--contact a {
  align-items: center;
  align-items: center;
  background-color: #548c35;
  border-radius: 1.875rem;
  color: #fff;
  display: flex;
  flex-direction: row;
  height: inherit;
  justify-content: center;
  letter-spacing: 3px;
  letter-spacing: 0.1875rem;
  padding: 0 31px;
  padding: 0 1.9375rem;
  position: relative;
}

.p-header__nav-item.p-header__nav-item--contact a::before {
  background-image: url(./../images/common/contact-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 25px;
  height: 1.5625rem;
  margin-right: 10px;
  margin-right: 0.625rem;
  width: 28px;
  width: 1.75rem;
}

.p-header__hamburger {
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  padding: 0;
  pointer-events: auto;
  position: relative;
  transition: 0.3s;
  width: 33px;
  width: 2.0625rem;
  z-index: 999;
}

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

.p-header__hamburger span {
  background-color: #000;
  display: block;
  height: 1px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 33px;
  width: 2.0625rem;
}

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

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

.p-header__hamburger span:nth-of-type(3) {
  top: 9px;
  top: 0.5625rem;
}

.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) {
  opacity: 0;
}

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

.p-header__drawer {
  background-color: #c6f9fc;
  bottom: 0;
  display: none;
  height: 100svh;
  left: 0;
  min-height: 540px;
  min-height: 33.75rem;
  overflow-y: scroll;
  padding: 100px 0;
  padding: 6.25rem 0;
  pointer-events: auto;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 900;
}

.p-header__drawer.is-open {
  display: block;
}

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

.p-header__drawer-item {
  margin-left: auto;
  margin-right: auto;
  max-width: 250px;
  max-width: 15.625rem;
}

.p-header__drawer-item a {
  color: #000;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  line-height: 1;
  padding: 10px 0;
  padding: 0.625rem 0;
  text-align: center;
}

.p-header__drawer-item + .p-header__drawer-item {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-header__drawer-item.p-header__drawer-item--contact {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-header__drawer-item.p-header__drawer-item--contact a {
  align-items: center;
  align-items: center;
  background-color: #548c35;
  border-radius: 1.875rem;
  color: #fff;
  display: flex;
  flex-direction: row;
  height: inherit;
  justify-content: center;
  letter-spacing: 3px;
  letter-spacing: 0.1875rem;
  padding: 10px 31px;
  padding: 0.625rem 1.9375rem;
  position: relative;
}

.p-header__drawer-item.p-header__drawer-item--contact a::before {
  background-image: url(./../images/common/contact-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 31px;
  height: 1.9375rem;
  margin-right: 20px;
  margin-right: 1.25rem;
  width: 31px;
  width: 1.9375rem;
}

.p-header__drawer-tree1-img,
.p-header__drawer-tree2-img {
  position: absolute;
  z-index: 1;
}

.p-header__drawer-tree1-img {
  aspect-ratio: 151/246;
  bottom: 0;
  left: calc(50% - 200px);
  width: 107px;
  width: 6.6875rem;
}

.p-header__drawer-tree2-img {
  aspect-ratio: 304/496;
  bottom: 0;
  left: calc(50% + 107px);
  width: 107px;
  width: 6.6875rem;
}

.p-header__drawer-omame-img {
  aspect-ratio: 491/493;
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 144px;
  width: 9rem;
  z-index: 2;
}

.p-news-item {
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
}

.p-news-item + .p-news-item {
  border-top: none;
}

.p-news-item__body {
  padding: 18px 12px;
  padding: 1.125rem 0.75rem;
}
.p-news-item__flex-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
}
.p-news-item__date {
  color: #51bde1;
  font-size: 14px;
  font-size: 1rem;
  letter-spacing: 0.11em;
}

/* .p-news-item__category-wrap {
  margin-top: 5px;
  margin-top: 0.3125rem;
} */

.p-news-item__category {
  align-items: center;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
}

.p-news-item__category-item {
  border: 1px solid #51bde1;
  border-radius: 62.4375rem;
  color: #51bde1;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  min-width: 54px;
  min-width: 3.375rem;
  padding: 4px 7px;
  padding: 0.15rem 0.4375rem;
  text-align: center;
}

.p-news-item__title {
  font-size: min(4.27vw, 32px);
  letter-spacing: 0.16em;
  font-weight: 500;
  line-height: 1.56;
  margin-top: 0.75em;
}

.p-news-item__text-wrap {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-news-item__text {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.16em;
  line-height: 1.79;
}

.p-page-link__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.p-pagination {
  align-items: center;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  justify-content: center;
}

.p-pagination__number {
  align-items: center;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  height: 40px;
  height: 2.5rem;
  justify-content: center;
  line-height: 1;
  width: 40px;
  width: 2.5rem;
}

.p-pagination__prev,
.p-pagination__next,
.p-pagination__last,
.p-pagination__first {
  align-items: center;
  display: flex;
  display: block;
  justify-content: center;
}

.p-pagination__prev img,
.p-pagination__next img,
.p-pagination__last img,
.p-pagination__first img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-pagination__prev,
.p-pagination__next {
  height: 22px;
  height: 1.375rem;
  width: 11px;
  width: 0.6875rem;
}

.p-pagination__last,
.p-pagination__first {
  height: 22px;
  height: 1.375rem;
  width: 22px;
  width: 1.375rem;
}

.p-pager-list {
  display: flex;
  justify-content: space-between;
}

.p-pager-list__btn a {
  border: 1px solid #009acb;
  color: #009acb;
  display: inline-block;
  padding: 10px 20px;
}

.p-post-article__inner.l-inner {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-post-article__title {
  color: #009acb;
  font-size: 48px;
  font-size: 3rem;
}

.p-post-article__info {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.p-post-article__category {
  align-items: center;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  justify-content: center;
}

.p-post-article__category li {
  border: 1px solid #009acb;
  color: #009acb;
  padding: 5px;
  padding: 0.3125rem;
}

.p-post-article__box {
  margin: 102.4px auto 0;
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  background-color: #fff;
  padding: 20px 23px 0;
  padding: 1.25rem 1.4375rem 0;
  width: 100%;
}

.p-post-article__content-wrap {
  margin: auto;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  width: 100%;
}

.p-post-article__contents {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-post-article__main-img {
  aspect-ratio: 7/4;
}

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

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  font-size: 21px;
  font-size: 1.3125rem;
  letter-spacing: 0.05em;
  margin-left: auto;
  text-align: right;
}

.p-post-article__content h2 {
  background-color: #009acb;
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 30px 0 15px;
  margin: 1.875rem 0 0.9375rem;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
}

.p-post-article__contents h3 {
  border-left: 0.5em solid #009acb;
  color: #009acb;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 30px 0 15px;
  margin: 1.875rem 0 0.9375rem;
  padding-left: 10px;
  padding-left: 0.625rem;
}

.p-post-article__contents h4 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents h5 {
  border-bottom: 2px solid #009acb;
  border-top: 2px solid #009acb;
  color: #009acb;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 10px 0;
  margin: 0.625rem 0;
  padding: 2px 12.5px;
  padding: 0.125rem 0.78125rem;
}

.p-post-article__contents p {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-post-article__contents a {
  color: #009acb;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-card {
  background-color: #fff;
  box-shadow: 0px 7px 6px 4px rgba(222, 210, 180, 0.27);
  padding: 20px 10px 40px 12px;
  padding: 1.25rem 0.625rem 2.5rem 0.75rem;
}

.p-post-card__body {
  position: relative;
}

.p-post-card__date {
  color: #b7b7b7;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
}

.p-post-card__title-wrap {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-post-card__title,
.p-post-card__staff {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.59;
}

.p-post-card__category-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-post-card__category {
  align-items: center;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
}

.p-post-card__category-item {
  border-radius: 0.5625rem;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 3px 7px;
  padding: 0.1875rem 0.4375rem;
}

.p-post-card__hozyokin-wrap {
  border-top: 1px solid #e8e8e8;
  margin-top: 22px;
  margin-top: 1.375rem;
  padding: 24px 0 0 2px;
  padding: 1.5rem 0 0 0.125rem;
}

.p-post-card__hozyokin-text,
.p-post-card__hozyokin-price {
  display: inline;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: normal;
  line-height: 1.74;
}

.p-post-card__hozyokin-text::before {
  content: "・";
}

.p-post-card__hozyokin-price {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.p-post-connect__title {
  color: #009acb;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-post-connect__items {
  display: grid;
  grid-gap: 50px;
  gap: 50px;
  gap: 3.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-post-list {
  position: relative;
}

.p-post-list__wrap {
  margin: 32px 0;
  margin: 2rem 0;
}

.p-post-list__title {
  color: #009acb;
  font-size: 48px;
  font-size: 3rem;
}

.p-post-list__items {
  display: grid;
  width: 100%;
  grid-gap: 20px;
  gap: 20px;
  gap: 1.25rem;
}

.p-post-list__contents {
  display: flex;
  gap: 38px;
  gap: 2.375rem;
}

.p-sidebar {
  width: 243px;
  width: 15.1875rem;
}

.p-sidebar__title {
  border-bottom: 1px dashed #319bc1;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

.p-sidebar__archive-list {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-sidebar__year-button {
  align-items: center;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 8px 0;
  text-align: left;
  width: 100%;
}

.p-sidebar__year-icon {
  color: #c4c4c4;
  display: inline-block;
  margin-right: 8px;
  transform: rotate(-90deg); /* 最初は右向き矢印（▶︎）*/
  transition: transform 0.3s;
}

.p-sidebar__year-button.is-open .p-sidebar__year-icon {
  transform: rotate(0deg); /* 開いた時に下向き矢印（▼）*/
}

.p-sidebar__month-list {
  display: none;
  padding-left: 2em;
}

.p-sidebar__month-list a {
  color: #319bc1;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}

.p-sidebar__month-list a:before {
  content: "-";
  margin-right: 0.1em;
}

.p-sidebar__month-list.is-open {
  display: block;
}

.p-sub-about-greeting__wrap {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-sub-about-greeting__img-wrap {
  position: relative;
}

.p-sub-about-greeting__img {
  aspect-ratio: 325/236;
  width: 100%;
}

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

.p-sub-about-greeting__contents {
  background-color: #fff;
  padding: 40px 13px;
  padding: 2.5rem 0.8125rem;
}

.p-sub-about-greeting__lead-text {
  background-color: #fff;
  color: #4e8bc5;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.76;
  padding: 35px 13px 0;
  padding: 2.1875rem 0.8125rem 0;
}

.p-sub-about-greeting__name-wrap {
  align-items: center;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-sub-about-greeting__name-img {
  aspect-ratio: 115/25;
  width: 174px;
  width: 10.875rem;
}

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

.p-sub-about-greeting__name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
}

.p-sub-about-info__wrap {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-sub-about-info__list {
  border-bottom: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  gap: 10px;
  gap: 0.625rem;
  letter-spacing: 0.16em;
  line-height: 1.79;
  padding: 20px 12px;
  padding: 1.25rem 0.75rem;
}

.p-sub-about-info__list + .p-sub-about-info__list {
  border-top: none;
}

.p-sub-about-info__term {
  flex-shrink: 0;
  font-weight: 700;
  max-width: 90px;
  max-width: 5.625rem;
  width: 100%;
}

.p-sub-about-info__map-link {
  color: #047edc;
  margin-left: 20px;
  margin-left: 1.25rem;
}

.p-sub-about-omame {
  background-color: #f5f5f5;
  padding: 40px 12px;
  padding: 2.5rem 0.75rem;
  position: relative;
}

.p-sub-about-omame::before {
  aspect-ratio: 136/162;
  background-image: url(./../images/about/about-omame.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  position: absolute;
  right: 20px;
  right: 1.25rem;
  width: 136px;
  width: 8.5rem;
}

.p-sub-about-omame__inner {
  position: relative;
  z-index: 1;
}

.p-sub-about-omame__title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.p-sub-about-omame__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-sub-about-philosophy__wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-sub-about-philosophy__subtitle {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.44;
}

.p-sub-about-philosophy__text-wrap {
  flex: 1;
  max-width: 590px;
  max-width: 36.875rem;
  width: 100%;
}

.p-sub-about-philosophy__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-sub-about-profile {
  background-color: #f5f5f5;
}

.p-sub-about-profile__wrap {
  padding: 30px 5px;
  padding: 1.875rem 0.3125rem;
}

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

.p-sub-about-profile__img {
  aspect-ratio: 129/170;
  width: 129px;
  width: 8.0625rem;
}

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

.p-sub-about-profile__name-wrap {
  margin-top: 22px;
  margin-top: 1.375rem;
}

.p-sub-about-profile__role {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
}

.p-sub-about-profile__name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 6px;
  margin-top: 0.375rem;
  text-align: center;
}

.p-sub-about-profile__list-wrap {
  padding: 30px 0 0;
  padding: 1.875rem 0 0;
}

.p-sub-about-profile__list {
  align-items: flex-start;
  display: flex;
  justify-content: center;
}

.p-sub-about-profile__list-title {
  line-height: 1.79;
  width: 95px;
  width: 5.9375rem;
}

.p-sub-about-profile__list-text {
  flex: 1;
}

.p-sub-about__inner {
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-sub-about__section-title {
  align-items: center;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  gap: 8px;
  gap: 0.5rem;
  letter-spacing: 0.11em;
}

.p-sub-about__section-title::before {
  aspect-ratio: 15/15;
  background-color: #51bde1;
  border-radius: 50%;
  content: "";
  display: block;
  width: 15px;
  width: 0.9375rem;
}

.p-sub-about__philosophy {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-sub-about__greeting {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-sub-about-greeting__profile {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-about__page-link {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-about__info {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-business-item-img {
  aspect-ratio: 600/667;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  max-width: 272px;
  max-width: 17rem;
  position: relative;
}

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

.p-sub-business-item-img--hito {
  --image-color: #51bde1;
  background-image: url(./../images/business/hito-jigyo-sp.png);
}

.p-sub-business-item-img--mono {
  --image-color: #d18e18;
  background-image: url(./../images/business/mono-jigyo-sp.png);
}

.p-sub-business-item-img--kane {
  --image-color:#a3c000;
  background-image: url(./../images/business/kane-jigyo-sp.png);
}

.p-sub-business-item-img__number {
  align-items: center;
  background-color: var(--image-color);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: "Poppins", serif;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  height: 54px;
  height: 3.375rem;
  justify-content: center;
  position: absolute;
  right: 25px;
  right: 1.5625rem;
  top: 25px;
  top: 1.5625rem;
  width: 54px;
  width: 3.375rem;
}

.p-sub-business-item-img__inner {
  padding: 33px 35px 0 50px;
  padding: 2.0625rem 2.1875rem 0 3.125rem;
}

.p-sub-business-item-img__inner--kane {
  padding: 33px 35px 0 50px;
  padding: 2.0625rem 2.1875rem 0 3.125rem;
}

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

.p-sub-business-item-img__img.p-sub-business-item-img__img--hito {
  aspect-ratio: 75/71;
  width: 75px;
  width: 4.6875rem;
}

.p-sub-business-item-img__img.p-sub-business-item-img__img--mono {
  aspect-ratio: 50/58;
  margin-left: 10px;
  margin-left: 0.625rem;
  width: 50px;
  width: 3.125rem;
}

.p-sub-business-item-img__img.p-sub-business-item-img__img--kane {
  aspect-ratio: 64/62;
  width: 64px;
  width: 4rem;
}

.p-sub-business-item-img__text-wrap {
  padding: 22px 0 0 18px;
  padding: 1.375rem 0 0 1.125rem;
}

.p-sub-business-item-img__text-wrap.p-sub-business-item-img__text-wrap--kane {
  padding: 15px 0 0 18px;
  padding: 0.9375rem 0 0 1.125rem;
}

.p-sub-business-item-img__title {
  aspect-ratio: 72/38;
  width: 72px;
  width: 4.5rem;
}

.p-sub-business-item-img__title img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-sub-business-item-img__text {
  color: #fff;
  font-feature-settings: "palt";
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.79;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: left;
}

.p-sub-business-item__text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 25px;
  margin-top: 1.5625rem;
  text-align: center;
}

.p-sub-business-section-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  justify-content: center;
  position: relative;
}

.p-sub-business-section-title--hito {
  --image-color: #51bde1;
}

.p-sub-business-section-title--mono {
  --image-color: #d18e18;
}

.p-sub-business-section-title--kane {
  --image-color: #a3c000;
}

.p-sub-business-section-title__wrap {
  align-items: flex-end;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
}

.p-sub-business-section-title__number {
  color: var(--image-color);
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.p-sub-business-section-title__img {
  aspect-ratio: 62/33;
  width: 62px;
  width: 3.875rem;
}

.p-sub-business-section-title__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-sub-business-section-title__text {
  color: var(--image-color);
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.0383333333em;
}

.p-sub-business__support {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-business__support-wrap {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-business__support-title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  position: relative;
  text-align: center;
}

.p-sub-business__support-title::before {
  background-color: #51bde1;
  bottom: 0;
  content: "";
  height: 1px;
  height: 0.0625rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 30px;
  width: 1.875rem;
}

.p-sub-business__support-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0410714286em;
  line-height: 1.79;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-sub-business-sub-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  gap: 0.9375rem;
  justify-content: center;
}

.p-sub-business-sub-title--hito {
  --image-color: #51bde1;
}

.p-sub-business-sub-title--mono {
  --image-color: #d18e18;
}

.p-sub-business-sub-title__wrap {
  align-items: flex-end;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
}

.p-sub-business-sub-title__number {
  color: var(--image-color);
  font-size: 42px;
  font-size: 2.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.p-sub-business-sub-title__img {
  aspect-ratio: 62/33;
  width: 67px;
  width: 4.1875rem;
}

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

.p-sub-business-sub-title__text {
  color: var(--image-color);
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.0383333333em;
}

.p-sub-business-top__wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
  gap: 3.125rem;
}

.p-sub-business__inner {
  margin-top: 55px;
  margin-top: 3.4375rem;
}

.p-sub-business__section {
  background-color: #f5f5f5;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 40px 12px;
  padding: 2.5rem 0.75rem;
  position: relative;
}

.p-sub-business__section-contents-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-sub-business__section-subtitle {
  align-items: flex-start;
  display: flex;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  gap: 9px;
  gap: 0.5625rem;
  justify-content: flex-start;
  letter-spacing: 0.0588235294em;
  line-height: 1.59;
  margin-left: 0;
  position: relative;
}

.p-sub-business__section-subtitle p {
  flex: 1;
}

.p-sub-business__section-subtitle--hito {
  --image-color: #51bde1;
}

.p-sub-business__section-subtitle--mono {
  --image-color: #d18e18;
}

.p-sub-business__section-subtitle--kane {
  --image-color: #a3c000;
}

.p-sub-business__section-subtitle::before {
  background-color: var(--image-color);
  content: "";
  display: block;
  height: 13px;
  height: 0.8125rem;
  margin-top: 6px;
  margin-top: 0.375rem;
  width: 13px;
  width: 0.8125rem;
}

.p-sub-business__section-text {
  letter-spacing: 0.0882352941em;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-sub-business__section-annotation {
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.0909090909em;
  line-height: 1.83;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-sub-business__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: right;
}

.p-sub-business__btn a {
  margin-left: auto;
}

.p-sub-business__section-heading {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 28px;
  margin-top: 1.75rem;
}

.p-sub-business__section-table {
  border: 0.5px solid #000;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-sub-business__section-table-wrap {
  margin: 0 30px;
  margin: 0 1.875rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
  text-align: center;
}

.p-sub-business__section-table-wrap + .p-sub-business__section-table-wrap {
  border-top: 0.5px solid black;
}

.p-sub-business__section-table-title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 0px;
  margin-top: 0rem;
}

.p-sub-business__section-table-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0357142857em;
  line-height: 1;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-sub-business__page-link {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-hito {
  background-color: #fefcf7;
}

.p-sub-hito__contact {
  background-color: #fefcf7;
}

.p-sub-hito__inner {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-hito__support-inner {
  padding-left: 7px;
  padding-left: 0.4375rem;
  padding-right: 7px;
  padding-right: 0.4375rem;
}

.p-sub-hito__support-contents-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-hito__support-subtitle {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  gap: 9px;
  gap: 0.5625rem;
  justify-content: center;
  letter-spacing: 0.0588235294em;
  line-height: 1;
  margin-left: 0;
  position: relative;
}

.p-sub-hito__support-text-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-sub-hito__support-text {
  letter-spacing: 0.0882352941em;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-sub-hito__support-text-center {
  letter-spacing: 0.125em;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-sub-hito__support-table {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-hito__scheme-table {
  margin-top: 59px;
  margin-top: 3.6875rem;
}

.p-sub-hito__common-table {
  border: 0.5px solid #000;
}

.p-sub-hito__common-table-wrap {
  margin: 0 30px;
  margin: 0 1.875rem;
  padding: 15px 0;
  padding: 0.9375rem 0;
  text-align: center;
}

.p-sub-hito__common-table-wrap + .p-sub-hito__common-table-wrap {
  border-top: 0.5px solid black;
}

.p-sub-hito__common-table-title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 0px;
  margin-top: 0rem;
}

.p-sub-hito__common-table-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0357142857em;
  line-height: 1.74;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-sub-hito__support-items {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-hito__support-item {
  align-items: center;
  aspect-ratio: 210/210;
  border: 1px solid #51bde1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 210px;
  width: 13.125rem;
}

.p-sub-hito__support-item-img--01 {
  aspect-ratio: 67/72;
  width: 67px;
  width: 4.1875rem;
}

.p-sub-hito__support-item-img--02 {
  aspect-ratio: 65/55;
  width: 65px;
  width: 4.0625rem;
}

.p-sub-hito__support-item-img--03 {
  aspect-ratio: 65/72;
  width: 65px;
  width: 4.0625rem;
}

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

.p-sub-hito__support-item-text {
  color: #51bde1;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.43;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
}

.p-sub-hito__safety {
  background-color: #f7f7f7;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  padding-top: 45px;
  padding-top: 2.8125rem;
}

.p-sub-hito__safety-subtitle {
  text-align: center;
}

.p-sub-hito__safety-items {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-hito__safety-item {
  align-items: center;
  aspect-ratio: 220/220;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 220px;
  width: 13.75rem;
}

.p-sub-hito__safety-item-img {
  margin-left: auto;
  margin-right: auto;
}

.p-sub-hito__safety-item-img--04 {
  aspect-ratio: 102/106;
  width: 102px;
  width: 6.375rem;
}

.p-sub-hito__safety-item-img--05 {
  aspect-ratio: 112/83;
  width: 112px;
  width: 7rem;
}

.p-sub-hito__safety-item-img--06 {
  aspect-ratio: 82/105;
  width: 82px;
  width: 5.125rem;
}

.p-sub-hito__safety-item-img--07 {
  aspect-ratio: 82/105;
  width: 82px;
  width: 5.125rem;
}

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

.p-sub-hito__safety-item-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
}

.p-sub-hito__page-link {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-hito__scheme {
  background-color: #fff;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-hito__scheme-inner {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}

.p-sub-hito__scheme-subtitle {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.47;
  position: relative;
  text-align: center;
}

.p-sub-hito__scheme-items {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-sub-hito__scheme-item {
  margin-left: auto;
  margin-right: auto;
}

.p-sub-hito__scheme-item-img--01 {
  aspect-ratio: 198/198;
  margin-left: auto;
  margin-right: auto;
  width: 198px;
  width: 12.375rem;
}

.p-sub-hito__scheme-item-img--02 {
  aspect-ratio: 128/146;
  margin-left: auto;
  margin-right: auto;
  width: 128px;
  width: 8rem;
}

.p-sub-hito__scheme-item-img--04 {
  aspect-ratio: 75/49;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  margin-top: 2.1875rem;
  width: 75px;
  width: 4.6875rem;
}

.p-sub-hito__scheme-item-img--05 {
  aspect-ratio: 75/49;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 35px;
  margin-top: 2.1875rem;
  width: 75px;
  width: 4.6875rem;
}

.p-sub-hito__scheme-item-img--01 img,
.p-sub-hito__scheme-item-img--02 img,
.p-sub-hito__scheme-item-img--03 img,
.p-sub-hito__scheme-item-img--04 img,
.p-sub-hito__scheme-item-img--05 img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-sub-hito__scheme-item-title {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1;
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-sub-hito__scheme-item-name {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 400;
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-sub-hito__scheme-item-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.125em;
  line-height: 1.74;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-sub-hito__scheme-item-text span {
  display: inline-block;
}

.p-sub-mono {
  background-color: #fefcf7;
}

.p-sub-mono__contact {
  background-color: #fefcf7;
}

.p-sub-mono__inner {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-mono__support-contents-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-mono__support-subtitle {
  align-items: center;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  gap: 9px;
  gap: 0.5625rem;
  justify-content: center;
  letter-spacing: 0.0588235294em;
  line-height: 1;
  margin-left: 0;
  position: relative;
}

.p-sub-mono__support-text-center {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.0382352941em;
  line-height: 1.88;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-sub-mono__support-block {
  background-color: #f5f5f5;
  margin-top: 50px;
  margin-top: 3.125rem;
  padding: 40px 13px;
  padding: 2.5rem 0.8125rem;
}

.p-sub-mono__support-block-images {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
  justify-content: center;
}

.p-sub-mono__support-block-image1 {
  aspect-ratio: 235/136;
  width: 235px;
  width: 14.6875rem;
}

.p-sub-mono__support-block-image2 {
  aspect-ratio: 217/139;
  width: 217px;
  width: 13.5625rem;
}

.p-sub-mono__support-block-image1 img,
.p-sub-mono__support-block-image2 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-sub-mono__support-block-text-wrap {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-sub-mono__support-block-text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.p-sub-mono__support-bottom-text-wrap {
  color: #d18e18;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.82;
  margin-top: 50px;
  margin-top: 3.125rem;
  text-align: center;
}

.p-sub-mono__flow {
  background-color: #fff;
  margin-top: 60px;
  margin-top: 3.75rem;
  padding: 35px 12px;
  padding: 2.1875rem 0.75rem;
}

.p-sub-mono__flow-title-wrap {
  position: relative;
}

.p-sub-mono__flow-title {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

.p-sub-mono__flow-subtitle {
  color: #d18e18;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
}

.p-sub-mono__flow-content-wrap {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 30px;
  gap: 1.875rem;
  justify-content: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-mono__flow-content-item {
  background-color: #f7f7f7;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1;
  padding: 13px;
  padding: 0.8125rem;
  position: relative;
  text-align: center;
}

.p-sub-mono__flow-content-item:not(:last-child)::after {
  border-color: #6b6b6b transparent transparent transparent;
  border-style: solid;
  border-width: 13px 13px 0 16px;
  border-width: 0.8125rem 0.8125rem 0 1rem;
  bottom: -23px;
  bottom: -1.4375rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
}

.p-sub-mono__flow-text-wrap {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-sub-mono__flow-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0714285714em;
  line-height: 1.93;
}

.p-sub-mono__flow-bottom-text-wrap {
  border: 1px solid #000;
  margin-top: 45px;
  margin-top: 2.8125rem;
  padding: 20px 15px;
  padding: 1.25rem 0.9375rem;
}

.p-sub-mono__flow-bottom-title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.47;
  text-align: center;
}

.p-sub-mono__flow-bottom-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1628571429em;
  line-height: 1.74;
  margin-top: 13px;
  margin-top: 0.8125rem;
}

.p-sub-mono__compare {
  background-color: #fff;
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-mono__compare-inner {
  padding: 22px 12px 35px;
  padding: 1.375rem 0.75rem 2.1875rem;
}

.p-sub-mono__compare-title {
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.47;
  text-align: center;
}

.p-sub-mono__compare-content-wrap {
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-sub-mono__compare-content-items {
  display: grid;
  grid-gap: 25px;
  gap: 25px;
  gap: 1.5625rem;
}

.p-sub-mono__compare-content-item-title {
  background-color: #000;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 10px;
  padding: 0.625rem;
  text-align: center;
}

.p-sub-mono__compare-content-item-wrap {
  display: flex;
}

.p-sub-mono__compare-content-item-box1,
.p-sub-mono__compare-content-item-box2 {
  align-items: stretch;
  display: flex;
  flex: 1;
  justify-content: center;
  min-width: 0;
  width: 100%;
}

.p-sub-mono__compare-content-item-box1-title,
.p-sub-mono__compare-content-item-box2-title {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0639285714em;
  line-height: 1.4;
  padding: 16px 5px;
  padding: 1rem 0.3125rem;
  text-align: center;
  writing-mode: vertical-rl;
}

.p-sub-mono__compare-content-item-box1-title {
  background-color: #51bde1;
  border-bottom: 1px solid #7c7c7c;
}

.p-sub-mono__compare-content-item-box2-title {
  background-color: #6b6b6b;
}

.p-sub-mono__compare-content-item-box1-text-wrap,
.p-sub-mono__compare-content-item-box2-text-wrap {
  flex: 1;
  min-width: 0;
  padding: 22px 20px;
  padding: 1.375rem 1.25rem;
  width: 100%;
  word-break: break-word;
}

.p-sub-mono__compare-content-item-box1-text-wrap {
  background-color: #effbff;
}

.p-sub-mono__compare-content-item-box2-text-wrap {
  background-color: #f7f7f7;
}

.p-sub-mono__compare-content-item-box1-text1,
.p-sub-mono__compare-content-item-box2-text1 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.1277777778em;
  line-height: 1.39;
}

.p-sub-mono__compare-content-item-box1-text2,
.p-sub-mono__compare-content-item-box2-text2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.0714285714em;
  line-height: 1.79;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-sub-mono__page-link {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-sub-news__inner.l-inner {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.p-sub-news__page-link {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-sub-policy__inner.l-inner {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-policy__text-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-sub-policy__text {
  margin-top: 1em;
}

.p-sub-policy__text-block {
  margin-top: 3em;
}

.p-sub-policy__date {
  margin-top: 3em;
  text-align: right;
}

.p-sub-policy__name {
  margin-top: 1em;
  text-align: right;
}

.p-sub-policy__contact {
  margin-top: 3em;
}

.p-sub-policy__text a {
  color: #51bde1;
}

.p-sub-works__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-sub-works__page-link {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-top-business-item-img {
  aspect-ratio: 300/333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 300px;
  width: 18.75rem;
}

.p-top-business-item-img--hito {
  background-image: url(./../images/top/top-hito-sp.png);
}

.p-top-business-item-img--mono {
  background-image: url(./../images/top/top-mono-sp.png);
}

.p-top-business-item-img--kane {
  background-image: url(./../images/top/top-kane-sp.png);
}

.p-top-business-item-img__inner {
  padding: 50px 50px 0 80px;
  padding: 3.125rem 3.125rem 0 5rem;
}

.p-top-business-item-img__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-business-item-img__img.p-top-business-item-img__img--hito {
  aspect-ratio: 68/65;
  margin-bottom: 42px;
  margin-bottom: 2.625rem;
  width: 68px;
  width: 4.25rem;
}

.p-top-business-item-img__img.p-top-business-item-img__img--mono {
  aspect-ratio: 55/65;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  width: 55px;
  width: 3.4375rem;
}

.p-top-business-item-img__img.p-top-business-item-img__img--kane {
  aspect-ratio: 64/62;
  margin-bottom: 22px;
  margin-bottom: 1.375rem;
  width: 64px;
  width: 4rem;
}

.p-top-business-item-img__title {
  aspect-ratio: 33/68;
  left: 25px;
  left: 1.5625rem;
  position: absolute;
  top: 28%;
  width: 33px;
  width: 2.0625rem;
}

.p-top-business-item-img__title img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-business-item-img__subtitle {
  color: #fff;
  font-feature-settings: "palt";
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.4;
  text-align: left;
}

.p-top-business-item-img__text {
  color: #fff;
  font-feature-settings: "palt";
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.79;
  margin-top: 7px;
  margin-top: 0.4375rem;
  text-align: left;
}

.p-top-business {
  background-color: #fdfbf5;
  margin-top: -1px;
  margin-top: -0.0625rem;
  padding-bottom: 232px;
  padding-bottom: 14.5rem;
  position: relative;
  z-index: 3;
}

.p-top-business::before {
  background-image: url(./../images/top/top-business-bg-sp.png);
  background-position: top;
  background-repeat: repeat-x;
  background-size: contain;
  bottom: 51%;
  content: "";
  display: block;
  height: 600px;
  height: 37.5rem;
  left: 50%;
  max-width: 342px;
  max-width: 21.375rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.p-top-business__wave {
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-top-business__wave::before,
.p-top-business__wave::after {
  animation-name: slide_img;
  background-image: url(./../images/top/top-works-wave-sp.png);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: cover;
  background-size: 768px 132px;
  bottom: 0;
  content: "";
  display: block;
  height: 132px;
  height: 8.25rem;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-top-business__wave::before {
  animation: slide_img 50s -50s linear infinite;
}

.p-top-business__wave::after {
  animation: slide_img 50s linear infinite;
}

@keyframes slide_img {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1920px 0;
  }
}
.p-top-business__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.p-top-business__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1428571429em;
  line-height: 1.79;
  margin-left: 12px;
  margin-left: 0.75rem;
  margin-right: 12px;
  margin-right: 0.75rem;
  margin-top: 38px;
  margin-top: 2.375rem;
}

.p-top-business__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-business__btn a {
  margin-left: auto;
}

.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .splide__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  aspect-ratio: 600/300;
  display: block;
  margin: 0 5px;
  width: 100%;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mission {
  color: #fff;
  margin-top: -50px;
  margin-top: -3.125rem;
  min-height: 655px;
  min-height: 40.9375rem;
  overflow: hidden;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  padding-top: 100px;
  padding-top: 6.25rem;
  position: relative;
  position: relative;
  z-index: 2;
}

.p-top-mission::before {
  background-image: url(./../images/top/top-mission-bg-sp.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-top-mission::after {
  aspect-ratio: 750/132;
  background-image: url(./../images/top/top-mission-bg2-sp.png);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: contain;
  bottom: -2px;
  bottom: -0.125rem;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.p-top-mission__inner.l-inner {
  padding-left: 35px;
  padding-left: 2.1875rem;
}

.p-top-mission__section-title {
  color: #fff;
}

.p-top-mission__contents {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-top-mission__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
}

.p-top-mission__btn a {
  margin-left: auto;
}

.p-top-mission__text {
  padding-right: 10px;
  padding-right: 0.625rem;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  aspect-ratio: 600/300;
  display: block;
  margin: 0 5px;
  width: 100%;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-splide__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-splide .splide__slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-swiper .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-swiper .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  text-rendering: initial;
}

.p-top-mv {
  background-color: #c1f7fb;
  overflow: hidden;
  padding-bottom: 248px;
  padding-bottom: 15.5rem;
  padding-top: 90px;
  padding-top: 5.625rem;
  position: relative;
}

.p-top-mv__inner.l-inner {
  padding-right: 5px;
  padding-right: 0.3125rem;
}

.p-top-mv__title {
  font-feature-settings: "palt";
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.0178571429em;
  line-height: 1.2;
}

.p-top-mv__title-text {
  animation: revealText 1s forwards;
  background-color: #fff;
  display: block;
  opacity: 0;
  padding-left: 5px;
  padding-left: 0.3125rem;
  padding-right: 5px;
  padding-right: 0.3125rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.p-top-mv__title-text1 {
  animation-delay: 0s;
}

.p-top-mv__title-text2 {
  animation-delay: 0.5s;
}

.p-top-mv__title-text3 {
  animation-delay: 1s;
}

.p-top-mv__title-text4 {
  animation-delay: 1.5s;
}

@keyframes revealText {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}
.p-top-mv__title-text + .p-top-mv__title-text {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-top-mv__text {
  animation: fadeIn 1s forwards;
  animation-delay: 2s;
  color: #009acb;
  font-feature-settings: "palt";
  /* font-size: 20px; */
  font-size: min(3.73vw, 20px);
  font-weight: 400;
  letter-spacing: 0.0035714286em;
  line-height: 2.14;
  margin-top: 15px;
  margin-top: 0.9375rem;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.p-top-mv__text .sp {
  display: block;
}
.p-top-mv__text .pc {
  display: none;
}

.p-top-mv__tree1-img,
.p-top-mv__tree2-img {
  animation: sproutUp 1.5s cubic-bezier(0.17, 0.67, 0.38, 1);
  animation-delay: 4s;
  animation-fill-mode: backwards;
  position: absolute;
  transform-origin: bottom center;
  z-index: 1;
}

.p-top-mv__tree1-img {
  aspect-ratio: 151/246;
  bottom: 20px;
  bottom: 1.25rem;
  left: calc(50% - 220px);
  width: 108px;
  width: 6.75rem;
}

@keyframes sproutUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-top-mv__tree2-img {
  aspect-ratio: 304/496;
  bottom: -5px;
  bottom: -0.3125rem;
  left: calc(50% + 65px);
  width: 153px;
  width: 9.5625rem;
}

.p-top-mv__omame-img {
  aspect-ratio: 491/493;
  bottom: -20px;
  left: calc(50% + 0.625rem);
  position: absolute;
  transform: translateX(-50%);
  width: 285px;
  width: 17.8125rem;
  z-index: 2;
}

.p-top-mv__bucket-img {
  aspect-ratio: 129/165;
  bottom: 5px;
  bottom: 0.3125rem;
  left: calc(50% + 6.25rem);
  position: absolute;
  transform: translateX(-50%);
  width: 65px;
  width: 4.0625rem;
  z-index: 2;
}

.p-top-mv__tree1-img img,
.p-top-mv__tree2-img img,
.p-top-mv__omame-img img,
.p-top-mv__bucket-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-news {
  overflow: hidden;
  padding-top: 60px;
  padding-top: 3.75rem;
}

.p-top-news__inner {
  position: relative;
}

.p-top-news__inner::before,
.p-top-news__inner::after,
.p-top-news__contents::after {
  background-image: url(./../images/common/omame-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}

.p-top-news__inner::before {
  animation: spin2 15s linear infinite;
  aspect-ratio: 165/160;
  right: -10px;
  right: -0.625rem;
  top: 0px;
  top: 0rem;
  width: 150px;
  width: 9.375rem;
}

.p-top-news__inner::after {
  animation: spin-reverse 15s linear infinite;
  aspect-ratio: 165/160;
  bottom: 150px;
  bottom: 9.375rem;
  right: -10px;
  right: -0.625rem;
  transform: rotate(90deg);
  width: 165px;
  width: 10.3125rem;
}

.p-top-news__contents::after {
  animation: spin 15s linear infinite;
  aspect-ratio: 165/160;
  left: -20px;
  left: -1.25rem;
  top: 30%;
  width: 150px;
  width: 9.375rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin2 {
  0% {
    transform: rotate(-90deg);
  }
  100% {
    transform: rotate(270deg);
  }
}
@keyframes spin-reverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.p-top-news__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-news__btn a {
  margin-left: auto;
}

.p-top-post__inner {
  margin: 5% 5% 0 5%;
}

.p-top-post .splide__slide {
  display: block;
  width: 100%;
}

.p-top-post .splide__slide a {
  aspect-ratio: 600/400;
  display: block;
}

.p-top-post .splide__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .splide__pagination {
  bottom: -2em;
}

.p-top-post .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-post .swiper {
  padding-bottom: 20px;
}

.p-top-post .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-post .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .swiper-pagination {
  bottom: 0;
}

.p-top-post .swiper-button-prev,
.p-top-post .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .slick-track {
  display: block;
  width: 100%;
}

.p-top-post .slick-slide {
  display: block;
  height: 100%;
  margin: 0 5px;
  width: 100%;
}

.p-top-post .slick-slide img {
  aspect-ratio: 600/300;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .slick-next,
.p-top-post .slick-prev {
  background: gray;
}

.p-top-works-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.p-top-works-card__link {
  background-color: #fff;
  border-radius: 0.625rem;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 12px 15px 8px 15px;
  padding: 0.75rem 0.9375rem 0.5rem 0.9375rem;
}

.p-top-works-card__case {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  padding-bottom: 7px;
  padding-bottom: 0.4375rem;
  padding-left: 16px;
  padding-left: 1rem;
}

.p-top-works-card__title-wrap {
  border-bottom: 1px solid #009acb;
  color: #000;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.0666666667em;
  line-height: 1.26;
  padding-bottom: 11px;
  padding-bottom: 0.6875rem;
  padding-left: 12px;
  padding-left: 0.75rem;
}

.p-top-works-card__staff {
  display: block;
}

.p-top-works-card__bottom-wrap {
  align-items: center;
  display: flex;
  gap: 14px;
  gap: 0.875rem;
  padding-top: 12px;
  padding-top: 0.75rem;
}

.p-top-works-card__img {
  aspect-ratio: 60/72;
  width: 60px;
  width: 3.75rem;
}

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

.p-top-works-card__more {
  border-bottom: 1px solid #000;
  color: #000;
  font-size: 10px;
  font-size: 0.625rem;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  margin-left: auto;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  position: relative;
  width: 45px;
  width: 2.8125rem;
}

.p-top-works-card__more::before {
  background: #000;
  bottom: -2px;
  content: "";
  height: 50%;
  position: absolute;
  right: 5px;
  transform: rotate(-45deg);
  transform-origin: top right;
  width: 1px;
}

.p-top-works-card__price {
  align-items: flex-end;
  display: flex;
}

.p-top-works-card__price-text {
  color: #000;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
}

.p-top-works-card__price-number {
  color: #3ab3db;
  font-size: 33px;
  font-size: 2.0625rem;
  font-weight: 700;
  line-height: 1;
}

.p-top-works-card__text-wrap {
  flex: 1;
}

.p-top-works-card__text {
  color: #000;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
}

.p-top-works-card__text::after {
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: calc(100% + 20px);
}

.p-top-works-card__text::before {
  bottom: -3px;
  content: "";
  height: 8px;
  position: absolute;
  right: -3px;
  transform: rotate(45deg);
  width: 8px;
}

.p-top-works {
  background-image: linear-gradient(180deg, #00C0E5 0, #00C0E5 50%, transparent 50%, transparent 100%);
  color: #fff;
  margin-top: -30px;
  margin-top: -1.875rem;
  overflow: hidden;
  padding-bottom: 187px;
  padding-bottom: 11.6875rem;
  position: relative;
  position: relative;
  z-index: 4;
}
.p-top-works::after {
  background-image: url(./../images/top/top-works-bottom.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  display: block;
  height: 287px;
  height: 17.9375rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.p-top-works__inner.l-inner {
  background-color: #00C0E5;
  max-width: 100%;
  padding-left: 38px;
  padding-left: 2.375rem;
  padding-right: 38px;
  padding-right: 2.375rem;
}
.p-top-works__top-wrap {
  padding-top: 5px;
  padding-top: 0.3125rem;
}

.p-top-works__contents {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-top-works__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.79;
}

.p-top-works__btn {
  margin-right: -10px;
  margin-right: -0.625rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

.p-top-works__btn a {
  margin-left: auto;
}

.p-top-works__splide {
  margin-left: -38px;
  margin-left: -2.375rem;
  margin-right: -38px;
  margin-right: -2.375rem;
  margin-top: 47px;
  margin-top: 2.9375rem;
  position: relative;
  z-index: 2;
}

/*----------------------------
js-scroll__up ｜下から上へ出現
----------------------------*/
.js-scroll__up {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-in-out;
}

.js-scroll__up.on {
  opacity: 1;
  transform: translateY(0);
}

.js-scroll__up.on:nth-child(2) {
  transition-delay: 0.3s;
}

.js-scroll__up.on:nth-child(3) {
  transition-delay: 0.6s;
}

/*----------------------------
js-scroll__left ｜左から出現
----------------------------*/
.js-scroll__left {
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.8s ease-in-out;
}

.js-scroll__left.on {
  opacity: 1;
  transform: translateX(0);
}

/*----------------------------
js-scroll__right ｜右から出現
----------------------------*/
.js-scroll__right {
  opacity: 0;
  transform: translateX(30px);
  transition: 0.8s ease-in-out;
}

.js-scroll__right.on {
  opacity: 1;
  transform: translateX(0);
}

.pagination {
  width: 100%;
}
.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  align-items: center;
  color: #009acb;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  font-size: 1rem;
}

.nav-links ul li span.current {
  color: #000;
}

.nav-links ul li {
  margin: 0 5px;
  margin: 0 0.3125rem;
  position: relative;
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  padding: 5px;
  padding: 0.3125rem;
  width: 100%;
}

.nav-links ul li .nav-links ul .dots {
  padding-left: 0;
  padding-right: 0;
}

.wpcf7-not-valid-tip {
  margin-left: 25px;
  margin-left: 1.5625rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.u-hidden-sp {
  display: none;
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media screen and (min-width: 768px){
  html {
    scroll-padding-top: 8.75rem;
  }
  html {
    font-size: 1.4545454545vw;
  }
  body {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.08em;
  }
  .l-contact-section {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .l-inner {
    max-width: 1150px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .l-pager {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .c-btn {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 20px 24px 20px 37px;
    padding: 1.25rem 1.5rem 1.25rem 2.3125rem;
    width: 260px;
    width: 16.25rem;
  }
  .c-btn--left {
    padding: 20px 24px;
    padding: 1.25rem 1.5rem;
  }
  .c-btn__arrow {
    border-radius: 1.25rem;
    height: 30px;
    height: 1.875rem;
    width: 30px;
    width: 1.875rem;
  }
  .c-btn__arrow::before {
    height: 12px;
    height: 0.75rem;
    width: 8px;
    width: 0.5rem;
  }
  .c-business-btn {
    aspect-ratio: 370/160;
    border-radius: 1.25rem;
    justify-content: center;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    max-width: 370px;
    max-width: 23.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .c-business-btn--hito::before {
    width: 197px;
    width: 12.3125rem;
  }
  .c-business-btn--mono::before {
    width: 197px;
    width: 12.3125rem;
  }
  .c-business-btn--kane::before {
    width: 210px;
    width: 13.125rem;
  }
  .c-business-btn__text {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .c-button {
    border-radius: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 20px 24px 20px 37px;
    padding: 1.25rem 1.5rem 1.25rem 2.3125rem;
    width: 260px;
    width: 16.25rem;
  }
  .c-button::before {
    right: 34px;
    right: 2.125rem;
  }
  .c-button--left.c-button {
    padding: 20px 37px 20px 24px;
    padding: 1.25rem 2.3125rem 1.25rem 1.5rem;
  }
  .c-button--left.c-button::before {
    left: 34px;
    left: 2.125rem;
  }
  .c-button__arrow {
    border-radius: 1.25rem;
    height: 30px;
    height: 1.875rem;
    width: 30px;
    width: 1.875rem;
  }
  .c-button__arrow::before {
    height: 12px;
    height: 0.75rem;
    width: 8px;
    width: 0.5rem;
  }
  .c-contact-mv__wrap {
    background-image: radial-gradient(circle at 0 0, #cdf2ff, #bcf5fa);
    height: 666px;
    height: 41.625rem;
    padding-top: 210px;
    padding-top: 13.125rem;
  }
  .c-contact-mv__wave {
    background-image: url("../images/common/header-bg-pc.svg");
    background-repeat: repeat-x;
    background-size: cover;
    height: 153px;
    height: 9.5625rem;
  }
  .c-page-btn {
    max-width: 370px;
    max-width: 23.125rem;
  }
  .c-page-btn::before {
    border-radius: 1.25rem;
  }
  .c-page-btn--company {
    background-image: url("../images/common/company-btn.png");
  }
  .c-page-btn--works {
    background-image: url("../images/common/works-btn.png");
  }
  .c-page-btn--omame {
    background-image: url("../images/common/omame-btn.png");
  }
  .c-page-btn__text {
    font-size: 32px;
    font-size: 2rem;
  }
  .c-page-top {
    bottom: 30px;
    bottom: 1.875rem;
    gap: 20px;
    gap: 1.25rem;
    right: 30px;
    right: 1.875rem;
  }
  .c-page-top::before {
    width: 70px;
    width: 4.375rem;
  }
  .c-page-top:hover::before,
  .c-page-top:active::before {
    width: 150px;
    width: 9.375rem;
  }
  .c-page-top__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .c-section-title__en {
    font-size: 15px;
    font-size: 0.9375rem;
    margin-bottom: 38px;
    margin-bottom: 2.375rem;
  }
  .c-section-title__jp {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 1.24;
  }
  .c-section-title__jp--center {
    text-align: center;
  }
  .c-section-title__jp--narrow {
    letter-spacing: normal;
  }
  .c-sub-mv__wrap {
    background-color: #c6f9fc;
    margin-bottom: 0;
    min-height: 570px;
    min-height: 35.625rem;
    padding-bottom: 180px;
    padding-bottom: 11.25rem;
    padding-top: 175px;
    padding-top: 10.9375rem;
  }
  .c-sub-mv__wave {
    background-image: url("../images/common/header-bg-pc-2.svg");
    background-repeat: repeat-x;
    background-size: cover;
    bottom: -1px;
    height: 153px;
    height: 9.5625rem;
  }
  .c-text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  .c-text--under-mv {
    text-underline-offset: 0.1em;
  }
  .c-text--under {
    text-underline-offset: 0.1em;
  }
  .c-title {
    color: red;
  }
  .p-common-header__inner {
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    padding-left: 50px;
    padding-left: 3.125rem;
    padding-right: 50px;
    padding-right: 3.125rem;
  }
  .p-common-header__text {
    font-size: 17px;
    font-size: 1.0625rem;
    letter-spacing: 0.0425em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
  .p-contact-section {
    padding: 195px 0 120px;
    padding: 12.1875rem 0 7.5rem;
  }
  .p-contact-section__inner {
    max-width: 1150px;
    max-width: 71.875rem;
  }
  .p-contact-section__wrap {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
  .p-contact-section__title {
    flex: 1;
  }
  .p-contact-section__contents {
    align-items: flex-start;
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    max-width: 760px;
    max-width: 47.5rem;
    padding: 30px 70px;
    padding: 1.875rem 4.375rem;
  }
  .p-contact-section__left {
    flex: 1;
    order: 1;
  }
  .p-contact-section__text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: normal;
    line-height: 1.75;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-contact-section__btn {
    text-align: center;
    width: auto;
    width: initial;
  }
  .p-contact-section__img {
    margin-left: -24px;
    margin-left: -1.5rem;
    order: 2;
    width: 254px;
    width: 15.875rem;
  }
  .p-contact__contents {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-contact__content {
    display: flex;
  }
  .p-contact__head {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-top: 12px;
    margin-top: 0.75rem;
    width: 280px;
    width: 17.5rem;
  }
  .p-contact__head--confirm {
    margin-top: 0;
  }
  .p-contact__item {
    flex-grow: 1;
    margin-top: 0;
    width: 660px;
    width: 41.25rem;
  }
  .p-contact__required {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 4px 9px;
    padding: 0.25rem 0.5625rem;
  }
  .p-contact__content {
    margin: 40px 0 38px;
    margin: 2.5rem 0 2.375rem;
  }
  .p-contact__content.p-contact__content--confirm {
    margin: 75px 0 38px;
    margin: 4.6875rem 0 2.375rem;
  }
  .p-contact__policy {
    margin-left: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 780px;
    max-width: 48.75rem;
    padding: 33px 0;
    padding: 2.0625rem 0;
    text-align: center;
  }
  .p-contact__policy.p-contact__policy--confirm {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-contact__item-text,
  .p-contact__item-tel,
  .p-contact__item-email,
  .p-contact__item-textarea,
  .p-contact__item-select {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    padding: 15px 40px;
    padding: 0.9375rem 2.5rem;
  }
  .p-contact__item-textarea {
    height: 225px;
  }
  .p-contact__item-radio input[type=radio] + span,
  .p-contact__item-checkbox input[type=checkbox] + span {
    display: block;
    padding-left: 38px;
    padding-left: 2.375rem;
  }
  .p-contact__item-radio input[type=radio] + span::before,
  .p-contact__item-checkbox input[type=checkbox] + span::before {
    border-radius: 0.3125rem;
    height: 22px;
    height: 1.375rem;
    width: 22px;
    width: 1.375rem;
  }
  .p-contact__item-checkbox input[type=checkbox] + span::after {
    left: 0.25em;
  }
  .p-contact__description {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .p-contact__text {
    font-size: 17px;
    font-size: 1.0625rem;
    letter-spacing: 0.0425em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-contact__text--center {
    text-align: center;
  }
  .p-contact__recaptha {
    text-align: center;
  }
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    margin-bottom: 100px;
    margin-bottom: 6.25rem;
    margin-left: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 780px;
    max-width: 48.75rem;
  }
  .p-contact__btn-wrap--center {
    margin-left: auto;
    margin-right: auto;
  }
  .p-contact__btn::before {
    right: 29px;
    right: 1.8125rem;
  }
  .p-contact__btn.p-contact__btn--left::before {
    left: 29px;
    left: 1.8125rem;
  }
  .p-contact__btn {
    border-radius: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
    width: 260px;
    width: 16.25rem;
  }
  .p-contact__btn input[type=submit],
  .p-contact__btn input[type=button] {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 26px 24px 26px 37px;
    padding: 1.625rem 1.5rem 1.625rem 2.3125rem;
  }
  .p-contact__btn.p-contact__btn--left input[type=button] {
    padding: 26px 24px 26px 80px;
    padding: 1.625rem 1.5rem 1.625rem 5rem;
  }
  .p-contact__btn-arrow {
    border-radius: 1.25rem;
    height: 30px;
    height: 1.875rem;
    width: 30px;
    width: 1.875rem;
  }
  .p-footer {
    padding: 65px 0 100px;
    padding: 4.0625rem 0 6.25rem;
  }
  .p-footer__inner {
    max-width: 840px;
    max-width: 52.5rem;
    padding-right: 0;
  }
  .p-footer__wrap {
    display: flex;
    justify-content: space-between;
  }
  .p-footer__logo {
    margin: 0;
    margin: initial;
    max-width: 195px;
    max-width: 12.1875rem;
  }
  .p-footer__logo a {
    padding: 15px 0;
    padding: 0.9375rem 0;
  }
  .p-footer__address-wrap {
    margin-top: 10px;
    margin-top: 0.625rem;
  }
  .p-footer__address {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-footer__map {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.0555555556em;
    margin-top: 10px;
    margin-top: 0.625rem;
    padding: 10px 10px 10px 0;
    padding: 0.625rem 0.625rem 0.625rem 0;
  }
  .p-footer__nav {
    grid-template-columns: 135px 120px 1fr;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-footer__nav-items:nth-child(3) {
    grid-column: initial;
  }
  .p-footer__nav-item a {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: normal;
    padding: 15px;
    padding: 0.9375rem;
  }
  .p-footer__sub-nav-list {
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
  .p-footer__sub-nav-item a {
    font-size: 13px;
    font-size: 0.8125rem;
    margin-left: 15px;
    margin-left: 0.9375rem;
    padding: 10px 15px;
    padding: 0.625rem 0.9375rem;
  }
  .p-footer__sub-nav-item a::before {
    width: 8px;
    width: 0.5rem;
  }
  .p-footer__copyright {
    font-size: 11px;
    font-size: 0.6875rem;
    letter-spacing: 0.0909090909em;
    margin-top: 5px;
    margin-top: 0.3125rem;
    text-align: left;
  }
  .p-header {
    height: 100px;
    height: 6.25rem;
  }
  .p-header__inner {
    height: inherit;
    max-width: 1900px;
    max-width: 118.75rem;
    padding: 30px 50px 0;
    padding: 1.875rem 3.125rem 0;
  }
  .p-header__logo {
    max-width: 202px;
    max-width: 12.625rem;
  }
  .p-header__nav {
    display: block;
    height: 60px;
    height: 3.75rem;
    margin-left: 40px;
    margin-left: 2.5rem;
    padding-top: 10px;
    padding-top: 0.625rem;
  }
  .p-header__hamburger {
    display: none;
  }
  .p-news-item__body {
    padding: 30px 0;
    padding: 1.875rem 0;
  }
  .p-news-item__date {
    font-size: 16px;
    font-size: 1rem;
  }
  /* .p-news-item__category-wrap {
    margin-top: 15px;
    margin-top: 0.9375rem;
  } */
  .p-news-item__category-item {
    font-size: 14px;
    font-size: 0.875rem;
    min-width: 68px;
    min-width: 4.25rem;
  }
  .p-news-item__title {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.0571428571em;
  }
  .p-news-item__text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.0571428571em;
  }
  .p-page-link__inner {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    justify-content: center;
  }
  .p-pagination__prev,
  .p-pagination__next {
    height: 24px;
    height: 1.5rem;
    width: 24px;
    width: 1.5rem;
  }
  .p-pagination__last,
  .p-pagination__first {
    height: 24px;
    height: 1.5rem;
    width: 24px;
    width: 1.5rem;
  }
  .p-post-card {
    padding: 20px 10px 34px 20px;
    padding: 1.25rem 0.625rem 2.125rem 1.25rem;
  }
  .p-post-card__date {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-post-card__title,
  .p-post-card__staff {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-post-card__category-wrap {
    margin-top: 35px;
    margin-top: 2.1875rem;
  }
  .p-post-card__category-item {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 4px 9px;
    padding: 0.25rem 0.5625rem;
  }
  .p-post-card__hozyokin-wrap {
    margin-top: 22px;
    margin-top: 1.375rem;
    padding-top: 18px;
    padding-top: 1.125rem;
  }
  .p-post-connect__items {
    row-gap: 40px;
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-post-list__items {
    row-gap: 22px;
    row-gap: 1.375rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    max-width: 820px;
    max-width: 51.25rem;
  }
  .p-sub-about-greeting__wrap {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-sub-about-greeting__img {
    aspect-ratio: 1100/470;
  }
  .p-sub-about-greeting__contents {
    padding: 70px 25px;
    padding: 4.375rem 1.5625rem;
  }
  .p-sub-about-greeting__lead-text {
    background-color: transparent;
    color: #fff;
    font-size: 28px;
    font-size: 1.75rem;
    left: 39.4545454545%;
    letter-spacing: 0.1em;
    line-height: 1.86;
    padding: 0;
    position: absolute;
    top: 17.0212765957%;
  }
  .p-sub-about-greeting__text-wrap {
    margin-left: auto;
    margin-right: auto;
    width: 780px;
    width: 48.75rem;
  }
  .p-sub-about-greeting__name-wrap {
    gap: 32px;
    gap: 2rem;
    margin-top: 52px;
    margin-top: 3.25rem;
  }
  .p-sub-about-greeting__name-img {
    width: 200px;
    width: 12.5rem;
  }
  .p-sub-about-greeting__name {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-sub-about-info__wrap {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-sub-about-info__list {
    font-size: 16px;
    font-size: 1rem;
    padding: 33px 160px;
    padding: 2.0625rem 10rem;
  }
  .p-sub-about-info__term {
    max-width: 150px;
    max-width: 9.375rem;
  }
  .p-sub-about-omame {
    padding: 70px 80px;
    padding: 4.375rem 5rem;
  }
  .p-sub-about-omame::before {
    height: 100%;
    right: 55px;
    right: 3.4375rem;
    width: auto;
  }
  .p-sub-about-omame__title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .p-sub-about-omame__text {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-sub-about-philosophy__wrap {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-sub-about-philosophy__subtitle {
    font-size: 38px;
    font-size: 2.375rem;
    letter-spacing: 0.11em;
    line-height: 1.34;
    width: 400px;
    width: 25rem;
  }
  .p-sub-about-philosophy__text {
    margin-top: 0;
  }
  .p-sub-about-profile__wrap {
    align-items: flex-start;
    display: flex;
    gap: 50px;
    gap: 3.125rem;
    justify-content: center;
    padding: 50px 60px 50px 70px;
    padding: 3.125rem 3.75rem 3.125rem 4.375rem;
  }
  .p-sub-about-profile__img-wrap {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-sub-about-profile__img {
    aspect-ratio: 135/179;
    width: 135px;
    width: 8.4375rem;
  }
  .p-sub-about-profile__list-wrap {
    padding: 0;
  }
  .p-sub-about-profile__list {
    gap: 25px;
    gap: 1.5625rem;
  }
  .p-sub-about-profile__list-title {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 2;
    width: 110px;
    width: 6.875rem;
  }
  .p-sub-about-profile__list-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-sub-about__inner {
    padding-top: 0;
  }
  .p-sub-about__section-title {
    font-size: 20px;
    font-size: 1.25rem;
    gap: 14px;
    gap: 0.875rem;
  }
  .p-sub-about__section-title::before {
    width: 18px;
    width: 1.125rem;
  }
  .p-sub-about__philosophy {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-sub-about__greeting {
    margin-top: 90px;
    margin-top: 5.625rem;
  }
  .p-sub-about-greeting__profile {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-sub-about__page-link {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-sub-about__info {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-sub-business-item-img {
    max-width: 100%;
    width: 333px;
    width: 20.8125rem;
  }
  .p-sub-business-item-img--hito {
    background-image: url(./../images/business/hito-jigyo-pc.png);
  }
  .p-sub-business-item-img--mono {
    background-image: url(./../images/business/mono-jigyo-pc.png);
  }
  .p-sub-business-item-img--kane {
    background-image: url(./../images/business/kane-jigyo-pc.png);
  }
  .p-sub-business-item-img__number {
    font-size: 30px;
    font-size: 1.875rem;
    height: 60px;
    height: 3.75rem;
    right: 40px;
    right: 2.5rem;
    top: 58px;
    top: 3.625rem;
    width: 60px;
    width: 3.75rem;
  }
  .p-sub-business-item-img__inner {
    padding: 43px 50px 0 60px;
    padding: 2.6875rem 3.125rem 0 3.75rem;
  }
  .p-sub-business-item-img__inner--kane {
    padding: 43px 50px 0 60px;
    padding: 2.6875rem 3.125rem 0 3.75rem;
  }
  .p-sub-business-item-img__img.p-sub-business-item-img__img--hito {
    width: 93px;
    width: 5.8125rem;
  }
  .p-sub-business-item-img__img.p-sub-business-item-img__img--mono {
    margin-left: 20px;
    margin-left: 1.25rem;
    width: 71px;
    width: 4.4375rem;
  }
  .p-sub-business-item-img__img.p-sub-business-item-img__img--kane {
    width: 87px;
    width: 5.4375rem;
  }
  .p-sub-business-item-img__text-wrap {
    padding: 22px 0 0 30px;
    padding: 1.375rem 0 0 1.875rem;
  }
  .p-sub-business-item-img__title {
    width: 85px;
    width: 5.3125rem;
  }
  .p-sub-business-item-img__text {
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
  .p-sub-business-item__text {
    font-size: 17px;
    font-size: 1.0625rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-sub-business-section-title {
    align-items: flex-end;
    flex-direction: row;
    gap: 30px;
    gap: 1.875rem;
    justify-content: flex-start;
  }
  .p-sub-business-section-title--hito::before {
    aspect-ratio: 150/150;
    background-image: url(./../images/business/hito-illust.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    right: 40px;
    right: 2.5rem;
    right: 0;
    top: 48px;
    top: 3rem;
    top: 0;
    width: 150px;
    width: 9.375rem;
  }
  .p-sub-business-section-title--mono::before {
    aspect-ratio: 103/79;
    background-image: url(./../images/business/mono-illust.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    right: 63px;
    right: 3.9375rem;
    right: 0;
    top: 78px;
    top: 4.875rem;
    top: 0;
    width: 103px;
    width: 6.4375rem;
  }
  .p-sub-business-section-title--kane::before {
    aspect-ratio: 76/136;
    background-image: url(./../images/business/kane-illust.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    right: 77px;
    right: 4.8125rem;
    right: 0;
    top: 47px;
    top: 2.9375rem;
    top: 0;
    width: 76px;
    width: 4.75rem;
  }
  .p-sub-business-section-title__wrap {
    gap: 30px;
    gap: 1.875rem;
  }
  .p-sub-business-section-title__number {
    font-size: 56px;
    font-size: 3.5rem;
  }
  .p-sub-business-section-title__img {
    width: 93px;
    width: 5.8125rem;
  }
  .p-sub-business-section-title__text {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-sub-business__support {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-sub-business__support-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-top: 5rem;
    max-width: 780px;
    max-width: 48.75rem;
  }
  .p-sub-business__support-title {
    font-size: 22px;
    font-size: 1.375rem;
    padding-bottom: 17px;
    padding-bottom: 1.0625rem;
  }
  .p-sub-business__support-title::before {
    width: 40px;
    width: 2.5rem;
  }
  .p-sub-business__support-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-sub-business-sub-title {
    align-items: flex-end;
    flex-direction: row;
    gap: 30px;
    gap: 1.875rem;
    justify-content: center;
  }
  .p-sub-business-sub-title__wrap {
    gap: 61px;
    gap: 3.8125rem;
  }
  .p-sub-business-sub-title__number {
    font-size: 88px;
    font-size: 5.5rem;
  }
  .p-sub-business-sub-title__img {
    width: 135px;
    width: 8.4375rem;
  }
  .p-sub-business-sub-title__text {
    font-size: 31px;
    font-size: 1.9375rem;
  }
  .p-sub-business-top__wrap {
    flex-direction: row;
  }
  .p-sub-business__inner {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-sub-business__section {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding: 80px 68px;
    padding: 5rem 4.25rem;
  }
  .p-sub-business__item {
    max-width: calc((100% - 6.25rem) / 3);
  }
  .p-sub-business__section-contents-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 780px;
    max-width: 48.75rem;
  }
  .p-sub-business__section-text-wrap {
    margin-left: 30px;
    margin-left: 1.875rem;
  }
  .p-sub-business__section-subtitle {
    align-items: center;
    font-size: 22px;
    font-size: 1.375rem;
    gap: 20px;
    gap: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
  }
  .p-sub-business__section-subtitle::before {
    height: 11px;
    height: 0.6875rem;
    margin-top: 0px;
    margin-top: 0rem;
    width: 11px;
    width: 0.6875rem;
  }
  .p-sub-business__section-text {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-sub-business__section-annotation {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-sub-business__btn {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-sub-business__section-heading {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-sub-business__section-table {
    align-items: center;
    display: flex;
    justify-content: center;
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
  .p-sub-business__section-table-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 15px 0;
    margin: 0.9375rem 0;
    padding: 0;
  }
  .p-sub-business__section-table-wrap--left {
    padding-right: 15px;
    padding-right: 0.9375rem;
  }
  .p-sub-business__section-table-wrap--right {
    padding-left: 15px;
    padding-left: 0.9375rem;
  }
  .p-sub-business__section-table-wrap + .p-sub-business__section-table-wrap {
    border-left: 0.5px solid black;
    border-top: none;
  }
  .p-sub-business__section-table-title {
    align-items: center;
    display: flex;
    font-size: 20px;
    font-size: 1.25rem;
    justify-content: center;
  }
  .p-sub-business__section-table-text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 0px;
    margin-top: 0rem;
  }
  .p-sub-business__page-link {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-sub-hito__inner {
    margin-top: 0;
  }
  .p-sub-hito__support-contents-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-sub-hito__support-subtitle {
    align-items: center;
    font-size: 22px;
    font-size: 1.375rem;
    gap: 20px;
    gap: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
  }
  .p-sub-hito__support-text-wrap {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-sub-hito__support-text {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-sub-hito__support-text-center {
    margin-top: 15px;
    margin-top: 0.9375rem;
    text-align: center;
  }
  .p-sub-hito__support-table {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-sub-hito__scheme-table {
    margin-top: 52px;
    margin-top: 3.25rem;
  }
  .p-sub-hito__common-table {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 780px;
    max-width: 48.75rem;
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
  .p-sub-hito__common-table-wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 15px 0;
    margin: 0.9375rem 0;
    padding: 0;
  }
  .p-sub-hito__common-table-wrap--left {
    padding-right: 15px;
    padding-right: 0.9375rem;
  }
  .p-sub-hito__common-table-wrap--right {
    padding-left: 15px;
    padding-left: 0.9375rem;
  }
  .p-sub-hito__common-table-wrap + .p-sub-hito__common-table-wrap {
    border-left: 0.5px solid black;
    border-top: none;
  }
  .p-sub-hito__common-table-title {
    align-items: center;
    display: flex;
    font-size: 20px;
    font-size: 1.25rem;
    justify-content: center;
  }
  .p-sub-hito__common-table-text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    margin-top: 0px;
    margin-top: 0rem;
  }
  .p-sub-hito__support-items {
    flex-direction: row;
    gap: 55px;
    gap: 3.4375rem;
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-sub-hito__support-item {
    border: 2px solid #51bde1;
    width: 330px;
    width: 20.625rem;
  }
  .p-sub-hito__support-item-img--01 {
    width: 76px;
    width: 4.75rem;
  }
  .p-sub-hito__support-item-img--02 {
    width: 85px;
    width: 5.3125rem;
  }
  .p-sub-hito__support-item-img--03 {
    width: 75px;
    width: 4.6875rem;
  }
  .p-sub-hito__support-item-text {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
  }
  .p-sub-hito__safety {
    margin-top: 120px;
    margin-top: 7.5rem;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-top: 29px;
    padding-top: 1.8125rem;
  }
  .p-sub-hito__safety-items {
    flex-direction: row;
    gap: 30px;
    gap: 1.875rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
  .p-sub-hito__safety-item {
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    padding-bottom: 29px;
    padding-bottom: 1.8125rem;
    padding-top: 22px;
    padding-top: 1.375rem;
    width: 200px;
    width: 12.5rem;
  }
  .p-sub-hito__safety-item-img--04 {
    width: 86px;
    width: 5.375rem;
  }
  .p-sub-hito__safety-item-img--05 {
    width: 97px;
    width: 6.0625rem;
  }
  .p-sub-hito__safety-item-img--06 {
    width: 63px;
    width: 3.9375rem;
  }
  .p-sub-hito__safety-item-img--07 {
    width: 70px;
    width: 4.375rem;
  }
  .p-sub-hito__safety-item-text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: auto;
  }
  .p-sub-hito__page-link {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-sub-hito__scheme {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-sub-hito__scheme-inner {
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
    padding-top: 50px;
    padding-top: 3.125rem;
  }
  .p-sub-hito__scheme-subtitle {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-sub-hito__scheme-subtitle::before {
    background-image: linear-gradient(to left, #fff, #c6f9fc);
    content: "";
    display: block;
    height: 30px;
    height: 1.875rem;
    left: 0;
    margin-left: 42px;
    margin-left: 2.625rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    width: 15rem;
    z-index: -1;
  }
  .p-sub-hito__scheme-subtitle::after {
    background-image: linear-gradient(to right, #fff, #c6f9fc);
    content: "";
    display: block;
    height: 30px;
    height: 1.875rem;
    margin-right: 42px;
    margin-right: 2.625rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    width: 15rem;
    z-index: -1;
  }
  .p-sub-hito__scheme-items {
    align-items: flex-start;
    display: flex;
    gap: 43px;
    gap: 2.6875rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .p-sub-hito__scheme-item {
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    width: 330px;
    width: 20.625rem;
  }
  .p-sub-hito__scheme-item--02 {
    width: 144px;
    width: 9rem;
  }
  .p-sub-hito__scheme-item-img--02 {
    width: 141px;
    width: 8.8125rem;
  }
  .p-sub-hito__scheme-item-img--04 {
    aspect-ratio: 55/55;
    margin-left: -80px;
    margin-left: -5rem;
    margin-right: 0;
    margin-right: initial;
    margin-top: 60px;
    margin-top: 3.75rem;
    width: 55px;
    width: 3.4375rem;
  }
  .p-sub-hito__scheme-item-img--05 {
    aspect-ratio: 55/55;
    margin-left: 0;
    margin-left: initial;
    margin-right: -80px;
    margin-right: -5rem;
    margin-top: 60px;
    margin-top: 3.75rem;
    width: 55px;
    width: 3.4375rem;
  }
  .p-sub-hito__scheme-item-title {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .p-sub-hito__scheme-item-name {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .p-sub-hito__scheme-item-text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.0821428571em;
    line-height: 2;
  }
  .p-sub-hito__scheme-item-text span {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
  }
  .p-sub-mono__inner {
    margin-top: 0;
  }
  .p-sub-mono__support-contents-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-sub-mono__support-subtitle {
    align-items: center;
    font-size: 22px;
    font-size: 1.375rem;
    gap: 20px;
    gap: 1.25rem;
    letter-spacing: 0.04em;
    line-height: 1.45;
  }
  .p-sub-mono__support-text-center {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-sub-mono__support-block {
    margin-top: 60px;
    margin-top: 3.75rem;
    padding: 63px 15px 40px;
    padding: 3.9375rem 0.9375rem 2.5rem;
  }
  .p-sub-mono__support-block-images {
    flex-direction: row;
    gap: 100px;
    gap: 6.25rem;
  }
  .p-sub-mono__support-block-image1 {
    width: 259px;
    width: 16.1875rem;
  }
  .p-sub-mono__support-block-image2 {
    width: 231px;
    width: 14.4375rem;
  }
  .p-sub-mono__support-block-text-wrap {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
  .p-sub-mono__support-block-text {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.18em;
    text-align: center;
  }
  .p-sub-mono__support-bottom-text-wrap {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    line-height: 1.88;
    margin-top: 75px;
    margin-top: 4.6875rem;
  }
  .p-sub-mono__flow {
    margin-top: 100px;
    margin-top: 6.25rem;
    padding: 50px;
    padding: 3.125rem;
  }
  .p-sub-mono__flow-title-wrap::before {
    background-image: linear-gradient(to left, #fff, #c6f9fc);
    content: "";
    display: block;
    height: 30px;
    height: 1.875rem;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    width: 15rem;
    z-index: 1;
  }
  .p-sub-mono__flow-title-wrap::after {
    background-image: linear-gradient(to right, #fff, #c6f9fc);
    content: "";
    display: block;
    height: 30px;
    height: 1.875rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 240px;
    width: 15rem;
    z-index: 1;
  }
  .p-sub-mono__flow-title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-sub-mono__flow-subtitle {
    font-size: 25px;
    font-size: 1.5625rem;
  }
  .p-sub-mono__flow-content-wrap {
    align-items: stretch;
    flex-direction: row;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-sub-mono__flow-content-item {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    padding: 29px 20px;
    padding: 1.8125rem 1.25rem;
    text-align: center;
    writing-mode: vertical-rl;
  }
  .p-sub-mono__flow-content-item:not(:last-child)::after {
    border-color: transparent transparent transparent #6b6b6b;
    border-width: 16px 0 16px 13px;
    border-width: 1rem 0 1rem 0.8125rem;
    bottom: auto;
    bottom: initial;
    left: auto;
    right: -22px;
    right: -1.375rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .p-sub-mono__flow-text-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 780px;
    max-width: 48.75rem;
  }
  .p-sub-mono__flow-text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.125em;
    line-height: 2;
  }
  .p-sub-mono__flow-bottom-text-wrap {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 23px 20px;
    padding: 1.4375rem 1.25rem;
  }
  .p-sub-mono__flow-bottom-title {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
  }
  .p-sub-mono__flow-bottom-text {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.15625em;
    line-height: 2;
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-sub-mono__compare {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-sub-mono__compare-inner {
    padding: 32px 12px 50px;
    padding: 2rem 0.75rem 3.125rem;
  }
  .p-sub-mono__compare-title {
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: normal;
  }
  .p-sub-mono__compare-content-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 780px;
    max-width: 48.75rem;
  }
  .p-sub-mono__compare-content-items {
    gap: 0;
    grid-template-columns: 19.375rem 14.6875rem 14.6875rem;
    min-width: 0;
    width: 100%;
  }
  .p-sub-mono__compare-content-item {
    display: grid;
    grid-row: span 3;
    grid-template-rows: subgrid;
    min-width: 0;
    width: 100%;
  }
  .p-sub-mono__compare-content-item-title {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-sub-mono__compare-content-item-box1-title,
  .p-sub-mono__compare-content-item-box2-title {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 27px;
    padding: 1.6875rem;
    width: 75px;
    width: 4.6875rem;
  }
  .p-sub-mono__compare-content-item:not(:first-child) .p-sub-mono__compare-content-item-box1-title,
  .p-sub-mono__compare-content-item:not(:first-child) .p-sub-mono__compare-content-item-box2-title {
    display: none;
  }
  .p-sub-mono__compare-content-item-box1-text-wrap {
    border-bottom: 1px solid #7c7c7c;
    border-right: 1px solid #7c7c7c;
  }
  .p-sub-mono__compare-content-item-box2-text-wrap {
    border-right: 1px solid #7c7c7c;
  }
  .p-sub-mono__compare-content-item-box1-text1,
  .p-sub-mono__compare-content-item-box2-text1 {
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.0833333333em;
    line-height: 1.6;
  }
  .p-sub-mono__compare-content-item-box1-text2,
  .p-sub-mono__compare-content-item-box2-text2 {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 2.17;
    margin-top: 17px;
    margin-top: 1.0625rem;
  }
  .p-sub-mono__page-link {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-sub-news__inner.l-inner {
    margin-top: 0;
    max-width: 830px;
    max-width: 51.875rem;
  }
  .p-sub-policy__inner.l-inner {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-sub-works__inner {
    padding-top: 85px;
    padding-top: 5.3125rem;
  }
  .p-top-business-item-img {
    max-width: 100%;
    width: 350px;
    width: 21.875rem;
  }
  .p-top-business-item-img--hito {
    background-image: url(./../images/top/top-hito-pc.png);
  }
  .p-top-business-item-img--mono {
    background-image: url(./../images/top/top-mono-pc.png);
  }
  .p-top-business-item-img--kane {
    background-image: url(./../images/top/top-kane-pc.png);
  }
  .p-top-business-item-img__inner {
    padding: 43px 30px 0 75px;
    padding: 2.6875rem 1.875rem 0 4.6875rem;
    padding: 13.0303030303% 9.0909090909% 3.0303030303% 22.7272727273%;
  }
  .p-top-business-item-img__img.p-top-business-item-img__img--hito {
    margin-bottom: 24px;
    margin-bottom: 1.5rem;
    margin-left: 12px;
    margin-left: 0.75rem;
    width: 59px;
    width: 3.6875rem;
  }
  .p-top-business-item-img__img.p-top-business-item-img__img--mono {
    margin-bottom: 25px;
    margin-bottom: 1.5625rem;
    margin-left: 12px;
    margin-left: 0.75rem;
    width: 47px;
    width: 2.9375rem;
  }
  .p-top-business-item-img__img.p-top-business-item-img__img--kane {
    margin-left: 12px;
    margin-left: 0.75rem;
    width: 58px;
    width: 3.625rem;
  }
  .p-top-business-item-img__title {
    aspect-ratio: 85/41;
    left: auto;
    left: initial;
    position: relative;
    top: auto;
    top: initial;
    width: 85px;
    width: 5.3125rem;
  }
  .p-top-business-item-img__text-wrap {
    padding: 20px 0 0 20px;
    padding: 1.25rem 0 0 1.25rem;
  }
  .p-top-business-item-img__text-wrap.p-top-business-item-img__text-wrap--hito {
    padding-top: 40px;
    padding-top: 2.5rem;
  }
  .p-top-business-item-img__subtitle {
    font-size: 19px;
    font-size: 1.1875rem;
    letter-spacing: 0.04em;
  }
  .p-top-business-item-img__text {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    line-height: 1.7;
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
  .p-top-business {
    padding-top: 73px;
    padding-top: 4.5625rem;
  }
  .p-top-business::before {
    background-image: url(./../images/top/top-business-bg-pc.png);
    bottom: -30px;
    bottom: -1.875rem;
    height: 1185px;
    height: 74.0625rem;
    max-width: 702px;
    max-width: 43.875rem;
  }
  .p-top-business__wave::before,
  .p-top-business__wave::after {
    background-image: url(./../images/top/top-works-wave.png);
    background-size: 1920px 124px;
    height: 124px;
    height: 7.75rem;
  }
  .p-top-business__items {
    flex-direction: row;
    gap: 25px;
    gap: 1.5625rem;
    margin-top: 50px;
    margin-top: 3.125rem;
  }
  .p-top-business__item {
    max-width: calc((100% - 3.125rem) / 3);
  }
  .p-top-business__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-top: 2.5rem;
    max-width: 780px;
    max-width: 48.75rem;
  }
  .p-top-business__btn {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-top-business__btn a {
    margin-left: auto;
    margin-right: auto;
  }
  .p-top-mission {
    margin-top: -221px;
    margin-top: -13.8125rem;
    min-height: 746px;
    min-height: 46.625rem;
    padding-bottom: 190px;
    padding-bottom: 11.875rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
  .p-top-mission::before {
    background-image: url(./../images/top/top-mission-bg-pc.png);
    background-repeat: repeat-x;
  }
  .p-top-mission::after {
    background-image: url(./../images/top/top-mission-bg2-pc.png);
  }
  .p-top-mission__section-title {
    width: 400px;
    width: 25rem;
  }
  .p-top-mission__wrap {
    display: flex;
    justify-content: space-between;
  }
  .p-top-mission__right {
    flex: 1;
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 590px;
    max-width: 36.875rem;
  }
  .p-top-mission__contents {
    margin-top: 0;
  }
  .p-top-mission__btn {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-top-mission__text {
    letter-spacing: 0.0625em;
    padding-right: 0;
  }
  .p-top-mv {
    padding-bottom: 365px;
    padding-bottom: 22.8125rem;
    padding-top: 190px;
    padding-top: 11.875rem;
  }
  .p-top-mv__inner.l-inner {
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
  .p-top-mv__title {
    font-size: 52px;
    font-size: 3.25rem;
    letter-spacing: 0.0017857143em;
    line-height: 1.3;
  }
  .p-top-mv__title-text {
    letter-spacing: 0.01em;
    padding-left: 27px;
    padding-left: 1.6875rem;
    padding-right: 27px;
    padding-right: 1.6875rem;
  }
  .p-top-mv__title-text3 {
    padding-left: 0;
    padding-right: 0;
  }
  .p-top-mv__title-text + .p-top-mv__title-text {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .p-top-mv__text {
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.0020833333em;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-mv__text .sp {
    display: none;
  }
  .p-top-mv__text .pc {
    display: block;
  }
  .p-top-mv__tree1-img {
    bottom: 90px;
    bottom: 5.625rem;
    left: calc(50% - 875px);
    width: 261px;
    width: 16.3125rem;
  }
  .p-top-mv__tree2-img {
    bottom: 100px;
    bottom: 6.25rem;
    left: calc(50% + 38.125rem);
    width: 304px;
    width: 19rem;
  }
  .p-top-mv__omame-img {
    bottom: 60px;
    bottom: 3.75rem;
    left: calc(50% + 15.625rem);
    width: 575px;
    width: 35.9375rem;
    width: 650px;
    width: 40.625rem;
  }
  .p-top-mv__bucket-img {
    bottom: 105px;
    bottom: 6.5625rem;
    left: calc(50% + 30.625rem);
    width: 149px;
    width: 9.3125rem;
  }
  .p-top-news {
    padding-top: 120px;
    padding-top: 7.5rem;
  }
  .p-top-news__inner::before {
    right: -450px;
    right: -28.125rem;
    top: -10px;
    top: -0.625rem;
    width: 300px;
    width: 18.75rem;
  }
  .p-top-news__inner::after {
    bottom: 0;
    left: -150px;
    left: -9.375rem;
    right: auto;
    right: initial;
    width: 407px;
    width: 25.4375rem;
  }
  .p-top-news__contents {
    align-items: flex-start;
    display: flex;
    justify-content: center;
  }
  .p-top-news__contents::after {
    left: -500px;
    left: -31.25rem;
    top: 0;
    width: 300px;
    width: 18.75rem;
  }
  .p-top-news__section-title {
    width: 355px;
    width: 22.1875rem;
  }
  .p-top-news__items {
    flex: 1;
  }
  .p-top-news__btn {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-top-works-card__link {
    padding: 34px 50px 32px 50px;
    padding: 2.125rem 3.125rem 2rem 3.125rem;
  }
  .p-top-works-card__case {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .p-top-works-card__title-wrap {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .p-top-works-card__title {
    display: inline-block;
  }
  .p-top-works-card__staff {
    display: inline-block;
  }
  .p-top-works-card__bottom-wrap {
    padding-top: 20px;
    padding-top: 1.25rem;
  }
  .p-top-works-card__more {
    font-size: 14px;
    font-size: 0.875rem;
    width: 72px;
    width: 4.5rem;
  }
  .p-top-works-card__more::before {
    background: #000;
    height: 50%;
    transform: rotate(-45deg);
    transform-origin: top right;
    width: 1px;
  }
  .p-top-works-card__price-text {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-top-works-card__price-number {
    font-size: 48px;
    font-size: 3rem;
  }
  .p-top-works-card__text-bottom {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
  }
  .p-top-works-card__text {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-top-works {
    margin-top: -2px;
    margin-top: -0.125rem;
    padding-bottom: 290px;
    padding-bottom: 18.125rem;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
  .p-top-works::after {
    background-image: url(./../images/top/top-works-bottom2.png);
    background-size: auto auto;
    background-size: initial;
    bottom: 0;
    height: 551px;
    height: 34.4375rem;
  }
  .p-top-works__top-wrap {
    align-items: flex-end;
    display: flex;
    gap: 40px;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1100px;
    max-width: 68.75rem;
  }
  .p-top-works__contents {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-top-works__text {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.2em;
    line-height: 2;
  }
  .p-top-works__btn {
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    margin-top: 6.25rem;
    max-width: 1100px;
    max-width: 68.75rem;
  }
  .p-top-works__splide {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .nav-links ul li a,
  .nav-links ul li span {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .nav-links ul li {
    margin: 0 10px;
    margin: 0 0.625rem;
  }
  .nav-links ul li a,
  .nav-links ul li span {
    padding: 10px;
    padding: 0.625rem;
  }
  .wpcf7-not-valid-tip {
    margin-left: 40px;
    margin-left: 2.5rem;
  }
  .u-hidden-pc {
    display: none;
  }
  .u-hidden-sp {
    display: block;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media (min-width: 1100px){
  html {
    font-size: 16px;
  }
}

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

@media (hover: hover){
  .c-btn:hover {
    -webkit-text-decoration: none;
    background-color: #000;
    cursor: pointer;
    opacity: 1;
    text-decoration: none;
  }
  .c-button:hover .c-button__arrow {
    animation: arrow-grow 0.3s ease-out;
  }
  .c-button:hover {
    -webkit-text-decoration: none;
    cursor: pointer;
    opacity: 1;
    text-decoration: none;
  }
  .c-button.c-button--white:hover {
    color: #fff;
  }
  .c-page-btn:hover::before {
    opacity: 0;
  }
  .p-contact__btn.p-contact__btn--left:hover {
    background-color: #000;
  }
  .p-contact__btn:hover .p-contact__btn-arrow {
    animation: shrinkAndGrow 0.3s ease-out;
  }
  .p-contact__btn:hover {
    -webkit-text-decoration: none;
    cursor: pointer;
    opacity: 1;
    text-decoration: none;
  }
}

@media screen and (min-width: 1920px){
  .c-contact-mv__wave {
    background-size: contain;
  }
  .c-sub-mv__wave {
    background-size: contain;
  }
  .c-title {
    color: green;
  }
}

@media screen and (min-width: 1440px){
  .c-contact-mv__tree {
    background-image: url("../images/common/header-contact-tree.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 5px;
    bottom: 0.3125rem;
    content: "";
    height: 246px;
    height: 15.375rem;
    left: calc(50% - 37.5rem);
    position: absolute;
    transform: translate(-50%, -50%);
    width: 151px;
    width: 9.4375rem;
  }
  .c-contact-mv__omame {
    background-image: url("../images/common/header-contact-omame.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 50px;
    bottom: 3.125rem;
    content: "";
    height: 158px;
    height: 9.875rem;
    position: absolute;
    right: calc(50% - 45rem);
    transform: translate(-50%, -50%);
    width: 126px;
    width: 7.875rem;
  }
  .c-title {
    color: blue;
  }
  .p-header__nav-item a {
    width: 160px;
    width: 10rem;
  }
}

@media screen and (min-width: 400px){
  .p-contact-section {
    background-image: url("../images/common/contact-section-bg.png");
  }
}

@media screen and (min-width: 2000px){
  .p-top-works::after {
    background-image: url(./../images/top/top-works-bottom3.png);
  }
}
/*# sourceMappingURL=style.css.map */
