@-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 {
  --black: #313131;
  --blue: #2e527c;
  --pink: #eb4683;
  --gold: #ece4c7;
  --ja: "Noto Sans JP", sans-serif;
  --roboto: "Roboto", sans-serif;
  --antique: "Zen Antique", serif;

  color: var(--black);
  font-family: var(--ja);
  font-weight: 400;
}

img {
  max-width: 100%;
}

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

ul,
ol {
  list-style: none;
}

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

/* ========================
Common
======================== */
.btn {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
  padding: 7px 33px 8px 72px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: 65px;
  background-color: #eb4683;
  border-radius: 999px;
  box-shadow: 0 6px 0 #a43f64;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .btn {
    min-height: 54px;
    padding-left: 70px;
    font-size: 23px;
    width: 100%;
    max-width: 335px;
    box-shadow: 0 8px 0 #a43f64;
    padding-block: 9px 6px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 13px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .btn::after {
    width: 12px;
    height: 8px;
  }
}
.btn_appeal {
  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: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: #ffef74;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .btn_appeal {
    width: 49px;
    height: 49px;
  }
}
.btn_appeal-inner {
  text-align: center;
  color: #eb4683;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .btn_appeal-inner {
    font-size: 14px;
  }
}
.btn_recommend {
  display: block;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn_recommend {
    font-size: 13px;
  }
}
.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.btn--lg {
  font-size: 3.6rem;
  padding-inline: 100px 47px;
  padding-block: 10px 11px;
  box-shadow: 0 8px 0 #a43f64;
}
.btn.btn--lg::after {
  width: 25px;
  height: 17px;
}

.btn.btn--lg .btn_appeal {
  width: 77px;
  height: 77px;
}

.btn.btn--lg .btn_appeal-inner {
  font-size: 2.2rem;
}

.btn.btn--lg .btn_recommend {
  font-size: 1.9rem;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .btn-wrap {
    margin-top: 20px;
  }
}

.sect-title {
  display: flex;
  justify-content: center;
}
.sect-title img {
  zoom: 0.5;
}
@media screen and (max-width: 768px) {
  .sect-title img {
    width: 100%;
  }
}

.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: -17px;
  margin-right: -17px;
}
.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-color: rgba(46, 82, 124, 0.7);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
  outline: none;
  color: transparent;
  cursor: pointer;
}
.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: 12px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px 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: -17px;
}
.slick-next {
  right: -17px;
}
.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: -17px;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: #d6dbe9;
  border-radius: 50%;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: var(--blue);
}

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

.sect-wrap1 {
  background: linear-gradient(to bottom, #fff 16.6%, #f0f2f5 100%);
}

.sect-wrap2 {
  background: url(../images/sect-wrap2_bg.png) center top / cover no-repeat;
  margin-block-start: -70px;
}
@media screen and (max-width: 768px) {
  .sect-wrap1 {
    background: linear-gradient(to bottom, #fff 22.2%, #f0f2f5 100%);
  }
  .sect-wrap2 {
    margin-block-start: -22px;
    background: url(../images/sect-wrap2_bg-sp.png) center top / cover no-repeat;
  }
}

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

.header {
  max-width: 1000px;
  width: fit-content;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 240px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 5;
}
.header .header-logo {
  display: flex;
  gap: 41px;
  align-items: center;
  justify-content: center;
  padding: 13px 16px 12px 14px;
  border-radius: 0 0 20px 0;
  position: relative;
}
.header .header-logo .header_brand-logo {
  width: 70px;
  display: inline-block;
}
.header .header-logo .header_fcs-logo {
  width: 153px;
  display: inline-block;
}
.header .header-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 20px;
  height: 2px;
}
.header .header-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 20px;
  height: 2px;
}
.header-thanks-text {
  display: none;
}
@media (max-width: 768px) {
  .header {
    left: 21px;
    padding: 0;
    border-bottom-right-radius: 11px;
    border-bottom-left-radius: 11px;
  }
  .header .header-logo {
    margin: 0 auto;
    gap: 39px;
    width: 241px;
    padding: 11px 5px 13px 6px;
  }

  .header .header-logo::before {
    width: 22px;
    height: 1px;
    left: 38%;
  }

  .header .header-logo::after {
    width: 22px;
    height: 1px;
    left: 38%;
  }

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

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

.hero {
  position: relative;
  padding-block: 63px 115px;
  background: url(../images/hero_bg.jpg) center/cover no-repeat;
}
.hero_main {
  aspect-ratio: 624 / 483;
  max-width: 624px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .hero {
    background: url(../images/hero_bg-sp.jpg) center/cover no-repeat;
    padding: 112px 11px 32px;
  }

  .hero_main {
    aspect-ratio: 351 / 330;
    max-width: 351px;
  }
}

.hero-bottom {
  padding-top: 11px;
  padding-bottom: 15px;
  background-color: rgb(255 255 255 / 0.8);
  margin-block-start: -93px;
  position: relative;
  z-index: 5;
}
.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;
  max-width: 857px;
}

