@-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;
  }
}
@keyframes zoom-fade {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* ========================
Base
======================== */
html {
  font-size: 62.5%;
}

body {
  --brown: #553128;
  --beige: #f2e8d3;
  --red: #a92015;
  --yellow: #ffd874;

  --grad: linear-gradient(to right, #f2ebd3 0, #fffaf6 50%, #f2ebd3 100%);
  --r-grad: linear-gradient(to right, #8c1107 0, #ca1a0c 50%, #8c1107 100%);
  --g-grad: linear-gradient(to right, #0da07d 0, #048f8a 100%);

  --sans: "Noto Sans JP", sans-serif;
  --serif: "BIZ UDPMincho", serif;
  --roboto: "Roboto", sans-serif;

  color: var(--brown);
  font-family: var(--sans);
  font-weight: 500;
}

img {
  max-width: 100%;
}

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

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 5px;
  padding-left: 73px;
  padding-right: 39px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: 74px;
  background-color: #009e86;
  border-radius: 999px;
  box-shadow: 0 9px 0 #007462;
  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;
}
@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 #007462;
    padding-block: 9px 6px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 16px;
  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: #009e86;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}
@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-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 17px;
  padding-right: 17px;
  margin-top: 16px;
}

.sect-title {
  zoom: 0.5;
  display: flex;
  justify-content: center;
}
.fadeup {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  will-change: transform, opacity;
}
.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: rgb(48 130 110 / 65%);
  border: none;
  outline: none;
  color: transparent;
  cursor: pointer;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.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: -40px;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}
.slick-dots li button {
  border-radius: 50px;
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  background-color: var(--beige);
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: var(--red);
}

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

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

.header {
  max-width: 1000px;
  width: fit-content;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 240px;
  background-color: #fff;
  padding-inline: 19px;
  box-sizing: border-box;
  z-index: 5;
}
.header .header-logo {
  display: flex;
  gap: 51px;
  align-items: center;
  justify-content: center;
  padding-block: 7px 10px;
  border-radius: 0 0 20px 0;
  position: relative;
}
.header .header-logo .header_brand-logo {
  width: 52px;
  display: inline-block;
}
.header .header-logo .header_fcs-logo {
  width: 153px;
  display: inline-block;
}
.header .header-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 28.5%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 22px;
  height: 1px;
}
.header .header-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 28.5%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 22px;
  height: 1px;
}
.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: 37px;
    width: 241px;
    padding-block: 6px 7px;
  }

  .header .header-logo::before {
    width: 20px;
    left: 34%;
  }

  .header .header-logo::after {
    width: 20px;
    left: 34%;
  }

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

.hero {
  position: relative;
  padding-top: 89px;
  padding-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 150px;
    padding-bottom: 10px;
  }
}

.hero_inner {
  max-width: 980px;
  pointer-events: none;
  position: relative;
  z-index: 3;
}

.hero_main {
  aspect-ratio: 570 / 311;
  width: calc(570 / 1440 * 100vw);
}

.hero_catch {
  width: calc(509 / 1440 * 100vw);
  padding-inline-start: 26px;
}

.hero_bg-deco {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(810 / 1440 * 100vw);
  z-index: 1;
}
.hero_bg-deco img {
  height: 100%;
  object-position: right top;
}

.hero_bg-wrap {
  width: calc(937 / 1440 * 100vw);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero_bg-wrap {
    top: -30px;
  }
}

.hero_bg {
  height: 100%;
}

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

.hero_bg .slick-list {
  height: 100%;
}

.hero_bg .slick-track {
  height: 100%;
}

.hero_bg .slick-dots {
  bottom: 20px;
  left: 58%;
  translate: 0% 0;
  display: flex;
  gap: 12px;
  align-items: center;
  width: fit-content;
  position: absolute;
  z-index: 10;
  isolation: isolate;
}
.hero_bg .slick-dots li {
  margin: 0;
}
.hero_bg .slick-dots li button {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgb(255 255 255 / 80%);
  margin: 0;
}
.hero_bg .slick-dots li.slick-active button {
  background: var(--red);
}

