@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* ========================
  Base
  ======================== */
html {
  font-size: 62.5%;
}

body {
  color: #2f292b;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #28387d;
}
a:hover, a:focus {
  opacity: 0.8;
}

ul,
ol {
  list-style: none;
}

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

/* ========================
  Common
  ======================== */
.btn {
  display: block;
  box-sizing: border-box;
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  box-shadow: 0 6px 0 #be0e01;
  border-radius: 100px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 23px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 18px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 768px) {
  .btn::after {
    right: 8px;
    width: 13px;
    height: 9px;
  }
}
.btn_inner {
  display: block;
  position: relative;
  padding-block: 10px;
  padding-left: 72px;
  padding-right: 40px;
  background-color: #f94a0b;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .btn_inner {
    padding-block: 6px;
    padding-left: 64px;
    padding-right: 32px;
  }
}
.btn_appeal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: #ffe458;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .btn_appeal {
    left: 9px;
    width: 49px;
    height: 49px;
  }
}
.btn_appeal-inner {
  text-align: center;
  color: #f94a0b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .btn_appeal-inner {
    font-size: 14px;
  }
}
.btn_recommend {
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .btn_recommend {
    font-size: 13px;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 769px) {
  .btn .wide {
    letter-spacing: 0.05em;
  }
}
.btn--gritter {
  overflow: hidden;
  position: relative;
}
.btn--gritter::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  z-index: 1;
  background-color: #fff;
  opacity: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
}

.btn-wrap {
  display: flex;
  justify-content: center;
  padding-block: 10px;
  padding-inline: 17px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .btn-wrap {
    padding-block: 16px;
  }
}

.sect-title {
  text-align: center;
  color: #2f292b;
}
.sect-title_en {
  background: linear-gradient(to top, transparent 35%, #ffe458 35%, #ffe458 65%, transparent 65%);
  color: #28387d;
  font-family: "Yellowtail", cursive;
  font-size: 4rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .sect-title_en {
    font-size: 1.8rem;
  }
}
.sect-title_ja {
  display: block;
}
.sect-title_ja-inner {
  display: inline-block;
  border-bottom: 6px solid #2f292b;
  font-size: 4.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sect-title_ja-inner {
    border-bottom-width: 5px;
    font-size: 3rem;
    line-height: 1.2;
  }
}

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

/* === Splide === */
.splide {
  margin-inline: -17px;
}

.splide__slide {
  padding-left: 17px;
}
@media screen and (min-width: 769px) {
  .splide__slide {
    flex-shrink: 1;
  }
}
.splide__slide:last-child {
  padding-right: 17px;
}

.splide__arrow--prev,
.splide__arrow--next {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
  width: 29px;
  height: 116px;
  padding: 0;
  background-color: rgba(177, 144, 75, 0.7);
  border: none;
  border-radius: 8px 0 0 8px;
  outline: none;
  color: transparent;
  cursor: pointer;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%) rotate(-45deg);
  width: 15px;
  height: 15px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

.splide__arrow--prev:disabled,
.splide__arrow--next:disabled {
  display: none;
}

.splide__arrow--prev {
  right: auto;
  left: 0;
  transform: translateY(-50%) scale(-1, 1);
}

.splide__pagination {
  margin-top: 16px;
  gap: 8px;
}

.splide__pagination__page {
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: #b3b3b3;
  border: 0;
  border-radius: 50%;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.splide__pagination__page.is-active {
  background-color: #826a37;
  cursor: default;
}

.cont {
  padding: 60px 17px;
}

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

/* ========================
  Blocks
  ======================== */
.header {
  position: relative;
  z-index: 1;
}
.header_inner {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  padding: 11px 22px;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .header_inner {
    position: static;
    translate: none;
    padding-block: 8px;
  }
}
.header_logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 58px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header_logo {
    justify-content: center;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}
.header_logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 31.5789473684%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 30px;
  height: 1.8px;
}
@media screen and (max-width: 768px) {
  .header_logo::before {
    left: 24.5495495495%;
  }
}
.header_logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 31.5789473684%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 30px;
  height: 1.8px;
}
@media screen and (max-width: 768px) {
  .header_logo::after {
    left: 24.5495495495%;
  }
}
.header_brand-logo {
  width: 55px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .header_brand-logo {
    width: 40px;
  }
}
.header_fcs-logo {
  width: 153px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .header_fcs-logo {
    width: 153px;
  }
}

footer {
  background-color: #2f292b;
}

.footer {
  padding-top: 30px;
  padding-bottom: 16px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 8px;
  }
}
.footer_inner {
  position: relative;
  max-width: 1000px;
  padding: 0 17px;
  margin: 0 auto;
}
.footer_about-franchise-salon {
  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: flex;
  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;
}
@media screen and (max-width: 768px) {
  .footer_about-desc {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
  }
}
.footer_company-info {
  display: flex;
  justify-content: space-between;
  max-width: 860px;
  margin: 25px auto 0;
}
@media screen and (max-width: 768px) {
  .footer_company-info {
    flex-direction: column;
    margin-top: 27px;
  }
}
.footer_info {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .footer_info + .footer_info {
    margin-top: 27px;
    padding-left: 0;
    border: none;
  }
}
.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;
}
.footer_contact {
  display: grid;
  grid-template: auto/1fr 1fr;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer_contact {
    display: block;
  }
}
.footer_contact-link {
  display: block;
  grid-area: 1/2/2/3;
  position: relative;
  box-sizing: border-box;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 10px 7px;
  padding-right: 28px;
  border: 1px solid #fff;
  border-radius: 999px;
  background-color: #fff;
  color: #2f292b;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer_contact-link {
    padding-block: 7px;
    color: #28387d;
    font-size: 1.2rem;
  }
}
.footer_contact-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  width: 8px;
  height: 12px;
  background-color: #2f292b;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 768px) {
  .footer_contact-link::after {
    background-color: #28387d;
  }
}
.footer_copyright {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    font-size: 1.2rem;
    font-weight: normal;
  }
}
.footer--copyright {
  padding-top: 10px;
  padding-bottom: 24px;
  text-align: center;
}

/* ========================
  Helper
  ======================== */
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}
.clear-fix {
  clear: both;
}

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

.accent {
  color: #ee5356;
}

.primary {
  color: #009533;
}

.yellow {
  color: #ffe458;
}

.E42D2D {
  color: #e42d2d;
}

.bold {
  font-weight: bold;
}

.ltsp-minus10 {
  letter-spacing: -0.1em;
}

.one-line {
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .one-line-when-pc {
    white-space: nowrap;
  }
}