@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(40) rotate(45deg);
    transform: scale(40) rotate(45deg);
    opacity: 0;
  }
}
@keyframes slider {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes slider-sp {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -100% 0;
  }
}

/* ========================
Base
======================== */
html {
  font-size: 62.5%;
}

body {
  --font-ja: "Noto Snas JP", sans-serif;
  --font-en: "Roboto", sans-serif;

  --primary: #f09225;
  --secondary: #4bc469;
  --brown: #7c6d4c;
  --red: #f3450e;
  --yellow: #fffca0;

  --text: #1b1b1b;

  color: var(--text);
  font-family: var(--font-ja);
  font-weight: 500;
}

img {
  max-width: 100%;
}

a {
  color: var(--brown);
}

a:hover,
a:focus {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

em,
address,
b {
  font-style: normal;
}

/* ========================
Common
======================== */
.btn {
  display: block;
  border-radius: 999px;
  aspect-ratio: 372 / 74;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .btn {
    min-height: 64px;
  }
}

.btn--gritter {
  overflow: hidden;
  position: relative;
}
.btn--gritter::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
  animation: reflection 3s ease-in-out infinite;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 17px;
  padding-right: 17px;
  margin-top: 16px;
}

.sect-title {
  zoom: 0.5;
  margin-inline: auto;
  display: grid;
  place-items: center;
  margin-inline-start: -28px;
}
@media screen and (max-width: 768px) {
  .sect-title {
    zoom: 1;
    width: 100%;
    margin-inline: auto;
    max-width: 335px;
  }
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.fadeup.show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* === Slick === */
.slick-list {
  margin-left: -20px;
  margin-right: -20px;
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick-slide {
  float: none;
  height: auto;
  display: flex !important;
}
.slick-slide:not(.slick-current) * {
  -webkit-filter: none;
  filter: none;
}
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 60%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 31px;
  height: 114px;
  padding: 0;
  background-color: rgba(117, 210, 139, 0.9);
  border: none;
  outline: none;
  color: transparent;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.slick-prev::after,
.slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-70%, -50%) rotate(-45deg);
  transform: translate(-70%, -50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}
.slick-prev {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  left: -20px;
}
.slick-next {
  right: -20px;
}
.slick-disabled {
  opacity: 0;
  cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
  opacity: 0;
}
.slick-dotted.slick-slider {
  margin-bottom: 40px;
}
.slick-dots {
  display: block;
  position: absolute;
  bottom: -28px;
  width: 100%;
  text-align: center;
  padding-inline-end: 10px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 7px;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
}
.slick-dots li button {
  display: block;
  width: 15px;
  height: 15px;
  padding: 0;
  background-color: #c0c0c0;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: #f5b266;
}

.cont {
  padding: 70px 20px;
}
@media screen and (max-width: 768px) {
  .cont {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.cont_inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ========================
Blocks
======================== */

.header .header_inner {
  max-width: 1000px;
  margin: 0 auto;
}

.header .header_inner .header-logo {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 51px;
  padding: 2px 20px 0px;
  background-color: #fff;
  position: relative;
  margin-inline: auto;
}
.header .header_inner .header-logo .header_brand-logo {
  width: 256px;
  display: inline-block;
}
.header .header_inner .header-logo .header_fc-logo {
  width: 153px;
  display: inline-block;
}
.header .header_inner .header-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 59%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 24px;
  height: 1px;
}
.header .header_inner .header-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 59%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 24px;
  height: 1px;
}
.header-thanks-text {
  display: none;
}
@media (max-width: 768px) {
  .header .header_inner {
    width: 100%;
    background-color: #fff;
  }
  .header .header_inner .header-logo {
    margin: 0 auto;
    width: 320px;
    gap: 30px;
    padding-block: 4px 3px;
  }
  .header .header_inner .header-logo .header_brand-logo {
    width: 148px;
  }
  .header .header_inner .header-logo .header_fc-logo {
    width: 99px;
  }
  .header .header_inner .header-logo::before,
  .header .header_inner .header-logo::after {
    width: 18px;
    left: 56%;
  }
}

.hero {
  position: relative;
  padding-top: 41px;
  padding-bottom: 44px;
}
.hero_inner {
  position: relative;
  z-index: 5;
  max-width: 1128px;
}
.hero_main {
  aspect-ratio: 540 / 400;
  width: calc(540 / 1440 * 100vw);
  max-width: 540px;
}

.hero_bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero_bg-inner {
  width: fit-content;
  animation: slider 20s linear infinite;
  height: 100%;
  display: flex;
}
.hero_bg-slide {
  width: calc(2580 / 1440 * 100vw);
  display: inline-block;
}
.hero_bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 184px;
    padding-bottom: 0;
    padding-inline: 0;
    background: #fff;
    overflow: hidden;
  }
  .hero_inner {
    padding: 0;
    margin-block-start: -20px;
  }
  .hero_main {
    aspect-ratio: 750 / 688;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 3;
    padding-block-start: 20px;
    overflow: hidden;
  }
  .hero_main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .hero_deco {
    position: absolute;
    aspect-ratio: 1;
    width: calc(121 / 375 * 100vw);
    top: 30%;
    right: 0;
    translate: 30px 0;
    z-index: 1;
    mix-blend-mode: multiply;
  }
  .hero_bg-inner {
    display: flex;
    /* animation: slider 22s linear 0s infinite;
        -webkit-animation: slider 22s linear 0s infinite; */
    /* perspective: 1000;
        transform: translate3d(0, 0, 0);
        will-change: transform, slider;
        backface-visibility: hidden;
        -webkit-transform: translateZ(0);
        -webkit-perspective: 1000;
        -webkit-backface-visibility: hidden; */
    animation: none;
  }
  .hero_bg-slide {
    width: 300vw;
    display: inline-block;
  }
  .hero_bg-slide img {
    height: auto;
  }
}
.hero-bottom {
  padding-top: 11px;
  padding-bottom: 7px;
  background-color: var(--brown);
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.hero-bottom_text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-block-start: 7px;
}
.hero-bottom_text strong {
  font-size: 2.1rem;
  display: inline-block;
  margin-block-start: 4px;
}
.hero-bottom_text strong span {
  font-size: 1.6rem;
  display: inline-block;
  margin-inline-end: 1em;
}
.hero-bottom_btn {
  max-width: 372px;
}
@media screen and (max-width: 768px) {
  .hero-bottom {
    position: relative;
    margin-block-start: -18px;
    z-index: 10;
    padding-block: 10px 13px;
    padding-inline: 12px;
  }
  .hero-bottom_inner {
    display: block;
  }
  .hero-bottom_text {
    text-align: center;
    font-size: 1.4rem;
  }
  .hero-bottom_text strong {
    font-size: 1.6rem;
    font-weight: 800;
    margin-block-start: 0;
  }
  .hero-bottom_btn {
    margin-block-start: 7px;
  }
}
.intro {
  background: #fbf5e4;
  padding-block: 60px 49px;
}

