@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

/* ------------------------------------------
   common
------------------------------------------ */
main > * {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.l-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
}
.l-section {
  padding: 50px 0;
}
a {
  display: block;
}
a[target="_blank"]:not([class^="btn-"])::after {
  display: none;
}
a:hover {
  text-decoration: none;
}
.c-title {
  color: #18a273;
  text-align: center;
  margin-bottom: 20px;
}
.c-title--lv2 {
  font-size: 34px;
  margin-bottom: 20px;
}
.c-title--lv3 {
  color: #000;
  margin-bottom: 20px;
}
.c-text {
  line-height: 1.6;
}
.u-text-center {
  text-align: center;
}
.c-attention {
  font-size: 14px;
  color: #535353;
  line-height: 1.4;
  margin-top: 20px;
}
.u-text-small {
  font-size: 14px;
  line-height: 1.4;
}
.u-sp-block {
  display: none;
}
.u-grid {
  display: grid;
  gap: 30px 3%;
}
.c-text + .u-grid {
  margin: 40px 0;
}
.u-grid--col2 {
  grid-template-columns: repeat(2, 1fr);
}
.u-grid--col3 {
  grid-template-columns: repeat(3, 1fr);
}
.u-grid--col2-1 {
  grid-template-columns: 2fr 1fr;
}
/* c-area-btn
-------------------------------------- */
.c-area-btn {
  border-radius: 40px;
  font-weight: 700;
  padding: 20px 25px 20px 20px;
  font-size: 16px;
  border: 1px solid #c9caca;
  background: #fff;
  max-width: 280px;
  width: 100%;
  box-shadow: 3px 7px 5px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.5s ease;
  cursor: pointer;
  color: #000;
}
.c-area-btn span::before,
.c-area-btn span::after {
  content: "";
  width: 18px;
  height: 3px;
  background: #18a273;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: background 0.5s ease;
}
.c-area-btn span::after {
  transform: translateY(-50%) rotate(90deg);
}
@media (hover: hover) {
  .c-area-btn:hover {
    background: #18a273;
    border: 1px solid #18a273;
    color: #fff;
  }
  .c-area-btn:hover span::before,
  .c-area-btn:hover span::after {
    background: #fff;
  }
}
p + .c-area-btn {
  margin-top: 20px;
}
/* c-link
-------------------------------------- */
p + .c-link-block {
  margin-top: 30px;
}
.c-link-text {
  color: #18a273;
  display: inline-block;
  background-image: linear-gradient(to right, #18a273 50%, transparent 50%);
  background-size: 5px 1.5px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 8px;
  transition: opacity 0.5s ease;
}
.c-link-text:visited {
  color: #18a273;
}
.c-link-text:hover {
  opacity: 0.6;
}

/* c-link-circle
-------------------------------------- */
.c-link-circle li {
  position: relative;
  padding-left: 15px;
  line-height: 1.4;
}
.c-link-circle li + li {
  margin-top: 10px;
}
.c-link-circle li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18a273;
  position: absolute;
  top: 9px;
  left: 0;
}

