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

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
  background-color: #FFF;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.l-container {
  margin: 0 auto;
}

.l-section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .l-section {
    padding: 50px 0;
  }
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 84px;
  padding-bottom: 6px;
  border-radius: 23px;
  background: linear-gradient(180deg, #A0B6FC 0%, #698EFF 47%, #1D40AD 100%);
  box-shadow: 3px 5px 0 #969696;
  color: #FFF;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
}
@media (max-width: 768px) {
  .c-btn {
    width: 340px;
    height: 64px;
    font-size: 18px;
    padding-bottom: 3px;
  }
}
@media (max-width: 950px) {
  .c-btn {
    width: 292px;
    height: 49px;
    line-height: 49px;
    border-radius: 25px;
    margin: 0 auto;
    font-size: 15px;
    box-shadow: 1px 4px 0 #969696;
  }
}
.c-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.c-btn__second {
  box-shadow: 3px 5px 0 #919090;
  border: 2px solid #1D40AD;
  background: #FFF;
  color: #1D40AE;
  text-shadow: none;
}
@media (max-width: 900px) {
  .c-btn__second {
    box-shadow: 1px 4px 0 #919090;
  }
}

.c-section-title {
  display: table;
  color: #1E40AF;
  text-align: center;
  font-size: 40px;
  font-weight: normal;
  padding-bottom: 7px;
  border-bottom: 8px solid #1E40AF;
  margin: 0 auto 32.5px auto;
  position: relative;
}
@media (max-width: 768px) {
  .c-section-title {
    font-size: 24px;
    padding-bottom: 0;
    border-bottom: 4px solid #1E40AF;
    margin-bottom: 28px;
  }
}

.u-pc-only {
  display: table;
}
@media (max-width: 768px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .u-sp-only {
    display: table;
  }
}

.c-overlay {
  display: none;
}
@media (max-width: 768px) {
  .c-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .c-overlay.is-visible {
    display: block;
    opacity: 1;
  }
}

/* ==========
  header
  ========== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #FFF;
  z-index: 100;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  /* ハンバーガーボタン */
}
@media (max-width: 768px) {
  .l-header.is-open .l-header__inner {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .l-header.is-open .l-header__logo {
    opacity: 0;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: 1593px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.l-header__logo {
  position: relative;
}
.l-header__logo a img {
  width: 152px;
  height: auto;
}
.l-header__nav ul {
  display: flex;
  list-style: none;
  gap: 89px;
}
.l-header__nav a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
.l-header__nav .l-header__nav-list {
  display: flex;
  list-style: none;
  gap: 89px;
}
@media (max-width: 900px) {
  .l-header__nav .l-header__nav-list {
    gap: 50px;
  }
}
.l-header__nav .l-header__nav-list a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}
.l-header__nav-bottom,
.l-header__nav .l-header__nav-logo {
  display: none;
}
@media (max-width: 768px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    height: 100vh;
    background-color: #FFF;
    z-index: 120;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  .l-header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .l-header__nav-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .l-header__nav .l-header__nav-logo {
    display: block;
    padding: 14px 0 0 16px;
  }
  .l-header__nav .l-header__nav-list {
    flex-direction: column;
    padding: 80px 0 142px 82px;
    gap: 54px;
    flex-grow: 1;
  }
  .l-header__nav .l-header__nav-list a {
    font-size: 22px;
  }
  .l-header__nav-bottom {
    display: block;
    background-color: #525F7D;
    padding: 34px 30px;
    text-align: center;
  }
  .l-header__nav-bottom .l-header__logo-box {
    background-color: #FFF;
    max-width: 265px;
    padding: 22px 0;
    border-radius: 24px;
    margin: 0 auto 34px;
  }
  .l-header__nav-bottom .l-header__nav-logo {
    padding: 0;
  }
  .l-header__nav-bottom .l-header__company-name {
    font-size: 15px;
    margin: 10px 0 14px;
    color: #333333;
  }
  .l-header__nav-bottom .l-header__service-type {
    font-size: 10px;
    color: #333333;
  }
  .l-header__nav-bottom .l-header__external {
    padding-bottom: 30px;
  }
  .l-header__nav-bottom .l-header__external a {
    color: #FFF;
    font-size: 12px;
    justify-content: center;
  }
  .l-header__nav-bottom .l-header__external img {
    margin-right: 7px;
  }
  .l-header__nav-bottom .l-header__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 15px;
    color: #FFF;
    font-size: 12px;
  }
}
.l-header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .l-header__hamburger {
    display: block;
    z-index: 200;
    width: 45px;
    height: 45px;
    background-color: #333333;
    position: relative;
    border: none;
    cursor: pointer;
  }
  .l-header__hamburger span {
    display: block;
    width: 29px;
    height: 2.25px;
    background-color: #FFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  .l-header__hamburger span:nth-of-type(1) {
    top: 14px;
  }
  .l-header__hamburger span:nth-of-type(2) {
    top: 22px;
  }
  .l-header__hamburger span:nth-of-type(3) {
    top: 29px;
  }
  .l-header__hamburger.is-open span:nth-of-type(1) {
    top: 22px;
    transform: translateX(-50%) rotate(45deg);
  }
  .l-header__hamburger.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-open span:nth-of-type(3) {
    top: 22px;
    transform: translateX(-50%) rotate(-45deg);
  }
}

/* ==========
  Hero
  ========== */