.intro_inner {
  display: grid;
  grid-template-columns: auto calc(415 / 1000 * 100%);
  gap: 64px;
}

.intro_text {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  align-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}
.intro_text-inner span {
  background-image: radial-gradient(
    circle at center,
    var(--text) 20%,
    transparent 25%
  );
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: 0.3em;
}
.intro_text-inner:nth-child(2) {
  margin-block-start: -34px;
}

.intro_graph {
}
@media screen and (max-width: 768px) {
  .intro {
    padding-block: 29px 47px;
  }
  .intro_inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .intro_text {
    display: contents;
    text-align: center;
    font-size: 1.8rem;
    /* font-weight: 500; */
  }
  .intro_text-inner:nth-child(2) {
    margin-block-start: -0.75em;
  }
  .intro_text-inner:last-child {
    order: 1;
  }
}

.sect-wrap {
  background: url(../images/bg_sect-wrap.jpg) no-repeat center top / cover;
  padding-block: 66px 93px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .sect-wrap {
    padding-block: 10px 39px;
    background: #fdebbd;
  }
}

.about {
  padding-block: 0;
  position: relative;
  z-index: 5;
}
.about_top {
  aspect-ratio: 422 / 181;
  max-width: 422px;
  margin: 0 auto;
  background: #fdebbd;
}
.about_top img {
  mix-blend-mode: multiply;
}
.about_body {
  border-radius: 20px;
  background: #fff;
  padding: 57px 20px 70px;
}