.hero_bg-item {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.hero_bg-item.slick-current {
  animation: zoom-fade 7.5s linear both;
}
.hero_bg-img {
  height: 100%;
}
.hero_bg-img img {
  width: 100%;
  height: 100%;
  -o-object-position: right;
  object-position: right;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .hero_main {
    width: 100%;
    aspect-ratio: 335 / 209;
  }

  .hero_catch {
    width: 100%;
    padding: 0;
  }

  .hero_bg-wrap {
    width: 100%;
  }
}

.hero-bottom {
  padding-top: 6px;
  padding-bottom: 16px;
  background: var(--grad);
  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;
}

.hero-bottom_text {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin-block-start: 5px;
}
.hero-bottom_text strong {
  font-size: 3rem;
}
.hero-bottom_text em {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .hero-bottom {
    padding-top: 11px;
    padding-bottom: 22px;
  }
  .hero-bottom_inner {
    display: block;
  }

  .hero-bottom_text {
    font-size: 1.4rem;
    text-align: center;
    margin-block-start: 0;
    margin-block-end: 12px;
  }
  .hero-bottom_text strong {
    font-size: 1.8rem;
  }
  .hero-bottom_text em {
    font-size: 1.6rem;
  }

  .hero-bottom_btn {
    display: flex;
    justify-content: center;
  }
}

.about {
  padding-block: 46px 56px;
  background: url(../images/about_deco.png) no-repeat 170px 76% / 624px auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 20px;
    padding-bottom: 125px;
    background: url(../images/about_deco-sp.png) no-repeat 0 72% / 100% auto;
  }
}
.about_body {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 54px;
  margin-block-start: 56px;
}
.about_desc {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  display: block;
  width: calc(496 / 1440 * 100vw);
  flex-grow: 1;
  font-weight: 700;
}
.about_appeal {
  aspect-ratio: 343 / 132;
  width: calc(343 / 1440 * 100vw);
  margin-inline-start: -60px;
  margin-block-start: 6px;
}
.about_img {
  width: calc(446 / 1440 * 100vw);
  flex-shrink: 0;
  min-width: 350px;
}
@media screen and (max-width: 1080px) {
  .about_appeal {
    margin-inline-start: -30px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding-block: 32px 40px;
  }
  .about_body {
    flex-direction: column-reverse;
    margin-block-start: 29px;
    gap: 24px;
  }

  .about_desc {
    width: 100%;
    margin-block-start: 0;
  }

  .about_img {
    width: 100%;
    translate: -12px 0;
  }

  .about_appeal {
    width: 343px;
    margin-inline-start: -40px;
  }
}

.loop-slider {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.loop-slider_item {
  aspect-ratio: 366 / 231;
  display: inline-block;
}

.loop-slider_item img {
}
@media screen and (max-width: 768px) {
  .loop-slider {
    overflow: hidden;
    display: block;
  }

  .loop-slider_item {
    width: 197px;
    aspect-ratio: 366 / 231;
    display: inline-block;
  }
}

.reasons {
  position: relative;
  padding-block: 80px;
  background: var(--grad);
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .reasons {
    padding-top: 60px;
    padding-bottom: 67px;
  }
}
.reasons_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 25px;
  position: relative;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .reasons_list {
    grid-template: repeat(4, auto) / auto;
    row-gap: 24px;
    margin-top: 28px;
  }
}
.reasons_list-item {
  position: relative;
  padding: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  box-shadow: 0 4px 12px rgb(242 232 211 / 100%);
  container-type: inline-size;
}
.reasons_list-item:first-child .reasons_item-title {
  width: calc(393 / 488 * 100cqi);
}

.reasons_list-item:nth-child(2) .reasons_item-title {
  width: calc(444 / 488 * 100cqi);
}

.reasons_list-item:nth-child(3) .reasons_item-title {
  width: calc(382 / 488 * 100cqi);
}

.reasons_list-item:last-child .reasons_item-title {
  width: calc(268 / 488 * 100cqi);
}

.reasons_item-body {
  padding: 20px;
  background: #fff;
}
.reasons_item-title {
  position: relative;
  color: var(--brown);
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--serif);
  display: block;
}
.reasons_item-desc {
  margin-top: 7px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.reasons_item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reasons_appeal {
  margin-block-start: 54px;
}

.reasons_appeal-title {
  max-width: 527px;
  margin-inline: auto;
}

.reasons_appeal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-block-start: 24px;
}

.reasons_appeal-item {
  box-shadow: 0 4px 12px rgb(242 232 211 / 50%);
  border-radius: 8px;
  overflow: hidden;
}

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