.p-hero {
  margin-top: 80px;
  background-image: url("../assets/hero_bg.png");
  background-size: cover;
  background-position: center;
  height: 710px;
  padding-top: 173px;
}
@media (max-width: 900px) {
  .p-hero {
    background-image: url("../assets/hero_bg_sp.png");
    background-position: top;
    height: 650px;
    overflow: hidden;
    padding-top: 0;
  }
}
@media (max-width: 403px) {
  .p-hero {
    background-size: 650px;
  }
}
.p-hero__inner {
  max-width: 1594px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .p-hero__inner {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
}
.p-hero__content {
  background: rgba(255, 255, 255, 0.68);
  max-width: 840px;
  padding: 53px 33px 28px 33px;
  text-align: center;
  line-height: 1;
}
@media (max-width: 900px) {
  .p-hero__content {
    max-width: 100%;
    padding: 32px 16px;
    margin-top: 418px;
  }
}
@media (max-width: 403px) {
  .p-hero__content {
    padding: 33px 10px;
  }
}
.p-hero__catch {
  font-size: 64px;
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .p-hero__catch {
    font-size: 31px;
    margin-bottom: 16.2px;
    font-weight: normal;
  }
}
@media (max-width: 403px) {
  .p-hero__catch {
    font-size: 25px;
  }
}
.p-hero__title {
  margin-bottom: 40.5px;
}
.p-hero__title img {
  width: 100%;
  max-width: 648px;
  height: auto;
}
@media (max-width: 900px) {
  .p-hero__title {
    margin-bottom: 15.4px;
  }
  .p-hero__title img {
    max-width: 331px;
  }
}
.p-hero__desc {
  padding-top: 24px;
  border-top: 1px solid #333333;
}
@media (max-width: 900px) {
  .p-hero__desc {
    padding-top: 11px;
  }
}
.p-hero__desc p {
  font-size: 26px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .p-hero__desc p {
    font-size: 12px;
    line-height: 1.6;
  }
}
@media (max-width: 403px) {
  .p-hero__desc p {
    font-size: 10px;
  }
}

/* ==========
  Supported
  ========== */
.p-supported {
  background-color: #E3F2FF;
  padding: 11px 0 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-supported {
    padding-bottom: 5px;
  }
}
.p-supported .l-container {
  max-width: 1912px;
}
.p-supported__title {
  background-color: #1E40AF;
  color: #FFF;
  text-align: center;
  font-size: 19px;
  font-weight: normal;
  padding: 12px 0;
  width: 100%;
  max-width: 840px;
  margin: 0 auto 11px;
}
.p-supported__scroll {
  width: 100%;
  overflow: hidden;
}
.p-supported__scroll::-webkit-scrollbar {
  display: none;
}
.p-supported__list {
  display: flex;
  gap: 18px;
  list-style: none;
  width: -moz-max-content;
  width: max-content;
  animation: loop-slider 30s linear infinite;
}
.p-supported__list:hover {
  animation-play-state: paused;
}
@media (max-width: 768px) {
  .p-supported__list {
    padding: 0 10px;
  }
}
.p-supported__list li {
  width: 223px;
  height: 205px;
  background: #FFF;
  border-radius: 33px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-supported__list li:hover {
  box-shadow: rgba(0, 86, 179, 0.2) 0px 8px 32px;
}
@media (max-width: 768px) {
  .p-supported__list li {
    width: 150px;
    height: 138px;
  }
}
.p-supported__img {
  width: 100%;
  height: 144px;
}
@media (max-width: 768px) {
  .p-supported__img {
    height: 97px;
  }
}
.p-supported__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-supported__name {
  display: block;
  padding-top: 13px;
  font-size: 21px;
  font-weight: bold;
  color: #333333;
}
@media (max-width: 768px) {
  .p-supported__name {
    padding-top: 8px;
    font-size: 14px;
  }
}

@keyframes loop-slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==========
  Intro
  ========== */
.p-intro {
  padding: 77px 0;
  background: url("../assets/intro_bg.jpg");
}
@media (max-width: 900px) {
  .p-intro {
    padding: 31px 0 10px;
  }
}
.p-intro .l-container {
  max-width: 1324px;
  padding: 0;
}
@media (max-width: 900px) {
  .p-intro .l-container {
    padding: 0 11px;
  }
}
.p-intro__top {
  display: flex;
  gap: 53px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .p-intro__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 17px;
  }
}
.p-intro__checks {
  list-style: none;
  margin-bottom: 0;
}
.p-intro__checks li {
  position: relative;
  padding-left: 71px;
  margin-bottom: 34px;
  font-size: 30px;
  color: #00228B;
}
.p-intro__checks li:last-child {
  margin-bottom: 0;
}
.p-intro__checks li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 54.4px;
  height: 45px;
  background: url("../assets/intro_checkbox.svg") no-repeat center center;
  background-size: contain;
}
@media (max-width: 900px) {
  .p-intro__checks li {
    font-size: 14px;
    padding-left: 35px;
    margin-bottom: 15px;
  }
  .p-intro__checks li::before {
    width: 24px;
    height: 24px;
    top: 0;
  }
}
.p-intro__cta {
  align-items: center;
}
.p-intro__btn-wrap {
  position: relative;
  margin-bottom: 33px;
}
@media (max-width: 900px) {
  .p-intro__btn-wrap {
    margin-bottom: 13px;
  }
}
.p-intro__finger {
  position: absolute;
  top: 40%;
  left: -25px;
  transform: translateY(-50%);
  width: 96px;
  height: auto;
  z-index: 10;
  animation: fingerBounce 1.5s infinite ease-in-out;
}
@media (max-width: 900px) {
  .p-intro__finger {
    top: 35%;
    width: 62px;
    left: -33px;
  }
}
.p-intro__problem {
  max-width: 1152px;
  margin: 0 auto;
}
.p-intro__problem-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #5DA2DE;
  padding: 32px 0 0 46px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .p-intro__problem-inner {
    padding: 0 6px 0 27px;
    margin: 0 7px;
  }
}
.p-intro__problem-content {
  color: #FFF;
}
.p-intro__problem-title {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 900px) {
  .p-intro__problem-title {
    font-size: 15px;
    line-height: 1.6;
  }
  .p-intro__problem-title br {
    display: none;
  }
}
.p-intro__problem-img {
  width: 244px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .p-intro__problem-img {
    width: 87px;
  }
}

