@charset "UTF-8";
/* ローカルフォント定義 - パフォーマンス最適化 */
/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
}
/* Montserrat */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
}
/*
 * 参考
 * 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 {
  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;
}

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

/* 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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * line-heightを考慮したmargin計算
 * 使用例: margin-top: spacing(16, 1.6, 20);
 * 16px指定、line-height1.6、font-size20pxの場合の適切な余白を計算
******************************************/
/*****************************************
 * 簡単なバージョン - デフォルトのline-heightとfont-sizeを使用
 * 使用例: margin-top: sp(16);
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1f1f1f;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  line-height: 1.8;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

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

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

.l-inner {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-inline: auto;
  max-width: 600px;
  max-width: 37.5rem;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 25px;
    padding-left: 25px;
    max-width: 1150px;
  }
}

.l-pager {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .l-pager {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

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

.l-top-company {
  padding-top: 80px;
  padding-top: 5rem;
  margin: 0 0 100px;
  margin: 0 0 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-top-company {
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.l-top-philosophy {
  margin-top: -100px;
  margin-top: -6.25rem;
}

.l-top-post-list {
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .l-top-post-list {
    margin-top: 240px;
    margin-top: 15rem;
  }
}

.l-top-staff-wrap {
  margin: 0 15px 0;
  margin: 0 0.9375rem 0;
}
@media screen and (min-width: 768px) {
  .l-top-staff-wrap {
    margin: 0 30px 0;
    margin: 0 1.875rem 0;
  }
}

.l-top-step {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-top-step {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
}

.c-area-card {
  max-width: 600px;
  max-width: 37.5rem;
  font-family: sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}

@media (any-hover: hover) {
  .c-area-card:hover .c-area-card__img img {
    transform: scale(1.03);
  }
}

.c-area-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-area-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.c-area-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.c-area-card__body {
  padding: 20px 16px;
  padding: 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-area-card__lead {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-area-card__lead {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-area-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  min-height: 44px;
  min-height: 2.75rem;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .c-area-card__title {
    font-size: 22px;
    font-size: 1.375rem;
    min-height: 48px;
    min-height: 3rem;
  }
}

.c-area-card__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-area-card__footer {
  padding: 16px 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  text-align: center;
  margin-top: auto;
}

.c-area-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #1f1f1f;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-area-card__button {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-area-card__arrow {
  margin-left: 8px;
  margin-left: 0.5rem;
}

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

.c-breadcrumb a {
  color: #01A9E0;
}

.c-btn {
  padding: 9px 15px 9px 5px;
  padding: 0.5625rem 0.9375rem 0.5625rem 0.3125rem;
  position: relative;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  border: 1px solid #5B9CBF;
  background-color: #5B9CBF;
  color: #fff;
  text-align: center;
  border-radius: 0.25rem;
  transition: 0.3s;
  width: 100%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-btn {
    padding: 18px 30px 18px 5px;
    padding: 1.125rem 1.875rem 1.125rem 0.3125rem;
    font-size: 16px;
    font-size: 1rem;
    border-radius: 0.375rem;
    text-align: center;
  }
}

.c-btn--center {
  margin-inline: auto;
}

.c-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  right: 0.9375rem;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn::before {
    right: 20px;
    right: 1.25rem;
    width: 8px;
    width: 0.5rem;
    height: 8px;
    height: 0.5rem;
  }
}

@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 1;
    color: #5B9CBF;
    background-color: #fff;
  }
}

@media (any-hover: hover) {
  .c-btn:hover::before {
    right: 10px;
    right: 0.625rem;
    border-color: #5B9CBF;
  }
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .c-btn:hover::before {
    right: 15px;
    right: 0.9375rem;
  }
}

.c-btn.c-btn--transparent {
  background-color: transparent;
  color: #1f1f1f;
  font-size: 14px;
  font-size: 0.875rem;
  border-color: #1f1f1f;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--transparent {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.c-btn.c-btn--transparent::before {
  border-color: #1f1f1f;
}

@media (any-hover: hover) {
  .c-btn.c-btn--transparent:hover {
    opacity: 0.7;
  }
}

.c-check-text {
  display: flex;
  align-items: baseline;
  color: #1f1f1f;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-check-text {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-check-text.c-check-text--left {
  align-items: flex-start;
}

.c-check-text__icon {
  position: relative;
  display: inline-block;
  width: 12px;
  width: 0.75rem;
  height: 16px;
  height: 1rem;
  margin-right: 8px;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .c-check-text__icon {
    width: 12px;
    width: 0.75rem;
    height: 16px;
    height: 1rem;
    margin-right: 8px;
    margin-right: 0.5rem;
  }
}

.c-check-text__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  width: 0.375rem;
  height: 12px;
  height: 0.75rem;
  border: solid #2687A7;
  border-width: 0 1px 1px 0;
}
.c-check-text__label {
  text-align: left;
  font-weight: 500;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-check-text__label {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-evaluate {
  background-color: #F9F9F9;
  border-radius: 0.3125rem;
  padding: 20px;
  padding: 1.25rem;
  position: relative;
  text-align: center;
  box-shadow: 0 0 63px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-evaluate {
    padding: 40px 50px;
    padding: 2.5rem 3.125rem;
    border-radius: 0.625rem;
  }
}

@media (any-hover: hover) {
  .c-evaluate:hover {
    box-shadow: 0 0 63px rgba(0, 0, 0, 0.08);
  }
}

.c-evaluate__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  background: #FFE6A0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media screen and (min-width: 768px) {
  .c-evaluate__label {
    width: 110px;
    width: 6.875rem;
    height: 110px;
    height: 6.875rem;
  }
}

.c-evaluate__label-text {
  position: absolute;
  top: 8px;
  top: 0.5rem;
  left: 6px;
  left: 0.375rem;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .c-evaluate__label-text {
    font-size: 32px;
    font-size: 2rem;
    top: 16px;
    top: 1rem;
    left: 12px;
    left: 0.75rem;
  }
}

.c-evaluate__icon {
  width: 70px;
  width: 4.375rem;
  aspect-ratio: 1/1;
  margin: 35px auto 5px;
  margin: 2.1875rem auto 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-evaluate__icon {
    width: 100px;
    width: 6.25rem;
    margin: 0 auto 10px;
    margin: 0 auto 0.625rem;
  }
}

.c-evaluate__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-evaluate__text {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-evaluate__text {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 15px;
    margin-bottom: 0.9375rem;
  }
}

.external-link-icon {
  font-size: 0.8em;
  padding-left: 4px;
  padding-left: 0.25rem;
  color: #2687A7;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.google-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  gap: 0.5rem;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  background-color: #FCFAF4;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.c-info-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.c-info-card__img {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}

.c-info-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .c-info-card:hover .c-info-card__img img {
    transform: scale(1.03);
  }
}

.c-info-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-info-card__content {
    padding: 20px 20px 25px;
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}

.c-info-card__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .c-info-card__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-info-card__underline {
  width: 34px;
  width: 2.125rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #01A9E0;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-info-card__underline {
    width: 50px;
    width: 3.125rem;
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.c-info-card__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 8px;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 768px) {
  .c-info-card__text {
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.c-section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    gap: 8px;
    gap: 0.5rem;
  }
}

.c-section-title.c-section-title--center {
  align-items: center;
  text-align: center;
}

.c-section-title__sub {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-section-title__sub {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
    font-size: 50px;
    font-size: 3.125rem;
  }
}

.c-section-title__blue {
  color: #01A9E0;
  line-height: inherit;
}

.c-section-title__yellow {
  color: #D29A00;
  line-height: inherit;
}

.c-section-title__underline {
  width: 20px;
  width: 1.25rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #1f1f1f;
  display: inline-block;
  margin-right: 4px;
  margin-right: 0.25rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .c-section-title__underline {
    width: 60px;
    width: 3.75rem;
    margin-right: 8px;
    margin-right: 0.5rem;
  }
}

.c-section-title__underline.c-section-title__underline--block {
  display: block;
  margin-right: 0;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-section-title__underline.c-section-title__underline--block {
    margin-bottom: 30px;
    margin-bottom: 1.875rem;
  }
}

.c-section-title__main {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .c-section-title__main {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.c-section-title__main-text {
  line-height: inherit;
}

.c-star-rating {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  gap: 0.0625rem;
}
@media screen and (min-width: 768px) {
  .c-star-rating {
    gap: 2px;
    gap: 0.125rem;
  }
}

.c-star-rating--big.c-star-rating {
  gap: 4px;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-star-rating--big.c-star-rating {
    gap: 8px;
    gap: 0.5rem;
  }
}

.c-star {
  position: relative;
  width: 18px;
  width: 1.125rem;
  aspect-ratio: 1/1;
  display: inline-block;
}

.c-star--big.c-star {
  width: 14px;
  width: 0.875rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .c-star--big.c-star {
    width: 24px;
    width: 1.5rem;
  }
}

.c-star__background,
.c-star__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.c-star__background {
  background-color: #E5E5E5;
}

.c-star__fill {
  position: relative;
  overflow: hidden;
}

.c-star__fill::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--fill-percentage, 0%);
  height: 100%;
  background-color: #FD9822;
}

.c-star--filled .c-star__fill::before {
  width: 100%;
}

.c-star--empty .c-star__fill::before {
  width: 0%;
}

.c-star-rating__value {
  margin-left: 4px;
  margin-left: 0.25rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #FD9822;
}
@media screen and (min-width: 768px) {
  .c-star-rating__value {
    font-size: 16px;
    font-size: 1rem;
    margin-left: 8px;
    margin-left: 0.5rem;
  }
}

.c-step-card {
  position: relative;
  background: #FCFAF4;
  border-radius: 0.625rem;
  padding: 25px 10px;
  padding: 1.5625rem 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 15px;
  gap: 0.9375rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .c-step-card {
    padding: 60px 120px;
    padding: 3.75rem 7.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    gap: 1.875rem;
  }
}

.c-step-card__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #01A9E0;
  clip-path: polygon(0 0, 7.5rem 0, 0 7.5rem);
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
}
.c-step-card__label-text {
  position: absolute;
  top: 8px;
  top: 0.5rem;
  left: 10px;
  left: 0.625rem;
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-step-card__label-text {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

.c-step-card[data-step="1"] .c-step-card__label-text::before {
  content: "01";
}

.c-step-card[data-step="2"] .c-step-card__label-text::before {
  content: "02";
}

.c-step-card[data-step="3"] .c-step-card__label-text::before {
  content: "03";
}

.c-step-card[data-step="4"] .c-step-card__label-text::before {
  content: "04";
}

.c-step-card[data-step="5"] .c-step-card__label-text::before {
  content: "05";
}

.c-step-card[data-step="6"] .c-step-card__label-text::before {
  content: "06";
}

.c-step-card[data-step="7"] .c-step-card__label-text::before {
  content: "07";
}

.c-step-card__content-wrap {
  display: flex;
  flex-direction: column;
  gap: 13px;
  gap: 0.8125rem;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-step-card__content-wrap {
    flex-direction: row;
  }
}

.c-step-card__content {
  flex: 1;
}

.c-step-card__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #D29A00;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-step-card__title {
    font-size: 30px;
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
    text-align: left;
  }
}

.c-step-card__text {
  font-size: 16px;
  font-size: 1rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-step-card__text {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 0;
  }
}

.c-step-card__text-accent {
  color: #2687A7;
  font-weight: 700;
}

.c-step-card__text + .c-step-card__text {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-step-card__text + .c-step-card__text {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.c-step-card__icon {
  width: 90px;
  width: 5.625rem;
  aspect-ratio: 1;
  flex-shrink: 0;
  order: -1;
}
@media screen and (min-width: 768px) {
  .c-step-card__icon {
    width: 140px;
    width: 8.75rem;
    order: 1;
  }
}

.c-step-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-step {
  position: relative;
  background: #fff;
  text-align: center;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: 0.375rem;
  padding-top: 16px;
  padding-top: 1rem;
  width: 110px;
  width: 6.875rem;
}
@media screen and (min-width: 768px) {
  .c-step {
    border-radius: 0.75rem;
    padding-top: 40px;
    padding-top: 2.5rem;
    width: 280px;
    width: 17.5rem;
    min-height: 240px;
    min-height: 15rem;
  }
}

.c-step__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #5B9CBF;
  height: 50px;
  height: 3.125rem;
  clip-path: polygon(0 0, 3.125rem 0, 0 3.125rem);
}
@media screen and (min-width: 768px) {
  .c-step__label {
    height: 100px;
    height: 6.25rem;
    clip-path: polygon(0 0, 6.25rem 0, 0 6.25rem);
  }
}

.c-step__label.c-step__label--orange {
  background: #FFE6A0;
  color: #1f1f1f;
}

.c-step__label-text {
  position: absolute;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  top: 6px;
  top: 0.375rem;
  left: 6px;
  left: 0.375rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-step__label-text {
    top: 16px;
    top: 1rem;
    left: 12px;
    left: 0.75rem;
    font-size: 32px;
    font-size: 2rem;
  }
}

.c-step__icon {
  text-align: center;
  display: flex;
  margin-inline: auto;
  aspect-ratio: 360/360;
  justify-content: center;
  align-items: center;
  width: 40px;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-step__icon {
    width: 110px;
    width: 6.875rem;
  }
}

.c-step__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-step__text {
  margin-top: 0;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 8px 4px;
  padding: 0.5rem 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  min-height: 50px;
  min-height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .c-step__text {
    font-size: 23px;
    font-size: 1.4375rem;
    min-height: 74px;
    min-height: 4.625rem;
    margin-top: 16px;
    margin-top: 1rem;
    padding: 12px 8px;
    padding: 0.75rem 0.5rem;
    line-height: 1.2;
  }
}

.c-step__text-small {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-step__text-small {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-text {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.c-text.c-text--small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-text.c-text--small {
    font-size: 16px;
    font-size: 1rem;
  }
}

.c-title {
  font-size: 24px;
  font-size: 1.5rem;
  color: black;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 24px;
    font-size: 1.5rem;
    color: red;
  }
}
@media screen and (min-width: 1440px) {
  .c-title {
    color: blue;
  }
}
@media screen and (min-width: 1920px) {
  .c-title {
    color: green;
  }
}

.p-404__title,
.p-404__text {
  text-align: center;
}

.p-404__btn {
  margin: 20px auto;
  margin: 1.25rem auto;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  max-width: 240px;
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    margin: 60px auto;
    margin: 3.75rem auto;
  }
}

.p-company-profile__list {
  display: flex;
  width: 100%;
}
.p-company-profile__term {
  font-size: 16px;
  font-size: 1rem;
  padding: 16px 8px;
  padding: 1rem 0.5rem;
  max-width: 98px;
  max-width: 6.125rem;
  font-weight: 700;
  border-bottom: 1px solid #D29A00;
  width: 100%;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-company-profile__term {
    padding: 32px 16px;
    padding: 2rem 1rem;
    font-size: 18px;
    font-size: 1.125rem;
    max-width: 196px;
    max-width: 12.25rem;
  }
}

.p-company-profile__description {
  font-size: 16px;
  font-size: 1rem;
  padding: 16px 8px;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid #E1E1E1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-company-profile__description {
    padding: 32px 16px;
    padding: 2rem 1rem;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-company-profile__description a {
  color: #2687A7;
  text-decoration: underline;
}

.p-company-profile__map {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-company-profile__map {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-company-profile__map iframe {
  width: 100%;
  height: 144px;
  height: 9rem;
}

@media screen and (min-width: 768px) {
  .p-company-profile__map iframe {
    width: 600px;
    width: 37.5rem;
    height: 216px;
    height: 13.5rem;
  }
}
.p-company-profile__map::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  width: 5rem;
  height: 13.333px;
  height: 0.8333333333rem;
  background-color: white;
  z-index: 1;
  pointer-events: none;
}

.p-top-company {
  margin: 40px 0;
  margin: 2.5rem 0;
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-company {
    margin: 80px 0;
    margin: 5rem 0;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
}

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

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

.p-contact__head {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-contact__head {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-contact__head label {
  display: flex;
  align-items: center;
}

.p-contact__item {
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    margin-top: 12px;
    margin-top: 0.75rem;
  }
}

.p-contact__item-example {
  margin-top: 4px;
  margin-top: 0.25rem;
  color: gray;
}
@media screen and (min-width: 768px) {
  .p-contact__item-example {
    margin-top: 6px;
    margin-top: 0.375rem;
  }
}

.p-contact__required {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  color: #FF6E06;
  margin-left: 1em;
  padding: 2px 5px;
  padding: 0.125rem 0.3125rem;
  border: 1px solid #FF6E06;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__required {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 4px 10px;
    padding: 0.25rem 0.625rem;
    border-radius: 1.25rem;
  }
}

.p-contact__policy,
.p-contact__btn {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__policy,
  .p-contact__btn {
    margin-top: 56px;
    margin-top: 3.5rem;
  }
}

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

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
  }
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  margin: 0;
  padding: 0.8em;
  border-radius: 0.25rem;
  border: 1px solid transparent;
  outline: none;
  background: none;
  background-color: #fff;
  font-size: 16px;
  font-size: 1rem;
  color: inherit;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__item-text,
  .p-contact__item-tel,
  .p-contact__item-email,
  .p-contact__item-textarea,
  .p-contact__item-select {
    font-size: 20px;
    font-size: 1.25rem;
    border-radius: 0.5rem;
  }
}

.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 {
  border: 1px solid rgba(31, 31, 31, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 240px;
  height: 15rem;
  resize: none;
  overflow: auto;
}
.p-contact__item-message {
  white-space: pre-wrap;
}

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

.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 {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.5em 1em 0.5em 1.5em;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item-radio input[type=radio] + span,
  .p-contact__item-checkbox input[type=checkbox] + span {
    font-size: 16px;
    font-size: 1rem;
  }
}

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

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

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

.p-contact__item-checkbox input[type=checkbox] + span::after {
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  border-left: 2px solid #FF6E06;
  border-bottom: 2px solid #FF6E06;
  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;
}

/* button */
.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 0.5em 2em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  background: #5B9CBF;
  color: #fff;
  border-radius: 3.125rem;
  -moz-appearance: button;
       appearance: button;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  border: 1px solid #5B9CBF;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contact__btn input[type=submit],
  .p-contact__btn input[type=button] {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media (any-hover: hover) {
  .p-contact__btn input[type=submit]:hover,
  .p-contact__btn input[type=button]:hover {
    background: #fff;
    color: #5B9CBF;
    opacity: 1;
    border: 1px solid #5B9CBF;
  }
}

.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
  background: #fff;
  color: #5B9CBF;
  opacity: 1;
  border: 1px solid #5B9CBF;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 150px;
  min-width: 9.375rem;
}

