@-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(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* ========================
Base
======================== */
html {
  font-size: 62.5%;
}

body {
  --font1: 'Noto Sans JP', sans-serif;
  --font2: 'Roboto', sans-serif;

  --text-c: #333;
  --primary: #039b41;
  --text-bg: #80c73b;
  --bg1: #f6faea;
  --bg2: #f5f5f5;
  --yellow: #ffe51d;
  --red: #ea3313;
  --orange: #ea6a13;

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

img {
  max-width: 100%;
}

a {
  color: #009533;
}

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

ul,
ol {
  list-style: none;
}

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

/* ========================
Common
======================== */
.btn {
  border-radius: 999px;
  max-width: 380px;
  display: block;
  transition: scale 0.2s ease-out;
}
.btn:hover {
  scale: 1.05;
}

.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: 25px 20px 19px;
  background: var(--text-bg);
}
.btn-wrap .btn {
  width: 100%;
  max-width: 460px;
}
@media screen and (max-width: 768px) {
  .btn-wrap {
    padding: 25px 12px 22px;
  }
}

.sect-title {
  zoom: 0.5;
}
.sect-title--center {
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sect-title {
    padding-left: 16px;
    font-size: 2.4rem;
    line-height: 1.8;
  }
}

.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 {
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick-slide {
  float: none;
  height: auto;
}
.slick-slide:not(.slick-current) * {
  -webkit-filter: none;
  filter: none;
}
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 29px;
  height: 116px;
  padding: 0;
  background: rgba(3, 155, 65, 0.7);
  border: none;
  outline: none;
  color: transparent;
  cursor: pointer;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.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: -13px;
}
.slick-next {
  right: -13px;
}
.slick-disabled {
  opacity: 0;
  cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
  opacity: 0;
}
.slick-dotted.slick-slider {
  margin-block: 26px;
}
.slick-dots {
  display: block;
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 13px;
  height: 13px;
  padding: 0;
  background-color: #c0c0c0;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background-color: var(--primary);
}

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

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

.header {
  max-width: 1000px;
  width: fit-content;
  box-shadow: 0px 0px 54px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 5;
  border-bottom-right-radius: 20px;
}

.header .header-logo {
  display: flex;
  gap: 41px;
  align-items: center;
  justify-content: space-between;
  padding: 17px 41px 18px;
  position: relative;
}
.header .header-logo .header_brand-logo {
  width: 172px;
  display: inline-block;
}
.header .header-logo .header_fcs-logo {
  width: 153px;
  display: inline-block;
}
.header .header-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 20px;
  height: 2px;
}
.header .header-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 20px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .header {
    border-bottom-right-radius: 17px;
  }
  .header .header-logo {
    margin-inline: auto;
    gap: 21px;
    padding: 7px 27px 7px 21px;
  }

  .header .header-logo .header_brand-logo {
    width: 101px;
  }

  .header .header-logo .header_fcs-logo {
    width: 88px;
  }

  .header .header-logo::before {
    width: 12px;
    height: 1px;
  }

  .header .header-logo::after {
    width: 12px;
    height: 1px;
  }
}

.hero {
  position: relative;
  padding-top: 77px;
  padding-bottom: 118px;
}

.hero_main {
  aspect-ratio: 643 / 425;
  width: calc(643 / 1440 * 100vw);
}
.hero_bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.hero_bg-inner {
  position: relative;
  background-color: #f4f4f4;
  height: 100%;
}
/* .hero_bg-inner:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(610 / 1440 * 100vw);
  background: url(../images/hero_bg-pattern.jpg) center/cover no-repeat;
} */
.hero_bg-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  opacity: 0;
}
.hero_bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.hero_bg-img img {
  height: 100%;
  -o-object-position: right;
  object-position: right;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero_bg-item.show {
  opacity: 1;
  z-index: 1;
}
.hero_bg-item.hide {
  opacity: 1;
  z-index: 0;
}
.hero_bg-item.active .hero_bg-img {
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 7s linear;
  transition: -webkit-transform 7s linear;
  transition: transform 7s linear;
  transition: transform 7s linear, -webkit-transform 7s linear;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 206px;
    padding-bottom: 15px;
    padding-inline: 0;
  }
  .hero_main {
    width: 100%;
    aspect-ratio: 167 / 135;
  }
  .hero_bg-item {
    left: 0;
  }
  .hero_bg-img {
    left: 0;
  }
  .hero_bg-img img {
    width: 100%;
  }
}
.hero-bottom {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: #f6faea;
  margin-block-start: -89px;
  position: relative;
  z-index: 3;
}
.hero-bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}

