@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

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

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

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

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

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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

section {
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

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

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1330px;
  }
}

.c-title {
  font-size: 1.625rem;
  text-align: center;
  font-weight: 700;
  color: #627962;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 1.875rem;
  }
}

.p-404__btnWrap {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-404__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid #3B7B9A;
  background-color: #3B7B9A;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-404__btn:hover {
    color: #3B7B9A;
    background-color: #fff;
  }
}

.p-company {
  padding: 2.5rem 0;
  background-color: #F1ECBE;
}

.p-company__content {
  display: flex;
  justify-content: center;
  background-color: #fff;
  flex-direction: column;
  border-radius: 1rem;
  gap: 2rem;
  max-width: 56.25rem;
  margin: 2.25rem auto 0;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-company__content {
    margin: 3rem auto 0;
    padding: 1.5rem;
    flex-direction: row;
    align-items: center;
  }
}

.p-company__info {
  width: 100%;
  max-width: 25rem;
}

.p-company__name {
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-company__name {
    font-size: 1.25rem;
  }
}

.p-company__description {
  margin-top: 0.5rem;
}
@media screen and (max-width: 376px) {
  .p-company__description {
    font-size: 0.84375rem;
  }
}

.p-company__list {
  margin-top: 1.5rem;
}

.p-company__item {
  display: flex;
  gap: 0.625rem;
}
.p-company__item:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-company__item {
    gap: 1.25rem;
  }
}

.p-company__item-img {
  max-width: 1.375rem;
  margin-top: 0.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-company__item-img {
    margin-top: 0.4375rem;
  }
}
.p-company__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 22/16;
}

.p-company__label {
  line-height: 1;
  font-weight: 500;
  font-size: clamp(0.938rem, -1.688rem + 10vw, 1rem);
}
@media screen and (min-width: 768px) {
  .p-company__label {
    font-size: 1rem;
  }
}

.p-company__map {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-company__map {
    max-width: 25rem;
  }
}
.p-company__map iframe {
  width: 100%;
  border-radius: 1rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400/300;
}

.p-contact__description {
  margin-top: 1rem;
  text-align: center;
}

.p-contact__form {
  margin: 2.25rem auto;
  max-width: 56.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin: 3rem auto;
  }
}
.p-contact__form::-moz-placeholder {
  color: #ccc;
}
.p-contact__form::placeholder {
  color: #ccc;
}

.p-contact__form-wrap + .p-contact__form-wrap {
  margin-top: 1.875rem;
}

.p-contact__form-label {
  font-size: 1.25rem;
  line-height: 1;
}

.p-contact__form-label span {
  margin-left: 0.1875rem;
  display: inline-block;
  color: #FF3F02;
}

.p-contact__form-input {
  margin-top: 0.625rem;
}

.p-contact__form-input input {
  padding: 0.625rem;
  width: 100%;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0;
  border: 0.125rem solid #E0E0E0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
}

.p-contact__form-input input:focus {
  outline: none;
}

.p-contact__form-input input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-input input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-textarea {
  margin-top: 0.625rem;
}

.p-contact__form-textarea textarea {
  padding: 0.625rem;
  width: 100%;
  height: 14.375rem;
  font-size: 1rem;
  border-radius: 0;
  border: 0.125rem solid #E0E0E0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  resize: none;
}

.p-contact__form-textarea textarea:focus {
  box-shadow: none;
  outline: none;
}

.p-contact__form-textarea textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-textarea textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact__form-submit {
  margin-top: 2.5rem;
  text-align: center;
}

.p-contact__form-submit input {
  cursor: pointer;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #3B7B9A;
  color: #fff;
  border: none;
  position: relative;
  transition: all 0.3s;
  border: 1px solid #3B7B9A;
  padding: 0.75rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-submit input {
    font-size: 1.25rem;
  }
}

.p-contact__form-submit input:hover,
.p-contact__form-submit input:focus {
  outline: none;
}

@media screen and (min-width: 768px) {
  .p-contact__form-submit input:hover {
    background-color: #fff;
    color: #3B7B9A;
  }
}

.p-contact__form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.wpcf7-spinner {
  display: none !important;
}

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

.p-flow__description {
  margin-top: 1rem;
  text-align: center;
}

.p-flow__item {
  border-radius: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  border: 1px solid #F3F4F6;
  position: relative;
}
.p-flow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3rem;
  transform: translateX(-50%);
  border: 0.9375rem solid transparent;
  border-top: 0.9375rem solid #3B7B9A;
}
@media screen and (min-width: 768px) {
  .p-flow__item:not(:last-child)::before {
    top: 50%;
    bottom: auto;
    left: auto;
    right: -3.4375rem;
    transform: translateY(-50%);
    border-top: 0.9375rem solid transparent;
    border-left: 0.9375rem solid #3B7B9A;
  }
}

.p-flow__item-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-flow__item-img {
  max-width: 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow__item-img {
    max-width: 3rem;
  }
}
.p-flow__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 48/48;
}

.p-flow__item-title {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-flow__item-title {
    font-size: 1.125rem;
  }
}

