@charset "UTF-8";
/*-----------ベース -----------*/
:root {
  --yellow: #ffef00;
  --lightyellow: #f9f2bb;
  --blue: #0000ff;
  --navy: #053e62;
  --lightblue: #06BCF0;
  --lightgreen: #A9D18E;
  --red: #fc0000;
  --orange: #FFA02D;
  --white: #fff;
  --offwhite: #f9f9f9;
  --black: #13202F;
  --grey: #d6d6d6;
  --darkgrey: #848c8f;
  --lightgrey: #f7f7f7;
  --ivory: #f5f1eb;
  --main-c: var(--lightblue);
  --sub-c: var(--lightgreen);
  --base-c: var(--lightblue);
  --accent-c: var(--yellow);
  --bg-c: var(--lightgrey);
  --border-c: var(--grey);
}

.l-header {
  z-index: 5;
}

.l-footer {
  z-index: 1;
}

.l-overlay {
  z-index: 4;
}

#splash {
  z-index: 8;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 4;
}

[data-appear-blur] {
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
  -webkit-filter: blur(0.625rem);
          filter: blur(0.625rem);
}

[data-appear-blur=true] {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}

[data-slidein-border] {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
[data-slidein-border] .anim-text {
  position: relative;
}
[data-slidein-border] .anim-text::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: var(--main-c);
  opacity: 0;
  -webkit-transform: translateX(-3.125rem);
          transform: translateX(-3.125rem);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.6s;
  transition: transform 0.6s, opacity 0.6s, -webkit-transform 0.6s;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

[data-slidein-border=true] .anim-text::before {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
[data-slidein-border=true] .br {
  content: "";
  width: 100%;
}

[data-appear-each] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
[data-appear-each] .anim-text {
  position: relative;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

[data-appear-each=true] .anim-text {
  -webkit-animation: textAnim 0.7s ease-out forwards;
          animation: textAnim 0.7s ease-out forwards;
}

@-webkit-keyframes textAnim {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes textAnim {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
[data-clip-anim] {
  clip-path: polygon(0 0, 0 0, 0 0);
  -webkit-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}

[data-clip-anim=true] {
  clip-path: polygon(0 0, 200% 0, 0 200%);
}

[data-rotate-shape-10]::before {
  -webkit-transition: 2s;
  transition: 2s;
}

[data-rotate-shape-10=true]::before {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}

[data-rotate-shape-8]::before {
  -webkit-transition: 1.5s;
  transition: 1.5s;
}

[data-rotate-shape-8=true]::before {
  -webkit-transform: rotate(8deg);
          transform: rotate(8deg);
}

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

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 0.0625rem dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 0.0625rem;
  border: 0;
  border-top: 0.0625rem solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

i {
  font-style: normal;
}

/* Chrome、Safari以外 */
summary {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

/* Chrome、Safari */
summary::-webkit-details-marker {
  display: none;
}

html {
  text-underline-position: under;
}
@media (max-width: 374px) {
  html {
    font-size: 4.2780748663vw;
  }
}
@media (min-width: 375px) and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1540px) {
  html {
    font-size: 1.038961039vw;
  }
}
@media (min-width: 1541px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, " ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.8;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.1em;
  color: var(--black);
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}
body.is-fixed {
  overflow: hidden;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

svg {
  display: block;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

span,
i {
  font-size: inherit;
  color: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  font-family: inherit;
}

button {
  font-size: inherit;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
button:focus {
  opacity: 0.6;
}

/*-------フォントサイズ---------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.75;
}

h1 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 2.25rem;
  }
}

h4 {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.5rem;
  }
}

h6 {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 1.125rem;
  }
}

/*-----------レイアウト　接頭辞「l-」-----------*/
.l-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding: 0 1.5rem;
  }
}

.l-inner {
  width: 90%;
  max-width: 77.5rem;
  margin: 0 auto;
  position: relative;
}

.l-inner--sm {
  width: 90%;
  max-width: 56.25rem;
  margin: 0 auto;
  position: relative;
}

.l-inner--lg {
  width: 90%;
  max-width: 87.5rem;
  margin: 0 auto;
  position: relative;
}

.l-inner--full {
  width: 100%;
  max-width: 120rem;
}

.l-basic-wrapper {
  background-color: inherit;
}

.l-color-wrapper {
  background-color: var(--bg-c);
}

.l-ivory-wrapper {
  background-color: var(--ivory);
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-flex.-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.l-flex.-jbetween {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-flex.-jcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-flex.-jaround {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.l-flex.-acenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-flex.-abaseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.l-flex.-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-flex.-gap-s {
  gap: 0.5em;
}
.l-flex.-gap-m {
  gap: 1em;
}
.l-flex.-gap-l {
  gap: 1.5em;
}

.l-grid {
  display: grid;
}
.l-grid.-col2 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-grid.-col2 {
    grid-template-columns: 1fr 1fr;
  }
}
.l-grid.-col3 {
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .l-grid.-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-grid.-col4 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (min-width: 768px) {
  .l-grid.-col4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.l-grid.-gap {
  gap: 0.75rem;
}

.l-overlay {
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  position: fixed;
  top: 3.125rem;
  right: -100%;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.l-overlay.is-open {
  right: 0;
  opacity: 1;
}
@media screen and (min-width: 1280px) {
  .l-overlay {
    top: 4.375rem;
  }
}

.l-footer a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer a:hover {
  opacity: 0.6;
}

.l-footer__top {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__top {
    padding-block: 3.75rem;
  }
}

.l-footer__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .l-footer__top-inner {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.l-footer__top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2.1875rem;
  max-width: 18.75rem;
}
@media screen and (min-width: 550px) {
  .l-footer__top-list {
    max-width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__top-list {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.25rem;
    margin-top: 0;
  }
}

.l-footer__top-link {
  font-weight: bold;
}

.l-footer__logo-link {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-footer__logo-link {
    margin-bottom: 1.25rem;
  }
}
.l-footer__logo-link img {
  width: 13.125rem;
}

.l-footer__bottom {
  background-color: #97999B;
}

.l-footer__body {
  width: auto;
  max-width: 98.75rem;
  margin: 0 auto;
  padding: 2.1875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__body {
    padding: 3.4375rem 1.25rem;
  }
}

.l-footer__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-footer__media {
  width: 6.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__media {
    width: 15.125rem;
  }
}

.l-footer__item--vision .l-footer__media {
  width: 8.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer__item--vision .l-footer__media {
    width: 21.3125rem;
  }
}

.l-footer-submenu {
  background-color: var(--black);
  color: #fff;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-footer-submenu {
    font-size: 0.875rem;
  }
}

.l-footer-submenu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: auto;
  max-width: 98.75rem;
  margin: 0 auto;
  padding: 1.5625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer-submenu__wrapper {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-footer-submenu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
  row-gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .l-footer-submenu__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1.875rem;
  }
}

.l-footer-submenu__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-footer-submenu__copyright {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
  }
}
.l-footer-submenu__copyright .page-top .icon {
  width: 2.25rem;
  height: 2.25rem;
}

.l-header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 100%;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(164, 180, 190, 0.16);
          box-shadow: 0 0.1875rem 0.375rem rgba(164, 180, 190, 0.16);
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 4.375rem;
  }
}
.l-header.-unpinned {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.l-header .l-wrapper {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-header .l-wrapper {
    padding-inline: 1.875rem 0.625rem;
  }
}
.l-header .c-cta-button.-sp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-header .c-cta-button.-sp {
    display: none;
  }
}
.l-header .c-cta-button.-sp .cta-button-link {
  width: clamp(15rem, 7.01rem + 34.09vw, 20.625rem);
  padding-block: 1.3125rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
  font-size: 1rem;
}
@media screen and (min-width: 640px) {
  .l-header .c-cta-button.-sp .cta-button-link {
    width: 15rem;
  }
}
.l-header .c-cta-button.-sp .cta-button-link.-document {
  padding-left: 2.5rem;
}
@media screen and (min-width: 430px) {
  .l-header .c-cta-button.-sp .cta-button-link.-document {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 1.125rem;
  }
}
@media screen and (min-width: 640px) {
  .l-header .c-cta-button.-sp .cta-button-link.-document {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 2.5rem;
  }
}
.l-header .c-cta-button.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header .c-cta-button.-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 4.375rem;
  }
}

.l-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.9375rem;
}

.l-header__logo {
  margin: 0;
  line-height: 1;
  position: relative;
  z-index: 1000;
}
.l-header__logo img {
  display: block;
  width: 6.5rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo img {
    width: 8.125rem;
  }
}

.l-header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-header__logo-link:hover {
  opacity: 0.6;
}

.l-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  height: auto;
  width: 100%;
  background: #fff;
  z-index: 999;
  padding: 4.375rem 1.25rem 2.5rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 640px) {
  .l-header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    position: static;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    gap: 1.5rem;
    width: auto;
    padding: 0;
  }
}
.l-header__nav.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .l-header__nav[aria-hidden=true] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0;
  padding-inline: 1.125rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    padding: 0;
  }
}

