@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: 478px;
  height: 61px;
  border-radius: 30px;
  background: #FF6633;
  color: #FFF;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .c-btn {
    width: 260px;
    height: 60px;
    font-size: 22px;
    padding-right: 6px;
  }
}
.c-btn:hover {
  transform: translateY(-2px);
  background-color: #FF6633B3;
  opacity: 1;
}

.js-modal-open::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: auto;
  right: 40px;
  width: 20px;
  height: 20px;
  margin: 0;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .js-modal-open::after {
    right: 20px;
  }
}
.c-btn__second {
  border: 2px solid #FF6633;
  background: #FFF;
  color: #FF6633;
  text-shadow: none;
  margin-bottom: 0;
}
.c-btn__second:hover {
  transform: translateY(-2px);
  background-color: #FFF;
  border: 2px solid #FF6633B3;
  background: #FFF;
  color: #FF6633B3;
  opacity: 1;
}
@media (max-width: 950px) {
  .c-btn__second {
    margin-top: 20px;
  }
}

.c-section-title {
  display: table;
  color: #FF6633;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 30px auto;
  position: relative;
}
@media (max-width: 768px) {
  .c-section-title {
    font-size: 28px;
    padding-bottom: 0;
    margin-bottom: 11px;
  }
}

.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;
  /* ハンバーガーボタン */
}
@media (max-width: 768px) {
  .l-header {
    max-width: 100vw;
    height: 60px;
  }
  .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;
  width: 100vw;
  max-width: 1040px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .l-header__inner {
    max-width: 100vw;
    padding: 20px;
    box-shadow: 0px 3px 3px #0000001A;
  }
}
.l-header__logo {
  position: relative;
}
.l-header__logo a {
  display: flex;
  height: 36px;
  align-items: center;
}
.l-header__logo a img {
  display: inline-block;
  width: 314px;
  height: auto;
  align-content: center;
}
@media (max-width: 768px) {
  .l-header__logo a img {
    width: 175px;
    height: 20px;
  }
}
.l-header__nav ul {
  display: flex;
  list-style: none;
  gap: 89px;
}
.l-header__nav ul .js-modal-open::after {
  display: none;
}
.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: 20px;
}
.l-header__nav .l-header__nav-list a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 16px;
  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: 1%;
    right: 5%;
    width: 90%;
    background-color: #FFF;
    z-index: 120;
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s;
    overflow-y: auto;
    visibility: hidden;
    border-radius: 12px;
  }
  .l-header__nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .l-header__nav-inner {
    display: flex;
    flex-direction: column;
  }
  .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: 20px 20px 0;
    gap: 0;
    flex-grow: 1;
  }
  .l-header__nav .l-header__nav-list li {
    padding: 7px 0;
    border-top: #F2F2F2 1px solid;
  }
  .l-header__nav .l-header__nav-list a {
    font-size: 14px;
  }
  .l-header__nav-bottom {
    display: block;
    padding: 0 20px 18px;
  }
  .l-header__nav-bottom .l-header__external {
    padding: 10px 0;
    border-top: #F2F2F2 1px solid;
    border-bottom: #F2F2F2 1px solid;
    margin-bottom: 18px;
  }
  .l-header__nav-bottom .l-header__external a {
    color: #333333;
    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 {
    background-color: #FFF;
    display: block;
    z-index: 200;
    width: 45px;
    height: 45px;
    position: relative;
    border: none;
    cursor: pointer;
    border-radius: 12px;
  }
  .l-header__hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #CCCCCC;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  .l-header__hamburger span:nth-of-type(1) {
    top: 12px;
  }
  .l-header__hamburger span:nth-of-type(2) {
    top: 22px;
  }
  .l-header__hamburger span:nth-of-type(3) {
    top: 31px;
  }
  .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-color: #FFF0EB;
  height: 560px;
  padding-top: 70px;
}
@media (max-width: 900px) {
  .p-hero {
    height: 621px;
    overflow: hidden;
    padding-top: 30px;
  }
}
@media (max-width: 768px) {
  .p-hero {
    margin-top: 60px;
  }
}
@media (max-width: 403px) {
  .p-hero {
    height: 621px;
    padding-top: 0;
  }
}
.p-hero__content {
  background-image: url("../assets/main.png");
  background-size: 461px 420px;
  background-position: right;
  background-repeat: no-repeat;
  max-width: 1040px;
  height: 420px;
  text-align: left;
  line-height: 1;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .p-hero__content {
    background-size: 240px 219px;
    background-position: center top 20px;
    max-width: 100%;
    height: 100%;
    padding-top: 280px;
    text-align: center;
  }
}
@media (max-width: 403px) {
  .p-hero__content {
    padding: 268px 0 39px;
    height: 621px;
  }
}
.p-hero__catch {
  font-size: 52px;
  color: #FF6633;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .p-hero__catch {
    font-size: 31px;
    margin-bottom: 0;
  }
}
@media (max-width: 403px) {
  .p-hero__catch {
    font-size: 32px;
    font-weight: 600;
    text-align: left;
    padding-left: 36px;
    letter-spacing: -1.34px;
  }
}
.p-hero__title {
  margin-bottom: 20px;
  padding-top: 10px;
}
.p-hero__title img {
  width: 100%;
  max-width: 320px;
  height: auto;
}
.p-hero__service {
  display: inline-block;
  background-color: #FF6633;
  color: #FFF0EB;
  padding: 8px 88px;
  border-radius: 30px;
  font-size: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .p-hero__title {
    margin-bottom: 15px;
  }
  .p-hero__title img {
    max-width: 240px;
  }
  .p-hero__service {
    padding: 7px 69px;
    border-radius: 15px;
    font-size: 17px;
    margin-bottom: 32px;
  }
}
@media (max-width: 900px) {
  .p-hero__desc {
    padding-top: 9px;
  }
}
.p-hero__desc p {
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0.27px;
}
@media (max-width: 900px) {
  .p-hero__desc p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media (max-width: 403px) {
  .p-hero__desc p {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding-left: 40px;
    letter-spacing: 0.22px;
  }
}

/* ==========
  Intro
  ========== */
@media (max-width: 900px) {
  .p-intro {
    padding: 40px 0 0;
  }
}
.p-intro__top {
  display: flex;
  justify-content: center;
  background-color: #FFF;
  padding: 40px 0;
}
@media (max-width: 900px) {
  .p-intro__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0;
  }
}
.p-intro__cta {
  position: relative;
  align-items: center;
}
.p-intro__problem {
  background-color: #F1F1F1;
  margin: 0 auto;
  padding: 51px 0 60px;
}
.p-intro__problem-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 680px;
  padding: 32px 0 0 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .p-intro__problem {
    padding: 34px 0 40px;
  }
  .p-intro__problem-inner {
    padding: 0 20px;
  }
}
.p-intro__problem-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 40px;
  row-gap: 30px;
  color: #333333;
}
@media (max-width: 900px) {
  .p-intro__problem-content {
    row-gap: 12px;
  }
}
.p-intro__problem-title {
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 900px) {
  .p-intro__problem-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 14px;
  }
}
.p-intro__problem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #FFF;
  width: 320px;
  height: 160px;
  margin-top: 20px;
  border-radius: 10px;
}
@media (max-width: 900px) {
  .p-intro__problem-item {
    display: flex;
    flex-direction: row;
    width: 335px;
    height: 68px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0;
  }
}
.p-intro__problem-icon {
  height: 80px;
  width: auto;
  margin-top: -26px;
}
@media (max-width: 900px) {
  .p-intro__problem-icon {
    height: 48px;
    width: 96px;
    margin-top: 0;
    object-fit: contain;
  }
}
.p-intro__problem-text {
  font-size: 20px;
  color: #333333;
  text-align: center;
  letter-spacing: 0.4px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .p-intro__problem-text {
    position: static;
    font-size: 16px;
    text-align: left;
    margin: 0;
    width: 239px;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .p-intro__problem-item:nth-child(2) .p-intro__problem-text, .p-intro__problem-item:nth-child(3) .p-intro__problem-text {
  margin-top: 0;
}
}

@keyframes fingerBounce {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-70%) translateX(-5px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
/* ==========
  Issues
  ========== */
.p-issues__next {
  background-color: #FFF;
  padding: 40px;
}
.p-issues__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 100px solid transparent;
  border-left: 100px solid transparent;
  border-top: 60px solid #FF6633;
  border-bottom: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-issues__triangle {
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
    border-top: 48px solid #FF6633;
  }
}
.p-issues__grid {
  background-color: #FFF0EB;
  padding: 53px 0 60px;
}
@media (max-width: 768px) {
  .p-issues__grid {
    padding: 34px 20px 40px 20px;
  }
}
.p-issues__inner {
  background-image: url("../assets/guarantee.png");
  background-size: 420px 306px;
  background-position: right center;
  background-repeat: no-repeat;
  max-width: 1040px;
  margin: 0 auto 49px;
}
@media (max-width: 768px) {
  .p-issues__inner {
    height: 920px;
    margin: 0 20px;
    background-size: 240px auto;
    background-position: center bottom 35px;
  }
}
.p-issues__title {
  font-size: 40px;
  color: #FF6633;
  line-height: 1.5;
  letter-spacing: 1.92px;
  margin-bottom: 27px;
}
@media (max-width: 768px) {
  .p-issues__title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 31px;
    margin-right: -40px;
    letter-spacing: 1.34px;
  }
}
.p-issues__text {
  font-size: 20px;
  color: #333333;
  line-height: 1.7;
  letter-spacing: 0.4px;
  margin-bottom: 28px;
}
.p-issues__note {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.32px;
}
.p-issues__bold {
  font-weight: 700;
}
.p-issues__link {
  color: #FF6633;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .p-issues__text {
    font-size: 16px;
    margin-bottom: 13px;
    line-height: 1.5;
  }
  .p-issues__note {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.24px;
  margin-top: 4px;
}
}
.p-issues__list-title {
  font-size: 28px;
  color: #FF6633;
  text-align: center;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .p-issues__list-title {
    font-size: 20px;
    margin-bottom: 13px;
    line-height: 1.4;
    letter-spacing: 1.6px;
  }
}
.p-issues__list-content {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  margin-bottom: 61px;
  max-width: 1040px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .p-issues__list-content {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }
}
.p-issues__list-item {
  background-color: #FF6633;
  width: 510px;
  height: 88px;
  border-radius: 12px;
  position: relative;
  align-content: center;
}
@media (max-width: 768px) {
  .p-issues__list-item {
    display: flex;
    width: 260px;
    height: 60px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }
}
.p-issues__list-text {
  font-size: 24px;
  color: #FFF;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-issues__list-text {
    font-size: 16px;
  }
}
.p-issues__solutions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.p-issues__solution-item {
  background-color: #FFF;
  background-image: url("../assets/check.png");
  background-size: 40px;
  background-position: left 20px top 14px;
  background-repeat: no-repeat;
  width: 720px;
  height: 68px;
  border-radius: 10px;
  position: relative;
}
@media (max-width: 768px) {
  .p-issues__solution-item {
    max-width: 335px;
    background-size: 32px;
    background-position: left 20px top 18px;
  }
}
.p-issues__solution-text {
  font-size: 28px;
  color: #FF6633;
  text-align: left;
  margin: 15px 0 15px 79px;
  line-height: 1.4;
  font-weight: 600;
}
.p-issues__solution-item:nth-child(1) .p-issues__solution-text {
  letter-spacing: 0.92px;
}
.p-issues__solution-item:nth-child(2) .p-issues__solution-text {
  letter-spacing: -1.26px;
}
.p-issues__solution-item:nth-child(3) .p-issues__solution-text {
  letter-spacing: 1.04px;
}
.p-issues__solution-item:nth-child(4) .p-issues__solution-text {
  letter-spacing: 0.56px;
}
@media (max-width: 768px) {
  .p-issues__solution-text {
    font-size: 20px;
    margin: 7px auto 7px 72px;
    letter-spacing: 0.66px;
  }
.p-issues__solution-item:nth-child(1) .p-issues__solution-text , .p-issues__solution-item:nth-child(4) .p-issues__solution-text {
  letter-spacing: 0.66px;
}
.p-issues__solution-item:nth-child(2) .p-issues__solution-text , .p-issues__solution-item:nth-child(3) .p-issues__solution-text {
  letter-spacing: 0;
}
}


