html {
  font-size: 10px;
}

body {
  background: #fff;
  color: #483400;
  font-family: "hiragino-kaku-gothic-pron", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", "YuGothic", "Meiryo", "Noto Sans JP", "Noto Sans CJK JP", sans-serif;
  font-size: max(15px, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

th,
td {
  padding: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*
 * footer
 * -------------------------------------------------------------
 */

.footer {
  background: #FFBF1F;
}

.f_container {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1094px;
  padding: 40px 40px 30px;
}

.f_logo {
  width: 100px;
}

.f_logo a img {
  border-radius: 10%;
  height: 60px;
  width: 60px;
}

.f_nav_list {
  display: flex;
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: 600;
  gap: 20px;
}

.copyright {
  align-items: center;
  background: #151515;
  color: #fff;
  display: flex;
  font-size: 1.4rem;
  height: 50px;
  justify-content: center;
}

/*
 * header
 * -------------------------------------------------------------
 */

.header {
  background: rgba(255, 255, 255, 0.9);
  background: #fff;
  height: 7.5rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.header__cta {
  flex: 1;
  margin-left: auto;
  margin-right: 5rem;
  min-width: 23.8rem;
  width: 100%;
}

.h_container {
  align-items: center;
  display: flex;
  height: 100%;
  margin: 0 auto;
  max-width: 136rem;
  padding: 0 4rem;
}

.h_logo {
  display: flex;
  gap: 10px;
  width: 73%;
}

.h_logo a img {
  height: 36px;
  width: 120px;
}

.h_btn_list {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  width: 25px;
}

.h_btn {
  height: 30px;
  width: 50px;
}

.h_login_btn {
  background: url(../assets/img/h-login-btn.svg) no-repeat;
  background-size: 100%;
}

.h_signup_btn {
  background: url(../assets/img/h-signup-btn.svg) no-repeat;
  background-size: 100%;
}

.nav_btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 32px;
  justify-content: center;
  position: relative;
  width: 25px;
  z-index: 200;
}

.nav_btn span {
  background: #ffbf1f;
  border-radius: 20px;
  display: inline-block;
  height: 5px;
  transition: 0.3s;
  width: 100%;
}

.nav_btn span:nth-child(2) {
  margin: 4px 0;
}

.nav_btn.active span:nth-child(1) {
  background: #000;
  border-radius: 0;
  border-radius: initial;
  height: 8px;
  transform: translateY(11.5px) rotate(-45deg);
  transition: 0.3s;
}

.nav_btn.active span:nth-child(2) {
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s;
}

.nav_btn.active span:nth-child(3) {
  background: #000;
  border-radius: 0;
  border-radius: initial;
  height: 8px;
  transform: translateY(-10px) rotate(45deg);
  transition: 0.3s;
}

.nav_search-icon {
  cursor: pointer;
  display: inline-block;
  height: 25px;
  width: 25px;
}

.h_nav {
  background: #FFBF1F;
  height: 90vh;
  position: fixed;
  right: -25%;
  top: 0;
  transition: all 0.5s;
  visibility: hidden;
  width: 28%;
  z-index: 100;
}

.h_nav.active {
  background: #FFBF1F;
  height: 90vh;
  overflow-y: scroll;
  position: fixed;
  right: -1%;
  top: 0;
  transition: all 0.5s;
  visibility: visible;
  z-index: 100;
}

.h_nav_list {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 0 20px;
  width: 100%;
}

.h_nav_list li {
  line-height: 1.4;
  width: 100%;
}

.h_nav_list li:nth-child(3) {
  margin: 0 0;
}

.h_nav_list li a {
  font-size: 3rem;
  font-weight: 700;
}

/*
 * l-bgIvy
 * -------------------------------------------------------------
 */

.l-bgIvy {
  background: #fcf7ec;
}

/*
 * l-bgOrg
 * -------------------------------------------------------------
 */

.l-bgOrg {
  background: #FFBF1F;
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
  padding: 0 6rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  overflow: hidden;
  padding-top: 7.5rem;
}

/*
 * l-section
 * -------------------------------------------------------------
 */

.l-section {
  padding: 10rem 0;
}

/*
 * c-cta
 * -------------------------------------------------------------
 */

.c-cta {
  align-items: center;
  background: #ff006f;
  border-radius: 8rem;
  color: #fff;
  display: flex;
  font-size: 3rem;
  font-weight: 600;
  gap: 5.4rem;
  letter-spacing: 0.08em;
  max-width: 48rem;
  padding: 1.5rem;
}

.c-cta::before {
  background: url(../assets/img/lp/btn.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 4.2rem;
  width: 4.2rem;
}

.c-cta:hover {
  opacity: 0.5;
  transform: translateY(0.5rem);
}

.c-cta.--sm {
  font-size: 1.8rem;
  max-width: 23.8rem;
}

.c-cta.--sm {
  gap: 1rem;
  padding: 1rem;
}

.c-cta.--sm::before {
  height: 2.4rem;
  width: 2.4rem;
}

/*
 * c-secTtl
 * -------------------------------------------------------------
 */

.c-secTtl {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-left: 3rem;
  position: relative;
}

.c-secTtl::before {
  background: #483400;
  border-radius: 3rem;
  content: "";
  display: block;
  height: 10rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem;
}

.c-secTtl__sm {
  display: block;
  font-size: 2.4rem;
}

/*
 * case
 * -------------------------------------------------------------
 */

.case__list {
  grid-gap: 6rem 8rem;
  display: grid;
  gap: 6rem 8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5rem;
}

.case__head {
  display: flex;
  font-weight: 600;
  gap: 3rem;
}

.case__img {
  border-radius: 1rem;
  min-width: 10.6rem;
  overflow: hidden;
  width: 10.6rem;
}

.case__ttl {
  font-size: 2.4rem;
  line-height: 1.6666666667;
}

.case__meta {
  margin-top: 1rem;
}

.case__body {
  background: #fcf7ec;
  border-radius: 2rem;
  margin-top: 3.2rem;
  padding: 3.2rem 4rem;
  position: relative;
}

.case__body::before {
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #fcf7ec;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  display: block;
  height: 1.2rem;
  left: 5rem;
  position: absolute;
  top: -1.2rem;
  width: 1.4rem;
}

.case__text {
  left: 4rem;
  line-height: 2;
}

/*
 * contact
 * -------------------------------------------------------------
 */

.contact__secTtl {
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.contact__text {
  color: #4D4D4D;
  letter-spacing: 0.05em;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 3rem;
  text-align: center;
}

.contact__body {
  margin: 4rem auto 0;
  max-width: 70rem;
}

/*
 * flow
 * -------------------------------------------------------------
 */

.flow__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 5rem;
}

.flow__item {
  align-items: flex-start;
  background: #fff;
  border-radius: 2rem;
  display: flex;
  padding: 3.6rem 3.6rem 3.6rem 0;
  position: relative;
}

.flow__item:not(:last-child)::after {
  background: #FFBF1F;
  bottom: -5rem;
  content: "";
  display: block;
  height: 5rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 3rem;
}

.flow__num {
  align-items: center;
  color: #FFBF1F;
  display: flex;
  font-size: 2rem;
  gap: 1rem;
  min-width: 8rem;
  width: 8rem;
}

.flow__num::before {
  background: #ffbf1f;
  content: "";
  display: block;
  height: 1px;
  width: 2rem;
}

.flow__cont {
  flex: 1;
}

.flow__ttl {
  font-size: 2.4rem;
  font-weight: 600;
}

.flow__text {
  line-height: 2;
  margin-top: 1rem;
}

/*
 * form
 * -------------------------------------------------------------
 */

.form__item:not(:nth-child(1)) {
  margin-top: 2rem;
}

.form__label {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.form__req {
  background: #ffbf1f;
  border-radius: 0.3rem;
  color: #fff;
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 1rem;
  padding: 0.3rem 0.7rem;
  text-align: center;
}

.form__input {
  background: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 0.5rem;
  margin-top: 1rem;
  padding: 1.3rem;
  width: 100%;
}

.form__select {
  position: relative;
}

.form__select::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #483400;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 0.5rem;
  position: absolute;
  right: 2rem;
  top: calc(50% + 0.5rem);
  transform: translateY(-50%);
  width: 0.6rem;
}

.form__btn {
  background: #ffbf1f;
  border-radius: 3.2rem;
  color: #fff;
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 5rem auto 0;
  max-width: 29.6rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.2s;
  width: 100%;
}

.form__btn:hover {
  opacity: 0.5;
  transform: translateY(0.5rem);
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv {
  background: #fcf7ec;
  padding: 8rem 0 0;
  position: relative;
}

.fv::after {
  background: #fcf7ec;
  border-radius: 50%;
  bottom: -10rem;
  content: "";
  display: block;
  height: 37rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 200rem;
}

.fv__inner {
  display: flex;
  gap: 8rem;
  justify-content: space-between;
  max-width: 126rem;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.fv__left {
  flex: 1;
  max-width: 48rem;
  min-width: 48rem;
}

.fv__ttl {
  align-items: center;
  background: #483400;
  border-radius: 3.5rem;
  color: #fff;
  display: flex;
  font-size: 2.8rem;
  font-weight: 600;
  height: 7rem;
  justify-content: center;
  letter-spacing: 0.03em;
  padding: 0 3.8rem;
  position: relative;
  transform: rotate(-3deg);
}

.fv__ttl span {
  color: #FFBF1F;
}

.fv__ttl::after {
  background: url(../assets/img/lp/sankaku.webp) no-repeat center/100%;
  bottom: -1.4rem;
  content: "";
  display: block;
  height: 1.6rem;
  left: 26.6rem;
  position: absolute;
  width: 1.5rem;
}

.fv__text {
  margin-top: 4rem;
}

.fv__chips {
  margin-top: 5.2rem;
}

.fv__cta {
  margin-top: 5rem;
}

.fv__right {
  max-width: 63rem;
  position: relative;
  top: -1rem;
}

.hero {
  background: #F4EBDD;
  /* 下側にゆとり（曲線の高さ） */
  overflow: hidden;
  /* 上の薄いベージュ */
  padding: 80px 0 160px;
  position: relative;
}

/*
 * intro
 * -------------------------------------------------------------
 */

.intro {
  padding: 18rem 0 14rem;
}

.intor__inner {
  position: relative;
}

.intro__list {
  grid-gap: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}

.intro__item {
  background: #fff;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 2.2rem;
  text-align: center;
}

.intro__item span {
  font-size: 2.4rem;
}

.intro__img {
  max-width: 25.5rem;
  position: absolute;
  right: 6rem;
  top: -3.1rem;
  width: 100%;
}

/*
 * plan
 * -------------------------------------------------------------
 */

.plan {
  padding-bottom: 10rem;
}

.plan__items {
  grid-gap: 4.5rem;
  display: grid;
  gap: 4.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
}

.plan__item {
  position: relative;
}

.plan__head {
  align-items: center;
  border-radius: 1rem;
  display: grid;
  height: 8.4rem;
  justify-items: center;
  place-items: center;
  position: relative;
}

.plan__head::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  bottom: -1rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 1rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1.2rem;
}

.plan__ttl {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
}

.plan__item:nth-child(1) .plan__head,
.plan__item:nth-child(1) .plan__head::after {
  background: #ffbf1f;
}

.plan__item:nth-child(2) .plan__head,
.plan__item:nth-child(2) .plan__head::after {
  background: #FF9D00;
}

.plan__item:nth-child(3) .plan__head,
.plan__item:nth-child(3) .plan__head::after {
  background: #FF7600;
}

.plan__label {
  background: #fff;
  border: 0.3rem solid #FF7600;
  border-radius: 3.3rem;
  color: #FF7600;
  display: block;
  font-weight: 600;
  left: 50%;
  letter-spacing: 0;
  max-width: 31.8rem;
  padding: 1.1rem 1rem;
  position: absolute;
  text-align: center;
  top: -4.5rem;
  transform: translateX(-50%);
  width: 100%;
  width: 100%;
  z-index: 1;
}

.plan__label span {
  font-size: 2.4rem;
}

.plan__body {
  background: #fff;
  border-radius: 2rem;
  margin-top: 3rem;
  padding: 6.4rem 2rem 4rem;
}

.plan__item:nth-child(3) .plan__body {
  padding-top: 4rem;
}

.plan__price {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.plan__item:nth-child(1) .plan__price {
  color: #FFBF1F;
}

.plan__item:nth-child(2) .plan__price {
  color: #FF9D00;
}

.plan__item:nth-child(3) .plan__price {
  color: #FF7602;
}

.plan__price .price {
  font-size: 3.6rem;
  letter-spacing: 0;
}

.plan__price .yen {
  font-size: 2rem;
}

.plan__price .tax {
  font-size: 1.2rem;
}

.plan__price .text {
  background: #ff7602;
  border-radius: 3.3rem;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem auto;
  padding: 0.7rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
}

.price__tag {
  display: block;
  margin-top: 1rem;
  text-align: center;
}

.plan__details {
  margin-top: 6.4rem;
}

.plan__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.plan__listItem {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
}

.plan__listItem::before {
  content: "";
  display: block;
  height: 2rem;
  margin-top: 0.1rem;
  min-width: 2rem;
  width: 2rem;
}

.plan__item:nth-child(1) .plan__listItem::before {
  background: url(../assets/img/lp/check1.webp) no-repeat center/100%;
}

.plan__item:nth-child(2) .plan__listItem::before {
  background: url(../assets/img/lp/check2.webp) no-repeat center/100%;
}

.plan__item:nth-child(3) .plan__listItem::before {
  background: url(../assets/img/lp/check3.webp) no-repeat center/100%;
}

.plan__listCont {
  color: #4D4D4D;
  font-weight: 600;
  line-height: 1.5;
}

.plan__listCont span {
  display: block;
  font-weight: 300;
}

.plan__campaign {
  background: #fffdf8;
  border: 0.4rem solid #FFBF1E;
  border-radius: 2rem;
  margin-top: 4.5rem;
  overflow: hidden;
  padding: 6rem;
  position: relative;
}

.plan__campaign .label {
  background: #ffbf1e;
  border-radius: 0 0 2rem 0;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  left: 0;
  padding: 1.8rem 3rem;
  position: absolute;
  text-align: center;
  top: 0;
  width: -moz-fit-content;
  width: fit-content;
}

.plan__campaignBody {
  font-weight: 600;
  position: relative;
  text-align: center;
  z-index: 1;
}

.plan__campaign .head {
  align-items: center;
  background: #483400;
  border-radius: 2.6rem;
  color: #fff;
  display: grid;
  font-size: 2.4rem;
  height: 5.2rem;
  justify-items: center;
  margin: 0 auto;
  padding-top: 0.3rem;
  place-items: center;
  position: relative;
  width: 29rem;
}

.plan__campaign .head::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #483400;
  bottom: -1rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 1rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 1.2rem;
}

.plan__campaign .ttl {
  font-size: 3rem;
  line-height: 1.3333333333;
  margin-top: 3rem;
}

.plan__campaign .text {
  font-size: 2rem;
  margin-top: 1.6rem;
}

.plan__campaignImgs {
  bottom: -0.4rem;
  display: flex;
  justify-content: space-between;
  left: 50%;
  max-width: 96rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.plan__campaignImg {
  max-width: 15.9rem;
}

.plan__campaignImg:nth-child(2) {
  position: relative;
  top: 0.2rem;
}

.plan__btn {
  margin: 5rem auto 0;
}

/*
 * reason
 * -------------------------------------------------------------
 */

.reason {
  border-radius: 5rem;
  margin-top: -4rem;
  padding: 10rem 0;
  position: relative;
}

.reason__list {
  display: flex;
  flex-direction: column;
  gap: 9rem;
  margin-top: 3.5rem;
}

.reason__item {
  align-items: center;
  display: flex;
  gap: 8rem;
  justify-content: center;
}

.reason__item.--reverse {
  flex-direction: row-reverse;
}

.reason__desc {
  flex: 1;
  max-width: 50rem;
}

.reason__num {
  color: #FFBF1F;
  font-size: 1.4rem;
  font-weight: 600;
}

.reason__ttl {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.reason__text {
  line-height: 2;
  margin-top: 2.5rem;
}

.reason__img {
  border-radius: 3rem;
  max-width: 50rem;
  overflow: hidden;
}

/*
 * service
 * -------------------------------------------------------------
 */

.service {
  margin-top: -6rem;
  padding: 15rem 0 10rem;
}

.service__cards {
  grid-gap: 3rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5.8rem;
}

.service__card {
  align-items: center;
  background: #fff;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 1.5rem 1.5rem;
}

.service__ttl {
  flex: 1;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3333333333;
  text-align: center;
}

.service__ttl span {
  display: block;
  font-size: 2.2rem;
}

.service__img {
  max-width: 25.6rem;
}

.service__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1.5;
}

.service__item {
  align-items: flex-start;
  background: #fcf7ec;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  font-size: max(12px, 1.6rem);
  height: 9.4rem;
  justify-content: center;
  padding: 1.5rem;
}

.service__listTtl {
  font-weight: 600;
}

/*
 * u-bold
 * -------------------------------------------------------------
 */

.u-bold {
  font-weight: 600;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

@media screen and (min-width: 1025px) {

  a[href^="tel:"] {
    pointer-events: none;
  }

}

@media screen and (max-width: 1250px) {

  html {
    font-size: 0.8vw;
  }

  .l-inner {
    padding: 0 3rem;
  }

  .intro__img {
    right: 3rem;
  }

}

@media screen and (max-width: 1024px) {

  .h_nav {
    right: -40%;
    width: 40%;
  }

}

@media screen and (max-width: 768px) {

  html {
    font-size: 10px;
  }

  body {
    font-size: 1.4rem;
  }

  .f_container {
    max-width: 50rem;
    padding: 4rem 3rem;
  }

  .f_logo {
    width: 6rem;
  }

  .f_nav_list {
    font-size: 1.5rem;
    gap: 2rem;
  }

  .header {
    height: max(5.4rem, 10.4vw);
  }

  .header__cta {
    margin-right: 1.5rem;
    min-width: 14.2rem;
  }

  .h_container {
    padding: 0 2rem;
  }

  .h_nav {
    max-width: 32rem;
    right: -85%;
    width: 85%;
  }

  .h_nav_list li a {
    font-size: 2rem;
  }

  .l-inner {
    max-width: 50rem;
  }

  .l-main {
    padding-top: 5.4rem;
  }

  .l-section {
    padding: 7rem 0;
  }

  .c-cta {
    border-radius: 3.6rem;
    font-size: 2.2rem;
    gap: 1.2rem;
    max-width: 31.5rem;
  }

  .c-cta::before {
    height: 3.2rem;
    width: 3.2rem;
  }

  .c-cta.--sm {
    font-size: 1.4rem;
    max-width: 14.2rem;
  }

  .c-cta.--sm {
    padding: 0.8rem;
  }

  .c-cta.--sm::before {
    height: 1.4rem;
    width: 1.4rem;
  }

  .c-secTtl {
    font-size: 2.8rem;
    line-height: 1.4285714286;
    max-width: 31.5rem;
    padding-left: 2rem;
  }

  .c-secTtl::before {
    height: 100%;
    width: 0.3rem;
  }

  .case__list {
    gap: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .case__head {
    align-items: center;
    gap: 2rem;
  }

  .case__img {
    min-width: 8.8rem;
    width: 8.8rem;
  }

  .case__ttl {
    font-size: 1.8rem;
    line-height: 1.3333333333;
  }

  .case__meta {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-top: 0.6rem;
  }

  .case__body {
    padding: 2rem;
  }

  .contact {
    padding: 8rem 0 7rem;
  }

  .contact__secTtl {
    font-size: 3rem;
    line-height: 1.3333333333;
  }

  .contact__text {
    field-sizing: 1.6rem;
    line-height: 1.75;
  }

  .contact__body {
    margin-top: 6rem;
  }

  .flow__list {
    gap: 4rem;
  }

  .flow__item {
    border-radius: 1rem;
    padding: 3rem 2rem 3rem 0;
  }

  .flow__item:not(:last-child)::after {
    bottom: -4rem;
    height: 4rem;
    width: 3rem;
  }

  .flow__num {
    gap: 0.5rem;
    min-width: 6.5rem;
    position: relative;
    top: 0.5rem;
    width: 6.5rem;
  }

  .flow__ttl {
    font-size: 2rem;
    line-height: 1.4;
  }

  .flow__text {
    line-height: 1.7142857143;
    margin-top: 1.5rem;
  }

  .fv {
    padding-top: 8vw;
    padding-top: 10.5vw;
  }

  .fv::after {
    bottom: -7rem;
    bottom: -16vw;
    height: 25rem;
    height: 66.67vw;
    width: 46rem;
    width: 122.67vw;
  }

  .fv__inner {
    flex-direction: column;
    gap: 5.33vw;
    max-width: 100%;
    padding: 0 8vw;
  }

  .fv__left {
    display: contents;
  }

  .fv__ttl {
    border-radius: 9.33vw;
    font-size: 5vw;
    height: 12.27vw;
    order: 1;
    padding: 0 1.8rem;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .fv__ttl {
    font-size: 5vw;
    padding: 0 3.5vw;
  }

  .fv__ttl::after {
    bottom: -2.6vw;
    height: 2.93vw;
    left: 46.93vw;
    width: 2.67vw;
  }

  .fv__text {
    margin-top: 2.67vw;
    order: 2;
  }

  .fv__chips {
    margin-top: 2.67vw;
    order: 3;
  }

  .fv__cta {
    border-radius: 9.6vw;
    font-size: 5.87vw;
    margin-top: 2.67vw;
    max-width: 100%;
    order: 5;
    padding: 4vw;
  }

  .fv__cta::before {
    height: 8.33vw;
    width: 8.33vw;
  }

  .fv__right {
    order: 4;
    top: auto;
  }

  .intro {
    padding: max(12rem, 32vw) 0 10rem;
  }

  .intro__list {
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 21.8rem;
  }

  .intro__item {
    font-size: 1.8rem;
    line-height: 1.6666666667;
    padding: 1.5rem;
  }

  .intro__item span {
    font-size: 2.2rem;
  }

  .intro__img {
    left: 50%;
    right: auto;
    top: 18rem;
    transform: translateX(-50%);
  }

  .plan {
    padding-bottom: 7rem;
  }

  .plan__items {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .plan__item:nth-child(3) {
    margin-top: 5.2rem;
  }

  .plan__head {
    border-radius: 0.5rem;
    height: 5.6rem;
    margin: 0 auto;
    width: calc(100% - 4rem);
  }

  .plan__head::after {
    display: none;
  }

  .plan__label {
    font-size: 1.6rem;
    top: -5.2rem;
  }

  .plan__body {
    margin-top: -3rem;
    padding: 5.8rem 2rem 4rem;
  }

  .plan__item:nth-child(3) .plan__body {
    padding-top: 5.8rem;
  }

  .price__tag {
    font-size: 1.6rem;
  }

  .plan__details {
    margin-top: 3rem;
  }

  .plan__list {
    gap: 2rem;
  }

  .plan__listCont {
    font-size: 1.6rem;
  }

  .plan__listCont span.inlineblock {
    display: inline-block;
  }

  .plan__campaign {
    border-radius: 1rem;
    margin-top: 2rem;
    padding: 9rem 1.6rem 12rem;
  }

  .plan__campaign .head {
    width: 27rem;
  }

  .plan__campaign .ttl {
    font-size: 2.4rem;
    line-height: 1.4166666667;
    margin-top: 4rem;
  }

  .plan__campaign .text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 3rem;
  }

  .plan__campaignImgs {
    bottom: -0.2rem;
    gap: 2rem;
    justify-content: center;
  }

  .plan__campaignImg {
    max-width: 7.8rem;
  }

  .plan__btn {
    margin-top: 3rem;
  }

  .reason {
    border-radius: 3rem;
    padding: 7rem 0;
  }

  .reason__list {
    gap: 4rem;
    margin-top: 4rem;
  }

  .reason__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.8rem;
  }

  .reason__item:not(:nth-child(1)) {
    border-top: 1px solid #CEC3A6;
    padding-top: 4rem;
  }

  .reason__item.--reverse {
    flex-direction: column;
  }

  .reason__desc {
    display: contents;
  }

  .reason__num {
    order: 1;
  }

  .reason__ttl {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-top: 0;
    order: 2;
  }

  .reason__text {
    line-height: 1.7142857143;
    margin-top: 0.5rem;
    order: 4;
  }

  .reason__img {
    border-radius: 1rem;
    order: 3;
  }

  .service {
    padding: 12rem 0 7rem;
  }

  .service__cards {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 5rem;
  }

  .service__card {
    border-radius: 1rem;
    gap: 2rem;
    padding: 3rem 2rem 2rem;
  }

  .service__ttl {
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .service__list {
    gap: 0.5rem;
    line-height: 1.2857142857;
  }

  .service__item {
    border-radius: 0.5rem;
    font-size: 1.4rem;
    height: 7rem;
    padding: 1rem 1.5rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

}

@media screen and (max-width: 375px) {

  html {
    font-size: 2.67vw;
  }

}


/*# sourceMappingURL=style.css.map */