.wpcf7-spinner {
  position: absolute;
}

.p-faq-list__item + .p-faq-list__item {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item + .p-faq-list__item {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-faq-list__item-question,
.p-faq-list__item-answer {
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  text-indent: -2.2em;
  cursor: pointer;
  padding: 11px 30px 11px 40px;
  padding: 0.6875rem 1.875rem 0.6875rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question,
  .p-faq-list__item-answer {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 16px 60px;
    padding: 1rem 3.75rem;
  }
}

.p-faq-list__item-question {
  background-color: #F3F3F3;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-faq-list__item-question::before,
.p-faq-list__item-question::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  width: 1rem;
  right: 10px;
  right: 0.625rem;
  height: 2px;
  height: 0.125rem;
  background: #1f1f1f;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question::before,
  .p-faq-list__item-question::after {
    right: 34px;
    right: 2.125rem;
  }
}

.p-faq-list__item-question::after {
  transform: rotate(90deg);
}

.p-faq-list__item-question.is-open::after {
  transform: rotate(0deg);
}

.p-faq-list__item-question span,
.p-faq-list__item-answer span {
  margin-right: 20px;
  margin-right: 1.25rem;
  border-radius: 50%;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  display: inline-flex;
  text-indent: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-question span,
  .p-faq-list__item-answer span {
    width: 36px;
    width: 2.25rem;
    height: 36px;
    height: 2.25rem;
    margin-right: 24px;
    margin-right: 1.5rem;
  }
}

.p-faq-list__item-question span {
  background-color: #5B9CBF;
}

.p-faq-list__item-answer {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-faq-list__item-answer {
    padding: 24px 60px 0;
    padding: 1.5rem 3.75rem 0;
  }
}

.p-faq-list__item-answer span {
  background-color: #D29A00;
}

.p-footer {
  padding: 22px 0;
  padding: 1.375rem 0;
  background-color: #FCFAF4;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 120px 0 30px;
    padding: 7.5rem 0 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__inner.l-inner {
    max-width: 1300px;
    max-width: 81.25rem;
  }
}

.p-footer__wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-footer__wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__right {
    max-width: 649px;
    max-width: 40.5625rem;
    width: 100%;
  }
}

.p-footer__nav-items {
  display: grid;
  gap: 5px;
  gap: 0.3125rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto);
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
  }
}

