/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --zIndex: 100;
  --zIndex-header: calc(var(--zIndex) * 2);
  --zIndex-overlay: calc(var(--zIndex) * 3);
  --zIndex-fixedCta: calc(var(--zIndex) * 4);
  --color-main: #005FCA;
  --color-accent: #D61669;
  --color-sub-accent: #FDC2D3;
  --color-sub-accent2: #FFEE00;
  --color-sub-accent3: #E20F00;
  --color-white: #fff;
  --color-black: #000;
  --color-text: #444444;
  --color-note: #036EB8;
  --fontFamily-base: "Noto Sans JP", sans-serif;
  --lineHeight-base: 1.6;
  --fontSize-base: 2.4rem;
  --fontWeight-base: 400;
  --fontWeight-regular: 400;
  --fontWeight-medium: 500;
  --fontWeight-semiBold: 600;
  --fontWeight-bold: 700;
  --fontColor-base: #444444;
}

/* base */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 0.5208333333vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: var(--fontFamily-base);
  font-size: var(--fontSize-base);
  font-weight: var(--fontWeight-base);
  line-height: var(--lineHeight-base);
  color: var(--fontColor-base);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* l-body */
.l-body.noScroll {
  overflow: hidden;
}

/* l-header */
.l-header {
  position: relative;
}
.l-header img {
  width: 100%;
}

/* l-footer */
.l-footer {
  font-size: 2.2rem;
  line-height: 1.6;
  color: var(--color-white);
  background-color: #003990;
  padding: 2.4rem 0 3.4rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    font-size: 1.287rem;
    text-align: center;
    padding: 1.2rem 0 17.5rem;
  }
}
.l-footer__inner {
  max-width: 147rem;
  padding: 0 0.5rem;
  margin: 0 auto;
}
.l-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .l-footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer__infoTxt span {
  display: inline-block;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer__infoTxt span {
    margin-top: 0;
  }
}
.l-footer__contactInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .l-footer__contactInfo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__tel {
    font-size: 1.487rem;
  }
}
.l-footer__tel::before {
  content: "";
  display: inline-block;
  width: 4rem;
  height: 2.1rem;
  background: url(../images/i_freedial.svg) no-repeat center center/contain;
  margin-right: 0.4rem;
}
@media screen and (max-width: 768px) {
  .l-footer__tel::before {
    width: 2.3rem;
    height: 1.3rem;
  }
}
.l-footer__copy {
  font-size: 2.2rem;
  text-align: right;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer__copy {
    font-size: 1.15rem;
    margin-top: 0.4rem;
    text-align: center;
  }
}

/* l-inner */
.l-inner {
  width: 145rem;
  max-width: 100%;
  padding: 0 1.5rem;
  margin: auto;
}

/* c-site */
.c-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.c-site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* c-ttl*/
/* c-btn */
.c-btn {
  display: block;
  color: var(--color-white);
  background-color: var(--color-accent);
  border: 0.6rem solid var(--color-sub-accent);
  padding: 2rem 6.7rem;
  border-radius: 20rem;
  font-weight: var(--fontWeight-bold);
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  text-align: center;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 2rem;
    padding: 2rem 1rem;
  }
}
.c-btn:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.c-btn--accent2 {
  color: #231815;
  background-color: var(--color-sub-accent2);
  border-color: var(--color-sub-accent2);
}
.c-btn--accent3 {
  color: var(--color-white);
  background-color: var(--color-sub-accent3);
  border-color: #ECB152;
}

/* c-fixedCta*/
.c-fixedCta {
  position: fixed;
  top: 14.2rem;
  right: 0;
  width: 23.5rem;
  z-index: var(--zIndex-fixedCta);
}
@media screen and (max-width: 768px) {
  .c-fixedCta {
    width: 100%;
    top: auto;
    bottom: 0;
    background-color: var(--color-white);
    padding: 1rem 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .c-fixedCta__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 0.6rem;
  }
}
.c-fixedCta__item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-fixedCta__item:nth-child(2), .c-fixedCta__item:nth-child(3) {
    width: calc(50% - 0.3rem);
  }
}
.c-fixedCta__link {
  display: block;
}
.c-fixedCta__link img {
  width: 100%;
}
.c-fixedCta__link:hover {
  opacity: 0.8;
}