.about_body-inner {
  max-width: 700px;
  margin: 0 auto;
}

.about_title {
  font-size: 3.8rem;
  font-weight: 700;
  text-align: center;
  padding-block-end: 41px;
  line-height: 1.25;
  position: relative;
}
.about_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 79px;
  height: 19px;
  background: url(../images/deco_about-title.png) no-repeat center center /
    contain;
}

.about_lead {
  font-size: 2.2rem;
  line-height: 1.7;
  margin-block-start: 24px;
  padding-inline: 25px;
}

.about_list {
  margin-block-start: 34px;
  background: rgba(240, 146, 37, 0.02);
  border-radius: 20px;
  border: 2px solid rgba(240, 146, 37, 0.6);
  padding: 33px 39px 30px;
}

.about_item {
  padding: 12px 40px 16px 26px;
  position: relative;
}
.about_item::after {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background: url(../images/line_dots.svg) no-repeat center center / contain;
  bottom: 0;
  left: 0;
}
.about_item:last-child {
  padding-bottom: 0;
}
.about_item:first-child {
  padding-top: 0;
}
.about_item:last-child::after {
  display: none;
}

.about_item-text {
  position: relative;
  padding-inline-start: 52px;
  line-height: 1.4;
  font-size: 2.2rem;
}
.about_item-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 37px;
  height: 37px;
  background: url(../images/icon_check.png) no-repeat center center / contain;
}
@media screen and (max-width: 768px) {
  .about_top {
    mix-blend-mode: multiply;
  }

  .about_top {
    aspect-ratio: 319 / 150;
    max-width: 319px;
  }

  .about_body {
    padding: 23px 27px 40px;
    margin-block-start: -5px;
  }

  .about_title {
    font-size: 2.8rem;
    padding-block-end: 29px;
  }
  .about_title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 79px;
    height: 19px;
    background: url(../images/deco_about-title.png) no-repeat center center /
      contain;
  }

  .about_lead {
    font-size: 1.8rem;
    margin-block-start: 8px;
    padding-inline: 0;
  }

  .about_list {
    padding: 0;
    background: none;
    border-radius: 0px;
    border: none;
  }
  .about_item {
    padding: 17px 0px;
    position: relative;
  }
  .about_item:last-child {
    padding-bottom: 0;
  }
  .about_item:first-child {
    padding-top: 0;
  }
  .about_item:last-child::after {
    display: none;
  }

  .about_item-text {
    position: relative;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 500px) {
  .about_item::after {
    background: url(../images/line_dots-sp.svg) repeat-x left center / contain;
  }
}

.reasons {
  position: relative;
  padding-block: 0;
  margin-block-start: 93px;
}

.reasons_title {
}

.reasons_list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  grid-template: auto auto/1fr 1fr;
  gap: 36px 28px;
  position: relative;
  margin-top: 26px;
}

.reasons_list-item {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reasons {
    margin-block-start: 40px;
    position: relative;
  }

  .reasons::after {
    content: "";
    position: absolute;
    width: 193px;
    height: 193px;
    background: url(../images/bg-deco.png) no-repeat center center / contain;
    top: -7%;
    left: -67px;
  }
  .reasons::before {
    content: "";
    position: absolute;
    width: 176px;
    height: 176px;
    background: url(../images/bg-deco.png) no-repeat center center / contain;
    top: 7%;
    right: -58px;
  }

  .reasons_title {
    margin-inline: -20px;
  }

  .reasons_list {
    grid-template: repeat(4, auto) / auto;
    row-gap: 10px;
    margin-top: 12px;
  }
  .reasons_list-item {
    margin-inline-start: -7px;
  }
}