/* ==========
  Service
  ========== */
.p-service {
  background-color: #FFF0EB;
  padding: 54px 0 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-service {
    padding: 34px 20px 60px;
  }
}
.p-service .l-container {
  position: relative;
}
.p-service__lead {
  text-align: center;
  font-size: 20px;
  margin-bottom: 37px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-service__lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 37px;
    margin-right: -1px;
  }
}
.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: 25px;
  margin-bottom: 219px;
}
@media (max-width: 768px) {
  .p-service__equation {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 6px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.p-service__eq-item {
  background: #FFF;
  border-radius: 10px;
  width: 280px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #FF6633;
}
@media (max-width: 768px) {
  .p-service__eq-item {
    width: 147px;
    height: 80px;
    flex-direction: column;
    border-radius: 12px;
    border-width: 2px;
  }
  .p-service__eq-item:last-child {
    width: 335px;
    flex-direction: column;
    border-radius: 12px;
    border-width: 2px;
    padding: 0;
  }
}
.p-service__eq-text {
  font-size: 24px;
  color: #333333;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-service__eq-text {
    font-size: 20px;
  }
}
.p-service__eq-item--red .p-service__eq-text {
  color: #FF6633;
}
.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: #FF6633;
}
.p-service__eq-operator:nth-child(2)::before {
  width: 52px;
  height: 16px;
}
.p-service__eq-operator:nth-child(2)::after {
  width: 16px;
  height: 52px;
}
.p-service__eq-operator:nth-child(4)::before {
  width: 52px;
  height: 16px;
  top: -3px;
}
.p-service__eq-operator:nth-child(4)::after {
  width: 52px;
  height: 16px;
  bottom: -3px;
}
@media (max-width: 768px) {
  .p-service__eq-operator:nth-child(2) {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .p-service__eq-operator:nth-child(2)::before {
    width: 28px;
    height: 9px;
  }
  .p-service__eq-operator:nth-child(2)::after {
    width: 9px;
    height: 28px;
  }
  .p-service__eq-operator:nth-child(4) {
    width: 28px;
    height: 28px;
    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: 28px;
    height: 9px;
  }
  .p-service__eq-operator:nth-child(4)::before {
    top: 17px;
  }
  .p-service__eq-operator:nth-child(4)::after {
    bottom: 17px;
  }
}
.p-service__benefits {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .p-service__benefits {
    flex-direction: column;
    margin-top: 180px;
    max-width: 338px;
    gap: 181px;
  }
}
.p-service__benefit-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@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: 65px 20px 15px 20px;
  width: 100%;
  max-width: 320px;
  height: 334px;
  position: relative;
  border-radius: 20px;
}
.p-service__benefit-content::before {
  content: "";
  position: absolute;
  width: 146px;
  height: 191px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  top: -72%;
  left: 36%;
  transform: translateY(50%);
}
@media (max-width: 768px) {
  .p-service__benefit-content {
    max-width: 100%;
    height: 281px;
    padding: 74px 15px 25px;
    background: #FFF;
  }
  .p-service__benefit-content::before {
    left: 129px;
    top: -240px;
    width: 153px;
    height: 200px;
    z-index: 1;
  }
}
.p-service__benefit-item:nth-of-type(1) .p-service__benefit-content::before {
  background-image: url("../assets/service_1.png");
}
.p-service__benefit-item:nth-of-type(2) .p-service__benefit-content::before {
  background-image: url("../assets/service_2.png");
}
@media (max-width: 768px) {
  .p-service__benefit-item:nth-of-type(2) .p-service__benefit-content::before {
    left: 129px;
  }
}
.p-service__benefit-item:nth-of-type(3) .p-service__benefit-content::before {
  background-image: url("../assets/service_3.png");
}
@media (max-width: 768px) {
  .p-service__benefit-item:nth-of-type(3) .p-service__benefit-content::before {
    left: 129px;
  }
}
.p-service__benefit-titles {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 12px;
}
.p-service__benefit-title {
  font-size: 40px;
  font-weight: 700;
  color: #333333;
  padding-left: 20px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-service__benefit-title {
    font-size: 32px;
    margin-bottom: 2px;
  }
}
.p-service__benefit-sub {
  color: #FF6633;
  font-size: 24px;
}
@media (max-width: 768px) {
  .p-service__benefit-sub {
    font-size: 20px;
  }
}
.p-service__benefit-num {
  position: absolute;
  top: -40px;
  left: 0;
  font-size: 63px;
  color: #FF6633;
  font-weight: 800;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-service__benefit-num {
    font-size: 63px;
    font-weight: 800;
    top: -30px;
  }
}
.p-service__benefit-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}
@media (max-width: 768px) {
  .p-service__benefit-desc {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.5px;
  }
  .p-service__benefit-item:first-child .p-service__benefit-desc {
    letter-spacing: -1.3px;
  }
    .p-service__benefit-item:last-child .p-service__benefit-content {
    height: 312px;
  }
}