/* p-mv */
.p-mv {
  background: url(../images/mv_bg.jpg) no-repeat center/cover;
  padding: 3.2rem 0 3.4rem;
}
@media screen and (max-width: 768px) {
  .p-mv {
    padding: 0;
  }
}
.p-mv__inner {
  max-width: 158.6rem;
  margin: 0 auto;
}
.p-mv__copy img {
  width: 100%;
}

/* p-cta */
.p-cta {
  padding: 8rem 0 6.6rem;
}
@media screen and (max-width: 768px) {
  .p-cta {
    padding: 0 0 4rem;
    color: var(--color-black);
  }
}
.p-cta__inner {
  padding: 0 1.2rem;
}
.p-cta__btnArea {
  max-width: 64.4rem;
  margin: 0 auto;
}
.p-cta__periodArea {
  text-align: center;
  margin-top: 1.6rem;
}
.p-cta__due {
  display: inline-block;
  font-size: 6.598rem;
  font-weight: var(--fontWeight-bold);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-cta__due {
    font-size: 3.652rem;
    line-height: 1.2;
  }
}
.p-cta__due::before {
  content: "";
  display: block;
  width: 100%;
  height: 4.2rem;
  background-color: rgba(250, 209, 222, 0.7);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-cta__due::before {
    height: 2.3rem;
  }
}
.p-cta__dueTtl {
  display: inline-block;
  color: var(--color-white);
  background-color: var(--color-accent);
  font-size: 4.892rem;
  letter-spacing: 0.1em;
  padding: 0 2.2rem;
  margin-right: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-cta__dueTtl {
    font-size: 3.248rem;
    margin-right: 1rem;
    padding: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-cta__dueYear {
    display: inline-block;
    font-size: 4.635rem;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem);
  }
}
.p-cta__dueNum {
  font-size: 9.237rem;
}
@media screen and (max-width: 768px) {
  .p-cta__dueNum {
    font-size: 5.112rem;
  }
}
.p-cta__dueDay {
  display: inline-block;
  margin-left: -3.5rem;
}
@media screen and (max-width: 768px) {
  .p-cta__dueDay {
    margin-left: -2.5rem;
  }
}
.p-cta__implementation {
  font-size: 4rem;
  font-weight: var(--fontWeight-bold);
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-cta__implementation {
    font-size: 2.198rem;
  }
}
.p-cta__implementationTtl {
  display: inline-block;
  color: var(--color-white);
  background-color: var(--color-main);
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  padding: 0 2rem;
  margin-right: 2rem;
}
@media screen and (max-width: 768px) {
  .p-cta__implementationTtl {
    font-size: 2.226rem;
    padding: 0 1rem;
    margin-right: 0;
  }
}
.p-cta__implementationNum {
  font-size: 5.6rem;
}
@media screen and (max-width: 768px) {
  .p-cta__implementationNum {
    font-size: 3.077rem;
  }
}
.p-cta__implementationDay {
  display: inline-block;
  margin-left: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-cta__implementationDay {
    margin-left: -1.4rem;
  }
}