.l-header__nav-item {
  margin: 0;
}

.l-header__nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-bottom: solid 0.0625rem #CED0D2;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__nav-link {
    font-size: clamp(0.938rem, 0.683rem + 0.26vw, 1rem);
    padding: 0;
    border: none;
  }
}
.l-header__nav-link:hover {
  opacity: 0.6;
}
.l-header__nav-link::after {
  content: "";
  display: inline-block;
  width: 0.4375rem;
  height: 0.625rem;
  background-image: url("../images/icons/icon-nav-arrow.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 0.8125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .l-header__nav-link::after {
    display: none;
  }
}

/*----------パーツ 接頭辞「c-」------------*/
.c-title-main {
  text-align: center;
}
.c-title-main .title {
  margin-top: 0.9375rem;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .c-title-main .title {
    margin-top: 2.25rem;
  }
}
.c-title-main .sub-title {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-title-main .sub-title {
    font-size: 1rem;
  }
}

.c-badge {
  background-color: var(--main-c);
  color: var(--white);
  border-radius: 0.3125rem;
  padding: 0.3125rem;
  font-size: clamp(0.625rem, 0.5224rem + 0.5128vw, 0.875rem);
}

.c-banner-fixed {
  display: none;
  position: fixed;
  bottom: 1.875rem;
  right: 2%;
  width: 50%;
  max-width: 22.6875rem;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .c-banner-fixed {
    width: 19%;
  }
}

.c-banner-fixed__add {
  position: relative;
  padding-top: 1.5vw;
  padding-right: 1.5vw;
}
@media screen and (min-width: 768px) {
  .c-banner-fixed__add {
    padding-top: 0.4375rem;
    padding-right: 0.4375rem;
  }
}

.c-banner-front__add {
  display: block;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.5);
          box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.5);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-banner-front__add:hover {
  opacity: 0.8;
}

.c-banner-fixed .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(1.375rem, 0.418rem + 4.08vw, 2.375rem);
  height: clamp(1.375rem, 0.418rem + 4.08vw, 2.375rem);
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-banner-fixed .close-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-banner-fixed .close-btn:hover {
  opacity: 0.8;
}

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 700;
  border: solid 0.125rem #fff;
  border-radius: 62.4375rem;
  padding: 1.0625rem 1.125rem;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: clamp(0.938rem, 0.683rem + 0.26vw, 1rem);
  }
}

.c-cta-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.cta-button-link {
  width: 13.4375rem;
  color: #fff;
  position: relative;
}
.cta-button-link.-document {
  background-color: #06BCF0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 1.5rem;
}
.cta-button-link.-document:hover {
  color: var(--main-c);
  border-color: var(--main-c);
}
.cta-button-link.-document:hover .icon {
  background-color: #C4F2FF;
}
.cta-button-link.-document .icon img {
  width: 0.625rem;
}
.cta-button-link.-estimate {
  background-color: #FFA02D;
}
.cta-button-link.-estimate:hover {
  color: #FFA02D;
  border-color: #FFA02D;
}
.cta-button-link.-estimate:hover .icon {
  background-color: #FFE7C9;
}
.cta-button-link.-estimate .icon img {
  width: 0.5625rem;
}
.cta-button-link.-contact {
  background-color: #A3C31D;
}
.cta-button-link.-contact:hover {
  color: #A3C31D;
  border-color: #A3C31D;
}
.cta-button-link.-contact:hover .icon {
  background-color: #ECF6C1;
}
.cta-button-link.-contact .icon img {
  width: 0.625rem;
}
.cta-button-link:hover {
  background-color: #fff;
  border: solid 0.125rem;
}
.cta-button-link .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-hamburger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  margin: 0;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3125rem;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger.is-active .c-hamburger__line:nth-child(1) {
  -webkit-transform: translateY(0.375rem) rotate(25deg);
          transform: translateY(0.375rem) rotate(25deg);
}
.c-hamburger.is-active .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-0.5rem) rotate(-25deg);
          transform: translateY(-0.5rem) rotate(-25deg);
}

.c-hamburger__line {
  display: block;
  width: 1.875rem;
  height: 0.125rem;
  background: #4D4948;
  border-radius: 62.4375rem;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transition: transform 0.25s ease, opacity 0.2s ease, -webkit-transform 0.25s ease;
}

.c-qa {
  border-radius: 0.625rem;
  overflow: hidden;
  border: none;
}
.c-qa[open] {
  overflow: unset;
}
.c-qa[open] .c-qa__title {
  background-color: #567292;
  color: #fff;
}
.c-qa[open] .c-qa__icon--q {
  color: #fff;
}
.c-qa[open] .c-qa__tgl::before, .c-qa[open] .c-qa__tgl::after {
  background-color: #fff;
}
.c-qa:not(:first-child) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-qa:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.c-qa__title {
  width: 100%;
  padding-block: 1.25rem;
  padding-inline: 3.3125rem 2.875rem;
  background-color: #fff;
  border-radius: 0.625rem 0.625rem 0 0;
  font-size: 0.875rem;
  font-weight: 800;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-qa__title {
    padding-block: 1.6875rem;
    padding-inline: 5.125rem 6.0625rem;
    font-size: 1.0625rem;
  }
}

.c-qa__cont {
  position: relative;
  padding-block: 1.25rem;
  padding-inline: 3.3125rem 2.875rem;
  background-color: #fff;
  border-radius: 0 0 0.625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-qa__cont {
    padding-block: 1.25rem;
    padding-inline: 5.125rem 6.0625rem;
  }
}

.c-qa__icon {
  display: inline-block;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-qa__icon {
    left: 1.875rem;
  }
}

.c-qa__icon--q {
  font-family: "Lexend", sans-serif;
  color: var(--main-c);
  font-size: 1.5rem;
  font-weight: 500;
  top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-qa__icon--q {
    font-size: 1.8125rem;
    top: 1rem;
  }
}

.c-qa__tgl {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: absolute;
  top: 1.875rem;
  right: 1.125rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-qa__tgl {
    width: 0.875rem;
    height: 0.875rem;
    top: 2.25rem;
    right: 2.125rem;
  }
}
.c-qa__tgl::before, .c-qa__tgl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-qa__tgl::before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-qa__tgl::after {
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/* オープン時にアニメーションを設定 */
.c-qa[open] .c-qa__tgl::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.c-qa[open] .c-qa__cont {
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
/*スクロールダウン全体の場所*/
.c-scrolldown {
  position: absolute;
  right: 10%;
  bottom: 5%;
  height: 3.125rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-scrolldown {
    right: 5%;
    bottom: 10%;
  }
}

/*Scrollテキストの描写*/
.c-scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -0.9375rem;
  top: 0;
  /*テキストの形状*/
  color: #eee;
  font-size: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* 線の描写 */
.c-scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: -1.875rem;
  /*線の形状*/
  width: 0.0625rem;
  height: 3.125rem;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: -1.875rem;
    opacity: 0;
  }
  30% {
    height: 3.125rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 1.875rem;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: -1.875rem;
    opacity: 0;
  }
  30% {
    height: 3.125rem;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 1.875rem;
    opacity: 0;
  }
}
/*--------個別ページ　接頭辞「p-」--------------*/
.p-mv {
  margin-top: 3.125rem;
  background-image: url("../images/common/mv-bg.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-mv {
    margin-top: 4.375rem;
  }
}

