@charset "UTF-8";
:root {
  --primary-color: #FF3D00;
  --secondary-color: #F5E100;
  --tertiary-color: #0099DC;
  --gray-color: #515151;
  --white-color: #ffffff;
  --marker-secondary: #F5E100;
  --marker-tertiary: #A7F6FF;
  --body-color: #333333;
  --border-color: #D2D2D2;
  --bg-color: var(--white-color);
  --primary-bg: #DFE4F5;
  --primary-dark-bg: rgb(96 116 191 / 0.8);
  --gray-bg: #F5F5F5;
  --link-arrow-primary: var(--primary-color);
  --link-arrow-white: var(--white-color);
  --link-arrow-gray: var(--gray-color);
  --font-family: "Noto Sans JP", sans-serif;
  --font-family-serif: "Noto Serif JP", serif;
  --font-family-poppins: "Poppins", sans-serif;
  --font-family-en: "Inter", sans-serif;
  --font-size-root: 16px;
  --font-weight-default: 500;
  --inner-width: 1060px;
  --gutter-width-sp: 8vw;
  --header-height: 90px;
  --header-height-narrow: 75px;
  --header-height-sp: 60px;
  --line-height-default: 1.75;
  --line-height-large: 2;
  --line-height-small: 1.5;
  --letter-spacing-default: 0.02em;
  --letter-spacing-large: 0.05em;
  --letter-spacing-small: 0.01em;
}

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, h5, h6, 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,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* Set shorter line heights on headings and interactive elements */
/* Balance text wrapping on headings */
/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

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

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  font-size: var(--font-size-root);
}

body {
  color: var(--body-color);
  font-weight: var(--font-weight-default);
  font-size: 1rem;
  line-height: var(--line-height-default);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.9375rem;
  }
}

a {
  color: currentColor;
  text-decoration: none;
}

img {
  height: auto;
}

.l-contents {
  overflow: hidden;
}

.l-footer {
  padding: 78px 20px 60px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 50px 20px 48px;
  }
}

.c-inner {
  max-width: var(--inner-width);
  margin-inline: auto;
  padding-inline: 30px;
}
@media screen and (max-width: 768px) {
  .c-inner {
    padding-inline: 5vw;
  }
}
@media screen and (max-width: 768px) {
  .c-inner--spPd0 {
    padding-inline: 0;
  }
}
@media screen and (max-width: 768px) {
  .c-inner--spPd50 {
    padding-inline: 12.5vw;
  }
}

.c-button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  text-align: center;
}
@media (hover: hover) {
  .c-button {
    transition: opacity 0.2s ease-out;
  }
  .c-button:hover {
    opacity: 0.7;
  }
}

.c-button__text {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.c-dotList {
  display: flex;
  flex-direction: column;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.c-list-note__item {
  position: relative;
  margin-bottom: 1em;
  padding-left: 1em;
}
.c-list-note__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
}

.c-list-note-order {
  counter-reset: order;
}
.c-list-note-order__item {
  position: relative;
  margin-bottom: 1em;
  padding-left: 1.5em;
}
.c-list-note-order__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※" counter(order);
  counter-increment: order;
}

.c-section--bgGray {
  background-color: var(--gray-bg);
}
.c-section--bgPrimary {
  background-color: var(--primary-bg);
}
.c-section--bgImg {
  background-color: var(--primary-dark-bg);
}
.c-section--bgCenter {
  position: relative;
}
.c-section--bgCenter::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 480px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--primary-bg);
  content: "";
}
@media screen and (max-width: 768px) {
  .c-section--bgCenter::before {
    width: 61.3333333333%;
  }
}

.c-section__contents {
  position: relative;
}

.c-grid {
  display: grid;
}
@media screen and (min-width: 769px) {
  .c-grid {
    grid-template-columns: 50% 1fr;
    grid-template-areas: "text img";
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
  }
}
@media screen and (max-width: 768px) {
  .c-grid {
    grid-template-areas: "img" "text";
    row-gap: 40px;
  }
}

.c-grid__text {
  grid-area: text;
}

.c-grid__img {
  grid-area: img;
}
@media screen and (max-width: 768px) {
  .c-grid__img {
    justify-self: center;
    width: 87.3015873016%;
  }
}

.c-box {
  padding: 50px 40px 40px;
}
@media screen and (max-width: 768px) {
  .c-box {
    padding: 30px 28px;
  }
}
.c-box--bgPrimary {
  background: var(--primary-bg);
}
.c-box--bgGray {
  background: var(--gray-bg);
}