/* p-worry */
.p-worry {
  padding: 5rem 0 6.6rem;
  background-color: #C8EDFF;
}
@media screen and (max-width: 768px) {
  .p-worry {
    padding: 2.6rem 0 3.2rem;
  }
}
.p-worry__inner {
  padding: 0 1rem;
}
.p-worry__ttl {
  color: var(--color-main);
  font-size: 5rem;
  line-height: 1.8;
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-worry__ttl {
    font-size: 2.695rem;
    line-height: 1.2;
  }
}
.p-worry__ttl span {
  display: inline-block;
  padding: 0 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-worry__ttl span {
    padding: 0 2.8rem;
  }
}
.p-worry__ttl span::before, .p-worry__ttl span::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 6.4rem;
  position: absolute;
  bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-worry__ttl span::before, .p-worry__ttl span::after {
    width: 2.824rem;
    height: 3.928rem;
    bottom: 0.8rem;
  }
}
.p-worry__ttl span::before {
  left: 0;
  background: url(../images/worry_deco_1.svg) no-repeat center center/contain;
}
.p-worry__ttl span::after {
  right: 0;
  background: url(../images/worry_deco_2.svg) no-repeat center center/contain;
}
.p-worry__list {
  max-width: 145rem;
  margin: 3.8rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
}
@media screen and (max-width: 768px) {
  .p-worry__list {
    max-width: 27.4rem;
    margin: 1.6rem auto 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.p-worry__item {
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
  border-radius: 1.8rem;
  overflow: hidden;
}
.p-worry__item img {
  width: 100%;
}

/* p-solution */
.p-solution {
  padding-bottom: 6.2rem;
}
@media screen and (max-width: 768px) {
  .p-solution {
    padding-bottom: 2.2rem;
  }
}
.p-solution__arrow {
  padding: 2rem 0 4rem;
  max-width: 52.7rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-solution__arrow {
    max-width: 24rem;
    padding: 0;
  }
}
.p-solution__arrow img {
  width: 100%;
}
.p-solution__body {
  padding: 5rem 0 8rem;
  background: url(../images/solution_bg.jpg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .p-solution__body {
    padding: 3.4rem 0;
    background: var(--color-main);
  }
}
.p-solution__inner {
  max-width: 148rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-solution__inner {
    padding: 0 2rem;
  }
}
.p-solution__ttl {
  color: var(--color-white);
  font-size: 6.5rem;
  line-height: 1.8;
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-solution__ttl {
    font-size: 2.695rem;
    line-height: 1.2;
  }
  .p-solution__ttl span {
    display: inline-block;
    padding: 0 6rem;
    position: relative;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-solution__ttl span {
    padding: 0 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__ttl span::before, .p-solution__ttl span::after {
    content: "";
    display: block;
    width: 4.6rem;
    height: 6.4rem;
    position: absolute;
    bottom: 1.2rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-solution__ttl span::before, .p-solution__ttl span::after {
    width: 2.824rem;
    height: 3.928rem;
    bottom: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__ttl span::before {
    left: 0;
    background: url(../images/solution_deco_1.svg) no-repeat center center/contain;
  }
  .p-solution__ttl span::after {
    right: 0;
    background: url(../images/solution_deco_2.svg) no-repeat center center/contain;
  }
}
.p-solution__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-solution__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.2rem;
    margin-top: 2.6rem;
  }
}
.p-solution__imgArea {
  width: 69rem;
  max-width: 100%;
}
.p-solution__imgArea img {
  width: 100%;
}
.p-solution__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-solution__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.2rem;
}
@media screen and (max-width: 768px) {
  .p-solution__list {
    gap: 1.2rem;
  }
}
.p-solution__item {
  min-height: 12.6rem;
  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;
  color: #231815;
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: var(--fontWeight-medium);
  background-color: #FFE97C;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-solution__item {
    min-height: 6.2rem;
    font-size: 1.882rem;
  }
}
.p-solution__triangle {
  max-width: 23rem;
  margin: 4.2rem auto 3.6rem;
}
@media screen and (max-width: 768px) {
  .p-solution__triangle {
    max-width: 12.4rem;
    margin: 2rem auto;
  }
}
.p-solution__triangle img {
  width: 100%;
}
.p-solution__messageBox {
  padding: 2rem;
  color: var(--color-accent);
  font-size: 4.3rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
  text-align: center;
  background-color: var(--color-white);
  border: 0.7rem solid var(--color-accent);
  border-radius: 2.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-solution__messageBox {
    font-size: 2.3rem;
    line-height: 1.5;
    padding: 2rem 0;
    text-align: left;
    border-width: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-solution__messageBox p {
    padding: 0 2rem;
  }
}
.p-solution__messageBox p span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-solution__iconArea {
    padding: 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.6rem;
  }
}
.p-solution__icon1 {
  width: 22.2rem;
  position: absolute;
  top: -5.4rem;
  left: -10.4rem;
}
@media screen and (max-width: 768px) {
  .p-solution__icon1 {
    position: initial;
  }
}
.p-solution__icon1 img {
  width: 100%;
}
.p-solution__icon2 {
  width: 20.9rem;
  position: absolute;
  right: -9.4rem;
  bottom: -5rem;
}
@media screen and (max-width: 768px) {
  .p-solution__icon2 {
    position: initial;
  }
}
.p-solution__icon2 img {
  width: 100%;
}
.p-solution__swiper .swiper {
  padding-bottom: 4rem;
}
.p-solution__swiper .swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.p-solution__swiper .swiper .swiper-wrapper img {
  width: 100%;
}
.p-solution__pagination {
  bottom: 0;
}
.p-solution__pagination .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 1rem !important;
  background-color: #D9D9D9;
  opacity: 1;
}
.p-solution__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #211715;
}
.p-solution__swiperArrow {
  width: 3.8rem;
  height: 3.8rem;
}
.p-solution__swiperArrow::after {
  content: "";
}
.p-solution__swiperArrowPrev {
  background: url(../images/swiper_arrow_l.png) no-repeat center center/contain;
}
.p-solution__swiperArrowNext {
  background: url(../images/swiper_arrow_r.png) no-repeat center center/contain;
}

/* p-campaign */
.p-campaign {
  padding: 2.8rem 0 6.8rem;
  background-color: var(--color-accent);
}
@media screen and (max-width: 768px) {
  .p-campaign__inner {
    padding: 0 2rem;
  }
}
.p-campaign__ttl {
  max-width: 147.8rem;
  margin: 0 auto;
}
.p-campaign__ttl img {
  width: 100%;
}
.p-campaign__subTtl {
  color: var(--color-white);
  font-size: 5rem;
  font-weight: var(--fontWeight-bold);
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-campaign__subTtl {
    font-size: 1.8rem;
  }
}
.p-campaign__menuList {
  max-width: 145rem;
  margin: 2rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-campaign__menuItem img {
  width: 100%;
}
.p-campaign__menuOr {
  color: var(--color-white);
  font-size: 8.4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1;
  text-align: center;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-campaign__menuOr {
    font-size: 4.2rem;
  }
}
.p-campaign__btnArea {
  max-width: 64.4rem;
  margin: 4rem auto 0;
}

/* p-works */
.p-works {
  padding: 5.2rem 0 8rem;
  background-color: #C8EDFF;
  margin: 10rem 0;
}
@media screen and (max-width: 768px) {
  .p-works {
    padding: 3.6rem 0;
    margin: 0 0 6rem;
  }
}
.p-works__ttl {
  color: var(--color-main);
  font-size: 5rem;
  line-height: 1.8;
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-works__ttl {
    font-size: 2.695rem;
    line-height: 1.2;
  }
}
.p-works__ttl span {
  display: inline-block;
  padding: 0 7.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-works__ttl span {
    padding: 0 3.4rem;
  }
}
.p-works__ttl span::before, .p-works__ttl span::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 6.4rem;
  position: absolute;
  bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .p-works__ttl span::before, .p-works__ttl span::after {
    width: 2.824rem;
    height: 3.928rem;
    bottom: 0rem;
  }
}
.p-works__ttl span::before {
  left: 0;
  background: url(../images/worry_deco_1.svg) no-repeat center center/contain;
}
.p-works__ttl span::after {
  right: 0;
  background: url(../images/worry_deco_2.svg) no-repeat center center/contain;
}
.p-works__inner {
  max-width: 149rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.p-works__list {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4rem 7rem;
}
@media screen and (max-width: 768px) {
  .p-works__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2.2rem;
  }
}
.p-works__item {
  padding: 4rem 4rem 3.6rem;
  background-color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-works__item {
    padding: 1.6rem 1.8rem 1.2rem;
    gap: 1rem;
  }
}
.p-works__subTtl {
  color: var(--color-white);
  font-size: 4.2rem;
  font-weight: var(--fontWeight-bold);
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1.5;
  background-color: var(--color-main);
  border-radius: 9rem;
}
@media screen and (max-width: 768px) {
  .p-works__subTtl {
    font-size: 2.3rem;
  }
}
.p-works__imgArea img {
  width: 100%;
}
.p-works__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-works__txt {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
}

/* p-voice */
.p-voice {
  color: var(--color-white);
  padding: 4.2rem 0 8rem;
  background-color: var(--color-main);
}
@media screen and (max-width: 768px) {
  .p-voice {
    padding: 3.8rem 0 2.8rem;
  }
}
.p-voice__inner {
  max-width: 150.4rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.p-voice__ttl {
  color: var(--color-white);
  font-size: 5rem;
  line-height: 1.8;
  font-weight: var(--fontWeight-bold);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-voice__ttl {
    font-size: 2.695rem;
    line-height: 1.2;
  }
}
.p-voice__ttl span {
  display: inline-block;
  padding: 0 6rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-voice__ttl span {
    padding: 0 3.6rem;
  }
}
.p-voice__ttl span::before, .p-voice__ttl span::after {
  content: "";
  display: block;
  width: 4.6rem;
  height: 6.4rem;
  position: absolute;
  bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-voice__ttl span::before, .p-voice__ttl span::after {
    width: 2.824rem;
    height: 3.928rem;
    bottom: 0;
  }
}
.p-voice__ttl span::before {
  left: 0;
  background: url(../images/solution_deco_1.svg) no-repeat center center/contain;
}
.p-voice__ttl span::after {
  right: 0;
  background: url(../images/solution_deco_2.svg) no-repeat center center/contain;
}
.p-voice__lead {
  font-size: 3.9rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-voice__lead {
    font-size: 2.119rem;
    margin-top: 2.6rem;
  }
}
.p-voice__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: 6rem;
  margin-top: 5.2rem;
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    gap: 2rem;
    margin-top: 2.2rem;
  }
}
.p-voice__item img {
  width: 100%;
}

