@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/**
 * clamp()関数を生成する
 * @param {Number} $min - 最小フォントサイズ (px)
 * @param {Number} $max - 最大フォントサイズ (px)
 * @param {Number} $min-view-port - 最小フォントサイズ時の画面幅 (px)
 * @param {Number} $max-view-port - 最大フォントサイズ時の画面幅 (px)
 * @return {String} - 計算されたclamp()の値
 */
/**
 * pxベースのclamp()関数を生成（htmlのfont-sizeが可変でも正確に動作）
 * @param {Number} $min - 最小値 (px)
 * @param {Number} $max - 最大値 (px)
 * @param {Number} $min-view-port - 最小値時の画面幅 (px)
 * @param {Number} $max-view-port - 最大値時の画面幅 (px)
 * @return {String} - 計算されたclamp()の値
 */
@media screen and (max-width: 1359px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1360 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}

body {
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
}
a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a {
  display: inline-block;
}

span {
  display: inline;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-header {
  display: none;
}

.l-main {
  -webkit-padding-before: 4.5rem;
          padding-block-start: 4.5rem;
  min-height: 100vh;
}

.l-section {
  -webkit-padding-before: 6.25rem;
          padding-block-start: 6.25rem;
  -webkit-padding-after: 6.25rem;
          padding-block-end: 6.25rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    -webkit-padding-before: 4.0625rem;
            padding-block-start: 4.0625rem;
    -webkit-padding-after: 5rem;
            padding-block-end: 5rem;
  }
}

.l-content {
  padding-top: 4em !important;
}
@media screen and (max-width: 959px) {
  .l-content {
    max-width: 800px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-content {
    padding-inline: 0.5rem;
    padding-top: 0em !important;
  }
}

.l-mainContent {
  -webkit-padding-before: 5.25rem;
          padding-block-start: 5.25rem;
  -webkit-padding-after: 5.25rem;
          padding-block-end: 5.25rem;
  padding-inline: 1rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-mainContent {
    -webkit-padding-before: 2.5rem;
            padding-block-start: 2.5rem;
    -webkit-padding-after: 2.5rem;
            padding-block-end: 2.5rem;
    padding-inline: 0.5rem;
  }
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 1.25rem;
  }
}

.l-inner__middle {
  max-width: 62.5rem;
  width: 100%;
  height: inherit;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner__middle {
    max-width: 335px;
  }
}

.l-inner__narrow {
  max-width: 43.75rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 335px;
  }
}

.c-animated__fadeIn {
  translate: 0 20px;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.c-animated__fadeIn.js-show {
  translate: 0;
  opacity: 1;
}

.animated__slideUp {
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.animated__slideUp .char {
  translate: 0 100%;
}

.animated__slideIn--left {
  opacity: 0;
  translate: -1000px;
  -webkit-transition: opacity 1s ease, translate 1s ease;
  transition: opacity 1s ease, translate 1s ease;
}
@media (max-width: 768px) {
  .animated__slideIn--left {
    opacity: 0;
    translate: 0 40px;
  }
}
.animated__slideIn--left.js-show {
  opacity: 1;
  translate: 0;
}

.animated__slideIn--right {
  opacity: 0;
  translate: 1000px;
  -webkit-transition: opacity 1s ease, translate 1s ease;
  transition: opacity 1s ease, translate 1s ease;
}
@media (max-width: 768px) {
  .animated__slideIn--right {
    opacity: 0;
    translate: 0 40px;
  }
}
.animated__slideIn--right.js-show {
  opacity: 1;
  translate: 0;
}

.p-announcement-bar {
  background-color: #fff;
  color: #078943;
  text-align: center;
  padding: 0.625rem 0.3125rem;
  -webkit-margin-before: 72px;
          margin-block-start: 72px;
  font-size: max(0.875rem, 13.3px);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-announcement-bar {
    font-size: 0.875rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-announcement-bar {
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
  }
}
.p-announcement-bar__text {
  margin: 0;
  padding: 0;
}

.p-header {
  background-color: #078943;
  color: #ffffff;
  position: fixed;
  width: 100%;
  height: 72px;
  top: 0;
  left: 0;
  z-index: 100;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width:959px) {
  .p-header {
    height: 48px;
  }
}
.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 40px);
  height: 72px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width:959px) {
  .p-header__inner {
    height: 48px;
  }
}
.p-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 116px;
}
.p-header__logo-top {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  text-align: center;
  color: #ffffff;
  margin-bottom: -2px;
}
.p-header__logo-bottom {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  color: #ffffff;
}
.p-header__logo-text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: max(0.75rem, 11.4px);
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-margin-after: -0.125rem;
          margin-block-end: -0.125rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo-text {
    font-size: 0.75rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-header__logo-text {
    font-size: max(0.6875rem, 10.45px);
    font-weight: 800;
    line-height: 150%;
    letter-spacing: 0.1090909091em;
  }
}
@media screen and (max-width:959px) and (max-width: 767px) {
  .p-header__logo-text {
    font-size: 0.6875rem !important;
  }
}
.p-header__logo-text .letter-spacing-1 {
  letter-spacing: 0.165rem;
}
.p-header__logo-text--bold {
  font-size: max(1rem, 15.2px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-header__logo-text--bold {
    font-size: 1rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-header__logo-text--bold {
    font-size: max(0.8125rem, 12.35px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.0369230769em;
  }
}
@media screen and (max-width:959px) and (max-width: 767px) {
  .p-header__logo-text--bold {
    font-size: 0.8125rem !important;
  }
}
.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 66px;
}
@media screen and (max-width:959px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 72px;
  position: relative;
}
.p-header__nav-item::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
  width: 37px;
  height: auto;
  aspect-ratio: 37/35;
  background-image: url(../img/icon-trophy.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 30px;
  height: 72px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-header__nav-link:hover {
  opacity: 0.8;
}

.p-header__nav-list .menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 72px;
}
.p-header__nav-list .menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 24px;
  height: 72px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-header__nav-list .menu-item a:hover {
  opacity: 0.8;
}

.p-drawer__icon {
  display: none;
}
@media screen and (max-width:959px) {
  .p-drawer__icon {
    position: fixed;
    z-index: 102;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: 14px;
    right: 14px;
    width: 20px;
    height: 20px;
  }
}

.p-drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #fff;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 9px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -9px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar {
  background: #70634E;
}

body:has(.p-drawer.js-show) .p-header {
  background-color: #F8F8F8;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
body:has(.p-drawer.js-show) .p-header .p-header__logo-text {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #078943;
}
body:has(.p-drawer.js-show) .p-header .p-header__logo-text--bold {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #078943;
}

.p-drawer {
  position: fixed;
  z-index: 99;
  overflow-y: scroll;
  top: 48px;
  right: 0;
  width: 100%;
  height: 100vh;
  height: calc(100svh - 48px);
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 960px) {
  .p-drawer {
    display: none;
  }
}

.p-drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer {
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  padding-inline: 32px;
  padding-block: 30px 24px;
}
.p-drawer.js-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-drawer__body {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-inline: auto;
  max-width: 311px;
  width: 100%;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
}
.p-drawer__list li a {
  font-size: 20px;
  font-weight: 400;
}

.p-drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  font-size: 20px;
  font-weight: 400;
}

.p-drawer__nav-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-padding-after: 16px;
          padding-block-end: 16px;
  -webkit-padding-before: 16px;
          padding-block-start: 16px;
  -webkit-padding-start: 53px;
          padding-inline-start: 53px;
  position: relative;
}
.p-drawer__nav-column:first-child {
  -webkit-padding-before: 0;
          padding-block-start: 0;
  border-bottom: 1px solid rgba(35, 24, 21, 0.2);
}
.p-drawer__nav-column:first-child::before {
  content: "";
  position: absolute;
  display: block;
  top: -6px;
  left: 0;
  width: 37px;
  height: auto;
  aspect-ratio: 37/35;
  background-image: url(../img/icon-trophy.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-drawer__nav-column--area {
  -webkit-padding-after: 0;
          padding-block-end: 0;
}
.p-drawer__nav-column--area::before {
  content: "";
  position: absolute;
  display: block;
  top: 12px;
  left: 0;
  width: 37px;
  height: auto;
  aspect-ratio: 37/33;
  background-image: url(../img/icon-map.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-drawer__nav-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 150%;
  color: #078943;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-title {
    font-size: 1rem !important;
  }
}

.p-drawer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-drawer__nav-list--area {
  width: 100%;
}

.p-drawer__nav-item {
  margin: 0;
  padding-inline: 0;
}

.p-drawer__nav-link {
  padding-block: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 150%;
  color: #231815;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-link {
    font-size: 1rem !important;
  }
}
.p-drawer__nav-link:hover {
  opacity: 0.7;
}

.p-drawer__nav-icon {
  width: 7px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-drawer__nav-icon path {
  fill: #231815;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-drawer__nav-icon:hover path {
  fill: #078943;
}

.p-drawer__nav-column--area {
  width: 100%;
}

.p-drawer__area-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.p-footer {
  position: relative;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-inline: 5rem;
  padding-block: 2rem 1rem;
  background: #078943;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-inline: 1.5rem;
    padding-block: 2.5rem 1rem;
  }
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    text-align: center;
    width: 77.6758409786%;
    max-width: 500px;
  }
}