@media screen and (max-width: 768px) {
  .reasons {
    overflow: hidden;
    padding-block-end: 23px;
  }

  .reasons_item-body {
    padding: 14px 15px 17px;
  }
  .reasons_list-item:first-child .reasons_item-title {
    width: 268px;
  }

  .reasons_list-item:nth-child(2) .reasons_item-title {
    width: 305px;
  }

  .reasons_list-item:nth-child(3) .reasons_item-title {
    width: 247px;
  }

  .reasons_list-item:last-child .reasons_item-title {
    width: 177px;
  }
  .reasons_item-desc {
    font-size: 1.4rem;
  }

  .reasons_appeal-list.slick-dotted.slick-slider {
    display: inline-block;
    padding-inline: 20px;
    margin-block-end: 33px;
  }

  .reasons_appeal-item {
    width: 284px;
  }

  .reasons_appeal-title {
    width: 100%;
  }

  .reasons_appeal-item + * {
    margin-inline-start: 8px;
  }

  .reasons_appeal .slick-dots {
    width: 305px;
    position: absolute;
    bottom: -24px;
  }

  .reasons_appeal .slick-dots button {
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background: #a9a9a9;
  }
  .reasons_appeal .slick-dots li {
    margin-inline: 4px;
  }
  .reasons_appeal .slick-dots li.slick-active button {
    background: var(--red);
  }
}

.testimonials {
  padding-top: 40px;
  padding-bottom: 69px;
}
@media screen and (max-width: 768px) {
  .testimonials {
    padding-block: 54px 60px;
  }
}
.testimonials_list {
  display: flex;
  gap: 34px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .testimonials_list {
    margin-top: 22px;
  }
}
.testimonials_list-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 28px 32px 56px;
  box-shadow: 0 8px 0 var(--beige);
  border-radius: 20px;
  border: 2px dashed var(--brown);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-inline: auto;
  width: calc(50% - 18px);
}

@media screen and (max-width: 768px) {
  .testimonials_list-item.slick-slide {
    padding: 34px 24px 25px;
    margin: 10px;
    display: inline-flex;
  }
}
.testimonials_list-item:first-child .testimonials_portrait {
  max-width: 393px;
}
.testimonials_list-item:last-child .testimonials_portrait {
  max-width: 348px;
}
@media screen and (max-width: 768px) {
  .testimonials_list-item:first-child .testimonials_portrait {
    max-width: 289px;
  }
  .testimonials_list-item:last-child .testimonials_portrait {
    max-width: 289px;
  }
}
.testimonials_desc {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.revenue {
  padding-top: 46px;
  padding-bottom: 69px;
  background: url(../images/revenue_bg.png) no-repeat center center / cover;
}
.revenue_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .revenue {
    padding-block: 34px 48px;
  }
  .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: 25px 36px 35px;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid var(--red);
  box-shadow: 0 12px 0 var(--beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 18px);
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .revenue_list-item {
    padding: 30px 20px 20px;
    margin: 10px;
  }
}
.revenue_example {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 50px;
  margin: 0 auto;
  font-size: 2.4rem;
  font-weight: bold;
  border-inline: 6px solid #ededed;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .revenue_example {
    padding: 0 35px;
    font-size: 2rem;
  }
}
.revenue_list-item:last-child .revenue_achievement {
  max-width: 348px;
}

.revenue_download {
  position: relative;
  margin-top: 23px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .revenue_list-item.slick-slide {
    padding: 20px 15px 19px;
    margin: 10px;
    display: inline-flex;
  }

  .revenue_list-item:first-child .revenue_achievement {
    max-width: 305px;
  }

  .revenue_list-item:last-child .revenue_achievement {
    max-width: 242px;
  }
  .revenue_download {
    margin-top: 12px;
  }
}
.revenue_supp {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 18px 8px;
  background-color: #fff;
  border-radius: 6px;
  color: #000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .revenue_achievement {
    margin-block-start: 8px;
  }
  .revenue_supp {
    padding: 10px 4px;
    border-radius: 4px;
    font-size: 1.6rem;
    max-width: 276px;
    width: 90%;
  }
}

.flow {
  padding-block: 54px 82px;
  background: var(--grad);
}
.flow_list-wrap {
  overflow: visible !important;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block: 39px 54px;
  }
  .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;
}
@media screen and (max-width: 768px) {
  .flow_list-item {
  }
}
.push {
  padding-top: 61px;
  padding-bottom: 95px;
  background-color: #30826e;
}
@media screen and (max-width: 768px) {
  .push {
    padding-top: 32px;
    padding-bottom: 60px;
  }
}
.push_title {
  text-align: center;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.push_title strong {
  line-height: 1.41;
  font-size: 3.2rem;
}
@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;
  padding-block: 22px 30px;
  border-inline: 2px dashed #fff;
}
@media screen and (max-width: 768px) {
  .push_list {
    margin-top: 21px;
    padding-block: 3px;
    border-inline: 2px dotted #fff;
  }
}
.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;
}
@media screen and (max-width: 768px) {
  .push_list-item {
    font-size: 1.8rem;
    margin-inline-start: 14px;
  }
}
.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: #f2ecb0;
}
.push_list-item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 6px;
  width: 10px;
  border-left: 2px solid #30826e;
  border-bottom: 2px solid #30826e;
}