.p-mv__inner {
  padding-block: 2.5rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding-block: 6.5rem 1.5rem;
  }
}

.p-mv__main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-mv__main-content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-mv__content {
  width: 100%;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__content {
    width: 50%;
    padding-inline: clamp(3.75rem, -15.055rem + 19.53vw, 8.375rem) 0;
  }
}

.p-mv__stats {
  font-size: clamp(1.125rem, 0.766rem + 1.53vw, 1.5rem);
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-mv__stats {
    font-size: clamp(1.5rem, 0.484rem + 1.06vw, 1.75rem);
  }
}
.p-mv__stats .stats {
  display: inline-block;
  padding-inline: 1.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__stats .stats {
    padding-inline: clamp(1.25rem, 0.234rem + 1.06vw, 1.5rem);
  }
}
.p-mv__stats .stats:first-child {
  margin-right: 0.5rem;
}
.p-mv__stats .stats::before, .p-mv__stats .stats::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: auto;
  aspect-ratio: 21/43;
  background-image: url("../images/common/leaves.webp");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-mv__stats .stats::before, .p-mv__stats .stats::after {
    width: clamp(1rem, -0.271rem + 1.32vw, 1.313rem);
  }
}
.p-mv__stats .stats::before {
  left: 0;
}
.p-mv__stats .stats::after {
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-mv__stats .num {
  font-size: clamp(2.125rem, 1.168rem + 4.08vw, 3.125rem);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-mv__stats .num {
    font-size: clamp(2.875rem, 0.08rem + 2.9vw, 3.563rem);
  }
}
.p-mv__stats .unit {
  font-size: clamp(1.375rem, 0.897rem + 2.04vw, 1.875rem);
}
@media screen and (min-width: 768px) {
  .p-mv__stats .unit {
    font-size: clamp(1.75rem, 0.225rem + 1.58vw, 2.125rem);
  }
}
.p-mv__stats .annotation {
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-mv__stats .annotation {
    font-size: 0.875rem;
  }
}
.p-mv__stats .text {
  display: inline-block;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__stats .text {
    margin-top: 0.375rem;
  }
}

.p-mv__title {
  font-size: clamp(1.313rem, 0.356rem + 4.08vw, 2.313rem);
  line-height: 1.3;
  background-color: #fff;
  border-radius: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1875rem 0.5rem 0.125rem;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: clamp(2.063rem, 1.046rem + 1.06vw, 2.313rem);
    border-radius: 0.6875rem;
    padding: 0.125rem 0.6875rem 0.25rem;
  }
}

.p-mv__annotation {
  font-size: clamp(0.625rem, 0.386rem + 1.02vw, 0.875rem);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-mv__annotation {
    font-size: clamp(0.75rem, 0.242rem + 0.53vw, 0.875rem);
  }
}
.p-mv__annotation .icon {
  display: inline-block;
  width: 0.75rem;
  margin-bottom: -0.0625rem;
  margin-right: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__annotation .icon {
    width: 0.9375rem;
  }
}

.p-mv__catch {
  font-size: clamp(1.125rem, 0.049rem + 4.59vw, 2.25rem);
  font-weight: bold;
  line-height: 1.3;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__catch {
    font-size: clamp(1.875rem, 0.35rem + 1.58vw, 2.25rem);
  }
}
.p-mv__catch .small {
  font-size: 3.5vw;
}
@media screen and (min-width: 768px) {
  .p-mv__catch .small {
    font-size: 1.45vw;
  }
}
.p-mv__catch .emphasis {
  font-size: clamp(2.25rem, 0.217rem + 8.67vw, 4.375rem);
}
@media screen and (min-width: 768px) {
  .p-mv__catch .emphasis {
    font-size: clamp(4rem, 2.475rem + 1.58vw, 4.375rem);
  }
}

.p-mv__text {
  font-size: clamp(1rem, 0.522rem + 2.04vw, 1.5rem);
  line-height: 1.4;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-mv__text {
    font-size: clamp(1.375rem, 0.867rem + 0.53vw, 1.5rem);
    margin-top: 1.25rem;
  }
}

.p-mv__button {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5625rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__button {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding-inline: 0;
  }
}
.p-mv__button .cta-button-link {
  width: calc((100% - 1rem) / 3);
  padding: 0.625rem;
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.2;
  border: solid 0.125rem #fff;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 550px) {
  .p-mv__button .cta-button-link {
    padding: 1rem;
    font-size: clamp(0.875rem, 0.636rem + 1.02vw, 1.125rem);
  }
}
@media screen and (min-width: 768px) {
  .p-mv__button .cta-button-link {
    width: 16.5625rem;
    font-size: clamp(1rem, -0.016rem + 1.06vw, 1.25rem);
    text-align: left;
    line-height: unset;
    border: solid 0.1875rem #fff;
  }
}
.p-mv__button .cta-button-link.-document {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-mv__button .cta-button-link.-document {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 1.875rem;
  }
}
.p-mv__button .icon {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__button .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: 1.25rem;
  }
}
.p-mv__button.-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-mv__button.-sp {
    display: none;
  }
}
.p-mv__button.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__button.-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-mv__button .br-sp {
  display: block;
}
@media screen and (min-width: 550px) {
  .p-mv__button .br-sp {
    display: none;
  }
}

.p-mv__media {
  width: 100%;
  padding-inline: 1.25rem 0.3125rem;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__media {
    width: 50%;
    padding-inline: 1.875rem 0.4375rem;
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__media-image {
    margin-bottom: 2.125rem;
  }
}
.p-mv__media-image .image {
  width: 100%;
  height: auto;
}
.p-mv__media-image .arrow-anime {
  transform-box: fill-box;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-animation: arrowsGrow 3s ease-out forwards;
          animation: arrowsGrow 3s ease-out forwards;
}
.p-mv__media-image[data-inview=true] .arrow-anime {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.p-mv__date {
  font-size: clamp(0.625rem, 0.386rem + 1.02vw, 0.875rem);
  font-weight: 400;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__date {
    font-size: clamp(0.75rem, 0.242rem + 0.53vw, 0.875rem);
    margin-top: 3.75rem;
    margin-left: clamp(3.75rem, -15.055rem + 19.53vw, 8.375rem);
  }
}
.p-mv__date.-sp {
  display: block;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__date.-sp {
    display: none;
  }
}
.p-mv__date.-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__date.-pc {
    display: block;
  }
}

.p-case-study {
  background-color: #F5FAFF;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-case-study {
    padding-block: 6rem 6.25rem;
  }
}

.p-case-study__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-case-study__content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
  }
}