.p-footer__logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-footer__logo-wrapper:hover {
  opacity: 0.7;
}

.p-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.p-footer__logo-text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: max(0.75rem, 11.4px);
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-margin-after: -0.125rem;
          margin-block-end: -0.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-text {
    font-size: 0.75rem !important;
  }
}
.p-footer__logo-text .letter-spacing-1 {
  letter-spacing: 0.165rem;
}

.p-footer__logo-text--bold {
  font-size: max(1rem, 15.2px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__logo-text--bold {
    font-size: 1rem !important;
  }
}

.p-footer__nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-margin-before: 1rem;
          margin-block-start: 1rem;
  width: 65%;
  width: 65%;
  margin-inline: auto;
}
@media screen and (max-width: 959px) {
  .p-footer__nav-wrapper {
    width: 100%;
    margin-inline: auto;
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.p-footer__nav-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-column {
    width: 100%;
  }
  .p-footer__nav-column:first-child {
    width: 100%;
  }
}

.p-footer__nav-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-title {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-title {
    text-align: left;
  }
}

.p-footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__nav-list--area {
    width: 100%;
  }
}

.p-footer__nav-item {
  margin: 0;
  padding: 0;
}

.p-footer__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-size: max(1rem, 15.2px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-link {
    white-space: nowrap;
  }
}
.p-footer__nav-link:hover {
  opacity: 0.7;
}

.p-footer__nav-icon {
  width: 7px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: currentColor;
}

@media screen and (max-width: 767px) {
  .p-footer__nav-column--area {
    width: 100%;
  }
}

.p-footer__area-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
@media screen and (max-width: 767px) {
  .p-footer__area-wrapper {
    gap: 2.5rem;
  }
}

.p-footer__knowledge-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__knowledge-wrapper {
    width: 100%;
  }
}

.p-footer__knowledge-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.p-footer__knowledge-section .p-footer__nav-list {
  gap: 0.875rem;
}

.p-footer__company-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__company-section {
    width: 100%;
  }
}

.p-footer__company-section .p-footer__nav-list {
  gap: 0.5rem;
}

.p-footer__company-section .p-footer__nav-item:last-child .p-footer__nav-link {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.p-footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1rem, 15.2px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  margin-top: 0;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: clamp(0.75rem, calc(0.6607142857rem + 0.4464285714vw), 0.875rem) !important;
    -webkit-margin-before: 4rem !important;
            margin-block-start: 4rem !important;
  }
}