.request {
  position: relative;
  padding-top: 99px;
  padding-bottom: 90px;
  background-color: #fbf8eb;
}
.request_title {
  position: absolute;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  max-width: 760px;
}
@media screen and (max-width: 768px) {
  .request {
    padding-block: 94px 61px;
  }
  .request_title {
    top: -47px;
    padding-inline: 20px;
    width: calc(100vw - 40px);
  }
  .request_title-inner {
    max-width: 370px;
    margin-inline: auto;
  }
}
.request_title-em {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .request_title-em {
    font-size: 1.8rem;
  }
}
.request_note {
  text-align: center;
  font-weight: 400;
  color: #393939;
}
.request_note-mail {
  display: inline;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  color: #393939;
}
@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: 29px 75px 60px 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 {
    padding: 0;
    margin-top: 12px;
    background: transparent;
  }
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 23px;
  margin: 0 auto;
  background-color: var(--red);
  border-radius: 999px;
  color: #f2ecb0;
  font-size: 1.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .request_appeal {
    padding: 9px 21px;
    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: #e42d2d;
}
@media screen and (max-width: 768px) {
  .request_require-note {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}
.request_form {
  margin-top: 28px;
}
@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;
}

.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: #393939;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #30826e;
}
.form .form-select--initial {
  background-color: #fff;
  color: #393939;
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: #fff;
  border: 2px solid #30826e;
  border-radius: 50px;
  color: #30826e;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1428571429;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .form .form-text {
    background: #fff;
  }
  .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(--roboto);
}
@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;
}
@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: #30826e;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.form .form_item--radio > p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.form .form_item--radio .wpcf7-radio {
  margin-top: -12px;
  margin-left: -20px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-radio {
    margin-top: 0;
    margin-left: 0;
  }
}
.form .form_item--radio .wpcf7-radio input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label {
  cursor: auto;
}
.form
  .form_item--radio
  .wpcf7-radio
  input:checked
  + .wpcf7-list-item-label::before {
  cursor: auto;
}
.form
  .form_item--radio
  .wpcf7-radio
  input:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
  cursor: auto;
}
.form .form_item--radio .wpcf7-list-item {
  display: inline-block;
  margin-top: 12px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-list-item {
    display: block;
    margin-left: 0;
  }
}
.form .form_item--radio .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 31px;
  font-size: 1.6rem;
  line-height: 1.25;
  cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid #009533;
  border-radius: 50%;
  cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #009533;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
  margin-top: -12px;
  margin-left: -36px;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-checkbox {
    margin-top: 0;
    margin-left: 0;
  }
}
.form .form_item--checkbox .wpcf7-checkbox input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.form
  .form_item--checkbox
  .wpcf7-checkbox
  input:checked
  + .wpcf7-list-item-label::before {
  background-color: #b6b6b6;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form
  .form_item--checkbox
  .wpcf7-checkbox
  input:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form .form_item--checkbox .wpcf7-list-item {
  display: inline-block;
  margin-top: 12px;
  margin-left: 36px;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item {
    display: block;
    margin-top: 12px;
    margin-left: 0;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label {
    padding-left: 27px;
    font-size: 1.2em;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 25px;
  height: 25px;
  background-color: #fff;
  border: 2px solid #b6b6b6;
  border-radius: 4px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-60%) rotate(-45deg);
  transform: translateY(-60%) rotate(-45deg);
  width: 12px;
  height: 6px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label::after {
    left: 4px;
    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;
  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: 20px;
  padding-bottom: 20px;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: var(--brown);
  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: 14px;
    width: 8px;
    height: 8px;
  }
}

.footer {
  padding-top: 35px;
  padding-bottom: 30px;
  background-color: var(--red);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 17px;
  }
}
.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: 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;
}

.marker {
  background-color: #fff48f;
}

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

.primary {
  color: #009533;
}

.yellow {
  color: #fff48f;
}

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

.bold {
  font-weight: bold;
}

.highlight {
  background: var(--beige);
  padding-inline: 3px;
}
@media screen and (max-width: 768px) {
  .highlight {
    padding-inline: 0;
  }
}