.p-case-study__client {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.875rem rgba(105, 175, 255, 0.1);
          box-shadow: 0 0 1.875rem rgba(105, 175, 255, 0.1);
  border-radius: 1.25rem;
  padding-block: 1.875rem 2.25rem;
  padding-inline: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-case-study__client {
    padding-block: 1.5625rem 1.875rem;
    padding-inline: 1.5625rem;
  }
}
.p-case-study__client .client-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-case-study__client .client-upper {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 2rem;
  }
}
.p-case-study__client .client-upper .title {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-case-study__client .client-upper .title {
    font-size: 1.25rem;
    margin-top: 1.4375rem;
  }
}
.p-case-study__client .client-upper .business {
  font-weight: bold;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-case-study__client .client-upper .business {
    margin-top: 1.125rem;
  }
}
.p-case-study__client .client-upper .employees {
  border: solid 0.0625rem #06BCF0;
  border-radius: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.1875rem;
  margin-top: 0.625rem;
}
.p-case-study__client .client-image {
  aspect-ratio: 311/238;
  width: 100%;
  height: auto;
  border-radius: 0.3125rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-case-study__client .client-image {
    width: 19.4375rem;
  }
}
.p-case-study__client .client-image .image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-case-study__client .client-company {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-case-study__client .client-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-case-study__client .client-lower {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    margin-top: 1.875rem;
  }
}
.p-case-study__client .client-ba {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-case-study__client .client-ba {
    width: calc((100% - 1.875rem) / 2);
  }
}
.p-case-study__client .client-ba .head {
  font-family: "Lexend", sans-serif;
  text-align: center;
  color: #fff;
  border-radius: 0.3125rem 0.3125rem 0 0;
  padding-block: 0.375rem 0.3125rem;
}
.p-case-study__client .client-ba .list {
  border-radius: 0 0 0.3125rem 0.3125rem;
  padding: 0.625rem 0.625rem;
}
.p-case-study__client .client-ba .item {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 0.75rem;
}
.p-case-study__client .client-ba .item::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  position: absolute;
  top: 0.5625rem;
  left: 0;
}
.p-case-study__client .client-ba .item + .item {
  margin-top: 0.5rem;
}
.p-case-study__client .client-ba.-before {
  position: relative;
}
.p-case-study__client .client-ba.-before:after {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--main-c);
  position: absolute;
  top: calc(100% + 0.5625rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-case-study__client .client-ba.-before:after {
    width: 1.125rem;
    height: 2.0625rem;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    top: 33%;
    left: unset;
    right: -2.1875rem;
  }
}
.p-case-study__client .client-ba.-before .head {
  background-color: #BAC5D1;
}
.p-case-study__client .client-ba.-before .list {
  background-color: #F8F8F8;
}
.p-case-study__client .client-ba.-before .item::before {
  background-color: #567292;
}
.p-case-study__client .client-ba.-after .head {
  background-color: #89E3FC;
}
.p-case-study__client .client-ba.-after .list {
  background-color: #F5FAFF;
}
.p-case-study__client .client-ba.-after .item::before {
  background-color: var(--main-c);
}

.p-case-study__client:first-child .logo {
  width: 4.375rem;
  height: 3.1875rem;
}

.p-case-study__client:last-child .logo {
  aspect-ratio: 403/140;
  width: 12.5625rem;
  height: auto;
}
.p-case-study__client:last-child .title {
  margin-top: 0.4375rem;
}

.p-contact {
  background-image: url("../images/common/contact-bg.webp");
  background-size: cover;
  background-position: center;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-block: 6rem 6.25rem;
  }
}

.p-contact__title {
  color: #fff;
}
.p-contact__title .sub-title {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title .sub-title {
    font-size: 1rem;
  }
}
.p-contact__title .title {
  font-size: 1.125rem;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title .title {
    font-size: 2.25rem;
    margin-top: 2rem;
  }
}
.p-contact__title .emphasis {
  font-size: 1.25rem;
  padding-block: 0.0625rem 0.1875rem;
  padding-inline: 0.3125rem;
  margin-right: 0.3125rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__title .emphasis {
    font-size: 2.5rem;
    padding-inline: 1rem;
    margin-right: 0.625rem;
    border-radius: 0.6875rem;
  }
}

.p-contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.25rem;
    margin-top: 2.0625rem;
  }
}

.p-contact__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  background-color: #fff;
  border-radius: 0.6875rem;
  padding-block: 1.875rem 1.25rem;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item {
    max-width: 25rem;
    padding-block: 2.6875rem 2.0625rem;
    padding-inline: 2.1875rem;
  }
}
.p-contact__item .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.p-contact__item .title-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-contact__item .title-icon {
    width: 2.875rem;
    height: 2.875rem;
  }
}
.p-contact__item .text {
  font-size: 0.875rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item .text {
    margin-top: 1.25rem;
  }
}
.p-contact__item .cta-button-link {
  width: 100%;
  font-size: 1.25rem;
  padding: 1.125rem 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item .cta-button-link {
    font-size: 1.5rem;
    padding: 1.3125rem 1.25rem;
    margin-top: 1.625rem;
  }
}
.p-contact__item .cta-button-link .icon {
  right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item .cta-button-link .icon {
    right: 1.25rem;
  }
}

.p-contact__item.-document .title-icon {
  background-color: #C4F2FF;
}
.p-contact__item.-document .title-icon img {
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item.-document .title-icon img {
    width: 1.0625rem;
  }
}
.p-contact__item.-document .cta-button-link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact__item.-estimate .title-icon {
  background-color: #FFE7C9;
}
.p-contact__item.-estimate .title-icon img {
  width: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item.-estimate .title-icon img {
    width: 1.0625rem;
  }
}

.p-contact__item.-contact .title-icon {
  background-color: #ECF6C1;
}
.p-contact__item.-contact .title-icon img {
  width: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__item.-contact .title-icon img {
    width: 1.375rem;
  }
}

.p-conversion {
  background-image: url(../images/common/contact-bg.webp);
  background-size: cover;
  background-position: center;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-conversion {
    padding-block: 3.75rem;
  }
}

.p-conversion__title {
  color: #fff;
}
.p-conversion__title .title {
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-conversion__title .title {
    font-size: 1.5rem;
  }
}
.p-conversion__title .emphasis {
  font-size: 1.25rem;
  padding-block: 0.0625rem 0.1875rem;
  padding-inline: 0.3125rem;
  margin-right: 0.3125rem;
  background-color: #fff;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-conversion__title .emphasis {
    font-size: 1.75rem;
    padding-block: 0.1875rem 0.3125rem;
    padding-inline: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0.625rem;
  }
}

.p-conversion__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-conversion__list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}

.p-conversion__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
  background-color: #fff;
  border-radius: 0.6875rem;
  overflow: hidden;
  padding: 1.25rem 1.875rem;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-conversion__item {
    max-width: 25rem;
    padding: 1.5625rem 2.125rem;
  }
}
.p-conversion__item::before {
  content: "";
  display: inline-block;
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 50%;
  position: absolute;
  top: 2.5rem;
  right: -9.375rem;
  z-index: -1;
}
.p-conversion__item .cta-button-link {
  width: 100%;
  font-size: 1.125rem;
  padding: 1.125rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-conversion__item .cta-button-link {
    font-size: 1.5rem;
    padding: 1.3125rem 1.25rem;
  }
}
.p-conversion__item .cta-button-link .icon {
  right: 1rem;
}
@media screen and (min-width: 768px) {
  .p-conversion__item .cta-button-link .icon {
    right: 1.25rem;
  }
}

.p-conversion__item.-document::before {
  background-color: #C4F2FF;
}
.p-conversion__item.-document .cta-button-link {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-conversion__item.-estimate::before {
  background-color: #FFE7C9;
}

.p-conversion__item.-contact::before {
  background-color: #ECF6C1;
}

.p-customer {
  background-color: #F5FAFF;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-customer {
    padding-block: 6rem 6.25rem;
  }
}
.p-customer .c-title-main .br-sp {
  display: block;
}
@media screen and (min-width: 550px) {
  .p-customer .c-title-main .br-sp {
    display: none;
  }
}

.p-customer__content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-customer__content {
    margin-top: 3.9375rem;
  }
}

.p-customer__content-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-customer__content-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-customer__content-lower {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 2.625rem;
    margin-top: 2.625rem;
  }
}

.p-customer__content-item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
          box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
  border-radius: 1.25rem;
  overflow: hidden;
  max-width: 37.4375rem;
}
.p-customer__content-item .title {
  background-color: #06BCF0;
  font-size: 1.25rem;
  padding: 0.875rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-customer__content-item .title {
    font-size: 1.75rem;
  }
}
.p-customer__content-item .body {
  padding-block: 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-customer__content-item .body {
    padding-block: 3.25rem 2.625rem;
  }
}
.p-customer__content-item .item-image .image {
  width: 100%;
  height: auto;
}
.p-customer__content-item .body-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  padding-inline: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-customer__content-item .body-text {
    padding-inline: 3rem;
    font-size: 1.25rem;
  }
}
.p-customer__content-item .icon {
  width: 2.1875rem;
  height: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-customer__content-item .icon {
    width: 3.3125rem;
    height: 3.3125rem;
  }
}

.p-faq {
  background-color: #F5FAFF;
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-block: 6rem 6.25rem;
  }
}

.p-faq__inner {
  width: 90%;
  max-width: 62.5rem;
  margin: 0 auto;
}

.p-faq__text {
  text-align: center;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-faq__text {
    margin-top: 2.25rem;
  }
}