/* p-note */
.p-note {
  padding-bottom: 8.2rem;
}
@media screen and (max-width: 768px) {
  .p-note {
    padding-top: 1rem;
    padding-bottom: 3.4rem;
  }
}
.p-note__inner {
  max-width: 149rem;
  padding: 0 2rem;
  margin: 0 auto;
}
.p-note__ttl {
  font-size: 5rem;
  color: var(--color-main);
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-note__ttl {
    font-size: 2.577rem;
    line-height: 1.45;
  }
}
.p-note__content {
  max-width: 106.8rem;
  padding: 0 2.6rem;
  margin: 0 auto;
}
.p-note__content h3 {
  color: var(--color-main);
  font-size: 3.4rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.5;
  margin: 2.2rem 0 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 0.3rem solid var(--color-note);
}
@media screen and (max-width: 768px) {
  .p-note__content h3 {
    font-size: 1.9rem;
    line-height: 1.5;
    border-bottom-width: 1.88px;
    padding-bottom: 0.4rem;
    margin: 1.4rem 0 1.2rem;
  }
}
.p-note__content h4 {
  color: var(--color-note);
  font-size: 2.6rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
  margin-top: 1.4rem;
}
@media screen and (max-width: 768px) {
  .p-note__content h4 {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 1.2rem;
  }
}
.p-note__content p {
  font-size: 2.2rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-note__content p {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }
}
.p-note__content p.p-note__lead {
  color: var(--color-note);
  font-size: 2.33rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.7;
  margin-top: 2.2rem;
}
@media screen and (max-width: 768px) {
  .p-note__content p.p-note__lead {
    max-width: 27.4rem;
    margin: 1.2rem auto 0;
    font-weight: var(--fontWeight-medium);
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.p-note__content p.p-note__note {
  font-size: 2.2rem;
  line-height: 1.7;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-note__content p.p-note__note {
    font-size: 1.4rem;
  }
}
.p-note__list {
  margin-top: 8.8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem;
}
@media screen and (max-width: 768px) {
  .p-note__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
    margin-top: 3rem;
  }
}
.p-note__item {
  text-align: center;
  background-color: #C8EDFF;
  border-radius: 2rem;
  padding: 2rem 2.4rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .p-note__item {
    padding: 0.4rem 1rem 0.8rem;
    border-radius: 1.2rem;
  }
}
.p-note__itemTtl {
  color: var(--color-main);
  font-size: 5rem;
  font-weight: var(--fontWeight-bold);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-note__itemTtl {
    font-size: 2.6rem;
    line-height: 1.6;
  }
}
.p-note__itemTxt {
  font-size: 2.6rem;
  font-weight: var(--fontWeight-medium);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-note__itemTxt {
    font-size: 1.7rem;
    font-weight: var(--fontWeight-regular);
    line-height: 1.5;
  }
}
.p-note__itemTxt span {
  font-size: 3rem;
  font-weight: var(--fontWeight-bold);
}
@media screen and (max-width: 768px) {
  .p-note__itemTxt span {
    font-size: 1.7rem;
  }
}
.p-note__itemNote {
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .p-note__itemNote {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-top: 0.6rem;
  }
}

/* u-align */
.u-align--center {
  text-align: center !important;
}
.u-align--right {
  text-align: right !important;
}

/* u-txt */
.u-txt--colorNote {
  color: var(--color-note);
}

/* u-display */
.u-display--pcNone {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-display--pcNone {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .u-display--spNone {
    display: none !important;
  }
}
.u-display--inlineBlock {
  display: inline-block;
}