.p-footer__nav-item a {
  padding: 7px 0;
  padding: 0.4375rem 0;
  position: relative;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item a {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 13px 10px;
    padding: 0.8125rem 0.625rem;
  }
}

.p-footer__logo {
  max-width: 86.67px;
  max-width: 5.416875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    max-width: 130px;
    max-width: 8.125rem;
  }
}

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

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

.p-footer__copyright-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright-wrap {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
}

.p-footer__copyright {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

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

.grecaptcha-badge {
  visibility: hidden;
}

.p-footer__recaptcha {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-footer__recaptcha {
    max-width: 600px;
    max-width: 37.5rem;
    margin-left: auto;
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
    text-align: right;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 66px;
  height: 4.125rem;
  background-color: #FCFAF4;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 80px;
    height: 5rem;
  }
}

.p-header__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 70px;
    padding: 0 4.375rem;
  }
}

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

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

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

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

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

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

.p-header__nav-item a {
  padding: 0 10px;
  padding: 0 0.625rem;
  height: inherit;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-header__nav-item a {
    padding: 0 20px;
    padding: 0 1.25rem;
  }
}

@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    color: #2687A7;
  }
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 80px;
  width: 5rem;
  height: inherit;
  background-color: #FCFAF4;
  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: 30px;
  width: 1.875rem;
  height: 1px;
  background-color: #01A9E0;
  transition: 0.5s;
}

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

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

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

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

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

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