.p-ctaBlock {
  padding: 75px 20px 70px;
  background: url(../images/cta_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-ctaBlock {
    padding: 67px 5vw 46px;
  }
}

.p-cta {
  display: flex;
  row-gap: 17px;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-cta {
    row-gap: 9px;
  }
}

.p-cta__shoulder {
  display: flex;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  justify-content: center;
  font-weight: 800;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-cta__shoulder {
    align-items: flex-end;
    font-size: 1.25rem;
  }
}
.p-cta__shoulder::before, .p-cta__shoulder::after {
  display: inline-block;
  width: 2px;
  height: 38px;
  border-radius: 10px;
  background: currentColor;
  content: "";
}
.p-cta__shoulder::before {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.p-cta__shoulder::after {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

.p-cta__button {
  width: 100%;
  max-width: 680px;
  height: 100px;
  padding-inline: 24px;
  border-radius: 100px;
  background-color: var(--primary-color);
  box-shadow: 0px 13px 16px rgba(0, 0, 0, 0.16);
  color: var(--white-color);
}
@media screen and (max-width: 768px) {
  .p-cta__button {
    height: 70px;
    padding-inline: 19px;
  }
}
.p-cta__button .c-button__text {
  padding-left: 10px;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .p-cta__button .c-button__text {
    padding-right: 45px;
    padding-left: 45px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 389px) {
  .p-cta__button .c-button__text {
    padding-right: 25px;
  }
}
.p-cta__button--narrow {
  max-width: 560px;
}
@media screen and (min-width: 769px) {
  .p-cta__button--narrow .c-button__text {
    font-size: 2.125rem;
  }
}
.p-cta__button::before, .p-cta__button::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.p-cta__button::before {
  left: 24px;
  width: 60px;
  height: 60px;
  background: url(../images/ico_btn_search.png) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-cta__button::before {
    left: 19px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 389px) {
  .p-cta__button::before {
    left: 16px;
  }
}
.p-cta__button::after {
  right: 24px;
  width: 48px;
  height: 48px;
  background: url(../images/ico_arrow_right_wh.svg) no-repeat center center/12px 20px;
}
@media screen and (max-width: 768px) {
  .p-cta__button::after {
    right: 19px;
    width: 28px;
    height: 28px;
    background-size: 10px 16px;
  }
}
@media screen and (max-width: 389px) {
  .p-cta__button::after {
    right: 16px;
  }
}

.p-contact {
  display: flex;
  justify-content: center;
}

.p-contact__button {
  width: 100%;
  max-width: 514px;
  height: 80px;
  padding-inline: 16px;
  border-radius: 40px;
  background-color: var(--secondary-color);
  box-shadow: 0px 13px 16px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .p-contact__button {
    padding-inline: 19px;
  }
}
.p-contact__button .c-button__text {
  padding-left: 20px;
  font-weight: 900;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .p-contact__button .c-button__text {
    padding-right: 31px;
    padding-left: 45px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 389px) {
  .p-contact__button .c-button__text {
    padding-right: 25px;
    padding-left: 50px;
  }
}
.p-contact__button::before, .p-contact__button::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}
.p-contact__button::before {
  left: 16px;
  width: 60px;
  height: 60px;
  background: url(../images/ico_btn_contact.webp) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-contact__button::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 389px) {
  .p-contact__button::before {
    left: 16px;
  }
}
.p-contact__button::after {
  right: 16px;
  width: 48px;
  height: 48px;
  background: url(../images/ico_arrow_right.svg) no-repeat center center/12px 20px;
}
@media screen and (max-width: 768px) {
  .p-contact__button::after {
    width: 28px;
    height: 28px;
    background-size: 10px 16px;
  }
}

.p-header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 40px 40px 0;
}
@media screen and (max-width: 768px) {
  .p-header {
    padding-top: 5vw;
    padding-inline: 5vw;
  }
}

.p-header__logo img {
  width: 160px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-header__logo img {
    width: 107px;
  }
}

.p-footerNav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 34px;
}

.p-footerNav__item {
  font-size: 0.875rem;
  line-height: 1;
}
.p-footerNav__item:not(:last-child)::after {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-inline: 12px;
  background-color: #51595D;
  content: "";
}
.p-footerNav__item > a {
  color: currentColor;
  text-decoration: none;
}

.p-footerLogo img {
  width: 228px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-footerLogo img {
    width: 175px;
  }
}

.p-copyright {
  text-align: center;
}
.p-copyright > small {
  font-size: 0.75rem;
}

.p-section__title {
  font-weight: 900;
  font-size: 2.625rem;
  line-height: 1.452;
  line-height: 1.1428571429;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-section__title {
    font-size: 1.875rem;
    line-height: 1.2666666667;
  }
}
.p-section__title .colored {
  color: var(--primary-color);
}

.p-section__lead {
  margin-top: 12px;
}
@media screen and (min-width: 769px) {
  .p-section__lead {
    text-align: center;
  }
}

.p-point-block {
  position: relative;
  padding-bottom: 45px;
  background-image: url(../images/point_bg_gradient.svg);
  background-position: center 45px;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #FDFCCE;
}
@media screen and (max-width: 768px) {
  .p-point-block {
    padding-bottom: 40px;
    background-image: url(../images/point_bg_gradient_sp.svg);
  }
}
.p-point-block--first {
  background-image: url(../images/point_bg.svg);
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .p-point-block--first {
    background-image: url(../images/point_bg_sp.svg);
  }
}
.p-point-block--first::before {
  display: block;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #FDFCCE;
  content: "";
}
.p-point-block--last {
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .p-point-block--last {
    padding-bottom: 32px;
  }
}
.p-point-block .c-inner {
  z-index: 1;
  position: relative;
}

.p-point-header {
  margin-bottom: 23px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-point-header {
    margin-bottom: 18px;
  }
}

.p-point-header__title {
  display: flex;
  row-gap: 25px;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-point-header__title {
    row-gap: 20px;
  }
}
.p-point-header__title .main {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 2.625rem;
  line-height: 1.1428571429;
}
@media screen and (max-width: 768px) {
  .p-point-header__title .main {
    font-size: 1.875rem;
    line-height: 1.6;
  }
}
.p-point-header__title .circle {
  display: flex;
  row-gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white-color);
  line-height: 1;
  font-family: var(--font-family-poppins);
}
.p-point-header__title .text {
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.p-point-header__title .number {
  font-weight: 700;
  font-size: 2.625rem;
}

.p-point-header__en {
  color: #C9C9C9;
  font-weight: 400;
  font-family: var(--font-family-poppins);
}

.p-point-block__lead {
  margin-bottom: 33px;
  line-height: 2;
}
@media screen and (min-width: 769px) {
  .p-point-block__lead {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__lead {
    margin-bottom: 30px;
    padding-inline: 5vw;
  }
}

.p-point-box {
  position: relative;
  margin-top: 10px;
  padding: 51px 59px 49px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  background: #fff696;
}
@media screen and (max-width: 768px) {
  .p-point-box {
    padding: 40px 20px 36px;
  }
}

.p-point-box__label {
  position: absolute;
  top: -10px;
  left: -20px;
  width: 170px;
  padding: 3px 20px 17px;
  background: url(../images/point_ribbon.svg) no-repeat left top/cover;
  color: var(--white-color);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-point-box__label {
    left: -17px;
    width: 136px;
    padding: 2px 17px 14px;
    background-image: url(../images/point_ribbon_sp.svg);
    font-size: 1rem;
  }
}

.p-point-box__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .p-point-box__items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .p-point-box__items {
    gap: 6px;
  }
}

.p-point-box__item {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 17px;
  border-radius: 70px;
  background-color: var(--white-color);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-point-box__item {
    font-size: 1rem;
  }
}
.p-point-box__item .icon {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 50px;
  height: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon {
    width: 40px;
    height: 40px;
  }
}
.p-point-box__item .icon-cv {
  background-image: url(../images/ico_point_cv.svg);
  background-size: 49px 50px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-cv {
    background-size: 40px auto;
  }
}
.p-point-box__item .icon-deep {
  background-image: url(../images/ico_point_deep.svg);
  background-size: 50px 46px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-deep {
    background-size: 40px auto;
  }
}
.p-point-box__item .icon-excitement {
  background-image: url(../images/ico_point_excitement.svg);
  background-size: 41px 41px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-excitement {
    background-size: 34px auto;
  }
}
.p-point-box__item .icon-likability {
  background-image: url(../images/ico_point_likability.svg);
  background-size: 34px 31px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-likability {
    background-size: 27px auto;
  }
}
.p-point-box__item .icon-navigability {
  background-image: url(../images/ico_point_navigability.svg);
  background-size: 50px 45px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-navigability {
    background-size: 40px auto;
  }
}
.p-point-box__item .icon-operability {
  background-image: url(../images/ico_point_operability.svg);
  background-size: 48px 50px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-operability {
    background-size: 39px auto;
  }
}
.p-point-box__item .icon-satisfaction {
  background-image: url(../images/ico_point_satisfaction.svg);
  background-size: 48px 50px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-satisfaction {
    background-size: 39px auto;
  }
}
.p-point-box__item .icon-company {
  background-image: url(../images/ico_point_company.svg);
  background-size: 50px 50px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-company {
    background-size: 40px auto;
  }
}
.p-point-box__item .icon-job {
  background-image: url(../images/ico_point_job.svg);
  background-size: 44px 41px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-job {
    background-size: 35px auto;
  }
}
.p-point-box__item .icon-value {
  background-image: url(../images/ico_point_value.svg);
  background-size: 46px 44px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-value {
    background-size: 38px auto;
  }
}
.p-point-box__item .icon-awareness {
  background-image: url(../images/ico_point_awareness.svg);
  background-size: 44px 40px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-awareness {
    background-size: 35px auto;
  }
}
.p-point-box__item .icon-contact {
  background-image: url(../images/ico_point_contact.svg);
  background-size: 54px 42px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-contact {
    background-size: 43px auto;
  }
}
.p-point-box__item .icon-lead {
  background-image: url(../images/ico_point_lead.svg);
  background-size: 44px 45px;
}
@media screen and (max-width: 768px) {
  .p-point-box__item .icon-lead {
    background-size: 35px auto;
  }
}

.p-point-block__pict {
  position: absolute;
}
.p-point-block__pict.pict01 {
  top: -221px;
  left: 126px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict01 {
    right: calc(50% + 192px);
    left: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict01 {
    top: -50px;
    right: auto;
    left: 47px;
  }
}
.p-point-block__pict.pict01 img {
  width: 203px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict01 img {
    width: 20.3vw;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict01 img {
    width: 95px;
  }
}
.p-point-block__pict.pict02 {
  top: -128px;
  left: -30px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict02 {
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict02 {
    top: -69px;
    left: 31px;
  }
}
.p-point-block__pict.pict02 img {
  width: 91px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict02 img {
    width: 9.1vw;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict02 img {
    width: 51px;
  }
}
.p-point-block__pict.pict03 {
  top: -110px;
  right: -32px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict03 {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict03 {
    top: -108px;
    right: 34px;
  }
}
.p-point-block__pict.pict03 img {
  width: 114px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict03 img {
    width: 11.4vw;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict03 img {
    width: 70px;
  }
}
.p-point-block__pict.pict04 {
  top: -19px;
  left: -35px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict04 {
    top: -60px;
    left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict04 {
    top: -69px;
    left: 20px;
  }
}
.p-point-block__pict.pict04 img {
  width: 112px;
}
@media screen and (max-width: 1000px) {
  .p-point-block__pict.pict04 img {
    width: 11.2vw;
  }
}
@media screen and (max-width: 768px) {
  .p-point-block__pict.pict04 img {
    width: 67px;
  }
}

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

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

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

@media screen and (min-width: 769px) {
  .u-pc-center {
    text-align: center !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-center {
    text-align: center !important;
  }
}

@media screen and (min-width: 769px) {
  .u-pc-left {
    text-align: left !important;
  }
}

@media screen and (max-width: 768px) {
  .u-sp-left {
    text-align: left !important;
  }
}

.u-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-sp-hidden {
    display: none !important;
  }
}

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

.u-block {
  display: block;
}

.u-inline-block {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.u-justify-start {
  justify-content: flex-start;
}

.u-justify-end {
  justify-content: flex-end;
}

.u-justify-center {
  justify-content: center;
}

.u-justify-between {
  justify-content: space-between;
}

.u-align-start {
  align-items: start;
}

.u-align-end {
  align-items: end;
}

.u-align-center {
  align-items: center;
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-ml0 {
  margin-left: 0px !important;
}

.u-mr0 {
  margin-right: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pr0 {
  padding-right: 0px !important;
}

.u-pl0 {
  padding-left: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

/* ===========================================
 * Top Page Styles
 * ======================================== */
.mv {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .mv {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 43px;
  }
}

.mv__title {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30.7142857143%;
  padding-top: 5.9285714286%;
  padding-left: 0.7142857143%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .mv__title {
    width: 320px;
    padding-top: 94px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .mv__title {
    width: 66.25%;
    padding-top: 16.75%;
    padding-left: 0.25%;
  }
}
.mv__title img {
  width: 100%;
  height: auto;
}

.mv__bg img {
  width: 100%;
  max-width: none;
  min-height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1280px) {
  .mv__bg img {
    min-height: 520px;
  }
}
@media screen and (max-width: 768px) {
  .mv__bg img {
    min-height: 0;
  }
}

@media screen and (min-width: 1001px) {
  .mv__cta {
    position: absolute;
    bottom: -6.1538461538%;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .mv__cta {
    margin-top: 13px;
  }
}
@media screen and (max-width: 768px) {
  .mv__cta {
    margin-top: 20px;
    padding-inline: 5vw;
  }
}

.intro-section {
  position: relative;
}

.intro-section__top {
  position: relative;
  background: url(../images/intro_bg_cloud.svg) no-repeat center bottom/100% auto;
}
@media screen and (max-width: 1400px) {
  .intro-section__top {
    background-size: 1400px auto;
  }
}
@media screen and (max-width: 768px) {
  .intro-section__top {
    background-image: url(../images/intro_bg_cloud_sp.svg);
    background-size: 100% auto;
  }
}
.intro-section__top .c-inner {
  position: relative;
}
.intro-section__top::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 260px);
  background: linear-gradient(rgba(233, 252, 254, 0.3) 0%, #e9fcfe 100%);
  content: "";
}
@media screen and (max-width: 768px) {
  .intro-section__top::before {
    height: calc(100% - 30vw);
  }
}

.intro-section__title {
  padding-top: 46px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .intro-section__title {
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .intro-section__title {
    font-size: 1.5rem;
  }
}
.intro-section__title .line01 {
  font-weight: 800;
}
@media screen and (min-width: 769px) {
  .intro-section__title .line01 {
    padding-left: 56px;
  }
}
.intro-section__title .line02 {
  font-size: 2.25rem;
}
@media screen and (min-width: 769px) {
  .intro-section__title .line02 {
    padding-right: 7px;
    line-height: 1.25;
  }
}
@media screen and (max-width: 768px) {
  .intro-section__title .line02 {
    font-size: 1.75rem;
  }
}
.intro-section__title .line02 strong {
  margin-right: 7px;
  margin-left: 11px;
  padding-bottom: 5px;
  background: linear-gradient(transparent 90.54%, var(--marker-tertiary) 90.54%);
  color: var(--tertiary-color);
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .intro-section__title .line02 strong {
    margin-inline: 6px;
    border-bottom-width: 5px;
    font-size: 2.375rem;
  }
}
.intro-section__title .line02 strong,
.intro-section__title .line03-1,
.intro-section__title .line03-2 {
  font-weight: 900;
}
.intro-section__title .line03-1 {
  font-size: 2.5rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 769px) {
  .intro-section__title .line03-1 {
    padding-left: 7px;
  }
}
@media screen and (max-width: 768px) {
  .intro-section__title .line03-1 {
    font-size: 1.875rem;
  }
}
.intro-section__title .line03-2 {
  font-size: 3.125rem;
}
@media screen and (max-width: 768px) {
  .intro-section__title .line03-2 {
    font-size: 2.5rem;
  }
}

.intro-section__bubbles {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .intro-section__bubbles {
    padding-top: 100px;
    padding-bottom: 3.5%;
  }
}
@media screen and (max-width: 768px) {
  .intro-section__bubbles {
    padding-top: 0;
  }
}
.intro-section__bubbles img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1001px) {
  .intro-section__bubbles img {
    min-height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .intro-section__bubbles img {
    min-height: 0;
  }
}

.intro-bubble {
  position: relative;
  margin-bottom: 26px;
  padding: 21px 20px 28px;
  border: 10px solid var(--secondary-color);
  border-radius: 100px;
  background: #fdfcce;
}
@media screen and (max-width: 768px) {
  .intro-bubble {
    padding-top: 28px;
    border-radius: 24px;
  }
}
.intro-bubble::before {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -26px;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-left: -30px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 5px;
  background-color: var(--secondary-color);
  content: "";
}

.intro-bubble__shoulder {
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.4583333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .intro-bubble__shoulder {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    margin-bottom: 2px;
    font-size: 1rem;
  }
}
.intro-bubble__shoulder::before, .intro-bubble__shoulder::after {
  display: inline-block;
  width: 2px;
  height: 38px;
  border-radius: 10px;
  background: currentColor;
  content: "";
}
@media screen and (max-width: 768px) {
  .intro-bubble__shoulder::before, .intro-bubble__shoulder::after {
    height: 23px;
  }
}
.intro-bubble__shoulder::before {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.intro-bubble__shoulder::after {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
}

.intro-bubble__main {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-weight: 800;
  font-size: 2.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main {
    flex-direction: column;
    align-items: center;
    line-height: 1.44;
  }
}
.intro-bubble__main .marker {
  display: inline-block;
  padding-bottom: 4px;
  background: linear-gradient(transparent 71.79%, var(--secondary-color) 71.79%);
  color: var(--primary-color);
  font-weight: 900;
  font-size: 3.25rem;
  line-height: 1.4423076923;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .marker {
    font-size: 2.6875rem;
  }
}
.intro-bubble__main .bracket01,
.intro-bubble__main .bracket02 {
  display: inline-block;
  width: 20px;
  height: 45px;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .bracket01,
  .intro-bubble__main .bracket02 {
    width: 17px;
    height: 38px;
  }
}
.intro-bubble__main .bracket01 {
  vertical-align: top;
}
.intro-bubble__main .bracket02 {
  vertical-align: bottom;
}
.intro-bubble__main .char02 {
  margin-right: -1px;
  margin-left: -3px;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .char02 {
    margin-right: 0;
    margin-left: -2px;
  }
}
.intro-bubble__main .word01 {
  margin-right: 17px;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .word01 {
    margin-right: 0;
  }
}
.intro-bubble__main .word02 {
  padding-right: 4px;
  padding-left: 3px;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .word02 {
    padding-inline: 0;
  }
}
.intro-bubble__main .word03 {
  margin-left: 13px;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .word03 {
    font-size: 1.9375rem;
  }
}
.intro-bubble__main .exclamation {
  display: inline-block;
  margin-bottom: -0.25em;
  margin-left: -11px;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  font-weight: 400;
  font-size: 3.75rem;
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .exclamation {
    margin-bottom: -0.1em;
    margin-left: -8px;
    font-size: 3.0625rem;
    vertical-align: bottom;
  }
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .line01 {
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 769px) {
  .intro-bubble__main .line03 {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .intro-bubble__main .line03 {
    line-height: 1;
  }
}

.intro-bubble__pict {
  display: flex;
  position: absolute;
  bottom: calc(100% - 23px);
  left: 0;
  justify-content: center;
  width: 100%;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .intro-bubble__pict {
    bottom: calc(100% - 10px);
    justify-content: flex-start;
    padding-left: 0;
  }
}
.intro-bubble__pict img {
  width: 793px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  .intro-bubble__pict img {
    width: 83.0366492147%;
  }
}
@media screen and (max-width: 768px) {
  .intro-bubble__pict img {
    width: 64.7058823529%;
    margin-left: 3.5294117647%;
  }
}

.points-section {
  z-index: 1;
  position: relative;
  padding-top: 74px;
  background: url(../images/points_bg.webp) no-repeat center top/100% auto;
}
@media screen and (max-width: 768px) {
  .points-section {
    padding-top: 50px;
    background-image: url(../images/points_bg_sp.webp);
  }
}
.points-section::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
}
.points-section::after {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -31px;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 5px;
  background-color: #FDFCCE;
  content: "";
}
.points-section > .c-inner {
  position: relative;
}

.points-section__title {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .points-section__title {
    padding-left: 79px;
  }
}
@media screen and (max-width: 768px) {
  .points-section__title {
    margin-bottom: 47px;
  }
}
.points-section__title img {
  margin-inline: auto;
}

.feature-section {
  padding-top: 67px;
  padding-bottom: 86px;
}
@media screen and (max-width: 768px) {
  .feature-section {
    padding-top: 43px;
    padding-bottom: 60px;
  }
}

.feature-section__title {
  margin-bottom: 37px;
  font-weight: 700;
  font-size: 2.625rem;
  line-height: 1.452;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-section__title {
    margin-bottom: 25px;
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}
.feature-section__title .colored {
  color: var(--primary-color);
  font-weight: 900;
}
.feature-section__title .exclamation {
  display: inline-block;
  margin-bottom: -0.25em;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  font-weight: 600;
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .feature-section__title .exclamation {
    margin-right: -40px;
    margin-bottom: 0;
    margin-left: -6px;
    font-size: 3.125rem;
    line-height: 0.8;
    vertical-align: bottom;
  }
}

.feature-section__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 10px;
}

.feature-item {
  display: flex;
  row-gap: 19px;
  flex-direction: column;
  align-items: center;
  width: 240px;
}
@media screen and (max-width: 768px) {
  .feature-item {
    width: calc(50% - 5px);
    max-width: 240px;
  }
}

.feature-item__pict {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #0099DC;
  -webkit-filter: drop-shadow(0px 15px 15px rgba(0, 112, 148, 0.2));
          filter: drop-shadow(0px 15px 15px rgba(0, 112, 148, 0.2));
}
@media screen and (max-width: 768px) {
  .feature-item__pict {
    width: 120px;
    height: 120px;
  }
}
.feature-item__pict.pict-ranking img {
  width: 110px;
  height: 110px;
}
@media screen and (max-width: 768px) {
  .feature-item__pict.pict-ranking img {
    width: 66px;
    height: 66px;
  }
}
.feature-item__pict.pict-ai img {
  width: 130px;
  height: 107px;
}
@media screen and (max-width: 768px) {
  .feature-item__pict.pict-ai img {
    width: 78px;
    height: 65px;
  }
}
.feature-item__pict.pict-check img {
  width: 122px;
  height: 122px;
}
@media screen and (max-width: 768px) {
  .feature-item__pict.pict-check img {
    width: 73px;
    height: 73px;
  }
}
.feature-item__pict.pict-pro img {
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 768px) {
  .feature-item__pict.pict-pro img {
    width: 78px;
    height: 78px;
  }
}

.feature-item__text {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-item__text {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}

.report-section {
  position: relative;
  padding-top: 59px;
  padding-bottom: 107px;
  background-image: url(../images/report_bg.svg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-color: #D3F8FC;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .report-section {
    padding-top: 64px;
    padding-bottom: 47px;
    background-image: url(../images/report_bg_sp.svg);
  }
}
.report-section .c-inner {
  z-index: 1;
  position: relative;
}
.report-section::before {
  display: block;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: calc(100% - 100px);
  background-color: #D3F8FC;
  content: "";
}
.report-section::after {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -31px;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 5px;
  background-color: #D3F8FC;
  content: "";
}

.report-section__title {
  margin-bottom: 13px;
  font-weight: 900;
  font-size: 2.375rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .report-section__title {
    margin-bottom: 19px;
    font-size: 1.375rem;
    line-height: 1.6363636364;
  }
}
.report-section__title strong {
  font-size: 3.125rem;
}
@media screen and (max-width: 768px) {
  .report-section__title strong {
    font-size: 1.875rem;
  }
}

.report-section__lead {
  font-size: 0.875rem;
  text-align: center;
}

.report-section__text {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .report-section__text {
    padding-inline: 5vw;
    font-size: 0.9375rem;
  }
}

.report-section__paper {
  position: relative;
  margin-top: 36px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .report-section__paper {
    margin-top: 24px;
  }
}
.report-section__paper::before {
  display: block;
  position: absolute;
  top: -20px;
  right: 7px;
  width: 42px;
  height: 58px;
  background: url(../images/ico_report_pin.svg) no-repeat center bottom/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .report-section__paper::before {
    right: 6px;
    width: 30px;
    height: 42px;
  }
}

.report-check {
  position: relative;
  margin-top: 119px;
  padding: 65px 75px 54px;
  background: #f6fdfe;
}
@media screen and (max-width: 768px) {
  .report-check {
    margin-top: 82px;
    padding: 47px 10px 37px;
  }
}

.report-check__title {
  position: absolute;
  top: -33px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .report-check__title {
    top: -21px;
  }
}
.report-check__title .marker {
  display: inline-block;
  padding-bottom: 4px;
  background: linear-gradient(transparent 62.5%, var(--secondary-color) 62.5%);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .report-check__title .marker {
    font-size: 1.875rem;
    line-height: 1.2666666667;
  }
}

.report-check__list > li:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 3px solid #CDEBEC;
}

.report-check__item {
  position: relative;
  padding-top: 9px;
  padding-right: 10px;
  padding-bottom: 9px;
  padding-left: 71px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.4545454545;
}
@media screen and (max-width: 768px) {
  .report-check__item {
    padding-bottom: 0;
    padding-left: 60px;
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}
.report-check__item .colored {
  color: var(--primary-color);
}
.report-check__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 10px;
  width: 53px;
  height: 50px;
  background: url(../images/ico_report_check.svg) no-repeat center center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .report-check__item::before {
    width: 42px;
    height: 40px;
  }
}

.report-section__pict {
  position: absolute;
}
.report-section__pict.pict01 {
  top: -46px;
  left: 38px;
}
@media screen and (max-width: 1000px) {
  .report-section__pict.pict01 {
    top: -80px;
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .report-section__pict.pict01 {
    top: -84px;
    left: 20px;
  }
}
.report-section__pict.pict01 img {
  width: 173px;
}
@media screen and (max-width: 1000px) {
  .report-section__pict.pict01 img {
    width: 17.3vw;
  }
}
@media screen and (max-width: 768px) {
  .report-section__pict.pict01 img {
    width: 83px;
    height: auto;
  }
}

.flow-section {
  z-index: 1;
  position: relative;
  padding-top: 90px;
  padding-bottom: 65px;
  background: url(../images/flow_bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .flow-section {
    padding-top: 82px;
    padding-bottom: 49px;
  }
}
.flow-section::after {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -31px;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 5px;
  background-color: #FFFFFF;
  content: "";
}

.flow-section__title {
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .flow-section__title {
    margin-bottom: 26px;
  }
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 66px;
     -moz-column-gap: 66px;
          column-gap: 66px;
}
@media screen and (max-width: 768px) {
  .flow-list {
    grid-template-columns: 1fr;
    row-gap: 66px;
    justify-items: center;
  }
}
.flow-item {
  display: grid;
  position: relative;
  grid-template-rows: subgrid;
  grid-row: span 3;
  margin-top: 24px;
  padding: 0 25px 40px;
  border-radius: 7px;
  background: #DBFBFF;
}
@media screen and (max-width: 768px) {
  .flow-item {
    display: block;
    width: 80.5555555556%;
    min-width: 290px;
    margin-top: 0;
    padding: 30px 25px;
  }
}
.flow-item:not(:last-child)::before {
  display: block;
  position: absolute;
  top: 50%;
  right: -63px;
  width: 60px;
  height: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/flow_arrow.svg) no-repeat center center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .flow-item:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -63px;
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
  }
}

.flow-item__title {
  grid-row: 2/3;
  align-self: center;
  color: var(--primary-color);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow-item__title {
    min-height: 36px;
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.flow-item__pict {
  display: flex;
  position: relative;
  top: -24px;
  grid-row: 1/2;
  align-items: center;
  justify-content: center;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .flow-item__pict {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
  }
}
.flow-item__pict.pict01 {
  margin-top: -4px;
}
.flow-item__pict.pict01 img {
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .flow-item__pict.pict01 img {
    width: 70px;
    height: 70px;
  }
}
.flow-item__pict.pict02 {
  margin-top: -13px;
}
.flow-item__pict.pict02 img {
  width: 93px;
  height: 90px;
}
@media screen and (max-width: 768px) {
  .flow-item__pict.pict02 img {
    width: 72px;
    height: 70px;
  }
}
.flow-item__pict.pict03 {
  margin-top: -7px;
}
.flow-item__pict.pict03 img {
  width: 86px;
  height: 86px;
}
@media screen and (max-width: 768px) {
  .flow-item__pict.pict03 img {
    width: 66px;
    height: 66px;
  }
}

.flow-item__text {
  grid-row: 3/4;
  margin-top: 13px;
}
.flow-notes {
  margin-top: 8px;
  font-size: 0.75rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .flow-notes {
    width: 80.5555555556%;
    min-width: 290px;
    margin-inline: auto;
  }
}

.works-section {
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .works-section {
    padding-bottom: 20px;
  }
}

.works-section__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 11px;
  margin-left: 30px;
  padding: 6px 20px 13px;
  background: url(../images/works_title_bg.svg) no-repeat center bottom/100% auto;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.429;
}
@media screen and (max-width: 768px) {
  .works-section__title {
    margin-left: 10px;
  }
}

.works-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.works-marquee__group {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  -webkit-animation: marquee-left 40s infinite linear 0.5s both;
          animation: marquee-left 40s infinite linear 0.5s both;
}
.works-marquee--ltr .works-marquee__group {
  -webkit-animation: marquee-right 40s infinite linear 0.5s both;
          animation: marquee-right 40s infinite linear 0.5s both;
}
@media screen and (max-width: 768px) {
  .works-marquee__group {
    gap: 13px;
  }
}
.works-marquee__group > li {
  flex-shrink: 0;
  width: -webkit-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .works-marquee__group > li img {
    width: auto;
    height: 60px;
  }
}

@-webkit-keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes marquee-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes marquee-right {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.contact-section {
  padding-top: 109px;
  padding-bottom: 66px;
  background: url(../images/contact_bg_cloud.svg) no-repeat center bottom -1px/100% auto, linear-gradient(#d3f8fc 0%, #a7f6ff 100%);
}
@media screen and (max-width: 768px) {
  .contact-section {
    padding-top: 67px;
    padding-bottom: 28px;
    background: url(../images/contact_bg_cloud_sp.svg) no-repeat center bottom -1px/100% auto, linear-gradient(#d3f8fc 0%, #a7f6ff 100%);
  }
}
.contact-section .c-inner {
  position: relative;
}

.contact-section__text {
  margin-bottom: 46px;
  font-weight: 800;
  font-size: 1.625rem;
  line-height: 1.5384615385;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-section__text {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 2;
  }
}

.contact-section__title {
  margin-bottom: 29px;
  font-weight: 900;
  font-size: 2.125rem;
  line-height: 1.412;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-section__title {
    font-size: 2rem;
    line-height: 1.4375;
  }
}
.contact-section__title .colored {
  color: var(--primary-color);
}

.contact-section__pict .pict01,
.contact-section__pict .pict02 {
  height: auto;
}
@media screen and (min-width: 769px) {
  .contact-section__pict .pict01,
  .contact-section__pict .pict02 {
    position: absolute;
  }
}
.contact-section__pict .pict01 {
  width: 271px;
}
@media screen and (min-width: 769px) {
  .contact-section__pict .pict01 {
    bottom: -39px;
    left: -80px;
  }
}
@media screen and (max-width: 1200px) {
  .contact-section__pict .pict01 {
    left: -20px;
    width: 22.8vw;
  }
}
@media screen and (max-width: 1000px) {
  .contact-section__pict .pict01 {
    left: -10px;
    width: 17.4vw;
  }
}
@media screen and (max-width: 768px) {
  .contact-section__pict .pict01 {
    width: 48.3333333333%;
  }
}
.contact-section__pict .pict02 {
  width: 237px;
}
@media screen and (min-width: 769px) {
  .contact-section__pict .pict02 {
    right: -76px;
    bottom: -30px;
  }
}
@media screen and (max-width: 1200px) {
  .contact-section__pict .pict02 {
    right: 0;
    width: 20vw;
  }
}
@media screen and (max-width: 1000px) {
  .contact-section__pict .pict02 {
    width: 15.3vw;
  }
}
@media screen and (max-width: 768px) {
  .contact-section__pict .pict02 {
    width: 42.5%;
  }
}
@media screen and (max-width: 768px) {
  .contact-section__pict {
    display: flex;
    -webkit-column-gap: 5.8333333333%;
       -moz-column-gap: 5.8333333333%;
            column-gap: 5.8333333333%;
    align-items: flex-end;
    justify-content: center;
    margin-top: 12px;
  }
}

.case-section {
  padding: 90px 0 126px;
}
@media screen and (max-width: 768px) {
  .case-section {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 36px;
  gap: 48px 60px;
}
@media screen and (max-width: 768px) {
  .case-list {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.case-card {
  display: grid;
  grid-template-rows: subgrid;
  row-gap: 20px;
  grid-row: span 4;
}

.case-card__title {
  grid-row: 2/3;
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.458;
  text-align: center;
}

.case-card__thumb {
  grid-row: 1/2;
}
.case-card__thumb img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.case-card__text {
  grid-row: 3/4;
}

.case-card__bottom {
  display: flex;
  grid-row: 4/5;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
}

.case-card__tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 40px;
  background-color: #D3F8FC;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}

html:not(.no-js) [data-aos=fade-up] {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}