@-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: 'M PLUS 1', sans-serif;
  --font3: 'Montserrat', sans-serif;
  --font4: 'Noto Serif JP', serif;
  --font5: 'Oswald', sans-serif;
  --font6: 'Kaisei Decol', serif;
  --primary: #00acb9;
  --yellow: #fff676;
  --white: #fff;
  --deepblue: #0082a2;
  --text: #464646;

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

main {
  max-width: 390px;
  margin-inline: auto;
}

img {
  max-width: 100%;
}

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

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

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: 8px 12px 7px;
  padding-right: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background-color: #ff6385;
  border-radius: 40px;
  -webkit-box-shadow: 0 7px 0 rgb(220, 18, 61, 1);
  box-shadow: 0 7px 0 rgba(220, 18, 61, 1);
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
  min-height: 54px;
  padding-left: 68px;
  font-size: 23px;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 9px;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: var(--white);
}
.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: #fff;
  border-radius: 50%;
  width: 49px;
  height: 49px;
}
.btn_appeal-inner {
  text-align: center;
  color: #ff6385;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}
.btn_recommend {
  display: block;
  letter-spacing: 0.08em;
  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-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 {
  color: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block-start: 40px;
  position: relative;
}

.sect-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  aspect-ratio: 335 / 54;
  background: url(../images/sect-title_deco.svg) center/contain no-repeat;
}

.sect-title_main {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font2);
  line-height: 1.5;
}

.sect-title_sub {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-family: unset;
}

.sect-title--2.sect-title::before {
  background-image: url(../images/sect-title_deco-bk.svg);
}

.sect-title--2 .sect-title_main {
  color: var(--primary);
}

.sect-title--2 .sect-title_sub {
  color: var(--text);
}

.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: 26px;
  height: 92px;
  padding: 0;
  background-color: rgba(255, 99, 133, 0.7);
  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: 10px;
  height: 10px;
  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: 0;
  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;
  border-radius: 50%;
  padding: 0;
  background-color: #eaeaea;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: var(--yellow);
}

.cont {
  padding: 40px 20px 44px;
}

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

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

.header {
  max-width: 390px;
  margin: 0 auto;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}

.header .header_inner {
}

.header .header_inner .header-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 21px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  position: relative;
}
.header .header_inner .header-logo .header_fc-logo {
  width: 118px;
  display: inline-block;
  flex-shrink: 0;
}
.header .header_inner .header-logo .header_brand-logo {
  width: 157px;
  display: inline-block;
  flex-shrink: 0;
}
.header .header_inner .header-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 26px;
  height: 1.8px;
}
.header .header_inner .header-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 26px;
  height: 1.8px;
}
.header-thanks-text {
  display: none;
}

.hero {
  position: relative;
  padding-bottom: 84px;
  max-width: 390px;
  background: url(../images/hero_bg01.png) center/cover no-repeat;
}

.hero_msg {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero_appeal {
  margin-block-start: 115px;
  padding-inline: 20px;
}
.hero-bottom {
  margin-block-start: -90px;
}

.condition {
  padding-block-start: 56px;
}

.condition_title {
  padding-block-start: 52px;
}

.condition_title .sect-title_main {
  line-height: 1.25;
  margin-block-start: 10px;
}
.condition_title .sect-title_main span {
  background: linear-gradient(
    to top,
    transparent 0,
    transparent 10%,
    var(--yellow) 10%,
    var(--yellow) 32%,
    transparent 32%
  );
}

.condition_title .sect-title_sub {
  font-family: var(--font2);
  font-size: 2.2rem;
  font-weight: 400;
}

.condition_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-block-start: 25px;
}
.condition_item {
  box-sizing: border-box;
  border-radius: 46px;
  background: var(--yellow);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 4px #d9ebed;
  width: calc(50% - 8px);
  aspect-ratio: 1;
}

.condition_item:nth-child(2) .condition_item-text {
  font-size: 2rem;
}
.condition_item:nth-child(5) .condition_item-text {
  font-size: 2.2rem;
}

.condition_item-index {
  background: var(--white);
  border-radius: 50%;
  empty-cells: 43px;
  width: 43px;
  height: 43px;
  margin-inline: auto;
  text-align: center;
  display: grid;
  place-items: center;
}