.p-header__drawer-item a {
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: block;
  text-align: center;
  text-transform: uppercase;
}

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

.p-pager-list__btn a {
  display: inline-block;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  color: #01A9E0;
  border: 1px solid #01A9E0;
}
@media screen and (min-width: 768px) {
  .p-pager-list__btn a {
    padding: 10px 20px;
  }
}

.p-post-article__inner.l-inner {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__inner.l-inner {
    margin-top: 32px;
    margin-top: 2rem;
  }
}

.p-post-article__title {
  font-size: 32px;
  font-size: 2rem;
  color: #01A9E0;
}
@media screen and (min-width: 768px) {
  .p-post-article__title {
    font-size: 48px;
    font-size: 3rem;
  }
}

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

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

.p-post-article__category li {
  padding: 3px;
  padding: 0.1875rem;
  color: #01A9E0;
  border: 1px solid #01A9E0;
}
@media screen and (min-width: 768px) {
  .p-post-article__category li {
    padding: 5px;
    padding: 0.3125rem;
  }
}

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

.p-post-article__content {
  padding: 10px 12px 0;
  padding: 0.625rem 0.75rem 0;
  background-color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-post-article__content {
    padding: 20px 23px 0;
    padding: 1.25rem 1.4375rem 0;
  }
}

.p-post-article__content-wrap {
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-post-article__content-wrap {
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }
}