.p-flow__item-text {
  margin-top: 1rem;
}

.p-footer {
  padding: 3rem 0 1.5rem;
  background-color: #F1ECBE;
}

.p-footer__box {
  justify-content: space-between;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__box {
    gap: 0;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__block {
    width: 30%;
  }
}

.p-footer__sns {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.p-footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #ccc;
  padding: 0.625rem;
}
.p-footer__sns-link img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 20/20;
}

.p-footer__block-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.p-footer__nav {
  list-style: none;
  padding: 0;
}

.p-footer__nav-item {
  margin-bottom: 0.25rem;
}

.p-footer__nav-link {
  color: #333;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-footer__nav-link:hover {
  text-decoration: underline;
}

.p-footer__copy {
  text-align: center;
  font-size: 0.875rem;
  border-top: 1px solid #ccc;
  padding-top: 1.5rem;
}

.p-footer-contact__item {
  display: flex;
  gap: 0.625rem;
}
.p-footer-contact__item:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer-contact__item {
    gap: 1.25rem;
  }
}

.p-footer-contact__item-img {
  max-width: 1rem;
  width: 100%;
  margin-top: 0.3125rem;
}
.p-footer-contact__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 16/16;
}

.p-header {
  height: 60px;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 90px;
  }
}

.p-header__inner,
.p-header__box {
  height: inherit;
}

.p-header__logoWrap {
  height: inherit;
  position: relative;
  z-index: 999;
}

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

.p-header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: inherit;
}

.header__logo-text {
  color: #627962;
  font-size: 1.25rem;
  white-space: nowrap;
  font-weight: 700;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header__logo-text {
    font-size: 1.625rem;
  }
}
.header__logo-text span {
  display: inline-block;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .header__logo-text span {
    font-size: 0.875rem;
  }
}

.p-header__logo-img {
  max-width: 12.5rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-header__logo-img {
    max-width: 18.75rem;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  height: inherit;
}

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

.p-header__nav-itemLink {
  padding: 0 0.3125rem;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.p-header__nav-itemLink:hover {
  color: #3B7B9A;
  text-decoration: underline;
}
.p-header__nav-itemLink.current {
  color: #3B7B9A;
  text-decoration: underline;
}

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

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

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

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

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

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

.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: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

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

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

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

.p-mv {
  padding: 6.25rem 0;
  background: url("../images/top/mv.webp") no-repeat center center/cover;
  position: relative;
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-mv {
    margin-top: 90px;
    padding: 9.375rem 0;
  }
}
.p-mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #F1ECEB;
  opacity: 0.65;
  z-index: 1;
}

.p-mv__body {
  position: relative;
  z-index: 2;
}

.p-mv__title {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0.25em;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: 2.25rem;
    font-weight: 700;
  }
}

.p-mv__title-en {
  font-size: 1.125rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title-en {
    font-size: 1.25rem;
  }
}

.p-mv__subtitle {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__subtitle {
    font-size: 1.25rem;
  }
}

.p-mv__btnWrap {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-mv__btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: 1px solid #3B7B9A;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.p-mv__btn:nth-child(1) {
  background-color: #3B7B9A;
  color: #fff;
}
.p-mv__btn:nth-child(2) {
  background-color: #fff;
  color: #3B7B9A;
}
@media screen and (min-width: 768px) {
  .p-mv__btn:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
  }
}

.p-news-list {
  margin: 2.25rem auto 0;
  max-width: 56.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-list {
    margin: 3rem auto 0;
  }
}

.p-news-list__item a {
  padding: 1.5rem 0;
  display: block;
  border-bottom: 1px solid #CCC;
}
@media screen and (min-width: 768px) {
  .p-news-list__item a {
    display: flex;
    align-items: flex-start;
  }
}

.p-news-list__item-meta {
  display: flex;
  align-items: center;
}

.p-news-list__item-date {
  font-size: 1rem;
}

.p-news-list__item-category {
  margin-left: 0.8125rem;
  padding: 0.1875rem;
  min-width: 4.5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  color: #fff;
  color: #627962;
  background-color: #DCFCE7;
  text-align: center;
  border-radius: 62.4375rem;
}

.p-news-list__item-title {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-title {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.p-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.p-page__main {
  flex: 1;
}

.p-page__main--top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.p-product__description {
  margin-top: 1rem;
  text-align: center;
}

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

.p-product__about-box {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  margin-top: 1.625rem;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-product__about-box {
    flex-direction: row;
    margin-top: 2rem;
  }
}

.p-product__about-text {
  width: 100%;
  max-width: 38rem;
}

.p-product__subtitle {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-product__subtitle {
    font-size: 1.5rem;
  }
}

.p-product__paragraph:not(:first-child) {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-product__paragraph:not(:first-child) {
    margin-top: 1rem;
  }
}

.p-product__btnWrap {
  text-align: center;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-product__btnWrap {
    margin-top: 3rem;
  }
}

.p-product__btn {
  display: inline-block;
  padding: 0.75rem 3.75rem 0.75rem 1.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #3B7B9A;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-product__btn {
    padding: 1rem 5rem 1rem 2.5rem;
    font-size: 1.25rem;
  }
  .p-product__btn:hover::before {
    right: 1.5625rem;
  }
}
.p-product__btn::before {
  transition: all 0.3s;
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 1.5625rem;
  height: 0.9375rem;
  right: 1.25rem;
  background: url("../images/top/arrow-right.svg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-product__btn::before {
    width: 1.9375rem;
    height: 1.25rem;
    right: 1.875rem;
  }
}

.p-product__about-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-product__about-img {
    max-width: 30.375rem;
  }
}
.p-product__about-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 486/330;
}

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

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