.condition_item-index span {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  font-family: var(--font3);
  color: #acacac;
}

.condition_item-text {
  color: var(--deepblue);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.3;
  font-family: var(--font2);
  text-align: center;
}
.condition_bottom {
  margin-block-start: 16px;
  width: 100%;
}

.about {
  background: url(../images/about_bg.jpg) center top/100% no-repeat;
  padding-bottom: 100px;
  padding-top: 65px;
  padding-bottom: 125px;
}
.about_img {
  margin-block-start: 40px;
  aspect-ratio: 335 / 223;
  border-radius: 24px;
  overflow: hidden;
}

.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_desc {
  margin-top: 32px;
  line-height: 1.5;
  font-size: 1.6rem;
  color: var(--white);
}

.reasons {
  background: url(../images/reason_bg.png) no-repeat center top / 100%,
    linear-gradient(to bottom, transparent 0, transparent 55px, var(--yellow) 55px, var(--yellow) 100%);
  margin-block-start: -80px;
  padding-block: 80px;
}
.reasons_list {
  margin-block-start: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reasons_list-item {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
  box-shadow: 0 4px 4px rgba(207, 200, 104, 1);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}

.reasons_item-index {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: var(--white);
  font-weight: 400;
  font-family: var(--font2);
  font-size: 1.6rem;
  font-style: italic;
  display: inline-block;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 8px 17px 9px;
}

.reasons_item-body {
  background: var(--white);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reasons_item-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.3;
  font-family: var(--font2);
}

.reasons_item-desc {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: var(--font2);
}

.reasons_item-img {
}

.message {
  background: url(../images/bg_white.png) no-repeat center top / 100%,
    linear-gradient(to bottom, transparent 0, transparent 55px, var(--white) 55px, var(--white) 100%);
  margin-block-start: -30px;
  padding-block-start: 54px;
}

.message_desc {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-block-start: 24px;
}

.message_cta {
  margin-block-start: 24px;
}

.revenue {
  background: url(../images/bg_blue.png) no-repeat center top / 100%,
    linear-gradient(to bottom, transparent 0, transparent 55px, var(--primary) 55px, var(--primary) 100%);
  padding-inline: 20px;
  padding-block-start: 84px;
}
.revenue_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .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: 20px;
}

.revenue_example {
  position: relative;
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 4px var(--yellow);
}

.revenue_example-title {
  position: absolute;
  background: var(--primary);
  color: var(--white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 3px 16px 6px;
  top: 0;
  left: 50%;
  translate: -50% 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  font-family: var(--font4);
  min-width: 130px;
  text-align: center;
}

.revenue_example-body {
  position: relative;
  padding-block-end: 27px;
}

.revenue_info {
  background: var(--white);
  box-shadow: 0 4px 4px rgba(233, 233, 233, 1);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  font-family: var(--font2);
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 10px 16px;
  translate: 0 -50%;
}

.revenue_info-age {
  padding-inline-end: 7px;
}

.revenue_info-job {
  display: inline-block;
  padding-inline-start: 7px;
  border-inline-start: 2px solid #b0b0b0;
}

.revenue_achievement {
  margin-top: -10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.revenue_achievement-speech {
  background: #ff6385;
  position: relative;
  width: fit-content;
  padding: 4px 9px;
}
.revenue_achievement-speech::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  translate: calc(100% - 1px) -50%;
  width: 9px;
  height: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #ff6385;
}
.revenue_achievement-speech span {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.42;
}

.revenue_achievement-cont {
  width: fit-content;
  position: relative;
}
.revenue_achievement-cont::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 100%;
  height: 21px;
  background: var(--yellow);
}

.revenue_achievement-num {
  font-size: 6.4rem;
  font-weight: 500;
  line-height: 1.42;
  color: #ff6385;
  font-family: var(--font5);
  position: relative;
  z-index: 2;
}
.revenue_achievement-text {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.42;
  letter-spacing: 0.05em;
  color: #ff6385;
  position: relative;
  z-index: 2;
}

.flow {
  padding-top: 57px;
  background: url(../images/bg_yellow.png) no-repeat center top / 100%,
    linear-gradient(to bottom, transparent 0, transparent 55px, var(--yellow) 55px, var(--yellow) 100%);
  margin-block-start: -25px;
}
.flow_list-wrap {
  overflow-x: auto;
  margin-top: 16px;
  /* margin-right: -17px; */
}