.p-post-article__contents {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .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 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.p-post-article__data {
  margin-left: auto;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: right;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-post-article__data {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}

.p-post-article__content h2 {
  margin: 15px 0 8px;
  margin: 0.9375rem 0 0.5rem;
  padding: 3px 10px;
  padding: 0.1875rem 0.625rem;
  color: #fff;
  background-color: #01A9E0;
  font-size: 19px;
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__content h2 {
    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 {
  margin: 15px 0 8px;
  margin: 0.9375rem 0 0.5rem;
  padding-left: 5px;
  padding-left: 0.3125rem;
  color: #01A9E0;
  font-size: 19px;
  font-size: 1.1875rem;
  border-left: 0.5em solid #01A9E0;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents h3 {
    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 {
  margin: 5px 0;
  margin: 0.3125rem 0;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents h4 {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 10px 0;
    margin: 0.625rem 0;
  }
}

.p-post-article__contents h5 {
  margin: 5px 0;
  margin: 0.3125rem 0;
  padding: 1px 7px;
  padding: 0.0625rem 0.4375rem;
  display: inline-block;
  color: #01A9E0;
  font-size: 20px;
  font-size: 1.25rem;
  border-top: 2px solid #01A9E0;
  border-bottom: 2px solid #01A9E0;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents h5 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 10px 0;
    margin: 0.625rem 0;
    padding: 2px 13px;
    padding: 0.125rem 0.8125rem;
  }
}

.p-post-article__contents p {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-post-article__contents a {
  color: #01A9E0;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 5px 0;
  margin: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents img {
    margin: 10px 0;
    margin: 0.625rem 0;
  }
}

.p-post-article__contents figure {
  margin: 5px 0;
  margin: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents figure {
    margin: 10px 0;
    margin: 0.625rem 0;
  }
}

.p-post-article__contents figcaption {
  margin: 5px 0;
  margin: 0.3125rem 0;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-post-article__contents figcaption {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 10px 0;
    margin: 0.625rem 0;
  }
}

.p-post-card__img {
  width: 100%;
  aspect-ratio: 400/300;
}

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

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

.p-post-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.p-post-card__category li {
  padding: 5px;
  padding: 0.3125rem;
  color: #01A9E0;
  border: 1px solid #01A9E0;
}

.p-post-card__new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #01A9E0;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  border: 1px solid #01A9E0;
}

.p-post-connect__title {
  font-size: 24px;
  font-size: 1.5rem;
  color: #01A9E0;
}
@media screen and (min-width: 768px) {
  .p-post-connect__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-post-connect__items {
  display: grid;
  gap: 25px;
  gap: 1.5625rem;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-post-connect__items {
    gap: 50px;
    gap: 3.125rem;
    row-gap: 40px;
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 16px;
    margin-top: 1rem;
  }
}

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

.p-post-list + .p-post-list {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-post-list + .p-post-list {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.p-post-list__inner.l-inner {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-post-list__inner.l-inner {
    max-width: calc(100rem + 50px);
  }
}

.p-post-list__wrap {
  margin: 16px 0;
  margin: 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-post-list__wrap {
    margin: 32px 0;
    margin: 2rem 0;
  }
}

.p-post-list__items {
  display: grid;
  gap: 25px;
  gap: 1.5625rem;
  grid-auto-rows: 1fr;
}
@media screen and (min-width: 768px) {
  .p-post-list__items {
    gap: 50px;
    gap: 3.125rem;
    row-gap: 40px;
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1400px) {
  .p-post-list__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__cards {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__cards {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.p-ranking-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.p-post-list__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  max-width: 240px;
  max-width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-post-list__btn {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-ranking-photo {
  width: 100%;
  aspect-ratio: 500/350;
}
@media screen and (min-width: 768px) {
  .p-ranking-photo {
    width: 500px;
    width: 31.25rem;
  }
}

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

.p-ranking-photo-small {
  width: 100%;
  aspect-ratio: 242/162;
}
@media screen and (min-width: 768px) {
  .p-ranking-photo-small {
    width: 242px;
    width: 15.125rem;
  }
}

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

.p-ranking__top {
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-ranking__top {
    flex-direction: row;
    gap: 16px;
    gap: 1rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.p-ranking__photos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-ranking__photos {
    width: auto;
    gap: 16px;
    gap: 1rem;
  }
}

.p-ranking__photos-top {
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-ranking__photos-top {
    width: auto;
    gap: 16px;
    gap: 1rem;
  }
}

.p-ranking__photos-bottom {
  max-width: 100%;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-ranking__photos-bottom {
    gap: 16px;
    gap: 1rem;
  }
}

.p-ranking__map-info {
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-ranking__map-info {
    flex: 1;
    max-width: 584px;
    max-width: 36.5rem;
    gap: 16px;
    gap: 1rem;
  }
}

.p-ranking__map-section {
  aspect-ratio: 584/256;
  width: min(584px, 100%);
  width: min(36.5rem, 100%);
  margin: 0 auto;
}

.p-ranking__map-section p {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ranking__map-section iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-ranking__no {
  display: flex;
  align-items: center;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-ranking__no {
    gap: 15px;
    gap: 0.9375rem;
  }
}

.p-ranking__crown {
  width: 32px;
  width: 2rem;
  aspect-ratio: 60/40;
}
@media screen and (min-width: 768px) {
  .p-ranking__crown {
    width: 60px;
    width: 3.75rem;
  }
}

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

.p-ranking__number {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-ranking__number {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.p-ranking {
  border-radius: 0.5rem;
  overflow: visible;
  position: relative;
}

.p-ranking__human {
  display: none;
}
@media screen and (min-width: 1240px) {
  .p-ranking__human {
    display: block;
    position: absolute;
    bottom: -60px;
    bottom: -3.75rem;
    pointer-events: none;
    z-index: 2;
  }
}

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

@media screen and (min-width: 768px) {
  .p-ranking__human--1 {
    right: -75px;
    right: -4.6875rem;
    width: 95px;
    width: 5.9375rem;
    aspect-ratio: 95/111;
  }
}

@media screen and (min-width: 768px) {
  .p-ranking__human--2 {
    left: -60px;
    left: -3.75rem;
    width: 60px;
    width: 3.75rem;
    aspect-ratio: 60/127;
  }
}

@media screen and (min-width: 768px) {
  .p-ranking__human--3 {
    width: 115px;
    width: 7.1875rem;
    aspect-ratio: 115/98;
    right: -80px;
    right: -5rem;
  }
}

.p-ranking__bottom {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-ranking__bottom {
    margin-top: 50px;
    margin-top: 3.125rem;
  }
}

.p-ranking__table-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .p-ranking__table-wrapper {
    flex-direction: row;
    gap: 30px;
    gap: 1.875rem;
  }
}

.p-ranking__table-left,
.p-ranking__table-right {
  flex: 1;
}

.p-ranking__table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.p-ranking__table th,
.p-ranking__table td {
  padding: 0 12px;
  padding: 0 0.75rem;
  text-align: left;
  border-right: 1px solid #E1E1E1;
  border-bottom: 1px solid #E1E1E1;
  font-size: 14px;
  font-size: 0.875rem;
  display: table-cell;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-ranking__table th,
  .p-ranking__table td {
    padding: 0 16px;
    padding: 0 1rem;
    font-size: 14px;
    font-size: 0.875rem;
    height: 48px;
    height: 3rem;
  }
}

.p-ranking__table th {
  vertical-align: baseline;
  vertical-align: middle;
}

.p-ranking__table td {
  vertical-align: middle;
}

.p-ranking__table th:first-child,
.p-ranking__table td:first-child {
  border-left: 1px solid #E1E1E1;
}

.p-ranking__table tr:first-child th,
.p-ranking__table tr:first-child td {
  border-top: 1px solid #E1E1E1;
}

.p-ranking__table th {
  background-color: #FCFAF4;
  font-weight: 500;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .p-ranking__table th {
    width: 45%;
  }
}

.p-ranking__table td {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .p-ranking__table td {
    width: 55%;
  }
}

.p-ranking__memo-row th {
  vertical-align: top;
  padding: 5px 6px;
  padding: 0.3125rem 0.375rem;
  height: 200px;
  height: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-ranking__memo-row th {
    padding: 10px 16px;
    padding: 0.625rem 1rem;
    height: 240px;
    height: 15rem;
  }
}

.p-ranking__table .p-ranking__memo-cell {
  height: 40px;
  height: 2.5rem;
  padding: 5px 6px;
  padding: 0.3125rem 0.375rem;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .p-ranking__table .p-ranking__memo-cell {
    padding: 10px 16px;
    padding: 0.625rem 1rem;
    height: 48px;
    height: 3rem;
  }
}

.p-ranking__memo-cell-extra {
  border-top: none;
  padding: 0;
  height: 40px;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-ranking__memo-cell-extra {
    height: 48px;
    height: 3rem;
  }
}

.p-single-info__content {
  margin-bottom: 90px;
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-info__content {
    margin-bottom: 180px;
    margin-bottom: 11.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single-info__inner {
    max-width: 850px;
    max-width: 53.125rem;
  }
}

.p-single-info__block-title {
  display: flex;
  align-items: center;
  background-color: #F7F7F7;
  border-left: 3px solid #5B9CBF;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 12px;
  padding: 0.75rem;
  font-weight: 500;
  color: #1f1f1f;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-info__block-title {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 12px 20px;
    padding: 0.75rem 1.25rem;
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.p-single-info__block-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-info__block-text {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.p-single-info__block-text a {
  color: #5B9CBF;
  text-decoration: underline;
}

.p-single-info__thumbnail {
  width: 100%;
  aspect-ratio: 800/450;
}

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

.p-single-info__map {
  width: 100%;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-info__map {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-single-info__map iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;
  min-height: 18.75rem;
  aspect-ratio: 16/9;
  border: 0;
}

.p-single-info__images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 10px;
  gap: 0.625rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-info__images {
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 30px;
    gap: 1.875rem;
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-single-info__image {
  width: 100%;
}

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

.p-single-info__note {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-info__note {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 15px;
    margin-top: 0.9375rem;
  }
}

.p-sub-content {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-content {
    padding-bottom: 150px;
    padding-bottom: 9.375rem;
  }
}

.p-sub-evaluate {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.p-sub-evaluate__background {
  background-color: #FCFAF4;
  border-radius: 0 1.875rem 1.875rem 0;
  padding: 50px 10px;
  padding: 3.125rem 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__background {
    margin-right: 70px;
    margin-right: 4.375rem;
    border-radius: 0 7.5rem 7.5rem 0;
    padding: 180px 50px;
    padding: 11.25rem 3.125rem;
  }
}

.p-sub-evaluate__background::before {
  content: "";
  display: block;
  width: 267px;
  width: 16.6875rem;
  height: 50px;
  height: 3.125rem;
  background-image: url(../images/ranking/evaluate-town.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -25px;
  top: -1.5625rem;
  left: -20px;
  left: -1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__background::before {
    width: 800px;
    width: 50rem;
    height: 150px;
    height: 9.375rem;
    top: -100px;
    top: -6.25rem;
    left: -100px;
    left: -6.25rem;
  }
}

.p-sub-evaluate__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  gap: 1.25rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    gap: 1.875rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-sub-evaluate__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-sub-evaluate__average {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  margin-top: 0.5rem;
  gap: 3px;
  gap: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__average {
    margin-top: 15px;
    margin-top: 0.9375rem;
    gap: 5px;
    gap: 0.3125rem;
  }
}

.p-sub-evaluate__average-label {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-sub-evaluate__average-score {
  font-size: 18px;
  font-size: 1.125rem;
}

.p-sub-evaluate__check-list {
  margin-top: 10px;
  margin-top: 0.625rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
  max-width: 380px;
  max-width: 23.75rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__check-list {
    margin-inline: auto;
    margin-top: 25px;
    margin-top: 1.5625rem;
    gap: 8px;
    gap: 0.5rem;
  }
}

.p-sub-evaluate__check-item {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__check-item {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-sub-evaluate__average-stars {
  line-height: 1;
}

.p-sub-evaluate__overall {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall {
    margin-top: 60px;
    margin-top: 3.75rem;
    margin-bottom: 60px;
    margin-bottom: 3.75rem;
  }
}

.p-sub-evaluate__overall-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  gap: 0.625rem;
  padding: 10px;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    gap: 2.5rem;
    padding: 30px 40px;
    padding: 1.875rem 2.5rem;
  }
}

.p-sub-evaluate__overall-left {
  flex: 1;
  text-align: left;
}

.p-sub-evaluate__overall-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-text {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
  }
}

.p-sub-evaluate__overall-note {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-note {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-sub-evaluate__overall-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-right {
    gap: 10px;
    gap: 0.625rem;
  }
}

.p-sub-evaluate__overall-rating {
  display: flex;
  align-items: baseline;
  gap: 3px;
  gap: 0.1875rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid #999999;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-rating {
    gap: 5px;
    gap: 0.3125rem;
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
}

.p-sub-evaluate__overall-label {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-label {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-sub-evaluate__overall-score {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 500;
  padding-inline: 10px;
  padding-inline: 0.625rem;
  color: #FD9822;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-score {
    font-size: 48px;
    font-size: 3rem;
  }
}

.p-sub-evaluate__overall-unit {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-evaluate__overall-unit {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-sub-evaluate__overall-stars {
  line-height: 1;
  margin-left: auto;
}

.p-sub-header {
  background-color: #FCFAF4;
  position: relative;
  overflow: hidden;
  padding: 67px 0 85px;
  padding: 4.1875rem 0 5.3125rem;
}
@media screen and (min-width: 768px) {
  .p-sub-header {
    padding: 200px 0 170px;
    padding: 12.5rem 0 10.625rem;
  }
}

.p-sub-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  aspect-ratio: 577/421;
  background-color: #fff;
  border-radius: 50%/50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-sub-header::after {
    width: 200vw;
    aspect-ratio: 2933/1669;
  }
}
@media screen and (min-width: 1920px) {
  .p-sub-header::after {
    width: 200vw;
  }
}

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

.p-sub-ranking {
  overflow: hidden;
}

.p-sub-ranking__section + .p-sub-ranking__section {
  margin-top: 90px;
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__section + .p-sub-ranking__section {
    margin-top: 180px;
    margin-top: 11.25rem;
  }
}

.p-sub-ranking__area-section-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-section-wrap {
    gap: 100px;
    gap: 6.25rem;
    flex-direction: row;
  }
}

.p-sub-ranking__area-section {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-section {
    max-width: 500px;
    max-width: 31.25rem;
  }
}

.p-sub-ranking__area-title {
  display: inline-block;
  background-color: #5B9CBF;
  color: #fff;
  font-weight: 400;
  padding: 2px 10px;
  padding: 0.125rem 0.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  align-self: flex-start;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-title {
    padding: 2px 16px;
    padding: 0.125rem 1rem;
    margin-left: 20px;
    margin-left: 1.25rem;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-sub-ranking__area-content {
  border-radius: 0.375rem;
  border: 1px solid #2687A7;
  margin-top: -16px;
  margin-top: -1rem;
  padding: 23px 14px;
  padding: 1.4375rem 0.875rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  z-index: -1;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-content {
    padding: 34px 20px;
    padding: 2.125rem 1.25rem;
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-sub-ranking__area-bottom {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-bottom {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.p-sub-ranking__area-note {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-note {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.p-sub-ranking__area-text-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-text-wrap {
    margin-top: 100px;
    margin-top: 6.25rem;
    text-align: center;
  }
}

.p-sub-ranking__area-text {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.p-sub-ranking__area-text + .p-sub-ranking__area-text {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-text + .p-sub-ranking__area-text {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-sub-ranking__area-text-list {
  margin-top: 10px;
  margin-top: 0.625rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  gap: 0.625rem;
  justify-content: center;
}
@media screen and (min-width: 500px) {
  .p-sub-ranking__area-text-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__area-text-list {
    display: flex;
    grid-template-columns: initial;
    margin-top: 15px;
    margin-top: 0.9375rem;
    gap: 20px;
    gap: 1.25rem;
  }
}

.p-sub-ranking__ranking-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__ranking-item {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
}

.p-sub-ranking__voice {
  margin: 40px 0;
  margin: 2.5rem 0;
  padding-top: 70px;
  padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__voice {
    margin: 80px 0;
    margin: 5rem 0;
    padding-top: 100px;
    padding-top: 6.25rem;
  }
}

.p-sub-ranking__evaluate {
  margin-top: 150px;
  margin-top: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__evaluate {
    margin-top: 300px;
    margin-top: 18.75rem;
  }
}

.p-sub-ranking__evaluate-inner.l-inner {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-sub-ranking__evaluate-inner.l-inner {
    max-width: 1350px;
    max-width: 84.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-ranking__evaluate-wrap {
    margin-right: -35px;
    margin-right: -2.1875rem;
    margin-left: 35px;
    margin-left: 2.1875rem;
  }
}

.p-sub-voice__faq {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-voice__faq {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-sub-voice__faq-note {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-sub-voice__faq-note {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sub-voice__faq-note-text {
    text-align: center;
  }
}

.p-top-contact-form {
  padding: 120px 0 80px;
  padding: 7.5rem 0 5rem;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-contact-form {
    padding: 120px 0;
    padding: 7.5rem 0;
  }
}

.p-top-contact-form::before {
  content: "";
  position: absolute;
  top: 60px;
  top: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  aspect-ratio: 577/421;
  background-color: #FCFAF4;
  border-radius: 50%/50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-contact-form::before {
    top: 0px;
    top: 0rem;
    width: 200vw;
    aspect-ratio: 2933/1669;
  }
}

.p-top-contact-form::after {
  content: "";
  position: absolute;
  top: 300px;
  top: 18.75rem;
  left: 0;
  width: 100%;
  height: calc(100% - 6.25rem);
  background-color: #FCFAF4;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-contact-form::after {
    top: 500px;
    top: 31.25rem;
    height: calc(100% - 31.25rem);
  }
}

.p-top-contact-form__inner {
  position: relative;
  z-index: 3;
}

.p-top-contact-form__container {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto;
}

.p-top-contact-form__content {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-contact-form__content {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-top-contact-form__lead {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top-contact-form__lead {
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-top-message {
  padding-top: 50px;
  padding-top: 3.125rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-message {
    padding-top: 100px;
    padding-top: 6.25rem;
    padding-bottom: 20px;
    padding-bottom: 1.25rem;
  }
}

.p-top-message__content-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  max-width: 560px;
  max-width: 35rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-message__content-wrap {
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 840px;
    max-width: 52.5rem;
  }
}

.p-top-message__content {
  max-width: 430px;
  max-width: 26.875rem;
  margin-inline: auto;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__content {
    max-width: 760px;
    max-width: 47.5rem;
  }
}

.p-top-message__content-text {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__content-text {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.p-top-message__youtube {
  max-width: 100%;
  aspect-ratio: 951/535;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__youtube {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.p-top-message__youtube iframe {
  width: 100%;
  height: 100%;
}

.p-top-message__image {
  width: 100%;
  aspect-ratio: 600/400;
}
.p-top-message__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-message__ceo {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__ceo {
    margin-top: 40px;
    margin-top: 2.5rem;
    gap: 20px;
    gap: 1.25rem;
  }
}

.p-top-message__ceo-title {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__ceo-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-top-message__ceo-name {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-message__ceo-name {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.p-top-mv {
  background-color: #FCFAF4;
  z-index: 1;
  overflow: hidden;
  text-align: center;
  padding-top: 66px;
  padding-top: 4.125rem;
  padding-bottom: 200px;
  padding-bottom: 12.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    padding-top: 80px;
    padding-top: 5rem;
    padding-bottom: 270px;
    padding-bottom: 16.875rem;
  }
}

.p-top-mv::after {
  content: "";
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  width: 150vw;
  aspect-ratio: 577/421;
  background-color: #fff;
  border-radius: 50%/50%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-mv::after {
    width: 200vw;
    aspect-ratio: 2933/1669;
  }
}
@media screen and (min-width: 1920px) {
  .p-top-mv::after {
    width: 200vw;
  }
}

.p-top-mv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-top-mv__image.inline-svg-animation {
  display: inline-block;
  width: 650px;
  width: 40.625rem;
  aspect-ratio: 1542/472;
}
@media screen and (min-width: 768px) {
  .p-top-mv__image.inline-svg-animation {
    width: 1542px;
    width: 96.375rem;
    max-width: 100%;
  }
}

.p-top-mv__image.inline-svg-animation svg {
  width: 100%;
  height: 100%;
  display: block;
}

.p-top-mv__image.inline-svg-animation svg path {
  fill: none;
  stroke: #828282;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.p-top-mv__image {
  display: inline-block;
}

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

.p-top-mv__title-wrap {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-mv__title-wrap {
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
}

.inline-svg-animation ~ .p-top-mv__title-wrap .p-top-mv__main-title,
.inline-svg-animation ~ .p-top-mv__title-wrap .p-top-mv__sub-title {
  opacity: 0;
  transform: translateY(20px);
}

.p-top-mv__main-title {
  font-size: 30px;
  font-size: 1.875rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-top-mv__main-title {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}

.p-top-mv__sub-title {
  margin-inline: auto;
  width: 276px;
  width: 17.25rem;
  aspect-ratio: 414/110;
}
@media screen and (min-width: 768px) {
  .p-top-mv__sub-title {
    margin-top: -20px;
    margin-top: -1.25rem;
    width: 414px;
    width: 25.875rem;
  }
}

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

.p-top-mv__humans {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  height: 12.5rem;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-top-mv__humans {
    height: 300px;
    height: 18.75rem;
  }
}

.p-top-mv__human {
  position: absolute;
  height: auto;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
}

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

.p-top-mv__human--1 {
  left: 10%;
  bottom: 90px;
  bottom: 5.625rem;
  width: 26px;
  width: 1.625rem;
  aspect-ratio: 65/127;
}
@media screen and (min-width: 768px) {
  .p-top-mv__human--1 {
    left: 10%;
    bottom: 170px;
    bottom: 10.625rem;
    width: 55px;
    width: 3.4375rem;
  }
}

.p-top-mv__human--2 {
  left: 20%;
  bottom: 110px;
  bottom: 6.875rem;
  width: 38px;
  width: 2.375rem;
  aspect-ratio: 92/147;
}
@media screen and (min-width: 768px) {
  .p-top-mv__human--2 {
    left: 18%;
    bottom: 200px;
    bottom: 12.5rem;
    width: 70px;
    width: 4.375rem;
  }
}

.p-top-mv__human--3 {
  left: 55%;
  bottom: 100px;
  bottom: 6.25rem;
  width: 50px;
  width: 3.125rem;
  aspect-ratio: 124/208;
}
@media screen and (min-width: 768px) {
  .p-top-mv__human--3 {
    left: 75%;
    bottom: 180px;
    bottom: 11.25rem;
    width: 100px;
    width: 6.25rem;
  }
}

.p-top-mv__human--4 {
  left: 80%;
  bottom: 90px;
  bottom: 5.625rem;
  width: 50px;
  width: 3.125rem;
  aspect-ratio: 149/202;
}
@media screen and (min-width: 768px) {
  .p-top-mv__human--4 {
    left: 88%;
    bottom: 150px;
    bottom: 9.375rem;
    width: 120px;
    width: 7.5rem;
  }
}

.p-top-philosophy {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy {
    padding-top: 50px;
    padding-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-philosophy__inner.l-inner {
    max-width: 1500px;
    max-width: 93.75rem;
  }
}

.p-top-philosophy__title {
  padding: 10px 0;
  padding: 0.625rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__title {
    padding: 20px 0;
    padding: 1.25rem 0;
  }
}

.p-top-philosophy__label {
  display: flex;
  align-items: center;
  color: #D29A00;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__label {
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-top-philosophy__line {
  width: 40px;
  width: 2.5rem;
  height: 1px;
  background-color: #FF6E06;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__line {
    width: 60px;
    width: 3.75rem;
  }
}

.p-top-philosophy__label-text {
  font-weight: bold;
}

.p-top-philosophy__main {
  margin-top: 16px;
  margin-top: 1rem;
  margin-right: calc(50% - 50vw);
  margin-left: 24px;
  margin-left: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  font-size: 21px;
  font-size: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__main {
    margin-top: 32px;
    margin-top: 2rem;
    margin-left: 0;
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.p-top-philosophy__sub {
  margin-left: 16px;
  margin-left: 1rem;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__sub {
    margin-left: 0;
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.p-top-philosophy__highlight {
  color: #2687A7;
}

.p-top-philosophy__content {
  margin-top: 45px;
  margin-top: 2.8125rem;
  max-width: 546.67px;
  max-width: 34.166875rem;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__content {
    margin-top: 90px;
    margin-top: 5.625rem;
    max-width: 820px;
    max-width: 51.25rem;
  }
}

.p-top-philosophy__content-text {
  margin-top: 25px;
  margin-top: 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__content-text {
    margin-top: 45px;
    margin-top: 2.8125rem;
  }
}

.p-top-philosophy__content-wrap {
  padding-left: 15px;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__content-wrap {
    position: relative;
    padding-left: 30px;
    padding-left: 1.875rem;
  }
}

.p-top-philosophy__image {
  position: absolute;
  z-index: -1;
  top: 30%;
  left: calc(50% - 50vw);
  width: 100vw;
  height: 50vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-top-philosophy__image {
    position: absolute;
    top: 140px;
    top: 8.75rem;
    width: 52.0833333333vw;
    left: auto;
    right: 0;
    height: auto;
    aspect-ratio: 1000/500;
    margin: 0 calc(50% - 50vw);
  }
}

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

.p-top-philosophy__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.p-top-post-list {
  display: none;
  position: relative;
}

.p-top-post-list__ranking,
.p-top-post-list__info {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-post-list__ranking,
  .p-top-post-list__info {
    padding-top: 100px;
    padding-top: 6.25rem;
  }
}

.p-top-post-list__background {
  background-color: #FCFAF4;
  border-radius: 0 3.125vw 3.125vw 0;
  padding: 0 20px 45px 0;
  padding: 0 1.25rem 2.8125rem 0;
  position: relative;
  margin-right: 25px;
  margin-right: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-post-list__background {
    margin-right: 70px;
    margin-right: 4.375rem;
    border-radius: 0 6.25vw 6.25vw 0;
    padding: 80px 50px 180px 0;
    padding: 5rem 3.125rem 11.25rem 0;
  }
}

.p-top-post-list__wrap {
  margin-right: -10px;
  margin-right: -0.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-post-list__wrap {
    margin-left: 35px;
    margin-left: 2.1875rem;
    margin-right: -35px;
    margin-right: -2.1875rem;
  }
}

.p-top-post-list__background::before {
  content: "";
  position: absolute;
  left: 0;
  width: 53.3333333333vw;
  top: -13.3333333333vw;
  aspect-ratio: 725/215;
  background-image: url(../images/top/research-town.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top-post-list__background::before {
    top: max(-9.375vw, -180px);
    width: min(37.7604166667vw, 725px);
  }
}

.p-top-post-list__background::after {
  content: "";
  position: absolute;
  bottom: -30px;
  bottom: -1.875rem;
  right: 0px;
  right: 0rem;
  width: 50px;
  width: 3.125rem;
  aspect-ratio: 130/204;
  background-image: url(../images/top/resarch-human.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top-post-list__background::after {
    bottom: -70px;
    bottom: -4.375rem;
    right: 50px;
    right: 3.125rem;
    width: 130px;
    width: 8.125rem;
  }
}

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

.p-top-ranking {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top-ranking {
    padding-top: 120px;
    padding-top: 7.5rem;
    padding-bottom: 50px;
    padding-bottom: 3.125rem;
  }
}

.p-top-staff {
  padding-top: 80px;
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-top-staff {
    padding-top: 100px;
    padding-top: 6.25rem;
  }
}

.p-top-staff-wrap {
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
  background-color: #FCFAF4;
  border-radius: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-staff-wrap {
    border-radius: 2.5rem;
    padding-bottom: 180px;
    padding-bottom: 11.25rem;
  }
}

.p-top-staff-wrap:before {
  content: "";
  position: absolute;
  bottom: -40px;
  bottom: -2.5rem;
  left: 5%;
  width: 80px;
  width: 5rem;
  aspect-ratio: 155/190;
  background-image: url(../images/top/company-human.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top-staff-wrap:before {
    bottom: -100px;
    bottom: -6.25rem;
    left: 10%;
    width: 155px;
    width: 9.6875rem;
  }
}

.p-top-staff__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  gap: 0.9375rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .p-top-staff__wrap {
    margin-top: 70px;
    margin-top: 4.375rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-top-staff__card {
  width: 100%;
}

.p-top-staff__img {
  width: 100%;
  aspect-ratio: 1/1;
}

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

.p-top-staff__title {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 10px;
  margin-top: 0.625rem;
  color: #2687A7;
}
@media screen and (min-width: 768px) {
  .p-top-staff__title {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.p-top-staff__text {
  width: 100%;
  word-break: break-all;
}

.p-top-step__top {
  background-color: #B6DCF0;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-step__top {
    padding: 100px 0;
    padding: 6.25rem 0;
    padding-bottom: 473px;
    padding-bottom: 29.5625rem;
  }
}

.p-top-step__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  gap: 0.625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-inline: auto;
  max-width: 570px;
  max-width: 35.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-step__items {
    max-width: 1310px;
    max-width: 81.875rem;
    gap: 50px;
    gap: 3.125rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.p-top-step__item {
  width: calc((100% - 0.875rem) / 2);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-step__item {
    width: calc((100% - 9.375rem) / 4);
    max-width: 300px;
    max-width: 18.75rem;
  }
}

.p-top-step__cards {
  max-width: 1500px;
  max-width: 93.75rem;
  margin-inline: auto;
  margin-top: -50px;
  margin-top: -3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-step__cards {
    background-color: #fff;
    margin-top: -362px;
    margin-top: -22.625rem;
  }
}

.p-top-step__cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  gap: 1.5625rem;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  padding: 5rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-step__cards-wrap {
    gap: 70px;
    gap: 4.375rem;
    padding: 160px 0;
    padding: 10rem 0;
  }
}

.p-top-step__card {
  position: relative;
  width: 100%;
}

.p-top-step__card[data-step="3"]::before {
  content: "";
  position: absolute;
  right: -60px;
  right: -3.75rem;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 54px;
  width: 3.375rem;
  height: 40px;
  height: 2.5rem;
  background-image: url("../images/top/work-human.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-step__card[data-step="3"]::before {
    right: -120px;
    right: -7.5rem;
    width: 100px;
    width: 6.25rem;
    height: 100px;
    height: 6.25rem;
  }
}

.p-top-step__card-arrow {
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  border-right: 2px solid #1f1f1f;
  border-bottom: 2px solid #1f1f1f;
  transform: rotate(45deg);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-step__card-arrow {
    border-right: 3px solid #1f1f1f;
    border-bottom: 3px solid #1f1f1f;
    width: 30px;
    width: 1.875rem;
    height: 30px;
    height: 1.875rem;
  }
}

.p-top-step__card:last-child::after {
  display: none;
}

.p-top-step__card-text {
  max-width: 670px;
  max-width: 41.875rem;
}

.js-fade {
  opacity: 0;
  transform: scale(0.98) translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-fade.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.js-fade:not(.is-visible) {
  will-change: opacity, transform;
  /* アニメーション中のみpointer-events制御、アクセシビリティ保持 */
  pointer-events: none;
}

.js-fade.is-visible {
  will-change: auto;
  pointer-events: auto;
}

/* 子要素は常にアクセス可能（キーボードナビゲーション対応） */
.js-fade:not(.is-visible) a,
.js-fade:not(.is-visible) button,
.js-fade:not(.is-visible) [tabindex] {
  pointer-events: auto;
  touch-action: manipulation;
}

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

.nav-links ul li a,
.nav-links ul li span {
  color: #01A9E0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li a,
  .nav-links ul li span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

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

.nav-links ul li {
  position: relative;
  margin: 0 5px;
  margin: 0 0.3125rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li {
    margin: 0 10px;
    margin: 0 0.625rem;
  }
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  width: 100%;
  padding: 5px;
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .nav-links ul li a,
  .nav-links ul li span {
    padding: 10px;
    padding: 0.625rem;
  }
}

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

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

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