.hero-bottom_text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: block;
  margin-block-start: 8px;
}
.hero-bottom_text::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -100%;
  width: 214px;
  height: 49px;
  background: url(../images/hero_bottom-catch.png) center/contain no-repeat;
}
.hero-bottom_text em {
  color: #54a704;
}

@media screen and (max-width: 768px) {
  .hero-bottom {
    margin-block-start: 0;
    padding-block: 30px 15px;
    padding-inline: 12px;
  }
  .hero-bottom_inner {
    display: block;
  }
  .hero-bottom_text {
    text-align: center;
    font-size: 1.4rem;
  }
  .hero-bottom_text::after {
    width: 213px;
    font: 43px;
  }
  .hero-bottom_btn {
    margin-block-start: 7px;
    width: 100%;
    margin-inline: auto;
  }
}

.about {
  padding-block: 80px;
}
.about_body {
  padding: 50px 57px;
  margin-block-start: 40px;
  background: #f6faea;
  box-shadow: 10px 10px 0 var(--text-bg);
  display: grid;
  gap: 39px;
  grid-template-columns: 355px auto;
}

.about_desc {
}

.about_text {
  font-size: 1.7rem;
  line-height: 1.8;
}
.about_text-img {
  display: block;
  margin-block: 16px;
}

.about_img {
}
@media screen and (max-width: 768px) {
  .about {
    padding-block: 40px 50px;
  }
  .about_body {
    margin-block-start: 20px;
    padding: 30px 21px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about_text {
    font-size: 1.5rem;
  }
}

.work {
  background: url(../images/work_bg.png) center/cover no-repeat, #f5f5f5;
  position: relative;
  z-index: 2;
}

.work_body {
  margin-block-start: 39px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.work_figure {
  aspect-ratio: 728 / 218;
  width: 100%;
  max-width: 728px;
  margin-inline: auto;
}

.work_list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  justify-content: center;
  align-items: center;
  margin-block-start: 39px;
}

.work_item {
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  padding-inline-start: 30px;
  position: relative;
  display: inline-block;
}
.work_item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url(../images/check-icon.svg) center/contain no-repeat;
}

.work_appeal {
  color: #fff;
  background: var(--primary);
  display: block;
  font-size: 2.4rem;
  line-height: 1.6;
  margin-block-start: 24px;
  display: inline-block;
  margin-inline: auto;
  padding: 4px 20px;
}

@media screen and (max-width: 768px) {
  .work {
    background: url(../images/work_bg-sp.png) center/cover no-repeat, #f5f5f5;
  }
  .work_body {
    margin-block-start: 20px;
  }
  .work_figure {
    aspect-ratio: 335 / 327;
  }
  .work_list {
    margin-block-start: 24px;
  }
  .work_item {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-inline-start: 28px;
    text-align: left;
  }
  .work_item::before {
    width: 20px;
    height: 1lh;
    top: 0;
    transform: none;
  }

  .work_appeal {
    margin-block-start: 24px;
    text-align: center;
    line-height: 1.5;
    font-size: 2rem;
    padding: 8px 17px;
  }
}

.reasons {
  position: relative;
  padding-top: 128px;
  background: url(../images/reasons_bg.jpg) center/cover no-repeat;
  margin-block-start: -1px;
}

.reasons_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-block-start: 40px;
}
.reasons_list-item {
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px 0 var(--text-bg);
}
.reasons_list-item:nth-child(2) .reasons_item-title {
  min-height: 2lh;
}
.reasons_list-item:nth-child(4) .reasons_item-desc {
  border: none;
  position: relative;
  padding-block-start: 60px;
}
.reasons_list-item:nth-child(4) .reasons_item-desc::before {
  position: absolute;
  content: '';
  background: url(../images/reasons_speech-bubble.png) center/contain no-repeat;
  width: 384px;
  height: 60px;
  top: 0;
  left: 50%;
  translate: -50% -10%;
}
.reasons_item-img {
  aspect-ratio: 470 / 263;
}

.reasons_item-body {
  padding: 24px 30px 28px;
  background: #fff;
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}