@keyframes fingerBounce {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-70%) translateX(-5px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
/* ==========
  Issues
  ========== */
.p-issues {
  padding: 30px 0 69px;
}
@media (max-width: 768px) {
  .p-issues {
    padding: 20px 0 35px;
  }
}
.p-issues .l-container {
  max-width: 1232px;
}
.p-issues__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  gap: 28px 78px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-issues__grid {
    gap: 28px 20px;
    padding: 0 20px;
    margin-bottom: 27px;
  }
}
.p-issues__item {
  background: #FFF;
  border-radius: 33px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 537px;
}
@media (max-width: 768px) {
  .p-issues__item {
    max-width: 174px;
  }
}
.p-issues__img {
  width: 100%;
  height: 287px;
}
@media (max-width: 768px) {
  .p-issues__img {
    height: 115px;
  }
}
.p-issues__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-issues__content {
  padding: 39px 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #707070;
  border-top: 0;
  border-radius: 0 0 33px 33px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .p-issues__content {
    padding: 11px 15px 20px;
  }
}
.p-issues__head {
  color: #FF8585;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .p-issues__head {
    font-size: 11px;
    margin-bottom: 10px;
  }
}
.p-issues__text {
  font-size: 18px;
  color: #333333;
  margin: 0 5px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .p-issues__text {
    font-size: 11px;
    margin: 0;
  }
}