.testimonials {
  padding-block: 67px 86px;
  position: relative;
  z-index: 5;
}
.testimonials::before {
  content: "";
  position: absolute;
  width: 423px;
  height: 423px;
  background: url(../images/bg-deco2.png) no-repeat center center / contain;
  top: -21%;
  left: 53px;
  mix-blend-mode: multiply;
}
.testimonials::after {
  content: "";
  position: absolute;
  width: 358px;
  height: 358px;
  background: url(../images/bg-deco2.png) no-repeat center center / contain;
  bottom: -13%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .testimonials {
    padding-top: 35px;
    padding-bottom: 28px;
    overflow: hidden;
  }
  .testimonials::before {
    width: 300px;
    height: 300px;
    top: -14%;
    left: 50%;
  }
  .testimonials::after {
    width: 163px;
    height: 163px;
    bottom: -8%;
    right: 70%;
  }
}
.testimonials_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  margin-top: 6px;
  z-index: 5;
  position: relative;
}
.testimonials_list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 17.5px);
  flex-shrink: 0;
}

.testimonials_item-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonials_item-img {
  aspect-ratio: 108 / 118;
  width: 108px;
}

.testimonials_item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.testimonials_item-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.testimonials_item-lead {
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding: 14px 20px 11px;
  background: #f5b266;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  display: block;
  color: #fff;
}

.testimonials_item-desc {
  display: block;
  background: #fbf5e4;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 27px 34px 47px;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .testimonials_list {
    padding-inline: 10px;
  }
  .testimonials_list-item {
    margin: 10px;
  }
  .testimonials_item-title {
    font-size: 1.8rem;
  }
  .testimonials_item-lead {
    font-size: 2rem;
    padding-block: 14px;
  }
  .testimonials_item-desc {
    font-size: 1.6rem;
    padding: 17px 30px 27px;
  }
}

.cta {
  background: var(--brown);
  position: relative;
  z-index: 6;
  padding: 33px 13px 27px;
  display: grid;
  place-items: center;
}
.cta_btn {
  width: 100%;
  max-width: 454px;
}
@media screen and (max-width: 768px) {
  .cta {
    padding-block: 25px;
  }
}
.revenue {
  background-color: #fdebbc;
  padding-inline: 20px;
}
.revenue_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  margin-top: 40px;
}
.revenue_list-item {
  background: #fff;
  padding: 46px 41px 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.revenue_example {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 2.4rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  padding-inline: 34px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  margin-inline: auto;
}
.revenue_example::before,
.revenue_example::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 19px;
  height: 19px;
  background: url(../images/small_deco.png) no-repeat center center / contain;
}
.revenue_example::after {
  right: 0;
  left: auto;
}
.revenue_achievement1 {
}
.revenue_achievement2 {
  margin-block-start: -21px;
}
@media screen and (max-width: 768px) {
  .revenue {
    padding-inline: 20px;
    padding-bottom: 24px;
  }
  .revenue_example {
    font-size: 2.2rem;
    padding-inline: 40px;
  }
  .revenue_list {
    padding-inline: 10px;
    margin-top: 10px;
  }
  .revenue_list-item {
    margin: 10px;
    padding: 26px 15px 22px;
  }
  .revenue_achievement2 {
    margin-block-start: -31px;
  }
  .revenue .slick-prev,
  .revenue .slick-next {
    top: 50%;
  }
}

.flow {
  padding-block: 70px 80px;
  background-color: var(--white);
  position: relative;
  z-index: 7;
  mix-blend-mode: multiply;
  overflow-x: clip;
  scrollbar-color: #c1ebcb transparent;
}
.flow::before {
  content: "";
  position: absolute;
  width: 424px;
  height: 424px;
  background: url(../images/bg-deco3.png) no-repeat center center / contain;
  top: -27%;
  right: 68%;
  z-index: -1;
}
.flow::after {
  content: "";
  position: absolute;
  width: 512px;
  height: 512px;
  background: url(../images/bg-deco3.png) no-repeat center center / contain;
  bottom: -34%;
  left: 68%;
  z-index: -1;
}
.flow_title {
}
.flow_list-wrap {
  overflow: hidden;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block: 40px 40px;
  }
  .flow::after,
  .flow::before {
    display: none;
  }
  .flow_list-wrap {
    overflow: auto;
    margin-right: -17px;
    margin-top: 14px;
  }
}
.flow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 6px;
}
@media screen and (max-width: 768px) {
  .flow_list {
    width: 495px;
    margin-bottom: 35px;
    margin-inline: auto;
    padding-inline-end: 20px;
  }
}
.flow_list-first {
  width: calc(154 / 1000 * 100%);
  aspect-ratio: 154 / 203;
  display: flex;
  align-items: center;
}