.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: max-content;
  padding-block: 16px;
  /* padding-inline-end: 20px; */
}
.flow_list-first {
  padding-right: 12px;
  padding-right: 7px;
}
.flow_list-first a {
  text-decoration: none;
  color: var(--text);
}
.flow_list-first img {
  translate: 5px 0;
}

.flow_list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -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: 130px;
  height: auto;
  margin-left: 32px;
  border-radius: 24px;
  box-shadow: 0 4px 4px rgba(210, 210, 210, 0.25);
}
.flow_list-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -23px;
  width: 16px;
  height: 24px;
  translate: 0 -50%;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.flow_list-item--pink:last-child::before {
  background: #ff6385;
}
.flow_list-item--pink .flow_item-head {
  background: #ff6385;
}
.flow_list-item--pink .flow_item-head::after {
  background-color: #ff6385;
}

.flow_item-head {
  background: var(--primary);
  position: relative;
  text-align: center;
  padding: 14px 24px 15px;
  width: 100%;
  box-sizing: border-box;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.flow_item-head::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 21px;
  height: 10px;
  background-color: var(--primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% 100%;
}

.flow_item-index {
  font-family: var(--font6);
  color: var(--yellow);
  font-size: 2rem;
  line-height: 1.04;
  letter-spacing: 0.1em;
}

.flow_item-index span {
  font-size: 2.6rem;
}

.flow_item-body {
  background: var(--white);
  text-align: center;
  padding: 16px 10px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.flow_item-text {
  font-weight: 700;
  font-family: var(--font2);
  font-size: 1.8rem;
}

.push {
  background-color: var(--primary);
  padding-top: 25px;
  padding-bottom: 78px;
}
.push_title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.push_title em {
  font-size: 2.4rem;
}

.push_list {
  position: relative;
  width: 100%;
  margin: 22px auto 0;
}
.push_list-item {
  position: relative;
  padding-left: 28px;
  color: #fff;
  line-height: 1.4;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
}
.push_list-item:not(:first-child) {
  margin-top: 11px;
}
.push_list-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  background-color: var(--yellow);
}
.push_list-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  translate: 0 -60%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 4px;
  width: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

.request {
  position: relative;
  padding-top: 70px;
  padding-bottom: 58px;
  background: #ededed;
}
.request_title {
  position: absolute;
  top: -62px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% - 40px);
}
.request_title-inner {
  width: 100%;
  text-align: center;
}
.request_note {
  text-align: center;
}
.request_note-mail {
  display: inline;
  line-height: 1.5;
  display: block;
  font-size: 1.3rem;
}
.request_note-supp {
  display: inline;
  font-size: 1.2rem;
  line-height: 1.5;
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 28px auto 0;
  margin-top: 12px;
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  background-color: #ff426f;
  border-radius: 999px;
  color: #fbff49;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 1.5rem;
}
.request_appeal-em {
  font-size: 1.8rem;
}
.request_require-note {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 12px;
  font-weight: 300;
}
.request_form {
  margin-top: 12px;
}