.p-faq__content {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__content {
    margin-top: 2.875rem;
  }
}

.p-features {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(12%, transparent), color-stop(12%, #F0F5E6), to(#F0F5E6));
  background: linear-gradient(180deg, transparent 0%, transparent 12%, #F0F5E6 12%, #F0F5E6 100%);
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-features {
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(33%, transparent), color-stop(33%, #F0F5E6), to(#F0F5E6));
    background: linear-gradient(180deg, transparent 0%, transparent 33%, #F0F5E6 33%, #F0F5E6 100%);
    padding-block: 6.25rem;
  }
}
.p-features .c-title-main .title span {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-features .c-title-main .title span {
    font-size: 1.5rem;
  }
}
.p-features .c-title-main .br-sp {
  display: block;
}
@media screen and (min-width: 550px) {
  .p-features .c-title-main .br-sp {
    display: none;
  }
}

.p-features__lead {
  width: 100%;
  margin-top: 1.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-features__lead {
    width: 47.1875rem;
    margin-top: 2.3125rem;
  }
}

.p-features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-features__list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 1.75rem;
    margin-top: 6.25rem;
  }
}

.p-features__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-features__item .head-title {
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-features__item .head-title {
    font-size: 1.25rem;
  }
}
.p-features__item .offer {
  background-color: #fff;
  -webkit-box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
          box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
  border-radius: 1.25rem;
  padding: 1.25rem 1.875rem;
  margin-top: 0.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-features__item .offer {
    padding: 1.75rem 2.3125rem;
  }
}
.p-features__item .offer::after {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.875rem;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--main-c);
  position: absolute;
  bottom: -1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-features__item .offer::after {
    width: 2.1875rem;
    height: 1.25rem;
  }
}
.p-features__item .offer-lead {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.46;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-features__item .offer-lead {
    font-size: 1.5rem;
  }
}
.p-features__item .offer-lead .small {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-features__item .offer-lead .small {
    font-size: 1.125rem;
  }
}
.p-features__item .offer-text {
  margin-top: 1.125rem;
  line-height: 1.5;
}
.p-features__item .merit {
  padding-top: 0.9375rem;
  margin-top: 1.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-features__item .merit {
    margin-top: 2.0625rem;
  }
}
.p-features__item .merit-label {
  background-color: var(--main-c);
  border-radius: 1.25rem;
  font-size: 0.875rem;
  color: #fff;
  position: absolute;
  top: 0;
  left: 1.0625rem;
  padding: 0.0625rem 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-features__item .merit-label {
    font-size: 1rem;
  }
}
.p-features__item .merit-list {
  background-color: #fff;
  -webkit-box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
          box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
  border-radius: 1.25rem;
  padding: 1.875rem 1.875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-features__item .merit-list {
    padding-block: 2.9375rem 2rem;
    padding-inline: 2rem 2.9375rem;
  }
}
.p-features__item .merit-item {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  padding-left: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-features__item .merit-item {
    font-size: 1rem;
    padding-left: 3rem;
  }
}
.p-features__item .merit-item::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 1.25rem;
  height: auto;
  background-image: url("../images/icons/icon-check.svg");
  background-size: cover;
  position: absolute;
  top: 0.125rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-features__item .merit-item::before {
    width: 1.5625rem;
  }
}
.p-features__item .merit-item + .merit-item {
  margin-top: 1.125rem;
}
.p-features__item .merit-item .emphasis {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-features__item .merit-item .emphasis {
    font-size: 1.25rem;
  }
}

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

.p-features-process__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 1.0625rem 1.875rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: 1.45;
  background-color: #A9D18E;
  border-radius: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-features-process__title {
    padding: 1.25rem 7.375rem;
    border-radius: 2.375rem;
  }
}
.p-features-process__title .br-sp {
  display: block;
}
@media screen and (min-width: 500px) {
  .p-features-process__title .br-sp {
    display: none;
  }
}

.p-features-process__lead {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-features-process__lead {
    font-size: 2.5rem;
    margin-top: 1.875rem;
  }
}
.p-features-process__lead .br-sp {
  display: block;
}
@media screen and (min-width: 600px) {
  .p-features-process__lead .br-sp {
    display: none;
  }
}

.p-features-process__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.8125rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-features-process__content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 2.5rem;
    margin-top: 5rem;
  }
}