/* ------------------------------------------
   header
------------------------------------------ */
#header {
  padding: 10px 0;
  border-bottom: none;
  height: auto;
  position: static;
}
.hdr-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
.hdr__shoulder {
  font-size: 10px;
  line-height: 1.2;
}
.hdr__logo {
  margin-top: 5px;
}
.hdr__logo img {
  max-width: clamp(105px, 25vw, 200px);
}
/* hdr__link 
-------------------------------------- */
.hdr__link {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 10px;
}
.hdr__link-area {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 5px;
  justify-content: end;
  align-items: stretch;
}
.hdr__link a {
  padding: 6px;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 3px;
  transition: opacity 0.5s ease;
}
.hdr__link a[target="_blank"]::after {
  content: none;
}
.hdr__link .hdr__text {
  color: #fff;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 900;
  line-height: 1.1;
}
.hdr__link .hdr__text span {
  display: block;
  font-size: clamp(15px, 2vw, 20px);
}
.hdr__link-icon {
  max-width: clamp(23px, 3vw, 30px);
  max-height: clamp(18px, 2vw, 23px);
  object-fit: contain;
}
/* hdr__link--tre */
.hdr__link--tre {
  margin-right: 15px;
  border: 1px solid #c9caca;
}
.hdr__link--tre a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  padding: 6px 15px;
}
.hdr__link--tre img {
  max-width: clamp(114px, 30vw, 178px);
}
.hdr__link--tre .hdr__text {
  font-size: clamp(9px, 2vw, 13px);
  color: #595959;
  text-align: left;
  line-height: 1.4;
  font-weight: 400;
}
/* hdr__link--tel */
.hdr__link--tel {
  background: #ffd621;
}
.hdr__link p {
  color: #000;
}
.hdr__link--tel .hdr__text {
  font-size: 9px;
  font-weight: 900;
  color: #000;
}
.hdr__link--tel .hdr__number {
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 900;
  font-family: "Bebas Neue", sans-serif;
}
.hdr__link--tel .hdr__time {
  font-size: clamp(7px, 2vw, 9px);
}
/* hdr__link--web */
.hdr__link--web {
  background: linear-gradient(204.04deg, #b71108 2.24%, #da1e14 84.57%);
  color: #fff;
}
/* hdr__link--line */
.hdr__link--line {
  background: linear-gradient(225.94deg, #108212 9.27%, #3eb540 89.3%);
  color: #fff;
}
@media (hover: hover) {
  .hdr__link a:hover {
    opacity: 0.7;
  }
}
/* ------------------------------------------
   p-floating
------------------------------------------ */
.p-floating {
  position: fixed;
  bottom: 0;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 240px);
  align-items: center;
  justify-content: center;
  z-index: 999;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  transition: all 0.3s ease;
}
.p-floating.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.p-floating .hdr__link {
  box-shadow: 5px 5px 0px 0px #ccc;
  height: 100%;
  border-radius: 10px 10px 0 0;
}
.p-floating .hdr__link a {
  width: 100%;
}
.p-floating .hdr__link--web a {
  flex-direction: row;
}
.p-floating .hdr__link--line a {
  flex-direction: row;
}
.p-floating .hdr__link .hdr__text span {
  display: inline;
}
.p-floating .hdr__link-icon {
  width: auto;
  height: 35%;
  max-width: none;
  max-height: none;
  margin-right: 5px;
}
.p-floating .hdr__link--line .hdr__link-icon {
  height: 40%;
}
.p-floating .hdr__link .hdr__text {
  font-size: clamp(14px, 2vw, 16px);
}
.p-floating .hdr__link .hdr__text span {
  font-size: clamp(20px, 20vw, 28px);
}
.p-floating .hdr__text-accent {
  color: #fff;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
}
.p-floating .hdr__text-accent::after {
  display: none;
}
.hdr__link-inner {
  display: flex;
  align-items: center;
}

/* ------------------------------------------
   footer
------------------------------------------ */
#ftr-pagetop a {
  transition: opacity 0.3s;
}
#ftr-pagetop a:hover {
  opacity: 0.7;
}