/* ==========
  Custom CTA
  ========== */
.p-custom-cta {
  padding: 54px 0 61px;
  background: #FFF;
  text-align: center;
}
@media (max-width: 768px) {
  .p-custom-cta {
    padding: 36px 17px 40px;
  }
}
.p-custom-cta__content {
  margin-bottom: 33px;
}
@media (max-width: 768px) {
  .p-custom-cta__content {
    margin-bottom: 28px;
  }
}
.p-custom-cta__lead {
  font-size: 28px;
  color: #FF6633;
  font-weight: 800;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-custom-cta__lead {
    font-size: 20px;
  }
}
.p-custom-cta__btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  align-items: center;
}
@media (max-width: 768px) {
  .p-custom-cta__btns {
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
}
.p-custom-cta__btn-wrap {
  position: relative;
}

/* ==========
  Price
  ========== */
.p-price {
  padding: 56px 0 60px;
  background: #FFF0EB;
}
@media (max-width: 768px) {
  .p-price {
    padding: 34px 0 40px;
  }
}
.p-price .l-container {
  max-width: 1410px;
}
@media (max-width: 768px) {
  .p-price .l-container {
    padding: 0 20px;
  }
}
.p-price .c-section-title {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-price .c-section-title {
    margin-bottom: 11px;
  }
}
.p-price__lead {
  text-align: center;
  font-size: 20px;
  margin: 0 auto;
  margin-bottom: 37px;
  color: #333333;
}
@media (max-width: 768px) {
  .p-price__lead {
    font-size: 16px;
    margin:0 auto 38px;
    line-height: 1.5;
  }
}
.p-price__box {
  width: 710px;
  height: 185px;
  background-color: #FFF;
  border-radius: 10px;
  margin: 0 auto 59px;
  padding: 38px 74px 38px 84px;
  position: relative;
}
@media (max-width: 768px) {
  .p-price__box {
    display: flex;
    flex-direction: column-reverse; 
    align-items: center;
    width: 100%;
    height: 284px;
    padding: 20px 17px 18px;
    margin-bottom: 40px;
  }
}
.p-price__box-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .p-price__box-head {
    gap: 12px;
    margin: 0 auto;
  }
}
.p-price__box-title {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6633;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-price__box-title {
    font-size: 16px;
    width: 52px;
    height: 52px;
    margin-top: 0;
  }
}
.p-price__amount-wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  text-align: left;
  line-height: 1.2;
}
@media (max-width: 768px) {
.p-price__amount-wrap {
  width: 203px;
  margin: 0;
}
}
.p-price__amount-label {
  display: block;
  font-size: 20px;
  color: #333333;
  text-align: left;
}
@media (max-width: 768px) {
  .p-price__amount-label {
    font-size: 16px;
  }
}
.p-price__amount {
  font-size: 44px;
  color: #FF6633;
  font-weight: 800;
}
@media (max-width: 768px) {
  .p-price__amount {
    font-size: 28px;
    letter-spacing: 1px;
  }
}
.p-price__box-desc {
  text-align: left;
  font-size: 16px;
  color: #333333;
}
@media (max-width: 768px) {
  .p-price__box-desc {
    font-size: 12px;
    margin-top: 10px;
  }
}
.p-price__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .p-price__btns {
    gap: 15px;
  }
}
.p-price__btn-wrap {
  position: relative;
}
.p-price__icon {
  position: absolute;
  top: 15px;
  right: 74px;
  width: 118px;
}
@media (max-width: 768px) {
  .p-price__icon {
    position: static;
    width: 118px;
    height:149px;
    margin-bottom: 18px;
  }
}