.hero-bottom_text {
  font-size: 1.8rem;
  line-height: 1.5;
  display: block;
  margin-block-start: 4px;
}
.hero-bottom_text em {
  font-weight: 700;
  color: var(--blue);
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .hero-bottom {
    background: #d1cfce;
    padding-block: 14px 22px;
    margin-block-start: 0;
  }
  .hero-bottom_inner {
    flex-direction: column;
    gap: 17px;
  }
  .hero-bottom_text {
    font-weight: 700;
    color: var(--blue);
    text-align: center;
    font-size: 1.6rem;
  }
  .hero-bottom_text em {
    font-size: 2rem;
  }
}

.about {
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.about_body {
  display: flex;
  align-items: center;
  gap: 43px;
  margin-block-start: 50px;
}

.about_desc {
  font-size: 1.8rem;
  line-height: 2;
  display: block;
  width: 50%;
  text-align: justify;
  letter-spacing: 0.1em;
}

.about_img {
  box-shadow: -16px 16px 0 #d6dbe9;
  width: calc(457 / 1000 * 100%);
  flex-shrink: 0;
  aspect-ratio: 457 / 275;
  overflow: hidden;
}
.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .about_body {
    flex-direction: column;
    gap: 32px;
    margin-block-start: 32px;
  }
  .about_desc {
    font-size: 1.6rem;
    width: 100%;
  }
  .about_img {
    box-shadow: -8px 8px 0 #d6dbe9;
    width: 100%;
    aspect-ratio: 335 / 173;
  }
}

.reasons {
  position: relative;
  padding-block: 80px 125px;
}
@media screen and (max-width: 768px) {
  .reasons {
    padding-top: 52px;
    padding-bottom: 63px;
  }
}
.reasons_title-inner {
  margin-top: -16px;
  color: #fff;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .reasons_title-inner {
    margin-top: -5px;
    font-size: 2.8rem;
  }
}
.reasons_list {
  display: grid;
  grid-template: auto auto/1fr 1fr;
  gap: 20px 26px;
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .reasons_list {
    grid-template: repeat(4, auto) / auto;
    row-gap: 20px;
    margin-top: 32px;
  }
}

.reasons_list-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  box-shadow: 0 4px 4px rgba(111, 121, 140, 0.15);
}

.reasons_body {
  background: #fff;
  padding: 12px 12px 18px 0;
  display: grid;
  grid-template-columns: 86px 1fr;
  grid-template-rows: auto 1fr;
  row-gap: 11px;
}

.reasons_item-index {
  grid-column: 1;
  grid-row: 1 / -1;
}

.reasons_item-title {
  grid-column: 2;
  grid-row: 1;
  margin-block-start: 8px;
  width: calc(387 / 486 * 100%);
  max-width: 387px;
}

.reasons_item-desc {
  font-size: 1.6rem;
  line-height: 1.5;
  grid-column: 2;
  grid-row: 2;
  margin-inline-end: 12px;
}