.p-solution-banner {
  background-color: #DDE8FF;
  padding: 36.6px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
@media (max-width: 768px) {
  .p-solution-banner {
    padding: 24px 28px 19px 6px;
    gap: 0;
  }
}
.p-solution-banner__icon {
  width: 121px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-solution-banner__icon {
    width: 56px;
  }
}
.p-solution-banner__icon img {
  width: 100%;
  height: auto;
  display: block;
}
.p-solution-banner__text {
  font-size: 30px;
  color: #333333;
  line-height: 1.7;
  text-align: center;
}
.p-solution-banner__text .u-text-pink {
  color: #FF5CA1;
}
@media (max-width: 768px) {
  .p-solution-banner__text {
    font-size: 14px;
  }
}

/* ==========
  Service
  ========== */
.p-service {
  padding-bottom: 121px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-service {
    padding-bottom: 29px;
  }
}
.p-service .l-container {
  position: relative;
}
.p-service__lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 65.7px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-service__lead {
    text-align: left;
    font-size: 14px;
    margin: 0 20px 35px;
  }
}
.p-service__bg-ring {
  position: absolute;
  top: 900px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 50px solid rgba(255, 10, 10, 0.11);
  border-radius: 50%;
  width: 1121px;
  height: 1121px;
}
@media (max-width: 768px) {
  .p-service__bg-ring {
    width: 382px;
    height: 382px;
    border-width: 30px;
    top: 760px;
    z-index: -10;
  }
}
.p-service__equation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .p-service__equation {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 10px;
    margin-top: -20px;
    margin-bottom: 36px;
  }
}
.p-service__eq-item {
  background: #FFF;
  border-radius: 33px;
  width: 310px;
  height: 247px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 12px solid #FFF;
}
@media (max-width: 768px) {
  .p-service__eq-item {
    width: 143px;
    height: 105px;
    padding: 10px 10px 10px;
    flex-direction: column;
    border-radius: 20px;
    border-width: 6px;
  }
  .p-service__eq-item:nth-child(1) {
    order: 1;
  }
  .p-service__eq-item:nth-child(3) {
    order: 3;
  }
  .p-service__eq-item--orange {
    width: 338px;
    order: 5;
    margin-top: 0;
  }
}
.p-service__eq-item--green {
  background: linear-gradient(to bottom, #B3E6D6, #E1FFF5);
}
.p-service__eq-item--green .p-service__eq-icon {
  width: 107px;
  height: 115px;
}
@media (max-width: 768px) {
  .p-service__eq-item--green .p-service__eq-icon {
    width: 38px;
    height: 40px;
  }
}
.p-service__eq-item--blue {
  background: linear-gradient(to bottom, #B7C0FF, #F6F6F6);
}
.p-service__eq-item--blue .p-service__eq-icon {
  width: 102px;
  height: 115px;
}
@media (max-width: 768px) {
  .p-service__eq-item--blue .p-service__eq-icon {
    width: 36px;
    height: 40px;
  }
}
.p-service__eq-item--orange {
  background: linear-gradient(to bottom, #F3AC6B, #FCEBDD);
}
.p-service__eq-item--orange .p-service__eq-icon {
  width: 127px;
  height: 130px;
}
@media (max-width: 768px) {
  .p-service__eq-item--orange .p-service__eq-icon {
    width: 47px;
    height: 48px;
  }
}
.p-service__eq-icon {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .p-service__eq-icon {
    margin-bottom: 5px;
  }
}
.p-service__eq-icon img {
  width: 100%;
}
.p-service__eq-text {
  font-size: 25px;
  color: #1E40AF;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-service__eq-text {
    font-size: 12px;
  }
}
.p-service__eq-operator {
  position: relative;
  width: 50px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-service__eq-operator::before, .p-service__eq-operator::after {
  content: "";
  position: absolute;
  background-color: #333333;
}
.p-service__eq-operator:nth-child(2)::before {
  width: 55.76px;
  height: 15px;
}
.p-service__eq-operator:nth-child(2)::after {
  width: 15px;
  height: 57.12px;
}
.p-service__eq-operator:nth-child(4)::before {
  width: 52.33px;
  height: 12px;
  top: 6px;
}
.p-service__eq-operator:nth-child(4)::after {
  width: 52.33px;
  height: 12px;
  bottom: 0;
}
@media (max-width: 768px) {
  .p-service__eq-operator:nth-child(2) {
    order: 2;
    width: 35px;
    height: 30px;
    flex-shrink: 0;
  }
  .p-service__eq-operator:nth-child(2)::before {
    width: 28px;
    height: 8px;
  }
  .p-service__eq-operator:nth-child(2)::after {
    width: 8px;
    height: 28px;
  }
  .p-service__eq-operator:nth-child(4) {
    order: 4;
    width: 100%;
    height: 50px;
    margin: 10px 0;
    transform: rotate(90deg);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-service__eq-operator:nth-child(4)::before, .p-service__eq-operator:nth-child(4)::after {
    left: 50%;
    transform: translateX(-50%);
    width: 27px;
    height: 8px;
  }
  .p-service__eq-operator:nth-child(4)::before {
    top: 15px;
  }
  .p-service__eq-operator:nth-child(4)::after {
    bottom: 15px;
  }
}
.p-service__benefits {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 34px;
}
@media (max-width: 768px) {
  .p-service__benefits {
    max-width: 338px;
    gap: 28px;
  }
}
.p-service__benefit-item {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.p-service__benefit-item:nth-of-type(1) {
  justify-content: flex-start;
  margin-left: 120px;
}
.p-service__benefit-item:nth-of-type(2) {
  justify-content: center;
}
.p-service__benefit-item:nth-of-type(3) {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .p-service__benefit-item {
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}
.p-service__benefit-content {
  background: #FFF;
  padding: 24px 60px 0 56px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  max-width: 584px;
  height: 253px;
  position: relative;
}
.p-service__benefit-content::before {
  content: "";
  position: absolute;
  width: 246px;
  height: 324px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  bottom: 50%;
  left: -180px;
  transform: translateY(50%);
}
@media (max-width: 768px) {
  .p-service__benefit-content {
    max-width: 100%;
    height: 178px;
    padding: 13px 20px;
    background: rgba(255, 255, 255, 0.39);
  }
  .p-service__benefit-content::before {
    left: auto;
    right: -34px;
    width: 119px;
    height: 162px;
    opacity: 0.39;
    z-index: -1;
  }
}
.p-service__benefit-item:nth-of-type(1) .p-service__benefit-content::before {
  background-image: url("../assets/service_continuation.png");
}
.p-service__benefit-item:nth-of-type(2) .p-service__benefit-content::before {
  background-image: url("../assets/service_cvr-up.png");
  left: auto;
  right: -155px;
}
@media (max-width: 768px) {
  .p-service__benefit-item:nth-of-type(2) .p-service__benefit-content::before {
    left: auto;
    right: -39px;
  }
}
.p-service__benefit-item:nth-of-type(3) .p-service__benefit-content::before {
  background-image: url("../assets/service_ltv-up.png");
  left: -200px;
}
@media (max-width: 768px) {
  .p-service__benefit-item:nth-of-type(3) .p-service__benefit-content::before {
    left: auto;
    right: -37px;
  }
}
.p-service__benefit-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .p-service__benefit-head {
    margin: 0 15px 5px 0;
  }
}
.p-service__benefit-titles {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.p-service__benefit-title {
  font-size: 40px;
  font-weight: normal;
  color: #333333;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .p-service__benefit-title {
    font-size: 23px;
    margin-bottom: 2px;
  }
}
.p-service__benefit-sub {
  color: #E1424C;
  font-size: 20px;
}
@media (max-width: 768px) {
  .p-service__benefit-sub {
    font-size: 12px;
  }
}
.p-service__benefit-num {
  font-size: 84px;
  color: #E1424C;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-service__benefit-num {
    font-size: 43px;
  }
}
.p-service__benefit-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
}
@media (max-width: 768px) {
  .p-service__benefit-desc {
    font-size: 13px;
  }
}

/* ==========
  Custom CTA
  ========== */
.p-custom-cta {
  padding: 49px 0 64px;
  background: url("../assets/custom-cta_bg.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
}
@media (max-width: 768px) {
  .p-custom-cta {
    padding: 19px 25px 27px;
  }
}
.p-custom-cta__content {
  margin-bottom: 69px;
}
@media (max-width: 768px) {
  .p-custom-cta__content {
    margin-bottom: 20px;
  }
}
.p-custom-cta__lead {
  font-size: 30px;
  color: #5A5A5A;
  line-height: 1.7;
  margin-bottom: 20px;
}
.p-custom-cta__lead .u-text-pink {
  color: #FF8585;
}
@media (max-width: 768px) {
  .p-custom-cta__lead {
    font-size: 14px;
    margin-bottom: 3px;
  }
}
.p-custom-cta__sub {
  font-size: 18px;
  color: #5A5A5A;
}
@media (max-width: 768px) {
  .p-custom-cta__sub {
    font-size: 11px;
  }
}
.p-custom-cta__btns {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-custom-cta__btns {
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
}

/* ==========
  Case
  ========== */
.p-case {
  padding: 67px 0 61px;
}
@media (max-width: 768px) {
  .p-case {
    padding: 47px 0 56px;
  }
}
.p-case .l-container {
  max-width: 1141px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-case .l-container {
    padding: 0 20px;
  }
}
.p-case__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 43.5px;
}
@media (max-width: 768px) {
  .p-case__list {
    gap: 36px;
  }
}
.p-case__item {
  display: flex;
  align-items: stretch;
  position: relative;
}
.p-case__item::after {
  content: "";
  position: absolute;
  background: #FFEA98;
  width: 512px;
  height: 297px;
  z-index: -1;
  bottom: -30px;
  left: -25px;
}
.p-case__item--reverse {
  flex-direction: row-reverse;
}
.p-case__item--reverse::after {
  left: auto;
  right: -25px;
}
@media (max-width: 1190px) {
  .p-case__item::after {
    left: 0;
  }
  .p-case__item--reverse {
    flex-direction: row-reverse;
  }
  .p-case__item--reverse::after {
    left: auto;
    right: 0;
  }
}
@media (max-width: 768px) {
  .p-case__item {
    flex-direction: column !important;
    padding-bottom: 15px;
  }
  .p-case__item::after {
    width: 310px;
    height: 123px;
    bottom: 0;
    left: -15px;
  }
  .p-case__item--reverse::after {
    left: auto;
    right: -15px;
  }
}
.p-case__content {
  background: #FFF;
  border: 1px solid #707070;
  padding: 44px 49px 26px 74.5px;
  width: 55%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .p-case__content {
    width: 100%;
    padding: 30px 23px 7px;
    order: 2;
  }
}
.p-case__head {
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 16px;
  color: #333333;
}
@media (max-width: 768px) {
  .p-case__head {
    font-size: 25px;
    margin-bottom: 3px;
  }
}
.p-case__details {
  margin-left: 2.5px;
}
@media (max-width: 768px) {
  .p-case__details {
    margin-left: 0;
  }
  .p-case__details dt:first-of-type {
    font-size: 16px;
  }
}
.p-case__details dt {
  font-size: 20px;
  color: #333333;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .p-case__details dt {
    font-size: 13px;
  }
}
.p-case__details dd {
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  line-height: 1.6;
}
.p-case__details dd:first-of-type {
  font-size: 25px;
  color: #1E40AF;
  border-bottom: 1px solid #707070;
}
@media (max-width: 768px) {
  .p-case__details dd:first-of-type {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.p-case__details dd:last-child {
  margin-bottom: 0;
}
.p-case__details dd .u-text-green {
  color: #00876F;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-case__details dd {
    font-size: 13px;
    margin-bottom: 3px;
  }
}
.p-case__img {
  width: 45%;
}
.p-case__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .p-case__img {
    width: 100%;
    height: 150px;
    order: 1;
  }
}

/* ==========
  Industry CTA
  ========== */
.p-industry-cta {
  padding: 94px 0 81px;
  background: url("../assets/industry_bg.jpg") no-repeat center center;
  background-size: cover;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .p-industry-cta {
    padding: 15px 24px 24px;
  }
}
.p-industry-cta__content {
  margin-bottom: 54px;
}
@media (max-width: 768px) {
  .p-industry-cta__content {
    margin-bottom: 31px;
  }
}
.p-industry-cta__lead {
  font-size: 30px;
  color: #333333;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-industry-cta__lead {
    font-size: 20px;
    margin-bottom: 22px;
  }
}
.p-industry-cta__sub {
  font-size: 18px;
  color: #333333;
}
@media (max-width: 768px) {
  .p-industry-cta__sub {
    font-size: 14px;
  }
}
.p-industry-cta__btns {
  display: flex;
  justify-content: center;
  gap: 45px;
}
@media (max-width: 768px) {
  .p-industry-cta__btns {
    flex-direction: column;
    align-items: center;
    gap: 13px;
  }
}

/* ==========
  Voice
  ========== */
.p-voice {
  padding: 69px 0 68px;
  background: url("../assets/voice_bg.jpg");
}
@media (max-width: 768px) {
  .p-voice {
    padding: 51px 0 55px;
  }
}
.p-voice .l-container {
  max-width: 1152px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-voice .l-container {
    padding: 0 22px;
  }
}
.p-voice__inner {
  background-color: #FFF;
}
.p-voice__visual {
  position: relative;
  width: 100%;
}
.p-voice__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.p-voice__label {
  position: absolute;
  bottom: 12.5px;
  left: 77px;
  background-color: #1E40AF;
  color: #FFF;
  font-size: 20px;
  line-height: 1.2;
  padding: 8px 52px 8px 50px;
  min-width: 400px;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-voice__label {
    left: 11px;
    bottom: 11px;
    min-width: 207px;
    padding: 8px 14px 4px;
    font-size: 12px;
  }
}
.p-voice__content {
  padding: 22.5px 77px;
}
@media (max-width: 768px) {
  .p-voice__content {
    padding: 23px 24px;
  }
}
.p-voice__block {
  margin-bottom: 20px;
}
.p-voice__block:last-child {
  margin-bottom: 0;
}
.p-voice__head {
  display: block;
  font-size: 30px;
  color: #1E40AF;
  margin-bottom: 10px;
  font-weight: normal;
}
@media (max-width: 768px) {
  .p-voice__head {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.p-voice__text {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-voice__text {
    font-size: 14px;
  }
}

/* ==========
  User Voice
  ========== */
.p-user-voice {
  padding: 44px 0 68px;
}
@media (max-width: 768px) {
  .p-user-voice {
    padding: 47px 0 20px;
  }
}
.p-user-voice .l-container {
  max-width: 1151px;
}
@media (max-width: 768px) {
  .p-user-voice .l-container {
    padding: 0 23px;
  }
}
.p-user-voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 44px;
}
@media (max-width: 768px) {
  .p-user-voice__grid {
    grid-template-columns: 1fr;
    gap: 31px;
    margin-top: 27px;
  }
}
.p-user-voice__card {
  background-color: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-user-voice__img {
  position: relative;
  width: 100%;
  height: 220px;
}
.p-user-voice__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .p-user-voice__img {
    height: 150px;
  }
  .p-user-voice__img img {
    -o-object-position: top;
       object-position: top;
  }
}
.p-user-voice__tag {
  position: absolute;
  bottom: 3px;
  left: 41px;
  background-color: #1E40AF;
  color: #FFF;
  padding: 5px 17px;
  font-size: 20px;
  z-index: 2;
  min-width: 123px;
}
@media (max-width: 768px) {
  .p-user-voice__tag {
    bottom: -63px;
    left: 24px;
  }
}
.p-user-voice__content {
  padding: 30px 41px;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .p-user-voice__content {
    padding: 70px 24px 19px;
  }
}
.p-user-voice__text {
  font-size: 18px;
  color: #333333;
  line-height: 1.8;
  text-align: justify;
}
@media (max-width: 768px) {
  .p-user-voice__text {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* ==========
  Price
  ========== */
.p-price {
  padding: 45px 0 80px;
  background: #E3F2FF url("../assets/price_bg.jpg") no-repeat center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .p-price {
    padding: 53px 0 40px;
  }
}
.p-price .l-container {
  max-width: 1410px;
}
@media (max-width: 768px) {
  .p-price .l-container {
    padding: 0 24px;
  }
}
.p-price .c-section-title {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .p-price .c-section-title {
    margin-bottom: 14px;
  }
}
.p-price__lead {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
  color: #333333;
}
@media (max-width: 768px) {
  .p-price__lead {
    font-size: 14px;
    margin-bottom: 19px;
  }
}
.p-price__box {
  background-color: #FFF;
  border-radius: 27px;
  padding: 40px 20px 58px;
  position: relative;
}
@media (max-width: 768px) {
  .p-price__box {
    padding: 14px 20px 24px;
  }
}
.p-price__box-title {
  text-align: center;
  font-size: 40px;
  font-weight: normal;
  margin-bottom: 18px;
  color: #333333;
}
@media (max-width: 768px) {
  .p-price__box-title {
    font-size: 14px;
  }
}
.p-price__amount-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  text-align: left;
}
@media (max-width: 768px) {
  .p-price__amount-wrap {
    width: 100%;
    margin-bottom: 22px;
  }
}
.p-price__amount-label {
  display: block;
  font-size: 18px;
  color: #333333;
  text-align: left;
}
@media (max-width: 768px) {
  .p-price__amount-label {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
.p-price__amount {
  font-size: 71px;
  color: #333333;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-price__amount {
    font-size: 22px;
    text-align: center;
  }
}
.p-price__box-desc {
  text-align: center;
  font-size: 18px;
  color: #333333;
  margin-bottom: 69px;
}
@media (max-width: 768px) {
  .p-price__box-desc {
    font-size: 13px;
    margin-bottom: 27px;
  }
}
.p-price__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
@media (max-width: 768px) {
  .p-price__btns {
    gap: 15px;
  }
}
.p-price__btns .c-btn {
  width: 100%;
  max-width: 576px;
}
.p-price__icon {
  position: absolute;
  top: 22px;
  right: 80px;
  width: 97px;
}
@media (max-width: 768px) {
  .p-price__icon {
    width: 31px;
    top: 30px;
    right: 12px;
  }
}

/* ==========
  Step
  ========== */
.p-step {
  padding: 83px 0 121px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .p-step {
    padding: 30px 0;
  }
}
.p-step .c-section-title {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .p-step .c-section-title {
    margin-bottom: 30px;
  }
}
.p-step__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
}
@media (max-width: 768px) {
  .p-step__list {
    flex-direction: column;
    align-items: center;
    gap: 30.5px;
  }
}
.p-step__item {
  position: relative;
  max-width: 350px;
}
.p-step__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 48px;
  height: 56px;
  background: url("../assets/step_arrow.svg") no-repeat center center;
}
@media (max-width: 768px) {
  .p-step__item:not(:last-child)::after {
    top: auto;
    bottom: -40px;
    right: 50%;
    margin-right: -10px;
    transform: rotate(90deg);
    width: 28px;
    height: 52px;
  }
}
@media (max-width: 768px) {
  .p-step__item {
    max-width: 321px;
  }
}
.p-step__head {
  position: absolute;
  top: -20px;
  left: -30px;
  width: 95px;
  height: 97px;
  background: #FB8823;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 59px;
  font-weight: bold;
  z-index: 2;
}
.p-step__head::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 64px;
  border-top: 15px solid #FB8823;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 0;
  transform: rotate(87deg);
  transform-origin: center;
}
@media (max-width: 768px) {
  .p-step__head {
    top: -27px;
    left: -17px;
    width: 64px;
    height: 66px;
    font-size: 38px;
  }
  .p-step__head::after {
    left: 32px;
  }
}
.p-step__card {
  background: #FFF;
  border: 1px solid #FB8823;
  border-radius: 33px;
  height: 100%;
  text-align: center;
}
.p-step__item:nth-of-type(1) .p-step__card {
  padding: 80px 35px 23px;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(1) .p-step__card {
    padding: 30px 33px 28px;
  }
}
.p-step__item:nth-of-type(2) .p-step__card {
  padding: 67.4px 35px 23px;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(2) .p-step__card {
    padding: 28px 33px 14px;
  }
}
.p-step__item:nth-of-type(3) .p-step__card {
  padding: 80.4px 35px 23px;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(3) .p-step__card {
    padding: 30px 33px 17px;
  }
}
.p-step__icon {
  height: 100px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .p-step__icon {
    margin-bottom: 0;
  }
}
.p-step__icon img {
  max-width: 100%;
  height: auto;
}
.p-step__item:nth-of-type(1) .p-step__icon {
  width: 89px;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(1) .p-step__icon {
    width: 66px;
  }
}
.p-step__item:nth-of-type(2) .p-step__icon {
  width: 160px;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(2) .p-step__icon {
    width: 115px;
  }
}
.p-step__item:nth-of-type(3) .p-step__icon {
  width: 100px;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(3) .p-step__icon {
    width: 72px;
  }
}
.p-step__title {
  font-size: 25px;
  font-weight: normal;
  color: #333333;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-step__title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
  }
}
.p-step__text {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 768px) {
  .p-step__text {
    font-size: 14px;
  }
}

