/***
    The new CSS reset - version 1.11.3 (last updated 25.08.2024)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
img {
  height: auto;
  vertical-align: bottom;
  width: 100%;
}

a:not([class]) {
  color: var(--color-font);
}
@media (any-hover: hover) {
  a:not([class]):hover {
    opacity: 0.8;
  }
}

b, strong {
  font-weight: bolder;
}

main > section {
  padding: 0;
}

:root {
  --color-font: #666;
  --color-font-strong: #4d4d4d;
  --color-primary: #5480d6;
  --color-secondary: #ff6666;
  --color-tertiary: #fff9ab;
  --color-quaternary: #ff8585;
  --gradient: linear-gradient(90deg, rgba(119, 159, 255, 1) 0%, rgba(198, 145, 237, 1) 100%);
  --font-NotoSansJP: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", YuGothic, sans-serif;
}

body {
  background: #fff;
  color: var(--color-font);
  font-family: var(--font-NotoSansJP);
  font-weight: 400;
  line-height: 1;
  margin-inline: auto;
  overflow-wrap: break-word;
  width: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  body {
    font-size: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  body {
    font-size: 18px;
    min-width: 1080px;
  }
}

.l-wrapper {
  overflow: hidden;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .l-inner {
    margin-inline: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-inner {
    width: 92.593%;
  }
}
@media screen and (min-width: 1080px) {
  .l-inner {
    width: 1000px;
  }
}

.l-header {
  background: rgba(255, 255, 255, 0.9);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 769px) {
  .l-header {
    box-shadow: 10px -10px 10px rgba(108, 131, 168, 0.15);
  }
}

.l-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-inline-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__inner {
    padding-block: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__inner {
    padding-block: 10px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 33.2vw;
  }
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    width: 20.9%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__logo {
    padding-block-end: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__logo {
    padding-block-end: 16px;
  }
}

@media screen and (max-width: 768px) {
  .l-header__btn {
    width: 41.867vw;
  }
}
@media screen and (min-width: 769px) {
  .l-header__btn {
    width: 33%;
  }
}
.l-header__btn a {
  display: flex;
  align-items: center;
  background: #6A87FF;
  background: linear-gradient(0deg, rgb(106, 135, 255) 0%, rgb(165, 184, 255) 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-header__btn a {
    height: 16vw;
    box-shadow: 0.533vw 0.533vw 0.533vw rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__btn a {
    height: 6.481vw;
    border-radius: 100vw;
    box-shadow: 0.37vw 0.37vw 0.37vw rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 1080px) {
  .l-header__btn a {
    height: 70px;
    border-radius: 100vw;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  }
}
.l-header__btn a::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 768px) {
  .l-header__btn a::before {
    width: 1.6vw;
    height: 2.933vw;
    background: url(../images/header_btn_arrow_sp.svg) no-repeat top left/100%;
    right: 1.6vw;
  }
}
@media screen and (min-width: 769px) {
  .l-header__btn a::before {
    background: url(../images/header_btn_arrow_pc.svg) no-repeat top left/100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__btn a::before {
    width: 2.5vw;
    height: 1.481vw;
    right: 1.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__btn a::before {
    width: 27px;
    height: 16px;
    right: 16px;
  }
}
.l-header__btn a .l-header__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .l-header__btn a .l-header__circle {
    width: 10.667vw;
    height: 10.667vw;
    margin: 0 2.267vw 0 1.6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__btn a .l-header__circle {
    width: 5vw;
    height: 5vw;
    margin: 0 1.574vw 0 1.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__btn a .l-header__circle {
    width: 54px;
    height: 54px;
    margin: 0 17px 0 12px;
  }
}
.l-header__btn a .l-header__circle span {
  color: #5480D6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .l-header__btn a .l-header__circle span {
    font-size: 2.467vw;
    line-height: 3vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__btn a .l-header__circle span {
    font-size: 1.111vw;
    line-height: 1.343vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__btn a .l-header__circle span {
    font-size: 12px;
    line-height: 14.5px;
  }
}
.l-header__btn a .l-header__circle span strong {
  font-weight: 500;
  vertical-align: 0;
}
@media screen and (max-width: 768px) {
  .l-header__btn a .l-header__circle span strong {
    font-size: 3.533vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__btn a .l-header__circle span strong {
    font-size: 1.574vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__btn a .l-header__circle span strong {
    font-size: 17px;
  }
}
.l-header__btn a .l-header__text-area {
  color: #fff;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 769px) {
  .l-header__btn a .l-header__text-area {
    text-align: center;
  }
}
.l-header__btn a .l-header__text-area .l-header__text01 {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .l-header__btn a .l-header__text-area .l-header__text01 {
    font-size: 2.933vw;
    line-height: 1.31;
    margin-bottom: 1.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__btn a .l-header__text-area .l-header__text01 {
    font-size: 1.481vw;
    margin-bottom: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__btn a .l-header__text-area .l-header__text01 {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__btn a .l-header__text-area .l-header__text02 {
    font-size: 1.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-header__btn a .l-header__text-area .l-header__text02 {
    font-size: 1.204vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-header__btn a .l-header__text-area .l-header__text02 {
    font-size: 13px;
  }
}

.l-footer {
  background: #f66;
}

@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding-block: 5.6vw 4vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-footer__inner {
    padding-block: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-footer__inner {
    padding-block: 30px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__logo {
    margin-inline: auto;
    width: 38.4vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__logo {
    margin-inline-start: 3.5%;
    width: 28.8%;
  }
}

.l-footer__nav-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list {
    justify-content: center;
    margin-block-start: 3.733vw;
  }
}
@media screen and (min-width: 769px) {
  .l-footer__nav-list {
    justify-content: flex-end;
  }
}

.l-footer__nav-item {
  border-right: 1px solid #fff;
  letter-spacing: 0.08em;
  padding-inline: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-item {
    font-size: 3.2vw;
  }
}
.l-footer__nav-item:nth-of-type(1) {
  border-left: 1px solid #fff;
}

.l-footer__nav-link {
  color: #fff;
}
@media (any-hover: hover) {
  .l-footer__nav-link:hover {
    opacity: 0.8;
    text-decoration: underline;
  }
}

.l-copyright {
  background: #ff9494;
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-copyright {
    font-size: 2.667vw;
    line-height: 2.5;
  }
}
@media screen and (min-width: 769px) {
  .l-copyright {
    line-height: 3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .l-copyright {
    font-size: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .l-copyright {
    font-size: 10px;
  }
}

.c-cta01 {
  background: linear-gradient(135deg, rgb(255, 177, 177) 0%, rgb(255, 168, 168) 6.26%, rgb(255, 139, 139) 30.18%, rgb(255, 119, 119) 53.97%, rgb(255, 106, 106) 77.39%, rgb(255, 102, 102) 100%);
}

@media screen and (max-width: 768px) {
  .c-cta01__inner {
    padding-block: 8vw 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__inner {
    padding-block: 4.63vw 6.944vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__inner {
    padding-block: 50px 75px;
  }
}

.c-cta01__title {
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-cta01__title {
    font-size: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__title {
    font-size: 2.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__title {
    font-size: 32px;
  }
}
.c-cta01__title span {
  background-position: top left 0;
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  .c-cta01__title span {
    padding-top: 0.667vw;
    background-size: 5.733vw 1.333vw;
    background-image: radial-gradient(0.533vw 0.533vw at center center, #fff, #fff 100%, transparent, transparent);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__title span {
    padding-top: 0.463vw;
    background-size: 3.194vw 0.926vw;
    background-image: radial-gradient(0.37vw 0.37vw at center center, #fff, #fff 100%, transparent, transparent);
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__title span {
    padding-top: 5px;
    background-size: 34.5px 10px;
    background-image: radial-gradient(4px 4px at center center, #fff, #fff 100%, transparent, transparent);
  }
}

.c-cta01__btn-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-cta01__btn-list {
    gap: 5.333vw;
    flex-direction: column;
    margin-block-start: 4.667vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .c-cta01__btn-list {
    justify-content: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn-list {
    gap: 2.593vw;
    margin-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn-list {
    gap: 28px;
    margin-block-start: 25px;
  }
}

@media screen and (max-width: 768px) {
  .c-cta01__btn {
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .c-cta01__btn {
    width: 48.6%;
  }
}
.c-cta01__btn a {
  display: flex;
  align-items: center;
  border-radius: 100vw;
  background: #6A87FF;
  background: linear-gradient(0deg, rgb(106, 135, 255) 0%, rgb(165, 184, 255) 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta01__btn a {
    height: 20vw;
    box-shadow: 0.667vw 0.667vw 0.667vw rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn a {
    height: 12.037vw;
    box-shadow: 0.463vw 0.463vw 0.463vw rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn a {
    height: 130px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  }
}
.c-cta01__btn a::before {
  content: "";
  background: url(../images/c-cta01_arrow01.svg) no-repeat top left/100%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 768px) {
  .c-cta01__btn a::before {
    width: 6.8vw;
    height: 2.133vw;
    padding-bottom: 1.6vw;
    right: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn a::before {
    width: 3.519vw;
    height: 1.111vw;
    padding-bottom: 0.926vw;
    right: 1.759vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn a::before {
    width: 38px;
    height: 12px;
    padding-bottom: 10px;
    right: 19px;
  }
}
.c-cta01__btn a .c-cta01__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .c-cta01__btn a .c-cta01__circle {
    width: 16vw;
    height: 16vw;
    margin: 0 3.067vw 0 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn a .c-cta01__circle {
    width: 8.333vw;
    height: 8.333vw;
    margin: 0 1.574vw 0 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn a .c-cta01__circle {
    width: 90px;
    height: 90px;
    margin: 0 17px 0 15px;
  }
}
.c-cta01__btn a .c-cta01__circle span {
  color: #5480D6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-cta01__btn a .c-cta01__circle span {
    font-size: 3.467vw;
    line-height: 4.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn a .c-cta01__circle span {
    font-size: 1.852vw;
    line-height: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn a .c-cta01__circle span {
    font-size: 20px;
    line-height: 24px;
  }
}
.c-cta01__btn a .c-cta01__circle span strong {
  font-weight: 500;
  vertical-align: 0;
}
@media screen and (max-width: 768px) {
  .c-cta01__btn a .c-cta01__circle span strong {
    font-size: 5.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn a .c-cta01__circle span strong {
    font-size: 2.685vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn a .c-cta01__circle span strong {
    font-size: 29px;
  }
}
.c-cta01__btn a .c-cta01__text-area {
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
}
.c-cta01__btn a .c-cta01__text-area .c-cta01__text01 {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-cta01__btn a .c-cta01__text-area .c-cta01__text01 {
    font-size: 4.267vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn a .c-cta01__text-area .c-cta01__text01 {
    font-size: 2.222vw;
    margin-bottom: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn a .c-cta01__text-area .c-cta01__text01 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-cta01__btn a .c-cta01__text-area .c-cta01__text02 {
    font-size: 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta01__btn a .c-cta01__text-area .c-cta01__text02 {
    font-size: 1.944vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta01__btn a .c-cta01__text-area .c-cta01__text02 {
    font-size: 21px;
  }
}
.c-cta01__btn:nth-child(2) a {
  justify-content: center;
  background: #D4DDFF;
  background: linear-gradient(0deg, rgb(212, 221, 255) 0%, rgb(255, 255, 255) 100%);
}
.c-cta01__btn:nth-child(2) a::before {
  background: url(../images/c-cta01_arrow02.svg) no-repeat top left/100%;
}
.c-cta01__btn:nth-child(2) a .c-cta01__text-area {
  color: #5480D6;
}

.c-cta02 {
  background: linear-gradient(135deg, rgb(255, 177, 177) 0%, rgb(255, 168, 168) 6.26%, rgb(255, 139, 139) 30.18%, rgb(255, 119, 119) 53.97%, rgb(255, 106, 106) 77.39%, rgb(255, 102, 102) 100%);
}

.c-cta02__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta02__inner {
    padding-block: 9.6vw 11.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__inner {
    padding-block: 6.667vw 6.944vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__inner {
    padding-block: 72px 75px;
  }
}

.c-cta02__title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
  background: url(../images/cta02_title.svg) no-repeat top left/100%;
  box-sizing: border-box;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-cta02__title {
    font-size: 5.067vw;
    width: 87.6vw;
    height: 12.8vw;
    padding-top: 2.267vw;
    top: -4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__title {
    font-size: 2.963vw;
    width: 50.741vw;
    height: 7.407vw;
    padding-top: 1.574vw;
    top: -2.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__title {
    font-size: 32px;
    width: 548px;
    height: 80px;
    padding-top: 17px;
    top: -26px;
  }
}
.c-cta02__title span {
  vertical-align: 0;
}
.c-cta02__title .min01 {
  font-size: 80%;
  vertical-align: 0.06em;
}
@media screen and (max-width: 768px) {
  .c-cta02__title .min01 {
    margin-inline: -0.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__title .min01 {
    margin-inline: -0.278vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__title .min01 {
    margin-inline: -3px;
  }
}
.c-cta02__title .min02 {
  font-size: 90%;
  vertical-align: 0.02em;
}

.c-cta02__list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-cta02__list {
    gap: 5.333vw;
    flex-direction: column;
    margin-block-start: 4.267vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .c-cta02__list {
    justify-content: space-between;
  }
}

.c-cta02__item {
  background: #ff8d8d;
}
@media screen and (max-width: 768px) {
  .c-cta02__item {
    border-radius: 0.533vw;
    box-shadow: 1.333vw 1.333vw 1.333vw rgba(0, 0, 0, 0.05);
    padding-block: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__item {
    border-radius: 0.37vw;
    box-shadow: 0.926vw 0.926vw 0.926vw rgba(0, 0, 0, 0.05);
    padding-block: 4.167vw 3.704vw;
    width: 45vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__item {
    border-radius: 4px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
    padding-block: 45px 40px;
    width: 486px;
  }
}
.c-cta02__item .c-cta02__btn a {
  display: block;
  line-height: 1.36;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  margin: 0 auto;
  border-radius: 100vw;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-cta02__item .c-cta02__btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.267vw;
    line-height: 1.35;
    width: 77.333vw;
    height: 17.333vw;
    box-shadow: 0.667vw 0.667vw 0.667vw rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__item .c-cta02__btn a {
    font-size: 2.361vw;
    width: 39.444vw;
    height: 12.037vw;
    padding-top: 2.685vw;
    box-shadow: 0.463vw 0.463vw 0.463vw rgba(0, 0, 0, 0.15);
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__item .c-cta02__btn a {
    font-size: 25.5px;
    width: 426px;
    height: 130px;
    padding-top: 29px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
  }
}
.c-cta02__item .c-cta02__btn a::before {
  content: "";
  background: url(../images/c-cta01_arrow01.svg) no-repeat top left/100%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 768px) {
  .c-cta02__item .c-cta02__btn a::before {
    width: 6.8vw;
    height: 2.133vw;
    padding-bottom: 1.6vw;
    right: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__item .c-cta02__btn a::before {
    width: 3.519vw;
    height: 1.111vw;
    padding-bottom: 0.926vw;
    right: 1.759vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__item .c-cta02__btn a::before {
    width: 38px;
    height: 12px;
    padding-bottom: 10px;
    right: 19px;
  }
}
.c-cta02__item:nth-child(1) .c-cta02__btn a {
  color: #fff;
  background: #6A87FF;
  background: linear-gradient(0deg, rgb(106, 135, 255) 0%, rgb(165, 184, 255) 100%);
}
.c-cta02__item:nth-child(2) .c-cta02__btn a {
  color: #5480D6;
  background: #D4DDFF;
  background: linear-gradient(0deg, rgb(212, 221, 255) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__item:nth-child(2) .c-cta02__btn a {
    font-size: 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__item:nth-child(2) .c-cta02__btn a {
    font-size: 28px;
  }
}
.c-cta02__item:nth-child(2) .c-cta02__btn a::before {
  background: url(../images/c-cta01_arrow02.svg) no-repeat top left/100%;
}

.c-cta02__sub-title {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-cta02__sub-title {
    font-size: 3.733vw;
    margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__sub-title {
    font-size: 0.741vw;
    margin-block-start: 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__sub-title {
    font-size: 28px;
    margin-block-start: 35px;
  }
}

.c-cta02__text {
  color: #fff;
  letter-spacing: 0.08em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-cta02__text {
    line-height: 2;
    margin-block-start: 1.333vw;
    width: 77.333vw;
  }
}
@media screen and (min-width: 769px) {
  .c-cta02__text {
    line-height: 1.8;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .c-cta02__text {
    font-size: 1.852vw;
    margin-block-start: 0.926vw;
    width: 37.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta02__text {
    font-size: 20px;
    margin-block-start: 10px;
    width: 406px;
  }
}

@media screen and (max-width: 768px) {
  .p-kv {
    background: url(../images/kv_bg_sp.jpg) 0 0/100% auto no-repeat;
  }
}
@media screen and (min-width: 769px) {
  .p-kv {
    background: url(../images/kv_bg_pc.jpg) 50% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv {
    background-size: 203.704vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-kv__inner {
    padding-block: 22vw 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__inner {
    padding-block: 13.148vw 4.167vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__inner {
    padding-block: 142px 45px;
  }
}

@media screen and (max-width: 768px) {
  .p-kv__title {
    margin-inline-start: 6.667vw;
  }
}
.p-kv__title .p-kv__title01 {
  color: #4D4D4D;
  text-align: center;
  font-weight: 500;
  background: url(../images/kv_title_frame.svg) no-repeat bottom left/100%;
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title01 {
    font-size: 3.6vw;
    width: 43.467vw;
    padding-bottom: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title01 {
    font-size: 2.407vw;
    width: 28.519vw;
    padding-bottom: 3.241vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title01 {
    font-size: 26px;
    width: 308px;
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title02 {
    height: 48vw;
  }
}
.p-kv__title .p-kv__title02 strong[class^=p-kv__title_deco] {
  font-weight: 900;
  background: #FFBABA;
  background: linear-gradient(135deg, rgb(255, 186, 186) 0%, rgb(255, 102, 102) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco01 {
    font-size: 10.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco01 {
    font-size: 7.269vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco01 {
    font-size: 78.5px;
  }
}
.p-kv__title .p-kv__title02 .p-kv__title_deco01 .p-kv__title_deco01_min {
  font-size: 50%;
  vertical-align: 0.35em;
}
.p-kv__title .p-kv__title02 .p-kv__title_deco02 {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco02 {
    font-size: 15.867vw;
    line-height: 16.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco02 {
    font-size: 10.509vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco02 {
    font-size: 113.5px;
  }
}
.p-kv__title .p-kv__title02 .p-kv__title_deco02 .p-kv__title_deco02_large {
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco02 .p-kv__title_deco02_large {
    font-size: 20vw;
    vertical-align: -1.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco02 .p-kv__title_deco02_large {
    font-size: 13.241vw;
    vertical-align: -0.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title02 .p-kv__title_deco02 .p-kv__title_deco02_large {
    font-size: 143px;
    vertical-align: -8px;
  }
}
.p-kv__title .p-kv__title02 span[class^=p-kv__title_min] {
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min01 {
    font-size: 6.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min01 {
    font-size: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min01 {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min02 {
    font-size: 8.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min02 {
    font-size: 5.833vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min02 {
    font-size: 63px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min03 {
    font-size: 10.8vw;
    line-height: 14.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min03 {
    font-size: 5.833vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title02 .p-kv__title_min03 {
    font-size: 63px;
  }
}
.p-kv__title .p-kv__title03 {
  color: #fff;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .p-kv__title .p-kv__title03 {
    font-size: 5.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__title .p-kv__title03 {
    font-size: 4.352vw;
    margin-top: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__title .p-kv__title03 {
    font-size: 47px;
    margin-top: 30px;
  }
}

.p-kv__text {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-kv__text {
    font-size: 4vw;
    margin-block-start: 6.4vw;
    margin-inline-start: 6.4vw;
    text-shadow: 0 0 1.333vw #fff, 0 0 1.333vw #fff, 0 0 1.333vw #fff, 0 0 1.333vw #fff, 0 0 1.333vw #fff, 0 0 1.333vw #fff;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__text {
    font-size: 2.407vw;
    margin-block-start: 3.241vw;
    text-shadow: 0 0 0.926vw #fff, 0 0 0.926vw #fff, 0 0 0.926vw #fff, 0 0 0.926vw #fff, 0 0 0.926vw #fff, 0 0 0.926vw #fff;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__text {
    font-size: 26px;
    margin-block-start: 35px;
    text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  }
}

.p-kv__list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-kv__list {
    justify-content: center;
    margin-block-start: 10vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__list {
    gap: 1.389vw;
    margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__list {
    gap: 15px;
    margin-block-start: 40px;
  }
}

.p-kv__item {
  transform: translateZ(0);
  border-radius: 50%;
  background: #E6E6E6;
  background: linear-gradient(0deg, rgb(230, 230, 230) 0%, rgb(255, 255, 255) 41%);
}
@media screen and (max-width: 768px) {
  .p-kv__item {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(1.195vw 1.195vw 1.195vw rgba(0, 0, 0, 0.15));
    border: 0.533vw solid #FFD4D4;
    margin-inline: -1.333vw;
    position: relative;
    width: 32.267vw;
    height: 32.267vw;
  }
  .p-kv__item:nth-of-type(1) {
    z-index: 3;
  }
  .p-kv__item:nth-of-type(2) {
    z-index: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item {
    filter: drop-shadow(0.754vw 0.754vw 0.754vw rgba(0, 0, 0, 0.15));
    border: 0.37vw solid #FFD4D4;
    width: 20.37vw;
    height: 20.37vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item {
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.15));
    border: 4px solid #FFD4D4;
    width: 220px;
    height: 220px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item .item_inner {
    padding-top: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item .item_inner {
    padding-top: 40px;
  }
}
.p-kv__item .item_inner .top_text {
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-kv__item .item_inner .top_text {
    font-size: 3.467vw;
    margin-bottom: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item .item_inner .top_text {
    font-size: 2.407vw;
    margin-bottom: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item .item_inner .top_text {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.p-kv__item .item_inner .main_text_area {
  color: #FF8585;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-kv__item .item_inner .main_text_area {
    gap: 1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item .item_inner .main_text_area {
    gap: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item .item_inner .main_text_area {
    gap: 10px;
  }
}
.p-kv__item .item_inner .main_text_area .unit {
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
  border: 1px solid #FF8585;
}
@media screen and (max-width: 768px) {
  .p-kv__item .item_inner .main_text_area .unit {
    font-size: 2.8vw;
    padding: 1.067vw 1.067vw;
    border-radius: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item .item_inner .main_text_area .unit {
    font-size: 1.667vw;
    padding: 0.741vw 0.556vw;
    border-radius: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item .item_inner .main_text_area .unit {
    font-size: 18px;
    padding: 8px 6px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__item .item_inner .main_text_area .main {
    font-size: 4.933vw;
    line-height: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item .item_inner .main_text_area .main {
    font-size: 3.148vw;
    line-height: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item .item_inner .main_text_area .main {
    font-size: 34px;
    line-height: 40px;
  }
}
.p-kv__item .item_inner .main_text_area .main strong {
  color: #FF8585;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-kv__item .item_inner .main_text_area .main strong {
    font-size: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item .item_inner .main_text_area .main strong {
    font-size: 5.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item .item_inner .main_text_area .main strong {
    font-size: 62px;
    vertical-align: -2px;
  }
}
.p-kv__item .item_inner .sub_text {
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-kv__item .item_inner .sub_text {
    font-size: 2.133vw;
    line-height: 1.25;
    margin-top: 0.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item .item_inner .sub_text {
    font-size: 1.667vw;
    margin-top: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item .item_inner .sub_text {
    font-size: 18px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__item:nth-child(1) .item_inner .top_text {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item:nth-child(1) .item_inner .top_text {
    margin-bottom: 1.574vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item:nth-child(1) .item_inner .top_text {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__item:nth-child(1) .item_inner .main_text_area .main {
    font-size: 3.467vw;
    line-height: 6.533vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item:nth-child(1) .item_inner .main_text_area .main {
    font-size: 2.13vw;
    line-height: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item:nth-child(1) .item_inner .main_text_area .main {
    font-size: 23px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__item:nth-child(1) .item_inner .main_text_area .main strong {
    font-size: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item:nth-child(1) .item_inner .main_text_area .main strong {
    font-size: 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item:nth-child(1) .item_inner .main_text_area .main strong {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__item:nth-child(2) .item_inner {
    padding-top: 1.333vw;
  }
}
.p-kv__item:nth-child(2) .item_inner .main_text_area {
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-kv__item:nth-child(2) .item_inner .sub_text {
    font-size: 0.833vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-kv__item:nth-child(2) .item_inner .sub_text {
    font-size: 9px;
  }
}
.p-kv__item:nth-child(3) .item_inner .main_text_area {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .p-tool {
    margin-block-start: 15.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-tool {
    align-items: center;
    display: flex;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-tool {
    gap: 2.5vw;
    margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-tool {
    gap: 27px;
    margin-block-start: 20px;
  }
}

.p-tool__title {
  background: var(--gradient);
  border-radius: 100vw;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-tool__title {
    line-height: 1.923;
    margin-inline: auto;
    width: 50.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-tool__title {
    line-height: 1.222;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-tool__title {
    padding-block: 1.667vw;
    width: 13.889vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-tool__title {
    padding-block: 18px;
    width: 150px;
  }
}

.p-tool__list {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-tool__list {
    line-height: 1.615;
    margin-block-start: 2.667vw;
    margin-inline: auto;
    width: 84vw;
  }
}
@media screen and (min-width: 769px) {
  .p-tool__list {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-tool__list {
    width: 75.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-tool__list {
    width: 820px;
  }
}

@media screen and (max-width: 768px) {
  .p-intro {
    background: url(../images/intro_bg.jpg) 50% 0 no-repeat;
    background-size: 266.667vw auto;
  }
}
@media screen and (min-width: 769px) {
  .p-intro {
    background: url(../images/intro_bg.jpg) 50% 0 no-repeat, url(../images/expert_bg_pc.jpg) 50% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-intro {
    background-size: 185.185vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-intro__inner {
    padding-block-start: 14.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-intro__inner {
    padding-block-start: 6.944vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-intro__inner {
    padding-block-start: 75px;
  }
}

.p-intro__lead {
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-inline: auto;
  background: url(../images/intro_lead_bg.svg) no-repeat top left/100%;
}
@media screen and (max-width: 768px) {
  .p-intro__lead {
    font-size: 4.8vw;
    width: 54.667vw;
    height: 10.667vw;
    padding-top: 1.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-intro__lead {
    font-size: 2.593vw;
    width: 29.444vw;
    height: 5.648vw;
    padding-top: 0.648vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-intro__lead {
    font-size: 28px;
    width: 318px;
    height: 61px;
    padding-top: 7px;
  }
}

.p-intro__title {
  color: var(--color-font-strong);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-intro__title {
    font-size: 6.24vw;
    line-height: 1.5;
    margin-block-start: -2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-intro__title {
    font-size: 3.333vw;
    margin-block-start: -0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-intro__title {
    font-size: 36px;
    margin-block-start: -10px;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__title::first-letter {
    font-size: 9.707vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-intro__title::first-letter {
    font-size: 5.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-intro__title::first-letter {
    font-size: 56px;
  }
}

.p-comparison {
  background: url(../images/comparison_bg.png) 50% 100% no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-comparison {
    background-size: 133.333vw auto;
    margin-block-start: 5.333vw;
    margin-inline: auto;
    padding-block: 16vw 26.667vw;
    padding-inline: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison {
    background-size: 92.593vw auto;
    margin-block-start: 3.704vw;
    padding-block: 4.63vw 14.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison {
    margin-block-start: 40px;
    padding-block: 50px 160px;
  }
}

.p-comparison__title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: absolute;
  text-align: center;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-comparison__title {
    border-radius: 1.333vw;
    font-size: 3.733vw;
    line-height: 1.286;
    height: calc(95% - 26.667vw);
    padding-block-start: 3.333vw;
    width: 37.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-comparison__title {
    line-height: 2.083;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__title {
    border-radius: 0.926vw;
    font-size: 2.222vw;
    height: calc(95% - 14.815vw);
    width: 31.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__title {
    border-radius: 10px;
    font-size: 24px;
    height: calc(95% - 160px);
    width: 340px;
  }
}
.p-comparison__title--before {
  background: #999;
}
@media screen and (max-width: 768px) {
  .p-comparison__title--before {
    left: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__title--before {
    left: 6.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__title--before {
    left: 72px;
  }
}
.p-comparison__title--after {
  background: var(--gradient);
}
@media screen and (max-width: 768px) {
  .p-comparison__title--after {
    right: 9.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__title--after {
    right: 6.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__title--after {
    right: 72px;
  }
}

.p-comparison__title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #FF8585;
  border-radius: 50%;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-comparison__title-icon {
    font-size: 3.867vw;
    right: -6.667vw;
    top: -10.667vw;
    width: 16vw;
    height: 16vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__title-icon {
    font-size: 2.037vw;
    right: -4.167vw;
    top: -5.556vw;
    width: 7.963vw;
    height: 7.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__title-icon {
    font-size: 22px;
    right: -45px;
    top: -60px;
    width: 86px;
    height: 86px;
  }
}

.p-comparison__body {
  display: grid;
  grid-template-columns: 1;
}
@media screen and (max-width: 768px) {
  .p-comparison__body {
    gap: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__body {
    gap: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__body {
    gap: 20px;
  }
}

.p-comparison__row {
  background: var(--gradient);
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: 1;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-comparison__row {
    border-radius: 1.067vw;
    box-shadow: 1.264vw 1.264vw 1.264vw rgba(0, 0, 0, 0.1);
    padding: 1px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__row {
    border-radius: 0.741vw;
    box-shadow: 1.065vw 1.065vw 1.065vw rgba(0, 0, 0, 0.1);
    padding: 2px;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__row {
    border-radius: 8px;
    box-shadow: 11px 11px 11px rgba(0, 0, 0, 0.1);
    padding: 2px;
  }
}

.p-comparison__arrow {
  background: #e8e8ef;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-1px, -50%);
}
@media screen and (max-width: 768px) {
  .p-comparison__arrow {
    height: 5.333vw;
    width: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__arrow {
    height: 3.704vw;
    width: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__arrow {
    height: 40px;
    width: 20px;
  }
}

.p-comparison__card {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
}
@media screen and (max-width: 768px) {
  .p-comparison__card {
    gap: 4vw;
    padding-block: 6.667vw 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__card {
    padding-block: 3.241vw 4.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__card {
    gap: 15px;
    padding-block: 35px 50px;
  }
}

.p-comparison__sub-title {
  display: grid;
  font-weight: 700;
  letter-spacing: 0.08em;
  place-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-comparison__sub-title {
    font-size: 3.733vw;
    line-height: 1.571;
  }
}
@media screen and (min-width: 769px) {
  .p-comparison__sub-title {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__sub-title {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__sub-title {
    font-size: 24px;
  }
}

.p-comparison__text {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-comparison__text {
    line-height: 2;
    margin-inline: auto;
    width: 32vw;
  }
}
@media screen and (min-width: 769px) {
  .p-comparison__text {
    line-height: 1.667;
    text-align: center;
  }
}

.p-comparison__card--before {
  background: #e8e8ef;
}
@media screen and (max-width: 768px) {
  .p-comparison__card--before {
    border-bottom-left-radius: 0.8vw;
    border-top-left-radius: 0.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__card--before {
    border-bottom-left-radius: 0.556vw;
    border-top-left-radius: 0.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__card--before {
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
  }
}
@media screen and (max-width: 768px) {
  .p-comparison__card--before .p-comparison__card {
    padding-inline-start: 0.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__card--before .p-comparison__card {
    padding-inline-end: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__card--before .p-comparison__card {
    padding-inline-end: 15px;
  }
}
.p-comparison__card--before .p-comparison__sub-title,
.p-comparison__card--before .p-comparison__text-em {
  color: #6c83a8;
}

.p-comparison__card--after {
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-comparison__card--after {
    border-bottom-right-radius: 0.8vw;
    border-top-right-radius: 0.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__card--after {
    border-bottom-right-radius: 0.556vw;
    border-top-right-radius: 0.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__card--after {
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
  }
}
@media screen and (max-width: 768px) {
  .p-comparison__card--after .p-comparison__card {
    padding-inline-end: 0.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-comparison__card--after .p-comparison__card {
    padding-inline-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-comparison__card--after .p-comparison__card {
    padding-inline-start: 15px;
  }
}
.p-comparison__card--after .p-comparison__sub-title,
.p-comparison__card--after .p-comparison__text-em {
  color: var(--color-quaternary);
}

.p-expert {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-expert {
    margin-block-start: -17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-expert {
    margin-block-start: -8.333vw;
    padding-block-end: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-expert {
    margin-block-start: -90px;
    padding-block-end: 100px;
  }
}

@media screen and (max-width: 768px) {
  .p-expert__name {
    margin-inline-start: 28.667vw;
    width: 47.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-expert__name {
    margin-inline: auto;
    width: 25.8%;
  }
}

.p-expert__text01 {
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-expert__text01 {
    font-size: 4.267vw;
    margin-block-start: 15.333vw;
    text-align: 0.5em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-expert__text01 {
    font-size: 2.222vw;
    margin-block-start: 7.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-expert__text01 {
    font-size: 24px;
    margin-block-start: 80px;
  }
}

.p-expert__text02 {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-expert__text02 {
    gap: 2vw;
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-expert__text02 {
    gap: 1.389vw;
    margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-expert__text02 {
    gap: 15px;
    margin-block-start: 20px;
  }
}

.p-expert__highlight {
  color: #fff;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.08em;
  padding-inline: 0.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-expert__highlight {
    font-size: 5.893vw;
    line-height: 1.294;
  }
}
@media screen and (min-width: 769px) {
  .p-expert__highlight {
    line-height: 1.294;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-expert__highlight {
    font-size: 3.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-expert__highlight {
    font-size: 34px;
  }
}
.p-expert__highlight::after {
  background: var(--gradient);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: skew(25deg);
  width: 100%;
}

.p-expert__highlight-label {
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 768px) {
  .p-expert__highlight-large {
    font-size: 6.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-expert__highlight-large {
    font-size: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-expert__highlight-large {
    font-size: 40px;
  }
}

.p-expert__text03 {
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-expert__text03 {
    font-size: 6.933vw;
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-expert__text03 {
    font-size: 3.704vw;
    margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-expert__text03 {
    font-size: 40px;
    margin-block-start: 15px;
  }
}

@media screen and (max-width: 768px) {
  .p-expert__image {
    margin-block-start: 5.333vw;
  }
}

.p-about {
  background-color: #edefef;
  background-position: 50% 0, 50% 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-about {
    background-image: url(../images/about_bg_01_sp.png), url(../images/about_bg_02_sp.png);
    background-size: 100% auto;
  }
}
@media screen and (min-width: 769px) {
  .p-about {
    background-image: url(../images/about_bg_01_pc.png), url(../images/about_bg_02_pc.png);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about {
    background-size: 185.185vw auto;
  }
}

.p-about__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    padding-block: 20.667vw 16vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about__inner {
    padding-block: 8.796vw 11.574vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-about__inner {
    padding-block: 95px 125px;
  }
}

.p-about__title {
  color: #fff;
  text-align: center;
  letter-spacing: 0.08em;
  background: url(../images/about_title_bg.svg) no-repeat top left/100%;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .p-about__title {
    font-size: 3.467vw;
    line-height: 4.533vw;
    top: -12vw;
    width: 24vw;
    height: 27.2vw;
    padding-top: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about__title {
    font-size: 1.667vw;
    line-height: 2.13vw;
    top: -5.556vw;
    width: 11.111vw;
    height: 12.685vw;
    padding-top: 2.13vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-about__title {
    font-size: 18px;
    line-height: 23px;
    top: -60px;
    width: 120px;
    height: 137px;
    padding-top: 23px;
  }
}
.p-about__title strong {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-about__title strong {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about__title strong {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-about__title strong {
    font-size: 24px;
  }
}

.p-about__text01 {
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__text01 {
    line-height: 2;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-about__text01 {
    line-height: 1.7;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about__text01 {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-about__text01 {
    font-size: 20px;
  }
}

.p-about__text02 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-about__text02 {
    flex-wrap: wrap;
    gap: 4vw 2.667vw;
    margin-top: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about__text02 {
    gap: 1.111vw;
    margin-top: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-about__text02 {
    gap: 12px;
    margin-top: 25px;
  }
}
.p-about__text02 .p-about__text02_box strong {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-about__text02 .p-about__text02_box strong {
    font-size: 7.2vw;
    padding: 1.333vw 4vw 1.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about__text02 .p-about__text02_box strong {
    font-size: 3.704vw;
    padding: 0.648vw 1.852vw 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-about__text02 .p-about__text02_box strong {
    font-size: 40px;
    padding: 7px 20px 10px;
  }
}
.p-about__text02 .p-about__text02_box:nth-child(1) strong {
  background: #779FFF;
  background: linear-gradient(135deg, rgb(119, 159, 255) 0%, rgb(159, 152, 246) 100%);
}
.p-about__text02 .p-about__text02_box:nth-child(2) strong {
  background: #9F98F6;
  background: linear-gradient(135deg, rgb(159, 152, 246) 0%, rgb(198, 145, 237) 100%);
}
.p-about__text02 .p-about__text02_text {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-about__text02 .p-about__text02_text {
    font-size: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-about__text02 .p-about__text02_text {
    font-size: 3.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-about__text02 .p-about__text02_text {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .p-advantage {
    margin-block-start: 7.333vw;
  }
}

@media screen and (max-width: 768px) {
  .p-advantage__item {
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-advantage__item {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-advantage__item {
    margin-block-start: 5.093vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-advantage__item {
    margin-block-start: 55px;
  }
}

.p-advantage__image {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-advantage__image {
    border-radius: 1.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-advantage__image {
    border-radius: 0.741vw;
    width: 44.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-advantage__image {
    border-radius: 8px;
    width: 484px;
  }
}

@media screen and (max-width: 768px) {
  .p-advantage__desc {
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-advantage__desc {
    padding-block-start: 2.778vw;
    width: 43.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-advantage__desc {
    padding-block-start: 30px;
    width: 470px;
  }
}

.p-advantage__title {
  background: 0 0/cover no-repeat;
  font-weight: 700;
  letter-spacing: 0.08em;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-advantage__title {
    font-size: 8vw;
    height: 16.8vw;
    padding-block-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-advantage__title {
    font-size: 4.259vw;
    height: 10.37vw;
    padding-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-advantage__title {
    font-size: 46px;
    height: 112px;
    padding-block-start: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-advantage__title--01 {
    background-image: url(../images/advantage_bg_01_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-advantage__title--01 {
    background-image: url(../images/advantage_bg_01_pc.png);
  }
}
@media screen and (max-width: 768px) {
  .p-advantage__title--02 {
    background-image: url(../images/advantage_bg_02_sp.png);
  }
}
@media screen and (min-width: 769px) {
  .p-advantage__title--02 {
    background-image: url(../images/advantage_bg_02_pc.png);
  }
}

.p-advantage__title-small {
  color: var(--color-font);
}
@media screen and (max-width: 768px) {
  .p-advantage__title-small {
    font-size: 6.133vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-advantage__title-small {
    font-size: 3.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-advantage__title-small {
    font-size: 36px;
  }
}

.p-advantage__text {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-advantage__text {
    line-height: 2;
    margin-block-start: 1.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-advantage__text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-advantage__text {
    margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-advantage__text {
    margin-block-start: 10px;
  }
}

@media screen and (max-width: 768px) {
  .p-advantage__item:not(:first-of-type) {
    margin-block-start: 9.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-advantage__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

.p-award {
  background: #FF6666;
  background: linear-gradient(-45deg, rgb(255, 102, 102) 0%, rgb(255, 177, 177) 100%);
}
@media screen and (max-width: 768px) {
  .p-award {
    margin-block-start: 9.333vw;
    margin-inline: auto;
    width: 86.667vw;
    padding: 7.733vw 0 6.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award {
    margin-block-start: 6.944vw;
    padding: 2.5vw 0 5.093vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award {
    margin-block-start: 75px;
    padding: 27px 0 55px;
  }
}
.p-award .p-award__logo {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-award .p-award__logo {
    width: 38.4vw;
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award .p-award__logo {
    width: 26.667vw;
    margin-bottom: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award .p-award__logo {
    width: 288px;
    margin-bottom: 15px;
  }
}
.p-award .p-award__list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-award .p-award__list {
    flex-wrap: wrap;
    gap: 1.333vw 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award .p-award__list {
    gap: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award .p-award__list {
    gap: 20px;
  }
}
.p-award .p-award__list li {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/award_frame.svg) no-repeat top left/100%;
}
@media screen and (max-width: 768px) {
  .p-award .p-award__list li {
    width: 39.067vw;
    height: 13.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award .p-award__list li {
    width: 27.13vw;
    height: 9.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award .p-award__list li {
    width: 293px;
    height: 98px;
  }
}
.p-award .p-award__list li .alphabet {
  color: #FFFCCC;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.p-award .p-award__list li .text {
  color: #FFFCCC;
  line-height: 1.15;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-award .p-award__list li .text {
    font-size: 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award .p-award__list li .text {
    font-size: 2.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award .p-award__list li .text {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .p-award .p-award__list li .text strong {
    font-size: 4.8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award .p-award__list li .text strong {
    font-size: 3.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award .p-award__list li .text strong {
    font-size: 36px;
  }
}
.p-award .p-award__list li:nth-child(1) .alphabet {
  line-height: 1.37;
}
@media screen and (max-width: 768px) {
  .p-award .p-award__list li:nth-child(1) .alphabet {
    font-size: 2.8vw;
    margin-bottom: -1.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award .p-award__list li:nth-child(1) .alphabet {
    font-size: 1.944vw;
    margin-bottom: -0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award .p-award__list li:nth-child(1) .alphabet {
    font-size: 21px;
    margin-bottom: -10px;
  }
}
@media screen and (max-width: 768px) {
  .p-award .p-award__list li:nth-child(2) .alphabet {
    font-size: 4.667vw;
    margin-bottom: -0.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-award .p-award__list li:nth-child(2) .alphabet {
    font-size: 3.241vw;
    margin-bottom: -0.278vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-award .p-award__list li:nth-child(2) .alphabet {
    font-size: 35px;
    margin-bottom: -3px;
  }
}

@media screen and (max-width: 768px) {
  .p-reason__inner {
    padding-block: 17.333vw 13.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__inner {
    padding-block: 8.333vw 10.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__inner {
    padding-block: 90px 110px;
  }
}

.p-reason__title {
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-reason__title {
    font-size: 7.333vw;
    margin-bottom: -3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__title {
    font-size: 5.093vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__title {
    font-size: 55px;
  }
}
.p-reason__title .num {
  font-weight: 500;
  background: #FFBABA;
  background: linear-gradient(135deg, rgb(255, 186, 186) 0%, rgb(255, 102, 102) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-reason__title .num {
    font-size: 22.667vw;
    margin-right: 0.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__title .num {
    font-size: 11.111vw;
    margin: 0 0.463vw 0 0.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__title .num {
    font-size: 120px;
    margin: 0 5px 0 2px;
  }
}
@media screen and (max-width: 768px) {
  .p-reason__title span {
    display: inline-block;
    font-size: 11.467vw;
    margin-top: -4vw;
  }
}

@media screen and (max-width: 768px) {
  .p-reason__list {
    margin-block-start: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__list {
    margin-block-start: 4.167vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__list {
    margin-block-start: 45px;
  }
}

.p-reason__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reason__item {
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__item {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
  }
}

.p-reason__image {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-reason__image {
    border-radius: 1.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__image {
    border-radius: 0.741vw;
    width: 44.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__image {
    border-radius: 8px;
    width: 484px;
  }
}

.p-reason__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vw;
  background: #E6E6E6;
  background: linear-gradient(0deg, rgb(230, 230, 230) 0%, rgb(255, 255, 255) 41%);
  position: absolute;
  transform: translateZ(0);
}
@media screen and (max-width: 768px) {
  .p-reason__icon {
    border: 0.533vw solid #FFD4D4;
    filter: drop-shadow(1.195vw 1.195vw 1.195vw rgba(0, 0, 0, 0.15));
    top: -12.267vw;
    width: 36vw;
    height: 36vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__icon {
    border: 0.37vw solid #FFD4D4;
    filter: drop-shadow(0.754vw 0.754vw 0.754vw rgba(0, 0, 0, 0.15));
    top: -4.352vw;
    width: 16.667vw;
    height: 16.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__icon {
    border: 4px solid #FFD4D4;
    filter: drop-shadow(8px 8px 8px rgba(0, 0, 0, 0.15));
    top: -47px;
    width: 180px;
    height: 180px;
  }
}
.p-reason__icon .text01 {
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-reason__icon .text01 {
    font-size: 4vw;
    margin-bottom: 0.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__icon .text01 {
    font-size: 1.852vw;
    margin-bottom: 0.278vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__icon .text01 {
    font-size: 20px;
    margin-bottom: 3px;
  }
}
.p-reason__icon .text02 {
  color: #FF8585;
  line-height: 1.19;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-reason__icon .text02 {
    font-size: 5.2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__icon .text02 {
    font-size: 2.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__icon .text02 {
    font-size: 26px;
  }
}
.p-reason__icon .text02 .num {
  display: inline-block;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-reason__icon .text02 .num {
    font-size: 10.133vw;
    vertical-align: -0.667vw;
    margin-bottom: -2.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__icon .text02 .num {
    font-size: 5.278vw;
    vertical-align: -0.463vw;
    margin-bottom: -1.574vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__icon .text02 .num {
    font-size: 57px;
    vertical-align: -5px;
    margin-bottom: -17px;
  }
}

.p-reason__desc {
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-reason__desc {
    background-position: 100% 5.333vw;
    background-size: 34.667vw auto;
    margin-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__desc {
    background-position: 100% 0;
    background-size: 24.074vw auto;
    width: 43.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__desc {
    background-position: 100% 0;
    width: 470px;
  }
}

.p-reason__lead {
  color: #88a4ff;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-reason__lead {
    font-size: 4.8vw;
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__lead {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__lead {
    font-size: 2.407vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__lead {
    font-size: 26px;
  }
}

.p-reason__sub-title {
  align-items: flex-start;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-reason__sub-title {
    font-size: 6.4vw;
    gap: 1.067vw;
    line-height: 1.4;
    margin-block-start: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__sub-title {
    line-height: 1.412;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__sub-title {
    font-size: 3.148vw;
    gap: 0.556vw;
    margin-block-start: 0vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__sub-title {
    font-size: 34px;
    gap: 6px;
    margin-block-start: 10px;
  }
}

.p-reason__mark {
  background: var(--gradient);
  display: inline-block;
  padding-inline: 0.38em;
}

.p-reason__text {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-reason__text {
    line-height: 2;
    margin-block-start: 4.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__text {
    line-height: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__text {
    margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__text {
    margin-block-start: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-reason__item:not(:first-of-type) {
    margin-block-start: 10.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__item:not(:first-of-type) {
    margin-block-start: 8.148vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__item:not(:first-of-type) {
    margin-block-start: 88px;
  }
}
@media screen and (max-width: 768px) {
  .p-reason__item:nth-child(2n+1) .p-reason__icon {
    right: -2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__item:nth-child(2n+1) .p-reason__icon {
    left: -1.944vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__item:nth-child(2n+1) .p-reason__icon {
    left: -21px;
  }
}
@media screen and (min-width: 769px) {
  .p-reason__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.p-reason__item--01 .p-reason__desc {
  background-image: url(../images/reason_num_01.png);
}
@media screen and (max-width: 768px) {
  .p-reason__item--01 .p-reason__desc {
    padding-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__item--01 .p-reason__desc {
    margin-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__item--01 .p-reason__desc {
    margin-block-start: 25px;
  }
}
.p-reason__item--02 .p-reason__desc {
  background-image: url(../images/reason_num_02.png);
}
@media screen and (max-width: 768px) {
  .p-reason__item--02 .p-reason__desc {
    background-position: 100% 0;
    padding-block-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__item--02 .p-reason__desc {
    padding-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__item--02 .p-reason__desc {
    padding-block-start: 25px;
  }
}
.p-reason__item--03 .p-reason__desc {
  background-image: url(../images/reason_num_03.png);
}
@media screen and (max-width: 768px) {
  .p-reason__item--03 .p-reason__desc {
    background-position: 100% 0;
    padding-block-start: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-reason__item--03 .p-reason__desc {
    margin-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-reason__item--03 .p-reason__desc {
    margin-block-start: 25px;
  }
}

.p-ecosystem {
  background: #ffefef;
}

.p-ecosystem__content {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__content {
    background: url(../images/ecosystem_sp.png) 0 0/100% 100% no-repeat;
    height: 103.467vw;
  }
}
@media screen and (min-width: 769px) {
  .p-ecosystem__content {
    background: url(../images/ecosystem_pc.png) 0 0/100% 100% no-repeat;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__content {
    height: 75.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__content {
    height: 820px;
  }
}

.p-ecosystem__title {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  background: #779FFF;
  background: linear-gradient(90deg, rgb(119, 159, 255) 0%, rgb(198, 147, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__title {
    top: 50.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__title {
    top: 38.519vw;
    width: 18.519vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__title {
    top: 416px;
    width: 200px;
  }
}
.p-ecosystem__title .eng {
  display: block;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__title .eng {
    font-size: 3.333vw;
    margin-bottom: 0.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__title .eng {
    font-size: 2.315vw;
    margin-bottom: 0.278vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__title .eng {
    font-size: 25px;
    margin-bottom: 3px;
  }
}
.p-ecosystem__title .text {
  display: block;
  text-align: center;
  border-radius: 100vw;
  background: #779FFF;
  background: linear-gradient(90deg, rgb(119, 159, 255) 0%, rgb(198, 147, 255) 100%);
}
@media screen and (max-width: 768px) {
  .p-ecosystem__title .text {
    width: 20vw;
    margin: 0 auto;
    padding: 0.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__title .text {
    padding: 0.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__title .text {
    padding: 2px;
  }
}
.p-ecosystem__title .text .inner {
  display: block;
  border-radius: 100vw;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__title .text .inner {
    padding: 0.533vw 0 1.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__title .text .inner {
    padding: 0.37vw 0 0.556vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__title .text .inner {
    padding: 4px 0 6px;
  }
}
.p-ecosystem__title .text .inner span {
  text-align: center;
  background: linear-gradient(90deg, rgb(119, 159, 255) 0%, rgb(198, 147, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__title .text .inner span {
    font-size: 2.667vw;
    line-height: 1.15;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__title .text .inner span {
    font-size: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__title .text .inner span {
    font-size: 18px;
  }
}

.p-ecosystem__item {
  position: absolute;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item {
    height: 36.267vw;
    padding-block-start: 3.733vw;
    width: 36.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item {
    height: 29.63vw;
    padding-block-start: 3.241vw;
    width: 29.63vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item {
    height: 320px;
    padding-block-start: 35px;
    width: 320px;
  }
}
.p-ecosystem__item--media {
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item--media {
    padding-block-start: 2.667vw;
    top: 11.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item--media {
    padding-block-start: 2.315vw;
    top: 4.815vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item--media {
    padding-block-start: 25px;
    top: 52px;
  }
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item--media .p-ecosystem__lead {
    margin-block-start: 0.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item--media .p-ecosystem__lead {
    margin-block-start: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item--media .p-ecosystem__lead {
    margin-block-start: 5px;
  }
}
.p-ecosystem__item--media .p-ecosystem__text {
  letter-spacing: 0;
  margin-block-start: 0;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item--works {
    bottom: 11.733vw;
    right: 5.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item--works {
    bottom: 5.37vw;
    right: 11%;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item--works {
    bottom: 58px;
    right: 11%;
  }
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item--teaching {
    bottom: 11.733vw;
    left: 5.867vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item--teaching {
    bottom: 5.37vw;
    left: 11%;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item--teaching {
    bottom: 58px;
    left: 11%;
  }
}
.p-ecosystem__item .p-ecosystem__sub-title {
  color: #f66;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item .p-ecosystem__sub-title {
    font-size: 2.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item .p-ecosystem__sub-title {
    font-size: 30px;
  }
}
.p-ecosystem__item .p-ecosystem__lead {
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item .p-ecosystem__lead {
    font-size: 2.267vw;
    line-height: 1.471;
    margin-block-start: 1.6vw;
  }
}
@media screen and (min-width: 769px) {
  .p-ecosystem__item .p-ecosystem__lead {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item .p-ecosystem__lead {
    font-size: 1.852vw;
    margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item .p-ecosystem__lead {
    font-size: 20px;
    margin-block-start: 15px;
  }
}
.p-ecosystem__item .p-ecosystem__text {
  font-weight: 300;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item .p-ecosystem__text {
    font-size: 2.267vw;
    line-height: 1.471;
    margin-block-start: 0.8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-ecosystem__item .p-ecosystem__text {
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item .p-ecosystem__text {
    font-size: 1.852vw;
    margin-block-start: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item .p-ecosystem__text {
    font-size: 20px;
    margin-block-start: 5px;
  }
}
.p-ecosystem__item .p-ecosystem__logo {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item .p-ecosystem__logo {
    margin-top: 0.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item .p-ecosystem__logo {
    margin-top: 0.463vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item .p-ecosystem__logo {
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item:nth-child(1) .p-ecosystem__logo {
    width: 22vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item:nth-child(1) .p-ecosystem__logo {
    width: 17.963vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item:nth-child(1) .p-ecosystem__logo {
    width: 194px;
  }
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item:nth-child(2) .p-ecosystem__logo {
    width: 21.333vw;
    margin-top: 2vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item:nth-child(2) .p-ecosystem__logo {
    width: 17.407vw;
    margin-top: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item:nth-child(2) .p-ecosystem__logo {
    width: 188px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-ecosystem__item:nth-child(3) .p-ecosystem__logo {
    width: 23.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-ecosystem__item:nth-child(3) .p-ecosystem__logo {
    width: 18.889vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-ecosystem__item:nth-child(3) .p-ecosystem__logo {
    width: 204px;
  }
}

@media screen and (max-width: 768px) {
  .p-project__inner {
    padding-block: 14.667vw 12.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__inner {
    padding-block: 7.407vw 8.796vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__inner {
    padding-block: 80px 95px;
  }
}

.p-project__header {
  background: url(../images/project_bg.png) no-repeat;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-project__header {
    background-position: 50% 100%;
    background-size: 80.267vw auto;
    padding-block-end: 4.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-project__header {
    background-position: 50% 50%;
    background-size: 86% auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__header {
    padding-block: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__header {
    padding-block: 25px;
  }
}

.p-project__lead {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-project__lead {
    font-size: 3.733vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__lead {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__lead {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .p-project__lead-large {
    font-size: 4.267vw;
    padding-inline: 0.875em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__lead-large {
    font-size: 2.778vw;
    padding-inline: 0.5em;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__lead-large {
    font-size: 30px;
    padding-inline: 0.5em;
  }
}

.p-project__title {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-project__title {
    font-size: 7.733vw;
    margin-block-start: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__title {
    font-size: 4.815vw;
    margin-block-start: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__title {
    font-size: 52px;
    margin-block-start: 18px;
  }
}

.p-project__list {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (max-width: 768px) {
  .p-project__list {
    gap: 8.667vw;
    margin-block-start: 4vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__list {
    gap: 3.704vw;
    margin-block-start: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__list {
    gap: 40px;
    margin-block-start: 20px;
  }
}

.p-project__item {
  background: #f4f8f9;
  display: grid;
  grid-row-gap: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-project__item {
    gap: 6.4vw 4vw;
    grid-template-columns: 26.667vw 1fr;
    grid-template-rows: 38.667vw 1fr;
    padding-block: 4vw 10vw;
    padding-inline-start: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__item {
    gap: 0 4.63vw;
    grid-template-columns: 26.852vw 1fr;
    grid-template-rows: 10.185vw 1fr;
    padding-block: 6.019vw;
    padding-inline-start: 6.019vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__item {
    gap: 0 50px;
    grid-template-columns: 290px 1fr;
    grid-template-rows: 110px 1fr;
    padding-block: 65px;
    padding-inline-start: 65px;
  }
}

.p-project__num {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-project__num {
    left: -3.467vw;
    top: -4.8vw;
    width: 14.933vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__num {
    left: 0.741vw;
    top: 0.741vw;
    width: 10.37vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__num {
    left: 8px;
    top: 8px;
    width: 112px;
  }
}

@media screen and (max-width: 768px) {
  .p-project__image {
    grid-area: 1/1/2/2;
  }
}
@media screen and (min-width: 769px) {
  .p-project__image {
    grid-area: 1/1/4/2;
  }
}

@media screen and (max-width: 768px) {
  .p-project__info {
    grid-area: 1/2/2/3;
    place-content: center;
  }
}
@media screen and (min-width: 769px) {
  .p-project__info {
    grid-area: 1/2/2/3;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__info {
    padding-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__info {
    padding-block-start: 15px;
  }
}

.p-project__name {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-project__name {
    font-size: 4.533vw;
    line-height: 1.353;
    text-align: center;
    width: 45.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__name {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__name {
    font-size: 24px;
  }
}

.p-project__name-note {
  color: var(--color-font);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-project__name-note {
    display: block;
    font-size: 2.667vw;
    margin-block-start: 0.5em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__name-note {
    font-size: 1.667vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__name-note {
    font-size: 18px;
  }
}

.p-project__conditions {
  border: 1px solid var(--color-quaternary);
  border-radius: 100vw;
  color: #ff8585;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-project__conditions {
    font-size: 3.2vw;
    line-height: 1.25;
    margin-block-start: 2.667vw;
    padding-block: 1.333vw;
    width: 45.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-project__conditions {
    display: inline-block;
    line-height: 1.727;
    padding-inline: 1em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__conditions {
    margin-block-start: 2.593vw;
    min-width: 35.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__conditions {
    margin-block-start: 28px;
    min-width: 380px;
  }
}

@media screen and (max-width: 768px) {
  .p-project__conditions-num {
    font-size: 3.467vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__conditions-num {
    font-size: 2.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__conditions-num {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .p-project__desc {
    grid-area: 2/1/3/3;
  }
}
@media screen and (min-width: 769px) {
  .p-project__desc {
    grid-area: 2/2/3/3;
  }
}

.p-project__text {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-project__text {
    line-height: 2;
    margin-inline-start: 4vw;
    width: 70.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-project__text {
    line-height: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__text {
    margin-block-start: 0.926vw;
    width: 49.074vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__text {
    margin-block-start: 10px;
    width: 530px;
  }
}

@media screen and (max-width: 768px) {
  .p-project__skill {
    margin-block-start: 4vw;
    margin-inline-start: 4vw;
    width: 70.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-project__skill {
    line-height: 2;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__skill {
    margin-block-start: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__skill {
    margin-block-start: 40px;
  }
}

.p-project__skill-title {
  background: linear-gradient(90deg, rgb(165, 184, 255) 0%, rgb(106, 135, 255) 100%);
  border-radius: 100vw;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-project__skill-title {
    line-height: 1.923;
    width: 24.533vw;
  }
}
@media screen and (min-width: 769px) {
  .p-project__skill-title {
    line-height: 1.875;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__skill-title {
    font-size: 1.481vw;
    margin-block-start: 1.389vw;
    width: 10.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__skill-title {
    font-size: 16px;
    margin-block-start: 15px;
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .p-project__skill-title:not(:nth-of-type(1)) {
    margin-block-start: 6vw;
  }
}

.p-project__skill-value {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-project__skill-value {
    line-height: 2;
    margin-block-start: 2vw;
  }
}
@media screen and (min-width: 769px) {
  .p-project__skill-value {
    line-height: 1.875;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__skill-value {
    font-size: 1.481vw;
    margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__skill-value {
    font-size: 16px;
    margin-block-start: 10px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__item--a {
    grid-template-rows: 7.87vw 1fr;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__item--a {
    grid-template-rows: 85px 1fr;
  }
}
@media screen and (min-width: 769px) {
  .p-project__item--a .p-project__info {
    padding-block-start: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__item--a .p-project__conditions {
    margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__item--a .p-project__conditions {
    margin-block-start: 15px;
  }
}
@media screen and (min-width: 769px) {
  .p-project__item--a .p-project__text {
    margin-block-start: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__item--a .p-project__skill {
    margin-block-start: 1.389vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__item--a .p-project__skill {
    margin-block-start: 15px;
  }
}

.p-project__btn a {
  display: block;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04em;
  margin-inline: auto;
  background: #FF9292;
  background: linear-gradient(45deg, rgb(255, 146, 146) 0%, rgb(255, 102, 102) 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-project__btn a {
    font-size: 4.267vw;
    line-height: 16.8vw;
    margin-block-start: 12vw;
    width: 86.667vw;
    height: 17.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__btn a {
    font-size: 2.222vw;
    line-height: 8.148vw;
    margin-block-start: 6.019vw;
    width: 46.296vw;
    height: 8.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__btn a {
    font-size: 24px;
    line-height: 88px;
    margin-block-start: 65px;
    width: 500px;
    height: 90px;
  }
}
.p-project__btn a::before {
  content: "";
  background: url(../images/c-cta01_arrow01.svg) no-repeat top left/100%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 768px) {
  .p-project__btn a::before {
    width: 6.8vw;
    height: 2.133vw;
    padding-bottom: 1.6vw;
    right: 3.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-project__btn a::before {
    width: 3.519vw;
    height: 1.111vw;
    padding-bottom: 0.926vw;
    right: 1.759vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-project__btn a::before {
    width: 38px;
    height: 12px;
    padding-bottom: 10px;
    right: 19px;
  }
}

@media screen and (max-width: 768px) {
  .p-message {
    background: url(../images/message_bg_sp.jpg) 0 0/100% auto no-repeat #f4f8f9;
  }
}
@media screen and (min-width: 769px) {
  .p-message {
    background: url(../images/message_bg_pc.jpg) 50% 0 no-repeat #f4f8f9;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-message {
    background-size: 185.185vw auto;
  }
}

@media screen and (max-width: 768px) {
  .p-message__inner {
    padding-block: 11.333vw 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-message__inner {
    min-height: 61.111vw;
    padding-block: 6.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-message__inner {
    min-height: 660px;
    padding-block: 70px;
  }
}

.p-message__catch {
  background: linear-gradient(90deg, rgb(119, 159, 255) 0%, rgb(198, 147, 255) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-message__catch {
    font-size: 8.8vw;
    line-height: 1.212;
    margin-inline-start: 6.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-message__catch {
    line-height: 1.167;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-message__catch {
    font-size: 6.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-message__catch {
    font-size: 66px;
  }
}

.p-message__catch-small {
  font-size: 75.758%;
}

.p-message__title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.786;
}
@media screen and (max-width: 768px) {
  .p-message__title {
    font-size: 3.733vw;
    margin-block-start: 2.667vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-message__title {
    font-size: 2.593vw;
    margin-block-start: 2.13vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-message__title {
    font-size: 28px;
    margin-block-start: 23px;
  }
}

.p-message__text {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-message__text {
    line-height: 2;
    margin-block-start: 9.333vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-message__text {
    line-height: 2;
    width: 54%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-message__text {
    margin-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-message__text {
    margin-block-start: 25px;
  }
}

.p-step__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-step__inner {
    padding-block-start: 15.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__inner {
    padding-block-start: 6.481vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__inner {
    padding-block-start: 70px;
  }
}

@media screen and (max-width: 768px) {
  .p-step__title {
    margin-inline-start: 33.867vw;
    width: 50vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__title {
    margin-inline: auto;
    width: 28.8%;
  }
}

.p-step__catch {
  background: url(../images/step_catch.svg) no-repeat top left/100%;
  position: absolute;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-step__catch {
    left: 9.067vw;
    top: 11.733vw;
    width: 18vw;
    height: 20vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__catch {
    left: 6.944vw;
    top: 7.593vw;
    width: 8.333vw;
    height: 9.259vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__catch {
    left: 75px;
    top: 82px;
    width: 90px;
    height: 100px;
  }
}
.p-step__catch .text {
  color: #fff;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-step__catch .text {
    font-size: 3.6vw;
    line-height: 4.4vw;
    padding-top: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__catch .text {
    font-size: 1.667vw;
    line-height: 2.037vw;
    padding-top: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__catch .text {
    font-size: 18px;
    line-height: 22px;
    padding-top: 20px;
  }
}
.p-step__catch .text strong {
  font-size: 160%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-step__catch .text strong {
    vertical-align: -0.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__catch .text strong {
    vertical-align: -0.185vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__catch .text strong {
    vertical-align: -2px;
  }
}

.p-step__list {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-step__list {
    gap: 8.667vw;
    margin-block-start: 5.333vw;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__list {
    margin-block-start: 1.852vw;
    width: 91%;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__list {
    margin-block-start: 20px;
    width: 91%;
  }
}

.p-step__item {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-step__item {
    gap: 4vw;
    padding-block: 5.333vw 4vw;
    padding-inline-start: 5.333vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__item {
    align-items: center;
    gap: 1.852vw;
    min-height: 14.815vw;
    padding-block: 3.241vw;
    padding-inline-start: 2.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__item {
    align-items: center;
    gap: 20px;
    min-height: 160px;
    padding-block: 35px;
    padding-inline-start: 28px;
  }
}
.p-step__item:not(:last-child)::after {
  bottom: 1px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-step__item:not(:last-child)::after {
    height: calc(2.133vw + 1px);
    width: calc(5.333vw + 2px);
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__item:not(:last-child)::after {
    height: calc(1.481vw + 1px);
    width: calc(3.704vw + 2px);
  }
}
@media screen and (min-width: 1080px) {
  .p-step__item:not(:last-child)::after {
    height: 17px;
    width: 42px;
  }
}
.p-step__item:nth-child(n+2)::before {
  background: linear-gradient(180deg, rgb(0, 0, 0) 15.74%, rgba(0, 0, 0, 0) 100%);
  content: "";
  display: block;
  left: 0;
  opacity: 0.05;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-step__item:nth-child(n+2)::before {
    height: 2.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__item:nth-child(n+2)::before {
    height: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__item:nth-child(n+2)::before {
    height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .p-step__num {
    width: 12vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__num {
    width: 17.593vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__num {
    width: 190px;
  }
}

@media screen and (max-width: 768px) {
  .p-step__content {
    padding-block: 3.333vw 4.667vw;
    width: 58.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__content {
    width: 58.333vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__content {
    width: 630px;
  }
}

.p-step__sub-title {
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-step__sub-title {
    font-size: 4.267vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__sub-title {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__sub-title {
    font-size: 24px;
  }
}

.p-step__text {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-step__text {
    line-height: 2;
    margin-block-start: 2.933vw;
  }
}
@media screen and (min-width: 769px) {
  .p-step__text {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-step__text {
    margin-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-step__text {
    margin-block-start: 10px;
  }
}

.p-step__item:nth-of-type(1) {
  background: #ffefef;
}
.p-step__item:nth-of-type(1)::after {
  background: #ffefef;
}
.p-step__item:nth-of-type(1) .p-step__sub-title {
  color: #f66;
}
.p-step__item:nth-of-type(2) {
  background: #ffcdcd;
}
.p-step__item:nth-of-type(2)::after {
  background: #ffcdcd;
}
.p-step__item:nth-of-type(2) .p-step__sub-title {
  color: #f66;
}
.p-step__item:nth-of-type(3) {
  background: #faa;
}
.p-step__item:nth-of-type(3)::after {
  background: #faa;
}
.p-step__item:nth-of-type(3) .p-step__sub-title, .p-step__item:nth-of-type(3) .p-step__text {
  color: #fff;
}
.p-step__item:nth-of-type(4) {
  background: #f88;
}
.p-step__item:nth-of-type(4)::after {
  background: #f88;
}
.p-step__item:nth-of-type(4) .p-step__sub-title, .p-step__item:nth-of-type(4) .p-step__text {
  color: #fff;
}
.p-step__item:nth-of-type(5) {
  background: #f66;
}
.p-step__item:nth-of-type(5) .p-step__sub-title, .p-step__item:nth-of-type(5) .p-step__text {
  color: #fff;
}

.p-point {
  background: url(../images/point_bg.jpg) 50% 100% no-repeat;
}
@media screen and (max-width: 768px) {
  .p-point {
    background-size: 266.667vw auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point {
    background-size: 185.185vw auto;
  }
}

.p-point__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-point__inner {
    padding-block: 12vw 14vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point__inner {
    padding-block: 5vw 12.778vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-point__inner {
    padding-block: 54px 134px;
  }
}

.p-point__title {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-point__title {
    width: 26vw;
  }
}
@media screen and (min-width: 769px) {
  .p-point__title {
    width: 13%;
  }
}

.p-point__text {
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-point__text {
    font-size: 4.267vw;
    line-height: 1.875;
    margin-block-start: 2.667vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point__text {
    font-size: 1.852vw;
    margin-block-start: 2.315vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-point__text {
    font-size: 20px;
    margin-block-start: 25px;
  }
}

.p-point__text-em {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.5em;
}

.p-point__bottom {
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-point__bottom {
    margin-block-start: 8.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-point__bottom {
    display: flex;
    padding-left: 7.3%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point__bottom {
    gap: 3.241vw;
    margin-block-start: 6.944vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-point__bottom {
    gap: 35px;
    margin-block-start: 75px;
  }
}

.p-point__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-point__lead {
    background: url(../images/point_lead_sp.svg) no-repeat top left/100%;
    margin-inline: auto;
    width: 26.667vw;
    height: 31.333vw;
    padding-bottom: 4.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point__lead {
    width: 16.296vw;
    height: 13.889vw;
    padding-right: 2.407vw;
  }
}
@media screen and (min-width: 769px) {
  .p-point__lead {
    background: url(../images/point_lead_pc.svg) no-repeat top left/100%;
  }
}
@media screen and (min-width: 1080px) {
  .p-point__lead {
    width: 176px;
    height: 150px;
    padding-right: 26px;
  }
}
.p-point__lead .text {
  color: #fff;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-point__lead .text {
    font-size: 3.6vw;
    line-height: 1.37;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point__lead .text {
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-point__lead .text {
    font-size: 20px;
  }
}
.p-point__lead .text strong {
  font-weight: 700;
}

.p-point__catch {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-point__catch {
    font-size: 4.267vw;
    line-height: 1.875;
    margin-block-start: 1.333vw;
    margin-inline: auto;
    text-align: center;
    width: 86.667vw;
  }
}
@media screen and (min-width: 769px) {
  .p-point__catch {
    line-height: 1.679;
    width: 75%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point__catch {
    font-size: 2.593vw;
    padding-block-start: 0.926vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-point__catch {
    font-size: 28px;
    padding-block-start: 10px;
  }
}

.p-point__image {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .p-point__image {
    bottom: 36.667vw;
    right: -3.733vw;
    width: 37.067vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-point__image {
    bottom: 3.519vw;
    right: -2.222vw;
    width: 25.741vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-point__image {
    bottom: 38px;
    right: -25px;
    width: 278px;
  }
}

.p-faq {
  background: #ffefef;
}

@media screen and (max-width: 768px) {
  .p-faq__inner {
    padding-block: 16.667vw 14.4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-faq__inner {
    padding-block: 7.87vw 12.037vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-faq__inner {
    padding-block: 85px 130px;
  }
}

.p-faq__title {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-faq__title {
    font-size: 7.733vw;
    text-align: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-faq__title {
    font-size: 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-faq__title {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .p-faq__title-en {
    display: block;
    line-height: 0;
    margin-block-start: 4vw;
    margin-inline: auto;
    width: 44.8vw;
  }
}
@media screen and (min-width: 769px) {
  .p-faq__title-en {
    display: inline-block;
    vertical-align: text-top;
    width: 27.9%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-faq__title-en {
    margin-inline-start: 1.111vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-faq__title-en {
    margin-inline-start: 12px;
  }
}
.p-faq__title-en img {
  vertical-align: bottom;
}

@media screen and (max-width: 768px) {
  .p-faq__list {
    margin-block-start: 6vw;
    margin-inline: auto;
    width: 86.667vw;
  }
}

.p-faq__item {
  background: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq__item {
    border-radius: 0.533vw;
    box-shadow: 1.067vw 1.067vw 1.067vw rgba(0, 0, 0, 0.1);
    margin-block-start: 5.333vw;
    padding-block: 6.667vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-faq__item {
    border-radius: 0.37vw;
    box-shadow: 0.741vw 0.741vw 0.741vw rgba(0, 0, 0, 0.1);
    margin-block-start: 2.778vw;
    min-height: 17.593vw;
    padding-block: 4.167vw 3.704vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-faq__item {
    border-radius: 4px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
    margin-block-start: 30px;
    min-height: 190px;
    padding-block: 45px 40px;
  }
}

.p-faq__question {
  background: url(../images/faq_icon_q.svg) no-repeat;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-faq__question {
    background-position: 5.333vw 0.533vw;
    background-size: auto 4.8vw;
    font-size: 4.267vw;
    line-height: 1.313;
    min-height: 4.8vw;
    padding-inline: 13.333vw 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-faq__question {
    line-height: 1.167;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-faq__question {
    background-position: 5.093vw 0;
    background-size: auto 2.593vw;
    font-size: 2.222vw;
    min-height: 2.593vw;
    padding-inline-start: 8.796vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-faq__question {
    background-position: 55px 0;
    background-size: auto 28px;
    font-size: 24px;
    min-height: 28px;
    padding-inline-start: 95px;
  }
}

@media screen and (max-width: 768px) {
  .p-faq__question-small-sp {
    font-size: 4vw;
  }
}

.p-faq__answer {
  background: url(../images/faq_icon_a.svg) no-repeat;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-faq__answer {
    background-position: 6vw 2vw;
    background-size: auto 3.3vw;
    line-height: 2;
    margin-block-start: 4.667vw;
    padding-inline: 13.333vw 5.333vw;
  }
}
@media screen and (min-width: 769px) {
  .p-faq__answer {
    line-height: 1.667;
  }
}
@media screen and (min-width: 769px) and (max-width: 1079px) {
  .p-faq__answer {
    background-position: 5.37vw 0.556vw;
    background-size: auto 1.759vw;
    margin-block-start: 1.852vw;
    padding-inline-start: 8.796vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-faq__answer {
    background-position: 58px 6px;
    background-size: auto 19px;
    margin-block-start: 20px;
    padding-inline-start: 95px;
  }
}

@media screen and (min-width: 769px) {
  .u-only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .u-only-pc {
    display: none !important;
  }
}
.zenkaku {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.hind {
  font-family: "Hind", sans-serif;
}

.spartan {
  font-family: "League Spartan", sans-serif;
}

.u-sup {
  font-size: 58.3%;
  vertical-align: super;
}

.u-fw400 {
  font-weight: 400;
}

.u-color-primary {
  color: var(--color-primary);
}

.u-color-secondary {
  color: var(--color-secondary);
}

.u-color-tertiary {
  color: var(--color-tertiary);
}

.u-color-quaternary {
  color: var(--color-quaternary);
}/*# sourceMappingURL=style.css.map */