/* ------------------------------------------
   p-mv
------------------------------------------ */
.p-mv {
  position: relative;
}
/* p-mv__content
-------------------------------------- */
.p-mv__content {
  background: url(../img/mv-bg.jpg);
  background-size: contain;
  background-repeat: repeat-x;
  height: 100%;
  background-position: 50% 100%;
}
@media (min-width: 1441px) {
  .p-mv__content {
    background-size: contain;
  }
}
.p-mv__content .l-container {
  position: relative;
  padding: 0 3% 70px;
}
.p-mv__title {
  position: relative;
  top: 67px;
  right: 0;
  max-width: 1200px;
  width: 103%;
}
.p-mv__subtitle {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 16px 12px 16px;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 600;
}
.p-mv__subtitle span {
  font-size: clamp(18px, 2vw, 26px);
}
.p-mv__comment {
  position: absolute;
  top: 30px;
  transform: rotate(-4deg);
  display: inline-block;
  padding: 10px 1.5%;
  border: 3px solid #000;
  border-radius: 99px;
  background-color: #fff;
  text-align: left;
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 900;
  color: #000;
  display: flex;
  align-items: center;
}
.p-mv__comment span {
  font-size: clamp(18px, 2vw, 22px);
}
.p-mv__comment::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 0 0 20px;
  border-color: #000 transparent transparent;
  translate: -50% 100%;
  transform: skew(-13deg);
  transform-origin: top;
}
.p-mv__comment::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 12.8px 0 0 13.8px;
  border-color: #fff transparent transparent;
  translate: calc(-50% + 0.6px) 100%;
  transform: skew(-8deg);
  transform-origin: top;
}
.p-mv__lead {
  position: absolute;
  bottom: clamp(15%, 8vw, 22%);
}
.p-mv__lead p {
  font-size: clamp(12px, 1.6vw, 19px);
  font-weight: 700;
  padding-bottom: 10px;
  display: inline-block;
  margin-top: 13px;
  background-image: linear-gradient(to right, #000 50%, transparent 50%);
  background-size: 8px 1.8px;
  background-repeat: repeat-x;
  background-position: bottom;
}
.p-mv__lead-number {
  color: #18a273;
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(33px, 4vw, 50px);
  line-height: 0;
  position: relative;
  top: 2px;
  padding: 0 5px;
}
.p-mv__lead-number::before,
.p-mv__lead-number::after {
  content: "";
  background: url(../img/mv-lead.png) no-repeat;
  background-size: contain;
  width: 10px;
  height: 16px;
  position: absolute;
  top: 0px;
  right: -5px;
}
.p-mv__lead-number::after {
  right: auto;
  left: -5px;
  transform: scaleX(-1);
}
/* p-mv__features
-------------------------------------- */
.p-mv__features {
  background: linear-gradient(92.15deg, #18a273 7.52%, #1c7054 97.75%);
  margin-top: -3px;
  position: relative;
  height: 250px;
}
.p-mv__features .u-grid--col3-1 {
  display: grid;
  grid-template-columns: 1fr 22%;
  position: absolute;
  top: calc(-8% - 2vw);
  gap: 3%;
  width: 94%;
  max-width: 1100px;
  align-items: start;
}
.p-mv__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
}
.p-mv__item {
  background: linear-gradient(180deg, #f12400 0%, #b02c15 100%);
  border: 3px solid #fff;
  border-radius: 20px;
  text-align: center;
  position: relative;
  display: grid;
  align-items: center;
  padding: 40px 7px 15px;
  grid-template-rows: auto 1fr;
  gap: 5px;
}
.p-mv__check {
  width: clamp(40px, 5vw, 53px);
  position: absolute;
  top: -9%;
  left: 50%;
  transform: translateX(-50%);
}
.p-mv__list-title {
  font-size: clamp(22px, 2.5vw, 32px);
  color: #fff127;
  font-weight: 900;
  text-shadow:
    -3px -3px 0 #da2708,
    3px -3px 0 #da2708,
    -3px 3px 0 #da2708,
    3px 3px 0 #da2708;
}
.p-mv__list-title span {
  font-size: clamp(30px, 4vw, 50px);
  color: #fff127;
  font-weight: 900;
  display: block;
  text-shadow:
    -3px -3px 0 #da2708,
    3px -3px 0 #da2708,
    -3px 3px 0 #da2708,
    3px 3px 0 #da2708;
}
.p-mv__list-text {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}
.p-mv__item:nth-child(3) .p-mv__list-title span {
  display: inline;
  font-size: clamp(30px, 4vw, 46px);
  position: relative;
  top: 0;
}
/* p-mv__achievements
-------------------------------------- */
.p-mv__achievements {
  width: clamp(200px, 20vw, 240px);
  position: relative;
  top: 50px;
  right: 30px;
}
/* p-mv__features-area
-------------------------------------- */
.p-mv__features-area {
  max-width: 750px;
  margin: 0 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 278px;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.p-mv__features-area-text {
  color: #fff;
  line-height: 1.6;
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 16px);
}
.p-mv__features-area .c-area-btn {
  margin-top: 0;
}
/* p-mv__modal
-------------------------------------- */
.p-mv__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0s linear 0.5s;
}
.p-mv__modal.is-open {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.5s ease,
    visibility 0s;
  z-index: 999;
}
.p-mv__modal-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}
.p-mv__modal-content {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 50px 15px 50px 35px;
  border-radius: 20px;
  z-index: 9999;
  height: 80vh;
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 1100px;
  width: 85%;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.p-mv__modal.is-open .p-mv__modal-content {
  opacity: 1;
}
.p-mv__modal-inner {
  overflow-y: auto;
  flex: 1;
  scrollbar-gutter: stable;
  padding-right: 20px;
}
.modal__close {
  border: none;
  position: absolute;
  top: -60px;
  right: -50px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.5s ease;
  cursor: pointer;
}
.modal__close::before,
.modal__close::after {
  content: "";
  width: 35px;
  height: 4px;
  background: #18a273;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background 0.5s ease;
}
.modal__close::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
@media (hover: hover) {
  .modal__close:hover {
    background: #18a273;
  }
  .modal__close:hover::before,
  .modal__close:hover::after {
    background: #fff;
  }
}
.p-mv__modal-content .c-title--lv2 {
  border-bottom: 3px solid #18a273;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.p-mv__area-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
}
.p-mv__area-list {
  margin: 50px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px 3%;
}
.p-mv__modal-text {
  line-height: 1.6;
}
.p-mv__area-title {
  background: #18a273;
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
}
.p-mv__area-image {
  margin: 15px auto;
  width: 100%;
  height: 350px;
  object-fit: contain;
}
.p-mv__area-text {
  line-height: 1.6;
}
.modal__close-bottom {
  grid-column: 1 / -1;
  max-width: 290px;
  background: #fff;
  border: 1px solid #c9caca;
  padding: 15px 0;
  border-radius: 30px;
  color: #000;
  position: relative;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 4px 4px 0px 0px #0000000d;
  transition: all 0.5s ease;
  position: relative;
  cursor: pointer;
}
.modal__close-bottom::before,
.modal__close-bottom::after {
  content: "";
  width: 23px;
  height: 3px;
  background: #18a273;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background 0.5s ease;
}
.modal__close-bottom::after {
  transform: translate(-50%, -50%) rotate(135deg);
}
.p-mv__modal-scroll {
  display: none;
}
@media (hover: hover) {
  .modal__close-bottom:hover {
    background: #18a273;
    color: #fff;
  }
  .modal__close-bottom:hover::before,
  .modal__close-bottom:hover::after {
    background: #fff;
  }
}
/* ------------------------------------------
   p-results
------------------------------------------ */
/* swiper
-------------------------------------- */
.swiper {
  margin: 30px 0;
}
.swiper-container {
  position: relative;
}
.swiper-wrapper {
  margin-bottom: 35px;
}
.swiper-button-prev,
.swiper-button-next {
  width: 47px;
  height: 47px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.5s ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}
.swiper-navigation-icon {
  display: none;
}
.swiper-button-prev {
  background-image: url("../img/swiper-arrow.svg");
  position: absolute;
  left: -50px !important;
}
.swiper-button-next {
  background-image: url("../img/swiper-arrow.svg");
  transform: scale(-1);
  position: absolute;
  right: -50px !important;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}
.swiper-pagination-bullet-active {
  background: #18a273;
}
/* ------------------------------------------
   p-reason
------------------------------------------ */
.p-reason {
  background: #fffbe2;
  position: relative;
  padding-bottom: 100px;
}
.p-reason::before {
  content: "";
  width: 100%;
  height: 80px;
  background: #fffbe2;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -1;
}
.p-reason__content {
  background: #fff;
  padding: 60px 4%;
  position: relative;
  margin-top: 40px;
}
.p-reason__label {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  background: #18a273;
  padding: 10px 20px;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
}
.p-reason__content .c-title--lv3,
.p-reason__content .c-text {
  text-align: left;
}
.p-reason__content .c-title--lv3 {
  font-size: 26px;
  color: #000;
  font-weight: 700;
}
.p-reason__content .c-title--lv4 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-align: left;
  margin-bottom: 15px;
}
.p-reason__content .u-grid--col2-1 {
  grid-template-columns: 1fr clamp(260px, 30vw, 400px);
  gap: 5%;
}
/* ------------------------------------------
   p-inquiry
------------------------------------------ */
.p-inquiry {
  background: #ffd621;
  position: relative;
  text-align: center;
  margin-top: 100px;
}
.p-inquiry::before {
  content: "";
  background: url(../img/inquiry-deco.png);
  background-repeat: repeat-x;
  width: 100%;
  height: 32px;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-size: auto 100%;
  background-position: left bottom;
}
.p-inquiry__comment {
  position: relative;
  padding: 16px;
  border: 2px solid #000;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
  max-width: 770px;
  margin: 0 auto;
  height: 73px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-inquiry__comment::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 20px 0 20px;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
}
.p-inquiry__comment::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 17.2px 17.2px 0 17.2px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
.p-inquiry__comment-image {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: clamp(120px, 10vw, 148px);
}
.p-inquiry__comment-text {
  padding-left: 13%;
  font-size: 18px;
  font-weight: 700;
}
.p-inquiry__comment-text span {
  color: #da1e14;
}
.p-inquiry__tel {
  text-align: center;
  margin: 30px 0;
}
.p-inquiry__tel-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #000;
}
.p-inquiry__tel-number a {
  color: #000 !important;
  display: inline-block;
}
.p-inquiry__tel-text {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: -0.5px;
}
.p-inquiry__button {
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  margin: 20px 0;
}
.p-inquiry__button-item a {
  font-size: 24px;
  font-weight: 900;
  padding: 20px 20px;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  transition: all 0.5s ease;
}
.p-inquiry__button-item--web a,
.p-inquiry__button-item--web a:visited {
  color: #da1e14;
  border: 4px solid #da1e14;
}
.p-inquiry__button-item--line a,
.p-inquiry__button-item--line a:visited {
  color: #3eb540;
  border: 4px solid #3eb540;
}
.p-inquiry__button-icon {
  position: absolute;
  left: 30px;
  width: clamp(35px, 4vw, 43px);
  height: clamp(35px, 4vw, 43px);
  object-fit: contain;
  transition: filter 0.5s ease;
}
.p-inquiry__button-item a::before {
  content: "";
  position: absolute;
  right: 30px;
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  transition: border 0.5s ease;
}
.p-inquiry__button-item--web a::before {
  border-top: 3px solid #da1e14;
  border-right: 3px solid #da1e14;
}
.p-inquiry__button-item--line a::before {
  border-top: 3px solid #3eb540;
  border-right: 3px solid #3eb540;
}
@media (hover: hover) {
  .p-inquiry__button-item--web a:hover {
    background: #da1e14;
    color: #fff;
  }
  .p-inquiry__button-item--web a:hover::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .p-inquiry__button-item--line a:hover {
    background: #3eb540;
    color: #fff;
  }
  .p-inquiry__button-item--line a:hover::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
  .p-inquiry__button-item a:hover .p-inquiry__button-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(17%)
      hue-rotate(122deg) brightness(107%) contrast(105%);
  }
}
.p-inquiry .c-area-btn {
  max-width: 540px;
  margin: 0 auto 30px;
  display: block;
}
/* ------------------------------------------
   p-voice
------------------------------------------ */
.p-voice {
  margin-top: 0;
}
.p-voice__list-item {
  position: relative;
  display: inline-block;
  padding: 20px;
  border-radius: 30px;
  line-height: 1.6;
}
.p-voice__list-item--blue {
  background-color: #e8f7fc;
}
.p-voice__list-item--blue::after {
  border-color: #e8f7fc transparent transparent;
}
.p-voice__list-item--yellow {
  background-color: #fffbe2;
}
.p-voice__list-item--yellow::after {
  border-color: #fffbe2 transparent transparent;
}
.p-voice__list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 16px 20px 0 0;
  translate: calc(-50% - 0.6px) 100%;
}
.p-voice__list-item:nth-child(odd)::after {
  transform: skew(60deg);
  transform-origin: top;
}
.p-voice__list-item:nth-child(even)::after {
  transform: skew(-29deg);
  transform-origin: top;
}
.p-voice__list {
  gap: 30px;
}
.p-voice-profile {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
}
.p-voice-name {
  font-size: 14px;
}
.p-voice-text__accent {
  background: linear-gradient(transparent 60%, #ffe500 60%);
  font-weight: 700;
}
/* ------------------------------------------
   p-flow
------------------------------------------ */
.p-flow {
  background: #18a273;
  position: relative;
  padding-bottom: 100px;
}
.p-flow::before {
  content: "";
  width: 100%;
  height: 80px;
  background: #18a273;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -1;
}
.p-flow .c-title--lv2 {
  color: #fff;
}
.p-flow__step {
  margin-top: 60px;
}
.p-flow__step-item {
  background: #fff;
  border-radius: 20px;
  padding: 50px 5%;
  position: relative;
}
.p-flow__step-item .c-attention {
  color: #000;
}
.p-flow__label {
  font-size: 30px;
  color: #fff;
  display: inline-block;
  background: #a5da33;
  padding: 8px 30px;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 4px;
  width: 230px;
}
.p-flow__step .c-title--lv3 {
  font-size: 26px;
  color: #000;
  text-align: left;
}
.p-flow__step .c-text {
  text-align: left;
}
.p-flow__step-item + .p-flow__step-item {
  margin-top: 40px;
}
/* ------------------------------------------
   p-recycle
------------------------------------------ */
.p-recycle {
  margin: 0;
}
.p-recycle__flow {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.p-recycle__flow-item {
  background: #ebf9ea;
  padding: 20px 5%;
  border-radius: 20px;
  position: relative;
}
.p-recycle__flow-item .c-title--lv3 {
  font-size: clamp(18px, 2vw, 20px);
  color: #000;
  margin-bottom: 0;
  text-align: left;
}
.p-recycle__flow-image {
  margin: 10px 0;
}
.p-recycle__flow-item p {
  line-height: 1.4;
  font-size: 14px;
}
.p-recycle__flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  right: -43px;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
  border: 20px solid transparent;
  border-left: 15px solid #18a273;
}
/* ------------------------------------------
   p-factory
------------------------------------------ */
.p-factory {
  background: url(../img/factory-bg.jpg) no-repeat;
  background-size: cover;
  margin: 0;
}
.p-factory .c-title--lv2 {
  color: #000;
}
.p-factory__list {
  margin-top: 46px;
}
.p-factory__list-item {
  background: #fff;
  border-radius: 10px;
  padding: 30px 5%;
}
.p-factory__list-item .c-title--lv3 {
  font-size: 20px;
  color: #000;
  text-align: left;
  margin: 0;
}
.p-factory__list-image {
  margin: 20px 0;
}
.p-factory__list-item p {
  line-height: 1.4;
}
.p-factory__list-item p + p {
  margin-top: 15px;
}
.p-factory__list-item p span {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.p-factory__list-item .c-link-block {
  margin-top: 30px;
}
/* ------------------------------------------
   p-parts
------------------------------------------ */
.p-parts {
  text-align: center;
  margin-top: 0;
}
.u-comment-slash {
  display: inline-block;
  position: relative;
}
.u-comment-slash::before,
.u-comment-slash::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #000;
  position: absolute;
  transform: rotate(55deg);
  top: 15px;
  left: -40px;
}
.u-comment-slash::after {
  transform: rotate(125deg) scaleX(-1);
  left: auto;
}
.c-link-button {
  padding: 15px 20px;
  text-align: center;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  color: #000;
  border: 1px solid #18a273;
  transition: all 0.5s ease;
  line-height: 1.4;
}
.c-link-button:visited {
  color: #000;
}
.c-link-button::before {
  content: "";
  position: absolute;
  right: 30px;
  width: 11px;
  height: 11px;
  border-top: 3px solid #18a273;
  border-right: 3px solid #18a273;
  transform: rotate(45deg);
  transition: border 0.5s ease;
}
@media (hover: hover) {
  .c-link-button:hover {
    background: #18a273;
    color: #fff;
  }
  .c-link-button:hover::before {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
  }
}
/* ------------------------------------------
   p-about
------------------------------------------ */
.p-about {
  margin: 0 0 -50px;
}
.p-about .c-title--lv3 {
  font-size: 30px;
}
.c-text + .u-grid.p-about__list {
  margin-top: 80px;
  gap: 5%;
}
.p-about__list-item {
  position: relative;
}
.p-about__list-label {
  background: #a5da33;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  line-height: 1.2;
  font-size: 14px;
  font-weight: 700;
  box-sizing: border-box;
  position: absolute;
  top: -50px;
  left: -30px;
}
.p-about__list-title {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 10px;
}
.p-about .p-button__list {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 750px;
  margin: 0 auto;
}
.p-about .c-link-button {
  height: 100%;
}
.p-about__tre {
  margin-top: 80px;
  display: flex;
  gap: 5%;
  align-items: center;
}
.p-about__tre p {
  color: #535353;
}

/* ============================================
   TB
============================================ */
@media (max-width: 1023px) {
  /* ------------------------------------------
		header
	------------------------------------------ */
  .hdr-container {
    align-items: baseline;
  }
  /* hdr__link 
  -------------------------------------- */
  .hdr__link-area {
    grid-template-columns: repeat(4, 1fr);
    max-width: 500px;
    margin: 0 0 0 auto;
  }
  .hdr__link-area .hdr__link--tre {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }
  .hdr__link-area .hdr__link--tel {
    grid-column: 1 / 3;
  }
}

/* ============================================
   SP
============================================ */
@media (max-width: 767px) {
  .c-title--lv2 {
    font-size: 25px;
  }
  .u-pc-block {
    display: none;
  }
  .u-sp-block {
    display: block;
  }
  .u-text-left--sp {
    text-align: left;
  }
  p + .c-link-block {
    margin-top: 20px;
  }
  .u-grid {
    gap: 15px 3%;
  }
  .c-attention {
    margin-top: 10px;
  }
  /* ------------------------------------------
		header
	------------------------------------------ */
  #header {
    height: clamp(105px, 23vw, 135px);
    position: relative;
  }
  .hdr__shoulder {
    display: none;
  }
  .hdr__logo {
    margin-top: 0;
  }
  /* ------------------------------------------
    p-mv
  ------------------------------------------ */
  .u-grid {
    grid-template-columns: 1fr;
  }
  .p-floating .hdr__link--web a {
    padding: 12px 3px;
  }
  /* p-mv__content
  -------------------------------------- */
  .p-mv__content {
    position: relative;
    background-size: cover;
  }
  .p-mv__content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.5) 40%,
      rgba(255, 255, 255, 0) 70%
    );
    pointer-events: none;
  }
  .p-mv__content .l-container {
    margin-top: 20px;
    padding: 0 3% 18px;
  }
  .p-mv__title {
    top: 15px;
    right: 3px;
    width: 103%;
  }
  .p-mv__subtitle {
    top: -20px;
    padding: 0 10px 20px;
    text-align: center;
    font-size: clamp(14px, 3vw, 22px);
    width: 100%;
    background: none;
  }
  .p-mv__subtitle span {
    font-size: clamp(16px, 3vw, 26px);
  }
  .p-mv__comment {
    top: 38%;
    flex-direction: column;
    gap: 3px;
    padding: 7px 3.5%;
    font-size: clamp(13px, 3vw, 16px);
  }
  .p-mv__comment span {
    font-size: clamp(16px, 3vw, 22px);
    display: block;
  }
  .p-mv__comment::before {
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    border-width: 15px 0 0 12px;
    translate: 0% -30%;
    transform: skew(-13deg) rotate(95deg);
  }
  .p-mv__comment::after {
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    border-width: 8.8px 0 0 13.8px;
    translate: -19% -17%;
    transform: skew(-8deg) rotate(102deg);
  }
  .p-mv__achievements.u-pc-block {
    display: none;
  }
  .p-mv__item {
    border-radius: 10px;
    gap: 7px;
    padding: 17% 3% 10%;
    border: 2px solid #fff;
  }
  .p-mv__list-title {
    font-size: clamp(17px, 2.5vw, 22px);
    line-height: 1.2;
  }
  .p-mv__list-title span {
    font-size: clamp(24px, 4vw, 30px);
  }
  .p-mv__item:nth-child(3) .p-mv__list-title span {
    font-size: clamp(20px, 4vw, 30px);
  }
  .p-mv__check {
    width: clamp(26px, 6vw, 40px);
  }
  .p-mv__lead {
    bottom: clamp(6%, 6vw, 22%);
  }
  .p-mv__lead p {
    font-size: clamp(14px, 4vw, 30px);
  }
  .p-mv__lead-number {
    font-size: clamp(33px, 10vw, 50px);
  }
  .p-mv__lead-number::before,
  .p-mv__lead-number::after {
    width: clamp(6px, 2vw, 15px);
    height: clamp(11px, 2vw, 15px);
    right: -10%;
  }
  .p-mv__lead-number::after {
    left: -10%;
  }
  .p-mv__area-text {
    font-size: 14px;
  }
  /* p-mv__features
  -------------------------------------- */
  .p-mv__features {
    height: auto;
  }
  .p-mv__features .l-container {
    padding: 30px 3%;
  }
  .p-mv__features-area .c-area-btn {
    margin-top: 15px;
  }
  .p-mv__features .u-grid--col3-1 {
    position: relative;
    grid-template-columns: 1fr;
    top: auto;
    width: 100%;
  }
  .p-mv__features-area {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .p-mv__features-area-text {
    text-align: center;
    font-size: 12px;
    margin-bottom: -10px;
  }
  .c-area-btn {
    font-size: 14px;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
    padding: 13px 10px;
  }
  .p-mv__modal-content {
    padding: 25px 10px 25px 20px;
    top: 56%;
  }
  .p-mv__modal-inner {
    padding-right: 10px;
  }
  .p-mv__modal-text {
    text-align: left;
  }
  .p-mv__area-list {
    margin: 20px 0 0;
    grid-template-columns: 1fr;
    gap: 25px 3%;
  }
  .p-mv__area-title {
    font-size: 16px;
    padding: 8px 0;
  }
  .p-mv__area-image {
    max-width: 200px;
    height: auto;
  }
  .modal__close-bottom {
    padding: 10px 0;
    margin-top: 20px;
  }
  .modal__close {
    top: -50px;
    right: -15px;
    width: 40px;
    height: 40px;
  }
  .modal__close::before,
  .modal__close::after {
    width: 25px;
    height: 3px;
  }
  .p-mv__modal-scroll {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .p-mv__modal-scroll.is-hidden {
    opacity: 0;
    pointer-events: none;
  }

  /* ------------------------------------------
		pageBody
	------------------------------------------ */
  #pageBody {
    padding-top: 0 !important;
  }
  /* swiper
  -------------------------------------- */
  .swiper {
    width: 90%;
    margin: 30px auto;
  }
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .swiper-button-prev {
    left: 0 !important;
  }
  .swiper-button-next {
    right: 0 !important;
  }
  /* ------------------------------------------
    p-reason
  ------------------------------------------ */
  .p-reason {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .p-reason__content {
    padding: 50px 5%;
    margin-top: 30px;
  }
  .p-reason__label {
    font-size: 16px;
  }
  .p-reason__content .c-title--lv3 {
    font-size: 19px;
    margin-bottom: 10px;
  }
  .p-reason__content .u-grid--col2-1 {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .p-reason__content:nth-of-type(3) .p-reason__body--l {
    display: contents;
  }
  .p-reason__content:nth-of-type(3) .c-title--lv3 {
    margin-bottom: -15px;
  }
  .p-reason__content:nth-of-type(3) .c-area-btn {
    order: 4;
    margin-top: 0;
  }
  .p-reason__content:nth-of-type(1) .u-grid--col2-1 {
    gap: 0;
  }
  .p-reason__content:nth-of-type(1) .p-reason__body--l {
    display: contents;
  }
  .p-reason__content:nth-of-type(1) .p-reason__image {
    margin: 25px 0 0;
  }
  .p-reason__content:nth-of-type(1) .c-link-block {
    order: 4;
    text-align: center;
  }
  /* ------------------------------------------
    p-inquiry
  ------------------------------------------ */
  .p-inquiry {
    margin-top: 70px;
  }
  .p-inquiry__comment {
    position: relative;
    inset-inline: 50%;
    width: 100vw;
    margin-inline: -50vw;
    border-right: none;
    border-left: none;
    border-radius: 0;
    padding: 16px 0;
  }
  .p-inquiry__comment-text {
    padding-left: 120px;
    font-size: 15px;
    text-align: left;
    line-height: 1.4;
  }
  .p-inquiry__tel {
    text-align: center;
    margin: 30px 0 20px;
  }
  .p-inquiry__button {
    gap: 10px;
  }
  .p-inquiry__button-item a {
    font-size: 20px;
  }
  .p-inquiry .c-area-btn {
    padding: 18px 0;
  }
  /* ------------------------------------------
    p-voice
  ------------------------------------------ */
  .p-voice__list {
    gap: 30px;
  }
  .p-voice__list-item:nth-child(odd) {
    background-color: #e8f7fc;
  }
  .p-voice__list-item:nth-child(odd)::after {
    border-color: #e8f7fc transparent transparent;
  }
  .p-voice__list-item:nth-child(even) {
    background-color: #fffbe2;
  }
  .p-voice__list-item:nth-child(even)::after {
    border-color: #fffbe2 transparent transparent;
  }
  /* ------------------------------------------
    p-flow
  ------------------------------------------ */
  .p-flow {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .p-flow__step .c-title--lv3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 0;
  }
  .p-flow__step-item {
    padding: 40px 5% 20px;
  }
  .p-flow__label {
    font-size: 28px;
    padding: 8px 30px 4px;
  }
  .p-flow__step-item .u-grid--col2-1 {
    gap: 10px;
  }
  .p-flow__body--l {
    display: contents;
  }
  .p-flow__step .c-title--lv3 {
    order: 1;
  }
  .p-flow__step-item img {
    order: 2;
  }
  .p-flow__step .c-text {
    order: 3;
  }
  .p-flow__step .c-attention {
    order: 4;
  }
  /* ------------------------------------------
    p-recycle
  ------------------------------------------ */
  .p-recycle__flow {
    grid-template-columns: 1fr;
  }
  .p-recycle__flow-item:not(:last-child)::before {
    right: auto;
    top: auto;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
  /* ------------------------------------------
    p-parts
  ------------------------------------------ */
  .p-parts {
    margin-top: 0;
  }
  /* ------------------------------------------
    p-factory
  ------------------------------------------ */
  .u-comment-slash {
    margin-top: 10px;
  }
  .u-comment-slash::before,
  .u-comment-slash::after {
    top: 30px;
  }
  .c-text + .u-grid {
    margin: 20px 0;
  }
  .c-link-button {
    padding: 15px 15px;
  }
  .c-link-button::before {
    right: 15px;
    width: 8px;
    height: 8px;
  }
  /* ------------------------------------------
    p-about
  ------------------------------------------ */
  .p-about {
    padding-top: 0;
  }
  .p-about .c-title--lv3 {
    font-size: 18px;
  }
  .p-about__list-label {
    left: -10px;
  }
  .c-text + .u-grid.p-about__list {
    margin-top: 60px;
    gap: 80px;
  }
  .p-about .p-button__list {
    margin: 30px auto 0;
  }
  .p-about__tre {
    display: block;
    margin-top: 50px;
  }
  .p-about__tre img {
    width: 214px;
    display: block;
    margin: 0 auto 10px;
  }
  .p-about__tre p {
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
  }
  .p-floating {
    transform: translateX(-50%) translateY(20px) scale(0.8);
    grid-template-columns: auto auto auto;
    bottom: -5px;
  }
  .p-floating.is-show {
    transform: translateX(-50%) translateY(-0) scale(0.8);
    width: 120%;
  }
  .p-floating .hdr__link--web .hdr__link-icon,
  .p-floating .hdr__link--line .hdr__link-icon {
    height: 20px;
  }
  #ftr-pagetop {
    right: 10px;
    bottom: 60px;
  }
}
@media (max-width: 550px) {
  /* ------------------------------------------
		header
	------------------------------------------ */
  .hdr-container {
    padding: 0 10px;
    align-items: center;
  }
  .hdr__logo img {
    max-width: clamp(100px, 20vw, 200px);
  }
  /* hdr__link 
  -------------------------------------- */
  .hdr__link-area {
    gap: 3px;
    width: 100%;
  }
  .hdr__link a {
    padding: 6px 3px;
  }
  .hdr__link--tre {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    border: none;
  }
  .hdr__link--tre a {
    padding: 6px 10px;
  }
  .hdr__link .hdr__text {
    font-size: clamp(9px, 2vw, 12px);
  }
  .hdr__link .hdr__text span {
    font-size: clamp(15px, 2vw, 20px);
  }
  .hdr__link--tel .hdr__time {
    font-size: clamp(7px, 2vw, 9px);
    transform: scale(0.8);
  }
}