/* ==========
  FAQ
  ========== */
.p-faq {
  padding: 108px 0;
  background-color: #eee;
}
@media (max-width: 768px) {
  .p-faq {
    padding: 45px 0 31px;
  }
}
.p-faq .l-container {
  max-width: 1152px;
}
@media (max-width: 768px) {
  .p-faq .l-container {
    padding: 0 26px;
  }
}
@media (max-width: 768px) {
  .p-faq .c-section-title {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.p-faq__list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-faq__list {
    margin-top: 14px;
    gap: 14px;
  }
}
.p-faq__item {
  width: 100%;
  background-color: #FFF;
  border-radius: 33px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-faq__item {
    border-radius: 10px;
  }
}
.p-faq__head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 54px 32px 68px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .p-faq__head {
    height: 48px;
    padding: 6px 13px 5px 50px;
  }
}
.p-faq__head::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 14px 0 14px;
  border-color: #333333 transparent transparent transparent;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .p-faq__head::after {
    border-width: 14px 8px 0 8px;
    margin-left: 20px;
  }
}
.p-faq__head.is-open::after {
  transform: rotate(180deg);
}
.p-faq__head:hover {
  background-color: #fcfcfc;
}
.p-faq__question {
  font-size: 25px;
  color: #333333;
  line-height: 1.4;
  font-weight: normal;
}
@media (max-width: 768px) {
  .p-faq__question {
    width: 212px;
    margin: 0 auto;
    font-size: 12px;
    text-align: center;
  }
}
.p-faq__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background-color: #D9D9D9;
}
.p-faq__content {
  padding: 35px 125px 34px 67px;
}
@media (max-width: 768px) {
  .p-faq__content {
    padding: 19px 37px 22px 30px;
  }
}
.p-faq__text {
  font-size: 18px;
  line-height: 1.9;
  color: #333333;
}
@media (max-width: 768px) {
  .p-faq__text {
    font-size: 12px;
  }
}