.p-features-process__process {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.9375rem;
  position: relative;
}
.p-features-process__process:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1.5rem;
  background-image: url("../images/common/process-arrow.webp");
  background-size: cover;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-features-process__process:not(:last-child)::after {
    left: unset;
    top: 50%;
    right: -2.5rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-features-process__process .label {
  border-radius: 1.25rem;
  color: #fff;
  white-space: nowrap;
  padding: 0.0625rem 1.25rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.p-features-process__process .content {
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
          box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
  border-radius: 0.625rem;
  padding-block: 2.5rem 1.875rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-features-process__process .content {
    padding-block: 2.9375rem 2.5rem;
  }
}
.p-features-process__process .content::before {
  content: "";
  display: inline-block;
  width: 141%;
  height: auto;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.p-features-process__process .head-title {
  font-size: 1.125rem;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-features-process__process .head-title {
    height: 3.375rem;
  }
}
.p-features-process__process .head-title span {
  display: block;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.p-features-process__process .head-title .rotate {
  display: inline-block;
  -webkit-transform: rotate(23deg);
          transform: rotate(23deg);
  margin-top: 0;
  margin-right: 0.3125rem;
}
.p-features-process__process .image {
  height: 3.5rem;
  margin: 1.5rem auto 0;
}
.p-features-process__process .middle,
.p-features-process__process .bottom {
  padding-inline: 1.25rem;
}
.p-features-process__process .middle {
  margin-top: 1.5rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-features-process__process .middle {
    margin-top: 1.75rem;
  }
}
.p-features-process__process .middle-text {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.p-features-process__process .bottom {
  margin-top: 1.125rem;
}
.p-features-process__process .bottom-conventional__title {
  display: inline-block;
  border: dashed 0.0625rem #CED0D2;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.25rem 1.375rem;
}
.p-features-process__process .bottom-conventional__text {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.p-features-process__process.-first {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-first {
    width: 20rem;
  }
}
.p-features-process__process.-first .label {
  background-color: var(--main-c);
}
.p-features-process__process.-first .content::before {
  background-color: #F5F5F5;
  aspect-ratio: 494/226;
  bottom: calc(clamp(6.25rem, -8.697rem + 63.78vw, 21.875rem) * -1);
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-first .content::before {
    bottom: -5rem;
  }
}

.p-features-process__process.-second {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-second {
    width: 20rem;
  }
}
.p-features-process__process.-second .label {
  background-color: #95C478;
}
.p-features-process__process.-second .content::before {
  background-color: #F5F5F5;
  aspect-ratio: 494/226;
  bottom: calc(clamp(6.25rem, -8.697rem + 63.78vw, 21.875rem) * -1);
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-second .content::before {
    bottom: -5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-second .middle-text {
    letter-spacing: 0.07em;
  }
}

.p-features-process__process.-third {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-third {
    width: 12.5rem;
  }
}
.p-features-process__process.-third .label {
  background-color: #FFA02D;
}
.p-features-process__process.-third .content::before {
  background-color: #F5F5F5;
  aspect-ratio: 494/226;
  bottom: calc(clamp(6.25rem, -8.697rem + 63.78vw, 21.875rem) * -1);
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-third .content::before {
    aspect-ratio: 310/226;
    bottom: -5rem;
  }
}

.p-features-process__process.-fourth {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-fourth {
    width: 12.5rem;
  }
}
.p-features-process__process.-fourth .label {
  background-color: #95C478;
}
.p-features-process__process.-fourth .content::before {
  background-color: #F5F5F5;
  aspect-ratio: 494/226;
  bottom: calc(clamp(6.25rem, -8.697rem + 63.78vw, 21.875rem) * -1);
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-fourth .content::before {
    aspect-ratio: 310/226;
    bottom: -5rem;
  }
}

.p-features-process__process.-fifth {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-fifth {
    width: 12.5rem;
  }
}
.p-features-process__process.-fifth .label {
  background-color: var(--main-c);
}
.p-features-process__process.-fifth .content {
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-fifth .content {
    padding-bottom: 2.5rem;
  }
}
.p-features-process__process.-fifth .content::before {
  background-color: #F5FAFF;
  aspect-ratio: 494/226;
  bottom: calc(clamp(9.375rem, -3.779rem + 56.12vw, 23.125rem) * -1);
}
@media screen and (min-width: 768px) {
  .p-features-process__process.-fifth .content::before {
    aspect-ratio: 310/226;
    bottom: -5rem;
  }
}

.p-flow {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-block: 6rem 6.25rem;
  }
}

.p-flow__text {
  width: 100%;
  margin-top: 1.5625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__text {
    margin-top: 2.25rem;
    width: 47.5rem;
  }
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 0;
    margin-top: 4.0625rem;
  }
}

.p-flow__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-flow__item .head {
  background-color: #567292;
  color: #fff;
  padding-block: 0.5625rem 0.8125rem;
  border-radius: 0.9375rem;
  position: relative;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .p-flow__item .head {
    padding-right: 0.875rem;
    border-radius: 0;
  }
  .p-flow__item .head::after {
    content: "";
    display: inline-block;
    width: auto;
    height: 100%;
    aspect-ratio: 41/80;
    background-image: url("../images/common/flow-arrow.svg");
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    right: -0.75rem;
    z-index: 1;
  }
}
.p-flow__item .head-text {
  font-size: 0.9375rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}
.p-flow__item .num {
  font-family: "Lexend", sans-serif;
  font-size: 2.125rem;
}
.p-flow__item .month {
  font-size: 1rem;
}
.p-flow__item .tilde {
  font-size: 1.5rem;
}
.p-flow__item .body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item .body {
    padding-right: 0.875rem;
    margin-top: 1.625rem;
  }
}
.p-flow__item .body-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.25rem;
  background-color: #F5F5F5;
  border-radius: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow__item .body-cont {
    display: block;
  }
}
.p-flow__item .body-cont-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item .body-cont-inner {
    display: block;
  }
}
.p-flow__item .body-bubble {
  padding-top: 0.4375rem;
  padding-inline: 0.625rem;
  margin-top: 0.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__item .body-bubble {
    height: 4.6875rem;
  }
}
.p-flow__item .body-bubble:has(p)::before {
  content: "";
  display: inline-block;
  width: 0.5625rem;
  height: 0.5rem;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #FFE7C9;
  position: absolute;
  top: 0;
  left: 3.125rem;
}
.p-flow__item .body-bubble p {
  background-color: #FFE7C9;
  border-radius: 2.5rem;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.43;
  padding-block: 0.8125rem;
}
.p-flow__item .list {
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item .list {
    width: 100%;
    margin-top: 0.75rem;
  }
}
.p-flow__item .item {
  position: relative;
  padding-left: 0.75rem;
  line-height: 1.5;
}
.p-flow__item .item::before {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--sub-c);
  border-radius: 50%;
  position: absolute;
  top: 0.6875rem;
  left: 0;
}
.p-flow__item .icon {
  width: 4.375rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-flow__item .icon {
    width: 5.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-flow__item:last-child .head::after {
    display: none;
  }
}
.p-flow__item:last-child .body {
  padding-right: 0;
}

.p-logo-slider {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-logo-slider.-first {
    padding-block: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-logo-slider.-second {
    padding-block: 3.75rem;
  }
}
.p-logo-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.p-logo-slider__container {
  height: auto;
}
.p-logo-slider__container.-bottom {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.p-logo-slider__container.-bottom .swiper-slide {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.p-logo-slider__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-logo-slider__item {
  width: 8.75rem;
}
@media screen and (min-width: 768px) {
  .p-logo-slider__item {
    width: clamp(12.5rem, 0.302rem + 12.66vw, 15.5rem);
  }
}
.p-logo-slider__item img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-problem {
  background-color: #F5FAFF;
  padding-block: 3.75rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-problem {
    padding-block: 5.0625rem 6.25rem;
  }
}
.p-problem::before {
  content: "";
  display: inline-block;
  width: 80%;
  height: auto;
  aspect-ratio: 907/700;
  background-color: var(--main-c);
  border-radius: 1.25rem;
  opacity: 0.15;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-problem::before {
    width: 56.6875rem;
    bottom: -3.125rem;
    right: clamp(3.75rem, -44.533rem + 50.13vw, 15.625rem);
  }
}

.p-problem__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-problem__content {
    gap: 2.5rem;
    margin-top: 2.75rem;
  }
}

.p-problem__item {
  width: 100%;
  padding-top: 1.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-problem__item {
    width: calc((100% - 2.5rem) / 2);
  }
}
.p-problem__item .label {
  font-size: 0.875rem;
  font-weight: bold;
  color: #567292;
  line-height: 1;
  background-color: #fff;
  border-radius: 1.25rem;
  border: solid 0.125rem #567292;
  padding: 0.25rem 0.4375rem 0.375rem;
  position: absolute;
  top: 0;
  left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-problem__item .label {
    font-size: 1rem;
  }
}
.p-problem__item .content {
  border-radius: 1.25rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
          box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
}
.p-problem__item .head {
  background-color: #567292;
  color: #fff;
  padding: 1.1875rem 1.25rem;
}
.p-problem__item .head-title {
  text-align: center;
  line-height: 1.65;
}
.p-problem__item .head-title .emphasis {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.1;
  border-bottom: solid 0.0625rem #fff;
}
@media screen and (min-width: 768px) {
  .p-problem__item .head-title .emphasis {
    font-size: 1.5rem;
  }
}
.p-problem__item .marker {
  font-weight: bold;
  --mk-color: #FFF57D;
  --mk-height: 1em;
  --mk-offset: 0.5em;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0, var(--mk-color)));
  background: linear-gradient(transparent calc(100% - var(--mk-height) - var(--mk-offset)), var(--mk-color) 0);
}
.p-problem__item .body {
  background-color: #fff;
}
.p-problem__item .body-upper {
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-problem__item .body-upper {
    padding: 2rem 3.625rem 0.75rem;
  }
}
.p-problem__item .body-lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 0;
  padding-block: 1.9375rem 1.5rem;
  padding-inline: 1.25rem;
}
.p-problem__item .body-lower::before {
  content: "";
  display: inline-block;
  width: 141%;
  height: auto;
  aspect-ratio: 980/380;
  background-color: #F5F5F5;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-problem__item .body-lower::before {
    aspect-ratio: 847/226;
  }
}
.p-problem__item .body-lower::after {
  content: "";
  display: inline-block;
  aspect-ratio: 54/63;
  width: 1.5rem;
  height: auto;
  background-image: url("../images/common/light-bulb.webp");
  background-size: cover;
  position: absolute;
  top: -0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-problem__item .body-lower::after {
    width: 2.125rem;
    top: 50%;
    left: 3.125rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-problem__item .body-lower .text {
  font-size: 0.875rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.6;
}
@media screen and (min-width: 420px) {
  .p-problem__item .body-lower .text {
    width: 21.25rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-problem__item .body-lower .text {
    font-size: 1.125rem;
    text-align: center;
    width: unset;
  }
}
.p-problem__item .body-lower .text .br {
  display: none;
}
@media screen and (min-width: 420px) {
  .p-problem__item .body-lower .text .br {
    display: block;
  }
}
.p-problem__item .body-lower .emphasis {
  font-size: 1.25rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-problem__item .body-lower .emphasis {
    font-size: 1.5rem;
  }
}

.p-reason {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-reason {
    padding-top: 6.25rem;
  }
}
.p-reason .c-title-main span {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-reason .c-title-main span {
    font-size: 1.5rem;
  }
}
.p-reason .c-title-main .br-sp {
  display: block;
}
@media screen and (min-width: 460px) {
  .p-reason .c-title-main .br-sp {
    display: none;
  }
}
.p-reason .image-arrow {
  width: 2.25rem;
  margin: 1.875rem auto 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reason .image-arrow {
    width: 4.8125rem;
    margin: 2.9375rem auto 1.875rem;
  }
}

.p-reason__text {
  text-align: left;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-reason__text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 2.25rem;
    margin-inline: auto;
  }
}

.p-reason__list {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-reason__list {
    margin-top: 4.0625rem;
  }
}

.p-reason__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-reason__item {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 0;
  }
}
.p-reason__item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-reason__item:not(:first-child) {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.p-reason__item:nth-child(even) .p-reason__image-wrap {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(even) .p-reason__image-wrap {
    margin-left: unset;
  }
}
.p-reason__item:nth-child(even) .p-reason__image-wrap::before {
  border-radius: 18.75rem 0 0 18.75rem;
  left: unset;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(even) .p-reason__image {
    margin-inline: 2.5rem auto;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(even) .p-reason__content {
    padding-left: 0;
    padding-right: 3.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__item:nth-child(even) .content-inner {
    width: 100%;
    margin-left: auto;
  }
}

.p-reason__image-wrap {
  position: relative;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reason__image-wrap {
    width: 51.8%;
    padding-bottom: 2.5rem;
  }
}
.p-reason__image-wrap::before {
  content: "";
  display: inline-block;
  width: 96%;
  height: clamp(14.688rem, 3.626rem + 47.19vw, 26.25rem);
  border-radius: 0 18.75rem 18.75rem 0;
  background: #68E0CF;
  background: linear-gradient(55deg, rgb(104, 224, 207) 35%, rgb(32, 156, 255) 110%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-reason__image-wrap::before {
    width: 100%;
    height: 30.25rem;
  }
}

.p-reason__image {
  aspect-ratio: 694/511;
  width: 90%;
  max-width: 43.375rem;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-reason__image {
    width: 100%;
    margin-inline: auto 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-reason__content {
    width: 48.2%;
    padding-left: 3.9375rem;
    margin-top: 4.375rem;
  }
}
.p-reason__content .content-inner {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-reason__content .content-inner {
    width: 100%;
    margin: unset;
    max-width: 37.625rem;
  }
}
.p-reason__content .number {
  font-size: 0.875rem;
  font-family: "Lexend", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-reason__content .number {
    font-size: 1rem;
  }
}
.p-reason__content .title {
  font-size: 1.3125rem;
  line-height: 1.3;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-reason__content .title {
    font-size: 2.25rem;
    margin-top: 1.25rem;
  }
}
.p-reason__content .main-text {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-reason__content .main-text {
    margin-top: 2.1875rem;
  }
}
.p-reason__content .text {
  line-height: 1.5;
}
.p-reason__content .text:not(:first-child) {
  margin-top: 1.25rem;
}
.p-reason__content .list {
  margin-top: 1.25rem;
  background-color: #F5FAFF;
  border-radius: 0.625rem;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-reason__content .list {
    padding: 1.25rem 1.875rem;
  }
}
.p-reason__content .item {
  font-size: 1rem;
  font-weight: bold;
  color: #244163;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-reason__content .item {
    font-size: 1.25rem;
    padding-left: 2.375rem;
  }
}
.p-reason__content .item::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 1.25rem;
  height: auto;
  background-image: url("../images/icons/icon-check.svg");
  background-size: cover;
  position: absolute;
  top: 0.3em;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-reason__content .item::before {
    width: 1.5625rem;
  }
}

.p-reason__conclusion-title {
  margin: 0 auto;
  background-color: var(--main-c);
  border-radius: 0.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
  color: #fff;
  padding: 1rem 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-title {
    width: 47.1875rem;
    font-size: 1.5rem;
    padding: 1rem 3.75rem;
  }
}
.p-reason__conclusion-title::after {
  content: "";
  display: inline-block;
  width: 2.125rem;
  height: 2.25rem;
  background-image: url("../images/common/glitter.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -2.5rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-title::after {
    width: 3.5625rem;
    height: 3.75rem;
    top: -1.6875rem;
    right: -3.9375rem;
  }
}
.p-reason__conclusion-title .br-sp {
  display: block;
}
@media screen and (min-width: 565px) {
  .p-reason__conclusion-title .br-sp {
    display: none;
  }
}

.p-reason__conclusion-text {
  width: 100%;
  margin: 1.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-text {
    width: 47.1875rem;
  }
}

.p-reason__conclusion-content-wrap {
  position: relative;
  z-index: 0;
  padding-bottom: clamp(3.75rem, 0.163rem + 15.31vw, 7.5rem);
}
.p-reason__conclusion-content-wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 109.375rem;
  background: #68E0CF;
  background: linear-gradient(45deg, rgb(104, 224, 207) 0%, rgb(32, 156, 255) 100%);
  border-radius: 5rem 5rem 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.5;
}
@media screen and (min-width: 550px) {
  .p-reason__conclusion-content-wrap::before {
    height: 80rem;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-content-wrap::before {
    height: 46.875rem;
    border-radius: clamp(21.875rem, 9.169rem + 13.19vw, 25rem) clamp(21.875rem, 9.169rem + 13.19vw, 25rem) 0 0;
  }
}

.p-reason__conclusion-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 90%;
  max-width: 87.5rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-content {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    margin: 5rem auto 0;
  }
}

.p-reason__conclusion-item {
  width: 100%;
  background-color: #fff;
  border: solid 0.0625rem #CED0D2;
  border-radius: 1.25rem;
  padding: 1.875rem 1.25rem;
  position: relative;
  -webkit-box-shadow: 0 0 1.875rem rgba(105, 175, 255, 0.1);
          box-shadow: 0 0 1.875rem rgba(105, 175, 255, 0.1);
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-item {
    width: 50%;
    padding: 2.5rem 3.125rem;
  }
}
.p-reason__conclusion-item .title {
  text-align: center;
  margin-top: 1.75rem;
}
.p-reason__conclusion-item .small {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-item .small {
    font-size: 1.25rem;
  }
}
.p-reason__conclusion-item .sub-title {
  text-align: center;
  margin-top: 0.5rem;
}
.p-reason__conclusion-item .br {
  display: block !important;
}
@media screen and (min-width: 560px) {
  .p-reason__conclusion-item .br {
    display: none !important;
  }
}
.p-reason__conclusion-item .text {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 550px) {
  .p-reason__conclusion-item .text.-left {
    width: 54%;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-item .text.-left {
    width: 62%;
  }
}
.p-reason__conclusion-item .supplement-image {
  width: 100%;
  max-width: 25rem;
  height: auto;
  -webkit-box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
          box-shadow: 0 0 3.125rem rgba(152, 192, 219, 0.2);
  position: relative;
  margin-top: 1.25rem;
  margin-inline: auto;
}
@media screen and (min-width: 550px) {
  .p-reason__conclusion-item .supplement-image {
    width: 45%;
    position: absolute;
    bottom: clamp(-90px, -58.06vw + 355.33px, 36px);
    right: -0.9375rem;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-reason__conclusion-item .supplement-image {
    width: 20rem;
    bottom: -4.375rem;
    right: -3.75rem;
  }
}
.p-reason__conclusion-item .supplement-image .image {
  width: 100%;
  height: auto;
}
.p-reason__conclusion-item #bar_29002_anim {
  transform-box: fill-box;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: scaleY(0.2);
          transform: scaleY(0.2);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.p-reason__conclusion-item [data-inview=true] #bar_29002_anim {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.p-reason__conclusion-item #bar_29001_anim {
  transform-box: fill-box;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: scaleY(2);
          transform: scaleY(2);
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.p-reason__conclusion-item [data-inview=true] #bar_29001_anim {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

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

.p-thanks__inner {
  width: 90%;
  max-width: 46.25rem;
  margin: 0 auto;
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__inner {
    padding-block: 12.5rem;
  }
}

.p-thanks__title {
  text-align: center;
}
.p-thanks__title .title {
  margin-top: 1.875rem;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .p-thanks__title .title {
    margin-top: 2.375rem;
  }
}
.p-thanks__title .br {
  display: block;
}
@media screen and (min-width: 430px) {
  .p-thanks__title .br {
    display: none;
  }
}

.p-thanks__text {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    margin-top: 2.375rem;
  }
}
.p-thanks__text + .p-thanks__text {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__text + .p-thanks__text {
    margin-top: 3.75rem;
  }
}
.p-thanks__text span {
  display: block;
}

.p-thanks__download {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__download {
    margin-top: 2.375rem;
  }
}
.p-thanks__download + .p-thanks__text {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__download + .p-thanks__text {
    margin-top: 3.75rem;
  }
}

.p-thanks__button {
  display: block;
  width: 20.625rem;
  background-color: #99A0A8;
  border: solid 0.1875rem #99a0a8;
  border-radius: 2.5rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  padding-block: 0.625rem 0.6875rem;
  margin: 2.5rem auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-thanks__button {
    font-size: 1.5rem;
    margin: 3.75rem auto 0;
  }
}
.p-thanks__button:hover {
  background-color: #fff;
  color: #99a0a8;
}

.p-voice {
  background-color: #F5F5F5;
  padding-block: 3.75rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding-block: 6rem;
  }
}
.p-voice .l-inner--lg {
  width: 100%;
}

.p-voice__text {
  text-align: center;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-voice__text {
    margin-top: 2.25rem;
  }
}

.p-voice__content-wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-voice__content-wrapper {
    padding-inline: 3.75rem;
  }
}

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

.p-voice__slide {
  padding: 2.5rem 1.5625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-voice__slide {
    padding: 2.5rem 0.9375rem 1.875rem;
  }
}
.p-voice__slide .icon {
  width: 4.75rem;
  height: 4.75rem;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-voice__slide .icon {
    width: 5.125rem;
    height: 5.125rem;
  }
}
.p-voice__slide .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-voice__slide .inner {
  background-color: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(105, 175, 255, 0.1);
          box-shadow: 0 0 1.25rem rgba(105, 175, 255, 0.1);
  border-radius: 1.25rem;
  padding-block: 3.75rem;
  padding-inline: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-voice__slide .inner {
    padding-block: 4.125rem 7.3125rem;
  }
}
.p-voice__slide .inner::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #89F7FE;
  background: linear-gradient(145deg, rgb(137, 247, 254) 0%, rgb(102, 166, 255) 100%);
  border-radius: 1.25rem;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-voice__slide .inner::before {
    aspect-ratio: 371/453;
    width: 94%;
    height: auto;
    top: -0.5rem;
    left: 0.75rem;
  }
}
.p-voice__slide .inner::after {
  content: "";
  display: inline-block;
  background-image: url("../images/common/double-quotation.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
  top: 1.625rem;
  right: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-voice__slide .inner::after {
    width: 2.125rem;
    height: 2.125rem;
  }
}
.p-voice__slide .employees {
  border: solid 0.0625rem #06BCF0;
  border-radius: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1.1875rem;
  margin-top: 0.375rem;
}
.p-voice__slide .text {
  margin-top: 2.3125rem;
  padding-top: 1.5rem;
  border-top: solid 0.0625rem #CED0D2;
}

.p-voice__slide-prev,
.p-voice__slide-next {
  width: 1.875rem;
  height: 1.875rem;
  background-color: rgba(19, 32, 47, 0.5);
  border-radius: 0.1875rem;
  -webkit-box-shadow: 0 0.1875rem 1.25rem rgba(0, 0, 0, 0.41);
          box-shadow: 0 0.1875rem 1.25rem rgba(0, 0, 0, 0.41);
  position: absolute;
  top: 45%;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .p-voice__slide-prev,
  .p-voice__slide-next {
    width: 3.125rem;
    height: 3.125rem;
    -webkit-box-shadow: 0 0.1875rem 1.875rem rgba(0, 0, 0, 0.41);
            box-shadow: 0 0.1875rem 1.875rem rgba(0, 0, 0, 0.41);
    top: 42%;
  }
}
.p-voice__slide-prev:hover,
.p-voice__slide-next:hover {
  opacity: 0.6;
}
.p-voice__slide-prev::after,
.p-voice__slide-next::after {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.875rem;
  background-image: url("../images/icons/icon-triangle.svg");
  background-size: cover;
  position: absolute;
  top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-voice__slide-prev::after,
  .p-voice__slide-next::after {
    width: 1.125rem;
    height: 1.3125rem;
    top: 0.9375rem;
  }
}

.p-voice__slide-prev {
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-voice__slide-prev {
    left: 0;
  }
}
.p-voice__slide-prev::after {
  left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-voice__slide-prev::after {
    left: 0.875rem;
  }
}

.p-voice__slide-next {
  right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-voice__slide-next {
    right: 0;
  }
}
.p-voice__slide-next::after {
  right: 0.5rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .p-voice__slide-next::after {
    right: 0.875rem;
  }
}

/*---------ヘルパークラス　接頭辞「u-」-------------*/
.u-sp {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

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

.u-hide {
  visibility: hidden !important;
  opacity: 0 !important;
}

.u-show {
  visibility: visible !important;
  opacity: 1 !important;
}

.u-hidden {
  overflow: hidden !important;
}

.u-d-inline {
  display: inline-block !important;
}

.u-mt-xs {
  margin-top: 0.3125rem !important;
}

.u-mt-s {
  margin-top: 0.625rem !important;
}

.u-mt-m {
  margin-top: 1.25rem !important;
}

.u-mt-l {
  margin-top: 1.875rem !important;
}

.u-mt-xl {
  margin-top: 1.875rem !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media screen and (min-width: 768px) {
  .u-mt-xs {
    margin-top: 0.625rem !important;
  }
  .u-mt-s {
    margin-top: 1.25rem !important;
  }
  .u-mt-m {
    margin-top: 1.875rem !important;
  }
  .u-mt-l {
    margin-top: 3.75rem !important;
  }
  .u-mt-xl {
    margin-top: 5rem !important;
  }
}
.u-bg {
  background-color: var(--bg-c);
}

.u-spacer1 {
  padding-top: 2vw;
}
@media screen and (min-width: 768px) {
  .u-spacer1 {
    padding-top: 1rem;
  }
}

.u-spacer2 {
  padding-top: 4vw;
}
@media screen and (min-width: 768px) {
  .u-spacer2 {
    padding-top: 2rem;
  }
}

.u-spacer3 {
  padding-top: 6vw;
}
@media screen and (min-width: 768px) {
  .u-spacer3 {
    padding-top: 3rem;
  }
}

.u-spacer4 {
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  .u-spacer4 {
    padding-top: 4rem;
  }
}

.u-spacer5 {
  padding-top: 10vw;
}
@media screen and (min-width: 768px) {
  .u-spacer5 {
    padding-top: 5rem;
  }
}

.u-spacer6 {
  padding-top: 12vw;
}
@media screen and (min-width: 768px) {
  .u-spacer6 {
    padding-top: 6rem;
  }
}

.u-spacer7 {
  padding-top: 14vw;
}
@media screen and (min-width: 768px) {
  .u-spacer7 {
    padding-top: 7rem;
  }
}

.u-spacer8 {
  padding-top: 16vw;
}
@media screen and (min-width: 768px) {
  .u-spacer8 {
    padding-top: 8rem;
  }
}

.u-spacer9 {
  padding-top: 18vw;
}
@media screen and (min-width: 768px) {
  .u-spacer9 {
    padding-top: 9rem;
  }
}

.u-spacer10 {
  padding-top: 20vw;
}
@media screen and (min-width: 768px) {
  .u-spacer10 {
    padding-top: 10rem;
  }
}

.u-tac {
  text-align: center !important;
}

.u-tal {
  text-align: left !important;
}

.u-tar {
  text-align: right !important;
}

.u-taj {
  text-align: justify !important;
}

.u-f-bold {
  font-weight: bold !important;
}

.u-f-en {
  font-family: "Lexend", sans-serif;
}

.u-c-main {
  color: var(--main-c);
}

.u-c-sub {
  color: var(--sub-c);
}

.u-c-orange {
  color: var(--orange);
}

.u-c-white {
  color: var(--white);
}

.u-c-black {
  color: var(--black);
}

.u-c-grad {
  background: -webkit-linear-gradient(0deg, #ACB6E5, #86FDE8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}/*# sourceMappingURL=style.css.map */