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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ホバー */
a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* ==========================================================================
Noto Sans JP
========================================================================== */
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Black.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-ExtraBold.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Bold.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-SemiBold.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Medium.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Light.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-ExtraLight.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Thin.ttf") format("TrueType");
}
/* ==========================================================================
Roboto
========================================================================== */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/Roboto/Roboto-Black.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("TrueType");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Roboto/Roboto-Light.ttf") format("TrueType");
}
/* リキッドレイアウト対応 */
/*********************************
	BASE SET
*********************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4285714286vw;
  }
}
@media (min-width: 1120px) {
  html {
    font-size: 16px;
  }
}

html {
  scroll-padding-top: 8.125rem;
}

body {
  color: #151515;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

a {
  display: block;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
img {
  -o-object-fit: cover;
  height: 100%;
     object-fit: cover;
}

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

.l-header {
  background-color: #fff;
  height: 5rem;
}
@media screen and (min-width: 768px) {
  .l-header {
    background-color: transparent;
    height: auto;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
}

.l-header__inner {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    max-width: 100%;
    width: 96%;
  }
}

@media screen and (min-width: 768px) {
  .l-header__tel {
    display: flex !important;
  }
  .l-header__tel {
    gap: 1.25rem;
    justify-content: right;
    padding: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .l-header__tel.c-cta_tel a {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .l-header__tel.c-cta_tel span {
    font-size: 0.75rem;
  }
}

.l-header__content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-header__content {
    background-color: #fff;
    border-radius: 0.375rem;
    height: 5rem;
    padding: 0 1.4375rem;
  }
}

.l-header__logo {
  width: 9.9375rem;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 11.25rem;
  }
}

.l-header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (min-width: 768px) {
  .l-header__nav {
    display: flex;
    height: 100%;
    margin-left: auto;
    margin-right: clamp(
    0.875rem,
    -0.5535714286rem + 2.9761904762vw,
    2.125rem
  );
  }
}

.l-header__button {
  border: 0.125rem solid #E60012;
  border-radius: 0.3125rem;
  color: #E60012;
  font-size: 0.8125rem;
  font-weight: bold;
  padding: 0.625rem 0.625rem;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .l-header__button {
    font-size: clamp(
    0.75rem,
    0.5357142857rem + 0.4464285714vw,
    0.9375rem
  );
    min-width: clamp(
    7.5rem,
    3.2142857143rem + 8.9285714286vw,
    11.25rem
  );
    padding: 0.9375rem 0.625rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .l-header__button--primary {
    background-color: #151515;
    border: 0.0625rem solid #151515;
    color: #fff;
  }
}

@media screen and (min-width: 768px) {
  .l-header__buttons {
    display: flex;
    gap: 0.625rem;
  }
}

@media screen and (hover: hover) and (min-width: 768px) {
  .l-header__button:hover {
    box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
    opacity: 1;
  }
}
@media screen and (hover: hover) and (min-width: 768px) {
  .l-header__button--primary:hover {
    box-shadow: 0 16px 20px -8px rgba(0, 0, 0, 0.4);
    opacity: 1;
  }
}
.l-footer {
  background-color: #151515;
}
@media screen and (min-width: 768px) {
  .l-footer {
    overflow: hidden;
    padding: 0 3.75rem;
  }
}

.l-footer__content {
  display: flex;
  flex-direction: column;
  padding: 3.125rem 0 1.4375rem;
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 82.5rem;
    padding: 3.75rem 0;
  }
}

.l-footer__content_left,
.l-footer__content_right {
  display: contents;
}
@media screen and (min-width: 768px) {
  .l-footer__content_left,
  .l-footer__content_right {
    display: block;
  }
}

.l-footer__copyright {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  margin: 3.75rem auto 0;
  max-width: 23.125rem;
  order: 4;
  padding: 0 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 0.875rem;
    margin-top: 2.1875rem;
    padding: 0;
  }
}

.l-footer__tel.c-cta_tel {
  color: #fff;
  margin-left: -0.625rem;
  margin-top: 1.5625rem;
  order: 2;
}
@media screen and (min-width: 768px) {
  .l-footer__tel.c-cta_tel {
    margin-top: 1.25rem;
  }
}

.l-footer__tel.c-cta_tel a {
  font-size: 1.625rem;
  line-height: 0.9615384615;
}

.l-footer__tel.c-cta_tel a::before {
  height: 1em;
}

.l-footer__tel.c-cta_tel span {
  font-size: 0.75rem;
  line-height: 1.6666666667;
}

.l-footer__logo {
  margin: 0 auto;
  order: 1;
  width: 13.5rem;
}

.l-footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__license {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  padding: 0.625rem 0;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__license {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin: 0 calc(50% - 50vw);
    padding: 1.25rem 0;
    width: 100vw;
  }
}

.l-footer__menu {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 2.5rem auto 0;
  max-width: 37.5rem;
  order: 3;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__menu {
    margin-top: 0;
    padding: 0;
  }
}

.l-footer__menu_item a {
  display: flex;
  font-size: 0.875rem;
  gap: 0.5rem;
  line-height: 1.4285714286;
  position: relative;
}

.l-footer__menu_item a::before {
  content: "-";
  padding: 0 0.5em;
}

.c-check {
  display: flex;
  gap: 0.5em;
  position: relative;
}

.c-check:before {
  aspect-ratio: 1/1;
  background-image: url(../images/common/icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 1.5em;
  position: relative;
  top: 0.2em;
  width: auto;
}

.c-section_title {
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
  left: 47%;
  margin: 0 auto;
  padding-right: 0.75rem;
  position: relative;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .c-section_title {
    left: 50%;
  }
}

.c-section_title::after {
  background-color: #151515;
  border-radius: 0 0.1875rem 0 0;
  content: "";
  display: block;
  height: 1.75rem;
  height: 0.875rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: skew(-64deg);
  width: 3.125rem;
}

.c-section_title span {
  background-color: #151515;
  border-radius: 0.125rem;
  color: #fff;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.25;
  min-width: 18rem;
  padding: 0.625rem 2.5rem 0.625rem 1.875rem;
  position: relative;
  text-align: center;
  transform: skew(-9deg);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-section_title span {
    font-size: 2.625rem;
    line-height: 1.0714285714;
    padding: 0.5rem 1.875rem 0.5rem 1.25rem;
  }
}

.c-bg_line {
  background: #F6F6F6;
  background-image: url(../images/top/bg_line.png);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
}

.c-button {
  position: relative;
  transition: 0.2s;
}

.c-button::before {
  background-color: #E60012;
  border-radius: 0.625rem;
  content: "";
  display: block;
  height: 100%;
  left: 0.1875rem;
  position: absolute;
  top: 0.1875rem;
  transition: all 0.3s;
  width: 100%;
}

.c-button a {
  border-radius: 0.625rem;
  display: flex;
  font-size: 0.875rem;
  font-weight: 700;
  gap: 0.5em;
  justify-content: space-between;
  line-height: 1.4285714286;
  padding: 1.25rem;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-button a {
    font-size: 1.125rem;
    padding: 2.3125rem 3.125rem;
  }
}

.c-button--black a {
  background-color: #151515;
  color: #fff;
}

.c-button--orange a {
  background-color: #fff;
  color: #E60012;
}

.c-button a::after {
  aspect-ratio: 1/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 1.4em;
}

.c-button--black a::after {
  background-image: url(../images/common/arrow_right_white.svg);
}

.c-button--orange a::after {
  background-image: url(../images/common/arrow_right_orange.svg);
}

@media (hover: hover) {
  .c-button a:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  .c-button:hover::before {
    transform: scale(1.05);
  }
}
.c-check_list {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.c-check_list__item {
  -webkit-text-decoration: underline;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  text-decoration: underline;
  text-decoration-color: rgba(230, 0, 18, 0.4);
  text-decoration-thickness: 0.25rem;
}

.c-cta_tel {
  text-align: center;
}

.c-cta_tel a {
  align-items: center;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  gap: 0.625rem;
  justify-content: center;
  line-height: 1.0416666667;
  position: relative;
}

.c-cta_tel a::before {
  aspect-ratio: 1/1;
  background-image: url(../images/common/icon_tel_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 0.8em;
}

.c-cta_tel--black a::before {
  background-image: url(../images/common/icon_tel_black.svg);
}

.c-cta_tel span {
  font-size: 0.625rem;
  line-height: 2;
}

.c-cta {
  background-color: #fff;
  bottom: 0;
  padding: 0.9375rem 0;
  position: fixed;
  transition: all 0.3s ease 0s;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .c-cta {
    display: none;
  }
}

.c-cta__content {
  display: flex;
  justify-content: space-between;
}

.c-cta__contact {
  text-align: center;
  width: 40%;
}

.c-cta__contact a {
  background-color: #151515;
  border-radius: 0.3125rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.9375rem 1.4375rem;
}

@media screen and (min-width: 768px) {
  .c-nav__list {
    display: flex;
    gap: clamp(
    0.3125rem,
    -1.4732142857rem + 3.7202380952vw,
    1.875rem
  );
    height: 100%;
  }
}

.c-nav__item a {
  font-size: 0.9375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-nav__item a {
    align-items: center;
    display: grid;
    font-size: clamp(
    0.75rem,
    0.5357142857rem + 0.4464285714vw,
    0.9375rem
  );
    height: 100%;
    justify-items: center;
    place-items: center;
  }
}

.p-top__mv {
  background-image: url(../images/top/mv_bg-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.125rem 0 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv {
    background-image: url(../images/top/mv_bg-pc.jpg);
    background-position: top;
    background-size: 100% 89%;
    overflow: hidden;
    padding: 8.5625rem 0 3.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top__mv_inner {
    max-width: 94%;
  }
}

.p-top__mv_badge {
  -webkit-clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
  background-color: #fff;
          clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
  display: flex;
  order: 1;
  position: relative;
}

.p-top__mv_badge_text {
  -webkit-clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  align-items: center;
          clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
  color: #fff;
  display: grid;
  font-weight: 900;
  justify-items: center;
  line-height: 135%;
  place-items: center;
}

.p-top__mv_badge_text:nth-child(1) {
  background-color: #E60012;
  font-size: clamp(
    0.8125rem,
    0.2916666667rem + 2.2222222222vw,
    1.125rem
  );
  padding: clamp(
    0.5625rem,
    0.3831313776rem + 0.7653061224vw,
    0.75rem
  ) 1em clamp(
    0.5625rem,
    0.3831313776rem + 0.7653061224vw,
    0.75rem
  );
  width: 58%;
}
@media screen and (min-width: 768px) {
  .p-top__mv_badge_text:nth-child(1) {
    font-size: clamp(
    0.625rem,
    0.0535714286rem + 1.1904761905vw,
    1.125rem
  );
  }
}

.p-top__mv_badge_text:nth-child(2) {
  background-color: #fff;
  color: #E60012;
  font-size: clamp(
    0.875rem,
    0.25rem + 2.6666666667vw,
    1.25rem
  );
  padding: clamp(
    0.53125rem,
    0.4116709184rem + 0.5102040816vw,
    0.65625rem
  ) 1em clamp(
    0.53125rem,
    0.4116709184rem + 0.5102040816vw,
    0.65625rem
  );
  position: relative;
  width: 42%;
}
@media screen and (min-width: 768px) {
  .p-top__mv_badge_text:nth-child(2) {
    font-size: clamp(
    0.75rem,
    0.3214285714rem + 0.8928571429vw,
    1.125rem
  );
  }
}

.p-top__mv_badge_text:nth-child(2):before {
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-top__mv_title {
  margin-top: 1.1875rem;
  order: 2;
}

.p-top__mv_title img {
  -o-object-fit: contain;
  margin: 0 auto;
     object-fit: contain;
}

.p-top__mv_content {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top__mv_content {
    flex-direction: row;
    gap: 4.0625rem;
    margin: 0 auto;
    max-width: 81.4375rem;
  }
}

.p-top__mv_text_section {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top__mv_text_section {
    display: block;
    margin-top: clamp(
    1.875rem,
    -0.2678571429rem + 4.4642857143vw,
    3.75rem
  );
    width: 37%;
  }
}

.p-top__mv_image_section {
  margin-left: 6%;
  margin-right: calc(50% - 50vw);
  margin-top: 1.875rem;
  order: 3;
}
@media screen and (min-width: 768px) {
  .p-top__mv_image_section {
    margin-left: 0;
    margin-left: initial;
    width: 63%;
  }
}

.p-top__mv_image_section img {
  border-radius: 1.625rem 0 0 1.625rem;
}

.p-top__mv_benefits {
  order: 4;
}

.p-top__mv_benefits_title {
  margin-top: 1.875rem;
}

.p-top__mv_benefits_items {
  margin-top: 1.5625rem;
  padding: 0 1.25rem;
}
@media screen {
  .p-top__mv_benefits_items {
    gap: 1.2em;
    padding: 0;
  }
}

.p-top__mv_benefits_item.c-check_list__item {
  font-size: clamp(
    0.875rem,
    0.5162627551rem + 1.5306122449vw,
    1.25rem
  );
}
@media screen and (min-width: 768px) {
  .p-top__mv_benefits_item.c-check_list__item {
    font-size: clamp(
    0.875rem,
    0.4464285714rem + 0.8928571429vw,
    1.25rem
  );
  }
}

.p-top__mv_description {
  background-image: url(../images/top/mv_bg_description.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.625rem;
  font-size: clamp(
    0.8125rem,
    0.5135522959rem + 1.2755102041vw,
    1.125rem
  );
  font-weight: 700;
  line-height: 170%;
  margin-top: 1.875rem;
  order: 5;
  padding: 1.3125rem 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv_description {
    font-size: clamp(
    0.75rem,
    0.4642857143rem + 0.5952380952vw,
    1rem
  );
    line-height: 1.5625;
    padding: clamp(
    0.625rem,
    -1.1607142857rem + 3.7202380952vw,
    2.1875rem
  );
  }
}

.p-bg_line--top {
  padding: 7.5rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-bg_line--top {
    padding: 5rem 0 4.5rem;
  }
}

.p-top__reasons_title {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-top__reasons_title_logo {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .p-top__reasons_title_logo img {
    width: 21.8125rem;
  }
}

.p-top__reasons_title_sub {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.0416666667;
  margin-top: 0.46875rem;
}
@media screen and (min-width: 768px) {
  .p-top__reasons_title_sub {
    display: inline-block;
    font-size: 1.8125rem;
    line-height: 1.724137931;
    margin-top: 0;
    position: relative;
    top: -0.1875rem;
  }
}

.p-top__reasons_title_main img {
  margin: 0.5rem auto 0;
  width: 11.125rem;
}
@media screen and (min-width: 768px) {
  .p-top__reasons_title_main img {
    margin-top: 0;
    width: 17.5rem;
  }
}

.p-top__reasons_items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top__reasons_items {
    flex-direction: row;
    margin-top: 3.5625rem;
  }
}

.p-top__reasons_item_title {
  align-items: center;
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__reasons_item {
    width: 33.33%;
  }
}

.p-top__reasons_item_number {
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 0.1875rem;
  padding-right: 0.75rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__reasons_item_number {
    margin-left: 0.5625rem;
  }
}

.p-top__reasons_item_number::after {
  background-color: #353535;
  border-radius: 0 0.1875rem 0 0;
  content: "";
  display: block;
  height: 0.875rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: skew(-64deg);
  width: 1.5625rem;
}

.p-top__reasons_item_number span {
  background-color: #353535;
  border-radius: 0.125rem;
  color: #fff;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 2.1875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2857142857;
  padding: 0.125rem 0.75rem 0.125rem 0.5rem;
  position: relative;
  transform: skew(-9deg);
  z-index: 10;
}

.p-top__reasons_item_text {
  font-size: 1.3125rem;
  font-weight: 900;
  line-height: 1.1904761905;
}

.p-top__reasons_item_image {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top__reasons_item_image {
    margin-top: 0.875rem;
  }
}

.p-top__reasons_item_description {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 170%;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top__reasons_item_description {
    font-size: 1rem;
    padding: 0 0.3125rem;
  }
}

.p-top__jobs {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__jobs {
    margin-top: 9.375rem;
  }
}
.p-top__jobs_title span {
  line-height: 1.40625;
}

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

.p-top__jobs_item_image {
  aspect-ratio: 4/3;
  max-height: 12.5rem;
  min-height: 5rem;
}

.p-top__jobs_item_image img {
  -o-object-fit: contain;
  background-color: #fff;
  border-radius: 0.625rem;
     object-fit: contain;
  padding: 0.8rem;
}

.p-top__jobs_item_text {
  font-size: 0.75rem;
  font-weight: 700;
  height: 1.25rem;
  line-height: 1.6666666667;
  padding: 0 0.5em;
}
@media screen and (min-width: 768px) {
  .p-top__jobs_item_text {
    font-size: 1rem;
    height: auto;
    line-height: 1.5625;
    margin-top: 0.625rem;
  }
}

.p-top__education {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__education {
    margin-top: 9.375rem;
  }
}

.p-top__education_title span {
  line-height: 1.40625;
}

.p-top__education_title .sp-inline {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-top__education_title .sp-inline {
    display: none;
  }
}

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

.p-top__education_content {
  background-color: #fff;
  border-radius: 0.5rem;
  margin-top: 3.125rem;
  padding: 1.875rem;
}

.p-top__education_items {
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-top__education_items {
    padding: 0 1.875rem;
  }
}

.p-top__education_items li {
  align-items: center;
  border-bottom: 1px solid #ededed;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-top__education_items li {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.p-top__education_items li:last-of-type {
  border-bottom: none;
}

.p-top__education_image-content {
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 200px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__education_image-content {
    max-width: none;
    max-width: initial;
    width: 25%;
  }
}

.p-top__education_image-content__img {
  height: 130px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__education_image-content__img {
    height: 150px;
  }
}

.p-top__education_image-content__img img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  padding: 1.375rem 0.9375rem 0.9375rem;
  width: 100%;
}

.p-top__education_image-content p {
  font-weight: 700;
  padding-bottom: 0.9375rem;
  text-align: center;
}

.p-top__education_text {
  font-size: 0.875rem;
  line-height: 170%;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__education_text {
    font-size: 1rem;
    width: 70%;
  }
}

.p-top__education-annotation {
  font-size: 0.75rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-top__education-annotation {
    text-align: center;
  }
}

.p-top__accident {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__accident {
    margin-top: 9.375rem;
  }
}

.p-top__accident_title span {
  line-height: 1.40625;
}

.p-top__accident_content {
  margin-top: 3.125rem;
}

.p-top__accident_items li {
  align-items: center;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top__accident_items li {
    flex-direction: row;
  }
}

.p-top__accident-items__img {
  height: 130px;
  margin: 0 auto;
  min-width: 200px;
  width: 30%;
}
@media screen and (min-width: 768px) {
  .p-top__accident-items__img {
    height: 150px;
  }
}

.p-top__accident-items__img img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  padding: 0.625rem;
  width: 100%;
}

.p-top__accident-items__text {
  font-size: 0.875rem;
  line-height: 170%;
  margin: 0 auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-top__accident-items__text {
    font-size: 1rem;
    width: 65%;
  }
}

.p-top__accident-annotation {
  font-size: 0.75rem;
  text-align: left;
}

.p-top__price {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__price {
    margin-top: 9.375rem;
  }
}

.p-top__price_title .sp-inline {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-top__price_title .sp-inline {
    display: none;
  }
}

.p-top__price table, th, td {
  border: 1px solid #b2b2b2;
  border-collapse: collapse;
}

.p-top__price-plun {
  margin: 3.125rem 0 0.625rem;
  max-width: 900px;
  table-layout: fixed;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__price-plun {
    margin: 3.125rem auto 0.625rem;
    width: 90%;
  }
}

.p-top__price-plun tr th, td {
  font-weight: 700;
  padding: 0.625rem 0;
  width: 50%;
}

.p-top__price-plun th {
  background-color: #353535;
  color: #fff;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top__price-plun th {
    font-size: 1.25rem;
  }
}

.p-top__price-plun td {
  background-color: #fff;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top__price-plun td {
    font-size: 1.25rem;
  }
}

.p-top__price-plun .text-inline {
  display: inline-block;
}

.p-top__price-annotation {
  font-size: 0.75rem;
  margin: 0 auto;
  text-align: center;
}

.p-top__price-annotation-item {
  display: inline-block;
  text-align: left;
}

.p-top__flow {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow {
    margin-top: 10rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top__flow_item {
    display: flex;
    min-height: 8.5rem;
    position: relative;
  }
}

.p-top__flow_items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow_items {
    margin-top: 3.875rem;
  }
}

.p-top__flow_item_title {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__flow_item_title {
    height: 100%;
    position: absolute;
    width: 30%;
  }
}

.p-top__flow_item_number {
  background-color: #fff;
  background-color: #F6F6F6;
  border-radius: 0 0 0.625rem 0;
  color: #E60012;
  font-family: "Roboto", sans-serif;
  font-size: 2.1875rem;
  font-weight: 900;
  left: -0.4375rem;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 0 0.625rem 0 0.125rem;
  position: absolute;
  top: -0.0625rem;
  transform: skewX(-9deg);
  z-index: 15;
}
@media screen and (min-width: 768px) {
  .p-top__flow_item_number {
    -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    border-radius: 0 0 1.5625rem 0;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    font-size: 3rem;
    left: -0.4375rem;
    padding: 0 0.9375rem 0 0.125rem;
    top: -0.625rem;
  }
}

.p-top__flow_item_number span {
  left: 0.125rem;
  position: relative;
  top: -0.3125rem;
}
.p-top__flow_item_text {
  position: relative;
}

.p-top__flow_item_text::after {
  aspect-ratio: 40/25;
  background-color: #353535;
  border-radius: 0 0.1875rem 0 0;
  content: "";
  display: none;
  height: 1.75rem;
  position: absolute;
  right: 6%;
  top: 0;
  transform: skew(-58deg);
  width: 15%;
}
@media screen and (min-width: 768px) {
  .p-top__flow_item_text::after {
    display: block;
    right: 10%;
  }
}

.p-top__flow_item_text span {
  background-color: #353535;
  border-radius: 0 0.625rem 0 0;
  color: #fff;
  display: block;
  font-size: 1.3125rem;
  font-weight: 900;
  line-height: 1.1904761905;
  padding: 1.0625rem 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__flow_item_text span {
    -webkit-clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
    align-items: center;
    border-radius: 0 0 0 0.625rem;
            clip-path: polygon(0 0, 100% 0, 93% 100%, 0% 100%);
    display: grid;
    height: 100%;
    justify-items: center;
    place-items: center;
    width: 90%;
  }
}

.p-top__flow_item_description {
  background-color: #fff;
  border-radius: 0 0 0.625rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 170%;
  padding: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__flow_item_description {
    align-items: center;
    border-radius: 0.5rem;
    display: grid;
    flex: 1;
    font-size: 0.9375rem;
    padding: 1.8125rem 5rem 1.8125rem 33%;
    width: 90%;
  }
}

.p-top__flow_button {
  margin: 3.125rem auto 0;
  max-width: 33.75rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow_button {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top__flow_button.c-button::before {
    left: 0.375rem;
    top: 0.375rem;
  }
}

.p-top__faq {
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__faq {
    margin-top: 10rem;
  }
}

.p-top__faq_items {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-top__faq_items {
    margin-top: 5.1875rem;
  }
}

.p-top__faq_item_icon {
  display: inline-block;
  position: relative;
}

.p-top__faq_item_icon::after {
  background-color: #353535;
  border-radius: 0 0.1875rem 0 0;
  content: "";
  display: block;
  height: 1rem;
  position: absolute;
  right: -10%;
  top: 0;
  transform: skew(-58deg);
  width: 2.5rem;
}

.p-top__faq_item_icon span {
  background-color: #353535;
  border-radius: 0.125rem;
  color: #fff;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  padding: 0.125rem 1rem;
  position: relative;
  text-align: center;
  text-indent: -0.1875rem;
  transform: skew(-9deg);
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top__faq_item_icon span {
    font-size: 2.1875rem;
    left: -0.3125rem;
  }
}

.p-top__faq_item_contents {
  margin-top: -1.0625rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top__faq_item_contents {
    margin-top: -1.875rem;
    width: 97%;
  }
}

.p-top__faq_item_contents::after {
  aspect-ratio: 40/21;
  background-color: #fff;
  border-radius: 0 0.1875rem 0 0;
  content: "";
  display: none;
  height: 1.75rem;
  position: absolute;
  right: -0.9375rem;
  top: 0;
  transform: skew(-64deg);
  width: 15%;
}
@media screen and (min-width: 768px) {
  .p-top__faq_item_contents::after {
    display: block;
  }
}

.p-top__faq_item_question_answer {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 3rem 1.25rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__faq_item_question_answer {
    padding: 2.5rem 4.4375rem;
  }
}

.p-top__faq_item_question {
  color: #353535;
  font-size: 1rem;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (min-width: 768px) {
  .p-top__faq_item_question {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.p-top__faq_item_answer {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 170%;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top__faq_item_answer {
    font-size: 1rem;
    line-height: 170%;
  }
}

.p-top__contact {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top__contact {
    margin-top: 7.3125rem;
  }
}

.p-top__contact_inner.l-inner {
  max-width: 85.625rem;
}

.p-top__contact_content {
  background-image: url(../images/top/contact_bg_contents-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.625rem;
  box-shadow: 0 0.875rem 1.5rem rgba(0, 0, 0, 0.05);
  padding: 3.125rem 1.25rem 3.5625rem;
}
@media screen and (min-width: 768px) {
  .p-top__contact_content {
    background-image: url(../images/top/contact_bg_contents-pc.jpg);
    display: flex;
    justify-content: space-between;
    padding: clamp(
    1.875rem,
    -3.125rem + 10.4166666667vw,
    6.25rem
  ) clamp(
    1.875rem,
    -0.9821428571rem + 5.9523809524vw,
    4.375rem
  ) clamp(
    1.875rem,
    -3.125rem + 10.4166666667vw,
    6.25rem
  ) clamp(
    1.875rem,
    -3.125rem + 10.4166666667vw,
    6.25rem
  );
  }
}

.p-top__contact_title {
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 170%;
}

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

.p-top__contact_benefits_items {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top__contact_benefits_item {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.p-top__contact_content_button {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__contact_content_button {
    margin-top: 0;
    width: 52.4%;
  }
}

@media screen and (min-width: 768px) {
  .p-top__contact_button.c-button::before {
    left: 0.375rem;
    top: 0.375rem;
  }
}

.u-display__none {
  display: none;
}

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

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

/* Layout
========================================================================== */
/* Component
========================================================================== */
/* Project
========================================================================== */
/* Utility
========================================================================== */
/*# sourceMappingURL=style.css.map */