.reasons_item-img {
  aspect-ratio: 486 / 240;
  width: 100%;
}
.reasons_item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .reasons_body {
    padding: 7px 16px 16px 15px;
    grid-template-columns: 33px 1fr;
    grid-template-rows: auto 1fr;
    gap: 8px 10px;
  }

  .reasons_item-index {
  }

  .reasons_item-title {
    margin-block-start: 5px;
    width: 258px;
    display: block;
  }

  .reasons_item-desc {
    font-size: 1.4rem;
    margin-inline-end: 0;
  }

  .reasons_item-img {
    aspect-ratio: 486 / 240;
    width: 100%;
  }
  .reasons_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.revenue {
  padding-block: 66px 80px;
}
.revenue_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .revenue {
    padding-block: 55px 45px;
  }
  .revenue_list {
    margin-top: 20px;
  }
}
.revenue_list-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 25px 25px;
  background-color: #fff;
  box-shadow: 0 4px 4px rgba(111, 121, 140, 0.15);
}
@media screen and (max-width: 768px) {
  .revenue_list-item {
    padding: 0 16px 17px;
    margin: 10px 20px;
  }
}
.revenue_example {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 24px;
  margin: 0 auto;
  background: linear-gradient(to bottom, #fff4d1 0, #e3d197 100%);
  color: var(--blue);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .revenue_example {
    padding: 7px 15px;
    font-size: 1.8rem;
  }
}

.revenue_achievement1 {
  width: 100%;
  max-width: 500px;
  margin-block-start: 12px;
  margin-inline: auto;
}
.revenue_achievement2 {
  width: calc(320 / 488 * 100%);
  max-width: 420px;
  margin-block-start: 3px;
  margin-inline: auto;
}
.revenue_download {
  position: relative;
  margin-top: 21px;
  text-align: center;
}
.revenue_mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .revenue_achievement1 {
    width: 100%;
    margin-block-start: 4px;
  }
  .revenue_achievement2 {
    margin-block-start: 2px;
  }
  .revenue_download {
    margin-top: 14px;
  }
}
.revenue_supp {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  padding: 20px 8px;
  background-color: #fff;
  border-radius: 6px;
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .revenue_supp {
    padding: 12px 4px;
    border-radius: 4px;
    font-size: 1.3rem;
  }
}

.flow {
  padding-top: 0;
  padding-bottom: 80px;
}

.flow_list-wrap {
  overflow: visible !important;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block: 0 40px;
  }
  .flow_list-wrap {
    overflow: auto !important;
    margin-right: -20px;
    margin-top: 36px;
  }
}
.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;
}
@media screen and (max-width: 768px) {
  .flow_list {
    width: 1014px;
    margin-bottom: 16px;
    padding-inline-end: 20px;
  }
}
.flow_list-first {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  margin-block-start: 26px;
}
.flow_list-first img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(5px 5px 0 rgb(0 0 0 / 0.15));
  box-shadow: 5px 5px 0 rgb(0 0 0 / 15%);
  border-radius: 50%;
}
.flow_list-first a {
  text-decoration: none;
}
.flow_list-first p {
  display: block;
  white-space: nowrap;
  margin-block-start: 8px;
  color: #000;
}
.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: 969px;
  margin-inline-start: -20px;
}
.push {
  padding-top: 47px;
  padding-bottom: 135px;
  background-color: var(--blue);
}
@media screen and (max-width: 768px) {
  .push {
    padding-top: 32px;
    padding-bottom: 92px;
  }
}
.push_title {
  text-align: center;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-family: var(--antique);
}
.push_title strong {
  line-height: 1.41;
  font-size: 3.2rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .push_title {
    font-size: 1.8rem;
  }

  .push_title strong {
    font-size: 2.3rem;
  }
}
.push_list {
  position: relative;
  width: 100%;
  margin: 40px auto 0;
  max-width: 858px;
}
@media screen and (max-width: 768px) {
  .push_list {
    margin-top: 21px;
    padding-block: 3px;
  }
}
.push_list-item {
  position: relative;
  padding-left: 41px;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  max-width: 640px;
  margin-inline-start: 110px;
  font-family: var(--antique);
}
.push_list-item em {
  color: var(--gold);
}

