@charset "utf-8";

/* ========================================
  base
======================================== */

:root {
  --color-main: #115a2b;
  --color-main-dark: #0a3d1d;
  --color-text: #111111;
  --color-white: #ffffff;
  --color-cream: #f7f3e8;
  --color-yellow: #ffcc00;
  --color-red: #c41a1a;
  --color-border: #d8dfd6;
  --color-gray: #f3f5f2;

  --font-base: "Noto Sans JP", sans-serif;

  --container-padding: 16px;
  --section-padding-top: 80px;
  --transition: 0.3s ease;
  --z-header: 100;
  --header-height: 76px;
  --header-height-sp: 66px;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  body {
    padding-bottom: 56px;
  }
}

/* ========================================
  layout
======================================== */

.l_contents {
  width: 100%;
  padding: var(--section-padding-top) 0 0;
}

.l_container-sm {
  width: 100%;
  max-width: calc(800px + 32px);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l_container-md {
  width: 100%;
  max-width: calc(940px + 32px);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l_container {
  width: 100%;
  max-width: calc(1080px + 32px);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l_container-lg {
  width: 100%;
  max-width: calc(1200px + 32px);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l_container-xl {
  width: 100%;
  max-width: calc(1920px + 32px);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.l_main {
  overflow: hidden;
}

/* ========================================
  header
======================================== */

.l_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  width: 100%;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .l_header {
    position: relative;
    padding: 0;
  }
}

.l_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 76px;
  padding: 15px 40px 15px 30px;
  background: #0b0b0b;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 900px) {
  .l_header_inner {
    gap: 12px;
    padding: 12px 18px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_inner {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 0;
    padding: 10px;
  }
}

.l_header_logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

@media screen and (max-width: 768px) {
  .l_header_logo {
    width: 100%;
  }
}

.l_header_logo_link {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

@media screen and (max-width: 900px) {
  .l_header_logo_link {
    gap: 12px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_logo_link {
    gap: 10px;
  }
}

.l_header_logo_img {
  flex: 0 0 auto;
  width: 84px;
  height: 46px;
  object-fit: contain;
}

@media screen and (max-width: 900px) {
  .l_header_logo_img {
    width: 76px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_logo_img {
    width: 58px;
  }
}

.l_header_logo_copy {
  display: grid;
  gap: 2px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.l_header_logo_copy span {
  font-size: 16px;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 900px) {
  .l_header_logo_copy span {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_logo_copy span {
    font-size: 10px;
  }
}

.l_header_logo_copy strong {
  font-size: 18px;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 900px) {
  .l_header_logo_copy strong {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_logo_copy strong {
    font-size: 13px;
  }
}

.l_header_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

@media screen and (max-width: 900px) {
  .l_header_actions {
    gap: 8px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-header);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    padding: 10px 16px;
    margin-left: 0;
    background: #0b0b0b;
  }
}

@media screen and (max-width: 600px) {
  .l_header_actions {
    gap: 8px;
    padding: 10px 12px;
  }
}

.l_header_action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 200px;
  height: 50px;
  padding: 7px 18px;
  line-height: 1.15;
  text-align: center;
  transition: opacity var(--transition);
}

@media screen and (max-width: 900px) {
  .l_header_action {
    width: 164px;
    height: 44px;
    padding: 6px 8px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_action {
    width: 100%;
    height: 56px;
    padding: 7px 8px;
  }
}

@media screen and (max-width: 600px) {
  .l_header_action {
    height: 50px;
    padding: 6px 4px;
  }
}

.l_header_action:hover {
  opacity: 0.82;
}

.l_header_action span {
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 900px) {
  .l_header_action span {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_action span {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .l_header_action span {
    font-size: 12px;
  }
}

.l_header_action strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 900px) {
  .l_header_action strong {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .l_header_action strong {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .l_header_action strong {
    font-size: 17px;
  }
}

.l_header_action__line {
  flex-direction: column;
  color: var(--color-white);
  background: #00bf5f;
}

.l_header_action__tel {
  flex-direction: column;
  color: var(--color-text);
  background: var(--color-yellow);
}

 

/* ========================================
  footer
======================================== */

.l_footer {
  padding: 0;
  color: var(--color-text);
  background: transparent;
}

.l_footer .l_container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.l_footer_info {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 43px;
  height: 246px;
  padding: 0 16px 0 max(65px, calc((100vw - 998px) / 2));
  background: var(--color-white);
}

.l_footer_info::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 100%;
  content: "";
  background: var(--color-main);
}

@media screen and (max-width: 768px) {
  .l_footer_info {
    flex-direction: column;
    gap: 18px;
    height: auto;
    min-height: 246px;
    padding: 40px 16px 32px 41px;
    align-items: flex-start;
  }
}

.l_footer_logo_link {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.l_footer_logo_img {
  width: 263px;
  height: 146px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .l_footer_logo_img {
    width: 150px;
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .l_footer_logo_img {
    width: 100px;
    height: auto;
  }
}

.l_footer_address {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

@media screen and (max-width: 768px) {
  .l_footer_address {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .l_footer_address {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .l_footer_address {
    font-size: 13px;
  }
}

.l_footer_address a {
  text-decoration: none;
  transition: opacity var(--transition);
}

.l_footer_address a:hover {
  opacity: 0.7;
}

.l_footer_copy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  background: var(--color-text);
}

@media screen and (max-width: 768px) {
  .l_footer_copy {
    margin-top: 0;
  }
}

/* ========================================
  module
======================================== */

/* ========================================
  button
======================================== */

.m_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.m_btn:hover {
  transform: translateY(-2px);
}

.m_btn__primary {
  color: var(--color-main-dark);
  background: var(--color-yellow);
  border-color: var(--color-yellow);
}

.m_btn__secondary {
  color: var(--color-main);
  background: var(--color-white);
  border-color: var(--color-main);
}

/* ========================================
  section head
======================================== */

.m_section_head {
  margin-bottom: 42px;
  text-align: center;
}

.m_section_head__left {
  text-align: left;
}

.m_section_label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-main);
  letter-spacing: 0.14em;
}

.m_section_title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .m_section_title {
    font-size: 28px;
  }
}

/* ========================================
  image placeholder
======================================== */

.m_img_placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.55);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(17, 90, 43, 0.10), rgba(255, 204, 0, 0.18)),
    var(--color-gray);
  border: 1px dashed rgba(17, 90, 43, 0.45);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
}

.m_img_placeholder__hero {
  min-height: 520px;
  aspect-ratio: 5 / 6;
}

@media screen and (max-width: 768px) {
  .m_img_placeholder__hero {
    min-height: 340px;
  }
}

/* ========================================
  line cta
======================================== */

.m_line_cta {
  padding: 32px 0 26px;
  text-align: center;
  background: linear-gradient(90deg, #595959 0%, #454545 100%);
}

@media screen and (max-width: 900px) {
  .m_line_cta {
    padding: 28px 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .m_line_cta {
    padding: 24px 0 22px;
  }
}

@media screen and (max-width: 480px) {
  .m_line_cta {
    padding: 26px 0 24px;
  }
}

.m_line_cta_lead {
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.2em;
  white-space: nowrap;
}

@media screen and (max-width: 900px) {
  .m_line_cta_lead {
    font-size: 23px;
  }
}

@media screen and (max-width: 768px) {
  .m_line_cta_lead {
    font-size: 17px;
  }
}

@media screen and (max-width: 480px) {
  .m_line_cta_lead {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
}

.m_line_cta_text {
  margin-top: 13px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0;
}

@media screen and (max-width: 900px) {
  .m_line_cta_text {
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .m_line_cta_text {
    font-size: 20px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 480px) {
  .m_line_cta_text {
    font-size: 18px;
    line-height: 1.3;
  }
}

.m_line_cta_text span {
  color: #f2ac59;
}

.m_line_cta_text_break {
  display: none;
}

@media screen and (max-width: 768px) {
  .m_line_cta_text_break {
    display: block;
  }
}

.m_line_cta_btn {
  display: block;
  width: 486px;
  height: 115px;
  margin: 0 auto;
  transition: opacity var(--transition), transform var(--transition);
}

@media screen and (max-width: 900px) {
  .m_line_cta_btn {
    width: 420px;
    height: 99px;
  }
}

@media screen and (max-width: 768px) {
  .m_line_cta_btn {
    width: min(100%, 320px);
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .m_line_cta_btn {
    width: min(100%, 360px);
  }
}

.m_line_cta_btn:hover {
  opacity: 0.82;
}

.m_line_cta_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.m_line_cta_tel {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: 0;
}

@media screen and (max-width: 900px) {
  .m_line_cta_tel {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .m_line_cta_tel {
    font-size: 15px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 480px) {
  .m_line_cta_tel {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* ========================================
  large cta
======================================== */

.m_large_cta {
  position: relative;
  padding: clamp(84px, 8.5417vw, 123px) clamp(64px, 15.2778vw, 220px) clamp(56px, 5.5556vw, 80px);
  background: var(--color-text);
}

@media screen and (max-width: 900px) {
  .m_large_cta {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media screen and (max-width: 768px) {
  .m_large_cta {
    padding: 84px 16px 54px;
  }
}

.m_large_cta_inner {
  max-width: clamp(760px, 81.9444vw, 1180px);
  min-height: clamp(352px, 32.1528vw, 463px);
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  .m_large_cta_inner {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .m_large_cta_inner {
    min-height: 0;
  }
}

.m_large_cta_person {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: clamp(220px, 23.0556vw, 332px);
  height: auto;
  object-fit: contain;
  object-position: left bottom;
}

@media screen and (max-width: 768px) {
  .m_large_cta_person {
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 150px;
  }
}

@media screen and (max-width: 600px) {
  .m_large_cta_person {
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 130px;
  }
}

.m_large_cta_person__02 {
  width: clamp(220px, 32.9167vw, 474px);
}

@media screen and (max-width: 768px) {
  .m_large_cta_person__02 {
    bottom: 16px;
    width: 150px;
  }
}

@media screen and (max-width: 600px) {
  .m_large_cta_person__02 {
    bottom: 30px;
    width: 130px;
  }
}

.m_large_cta_box {
  position: relative;
  width: clamp(700px, 69.4444vw, 1000px);
  min-height: clamp(352px, 32.1528vw, 463px);
  margin: 0 auto;
  padding: clamp(52px, 5vw, 72px) clamp(8px, 0.6944vw, 10px) calc(33px - clamp(7px, 0.6944vw, 10px));
  background: var(--color-white);
  border: clamp(7px, 0.6944vw, 10px) solid #d3a31d;
}

@media screen and (max-width: 900px) {
  .m_large_cta_box {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .m_large_cta_box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    min-height: 0;
    padding: 46px 10px 26px;
    border-width: 7px;
  }
}

.m_large_cta_title {
  position: absolute;
  top: clamp(-43px, -2.9861vw, -30px);
  left: 50%;
  width: clamp(520px, 48.125vw, 693px);
  height: auto;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .m_large_cta_title {
    top: -30px;
    width: min(92%, 360px);
    height: auto;
  }
}

.m_large_cta_content {
  text-align: center;
}

.m_large_cta_text {
  font-size: clamp(18px, 1.6667vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .m_large_cta_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .m_large_cta_text {
    font-size: 15px;
  }
}

.m_large_cta_text span {
  font-size: clamp(24px, 2.2222vw, 32px);
  line-height: 1.2;
  color: #ff0000;
}

@media screen and (max-width: 768px) {
  .m_large_cta_text span {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .m_large_cta_text span {
    font-size: 18px;
  }
}

.m_large_cta_free {
  margin-top: clamp(10px, 0.9722vw, 14px);
  font-size: clamp(19px, 1.7361vw, 25px);
  font-weight: 700;
  line-height: 1;
  color: #000000;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .m_large_cta_free {
    margin-top: 10px;
    font-size: 18px;
  }
}

.m_large_cta_tel {
  display: block;
  margin-top: 2px;
  font-size: clamp(64px, 6.5972vw, 95px);
  font-weight: 700;
  line-height: 1;
  color: #000000;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .m_large_cta_tel {
    font-size: 40px;
  }
}

@media screen and (max-width: 600px) {
  .m_large_cta_tel {
    font-size: 38px;
  }
}

.m_large_cta_line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(520px, 51.5972vw, 743px);
  height: clamp(40px, 3.4722vw, 50px);
  margin: 16px auto 0;
  font-size: clamp(22px, 2.0833vw, 30px);
  font-weight: 700;
  line-height: 1;
  color: #000000;
  letter-spacing: 0;
  background: linear-gradient(90deg, #348e42 0%, #80c17c 100%);
}

@media screen and (max-width: 768px) {
  .m_large_cta_line {
    width: 100%;
    height: 44px;
    font-size: 18px;
  }
}

.m_large_cta_line img {
  width: clamp(28px, 2.5vw, 36px);
  height: clamp(28px, 2.5vw, 36px);
  margin-left: clamp(12px, 1.1806vw, 17px);
  transition: transform var(--transition);
}

.m_large_cta_line:hover img {
  transform: translateX(6px);
}

@media screen and (max-width: 768px) {
  .m_large_cta_line img {
    margin-left: 10px;
  }
}

.m_large_cta_note {
  margin-top: 16px;
  font-size: clamp(12px, 1.1111vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
  letter-spacing: 0;
}

.m_large_cta_note_line {
  display: block;
}

@media screen and (max-width: 768px) {
  .m_large_cta_note {
    margin-top: 10px;
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .m_large_cta_note_line + .m_large_cta_note_line {
    margin-top: 8px;
  }
}

@media screen and (max-width: 600px) {
  .m_large_cta_note {
    width: 180px;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ========================================
  utility
======================================== */

.u_sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .u_sp_only {
    display: inline;
  }
}

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

/* ========================================
  js
======================================== */

.js_fade_in,
.js_stagger > * {
  opacity: 0;
  transform: translateY(32px);
}

/* ========================================
  hero
======================================== */

.p_hero {
  margin-top: var(--header-height);
  background: var(--color-white);
}

@media screen and (max-width: 768px) {
  .p_hero {
    margin-top: 0;
  }
}

.p_hero_picture,
.p_hero_img {
  display: block;
  width: 100%;
}

.p_hero_img {
  height: auto;
}

/* ========================================
  case result
======================================== */

.p_case_result {
  position: relative;
  overflow: hidden;
  padding: 86px 0 63px;
  background: url("../img/top/case_bg.webp") center / cover no-repeat;
}

@media screen and (max-width: 768px) {
  .p_case_result {
    padding: 46px 0 42px;
  }
}

@media screen and (max-width: 480px) {
  .p_case_result {
    padding-top: 60px;
  }
}

.p_case_result_person {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(150px, 18.2639vw, 263px);
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p_case_result_person {
    width: 130px;
    height: auto;
  }
}

@media screen and (max-width: 480px) {
  .p_case_result_person {
    width: 120px;
    height: auto;
  }
}

.p_case_result_head {
  position: relative;
  z-index: 1;
  margin: 0 auto 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_case_result_head {
    margin: 0 auto 24px;
  }
}

.p_case_result_lead {
  font-size: clamp(28px, 3.125vw, 45px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_case_result_lead {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .p_case_result_lead {
    font-size: 21px;
  }
}

@media screen and (max-width: 480px) {
  .p_case_result_lead {
    width: auto;
    margin-left: 0;
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
  }
}

.p_case_result_title {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: clamp(560px, 62.6389vw, 902px);
  min-height: clamp(54px, 5.4167vw, 78px);
  height: clamp(82px, 9.0278vw, 130px);
  margin-top: clamp(18px, 2.0833vw, 30px);
  padding: 0 clamp(16px, 1.8056vw, 26px) clamp(15px, 1.7361vw, 25px) clamp(20px, 2.2222vw, 32px);
  font-size: clamp(26px, 2.8472vw, 41px);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0;
  white-space: nowrap;
  background: var(--color-text);
}

@media screen and (max-width: 768px) {
  .p_case_result_title {
    width: auto;
    min-height: 48px;
    height: auto;
    padding: 0 16px 8px;
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  .p_case_result_title {
    max-width: calc(100% - 20px);
    min-height: 44px;
    padding: 0 12px 7px;
    font-size: 17px;
  }
}

.p_case_result_title > * {
  display: inline-block;
  transform: skew(-8deg);
  transform-origin: center bottom;
}

.p_case_result_title::before {
  position: absolute;
  top: 50%;
  left: clamp(-44px, -3.0556vw, -26px);
  width: clamp(26px, 3.125vw, 45px);
  height: clamp(28px, 2.7778vw, 40px);
  content: "";
  background: var(--color-text);
  clip-path: polygon(0 0, 100% 18%, 100% 100%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .p_case_result_title::before {
    left: -22px;
    width: 22px;
    height: 28px;
  }
}

@media screen and (max-width: 600px) {
  .p_case_result_title::before {
    left: -18px;
    width: 18px;
    height: 24px;
  }
}

@media screen and (max-width: 480px) {
  .p_case_result_title::before {
    left: -10px;
    width: 14px;
    height: 20px;
  }
}

.p_case_result_title span {
  display: inline-block;
  margin: 0 clamp(5px, 0.6944vw, 10px);
  font-size: clamp(58px, 6.25vw, 90px);
  font-style: normal;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p_case_result_title span {
    margin: 0 5px;
    font-size: 46px;
  }
}

@media screen and (max-width: 600px) {
  .p_case_result_title span {
    margin: 0 4px;
    font-size: 38px;
  }
}

@media screen and (max-width: 480px) {
  .p_case_result_title span {
    margin: 0 3px;
    font-size: 32px;
  }
}

.p_case_result_slider {
  position: relative;
  z-index: 1;
  margin-left: 220px;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.p_case_result_slider.is_dragging {
  cursor: grabbing;
}

@media screen and (max-width: 768px) {
  .p_case_result_slider {
    margin-left: 16px;
  }
}

.p_case_result_track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}

@media screen and (max-width: 768px) {
  .p_case_result_track {
    gap: 10px;
    animation-duration: 22s;
  }
}

.p_case_result_card {
  position: relative;
  flex: 0 0 398px;
  width: 398px;
  height: 400px;
  padding: 20px 20px 26px;
  background: var(--color-white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

@media screen and (max-width: 768px) {
  .p_case_result_card {
    flex-basis: 280px;
    width: 280px;
    height: 282px;
    padding: 14px 14px 18px;
  }
}

.p_case_result_card_img {
  width: 358px;
  height: 210px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p_case_result_card_img {
    width: 252px;
    height: 148px;
  }
}

.p_case_result_card_body {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
.p_case_result_card_body {
    margin-top: 14px;
  }
}

.p_case_result_area {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 145px;
  height: 45px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0;
  background: var(--color-text);
}

@media screen and (max-width: 768px) {
  .p_case_result_area {
    width: 104px;
    height: 32px;
    font-size: 17px;
  }
}

.p_case_result_period {
  margin-top: 19px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_case_result_period {
    margin-top: 13px;
    font-size: 18px;
  }
}

.p_case_result_price {
  position: absolute;
  top: 278px;
  right: 19px;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 4px;
  align-self: end;
  justify-self: end;
  font-weight: 700;
  line-height: 1;
  color: #d50000;
  letter-spacing: 0;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .p_case_result_price {
    top: 196px;
    right: 13px;
  }
}

.p_case_result_price span {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
  font-size: 66px;
}

@media screen and (max-width: 768px) {
  .p_case_result_price span {
    font-size: 45px;
  }
}

.p_case_result_price em {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
  font-size: 27px;
  font-style: normal;
  margin-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .p_case_result_price em {
    font-size: 18px;
  }
}

.p_case_result_price small {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  align-self: end;
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p_case_result_price small {
    font-size: 13px;
  }
}

.p_case_result_meta {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_case_result_meta {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* ========================================
  service
======================================== */

.p_service {
  padding: 54px clamp(32px, 8.3333vw, 120px) 80px clamp(64px, 15.2778vw, 220px);
  background:
    url("../img/top/service_bg.webp") right center / cover no-repeat,
    var(--color-white);
}

@media screen and (max-width: 900px) {
  .p_service {
    padding: 54px 16px 56px;
    background:
    url("../img/top/service_bg_sp.webp") center top / 100% auto no-repeat,
    var(--color-white);
  }
}

@media screen and (max-width: 768px) {
  .p_service {
    padding: 200px 16px 56px;
  }
}

@media screen and (max-width: 480px) {
  .p_service {
    padding: 200px 16px 56px;
  }
}

.p_service_inner {
  max-width: 1280px;
}

.p_service_title {
  font-size: clamp(44px, 5.3472vw, 77px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-text);
  letter-spacing: 0;
  -webkit-text-stroke: 3px var(--color-white);
  paint-order: stroke fill;
}

@media screen and (max-width: 768px) {
  .p_service_title {
    font-size: 38px;
    -webkit-text-stroke-width: 2px;
  }
}

@media screen and (max-width: 480px) {
  .p_service_title {
    font-size: 36px;
  }
}

.p_service_title_green {
  color: var(--color-main);
}

.p_service_title_dot {
  display: inline-block;
  color: var(--color-main);
  letter-spacing: -0.2em;
}

.p_service_title_outline {
  display: inline-block;
  font-size: clamp(36px, 4.375vw, 63px);
  color: var(--color-text);
  -webkit-text-stroke: 3px var(--color-white);
  paint-order: stroke fill;
}

@media screen and (max-width: 768px) {
  .p_service_title_outline {
    font-size: 30px;
    -webkit-text-stroke-width: 2px;
  }
}

.p_service_text {
  max-width: clamp(360px, 41.6667vw, 600px);
  margin-top: clamp(16px, 1.3889vw, 20px);
  font-size: clamp(20px, 1.7361vw, 25px);
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_service_text {
    max-width: 343px;
    margin-top: 18px;
    font-size: 16px;
  }
}

.p_service_cards {
  display: grid;
  grid-template-columns: repeat(4, clamp(172px, 18.0556vw, 260px));
  gap: clamp(10px, 1.3194vw, 19px);
  margin-top: clamp(28px, 2.7083vw, 39px);
}

@media screen and (max-width: 900px) {
  .p_service_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }
}

.p_service_card_title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(172px, 18.0556vw, 260px);
  height: clamp(58px, 5.5556vw, 80px);
  font-size: clamp(18px, 1.7361vw, 25px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0;
  background: var(--color-main);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 900px) {
  .p_service_card_title {
    width: 100%;
    height: 56px;
    padding: 0 6px;
    font-size: 18px;
  }
}

.p_service_card_title__rc {
  font-size: clamp(15px, 1.3889vw, 20px);
}

@media screen and (max-width: 900px) {
  .p_service_card_title__rc {
    font-size: 15px;
  }
}

.p_service_card_title__src {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.3;
}

@media screen and (max-width: 900px) {
  .p_service_card_title__src {
    font-size: 14px;
  }
}

.p_service_card_img {
  width: clamp(172px, 18.0556vw, 260px);
  height: auto;
  aspect-ratio: 260 / 218;
  object-fit: cover;
}

@media screen and (max-width: 900px) {
  .p_service_card_img {
    width: 100%;
    height: auto;
    aspect-ratio: 260 / 218;
  }
}

/* ========================================
  compare
======================================== */

.p_compare {
  position: relative;
  overflow: hidden;
  padding: 0 16px 309px;
  background: url("../img/top/compare_bg.webp") center top / cover no-repeat;
}

@media screen and (max-width: 768px) {
  .p_compare {
    padding: 0 16px 112px;
  }
}

.p_compare_title {
  display: block;
  width: 100vw;
  max-width: none;
  height: auto;
  margin: 0 calc(50% - 50vw);
}

@media screen and (max-width: 768px) {
  .p_compare_title {
    width: 100vw;
    max-width: none;
    margin: 0 calc(50% - 50vw);
  }
}

.p_compare_cards {
  display: grid;
  grid-template-columns: repeat(4, 234px);
  gap: 16px;
  justify-content: center;
  max-width: 984px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 1024px) {
  .p_compare_cards {
    grid-template-columns: repeat(2, 234px);
    max-width: 484px;
  }
}

@media screen and (max-width: 600px) {
  .p_compare_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
  }
}

.p_compare_card {
  width: 234px;
  height: 315px;
  padding: 28px 14px 18px;
  text-align: center;
  background: var(--color-white);
  border: 3px solid #000000;
}

@media screen and (max-width: 600px) {
  .p_compare_card {
    width: auto;
    height: auto;
    min-height: 210px;
    padding: 18px 8px 14px;
    border-width: 2px;
  }
}

.p_compare_icon {
  width: auto;
  height: 85px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 600px) {
  .p_compare_icon {
    height: 54px;
    margin-bottom: 16px;
  }
}

.p_compare_icon__car {
  margin: 0 auto 36px;
}

@media screen and (max-width: 600px) {
  .p_compare_icon__car {
    margin-bottom: 24px;
  }
}

.p_compare_card p {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0;
}

@media screen and (max-width: 600px) {
  .p_compare_card p {
    font-size: 18px;
  }
}

.p_compare_card span {
  color: var(--color-red);
}

.p_compare_arrow {
  display: block;
  width: 132px;
  height: auto;
  margin: 34px auto 30px;
}

@media screen and (max-width: 768px) {
  .p_compare_arrow {
    width: 100px;
  }
}

@media screen and (max-width: 600px) {
  .p_compare_arrow {
    width: 80px;
    margin: 24px auto 22px;
  }
}

.p_compare_text {
  max-width: 984px;
  margin-right: auto;
  margin-left: auto;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
  .p_compare_text {
    max-width: 680px;
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .p_compare_text {
    max-width: 600px;
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .p_compare_text {
    max-width: 600px;
    font-size: 22px;
  }
}

.p_compare_text p + p {
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .p_compare_text p + p {
    margin-top: 34px;
  }
}

.p_compare_text span {
  padding: 0 5px;
  color: var(--color-white);
  background: var(--color-main);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 768px) {
  .p_compare_text span {
    line-height: 1.45;
  }
}

.p_compare_text .p_compare_text_stack {
  display: inline;
  padding: 0;
  color: inherit;
  background: transparent;
}

.p_compare_text .p_compare_text_stack span {
  display: inline;
  padding: 0 5px;
  color: var(--color-white);
  background: var(--color-main);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media screen and (max-width: 600px) {
  .p_compare_text .p_compare_text_stack span {
    line-height: 1.6;
  }
}

.p_compare_text .p_compare_text_stack span + span::before {
  display: block;
  height: 5px;
  content: "";
  background: transparent;
}

.p_compare_text br {
  display: inline;
}

@media screen and (max-width: 600px) {
  .p_compare_text br {
    display: none;
  }
}

/* ========================================
  reason
======================================== */

.p_reason {
  position: relative;
  overflow: visible;
  padding: 0;
  background: var(--color-main);
}

.p_reason::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: 92px;
  content: "";
  pointer-events: none;
  background: #fff url(../img/top/compare_bg.webp) center / cover no-repeat;
  clip-path: polygon(0 100%, 100% 0%, 100% 100%, 0 100%);
}

@media screen and (max-width: 768px) {
  .p_reason::after {
    height: 44px;
  }
}

.p_reason_title {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  margin-top: -243px;
  margin-bottom: -139px;
}

@media screen and (max-width: 768px) {
  .p_reason_title {
    width: 100%;
    max-width: none;
    margin-top: -70px;
    margin-left: 0;
    margin-bottom: -60px;
  }
}

.p_reason_body {
  position: relative;
  z-index: 2;
  padding: 185px 16px 38px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_reason_body {
    padding: 80px 16px 46px;
  }
}

.p_reason_lead {
  position: relative;
  z-index: 2;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-white);
  letter-spacing: 0;
}

@media screen and (max-width: 900px) {
  .p_reason_lead {
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .p_reason_lead {
    font-size: 18px;
  }
}

.p_reason_lead br {
  display: inline;
}

.p_reason_lead br.p_reason_lead_break_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .p_reason_lead br {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .p_reason_lead br.p_reason_lead_break_sp {
    display: inline;
  }
}

.p_reason_lead span {
  font-size: 40px;
  color: #f0d844;
}

@media screen and (max-width: 900px) {
  .p_reason_lead span {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .p_reason_lead span {
    font-size: 21px;
  }
}

.p_reason_support {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 780px);
  height: auto;
  margin: 64px auto 70px;
}

@media screen and (max-width: 768px) {
  .p_reason_support {
    width: min(100%, 430px);
    margin: 30px auto 36px;
  }
}

.p_reason_text {
  position: relative;
  z-index: 2;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-white);
  letter-spacing: 0;
}

@media screen and (max-width: 900px) {
  .p_reason_text {
    font-size: 25px;
  }
}

@media screen and (max-width: 768px) {
  .p_reason_text {
    font-size: 18px;
  }
}

.p_reason_text br {
  display: inline;
}

.p_reason_text br.p_reason_text_break_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .p_reason_text br {
    display: inline;
  }
}

@media screen and (max-width: 768px) {
  .p_reason_text br.p_reason_text_break_sp {
    display: inline;
  }
}

.p_reason_text span {
  font-size: 40px;
  color: #f0d844;
}

@media screen and (max-width: 900px) {
  .p_reason_text span {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .p_reason_text span {
    font-size: 21px;
  }
}

.p_reason_estimate {
  position: relative;
  z-index: 1;
  padding: 0 16px 249px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_reason_estimate {
    padding: 0 16px 100px;
  }
}

.p_reason_estimate_title {
  position: relative;
  z-index: 3;
  width: calc(100% + 32px);
  margin: 0 -16px 52px;
  padding: 19px 16px 21px;
  font-size: 60px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  color: var(--color-text);
  letter-spacing: 0.2em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--color-white) 50%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (max-width: 768px) {
  .p_reason_estimate_title {
    margin-bottom: 28px;
    padding: 14px 16px 16px;
    font-size: 30px;
    letter-spacing: 0.08em;
  }
}

.p_reason_estimate_img {
  position: relative;
  z-index: 3;
  display: block;
  width: min(100%, 805px);
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_reason_estimate_img {
    width: min(100%, 430px);
  }
}

.p_reason_machine {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  pointer-events: none;
}

@media screen and (max-width: 1200px) {
  .p_reason_machine {
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .p_reason_machine {
    bottom: 0;
    width: 100%;
    max-width: none;
  }
}

.p_reason_catch {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 4;
  width: min(100%, 1350px);
  padding: 0 16px;
  font-size: clamp(46px, 9.375vw, 135px);
  font-weight: 900;
  line-height: 1;
  color: #f0d844;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%) rotate(-4deg);
}

@media screen and (max-width: 768px) {
  .p_reason_catch {
    bottom: 12px;
  }
}

@media screen and (max-width: 480px) {
  .p_reason_catch {
    padding: 0;
    font-size: clamp(34px, 10vw, 40px);
  }
}

.p_reason_catch span {
  font-size: clamp(27px, 5.5556vw, 80px);
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .p_reason_catch span {
    font-size: clamp(21px, 7.2vw, 27px);
  }
}

@media screen and (max-width: 480px) {
  .p_reason_catch span {
    font-size: clamp(18px, 5.4vw, 22px);
  }
}

/* ========================================
  features
======================================== */

.p_features {
  position: relative;
  padding: 100px 40px;
  background: url("../img/top/compare_bg.webp") center top / cover repeat-y;
}

@media screen and (max-width: 768px) {
  .p_features {
    position: relative;
    padding: 80px 40px;
  }
}

@media screen and (max-width: 600px) {
  .p_features {
    position: relative;
    padding: 60px 20px;
  }
}

.p_features_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.p_features_head {
  margin-bottom: 92px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_features_head {
    margin-bottom: 56px;
  }
}

.p_features_label {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_features_label {
    font-size: 24px;
  }
}

.p_features_title {
  margin-top: 10px;
  font-size: 90px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-main);
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_features_title {
    font-size: 56px;
  }
}

.p_features_list {
  display: grid;
  gap: 106px;
}

@media screen and (max-width: 768px) {
  .p_features_list {
    gap: 72px;
  }
}

.p_features_item {
  position: relative;
  display: grid;
  grid-template-columns: 400px 570px;
  gap: 30px;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .p_features_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(100%, 570px);
  }
}

@media screen and (max-width: 768px) {
  .p_features_item {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
    width: min(100%, 570px);
    margin: 0 auto;
  }
}

.p_features_item__02 {
  grid-template-columns: 570px 400px;
}

@media screen and (max-width: 1200px) {
  .p_features_item__02 {
    align-items: flex-end;
    align-self: flex-end;
    justify-self: end;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .p_features_item__02 {
    grid-template-columns: 1fr;
    align-items: stretch;
    align-self: auto;
    justify-self: auto;
    margin: 0 auto;
  }
}

.p_features_item__04 {
  grid-template-columns: 570px 400px;
}

@media screen and (max-width: 1200px) {
  .p_features_item__04 {
    align-items: flex-end;
    align-self: flex-end;
    justify-self: end;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  .p_features_item__04 {
    grid-template-columns: 1fr;
    align-items: stretch;
    align-self: auto;
    justify-self: auto;
    margin: 0 auto;
  }
}

.p_features_num {
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  font-family: "Roboto", sans-serif;
  font-size: 43px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  background: var(--color-text);
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .p_features_num {
    width: 64px;
    height: 64px;
    left: -16px;
  }
}

.p_features_item__02 .p_features_num {
  right: -30px;
  left: auto;
}

.p_features_item__04 .p_features_num {
  right: -30px;
  left: auto;
}

@media screen and (max-width: 600px) {
  .p_features_item__02 .p_features_num {
    right: -16px;
    left: auto;
  }
}

@media screen and (max-width: 600px) {
  .p_features_item__04 .p_features_num {
    right: -16px;
    left: auto;
  }
}

.p_features_img_wrap {
  width: min(100%, 570px);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p_features_img_wrap {
    width: 100%;
  }
}

.p_features_img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p_features_img {
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 250;
    object-position: top;
  }
}

.p_features_item__01 .p_features_img {
  object-position: center;
}

.p_features_body {
  position: relative;
  width: 570px;
  min-width: 0;
}

@media screen and (max-width: 768px) {
  .p_features_body {
    width: 100%;
  }
}

.p_features_item_title {
  font-size: 37px;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  letter-spacing: 0;
}

.p_features_item__02 .p_features_item_title,
.p_features_item__04 .p_features_item_title {
  margin-left: 150px;
}

@media screen and (max-width: 768px) {
  .p_features_item__02 .p_features_item_title,
  .p_features_item__04 .p_features_item_title {
    margin-left: 140px;
  }
}

@media screen and (max-width: 600px) {
  .p_features_item__02 .p_features_item_title,
  .p_features_item__04 .p_features_item_title {
    margin-left: 110px;
  }
}

@media screen and (max-width: 768px) {
  .p_features_item_title {
    font-size: 30px;
  }
}

@media screen and (max-width: 600px) {
  .p_features_item_title {
    font-size: 26px;
  }
}

@media screen and (max-width: 480px) {
  .p_features_item_title {
    font-size: 20px;
  }
}

.p_features_item_title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  margin: 10px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  background: var(--color-text);
}

.p_features_item_title .p_features_item_title_text {
  display: inline;
  padding: 0;
  margin: 0;
  font: inherit;
  line-height: 1.3;
  color: inherit;
  text-align: inherit;
  background: transparent;
}

@media screen and (max-width: 768px) {
  .p_features_item_title span {
    width: auto;
    min-width: 170px;
    height: 52px;
    font-size: 38px;
  }
}

@media screen and (max-width: 600px) {
  .p_features_item_title span {
    width: auto;
    min-width: 170px;
    height: 44px;
    font-size: 34px;
  }
}

@media screen and (max-width: 480px) {
  .p_features_item_title span {
    width: auto;
    min-width: 140px;
    height: 40px;
    font-size: 30px;
  }
}

.p_features_text {
  margin-top: 16px;
  width: 570px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  text-align: justify;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_features_text {
    width: 100%;
    margin-top: 12px;
  }
}

@media screen and (max-width: 768px) {
  .p_features_text br {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .p_features_text {
    font-size: 16px;
  }
}

.p_features_stamp {
  position: absolute;
  z-index: 2;
  width: 142px;
  height: 140px;
  object-fit: contain;
  pointer-events: none;
  transform-origin: center;
}

@media screen and (max-width: 768px) {
  .p_features_stamp {
    width: 76px;
    height: auto;
  }
}

.p_features_item__01 .p_features_stamp,
.p_features_item__03 .p_features_stamp,
.p_features_item__05 .p_features_stamp {
  position: absolute;
  top: 0;
  right: 0;
  width: 142px;
  height: 140px;
  transform-origin: center;
}

.p_features_item__03 .p_features_stamp {
  position: absolute;
  top: clamp(0px, calc((1300px - 100vw) * 0.1667), 50px);
  right: clamp(-142px, calc((1300px - 100vw) * 0.4733 - 142px), 0px);
  width: 142px;
  height: 140px;
  transform-origin: center;
}

@media screen and (max-width: 1200px) {
  .p_features_item__03 .p_features_stamp {
    top: 30px;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .p_features_item__01 .p_features_stamp,
  .p_features_item__03 .p_features_stamp,
  .p_features_item__05 .p_features_stamp {
    top: -8px;
    right: 0;
    width: 100px;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .p_features_item__03 .p_features_stamp,
  .p_features_item__05 .p_features_stamp {
    right: 0;
  }
}

.p_features_item__02 .p_features_stamp,
.p_features_item__04 .p_features_stamp {
  position: absolute;
  top: 0;
  left: 0;
  width: 142px;
  height: 140px;
  transform: rotate(-30deg);
  transform-origin: center;
}

@media screen and (max-width: 768px) {
  .p_features_item__02 .p_features_stamp,
  .p_features_item__04 .p_features_stamp {
    top: -16px;
    width: 100px;
    height: auto;
  }
}

@media screen and (max-width: 600px) {
  .p_features_stamp {
    width: 84px;
  }
}

@media screen and (max-width: 600px) {
  .p_features_item__01 .p_features_stamp,
  .p_features_item__03 .p_features_stamp,
  .p_features_item__05 .p_features_stamp {
    top: 20px;
    width: 80px;
  }
}

@media screen and (max-width: 600px) {
  .p_features_item__02 .p_features_stamp,
  .p_features_item__04 .p_features_stamp {
    width: 80px;
    height: auto;
  }
}

.p_features_bottom {
  margin-top: 64px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  color: #000000;
  text-align: center;
  letter-spacing: 0;
  transform: skewX(-15deg) scaleY(0.98);
  transform-origin: center center;
}

@media screen and (max-width: 768px) {
  .p_features_bottom {
    margin-top: 44px;
    font-size: 28px;
  }
}

@media screen and (max-width: 600px) {
  .p_features_bottom {
    margin-top: 44px;
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .p_features_bottom {
    margin-top: 44px;
    font-size: 23px;
  }
}

.p_features_bottom span {
  color: var(--color-main);
}


/* ========================================
  flow
======================================== */

.p_flow {
  padding: 145px 16px 76px;
  background: var(--color-main);
}

@media screen and (max-width: 768px) {
  .p_flow {
    padding: 100px 16px;
  }
}

.p_flow_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.p_flow_head {
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_flow_head {
    margin-bottom: 40px;
  }
}

.p_flow_bg_text {
  position: absolute;
  top: -65px;
  right: 0;
  left: 0;
  z-index: 1;
  font-size: clamp(68px, 7.6389vw, 102px);
  font-style: italic;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .p_flow_bg_text {
    top: -32px;
    font-size: 60px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_bg_text {
    top: -32px;
    font-size: 38px;
  }
}

.p_flow_lead {
  position: relative;
  z-index: 2;
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_flow_lead {
    font-size: 24px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_lead {
    font-size: 15px;
  }
}

.p_flow_title {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0;
  transform: skewX(-15deg) scaleY(0.98);
  transform-origin: center center;
}

@media screen and (max-width: 768px) {
  .p_flow_title {
    font-size: 40px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_title {
    font-size: 32px;
  }
}

.p_flow_list {
  display: grid;
  grid-template-columns: repeat(3, 311px);
  gap: 34px;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .p_flow_list {
    grid-template-columns: repeat(2, 311px);
  }
}

@media screen and (max-width: 768px) {
  .p_flow_list {
    grid-template-columns: repeat(2, 267px);
    gap: 28px 16px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_list {
    grid-template-columns: minmax(0, min(100%, 400px));
    gap: 28px 16px;
  }
}

.p_flow_item {
  position: relative;
  width: 311px;
  padding-top: 40px;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .p_flow_item {
    width: 267px;
    padding-top: 32px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_item {
    width: min(100%, 400px);
  }
}

.p_flow_num {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 75px;
  height: 75px;
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  background: var(--color-text);
  border-radius: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .p_flow_num {
    width: 64px;
    height: 64px;
    font-size: 34px;
  }
}

.p_flow_bubble {
  position: absolute;
  bottom: 194px;
  left: 25px;
  z-index: 1;
  display: block;
  width: 261px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .p_flow_bubble {
    bottom: 170px;
    left: 22px;
    width: 223px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_bubble {
    bottom: 190px;
    left: 50%;
    width: min(calc(100% - 44px), 336px);
    transform: translateX(-50%);
  }
}

.p_flow_img {
  display: block;
  width: 311px;
  height: 180px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p_flow_img {
    width: 267px;
    height: 155px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_img {
    width: 100%;
    height: auto;
    aspect-ratio: 311 / 180;
  }
}

.p_flow_body {
  height: 216px;
  padding: 30px 25px 21px;
  background: var(--color-white);
}

@media screen and (max-width: 768px) {
  .p_flow_body {
    height: 185px;
    padding: 24px 18px 18px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_body {
    height: auto;
    min-height: 216px;
    padding: 30px 25px 21px;
  }
}

.p_flow_item_title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_flow_item_title {
    font-size: 25px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_item_title {
    font-size: 30px;
  }
}

.p_flow_text {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  text-align: justify;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_flow_text {
    margin-top: 12px;
    font-size: 14px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_text {
    margin-top: 15px;
    font-size: 16px;
  }
}

.p_flow_bottom {
  margin-top: 70px;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0;
  transform: skewX(-15deg) scaleY(0.98);
  transform-origin: center center;
}

@media screen and (max-width: 768px) {
  .p_flow_bottom {
    font-size: 28px;
    padding: 0 16px;
  }
}

@media screen and (max-width: 600px) {
  .p_flow_bottom {
    font-size: 23px;
  }
}

.p_flow_bottom span {
  color: #f0d844;
}

/* ========================================
  p_relief
======================================== */

.p_relief {
  position: relative;
  z-index: 10;
  overflow: visible;
  background: #fff url('../img/top/relief_bg.webp') center / cover no-repeat;
}

.p_relief_title_img {
  position: absolute;
  top: -72px;
  left: 0;
  z-index: 11;
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .p_relief_title_img {
    top: -40px;
  }
}

.p_relief_body {
  display: flex;
  justify-content: center;
  padding: 348px 16px 50px;
}

@media screen and (max-width: 1200px) {
  .p_relief_body {
    padding: 220px 16px 50px;
  }
}

@media screen and (max-width: 768px) {
  .p_relief_body {
    padding: 250px 16px 50px;
  }
}

@media screen and (max-width: 600px) {
  .p_relief_body {
    padding: 160px 16px 40px;
  }
}

@media screen and (max-width: 480px) {
  .p_relief_body {
    padding: 130px 16px 40px;
  }
}

.p_relief_map_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  height: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efefef;
  border: 3px solid var(--color-text);
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p_relief_map_wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 700;
    padding: 12px;
  }
}

.p_relief_map {
  width: 698px;
  height: 683px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p_relief_map {
    width: 100%;
    height: 100%;
    transform: scale(1.03);
  }
}

@media screen and (max-width: 600px) {
  .p_relief_map {
    width: 100%;
    height: 100%;
  }
}

.p_relief_band {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  height: 130px;
  padding: 0 24px;
  margin: 0 auto;
  background: linear-gradient(90deg, #ce9a09 0%, #fdf7c7 50%, #cd9602 100%);
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_relief_band {
    height: auto;
    padding: 20px 16px;
  }
}

.p_relief_band::after {
  position: absolute;
  right: 0;
  bottom: 130px;
  z-index: 2;
  width: 218px;
  height: 155px;
  content: "";
  pointer-events: none;
  background: url("../img/top/relief_img.webp") right bottom / contain no-repeat;
}

@media screen and (max-width: 768px) {
  .p_relief_band::after {
    width: 180px;
    height: 155px;
    bottom: 88px;
  }
}

@media screen and (max-width: 600px) {
  .p_relief_band::after {
    bottom: 80px;
    width: 160px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .p_relief_band::after {
    bottom: 80px;
    width: 130px;
    height: 120px;
  }
}

.p_relief_band_lead {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0;
}

@media screen and (max-width: 900px) {
  .p_relief_band_lead {
    font-size: 34px;
  }
}

@media screen and (max-width: 768px) {
  .p_relief_band_lead {
    font-size: 22px;
  }
}

@media screen and (max-width: 600px) {
  .p_relief_band_lead {
    font-size: 18px;
  }
}

.p_relief_band_text {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
  letter-spacing: 0;
}

@media screen and (max-width: 900px) {
  .p_relief_band_text {
    font-size: 26px;
  }
}

@media screen and (max-width: 768px) {
  .p_relief_band_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  .p_relief_band_text {
    font-size: 12px;
  }
}

.p_relief_band_text span {
  font-weight: 900;
}

.p_relief_desc {
  margin-top: 50px;
  padding: 0 16px 90px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_relief_desc {
    margin-top: 32px;
    padding-bottom: 40px;
  }
}

.p_relief_desc_text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_relief_desc_text {
    font-size: 18px;
  }
}

.p_relief_desc_accent {
  font-weight: 900;
  color: var(--color-main);
}

/* ========================================
  contact
======================================== */

.p_contact {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p_contact::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background: rgba(0, 0, 0, 0.35);
  }
}

.p_contact_img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: left center;
}

.p_contact_inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 99px 210px 99px 16px;
}

@media screen and (max-width: 1200px) {
  .p_contact_inner {
    padding: 99px 100px 99px 16px;
  }
}

@media screen and (max-width: 900px) {
  .p_contact_inner {
    padding: 20px 60px 20px 16px;
  }
}

@media screen and (max-width: 768px) {
  .p_contact_inner {
    padding: 20px 16px;
  }
}

.p_contact_text {
  max-width: 675px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-white);
  letter-spacing: 0;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .p_contact_text {
    max-width: 675px;
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .p_contact_text {
    max-width: none;
    font-size: 18px;
  }
}

/* ========================================
  merit
======================================== */

.p_merit {
  position: relative;
  --merit-line-width: clamp(3px, 0.4861vw, 7px);
  overflow: hidden;
  padding: clamp(113px, 12.5vw, 180px) 16px clamp(124px, 13.75vw, 198px);
  background:
    url("../img/top/compare_bg_up.webp") center top / 100% auto no-repeat,
    url("../img/top/compare_bg_down.webp") center bottom / 100% auto no-repeat,
    var(--color-white);
}

@media screen and (max-width: 768px) {
  .p_merit {
    padding: 80px 16px 60px;
  }
}

.p_merit::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, #ce9a09 0%, #fdf7c7 50%, #cd9602 100%) center top / 100% var(--merit-line-width) no-repeat,
    linear-gradient(90deg, #ce9a09 0%, #fdf7c7 50%, #cd9602 100%) center bottom / 100% var(--merit-line-width) no-repeat;
}

.p_merit::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: rgba(255, 255, 255, 0.8);
}

.p_merit_inner {
  position: relative;
  z-index: 2;
  max-width: clamp(675px, 75vw, 1080px);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_merit_inner {
    max-width: none;
  }
}

.p_merit_badges {
  display: flex;
  gap: clamp(19px, 2.0833vw, 30px);
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(70px, 7.7778vw, 112px);
}

@media screen and (max-width: 768px) {
  .p_merit_badges {
    gap: 12px;
    margin-bottom: 50px;
  }
}

.p_merit_badge {
  width: clamp(208px, 23.0556vw, 332px);
  height: clamp(131px, 14.5833vw, 210px);
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .p_merit_badge {
    width: calc((100% - 24px) / 3);
    height: auto;
  }
}

.p_merit_box {
  position: relative;
  width: min(100%, clamp(625px, 69.4444vw, 1000px));
  min-height: clamp(209px, 23.1944vw, 334px);
  padding: clamp(73px, 8.125vw, 117px) 0 clamp(31px, 3.4722vw, 50px) clamp(38px, 4.1667vw, 60px);
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.1);
}

.p_merit_box::before {
  position: absolute;
  right: max(0px, calc(50% - clamp(275px, 30.5556vw, 440px)));
  bottom: 0;
  z-index: 1;
  width: clamp(162px, 17.9861vw, 259px);
  height: clamp(212px, 23.5417vw, 339px);
  content: "";
  pointer-events: none;
  background: url("../img/top/compare_img.webp") right bottom / contain no-repeat;
}

@media screen and (max-width: 600px) {
  .p_merit_box::before {
    width: 150px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .p_merit_box::before {
    bottom: -50px;
    width: 110px;
    height: 100px;
  }
}

.p_merit_box::after {
  position: absolute;
  bottom: clamp(-39px, -2.7083vw, -24px);
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: clamp(24px, 2.7083vw, 39px) solid rgba(0, 0, 0, 0.1);
  border-right: clamp(15px, 1.6667vw, 24px) solid transparent;
  border-left: clamp(15px, 1.6667vw, 24px) solid transparent;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .p_merit_box {
    padding: 54px 18px 28px;
  }
}

.p_merit_box_title {
  position: absolute;
  top: clamp(-40px, -2.7778vw, -25px);
  left: 50%;
  z-index: 1;
  min-width: clamp(526px, 58.4722vw, 842px);
  padding: clamp(13px, 1.3889vw, 20px) clamp(21px, 2.3611vw, 34px) clamp(15px, 1.6667vw, 24px);
  margin-bottom: 0;
  font-size: clamp(25px, 2.7778vw, 40px);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0;
  background: transparent;
  transform: translateX(-50%);
}

.p_merit_box_title::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--color-main);
  transform: skewX(-10deg);
  transform-origin: center center;
}

@media screen and (max-width: 768px) {
  .p_merit_box_title {
    top: -20px;
    min-width: min(92%, 420px);
    padding: 10px 12px;
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .p_merit_box_title {
    top: -20px;
    min-width: min(92%, 420px);
    padding: 10px 12px;
    font-size: 15px;
  }
}

.p_merit_list {
  display: grid;
  gap: clamp(19px, 2.0833vw, 30px);
  max-width: clamp(375px, 41.6667vw, 600px);
}

.p_merit_list_item {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.3889vw, 20px);
  font-size: clamp(19px, 2.0833vw, 30px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_merit_list_item {
    gap: 8px;
    font-size: 16px;
  }
}

.p_merit_check {
  flex: 0 0 auto;
  width: clamp(26px, 2.9167vw, 42px);
  height: clamp(26px, 2.9167vw, 42px);
}

@media screen and (max-width: 768px) {
  .p_merit_check {
    width: 24px;
    height: 24px;
  }
}

.p_merit_text {
  position: relative;
  z-index: 1;
  width: min(100%, clamp(688px, 76.3889vw, 1100px));
  min-height: 0;
  padding: 0;
  margin: clamp(48px, 5.2778vw, 76px) auto 0;
  font-size: clamp(29px, 3.2639vw, 47px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
  background: transparent;
  border: none;
}

.p_merit_text span {
  color: var(--color-main);
}

@media screen and (max-width: 768px) {
  .p_merit_text {
    width: 100%;
    min-height: 0;
    padding: 28px 18px;
    margin-left: 0;
    margin-top: 22px;
    font-size: 24px;
    background: transparent;
  }
}

@media screen and (max-width: 600px) {
  .p_merit_text {
    font-size: 22px;
  }
}

/* ========================================
  question
======================================== */

.p_question {
  padding-bottom: 117px;
  background: var(--color-white);
}

@media screen and (max-width: 768px) {
  .p_question {
    padding-bottom: 56px;
  }
}

.p_question_head {
  position: relative;
  padding: 85px 16px 60px;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p_question_head {
    padding: 36px 16px 28px;
  }
}

.p_question_title_img {
  display: block;
  width: min(100%, 562px);
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_question_title_img {
    width: min(100%, 300px);
  }
}

.p_question_inner {
  max-width: 1006px;
  margin: 0 auto;
  padding: 0 16px;
}

@media screen and (max-width: 768px) {
  .p_question_inner {
    padding: 0 16px;
  }
}

.p_question_item {
  border-bottom: 1px solid #999;
  padding-bottom: 50px;
  margin-bottom: 50px;
}

.p_question_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p_question_row {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.p_question_row__a {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .p_question_row {
    gap: 16px;
  }
}

.p_question_badge {
  flex: 0 0 76px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 900;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .p_question_badge {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 30px;
  }
}

.p_question_badge__q {
  color: var(--color-white);
  background: var(--color-main);
  text-indent: 0;
}

.p_question_badge__q span {
  display: block;
  transform: translateY(-6px);
}

.p_question_badge__a {
  color: #111;
  background: var(--color-white);
  border: 2px solid #111;
}

.p_question_badge__a span {
  display: block;
  transform: translateY(-4px);
}

.p_question_q_text {
  display: flex;
  align-items: center;
  min-height: 76px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-main);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_question_q_text {
    min-height: 44px;
    font-size: 20px;
    line-height: 1.2;
  }
}

.p_question_a_text {
  width: 894px;
  padding-top: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #111;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_question_a_text {
    width: auto;
    padding-top: 10px;
    font-size: 16px;
  }
}

/* ========================================
  staff
======================================== */

.p_staff {
  position: relative;
  overflow: hidden;
  background: var(--color-main);
}

.p_staff::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  pointer-events: none;
  background: url("../img/top/staff_bg.webp") center bottom / contain no-repeat;
}

.p_staff_head {
  position: relative;
  z-index: 1;
}

.p_staff_head_img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
}

@media screen and (max-width: 900px) {
  .p_staff_head_img {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .p_staff_head_img {
    height: 200px;
  }
}

.p_staff_title {
  position: absolute;
  right: 0;
  bottom: -71px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 530px;
  height: 142px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
  background: var(--color-white);
}

.p_staff_title span {
  display: block;
  transform: skewX(-10deg) scaleY(0.98);
  transform-origin: center center;
}

@media screen and (max-width: 768px) {
  .p_staff_title {
    bottom: -34px;
    width: min(86%, 320px);
    height: 72px;
    font-size: 28px;
  }
}

.p_staff_title::after {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 28px solid var(--color-white);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .p_staff_title::after {
    bottom: -20px;
    border-top-width: 20px;
    border-right-width: 26px;
    border-left-width: 26px;
  }
}

.p_staff_inner {
  position: relative;
  z-index: 1;
  padding: 150px 16px 100px;
}

@media screen and (max-width: 768px) {
  .p_staff_inner {
    padding: 84px 16px 48px;
  }
}

.p_staff_grid {
  display: grid;
  grid-template-columns: repeat(2, 311px);
  gap: 30px 34px;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_staff_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

.p_staff_card {
  width: 311px;
  min-height: 344px;
  padding: 20px;
  background: var(--color-white);
}

@media screen and (max-width: 768px) {
  .p_staff_card {
    width: 100%;
    min-height: 0;
    padding: 12px;
  }
}

.p_staff_card_img {
  display: block;
  width: 271px;
  height: 160px;
  margin: 0;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 768px) {
  .p_staff_card_img {
    width: 100%;
    height: auto;
    aspect-ratio: 271 / 160;
  }
}

.p_staff_card_label {
  width: 271px;
  padding: 10px 0 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .p_staff_card_label {
    width: 100%;
  }
}

.p_staff_card_name {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-main);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_staff_card_name {
    font-size: 13px;
  }
}

.p_staff_card_role {
  margin-top: 0;
  min-height: 1.3em;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-main);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_staff_card_role {
    font-size: 13px;
  }
}

.p_staff_card_text {
  width: 271px;
  padding: 0;
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_staff_card_text {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p_staff_card_text {
    font-size: 12px;
  }
}

/* ========================================
  p_voice
======================================== */

.p_voice {
  position: relative;
  background: #fff url("../img/top/case_bg.webp") center / cover no-repeat;
}

.p_voice::before {
  content: none;
}

@media screen and (max-width: 768px) {
  .p_voice::before {
    top: 36px;
    font-size: 58px;
  }
}

.p_voice_title {
  display: none;
}

@media screen and (max-width: 768px) {
  .p_voice_title {
    padding-top: 52px;
    font-size: 32px;
  }
}

.p_voice_title_img {
  position: relative;
  z-index: 1;
  display: block;
  width: 330px;
  height: auto;
  margin: 0 auto;
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .p_voice_title_img {
    width: 200px;
  }
}

.p_voice_inner {
  position: relative;
  z-index: 1;
  padding: 70px 0 100px;
}

@media screen and (max-width: 768px) {
  .p_voice_inner {
    padding: 40px 0 60px;
  }
}

.p_voice_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .p_voice_slider {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
  }
}

@media screen and (max-width: 1200px) {
  .p_voice_slider.is_dragging {
    cursor: grabbing;
  }
}

@media screen and (max-width: 1200px) {
  .p_voice_grid {
    display: flex;
    gap: 24px;
    will-change: transform;
  }
}

@media screen and (max-width: 768px) {
  .p_voice_grid {
    gap: 20px;
  }
}

.p_voice_card {
  display: flex;
  flex-direction: column;
  min-height: 492px;
  padding: 20px 20px 25px;
  background: var(--color-white);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}

.p_voice_card[aria-hidden="true"] {
  display: none;
}

@media screen and (max-width: 1200px) {
  .p_voice_card {
    flex: 0 0 399px;
    width: 399px;
    scroll-snap-align: start;
  }
}

@media screen and (max-width: 768px) {
  .p_voice_card {
    flex-basis: min(100%, 343px);
    width: min(100%, 343px);
  }
}

@media screen and (max-width: 1200px) {
  .p_voice_card[aria-hidden="true"] {
    display: flex;
  }
}

.p_voice_card_img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 768px) {
  .p_voice_card_img {
    height: 220px;
  }
}

.p_voice_card_label {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 255px;
  height: 45px;
  margin-top: -22px;
  margin-left: -20px;
  background: var(--color-text);
}

.p_voice_card_label h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0;
  white-space: nowrap;
}

.p_voice_card_body {
  flex: 1;
  padding: 24px 10px 0;
}

.p_voice_card_text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-text);
  text-align: justify;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .p_voice_card_text {
    font-size: 16px;
  }
}

.p_voice_card_footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 10px;
}

.p_voice_card_meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  margin-bottom: 9px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
  letter-spacing: 0;
  white-space: nowrap;
}

.p_voice_card_price_block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.p_voice_card_total {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0;
  white-space: nowrap;
}

.p_voice_card_price {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-red);
  white-space: nowrap;
}

.p_voice_card_price span {
  font-size: 45px;
  font-weight: 900;
  color: var(--color-red);
}

/* ========================================
  p_about
======================================== */

.p_about_title_img {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 50px;
  background: #fff url("../img/top/compare_bg.webp") center / cover no-repeat;
}

.p_about_body {
  position: relative;
  overflow: hidden;
  padding: 65px 0 0;
  background: #fff url("../img/top/compare_bg.webp") center / cover no-repeat;
}

@media screen and (max-width: 768px) {
  .p_about_body {
    padding: 56px 0 0;
  }
}

.p_about_inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 409px) minmax(0, 550px);
  gap: 41px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 900px) {
  .p_about_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p_about_ceo {
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_about_ceo {
    max-width: 320px;
    margin: 0 auto;
  }
}

.p_about_ceo_img {
  display: block;
  width: 100%;
  max-width: 409px;
  height: auto;
  aspect-ratio: 409 / 630;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p_about_ceo_img {
    width: 100%;
    height: auto;
    aspect-ratio: 409 / 540;
  }
}

.p_about_ceo_name {
  position: absolute;
  bottom: 73px;
  left: -220px;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 620px;
  height: 76px;
  max-width: none;
  padding: 0 0 0 250px;
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  text-align: left;
  letter-spacing: 0.05em;
  background: transparent;
  text-shadow: 0 0 5px rgba(17, 17, 17, 0.6);
}

.p_about_ceo_name::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: max(-270px, min(0px, calc(720px - 50vw)));
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, #111 36.13%, rgba(119, 119, 119, 0.00) 90.65%);
}

@media screen and (max-width: 768px) {
  .p_about_ceo_name {
    bottom: 18px;
    left: -100px;
    width: 100%;
    height: auto;
    padding: 10px 0 10px 100px;
    font-size: 15px;
  }
}

.p_about_origin {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

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

@media screen and (max-width: 768px) {
  .p_about_origin_title {
    font-size: 24px;
  }
}

.p_about_origin_text {
  margin-top: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 2;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0.05em;
}

.p_about_origin_text span {
  font-weight: 900;
  color: var(--color-main);
}

.p_about_origin_break_480 {
  display: none;
}

@media screen and (max-width: 768px) {
  .p_about_origin_text {
    margin-top: 16px;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .p_about_origin_text {
    line-height: 1.9;
  }
}

@media screen and (max-width: 480px) {
  .p_about_origin_break_480 {
    display: inline;
  }
}

.p_about_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1000px);
  height: 130px;
  padding: 0 20px;
  margin: 80px auto 0;
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
  background: linear-gradient(90deg, rgba(206, 154, 9, 0) 0%, rgba(229, 199, 100, 0.48) 30%, #fdf7c7 50%, rgba(233, 206, 116, 0.58) 70%, rgba(205, 150, 2, 0) 100%);
}

.p_about_heading span {
  display: block;
  transform: skewX(-10deg) scaleY(0.98);
  transform-origin: center center;
}

@media screen and (max-width: 768px) {
  .p_about_heading {
    height: 76px;
    margin: 60px auto 0;
    font-size: 32px;
  }
}

.p_about_text_block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 792px;
  max-width: none;
  padding: 80px 16px 100px;
  margin-top: 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background: url("../img/top/about_bg.webp") center / cover no-repeat;
}

@media screen and (max-width: 768px) {
  .p_about_text_block {
    min-height: 0;
    padding: 56px 16px;
    gap: 20px;
  }
}

.p_about_text {
  position: relative;
  z-index: 1;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-text);
  text-align: center;
  letter-spacing: 0;
  text-shadow:
    0 0 1px #ffffff,
    0 0 1px #ffffff,
    0 0 2px #ffffff,
    0 0 3px #ffffff,
    0 0 4px #ffffff,
    0 0 6px #ffffff,
    0 0 8px #ffffff,
    0 0 12px #ffffff,
    0 0 18px rgba(255, 255, 255, 0.98),
    0 0 26px rgba(255, 255, 255, 0.94),
    0 0 34px rgba(255, 255, 255, 0.88);
}

.p_about_text_break_480 {
  display: none;
}

@media screen and (max-width: 768px) {
  .p_about_text {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .p_about_text {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 480px) {
  .p_about_text_break_480 {
    display: inline;
  }
}