/* ==========
  Step
  ========== */
.p-step {
  padding: 54px 0 41px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .p-step {
    padding: 33px 0;
  }
}
.p-step .c-section-title {
  margin-bottom: 30px;
}
.p-step__lead {
  text-align: center;
  font-size: 20px;
  color: #333333;
  margin-bottom: 82px;
}
@media (max-width: 768px) {
  .p-step .c-section-title {
    margin-bottom: 11px;
  }
  .p-step__lead {
    font-size: 16px;
    margin-bottom: 39px;
  }
}
.p-step__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 1040px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .p-step__list {
    flex-direction: column;
    align-items: center;
    gap: 30.5px;
    width: 100%;
  }
}
.p-step__item {
  position: relative;
  width: 323px;
}
@media (max-width: 768px) {
  .p-step__item {
    max-width: 100%;
  }
}
.p-step__head {
  width: 283px;
  color: #FF6633;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 2px solid #FF6633;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-step__head {
    width: 295px;
    font-size: 22px;
    padding: 12px 0 6px;
  }
}
.p-step__card {
  background: #FFF;
  height: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(1) .p-step__card {
    padding: 75px 0 0;
  }
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(2) .p-step__card {
    padding: 75px 0 0;
  }
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(3) .p-step__card {
    padding: 75px 0 0;
  }
}
.p-step__icon {
  background-color: #FDF2F3;
  width: 100%;
  height: 185px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .p-step__icon {
    margin-bottom: 0;
  }
}
.p-step__icon img {
  height: 220px;
  margin-top: -45px;
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(1) .p-step__icon {
    width: 295px;
    height: 160px;
    margin: 0 auto;
  }
  .p-step__item:nth-of-type(1) .p-step__icon img {
    width: 222px;
    margin-top: -100px;
  }
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(2) .p-step__icon {
    width: 295px;
    height: 160px;
    margin: 0 auto;
  }
  .p-step__item:nth-of-type(2) .p-step__icon img {
    width: 200px;
    margin-top: -100px;
  }
}
@media (max-width: 768px) {
  .p-step__item:nth-of-type(3) .p-step__icon {
    width: 295px;
    height: 160px;
    margin: 0 auto;
  }
  .p-step__item:nth-of-type(3) .p-step__icon img {
    width: 114px;
    margin-top: -100px;
  }
}
.p-step__title {
  display: flex;
  height: 100px;
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  line-height: 1.4;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-step__title {
    font-size: 20px;
    font-weight: bold;
    padding: 9px 0 12px;
    margin-bottom: 5px;
    height: auto;
  }
}
.p-step__text {
  width: 283px;
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
  text-align: left;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-step__text {
    font-size: 16px;
    width: 295px;
    line-height: 1.5;
  }
  .p-step__item:nth-child(2) .p-step__text{
    letter-spacing: -0.5px;
  }
}