.reasons_item-title {
  color: var(--primary);
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.reasons_item-desc {
  display: block;
  margin-block-start: 20px;
  font-size: 1.7rem;
  line-height: 1.7;
  border-block-start: 1px solid rgb(0 0 0 / 0.25);
  padding-block-start: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .reasons {
    padding-top: 40px;
    padding-bottom: 50px;
    background: linear-gradient(to top, #dddee2 0, #dddee2 10px, transparent),
      url(../images/reasons_bg-sp.jpg) center/cover no-repeat;
  }
  .reasons_list {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-block-start: 20px;
  }
  .reasons_item-body {
    padding: 20px 21px;
  }

  .reasons_item-title {
    font-size: 2.3rem;
  }
  .reasons_list-item:nth-child(4) .reasons_item-desc::before {
    width: 292px;
  }

  .reasons_item-desc {
    margin-block-start: 14px;
    padding-block-start: 14px;
    font-size: 1.5rem;
  }
  .reasons_list-item:nth-child(2) .reasons_item-title {
    min-height: auto;
  }
  .reasons_list-item:nth-child(4) .reasons_item-desc {
    padding-block-start: 47px;
  }
}

.more {
  padding-block: 60px 80px;
}

.more_head {
}

.more_body {
  margin-block-start: 30px;
}
.more_title {
  color: var(--primary);
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  margin-inline: auto;
}

.more_list {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 722px;
  margin-inline: auto;
  margin-block-start: 30px;
}

.more_item {
  width: calc(33.33% - 80px / 3);
}

.more_item-img {
}

.more_appeal {
  margin-block-start: 30px;
  aspect-ratio: 571 / 63;
  width: 100%;
  max-width: 571px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .more {
    padding-block: 43px 50px;
  }
  .more_body {
    margin-block-start: 24px;
  }
  .more_title {
    font-size: 1.8rem;
  }

  .more_list {
    margin-block-start: 20px;
  }

  .more_item + * {
  }

  .more_item {
    width: auto;
    margin-inline-start: 40px;
    width: calc(214 / 375 * 100vw);
  }

  .more_item-img {
  }

  .more_appeal {
    margin-block-start: 50px;
    aspect-ratio: 316 / 90;
    max-width: 316px;
  }

  .more .slick-prev,
  .more .slick-next {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    padding: 0;
    background-color: #fff;
    border-radius: 50%;
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
  .more .slick-prev::after,
  .more .slick-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 22px;
    height: 14px;
    mask: url(../images/arrow-icon.svg) center/contain no-repeat;
    background-color: var(--primary);
  }
  .more .slick-prev:hover,
  .more .slick-prev:focus,
  .more .slick-next:hover,
  .more .slick-next:focus {
    outline: none;
    color: transparent;
  }
  .more .slick-prev {
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
    left: 10px;
  }
  .more .slick-next {
    right: 10px;
  }
  .more .slick-dots {
    bottom: -30px;
    left: 0;
  }

  .more .slick-dots li button {
    width: 10px;
    height: 10px;
  }
  .more .slick-dotted.slick-slider {
    margin-block-end: 30px;
  }
}
.testimonials {
  padding-block-start: 70px;
  background: url(../images/voice_bg.jpg) no-repeat center / cover;
}

.testimonials_item {
  border: 5px solid var(--text-bg);
  margin-block-start: 40px;
}

.testimonials_item-head {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.8;
  display: block;
  background: linear-gradient(45deg, #50a400, #85cb42);
  text-align: center;
  color: #fff;
  padding-block: 8px;
}

.testimonials_item-body {
  background: #fff;
  padding: 40px 57px;
}

.testimonials_desc {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .testimonials {
    padding-block: 40px 50px;
  }

  .testimonials_item {
    border: 3px solid var(--text-bg);
    margin-block-start: 20px;
  }

  .testimonials_item-head {
    font-size: 2rem;
    padding-block: 6px;
  }

  .testimonials_item-body {
    padding: 30px 21px;
  }

  .testimonials_desc {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.case {
  background: url(../images/case_bg.png) no-repeat center center / cover, #f6f6f6;
}

.case_list {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-block-start: 16px;
}

.case_item {
  padding-block-start: 64px;
  position: relative;
}
.case_item:before {
  content: '';
  position: absolute;
  width: 128px;
  height: 128px;
  background: var(--text-bg);
  border-radius: 50%;
  top: 0;
  left: 50%;
  translate: calc(-50% + 10px) 10px;
  z-index: -1;
}

.case_item-inner {
  background: #fff;
  padding: 0 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 10px 10px 0 var(--text-bg);
}
.case_figure {
  aspect-ratio: 1;
  width: 128px;
  margin-block-start: -64px;
  margin-inline: auto;
}

.case_example {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.04em;
  display: block;
  background: var(--primary);
  border-radius: 999px;
  padding: 6px 20px 5px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.case_achievement {
  aspect-ratio: 330 / 80;
  width: 100%;
}

.case_achievement2 {
  zoom: 0.5;
}

@media screen and (max-width: 768px) {
  .case {
    background: url(../images/case_bg-sp.png) no-repeat center center / cover, #f6f6f6;
    padding-inline: 13px;
  }

  .case_list {
    max-width: 860px;
    margin-inline: auto;
    display: block;
    margin-block-start: 27px;
    padding-inline: 0px;
  }

  .case_item {
    padding-block-start: 54px;
    margin: 7px;
  }
  .case_item:before {
    width: 107px;
    height: 107px;
    translate: calc(-50% + 6px) 6px;
  }

  .case_item-inner {
    background: #fff;
    padding: 0 27px 27px;
    gap: 12px;
    box-shadow: 7px 7px 0 var(--text-bg);
  }
  .case_figure {
    width: 107px;
    margin-block-start: -54px;
  }

  .case_example {
    font-size: 1.4rem;
    padding: 5px 20px 3px;
  }

  .case_achievement2 {
    zoom: 1;
  }
}

.flow {
  padding-block: 70px 80px;
}
.flow_list-wrap {
  overflow: auto;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block: 40px 34px;
  }
  .flow_list-wrap {
    overflow: auto !important;
    margin-right: -20px;
    margin-top: 10px;
  }
}
.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;
  width: 982px;
  padding-block: 10px;
}
@media screen and (max-width: 768px) {
  .flow_list {
    width: 871px;
    margin-bottom: 16px;
    padding-inline-end: 20px;
  }
}
.flow_list-first {
  position: relative;
}
.flow_list-first img {
  width: 147px;
  height: 148px;
  margin-inline-end: 55px;
}
.flow_list-first a {
  text-decoration: none;
}
.flow_list-item {
  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;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 997px;
  margin-inline-start: -20px;
}
@media screen and (max-width: 768px) {
  .flow_list-first img {
    scale: calc(113 / 125);
    margin-inline-end: 73px;
  }
}

.push {
  padding-top: 80px;
  padding-bottom: 120px;
  background: url(../images/push_bg.jpg) no-repeat center/cover;
  position: relative;
}
.push::after {
  content: '';
  position: absolute;
  width: 544px;
  height: 113px;
  background: url(../images/push_deco.png) center/contain no-repeat;
  left: 50%;
  bottom: 60px;
  translate: -50% 0;
}
@media screen and (max-width: 768px) {
  .push {
    padding-top: 40px;
    padding-bottom: 97px;
  }

  .push::after {
    width: 330px;
    bottom: 35px;
  }
}
.push_title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.push_title-inner {
  display: block;
  transform: skew(-8deg);
}
@media screen and (max-width: 768px) {
  .push_title {
    font-size: 2.8rem;
  }
}
.push_list {
  position: relative;
  max-width: 722px;
  width: 100%;
  margin: 40px auto 0;
  padding: 54px 20px 70px 89px;
  background: #fff;
  box-shadow: 9px 9px 0 var(--text-bg);
}
@media screen and (max-width: 768px) {
  .push_list {
    margin-top: 20px;
    padding: 30px 20px 50px 34px;
  }
}

.push_list-item {
  position: relative;
  padding-left: 42px;
  color: #039b41;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.push_list-item:not(:first-child) {
  margin-top: 18px;
}
.push_list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background: url(../images/check-icon2.svg) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .push_list-item {
    font-size: 1.8rem;
    padding-inline-start: 32px;
  }
  .push_list-item::before {
    width: 24px;
    height: 24px;
  }
}

.request {
  position: relative;
  padding-top: 132px;
  padding-bottom: 80px;
  background: url(../images/request_bg.jpg) no-repeat center/cover;
}
.request_title {
  position: absolute;
  top: -62px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}
.request_title-inner {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .request {
    background: url(../images/request_bg-sp.jpg) no-repeat center/cover;
    padding-block: 79px 60px;
  }
  .request_title {
    top: -59px;
  }
  .request_title-inner {
    width: calc(100% - 40px);
    min-width: 330px;
    max-width: 360px;
  }
}
.request_note {
  text-align: center;
  font-weight: 400;
}
.request_note-mail {
  display: inline;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .request_note-mail {
    display: block;
    font-size: 1.3rem;
  }
}
.request_note-supp {
  display: inline;
  font-size: 1.4rem;
}
@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: 40px 70px;
  margin: 30px auto 0;
  box-shadow: 10px 10px 0 var(--text-bg);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .request_panel {
    padding: 40px 20px;
    margin-top: 17px;
    box-shadow: 7px 7px 0 var(--text-bg);
  }
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 9px 23px;
  margin: 0 auto;
  background-color: var(--orange);
  color: #fff;
  font-size: 1.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .request_appeal {
    padding: 8px 19px;
    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;
}
@media screen and (max-width: 768px) {
  .request_require-note {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}
.request_form {
  font-family: var(--font2);
  margin-top: 24px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .request_form {
    margin-top: 17px;
  }
}

.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-family: var(--font2);
}
.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: 160px;
  font-family: var(--font2);
}
.form .form-select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 52px;
  padding: 14px;
  background-color: #fafafa;
  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 #039b41;
  font-family: var(--font2);
}
.form .form-select--initial {
  background-color: #fff;
  color: #393939;
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: #fff;
  border: 2px solid #039b41;
  border-radius: 50px;
  color: #039b41;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1428571429;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  font-family: var(--font2);
}

@media screen and (max-width: 768px) {
  .form .form-text {
  }
  .form .form-zip-btn {
    padding: 16px 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: 12px;
  color: #202020;
  font-family: var(--font2);
}
@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: 116px;
  text-align: right;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: var(--font2);
}
@media screen and (max-width: 768px) {
  .form_title {
    width: auto;
    text-align: left;
    font-size: 1.4rem;
  }
}
.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: #039b41;
  -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;
    display: flex;
    align-items: center;
  }
  .form .form_item--radio .wpcf7-radio .wpcf7-list-item {
    margin: 0;
  }
  .form .form_item--radio .wpcf7-radio .wpcf7-list-item + .wpcf7-list-item {
    margin-inline-start: 21px;
  }
}
.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: 27px;
  font-size: 1.9rem;
  line-height: 1.25;
  cursor: pointer;
  font-weight: 400;
  font-family: var(--font2);
}
.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: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid #039b41;
  border-radius: 50%;
  cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #039b41;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
}
.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: 30px;
    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;
  font-weight: 400;
}
@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;
    width: 10px;
    height: 5px;
  }
}
.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: 130px;
  /* color: #9b9b9b; */
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .form_note {
    margin-left: 0;
  }
}
.form_privacy-policy-wrap {
  margin-top: 42px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy-wrap {
    margin-top: 12px;
  }
}
.form_privacy-policy {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 400;
  color: #222;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy {
    font-size: 1.2rem;
    margin-block-start: 0;
  }
}
.form_submit-wrap {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_submit-wrap {
    margin-top: 20px;
  }
}
.form_submit {
  position: relative;
  width: 300px;
  padding-top: 17px;
  padding-bottom: 17px;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: #039b41;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 4px 0 rgb(0 0 0 / 0.25);
}
@media screen and (max-width: 768px) {
  .form_submit {
    width: 222px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 1.6rem;
    box-shadow: 0 3px 0 rgb(0 0 0 / 0.25);
  }
}
.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: 14px;
    width: 8px;
    height: 8px;
  }
}

.footer {
  padding-top: 35px;
  padding-bottom: 30px;
  background-color: var(--text-bg);
  color: #fff;
  font-family: var(--font2);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 22px;
  }
}
.footer_inner {
  position: relative;
  max-width: 1000px;
  padding: 0 17px;
  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;
  }
}
.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;
}
.footer_head-office {
  margin-top: 8px;
  font-size: 1.4rem;
  font-weight: bold;
}
.footer_address {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
}
.footer_contact {
  margin-top: 19px;
  border: 1px solid #fff;
  font-size: 1.3rem;
  border-radius: 999px;
}
@media screen and (max-width: 768px) {
  .footer_contact {
    display: block;
    width: max-content;
  }
}
.footer_contact-link {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.6;
  padding: 13px 28px 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.07em;
  position: relative;
}
.footer_contact-link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.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_contact {
    margin-block-start: 37px;
  }
  .footer_contact-link {
    padding: 8px 35px 9px 19px;
  }
  .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: linear-gradient(to top, var(--yellow) 0, var(--yellow) 42%, transparent 42%, transparent 100%);
}

.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);
}

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

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

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

.bold {
  font-weight: bold;
}