.p-rating.single {
  padding-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating.single {
    padding-top: 1.25rem;
  }
}
.p-rating__container {
  max-width: 50rem;
  margin: 0 auto;
  background: white;
  padding: 1.875rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
}
.p-rating__title {
  color: #333;
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
}
.p-rating__input-section {
  background: #f9f9f9;
  padding: 1.25rem;
  border-radius: 0.375rem;
  margin-bottom: 1.875rem;
}
.p-rating__input-title, .p-rating__display-title {
  margin-bottom: 1.25rem;
  font-size: 1.125rem;
  color: #333;
}
.p-rating__input-group {
  margin-bottom: 1.25rem;
}
.p-rating__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #555;
}
.p-rating__input-number {
  width: 6.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 1rem;
}
.p-rating__input-text {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  font-size: 1rem;
}
.p-rating__update-btn {
  background: #0073aa;
  color: white;
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: 1rem;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-rating__update-btn:hover {
  background: #005a87;
}
.p-rating__display-section {
  list-style: none;
}
.p-rating__contractor-card {
  background: rgba(255, 253, 228, 0.6);
  border-radius: 0.5rem;
  padding-inline: clamp(24px, calc(-8px + 3.3333333333vw), 40px);
  padding-block: 0.25rem 2rem;
  width: 100%;
  margin-inline: auto;
  position: relative;
  -webkit-box-shadow: 3px 4px 14px 0 rgba(0, 0, 0, 0.17);
          box-shadow: 3px 4px 14px 0 rgba(0, 0, 0, 0.17);
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card {
    width: 100%;
    padding: clamp(16px, calc(-16.167539267px + 4.1884816754vw), 24px);
    max-width: 550px;
  }
}
.p-rating__contractor-card-recommend {
  margin-inline: auto;
  position: absolute;
  top: clamp(-80px, calc(-43.5714285714px + -2.5297619048vw), -63px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-recommend {
    top: -63px;
  }
}
.p-rating__contractor-card-recommend .recommend-text {
  color: #FFF;
  font-size: max(1.375rem, 20.9px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  background: #078943;
  padding: 0.375rem 0.5rem;
  border-radius: 35px;
  text-align: center;
  width: 39.2682926829%;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-recommend .recommend-text {
    font-size: 1.375rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-recommend .recommend-text {
    font-size: max(1rem, 15.2px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
    padding: 0.25rem 0.25rem;
    width: 12.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating__contractor-card-recommend .recommend-text {
    font-size: 1rem !important;
  }
}
.p-rating__contractor-card-recommend .recommend-text .icon-good {
  width: 2rem;
  height: auto;
  aspect-ratio: 32/34;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-rating__contractor-card-recommend .recommend-text .text-yellow {
  color: #FCD700;
}
.p-rating__contractor-card-recommend svg {
  width: 1.875rem;
  height: 1.25rem;
  position: absolute;
  bottom: -0.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.p-rating__contractor-card-recommend svg path {
  fill: #078943;
}
.p-rating__contractor-card-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-margin-after: 0.3125rem;
          margin-block-end: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-area {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-rating__contractor-card-area-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(5px, calc(-17px + 2.2916666667vw), 16px);
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-area-items {
    row-gap: 0.75rem;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-rating__contractor-card-area-item {
  color: #078943;
  font-size: max(0.875rem, 13.3px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-size: max(0.875rem, 10.5px);
  border: 1px solid #078943;
  background: #F9F7D2;
  padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-area-item {
    font-size: 0.875rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-area-item {
    padding: 0.25rem 0.25rem;
    font-size: max(0.75rem, 11.4px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating__contractor-card-area-item {
    font-size: 0.75rem !important;
  }
}
.p-rating__contractor-card-ad {
  color: #B4B4B2;
  text-align: center;
  font-size: max(0.875rem, 13.3px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  border: 1px solid #B4B4B2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.125rem 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-ad {
    font-size: 0.875rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-card-ad {
    font-size: max(0.75rem, 11.4px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
    padding: 0.25rem 0.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating__contractor-card-ad {
    font-size: 0.75rem !important;
  }
}
.p-rating__rank-badge {
  position: absolute;
  top: 0rem;
  left: -1.875rem;
  z-index: 10;
  width: 5rem;
  height: auto;
  aspect-ratio: 80/139;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-rating__rank-badge {
    width: 3.125rem;
    left: -0.875rem;
  }
}
.p-rating__badge-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-rating__eyecatch {
  width: 100%;
  height: auto;
  aspect-ratio: 740/416;
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-rating__eyecatch {
    margin-bottom: 0.9375rem;
  }
}
.p-rating__eyecatch-image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-rating__contractor-name {
  color: #000 !important;
  font-family: "Noto Sans JP";
  font-size: max(1.25rem, 19px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-size: max(1.25rem, 19px) !important;
  font-weight: 700 !important;
  line-height: 150% !important;
  letter-spacing: 0em !important;
  text-align: center;
  position: relative !important;
  display: inline-block;
  z-index: 0 !important;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-rating__contractor-name {
    font-size: 1.25rem !important;
  }
}
.p-rating__contractor-name::before {
  content: "" !important;
  position: absolute;
  bottom: 0.1875rem !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
  width: 100% !important;
  height: 0.4375rem !important;
  background: #ECCB1E !important;
  z-index: -1 !important;
}
.p-rating__coverage-areas {
  color: #078943;
  -webkit-margin-before: 2.125rem;
          margin-block-start: 2.125rem;
  gap: 1.5rem;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-rating__coverage-areas {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__coverage-areas {
    gap: 0.75rem;
  }
}
.p-rating__coverage-label {
  color: #078943;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-rating__coverage-label {
    font-size: 1rem !important;
  }
}
.p-rating__coverage-list {
  color: #078943;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  border: 1px dashed #078943;
  padding-block: 0.5rem;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating__coverage-list {
    font-size: 1rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-rating__coverage-list {
    font-size: clamp(12px, calc(9.4315068493px + 0.6849315068vw), 16px) !important;
    padding-block: 0.25rem;
    padding-inline: 0.25rem;
  }
}
.p-rating__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.875rem 0.5625rem;
  border-bottom: 1px solid #d5d5d5;
}
.p-rating__item:last-child {
  border-bottom: none;
}
.p-rating__item-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 5.25rem;
  color: #000;
  text-align: center;
  font-size: max(0.875rem, 13.3px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-size: max(0.875rem, 12px);
}
@media screen and (max-width: 767px) {
  .p-rating__item-label {
    font-size: 0.875rem !important;
  }
}
.p-rating__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  margin-right: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.p-rating__stars--overall {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.625rem;
}
.p-rating__star {
  font-size: 1.5rem;
  color: #FCD700;
  line-height: 1;
  display: inline-block;
  position: relative;
}
.p-rating__star.empty {
  color: #B4B4B2;
}
.p-rating__star--half {
  position: relative;
  width: 1em;
  height: 1em;
  color: transparent;
}
.p-rating__star--half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #ffd700;
  display: block;
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
}
.p-rating__star--half::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #B4B4B2;
  display: block;
  -webkit-clip-path: inset(0 0 0 50%);
          clip-path: inset(0 0 0 50%);
}
.p-rating__star--partial {
  position: relative;
  width: 1em;
  height: 1em;
  color: transparent;
}
.p-rating__star--partial::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #ffd700;
  display: block;
}
.p-rating__star--partial::after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #B4B4B2;
  display: block;
}
.p-rating__star--partial[data-fill="0.25"]::before {
  -webkit-clip-path: inset(0 75% 0 0);
          clip-path: inset(0 75% 0 0);
}
.p-rating__star--partial[data-fill="0.25"]::after {
  -webkit-clip-path: inset(0 0 0 25%);
          clip-path: inset(0 0 0 25%);
}
.p-rating__star--partial[data-fill="0.50"]::before {
  -webkit-clip-path: inset(0 50% 0 0);
          clip-path: inset(0 50% 0 0);
}
.p-rating__star--partial[data-fill="0.50"]::after {
  -webkit-clip-path: inset(0 0 0 50%);
          clip-path: inset(0 0 0 50%);
}
.p-rating__star--partial[data-fill="0.75"]::before {
  -webkit-clip-path: inset(0 25% 0 0);
          clip-path: inset(0 25% 0 0);
}
.p-rating__star--partial[data-fill="0.75"]::after {
  -webkit-clip-path: inset(0 0 0 75%);
          clip-path: inset(0 0 0 75%);
}
.p-rating__score {
  color: #000;
  font-size: max(0.875rem, 13.3px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  display: inline-block;
  text-align: right;
  min-width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating__score {
    font-size: 0.875rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__score {
    min-width: 1.875rem;
  }
}
.p-rating__overall {
  background: #FBF2BD;
  padding-block: 1.0625rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.p-rating__overall-label {
  color: #000;
  font-size: max(1.5rem, 22.8px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-rating__overall-label {
    font-size: 1.5rem !important;
  }
}
.p-rating__overall-score {
  font-size: 2.25rem;
  font-weight: bold;
}
.p-rating__overall-average {
  color: #E00213;
  font-family: "Noto Sans JP";
  font-size: max(2.25rem, 34.2px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-rating__overall-average {
    font-size: 2.25rem !important;
  }
}
.p-rating__overall-average-jp {
  font-size: max(1.75rem, 26.6px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-rating__overall-average-jp {
    font-size: 1.75rem !important;
  }
}
.p-rating__overall .p-rating__star {
  font-size: 1.75rem;
}
.p-rating__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.875rem;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-rating__content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-rating__left-area {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(24px, calc(-8px + 3.3333333333vw), 40px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-rating__left-area h3 {
  margin: 0 !important;
}
.p-rating__header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 0.9375rem);
          flex: 0 0 calc(50% - 0.9375rem);
  width: calc(50% - 0.9375rem);
  min-width: 0;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-rating__header-wrap {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.p-rating__chart-area {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-rating__chart-area {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
    max-width: 25rem;
    height: 100%;
    -webkit-margin-before: -3rem;
            margin-block-start: -3rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__chart-area.area-ranking {
    -webkit-margin-before: -3rem;
            margin-block-start: -3rem;
  }
}
.p-rating__radar-chart {
  width: clamp(220px, calc(-40px + 27.0833333333vw), 350px);
  height: 100%;
  overflow: visible;
}
@media screen and (max-width:959px) {
  .p-rating__radar-chart {
    width: 85%;
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__radar-chart {
    width: 100%;
    max-width: 100%;
  }
}
.p-rating__radar-grid {
  fill: none;
  stroke: #CDCDCD;
  stroke-width: 3px;
}
.p-rating__radar-axis {
  stroke: #CDCDCD;
  stroke-width: 1px;
}
.p-rating__radar-polygon {
  fill: rgba(7, 137, 67, 0.28);
  stroke: #078943;
  stroke-width: 3;
}
.p-rating__radar-point {
  fill: #078943;
  stroke-width: 2px;
  stroke: #078943;
}
.p-rating__radar-label {
  font-size: max(0.875rem, 12.8px);
  font-size: max(0.875rem, 13.3px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-weight: bold;
  fill: #333;
  font-family: inherit;
}
@media screen and (max-width: 767px) {
  .p-rating__radar-label {
    font-size: 0.875rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating__radar-label {
    font-size: max(0.75rem, 11.4px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating__radar-label {
    font-size: 0.75rem !important;
  }
}
.p-rating__items-area {
  width: calc(50% + 11.0625rem);
  min-width: 211px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.5rem;
}
@media screen and (max-width:959px) {
  .p-rating__items-area {
    gap: clamp(100px, calc(19.5811518325px + 10.4712041885vw), 120px);
  }
}
@media screen and (max-width: 767px) {
  .p-rating__items-area {
    width: 100%;
    gap: 2.25rem;
    max-width: 400px;
    margin-inline: auto;
  }
}
.p-rating__items-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-rating__comment {
  margin-top: 1.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #d5d5d5;
  width: 100%;
}
.p-rating__comment-label {
  color: #231815;
  font-size: max(0.875rem, 13.3px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-rating__comment-label {
    font-size: 0.875rem !important;
  }
}
.p-rating__comment-text {
  color: #231815;
  font-size: max(0.875rem, 13.3px);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0em;
  white-space: pre-wrap;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .p-rating__comment-text {
    font-size: 0.875rem !important;
  }
}

.p-rating-rank-table {
  margin: 2.5rem 0;
  padding: 0rem 0;
}
.p-rating-rank-table__title {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: max(1.625rem, 24.7px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-size: max(1.625rem, 20.8px) !important;
  margin-bottom: 1.5rem !important;
  text-align: left;
  padding: 1rem 1.5rem !important;
  background: #078943 !important;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__title {
    font-size: 1.625rem !important;
  }
}
@media screen and (max-width: 599px) {
  .p-rating-rank-table__title {
    font-size: max(1.25rem, 16px) !important;
    padding: 1rem 1rem !important;
    margin-top: 0rem !important;
  }
}
.p-rating-rank-table__title::before {
  display: none !important;
}
.p-rating-rank-table__description {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: max(1.125rem, 17.1px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: left;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  -webkit-padding-after: 1.5rem;
          padding-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__description {
    font-size: 1.125rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__description {
    font-size: max(1rem, 15.2px);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating-rank-table__description {
    font-size: 1rem !important;
  }
}
.p-rating-rank-table__table {
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
  border: 2px solid #333 !important;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table {
    margin-inline: auto;
    max-width: 550px !important;
  }
}
.p-rating-rank-table__table thead {
  background: #fff;
}
.p-rating-rank-table__table thead th {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1.375rem;
  text-align: left;
  color: #333;
  border: 0.125rem solid #333;
  border-top: none;
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table thead th {
    padding: 0.75rem 0.5rem;
  }
}
.p-rating-rank-table__table thead th.p-rating-rank-table__header-eval {
  width: clamp(150px, calc(10px + 14.5833333333vw), 220px);
  min-width: 150px;
  max-width: 220px;
  border-right: 2px solid #FFF;
  background: #333;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: max(1.375rem, 20.9px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-eval {
    font-size: 1.375rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-eval {
    width: clamp(120px, calc(-81.0471204188px + 26.1780104712vw), 170px);
    min-width: 120px;
    max-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-eval {
    font-size: max(1rem, 15.2px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
    width: 30%;
    min-width: 30%;
    max-width: 30%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-eval {
    font-size: 1rem !important;
  }
}
.p-rating-rank-table__table thead th.p-rating-rank-table__header-point {
  width: clamp(300px, calc(0px + 31.25vw), 450px);
  min-width: 300px;
  max-width: 450px;
  border-right: 2px solid #FFF;
  background: #333;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: max(1.375rem, 20.9px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-point {
    font-size: 1.375rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-point {
    width: clamp(250px, calc(-152.0942408377px + 52.3560209424vw), 350px);
    min-width: 250px;
    max-width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-point {
    font-size: max(1rem, 15.2px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-point {
    font-size: 1rem !important;
  }
}
.p-rating-rank-table__table thead th.p-rating-rank-table__header-count {
  width: clamp(80px, calc(40px + 4.1666666667vw), 100px);
  min-width: 80px;
  max-width: 100px;
  text-align: center;
  border-right: 2px solid #333;
  background: #333;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: max(1.25rem, 19px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  padding-inline: 0.5rem 0.5rem !important;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-count {
    font-size: 1.25rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-count {
    width: clamp(70px, calc(-10.4188481675px + 10.4712041885vw), 90px);
    min-width: 70px;
    max-width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-count {
    font-size: max(0.875rem, 13.3px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
    width: 20%;
    min-width: 20%;
    max-width: 20%;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating-rank-table__table thead th.p-rating-rank-table__header-count {
    font-size: 0.875rem !important;
  }
}
.p-rating-rank-table__table tbody tr {
  border-bottom: 0.125rem solid #333;
}
.p-rating-rank-table__table tbody tr:last-child {
  border-bottom: none;
}
.p-rating-rank-table__table tbody td {
  padding: 0;
  vertical-align: middle;
  border-right: 0.125rem solid #333;
}
.p-rating-rank-table__table tbody td:first-child {
  width: clamp(150px, calc(10px + 14.5833333333vw), 220px);
  min-width: 150px;
  max-width: 220px;
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__table tbody td:first-child {
    width: clamp(120px, calc(-81.0471204188px + 26.1780104712vw), 170px);
    min-width: 120px;
    max-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table tbody td:first-child {
    width: 40%;
    min-width: 100%;
    max-width: 40%;
  }
}
.p-rating-rank-table__table tbody td:nth-child(2) {
  width: clamp(300px, calc(0px + 31.25vw), 450px);
  min-width: 300px;
  max-width: 450px;
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__table tbody td:nth-child(2) {
    width: clamp(250px, calc(-152.0942408377px + 52.3560209424vw), 350px);
    min-width: 250px;
    max-width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table tbody td:nth-child(2) {
    width: 50%;
    min-width: 50%;
    max-width: 50%;
  }
}
.p-rating-rank-table__table tbody td:nth-child(3) {
  width: clamp(80px, calc(40px + 4.1666666667vw), 100px);
  min-width: 80px;
  max-width: 100px;
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__table tbody td:nth-child(3) {
    width: clamp(70px, calc(-10.4188481675px + 10.4712041885vw), 90px);
    min-width: 70px;
    max-width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table tbody td:nth-child(3) {
    width: 20%;
    min-width: 20%;
    max-width: 20%;
  }
}
.p-rating-rank-table__table tbody td:last-child {
  border-right: none;
}
.p-rating-rank-table__eval-cell {
  padding: 0 !important;
}
.p-rating-rank-table__rank-badge-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.8125rem 0.75rem;
  padding-inline: 0.625rem 0.625rem;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__rank-badge-wrapper {
    gap: 2rem;
    padding-inline: 2rem 0.625rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__rank-badge-wrapper {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0rem;
    padding-block: 0rem 0rem;
    padding-inline: 0rem 0rem !important;
  }
}
.p-rating-rank-table__rank-badge {
  position: relative;
  width: 3.625rem;
  height: auto;
  aspect-ratio: 50/79;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__rank-badge {
    width: 4.5rem;
  }
}
.p-rating-rank-table__badge-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__badge-image {
    width: 3.5rem;
    height: auto;
    aspect-ratio: 56/113;
  }
}
.p-rating-rank-table__score-range {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: max(1.625rem, 24.7px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-size: clamp(18px, calc(2px + 1.6666666667vw), 26px) !important;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__score-range {
    font-size: 1.625rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__score-range {
    font-size: clamp(16px, calc(14.7157534247px + 0.3424657534vw), 18px) !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__score-range {
    font-size: clamp(16px, calc(14.7157534247px + 0.3424657534vw), 18px) !important;
  }
}
.p-rating-rank-table__score-range-jp {
  font-size: max(1.125rem, 17.1px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-size: clamp(14px, calc(6px + 0.8333333333vw), 18px) !important;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__score-range-jp {
    font-size: 1.125rem !important;
  }
}
@media screen and (max-width:959px) {
  .p-rating-rank-table__score-range-jp {
    font-size: clamp(12px, calc(10.7157534247px + 0.3424657534vw), 14px) !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__score-range-jp {
    font-size: clamp(14px, calc(12.7157534247px + 0.3424657534vw), 16px) !important;
  }
}
.p-rating-rank-table__point-cell {
  padding: 0.875rem 1.5rem !important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__point-cell {
    font-size: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__point-cell {
    padding: 0.75rem 0.5rem !important;
    font-size: max(0.875rem, 13.3px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating-rank-table__point-cell {
    font-size: 0.875rem !important;
  }
}
.p-rating-rank-table__count-cell {
  padding: 0.875rem 1.5rem !important;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  font-size: max(1.625rem, 24.7px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  color: #231815;
  background: #F9F9F9;
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__count-cell {
    font-size: 1.625rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__count-cell {
    font-size: max(1.25rem, 19px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
    padding: 0.3125rem 0.75rem !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating-rank-table__count-cell {
    font-size: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-rank-table__table tbody td.p-rating-rank-table__eval-cell {
    display: block;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-rating-rank-table__table tbody td.p-rating-rank-table__eval-cell {
    margin-bottom: 0rem;
  }
}
.c-widget .-w-ranking .p-postList__item::before {
  display: none !important;
}

.p-rating-area-ranking {
  -webkit-padding-before: 1.6875rem !important;
          padding-block-start: 1.6875rem !important;
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating-area-ranking {
    -webkit-padding-before: 0.125rem !important;
            padding-block-start: 0.125rem !important;
  }
}
.p-rating-area-ranking__title {
  text-align: left;
  margin-bottom: 7.625rem !important;
  color: #333;
  position: relative;
  color: #B18E37;
  font-size: max(1.25rem, 19px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}
@media screen and (max-width: 767px) {
  .p-rating-area-ranking__title {
    margin-bottom: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-area-ranking__title {
    font-size: 1.25rem !important;
  }
}
.p-rating-area-ranking__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.25rem;
  height: 4.3125rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#B18E37), color-stop(50%, #B18E37), color-stop(50%, rgba(177, 142, 55, 0.15)), to(rgba(177, 142, 55, 0.15)));
  background: linear-gradient(180deg, #B18E37 0%, #B18E37 50%, rgba(177, 142, 55, 0.15) 50%, rgba(177, 142, 55, 0.15) 100%);
}
.p-rating-area-ranking__title::before {
  display: none !important;
}
.p-rating-area-ranking__list {
  display: grid;
  gap: 1.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-rating-area-ranking {
    padding: 0rem 0rem;
  }
  .p-rating-area-ranking__title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-rating-area-ranking__first-place {
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-rating-area-ranking__first-place {
    -webkit-margin-before: 6.25rem;
            margin-block-start: 6.25rem;
  }
}

.p-rating__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating__link-wrap {
    margin-top: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-rating__hp-link {
  width: 17.5rem;
  min-width: 245px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  text-align: center;
  padding: 0.75rem 1.25rem;
  border: 1px solid #078943;
  background: #FFF;
  color: #078943;
  font-size: max(1rem, 15.2px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .p-rating__hp-link {
    font-size: 1rem !important;
  }
}
.p-rating__hp-link.--detail {
  border: 1px solid #078943;
  background: #078943;
  color: #fff;
}
.p-rating__hp-link.--single-page {
  margin-inline: auto;
  margin-top: 1.5rem;
}
.p-rating__hp-link svg {
  width: 16px;
  height: 16px;
}
.p-rating__hp-link:hover {
  background: #078943;
  color: #fff;
}
.p-rating__hp-link:hover svg path {
  fill: #fff;
}
.p-rating__hp-link:hover.--detail {
  background: #FFF;
  color: #078943;
  border-color: #078943;
}
.p-rating__hp-link:hover.--detail svg path {
  fill: #078943;
}
@media screen and (max-width: 767px) {
  .p-rating__hp-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

.p-rating-ranking {
  margin: 3.125rem 0;
}
.p-rating-ranking__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.p-rating-ranking__icon {
  width: 5rem;
  height: auto;
  margin-bottom: 1.25rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-rating-ranking__title {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: max(1.375rem, 20.9px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-rating-ranking__title {
    font-size: 1.375rem !important;
  }
}
.p-rating-ranking__title::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  background: #0064D4;
  z-index: -1;
}
.p-rating-ranking__description {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: max(1.125rem, 17.1px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: left;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
  -webkit-padding-after: 1.5rem;
          padding-block-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating-ranking__description {
    font-size: 1.125rem !important;
  }
}
.p-rating-ranking__list {
  display: grid;
  gap: 3rem;
  list-style: none;
  padding: 0 !important;
  margin: 0;
}
.p-rating-ranking__rank-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  margin-bottom: 0.9375rem !important;
  background: none !important;
}
.p-rating-ranking__rank-wrapper::before {
  display: none !important;
}
.p-rating-ranking__rank {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0rem;
  text-align: center;
  width: 100%;
  background-color: #000;
}
.p-rating-ranking__rank .label-jp {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: max(0.875rem, 13.3px);
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0em;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-rating-ranking__rank .label-jp {
    font-size: 0.875rem !important;
  }
}
.p-rating-ranking__rank-number {
  font-family: "Noto Sans JP";
  font-size: max(2rem, 30.4px);
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0em;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-rating-ranking__rank-number {
    font-size: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-rating-ranking {
    margin: 1.875rem 0;
  }
  .p-rating-ranking__icon {
    width: 3.75rem;
    margin-bottom: 0.9375rem;
  }
  .p-rating-ranking__title {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
  .p-rating-ranking__description {
    font-size: 0.875rem;
    padding: 0 1.25rem;
  }
}

.p-rating-all-ranking {
  margin: 3.125rem 0;
}

.p-rating-pagination {
  margin: 2.5rem 0;
  text-align: center;
}
.p-rating-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
.p-rating-pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.p-rating-pagination .page-numbers a,
.p-rating-pagination .page-numbers span {
  display: inline-block;
  padding: 0.5rem 1rem;
  min-width: 2.5rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 0.25rem;
  color: #333;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-rating-pagination .page-numbers a:hover,
.p-rating-pagination .page-numbers span:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}
.p-rating-pagination .page-numbers .current {
  background: #333;
  color: #fff;
  border-color: #333;
  font-weight: bold;
}
.p-rating-pagination .page-numbers .prev,
.p-rating-pagination .page-numbers .next {
  font-weight: bold;
}
.p-rating-pagination .page-numbers .dots {
  border: none;
  background: transparent;
  cursor: default;
}
.p-rating-pagination .page-numbers .dots:hover {
  background: transparent;
  color: #333;
  border-color: #ddd;
}
@media screen and (max-width: 767px) {
  .p-rating-pagination {
    margin: 1.875rem 0;
  }
  .p-rating-pagination .page-numbers {
    gap: 0.25rem;
  }
  .p-rating-pagination .page-numbers a,
  .p-rating-pagination .page-numbers span {
    padding: 0.375rem 0.75rem;
    min-width: 2.25rem;
    font-size: 0.875rem;
  }
}

.p-rating-simple-ranking__title {
  font-family: "Noto Sans JP";
  font-size: max(1.125rem, 17.1px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  color: #231815;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #ddd;
}
@media screen and (max-width: 767px) {
  .p-rating-simple-ranking__title {
    font-size: 1.125rem !important;
  }
}
.p-rating-simple-ranking__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-rating-simple-ranking__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dotted #ddd;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.p-rating-simple-ranking__item:last-child {
  border-bottom: none;
}
.p-rating-simple-ranking__item:hover {
  opacity: 0.7;
}
.p-rating-simple-ranking__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.p-rating-simple-ranking__link:hover {
  opacity: 0.8;
}
.p-rating-simple-ranking__rank {
  font-family: "Noto Sans JP";
  font-size: max(0.875rem, 13.3px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  color: #231815;
  margin-right: 0.75rem;
  min-width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-rating-simple-ranking__rank {
    font-size: 0.875rem !important;
  }
}
.p-rating-simple-ranking__name {
  font-family: "Noto Sans JP";
  font-size: max(0.875rem, 13.3px);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0em;
  color: #231815;
}
@media screen and (max-width: 767px) {
  .p-rating-simple-ranking__name {
    font-size: 0.875rem !important;
  }
}

.p-ng-feature {
  margin: 3.125rem 0;
}
.p-ng-feature .post_content ul {
  all: unset;
  display: block;
  padding: 0;
  margin: 0;
}
.p-ng-feature__list {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__list {
    max-width: 600px;
    margin-inline: auto !important;
  }
}
.p-ng-feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__item {
    width: 100%;
  }
}
.p-ng-feature__title {
  font-family: "Noto Sans JP" !important;
  font-size: max(1.375rem, 20.9px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  font-size: max(1.375rem, 15.5px) !important;
  font-weight: 700 !important;
  line-height: 150% !important;
  letter-spacing: 0 !important;
  border: 2px solid #F36060;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__title {
    font-size: 1.375rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-ng-feature__title {
    font-size: clamp(0.875rem, calc(0.7857142857rem + 0.4464285714vw), 1rem) !important;
  }
}
.p-ng-feature__title::before {
  display: none !important;
}
.p-ng-feature__label {
  color: #fff;
  display: block;
  background: #F36060;
  padding: 0.875rem 1.375rem;
  width: 13.3125rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__label {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 0.875rem 0.5rem !important;
  }
}
.p-ng-feature__desc {
  color: #F36060;
  background: #FFF;
  padding: 0.875rem 1.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__desc {
    padding: 0.875rem 0.5rem !important;
  }
}
.p-ng-feature__content {
  border-left: 2px solid #F36060;
  border-right: 2px solid #F36060;
  border-bottom: 2px solid #F36060;
  padding: 1.5rem 1.375rem;
  width: 100%;
  background: #FFF5F0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.p-ng-feature__content-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: 79.1463414634%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__content-main {
    width: 100%;
  }
}
.p-ng-feature__icon {
  width: 7.5rem;
  height: auto;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-ng-feature__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-ng-feature__text {
  font-family: "Noto Sans JP";
  color: #231815;
  font-size: max(1.125rem, 17.1px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__text {
    font-size: 1.125rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-ng-feature__text {
    font-size: max(0.875rem, 13.3px);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-ng-feature__text {
    font-size: 0.875rem !important;
  }
}
.p-ng-feature__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #FFF;
}
.p-ng-feature__point-label {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: max(1.125rem, 17.1px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
  background: #FAB9B6;
  padding-block: 0.25rem;
  text-align: center;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__point-label {
    font-size: 1.125rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-ng-feature__point-label {
    font-size: max(1rem, 15.2px);
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-ng-feature__point-label {
    font-size: 1rem !important;
  }
}
.p-ng-feature__point-text-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 0.5rem;
  padding-left: 0 !important;
  padding-inline: 0.5rem !important;
}
.p-ng-feature__point-text {
  color: #231815;
  font-family: "Noto Sans JP";
  font-size: max(1.125rem, 17.1px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-ng-feature__point-text {
    font-size: 1.125rem !important;
  }
}
@media screen and (max-width: 767px) {
  .p-ng-feature__point-text {
    font-size: clamp(0.875rem, calc(0.7857142857rem + 0.4464285714vw), 1rem) !important;
  }
}
.p-ng-feature .check-red {
  color: #E10011;
  font-family: "Noto Sans JP";
  font-size: max(1.25rem, 19px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  -webkit-padding-end: 1.5rem;
          padding-inline-end: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-ng-feature .check-red {
    font-size: 1.25rem !important;
  }
}

.section__title-h2 {
  position: relative;
  width: 100%;
  margin-inline: auto !important;
  padding-block: 16px !important;
  font-size: clamp(20px, calc(16px + 0.4166666667vw), 22px) !important;
  text-align: left !important;
}
@media screen and (max-width:959px) {
  .section__title-h2 {
    font-size: clamp(16px, calc(13.4315068493px + 0.6849315068vw), 20px) !important;
  }
}
.section__title-h2::before {
  border-top: solid 2px #EDF5FF !important;
  border-bottom: solid 2px #EDF5FF !important;
  height: calc(100% - 15px) !important;
  top: 6px !important;
}
.section__title-h2::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0.3125rem;
  width: 4.375rem;
  min-width: 70px;
  height: auto;
  aspect-ratio: 1;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}

.section__title-rankS {
  -webkit-padding-start: clamp(7.5rem, calc(10rem + -4.1666666667vw), 6.25rem) !important;
          padding-inline-start: clamp(7.5rem, calc(10rem + -4.1666666667vw), 6.25rem) !important;
}
@media screen and (max-width:959px) {
  .section__title-rankS {
    -webkit-padding-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
            padding-inline-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
  }
}
@media screen and (max-width: 767px) {
  .section__title-rankS {
    -webkit-padding-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
            padding-inline-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
  }
}
.section__title-rankS::after {
  background-image: url(../../assets/img/shiba-ojisan-s.webp);
}
.section__title-rankA {
  -webkit-padding-start: 7.5rem !important;
          padding-inline-start: 7.5rem !important;
}
@media screen and (max-width:959px) {
  .section__title-rankA {
    -webkit-padding-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
            padding-inline-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
  }
}
@media screen and (max-width: 767px) {
  .section__title-rankA {
    -webkit-padding-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
            padding-inline-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
  }
}
.section__title-rankA::after {
  background-image: url(../../assets/img/shiba-ojisan-a.webp);
}
.section__title-Area {
  -webkit-padding-start: 7.5rem !important;
          padding-inline-start: 7.5rem !important;
}
@media screen and (max-width:959px) {
  .section__title-Area {
    -webkit-padding-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
            padding-inline-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
  }
}
@media screen and (max-width: 767px) {
  .section__title-Area {
    -webkit-padding-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
            padding-inline-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
  }
}
.section__title-Area::after {
  background-image: url(../../assets/img/shiba-ojisan-area.webp);
}
.section__title-rankB {
  -webkit-padding-start: 7.5rem !important;
          padding-inline-start: 7.5rem !important;
}
@media screen and (max-width:959px) {
  .section__title-rankB {
    -webkit-padding-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
            padding-inline-start: clamp(5.5rem, calc(-2.5418848168rem + 16.7539267016vw), 7.5rem) !important;
  }
}
@media screen and (max-width: 767px) {
  .section__title-rankB {
    -webkit-padding-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
            padding-inline-start: clamp(4.875rem, calc(3.559630102rem + 5.612244898vw), 6.25rem) !important;
  }
}
.section__title-rankB::after {
  background-image: url(../../assets/img/shiba-ojisan-b.webp);
}

.p-blogParts.post_content {
  text-align: left !important;
}

.section-h2 {
  padding-block: 1rem !important;
  padding-inline: 1.5rem !important;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: max(1.625rem, 24.7px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
  text-align: left;
  width: 100%;
  margin-inline: auto !important;
}
@media screen and (max-width: 767px) {
  .section-h2 {
    font-size: 1.625rem !important;
  }
}
@media screen and (max-width: 767px) {
  .section-h2 {
    padding-inline: 16px !important;
    padding-block: 16px !important;
    font-size: max(1.25rem, 19px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .section-h2 {
    font-size: 1.25rem !important;
  }
}

.mb-0 {
  -webkit-margin-after: 0 !important;
          margin-block-end: 0 !important;
}

.before-gray::before {
  background: -webkit-gradient(linear, left top, right top, from(#9B9B9B), color-stop(29.3%, #9B9B9B), color-stop(29.3%, rgba(150, 150, 150, 0.2)), to(rgba(150, 150, 150, 0.2))) !important;
  background: linear-gradient(90deg, #9B9B9B 0%, #9B9B9B 29.3%, rgba(150, 150, 150, 0.2) 29.3%, rgba(150, 150, 150, 0.2) 100%) !important;
}

.is-style-check_list {
  padding-block: 2rem !important;
  padding-inline: 1.5rem !important;
}

.check-square {
  list-style: none;
  padding-left: 1.2em;
}

.check-square li {
  position: relative;
}

.check-square li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.8em;
  color: #231815;
}

.captionbox-header span {
  font-size: max(1.5rem, 22.8px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .captionbox-header span {
    font-size: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .captionbox-header span {
    font-size: clamp(1rem, calc(0.6421755725rem + 1.5267175573vw), 1.375rem) !important;
  }
}

.captionbox-text {
  margin-inline: auto;
  padding-inline: clamp(2.75rem, calc(2.3921755725rem + 1.5267175573vw), 3.125rem) !important;
}
.captionbox-text span {
  font-size: max(1.25rem, 19px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .captionbox-text span {
    font-size: 1.25rem !important;
  }
}
@media screen and (max-width: 767px) {
  .captionbox-text span {
    font-size: clamp(1rem, calc(0.7614503817rem + 1.0178117048vw), 1.25rem) !important;
  }
}

.cap_box_content {
  padding: clamp(0.875rem, 0.324rem + 1.47vw, 1.5rem) !important;
  padding: clamp(0.375rem, calc(0.1364503817rem + 1.0178117048vw), 0.625rem) !important;
}

@media screen and (max-width: 959px) {
  .promise-wrapp {
    max-width: 450px !important;
    margin-inline: auto;
  }
}

.promise-box01 {
  position: relative;
  padding-block: 3rem;
  padding-inline: 1rem;
  border: 2px solid #078943 !important;
  background: #FFF !important;
}
.promise-box01::before {
  content: "約束その1";
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: "Noto Sans JP";
  color: #FFF;
  font-size: max(1rem, 15.2px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
  background: #078943;
  padding-block: 0.25rem;
  padding-inline: 1rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .promise-box01::before {
    font-size: 1rem !important;
  }
}
.promise-box01 .swell-block-box-menu__link {
  padding: 0 !important;
}

.promise-box02 {
  position: relative;
  padding-block: 3rem;
  padding-inline: 1rem;
  border: 2px solid #078943 !important;
  background: #FFF !important;
}
.promise-box02::before {
  content: "約束その2";
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: "Noto Sans JP";
  color: #FFF;
  font-size: max(1rem, 15.2px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
  background: #078943;
  padding-block: 0.25rem;
  padding-inline: 1rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .promise-box02::before {
    font-size: 1rem !important;
  }
}

.promise-box03 {
  position: relative;
  padding-block: 3rem;
  padding-inline: 1rem;
  border: 2px solid #078943 !important;
  background: #FFF !important;
}
.promise-box03::before {
  content: "約束その3";
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: "Noto Sans JP";
  color: #FFF;
  font-size: max(1rem, 15.2px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
  background: #078943;
  padding-block: 0.25rem;
  padding-inline: 1rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .promise-box03::before {
    font-size: 1rem !important;
  }
}

.post_content h4 {
  border-left: none !important;
  margin: 3em 0 3em 0 !important;
}

.green-check {
  position: relative;
  -webkit-padding-start: 2.5rem !important;
          padding-inline-start: 2.5rem !important;
  font-weight: 500 !important;
}
.green-check::before {
  content: "";
  position: absolute;
  top: -3%;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url(../../assets/img/green_check-bold.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .green-check::before {
    top: 4%;
  }
}

.column-link .p-blogCard__inner {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
  padding: 1rem 1.5rem !important;
}
@media screen and (max-width: 767px) {
  .column-link .p-blogCard__inner {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    margin-inline: auto;
    max-width: 500px;
  }
}
.column-link .p-blogCard__inner:before {
  border-radius: 0 2px 2px 2px !important;
  border: 1px solid #078943 !important;
  background: #F3F9F6 !important;
}
.column-link .p-blogCard__caption {
  border-radius: 2px 2px 0 0 !important;
  background: #078943 !important;
  padding: 2px 16px 3px 16px !important;
  color: #FFF !important;
  top: -28px !important;
  left: 0 !important;
  font-size: max(1rem, 15.2px);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .column-link .p-blogCard__caption {
    font-size: 1rem !important;
  }
}
.column-link .p-blogCard__caption:before {
  display: none !important;
}
.column-link .p-blogCard__thumb {
  margin: 0 0 0 1em !important;
  width: 31.0880829016% !important;
}
@media screen and (max-width: 767px) {
  .column-link .p-blogCard__thumb {
    width: 100% !important;
    margin: 0 0 0.5em 0 !important;
  }
}
.column-link .p-blogCard__title {
  text-decoration: underline !important;
  position: relative;
  z-index: 1;
}
.column-link .p-blogCard__date {
  font-size: clamp(0.75rem, calc(0.6607142857rem + 0.4464285714vw), 0.875rem) !important;
}
.column-link .p-blogCard__text {
  font-size: clamp(0.875rem, calc(0.7857142857rem + 0.4464285714vw), 1rem) !important;
}

@media screen and (max-width: 959px) {
  .p-blogCard__excerpt {
    display: block !important;
  }
}

.c-postThumb__cat {
  background-image: none;
  font-size: max(0.6875rem, 10.45px);
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0em;
  border-radius: 16px;
  padding: 0 7.561px 0 8px;
  top: 0.375rem;
  right: 0.375rem;
}
@media screen and (max-width: 767px) {
  .c-postThumb__cat {
    font-size: 0.6875rem !important;
  }
}

.new-articles .is-style-more_btn {
  border-radius: 40px;
  background: #E17400;
  -webkit-box-shadow: 0 0 0 1px #DCDCDC;
          box-shadow: 0 0 0 1px #DCDCDC;
  width: 29.25rem;
}
@media screen and (max-width: 767px) {
  .new-articles .is-style-more_btn {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
}
.new-articles .is-style-more_btn a {
  background: #E17400;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
  font-size: 14.4px;
  font-size: max(0.9rem, 13.68px);
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .new-articles .is-style-more_btn a {
    font-size: 0.9rem !important;
  }
}
.new-articles .is-style-more_btn a::after {
  right: -3.125rem;
}
@media screen and (max-width: 767px) {
  .new-articles .is-style-more_btn a::after {
    right: 0;
  }
}

.ng-box-sp {
  max-width: 450px !important;
  margin-inline: auto;
}

.sample-sheet-header {
  font-size: max(1.5rem, 22.8px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .sample-sheet-header {
    font-size: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .sample-sheet-header {
    font-size: max(1.125rem, 17.1px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .sample-sheet-header {
    font-size: 1.125rem !important;
  }
}

.button-orange .swell-block-button__link {
  /* ボタンのドロップシャドウ */
  -webkit-box-shadow: 0 3px 0 0 #CC2A31 !important;
          box-shadow: 0 3px 0 0 #CC2A31 !important;
}

.background-green .swell-block-button__link {
  background: #078943 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: 1px solid #078943 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.background-green .swell-block-button__link::after {
  display: none !important;
}
.background-green .swell-block-button__link:hover {
  background: #ffffff !important;
  color: #078943 !important;
}

.text-green .swell-block-button__link {
  background: #ffffff !important;
  color: #078943 !important;
  font-weight: 700 !important;
  border: 1px solid #078943 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.text-green .swell-block-button__link::after {
  display: none !important;
}
.text-green .swell-block-button__link:hover {
  background: #078943 !important;
  color: #ffffff !important;
}

@media screen and (max-width: 767px) {
  .l-sidebar {
    padding-inline: 1rem !important;
  }
}

@media screen and (max-width:959px) {
  .p-mainVisual__inner {
    max-width: 726px;
    width: 100%;
    margin-inline: auto;
  }
}

.sp_only {
  max-width: 500px;
  margin-inline: auto;
}

.text-underline-blue span {
  text-decoration: underline;
  color: #0064D4;
}

.p-breadcrumb {
  -webkit-margin-before: 72px !important;
          margin-block-start: 72px !important;
}
@media screen and (max-width:959px) {
  .p-breadcrumb {
    -webkit-margin-before: 48px !important;
            margin-block-start: 48px !important;
  }
}

.about-box td, .about-box th {
  border: 2px solid #A9A9A9 !important; /* 太さと色 */
}

.merit-box .cap_box_ttl {
  border-radius: 8px;
  background: #078943;
}
.merit-box .cap_box_content {
  border: none !important;
}
.merit-box .wp-block-list {
  -webkit-padding-before: 12px !important;
          padding-block-start: 12px !important;
}

.demerit-box .cap_box_ttl {
  border-radius: 8px;
  background: #F36060;
}
.demerit-box .cap_box_content {
  border: none !important;
}
.demerit-box .wp-block-list {
  -webkit-padding-before: 12px !important;
          padding-block-start: 12px !important;
}

.box-green .cap_box_ttl {
  background: #078943;
}
.box-green .cap_box_content {
  border: 1px solid #078943 !important;
}

.good-box .cap_box_ttl {
  background: #078943;
}
.good-box .cap_box_content {
  border: 1px solid #078943 !important;
  background: #F3F9F6 !important;
}

.bad-box .cap_box_ttl {
  background: #F36060;
}
.bad-box .cap_box_content {
  border: 1px solid #F36060 !important;
  background: #FFF5F0 !important;
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-font {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__jp {
  font-family: "Noto Sans JP", sans-serif;
}
.u-font__en {
  font-family: "Barlow Condensed", sans-serif;
}

.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media screen and (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}