.p-product__feature-card {
  padding: 1.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #F3F4F6;
}

.p-product__feature-cardBox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-product__feature-cardImg {
  max-width: 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-product__feature-cardImg {
    max-width: 3rem;
  }
}
.p-product__feature-cardImg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 48/48;
}

.p-product__feature-title {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-product__feature-title {
    font-size: 1.125rem;
  }
}

.p-product__feature-text {
  margin-top: 1rem;
}

.p-single-news {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-single-news {
    margin-top: 90px;
  }
}

.p-single-news__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #627962;
}
@media screen and (min-width: 768px) {
  .p-single-news__title {
    font-size: 1.875rem;
  }
}

.p-single-news__body {
  margin-top: 3rem;
}

.p-strength {
  background-color: #F1ECBE;
}

.p-strength__lead {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 1.5rem;
}

.p-strength__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #4a594d;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.75rem;
}

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

.p-strength__description {
  margin-top: 1rem;
  text-align: center;
}

.p-strength__item {
  border-radius: 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  border: 1px solid #F3F4F6;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1rem;
}

.p-strength__item-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-strength__item-img {
  max-width: 2rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-strength__item-img {
    max-width: 3rem;
  }
}
.p-strength__item-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 48/48;
}

.p-strength__item-title {
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-strength__item-title {
    font-size: 1.125rem;
  }
}

.p-strength__item-text {
  margin-top: 1rem;
}

.p-strength__img {
  width: 100%;
  max-width: 21.875rem;
  margin: 0 auto;
}
.p-strength__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 350/275;
}

.p-sub-product {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-sub-product {
    margin-top: 90px;
  }
}

.p-sub-product-list__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #627962;
}
@media screen and (min-width: 768px) {
  .p-sub-product-list__title {
    font-size: 1.875rem;
  }
}

.p-sub-product-list__description {
  margin-top: 1rem;
}

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

.p-sub-product-list__item {
  display: flex;
  border-radius: 1rem;
  border: 1px solid #F3F4F6;
  margin-top: 1.875rem;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-product-list__item {
    gap: 2rem;
    margin-top: 3rem;
    flex-direction: row;
  }
}

.p-sub-product-list__img {
  max-width: 38.9375rem;
  width: 100%;
}
.p-sub-product-list__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 623/400;
}

.p-sub-product-list__content {
  width: 100%;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-product-list__content {
    padding: 0;
    max-width: 35rem;
  }
}

.p-sub-product-list__label {
  display: inline-block;
  font-size: 0.875rem;
  color: #3B7B9A;
  background-color: #EFF6FF;
  padding: 0.25rem 0.75rem;
  border-radius: 62.4375rem;
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-product-list__label {
    top: 2rem;
    right: 2rem;
  }
}

.p-sub-product-list__label--synthetic {
  background-color: #DCFCE7;
  color: #627962;
}

.p-sub-product-list__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #627962;
}
@media screen and (min-width: 768px) {
  .p-sub-product-list__title {
    font-size: 1.5rem;
  }
}
.p-sub-product-list__title span {
  display: block;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-product-list__title span {
    font-size: 1.25rem;
  }
}

.p-sub-product-list__text {
  margin-top: 1rem;
}

.p-sub-product-list__features {
  margin-top: 1rem;
}

.p-sub-product-list__features-title {
  margin-top: 0.5rem;
  font-weight: 700;
}

.p-sub-product-list__features-list li {
  padding-left: 1.5em;
  position: relative;
}
.p-sub-product-list__features-list li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid #627962;
  border-bottom: 2px solid #627962;
  transform: rotate(-45deg);
}

.p-sub-product__cta {
  padding: 3rem;
}

.p-sub-product__cta-text {
  text-align: center;
}

.p-sub-product__cta-btnWrap {
  text-align: center;
}

.p-sub-product__cta-btn {
  margin-top: 2rem;
  display: inline-block;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #3B7B9A;
  color: #fff;
  border: 1px solid #3B7B9A;
  position: relative;
  padding: 0.75rem 2rem 0.75rem 3.75rem;
}
.p-sub-product__cta-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 0.8125rem;
  height: 0.75rem;
  left: 2rem;
  transition: all 0.3s;
  background: url("../images/product/icon-mail.svg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-sub-product__cta-btn:hover {
    color: #3B7B9A;
    background-color: #fff;
  }
  .p-sub-product__cta-btn:hover::before {
    background-image: url("../images/product/icon-mail-hover.svg");
  }
}

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

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