@media screen and (max-width: 768px) {
  .push_list-item {
    font-size: 1.8rem;
    margin-inline-start: 14px;
    padding-left: 36px;
  }
}
.push_list-item:not(:first-child) {
  margin-top: 18px;
}
.push_list-item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 21px;
  height: 21px;
  background-color: #dcc88e;
}
.push_list-item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 5px;
  width: 10px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
}

.request {
  position: relative;
  padding-top: 100px;
  padding-bottom: 88px;
  background: #eef0f4;
}
.request_title {
  position: absolute;
  top: -95px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 760px;
}
@media screen and (max-width: 768px) {
  .request {
    padding-block: 74px 75px;
  }
  .request_title {
    top: -68px;
    padding-inline: 20px;
    width: calc(100vw - 40px);
  }
  .request_title-inner {
    max-width: 370px;
    margin-inline: auto;
  }
  .push_list-item::before {
    top: 50%;
    translate: 0 -50%;
  }
  .push_list-item::after {
    top: calc(50% - 2px);
    translate: 0 -50%;
  }
}
.request_note {
  text-align: center;
  color: #393939;
}
.request_note span {
  color: #ff2667;
}

.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;
    line-height: 2;
    font-size: 1.2rem;
  }
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 858px;
  padding: 29px 85px 65px 70px;
  margin: 28px auto 0;
  border-radius: 6px;
  /* -webkit-box-shadow: 0 0 11px rgba(45, 45, 45, 0.21);
  box-shadow: 0 0 11px rgba(45, 45, 45, 0.21); */
  background: #fff;
}
@media screen and (max-width: 768px) {
  .request_panel {
    margin-top: 12px;
    padding: 0;
    background: transparent;
  }
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 9px 23px;
  margin: 0 auto;
  background-color: var(--pink);
  border-radius: 30px;
  color: #fff491;
  font-size: 1.8rem;
  white-space: nowrap;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .request_appeal {
    padding: 11px 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;
}
.request_require-note span {
  color: #ff2667;
}
@media screen and (max-width: 768px) {
  .request_require-note {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}
.request_form {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .request_form {
    margin-top: 4px;
  }
}

.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;
}
.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;
}
@media screen and (max-width: 768px) {
  .form .form-text {
    background: #fff;
  }
}
.form .form-textarea {
  height: 160px;
}
.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: var(--black);
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid var(--blue);
}
.form .form-select--initial {
  background-color: #fff;
  color: #393939;
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: none;
  border: 2px solid var(--blue);
  border-radius: 50px;
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1428571429;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .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-block-start: 8px;
  }
  .form .wpcf7-form-control-wrap:has(#your-zip),
  .form .wpcf7-form-control-wrap:has(button) {
    margin-block-start: 0;
  }
}

.form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@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: 0;
    margin-left: 0;
  }
}
.form_item--left {
  float: left;
  width: 51.5%;
}
@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: 48.5%;
}
@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;
}
.form_title--short {
  width: 100px;
}
@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: var(--blue);
  -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 {
    margin-top: 0;
  }
  .form .form_item--radio .wpcf7-list-item:first-child {
    margin-left: 0;
  }
}
.form .form_item--radio .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 27px;
  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: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.25);
}
.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: 9px;
  height: 9px;
  background-color: var(--blue);
  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;
    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: 37px;
  }
}
@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: #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: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy-wrap {
    margin-top: 16px;
  }
}
.form_privacy-policy {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy {
    font-size: 1.2rem;
  }
}
.form_submit-wrap {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_submit-wrap {
    margin-top: 12px;
  }
}
.form_submit {
  position: relative;
  width: 300px;
  padding-top: 17px;
  padding-bottom: 17px;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: var(--blue);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
}
@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: 10px;
    height: 10px;
  }
}

.footer {
  padding-top: 35px;
  padding-bottom: 30px;
  background-color: var(--blue);
  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;
}
@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: 11px 28px;
  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;
}

.highlight {
  background-color: var(--gold);
}

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

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

.yellow {
  color: #fff48f;
}

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

.bold {
  font-weight: bold;
}

.form__contact-class {
  display: none;
}