/* ==========
  Contact
  ========== */
.p-contact {
  padding: 48px 0 87px;
  background: url("../assets/contact_bg.jpg");
}
@media (max-width: 768px) {
  .p-contact {
    position: relative;
    overflow: hidden;
    padding: 45px 0 0;
  }
}
.p-contact .l-container {
  max-width: 1152px;
}
@media (max-width: 768px) {
  .p-contact .c-section-title {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.p-contact__head {
  text-align: center;
  margin-bottom: 41px;
}
@media (max-width: 768px) {
  .p-contact__head {
    margin-bottom: 28px;
  }
}
.p-contact__lead {
  margin-top: 48px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 768px) {
  .p-contact__lead {
    margin: 14px 20px 0;
    font-size: 11px;
  }
}
.p-contact__box {
  background-color: #FFF;
  border-radius: 33px;
  padding: 85px 84px 62px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-contact__box {
    padding: 40px 50px 58px;
    background-color: transparent;
    border-radius: 296px;
  }
}
.p-contact__box::before {
  display: none;
}
@media (max-width: 768px) {
  .p-contact__box::before {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 773px;
    height: 700px;
    background-color: #FFF;
    border-radius: 291px 291px 0 0;
    z-index: -1;
  }
}
.p-contact__item {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .p-contact__item {
    margin-bottom: 7px;
  }
}
.p-contact__item:last-of-type {
  margin-bottom: 50px;
}
.p-contact__label {
  display: block;
  font-size: 20px;
  font-weight: normal;
  color: #333333;
  margin-bottom: 15px;
}
.p-contact__label .u-text-required {
  color: #FF5A5A;
  font-size: 20px;
  margin-left: 21px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .p-contact__label {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .p-contact__label .u-text-required {
    font-size: 12px;
    margin-left: 11px;
    vertical-align: top;
  }
}
.p-contact__input, .p-contact__textarea {
  width: 100%;
  border: 1px solid #707070;
  border-radius: 18px;
  padding: 15px 20px;
  font-size: 31px;
  background-color: #FFF;
  outline: none;
}
.p-contact__input:focus, .p-contact__textarea:focus {
  border-color: #1E40AF;
  box-shadow: 0 0 5px rgba(30, 64, 175, 0.2);
}
@media (max-width: 768px) {
  .p-contact__input, .p-contact__textarea {
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 12px;
  }
}
.p-contact__textarea {
  height: 257px;
  resize: vertical;
}
@media (max-width: 768px) {
  .p-contact__textarea {
    height: 94px;
  }
}
.p-contact__submit {
  margin-top: 94px;
  text-align: center;
}
.p-contact__submit .p-btn {
  display: block;
  width: 100%;
  padding: 25px 0 23px;
  background: #1E40AF;
  color: #FFF;
  border-radius: 18px;
  font-size: 20px;
  transition: all 0.3s ease;
}
.p-contact__submit .p-btn:hover {
  background: #254ccb;
}
@media (max-width: 768px) {
  .p-contact__submit {
    margin-top: 19px;
  }
  .p-contact__submit .p-btn {
    font-size: 12px;
    padding: 10px 0;
    border-radius: 7px;
  }
}

/* ==========
  Footer
  ========== */
.l-footer {
  background-color: #525F7D;
  color: #FFF;
  padding: 42px 0;
}
@media (max-width: 1050px) {
  .l-footer {
    padding: 22px 45px;
  }
}
.l-footer__inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 1050px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.l-footer__logo-box {
  background-color: #FFF;
  border-radius: 24px;
  padding: 41px 20px 42px;
  width: 490px;
  text-align: center;
}
@media (max-width: 1050px) {
  .l-footer__logo-box {
    width: 100%;
    max-width: 320px;
    padding: 22px 0;
    border-radius: 24px;
  }
}
.l-footer__logo {
  margin: 0 auto 21px auto;
  max-width: 258px;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1050px) {
  .l-footer__logo {
    width: 136px;
    margin-bottom: 10px;
  }
}
.l-footer__company-name {
  color: #333333;
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 22px;
  white-space: nowrap;
}
@media (max-width: 1050px) {
  .l-footer__company-name {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
.l-footer__service-type {
  color: #333333;
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 1050px) {
  .l-footer__service-type {
    font-size: 10px;
  }
}
.l-footer__nav-area {
  flex-grow: 1;
  margin-left: 105px;
  margin-right: 180px;
}
@media (max-width: 1050px) {
  .l-footer__nav-area {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}
.l-footer__nav {
  margin-bottom: 42px;
}
@media (max-width: 1050px) {
  .l-footer__nav {
    margin-bottom: 21px;
  }
}
.l-footer__nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
@media (max-width: 1050px) {
  .l-footer__nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
  }
}
.l-footer__nav a {
  font-size: 20px;
  font-weight: normal;
  color: #FFF;
}
@media (max-width: 1050px) {
  .l-footer__nav a {
    font-size: 12px;
  }
}
.l-footer__external {
  margin-bottom: 67.5px;
}
@media (max-width: 1050px) {
  .l-footer__external {
    margin-bottom: 31.4px;
  }
}
.l-footer__external a {
  font-size: 20px;
  color: #FFF;
  display: flex;
  align-items: center;
  gap: 10.2px;
}
@media (max-width: 1050px) {
  .l-footer__external a {
    font-size: 12px;
  }
}
.l-footer__external a:hover {
  opacity: 0.7;
}
.l-footer__external-icon {
  width: 24px;
  height: auto;
}
@media (max-width: 1050px) {
  .l-footer__external-icon {
    width: 18px;
  }
}
@media (max-width: 1050px) {
  .l-footer__external {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.l-footer__copyright {
  border-top: 1px solid #FFF;
  padding-top: 33.5px;
  text-align: center;
}
.l-footer__copyright p {
  font-size: 20px;
}
@media (max-width: 1050px) {
  .l-footer__copyright {
    width: 100%;
    padding-top: 14.7px;
  }
  .l-footer__copyright p {
    font-size: 14px;
  }
}

/* ==========
  Modal
  ========== */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.c-modal__content {
  position: relative;
  background-color: #EBF5FF;
  width: 90%;
  max-width: 1345px;
  max-height: 93vh;
  padding: 63px 96px 87px;
  border-radius: 40px;
  overflow-y: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-modal__content {
    padding: 27.7px 10px 15.5px;
    border-radius: 20px;
    width: 100%;
    max-width: 393px;
    border-radius: 9px;
  }
}
.c-modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}
.c-modal__header {
  text-align: center;
  margin-bottom: 71px;
}
@media (max-width: 768px) {
  .c-modal__header {
    margin-bottom: 50px;
  }
}
.c-modal__title {
  font-size: 40px;
  font-weight: normal;
  color: #1E40AF;
  max-width: 560px;
  border-bottom: 8px solid #1E40AF;
  display: block;
  padding-bottom: 26px;
  margin: 0 auto 32px;
}
@media (max-width: 768px) {
  .c-modal__title {
    font-size: 18px;
    max-width: 252px;
    border-bottom: 4px solid #1E40AF;
    padding-bottom: 13px;
    margin-bottom: 17.3px;
  }
}
.c-modal__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
}
@media (max-width: 768px) {
  .c-modal__lead {
    font-size: 11px;
    padding: 0 30ox;
  }
}
.c-modal__form {
  background: #FFF;
  padding: 85px 84px 62px;
  border-radius: 33px;
}
@media (max-width: 768px) {
  .c-modal__form {
    padding: 28.5px 25px 42.5px;
    border-radius: 9px;
  }
}
.c-modal__item {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .c-modal__item {
    margin-bottom: 7px;
  }
}
.c-modal__label {
  display: block;
  font-size: 20px;
  margin-bottom: 15px;
}
.c-modal__label .u-text-required {
  color: #FF5A5A;
  margin-left: 21px;
  font-size: 20px;
}
@media (max-width: 768px) {
  .c-modal__label {
    font-size: 12px;
    margin-bottom: 7px;
  }
  .c-modal__label .u-text-required {
    font-size: 12px;
    margin-left: 11px;
  }
}
.c-modal__input, .c-modal__textarea {
  width: 100%;
  border: 1px solid #707070;
  border-radius: 18px;
  padding: 17px;
  font-size: 26px;
  outline: none;
}
.c-modal__input:focus, .c-modal__textarea:focus {
  border-color: #1E40AF;
}
@media (max-width: 768px) {
  .c-modal__input, .c-modal__textarea {
    padding: 8px;
    font-size: 12px;
    border-radius: 6px;
  }
}
.c-modal__textarea {
  height: 257px;
}
@media (max-width: 768px) {
  .c-modal__textarea {
    height: 94px;
  }
}
.c-modal__submit {
  margin-top: 94px;
  text-align: center;
}
.c-modal__submit .p-btn {
  background: #1E40AF;
  color: #FFF;
  padding: 24px 0;
  border-radius: 18px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s, opacity 0.3s;
}
.c-modal__submit .p-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.7;
}
.c-modal__submit .p-btn:disabled:hover {
  transform: none;
}
@media (max-width: 768px) {
  .c-modal__submit {
    margin-top: 19px;
  }
  .c-modal__submit .p-btn {
    padding: 16px 0;
    border-radius: 7px;
    font-size: 12px;
  }
}

/* ==========
  Thanks Page
  ========== */
.p-thanks {
  padding: 139px 0 65px;
  margin-top: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-thanks {
    padding: 45px 0 32px;
  }
}
.p-thanks__content {
  max-width: 1110px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-thanks__content {
    max-width: 340px;
  }
}
.p-thanks__title {
  font-size: 44px;
  font-weight: normal;
  color: #333333;
  position: relative;
  display: inline-block;
  padding-bottom: 25.5px;
  margin-bottom: 89.5px;
}
.p-thanks__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 817px;
  height: 5px;
  background-color: #1E40AF;
}
@media (max-width: 768px) {
  .p-thanks__title::after {
    width: 205px;
  }
}
@media (max-width: 768px) {
  .p-thanks__title {
    font-size: 18px;
    padding-bottom: 15.5px;
    margin-bottom: 28.5px;
  }
}
.p-thanks__message {
  margin-bottom: 67px;
}
@media (max-width: 768px) {
  .p-thanks__message {
    margin-bottom: 32px;
  }
}
.p-thanks__message p {
  font-size: 24px;
  line-height: 2;
  color: #333333;
  margin-bottom: 30px;
}
.p-thanks__message p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .p-thanks__message p {
    font-size: 10px;
    line-height: 1.6;
    margin-bottom: 22px;
  }
}
.p-thanks__btn {
  display: flex;
  justify-content: center;
}
.p-thanks__btn .c-btn__second {
  width: 446px;
  height: 84px;
  line-height: 84px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: none;
}
@media (max-width: 768px) {
  .p-thanks__btn .c-btn__second {
    width: 217px;
    height: 41px;
    line-height: 41px;
    font-size: 12px;
    border-radius: 21px;
  }
}

/* ==========
  Privacy Policy Style
  ========== */
.p-contact__policy,
.c-modal__policy {
  margin-bottom: 24px;
  text-align: center;
}
.p-contact__policy p,
.c-modal__policy p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-contact__policy p,
  .c-modal__policy p {
    font-size: 11px;
  }
}
.p-contact__policy a,
.c-modal__policy a {
  color: #1E40AF;
  text-decoration: underline;
  font-weight: bold;
  transition: opacity 0.3s;
}
.p-contact__policy a:hover,
.c-modal__policy a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.c-modal__policy p {
  color: #333333;
}

@media (min-width: 1051px) {
  .l-footer__nav ul {
    gap: 0 20px;
  }
}/*# sourceMappingURL=style.css.map */