.flow_list-first a {
  text-decoration: none;
  display: block;
}
.flow_list-item {
  width: calc(845 / 1000 * 100%);
}
@media screen and (max-width: 768px) {
  .flow_list-first {
    aspect-ratio: 95 / 125;
    width: 95px;
  }
  .flow_list-item {
    width: 400px;
  }
}

.push {
  padding-top: 61px;
  padding-bottom: 110px;
  background-color: #f6ba75;
}
@media screen and (max-width: 768px) {
  .push {
    padding-top: 30px;
    padding-bottom: 89px;
  }
}
.push_title {
  text-align: center;
  color: #fff;
  font-family: var(--font-en);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.41;
  letter-spacing: 0.03em;
}
.push_title em {
  color: #7c6d4c;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .push_title {
    font-size: 1.9rem;
  }
  .push_title em {
    font-size: 2.4rem;
    display: block;
    margin-block-start: 12px;
  }
}
.push_list {
  display: flex;
  align-items: center;
  margin-block-start: 37px;
  margin-inline-start: 20px;
}
.push_list-item:not(:first-child) {
  margin-inline-start: -8px;
}
@media screen and (max-width: 768px) {
  .push_list {
    margin-top: 35px;
    flex-direction: column;
    gap: 10px;
    margin-inline-start: 0;
  }
  .push_list-item:not(:first-child) {
    margin-inline-start: 0;
  }
}

.request {
  position: relative;
  padding-top: 139px;
  padding-bottom: 65px;
}
.request_title {
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 763px;
}
@media screen and (max-width: 768px) {
  .request {
    padding-block: 80px 33px;
  }
  .request_title {
    top: -63px;
    width: calc(100% - 40px);
    max-width: 375px;
  }
}
.request_note {
  text-align: center;
  letter-spacing: 1.4px;
  font-size: 13px;
  line-height: 1.5;
}
.request_note-mail {
  display: inline;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .request_note-mail {
    display: block;
    font-size: 1.3rem;
  }
}
.request_note-supp {
  display: inline;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .request_note-supp {
    display: block;
    font-size: 1.2rem;
  }
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 858px;
  padding: 30px 72px 0;
  margin: 28px auto 0;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .request_panel {
    padding: 0;
    margin-top: 9px;
  }
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 9px 22px;
  margin: 0 auto;
  background-color: #a08652;
  color: #fff;
  font-size: 1.8rem;
  white-space: nowrap;
  border-radius: 2px;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .request_appeal {
    padding: 6px 16px;
    font-size: 1.5rem;
  }
}
.request_appeal-em {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .request_appeal-em {
    font-size: 2rem;
  }
}
.request_require-note {
  text-align: right;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .request_require-note {
    margin-top: 11px;
    text-align: center;
    font-size: 1.2rem;
  }
}
.request_form {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .request_form {
    margin-top: 26px;
  }
}

.form .form-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 52px;
  padding: 14px;
  background-color: #f6f6f6;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  color: #393939;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--font-en);
}
.form .form-text::-webkit-input-placeholder {
  color: #a6a6a6;
}
.form .form-text::-moz-placeholder {
  color: #a6a6a6;
}
.form .form-text:-ms-input-placeholder {
  color: #a6a6a6;
}
.form .form-text::-ms-input-placeholder {
  color: #a6a6a6;
}
.form .form-text::placeholder {
  color: #a6a6a6;
}
.form .form-text:not(:-moz-placeholder-shown) {
  background-color: #fff;
  border: 1px solid #232323;
}
.form .form-text:not(:-ms-input-placeholder) {
  background-color: #fff;
  border: 1px solid #232323;
}
.form .form-text:not(:placeholder-shown) {
  background-color: #fff;
  border: 1px solid #232323;
}
.form .form-textarea {
  height: 152px;
}