/* ==========
  FAQ
  ========== */
.p-faq {
  padding: 54px 0 60px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .p-faq {
    padding: 53px 0 40px;
  }
}
.p-faq .l-container {
  max-width: 710px;
}
@media (max-width: 768px) {
  .p-faq .l-container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .p-faq .c-section-title {
    font-size: 28px;
    margin-bottom: 0;
  }
}
.p-faq__list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .p-faq__list {
    margin-top: 34px;
    gap: 20px;
  }
}
.p-faq__item {
  width: 100%;
  background-color: #FFF;
  border-radius: 16px;
  border: #999999 1px solid;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .p-faq__item {
    border-radius: 12px;
  }
}
.p-faq__head {
  width: 100%;
  height: 96px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  background: none;
  cursor: pointer;
  text-align: left;
  border: none;
  transition: background-color 0.3s;
  margin-left: 28px;
}
@media (max-width: 768px) {
  .p-faq__head {
    margin-left: 0;
    padding: 18px 20px;
    gap: 13px;
    height: auto;
  }
}
.p-faq__head::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: auto;
  right: 29px;
  width: 20px;
  height: 20px;
  margin: 0;
  border-top: 4px solid #FF6633;
  border-right: 4px solid #FF6633;
  transform: rotate(135deg);
  transition: transform 0.3s;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .p-faq__head::after {
    right: 20px;
  }
}
.p-faq__head.is-open::after {
  transform: rotate(315deg);
}
.p-faq__head:hover {
  background-color: #fcfcfc;
}
.p-faq__q-icon {
  min-width: 40px;
  height: 40px;
  background-color: #FF6633;
  border-radius: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 24px;
  color: #FFF;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.p-faq__question {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 20px;
  color: #333333;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-faq__question {
    font-size: 16px;
    text-align: left;
  }
}
.p-faq__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background-color: #FFF0EB;
  border-top: #999999 1px solid;
  box-sizing: border-box;
}
.p-faq__content {
  display: flex;
  gap: 20px;
  padding: 20px 20px 16px 40px;
}
@media (max-width: 768px) {
  .p-faq__content {
    padding: 20px 20px 20px 32px;
    gap: 13px;
  }
}
.p-faq__a-icon {
  min-width: 28px;
  height: 28px;
  background-color: #333333;
  border-radius: 14px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 18px;
  color: #FFF;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-faq__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}
@media (max-width: 768px) {
  .p-faq__text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ==========
  Contact
  ========== */
.p-contact {
  padding: 54px 0 57px;
  background: #F1F1F1;
}
@media (max-width: 768px) {
  .p-contact {
    position: relative;
    overflow: hidden;
    padding: 33px 0 0;
  }
}
.p-contact .l-container {
  max-width: 710px;
}
@media (max-width: 768px) {
  .p-contact .c-section-title {
    font-size: 28px;
    margin-bottom: 0;
  }
}
.p-contact__head {
  text-align: center;
  margin-bottom: 34px;
}
.p-contact__lead {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.32px;
  color: #333;
}
@media (max-width: 768px) {
  .p-contact__lead {
    margin: 11px 20px 0;
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-contact__box {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-contact__box {
    padding: 0 40px 37px;
  }
}
.p-contact__box::before {
  display: none;
}
.p-contact__form input::placeholder ,.p-contact__form textarea::placeholder {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #999A9A;
  font-size: 16px;
  font-weight: 400;
}
.p-contact__item {
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .p-contact__item {
    margin-bottom: 26px;
  }
}
.p-contact__item:last-of-type {
  margin-bottom: 50px;
}
.p-contact__label {
  display: flex;
  font-size: 16px;
  font-weight: normal;
  color: #333333;
  align-items: center;
  margin-bottom: 9px;
}
.p-contact__label .u-text-required {
  background-color: #FF6633;
  color: #FFF;
  font-size: 12px;
  font-weight: 300;
  margin-left: 7px;
  padding: 0 5px;
  vertical-align: middle;
}
.p-contact__label .u-text-optional {
  background-color: #999999;
  color: #FFF;
  font-size: 12px;
  margin-left: 7px;
  padding: 0 5px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .p-contact__label {
    font-size: 16px;
    margin-bottom: 7px;
  }
  .p-contact__label .u-text-required {
    font-size: 12px;
    margin-left: 7px;
    vertical-align: top;
  }
}
.p-contact__input, .p-contact__textarea {
  width: 100%;
  border: 1px solid #999999;
  border-radius: 3px;
  padding: 16px 16px;
  font-size: 16px;
  background-color: #FFF;
  outline: none;
}
.p-contact__radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 27px;
}
@media (max-width: 768px) {
  .p-contact__radio-group {
    flex-direction: column;
    height: 100%;
    gap: 5px;
    align-items: flex-start;
    line-height: 1.4;
  }
}
.p-contact__radio-group .p-contact__label {
  font-size: 20px;
  margin-bottom: 0;
}
.p-contact__input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  margin-right: 7px;
  padding: 0;
}
.p-contact__input[type="radio"]:checked{
  border: 7px solid #FF6633;
}
.p-contact__input:focus, .p-contact__textarea:focus {
  border-color: #FF6633;
  box-shadow: 0 0 5px rgba(255, 102, 51, 0.2);
}
@media (max-width: 768px) {
  .p-contact__input, .p-contact__textarea {
    min-height: 52px;
    padding: 15px 16px;
    border-radius: 4px;
    font-size: 16px;
  }
  .p-contact__input[type="radio"] ,.p-contact__input[type="checkbox"] {
    min-height: 20px;
  }
}
.p-contact__textarea {
  height: 104px;
  resize: vertical;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  .p-contact__textarea {
    height: 104px;
  }
}
.p-contact__policy {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.p-contact__input[type="checkbox"] {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  margin-right: 7px;
  padding: 0;
  accent-color: #fa3e00;
}
.p-contact__submit {
  margin-top: 50px;
  text-align: center;
}
.p-contact__submit .p-btn {
  font-family: "M PLUS Rounded 1c", sans-serif;
  display: block;
  min-width: 350px;
  padding: 14px 0;
  margin: 0 auto 38px;
  background: #FF6633;
  color: #FFF;
  border: none;
  border-radius: 31px;
  font-size: 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.p-contact__submit .p-btn:hover {
  background: #FF6633B3;
}
.p-contact__note {
  font-size: 18px;
  color: #333333;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.72px;
}
@media (max-width: 768px) {
  .p-contact__submit {
    margin-top: 19px;
  }
  .p-contact__submit .p-btn {
    font-size: 22px;
    padding: 10px 0;
    border-radius: 30px;
    min-width: 260px;
    height: 60px;
    margin-bottom: 36px;
  }
  .p-contact__note {
    line-height: 1.4;
  }
}

/* ==========
  Footer
  ========== */
.l-footer {
  background-color: #FFF;
  color: #333333;
  padding: 28px 0 20px;
}
@media (max-width: 1050px) {
  .l-footer {
    padding: 40px 40px 18px;
  }
}
.l-footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1050px) {
  .l-footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.l-footer__logo-box {
  background-color: #FFF;
  border-radius: 24px;
  width: 490px;
  text-align: center;
}
@media (max-width: 1050px) {
  .l-footer__logo-box {
    width: 100%;
    padding-left: 0;
  }
}
.l-footer__logo {
  max-width: 314px;
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1050px) {
  .l-footer__logo {
    width: 200px;
    margin: 0 auto;
  }
}
.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;
}
@media (max-width: 1050px) {
  .l-footer__nav-area {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-right: 0;
  }
}
.l-footer__nav {
  margin-bottom: 13px;
}
.l-footer__nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  justify-content: flex-end;
}
@media (max-width: 1050px) {
  .l-footer__nav {
    margin-bottom: 0;
  }
  .l-footer__nav ul {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
  .l-footer__nav ul li {
    border-top: #F2F2F2 1px solid;
    padding: 7px 0;
  }
}
.l-footer__nav a {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}
@media (max-width: 1050px) {
  .l-footer__nav a {
    font-size: 14px;
  }
}
.l-footer__external {
  margin-bottom: 13px;
}
@media (max-width: 1050px) {
  .l-footer__external {
    margin-bottom: 31.4px;
  }
}
.l-footer__external a {
  font-size: 14px;
  color: #333333;
  display: flex;
  justify-content: flex-end;
  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: flex-start;
    padding: 11px 0;
    border-top: #F2F2F2 1px solid;
    border-bottom: #F2F2F2 1px solid;
    margin-bottom: 17px;
  }
}
.l-footer__copyright {
  text-align: right;
}
.l-footer__copyright p {
  font-size: 12px;
}
@media (max-width: 1050px) {
  .l-footer__copyright {
    width: 100%;
    text-align: center;
  }
  .l-footer__copyright p {
    font-size: 10px;
  }
}

/* ==========
  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: #FFFFFF;
  width: 792px;
  max-height: 93vh;
  padding: 54px 41px 55px;
  border-radius: 40px;
  overflow-y: auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-modal__content {
    padding: 21px 20px 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 393px;
    min-width: 335px;
    border-radius: 12px;
    margin: 0 20px;
  }
}
.c-modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #CCCCCC;
}
.c-modal__header {
  text-align: center;
  margin-bottom: 38px;
}
@media (max-width: 768px) {
  .c-modal__header {
    margin: 34px 0 0;
  }
}
.c-modal__title {
  font-size: 28px;
  font-weight: 700;
  color: #FF6633;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  .c-modal__title {
    font-size: 24px;
    margin-bottom: 11px;
  }
}
.c-modal__lead {
  font-size: 20px;
  line-height: 1.6;
  color: #333333;
  font-weight: 500;
}
@media (max-width: 768px) {
  .c-modal__lead {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1.06px;
  }
}
.c-modal__form {
  background: #FFF;
}
@media (max-width: 768px) {
  .c-modal__form {
    padding: 34px 0 0;
  }
}
.c-modal__item {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .c-modal__item {
    margin-bottom: 26px;
  }
}
.c-modal__label {
  display: flex;
  font-size: 16px;
  margin-bottom: 9px;
  align-items: center;
}
.c-modal__label .u-text-required {
  background-color: #FF6633;
  color: #FFF;
  font-size: 12px;
  font-weight: 300;
  margin-left: 7px;
  padding: 0 5px;
  vertical-align: middle;
}
.c-modal__label .u-text-optional {
  background-color: #999999;
  color: #FFF;
  font-size: 12px;
  margin-left: 7px;
  padding: 0 5px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .c-modal__label {
    font-size: 16px;
    margin-bottom: 9px;
  }
  .c-modal__label .u-text-required {
    font-size: 12px;
    margin-left: 7px;
  }
}
.c-modal__input::placeholder ,.c-modal__form textarea::placeholder {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #999A9A;
  font-size: 16px;
  font-weight: 400;
}
.c-modal__input, .c-modal__textarea {
  width: 100%;
  border: 1px solid #999999;
  border-radius: 3px;
  padding: 16px 16px;
  font-size: 16px;
  background-color: #FFF;
  outline: none;
}
.c-modal__input__radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
  height: 27px;
}
@media (max-width: 768px) {
  .c-modal__input__radio-group {
    flex-direction: column;
    height: 100%;
    gap: 5px;
    align-items: flex-start;
    line-height: 1.4;
  }
  .c-modal__input__radio-group .c-modal__label {
    margin-bottom: 0;
  }
}
.c-modal__input__radio-group .c-modal__label {
  font-size: 20px;
}
.c-modal__input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  margin-right: 7px;
  padding: 0;
}
.c-modal__input[type="radio"]:checked{
  border: 7px solid #FF6633;
}
.c-modal__input:focus, .c-modal__textarea:focus {
  border-color: #FF6633;
}
@media (max-width: 768px) {
  .c-modal__input, .c-modal__textarea {
    padding: 16px;
    font-size: 16px;
    border-radius: 4px;
    height: 52px;
  }
}
.c-modal__textarea {
  height: 104px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .c-modal__textarea {
    height: 104px;
    margin-bottom: 13px;
  }
}
.c-modal__policy {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.c-modal__input[type="checkbox"] {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  margin-right: 7px;
  padding: 0;
  accent-color: #fa3e00;
}
.c-modal__submit {
  margin-top: 50px;
  text-align: center;
}
.c-modal__submit .p-btn {
  font-family: "M PLUS Rounded 1c", sans-serif;
  display: block;
  min-width: 350px;
  padding: 14px 0;
  margin: 0 auto;
  background: #FF6633;
  color: #FFF;
  border: none;
  border-radius: 31px;
  font-size: 22px;
  font-weight: 600;
  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: 14px 0;
    border-radius: 30px;
    font-size: 22px;
    min-width: 260px;
  }
}

/* ==========
  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;
}
@media (max-width: 768px) {
.p-contact__policy,
.c-modal__policy {
  margin-bottom: 30px;
}
}
.p-contact__policy a,
.c-modal__policy a {
  color: #FF6633;
  text-decoration: underline;
  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 */