.form .form-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 50px;
  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: var(--text);
  font-size: 1.6rem;
  line-height: 1.5;
}
.form .form-text::-webkit-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::-moz-placeholder {
  color: #c0c0c0;
}
.form .form-text:-ms-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::-ms-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::placeholder {
  color: #c0c0c0;
}
.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-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: var(--text);
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid var(--primary);
}
.form .form-select--initial {
  background-color: #fff;
  color: var(--text);
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1428571429;
  cursor: pointer;
  padding: 16px 30px;
  background: var(--white);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.form .wpcf7-form-control-wrap {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
  display: block;
}
.form_item:not(:first-child) {
  margin-top: 20px;
}
.form_item--short .wpcf7-form-control-wrap {
  max-width: 240px;
  max-width: 145px;
}
.form_item--has-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.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%;
}
.form_item--has-btn .form-zip-btn {
  margin-top: 10px;
  margin-left: 0;
}
.form_item--left {
  float: left;
  width: 50%;
  float: none;
  width: auto;
}
.form_item--right {
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: none;
  width: auto;
}
.form_title {
  display: block;
  width: 110px;
  text-align: right;
  font-size: 1.5rem;
  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-text.form-textarea {
  height: 186px;
}

.form .form_item--select .wpcf7-form-control-wrap {
  position: relative;
  max-width: 240px;
  max-width: 200px;
}
.form .form_item--select .wpcf7-form-control-wrap::after {
  content: '';
  display: block;
  position: absolute;
  top: 24px;
  right: 12px;
  width: 10px;
  height: 8px;
  background-color: var(--primary);
  -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;
  margin-top: 0;
  margin-left: 0;
  display: flex;
  gap: 15px;
}

.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;
  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: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.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: var(--primary);
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
  margin-top: -12px;
  margin-left: -36px;
  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;
  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;
  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;
  width: 20px;
  height: 20px;
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-60%) rotate(-45deg);
  transform: translateY(-60%) rotate(-45deg);
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  cursor: pointer;
  left: 4px;
}
.form .form_item--optional:not(._) {
  margin-top: 34px;
  text-align: center;
  margin-top: 20px;
}
.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: #5e544e;
  text-align: left;
  font-size: 1.2rem;
}

/* .form .invalid {
  background-color: #ffa4a4;
  color: #fff;
}
.form .invalid::-webkit-input-placeholder {
  color: #fff;
}
.form .invalid::-moz-placeholder {
  color: #fff;
}
.form .invalid:-ms-input-placeholder {
  color: #fff;
}
.form .invalid::-ms-input-placeholder {
  color: #fff;
}
.form .invalid::placeholder {
  color: #fff;
} */
.form .wpcf7-not-valid-tip {
  margin-top: 4px;
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
  background: #f6f6f6;
  color: var(--text);
}
.form_note {
  margin-top: 8px;
  margin-left: 126px;
  color: #5e544e;
  font-size: 1.3rem;
  line-height: 1.5;
  margin-left: 0;
}
.form_privacy-policy-wrap {
  text-align: center;
  margin-top: 20px;
}
.form_privacy-policy {
  display: inline-block;
  line-height: 1.8;
  font-size: 1.2rem;
  font-weight: 400;
}

.form_privacy-policy a {
  font-weight: 500;
}
.form_submit-wrap {
  margin-top: 24px;
  text-align: center;
  margin-top: 12px;
}
.form_submit {
  position: relative;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
  width: 222px;
  padding-top: 10px;
  padding-bottom: 14px;
  font-size: 1.6rem;
}
.form_submit::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  right: 14px;
}

.footer {
  padding-top: 35px;
  padding-bottom: 30px;
  background-color: var(--primary);
  color: #fff;
  padding-top: 32px;
  padding-bottom: 40px;
  max-width: 390px;
  margin-inline: auto;
}
.footer_inner {
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
}
.footer_about-franchise-salon {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 14px 25px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #fff;
  color: var(--text);
  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-weight: bold;
  font-size: 1.6rem;
}
.footer_about-logo {
  display: inline-block;
  width: 173px;
}
.footer_about-desc {
  margin-top: 4px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1.5;
  color: var(--text);
}
.footer_company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 25px auto 0;
  -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;
  padding-left: 0;
  border: none;
}

.footer_info + .footer_info {
  margin-top: 50px;
}

.footer_company {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: calc(22 / 14);
}
.footer_head-office {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: calc(22 / 14);
}
.footer_address {
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.07em;
  line-height: 1.5;
}
.footer_contact {
  display: grid;
  grid-template: auto/1fr 1fr;
  margin-top: 24px;
  display: block;
  border-radius: 999px;
  border: 1px solid;
  width: fit-content;
  position: relative;
}
.footer_contact::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  width: 8px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer_contact-link {
  display: block;
  grid-area: 1/2/2/3;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.6;
  padding: 10px 42px 10px 24px;
  text-decoration: none;
  line-height: calc(22 / 13);
  letter-spacing: 0.07em;
}
.footer_copyright {
  display: block;
  text-align: center;
  color: var(--white);
  font-weight: 500;
  font-size: 1.2rem;
}
.footer--copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--primary);
}

/* ========================
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) 30%, transparent 30%);
}

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

.E42D2D {
  color: #e42d2d;
}

.bold {
  font-weight: bold;
}