.form .form-select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 52px;
  padding: 14px;
  background-color: #f6f6f6;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  color: #393939;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid var(--brown);
  font-family: var(--font-en);
}
.form .form-select--initial {
  background-color: #fff;
  color: #393939;
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: none;
  border: 2px solid #7c6d4c;
  border-radius: 50px;
  font-weight: 500;
  color: #7c6d4c;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1428571429;
  cursor: pointer;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .form .form-zip-btn {
    padding: 18px 14px 14px;
  }
}
.form .wpcf7-form-control-wrap {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .form .wpcf7-form-control-wrap {
    margin-top: 7px;
  }
}
.form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .form_item {
    display: block;
  }
}
.form_item:not(:first-child) {
  margin-top: 20px;
}
.form_item--short .wpcf7-form-control-wrap {
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  .form_item--short .wpcf7-form-control-wrap {
    max-width: 145px;
  }
}
@media screen and (max-width: 768px) {
  .form_item--has-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .form_item--has-btn .form_title {
    width: 100%;
  }
}
.form_item--has-btn .wpcf7-form-control-wrap {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form_item--has-btn .form-zip-btn {
    margin-top: 10px;
    margin-left: 0;
  }
}
.form_item--left {
  float: left;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .form_item--left {
    float: none;
    width: auto;
  }
}
.form_item--right {
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .form_item--right {
    float: none;
    width: auto;
  }
}
.form_title {
  display: block;
  width: 110px;
  text-align: right;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form_title {
    width: auto;
    text-align: left;
    font-size: 1.4rem;
  }
}
.form_title--top {
  align-self: flex-start;
  margin-block-start: 11px;
}
.form_title--long {
  letter-spacing: -0.1em;
}
.form_required {
  color: #e42d2d;
}
.form_control {
  display: block;
  width: 100%;
}
.form .form_item--select .wpcf7-form-control-wrap {
  position: relative;
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  .form .form_item--select .wpcf7-form-control-wrap {
    max-width: 200px;
  }
}
.form .form_item--select .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  right: 12px;
  width: 10px;
  height: 6px;
  background-color: #7c6d4c;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.form .form_item--radio > p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.form .form_item--radio .wpcf7-radio {
  margin-top: -12px;
  margin-left: -20px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-radio {
    margin-top: 0;
    margin-left: 0;
  }
}
.form .form_item--radio .wpcf7-radio input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label {
  cursor: auto;
}
.form
  .form_item--radio
  .wpcf7-radio
  input:checked
  + .wpcf7-list-item-label::before {
  cursor: auto;
}
.form
  .form_item--radio
  .wpcf7-radio
  input:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
  cursor: auto;
}
.form .form_item--radio .wpcf7-list-item {
  display: inline-block;
  margin-top: 12px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-list-item {
    display: block;
    margin-left: 0;
  }
}
.form .form_item--radio .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 31px;
  font-size: 1.6rem;
  line-height: 1.25;
  cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #009533;
  border-radius: 50%;
  cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #009533;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
  margin-top: -12px;
  margin-left: -36px;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-checkbox {
    margin-top: 0;
    margin-left: 0;
  }
}
.form .form_item--checkbox .wpcf7-checkbox input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.form
  .form_item--checkbox
  .wpcf7-checkbox
  input:checked
  + .wpcf7-list-item-label::before {
  background-color: #b6b6b6;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form
  .form_item--checkbox
  .wpcf7-checkbox
  input:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form .form_item--checkbox .wpcf7-list-item {
  display: inline-block;
  margin-top: 12px;
  margin-left: 36px;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item {
    display: block;
    margin-top: 12px;
    margin-left: 0;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label {
    padding-left: 27px;
    font-size: 1.2em;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: 2px solid #b6b6b6;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-60%) rotate(-45deg);
  transform: translateY(-60%) rotate(-45deg);
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label::after {
    left: 4px;
  }
}
.form .form_item--optional:not(._) {
  margin-top: 34px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form .form_item--optional:not(._) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .form .form_item--optional:not(._) .wpcf7-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.form .form_item--optional:not(._) .wpcf7-list-item-label {
  color: #999999;
}
@media screen and (max-width: 768px) {
  .form .form_item--optional:not(._) .wpcf7-list-item-label {
    text-align: left;
    font-size: 1.2rem;
  }
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
  background: #f6f6f6;
  color: #464646;
}
.form .wpcf7-not-valid-tip {
  margin-top: 4px;
}
.form_note {
  margin-top: 8px;
  margin-left: 126px;
  color: #202020;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .form_note {
    margin-left: 0;
  }
}
.form_privacy-policy-wrap {
  margin-top: 58px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy-wrap {
    margin-top: 36px;
  }
}
.form_privacy-policy {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy {
    font-size: 1.2rem;
  }
}
.form_submit-wrap {
  margin-top: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_submit-wrap {
    margin-top: 12px;
  }
}
.form_submit {
  position: relative;
  width: 300px;
  padding-top: 18px;
  padding-bottom: 18px;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: #afa07d;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding-inline-end: 20px;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .form_submit {
    width: 222px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1.6rem;
  }
}
.form_submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 36px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
@media screen and (max-width: 768px) {
  .form_submit::after {
    right: 20px;
    width: 8px;
    height: 8px;
  }
}

.footer {
  padding-top: 35px;
  padding-bottom: 30px;
  background-color: var(--brown);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 17px;
  }
}
.footer_inner {
  position: relative;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.footer_about-franchise-salon {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 860px;
  padding: 14px 25px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #fff;
  color: #393939;
}
@media screen and (max-width: 768px) {
  .footer_about-franchise-salon {
    padding: 16px 13px 16px 17px;
  }
}
.footer_about-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer_about-title {
    font-size: 1.6rem;
  }
}
.footer_about-logo {
  display: inline-block;
  width: 222px;
}
@media screen and (max-width: 768px) {
  .footer_about-logo {
    width: 172px;
  }
}
.footer_about-desc {
  margin-top: 4px;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #393939;
}
@media screen and (max-width: 768px) {
  .footer_about-desc {
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    line-height: 1.5;
  }
}
.footer_company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 860px;
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .footer_company-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 33px;
  }
}
.footer_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer_info + .footer_info {
  margin-inline-start: 62px;
}
@media screen and (max-width: 768px) {
  .footer_info + .footer_info {
    margin-top: 43px;
    padding-left: 0;
    border: none;
    margin-inline-start: 0;
  }
}
.footer_company {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.07em;
}
.footer_head-office {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.07em;
}
.footer_address {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.07em;
}
.footer_contact {
  margin-top: 19px;
  border: 1px solid #fff;
  font-size: 1.3rem;
  border-radius: 999px;
  width: max-content;
}
@media screen and (max-width: 768px) {
  .footer_contact {
    display: block;
    width: max-content;
  }
}
.footer_contact-link {
  display: block;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 8px 23px;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  width: max-content;
  text-align: center;
}

.footer_copyright {
  display: block;
  text-align: center;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: bold;
  margin-block-start: 24px;
}
@media screen and (max-width: 768px) {
  .footer_company {
    font-weight: 500;
  }
  .footer_head-office {
    font-weight: 500;
  }
  .footer_contact {
    margin-block-start: 37px;
  }
  .footer_contact-link {
    padding: 8px 19px 9px 19px;
    font-size: 1.2rem;
    letter-spacing: 0.03em;
  }
  .footer_copyright {
    font-size: 1.2rem;
    margin-block-start: 56px;
  }
}

/* ========================
Helper
======================== */
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .only-sp {
    display: none;
  }
}

.clear-fix {
  clear: both;
}

.marker {
  background-color: #fff48f;
}

.white-line {
  background-image: -webkit-linear-gradient(bottom, #fff 7px, transparent 7px);
  background-image: linear-gradient(to top, #fff 7px, transparent 7px);
}

.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.yellow {
  color: var(--yellow);
}

.red {
  color: var(--red);
}

.bold {
  font-weight: bold;
}
