@-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 {
  color: #393939;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

img {
  max-width: 100%;
}

a {
  color: #B41A18;
}

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: 10px 12px;
  padding-left: 78px;
  padding-right: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-height: 74px;
  background-color: #384196;
  border-radius: 40px;
  border-bottom: 6px solid #161D5F;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .btn {
    min-height: 54px;
    padding-left: 56px;
    font-size: 20px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 12px;
  width: 20px;
  height: 14px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 768px) {
  .btn::after {
    width: 10px;
    height: 10px;
  }
}
.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: #FFEE50;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .btn_appeal {
    width: 39px;
    height: 39px;
  }
}
.btn_appeal-inner {
  text-align: center;
  color: #384196;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .btn_appeal-inner {
    font-size: 11px;
  }
}
.btn_recommend {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .btn_recommend {
    font-size: 11px;
  }
}
.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;
  padding-top: 10px;
  padding-bottom: 16px;
  background: linear-gradient(90deg, #896A1C 0%, #F2C248 50.96%, #896A1C 100%);
}

.sect-title {
  padding-left: 24px;
  border-left: 3px solid #009533;
  color: #000;
  font-size: 4rem;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sect-title {
    padding-left: 16px;
    font-size: 2.4rem;
    line-height: 1.8;
  }
}

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

/* === Slick === */
.slick-list {
  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: #000;
  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: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}
.slick-prev {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  left: -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: -24px;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 40px;
  height: 3px;
  padding: 0;
  background-color: #a8a8a8;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: #009533;
}

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

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

.header {
  position: absolute;
  top: 0;
  left: calc(50% - 260px);
  translate: -50%;
  z-index: 2;
}

@media (max-width: 768px) {
  .header {
    position: static;
    translate: 0;
  }
}

.header .header_inner {

  max-width: 1000px;
  margin: 0 auto;
}

.header .header_inner .header-logo {
  width: 252px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 28px 7px;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
  position: relative;
}
.header .header_inner .header-logo .header_fc-logo {
  width: 48px;
  display: inline-block;
}
@media (max-width: 768px) {
  .header .header_inner .header-logo .header_fc-logo {
  width: 32px;
}
}
.header .header_inner .header-logo .header_aisup-logo {
  width: 153px;
  display: inline-block;
}
.header .header_inner .header-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 20px;
  height: 1.8px;
}
.header .header_inner .header-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 20px;
  height: 1.8px;
}

.header-thanks-text {
  display: none;
}
.aisup-sp {
  display: none;
}
@media (max-width: 768px) {
  .header .header_inner {
    width: 100%;
    background-color: #fff;
  }
  .header .header_inner .header-logo {
    margin: 0 auto;
    width: 214px;
    padding: 7px 10px 8px 40px;
  }
  .aisup-sp {
    display: block;
  }
  .aisup-pc {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
}
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
}
.hero-left {
  padding-top: calc(100 / 1440 * 100vw);
  padding-bottom: calc(40 / 1440 * 100vw);
  width: calc(733 / 1440 * 100vw);
  background: url(../images/hero-bg.png) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .hero-left {
    width: 100%;
    padding-top: 13px;
    padding-bottom: 15px;
  }
}
.hero-appeal {
  width: calc(441 / 733 * 100%);
  margin-left: auto;
  margin-right: 46px;
}
@media screen and (max-width: 768px) {
  .hero-appeal {
    width: calc(335 / 375 * 100%);
    margin-right: auto;
  }
}
.hero-appeal_img {
  display: block;
  scale: 1.1;
}
@media screen and (max-width: 768px) {
  .hero-appeal_img {
    scale: 1;
  }
}
.hero_appeal-sm {
  font-size: 7.6rem;
}
@media screen and (max-width: 768px) {
  .hero_appeal-sm {
    font-size: 3rem;
  }
}

.hero-right {
  width: calc(708 / 1440 * 100vw);
}

@media screen and (max-width: 768px) {
  .hero-right {
  width: 100%;
}
}

.hero_slide-img {
  display: block;
}
.hero_slide-img img {
  object-fit: cover;
}
.hero_lookfor {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .hero_lookfor {
    margin-top: 32px;
  }
}
.hero_eligible {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 8px 20px;
  background-color: #fff;
  color: #009533;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .hero_eligible {
    padding: 4px 6px;
    font-size: 1.4rem;
  }
}
.hero_lookfor-text {
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 2.9rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .hero_lookfor-text {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    font-size: 1.9rem;
    line-height: 1.2;
  }
}
.hero_posibility {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 36px 20px 0;
  margin-top: 36px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 4.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .hero_posibility {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    padding: 10px;
    margin: 0;
    text-align: center;
    font-size: 2rem;
  }
}
.hero_posibility::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: calc((100vw - 1000px) / 2);
  background-color: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 768px) {
  .hero_posibility::before {
    content: none;
  }
}
.hero_bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: #009533;
}
.hero_bg-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  opacity: 0;
}
.hero_bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.hero_bg-img img {
  height: 100%;
  -o-object-position: right;
  object-position: right;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero_bg-item.show {
  opacity: 1;
  z-index: 1;
}
.hero_bg-item.hide {
  opacity: 1;
  z-index: 0;
}
.hero_bg-item.active .hero_bg-img {
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 7s linear;
  transition: -webkit-transform 7s linear;
  transition: transform 7s linear;
  transition: transform 7s linear, -webkit-transform 7s linear;
}

.hero-bottom {
  position: relative;
  top: -2px;
  height: 92px;
  z-index: 2;
}
@media screen and (max-width: 1050px) {
  .hero-bottom {
    height: auto;
  }
}
.hero-bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;

}
@media screen and (max-width: 1050px) {
  .hero-bottom_inner {
    display: block;
  }
}
.hero-bottom_list {
  display: grid;
  grid-template: 1fr 1fr / auto auto;
  gap: 12px 24px;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .hero-bottom_list {
    justify-items: center;
    margin-right: 0;
  }
}
.hero-bottom_list-item {
  position: relative;
  padding-left: 40px;
  color: #232323;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .hero-bottom_list-item {
    padding-left: 27px;
    font-size: 1.7rem;
  }
}
.hero-bottom_list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 29px;
  background: url(../images/hero-bottom_list-icon.png) center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .hero-bottom_list-item::before {
    width: 20px;
    height: 20px;
  }
}
.hero-bottom_list-item:first-child {
  grid-area: 1/1/2/3;
}

.hero-bottom_left {
  background-color: #FCD77A;
  width: 40%;
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1050px) {
  .hero-bottom_left {
    width: 100%;
    justify-content: center;
    padding-bottom: 10px;
  }
}
.hero-bottom_kamei-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  margin-top: 15px;
}
.hero-bottom_kamei-top {
  color: #edd494;
  background-color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.hero-bottom_kamei-bottom {
  position: relative;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.hero-bottom_kamei-bottom::before {
  position: absolute;
  content: "";
  width: 82px;
  height: 1px;
  background-color: #000;
  top: calc(50% + 1px);
  left: 50%;
  translate: -50% -50%;
}

.hero-bottom_kamei {
  position: relative;
  color: #B41A18;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 90px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .hero-bottom_kamei {
    margin-right: 48px;
  }
}
.hero-bottom_kamei::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 11px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #B41A18;
  bottom: 10px;
  left: -6px;
}
.hero-bottom_kamei::after {
  position: absolute;
  content: "";
  background: url(../images/hero_bottom-50off.png) no-repeat center center / contain;
  width: 110px;
  height: 71px;
  left: 82%;
  top: -14px;
}
.hero-bottom_kamei-lg {
  position: relative;
  font-size: 5.6rem;
}
.hero-bottom_kamei-lg::before {
  position: absolute;
  content: "";
  background: url(../images/hero_bottom-gentei.png) no-repeat center center / contain;
  width: 62px;
  height: 68px;
  top: -36px;
  left: calc(100% - 16px);
}
@media screen and (max-width: 1050px) {
  .hero-bottom_kamei-lg::before {
    z-index: 2;
  }
}
.hero-bottom_right {
  position: relative;
  background-color: #CEA745;
  display: flex;
  width: 60%;
  height: 100%;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1050px) {
  .hero-bottom_right {
    width: 100%;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 20px;
  }
}
.hero-bottom_right::before {
  position: absolute;
  content: "";
  top: 0;
  right: 100%;
  background-color: #CEA745;
  height: 100%;
  width: 16px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.hero-bottom_text {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .hero-bottom_text {
    font-size: 1.8rem;
  }
}
.about {
  position: relative;
  padding-top: 40px;
  padding-bottom: 32px;
  background: url(../images/about_bg.png) no-repeat center center / cover;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 30px;
    padding-bottom: 37px;
  }
}
.about::before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, #C29A36 0%, #D4BF8A 50.48%, #C29A36 100%);
  width: 100%;
  height: 8px;
  bottom: 0;
  left: 0;
}
.about_title {
  width: 529px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .about_title {
    width: 100%;
    max-width: 500px;
  }
}
.about_title img {
  aspect-ratio: 529 / 75;
  object-fit: cover;
}
.about_list {
  margin-top: 52px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about_list {
    margin-top: 44px;
    flex-direction: column;
    max-width: 500px;
    margin-inline: auto;
    gap: 44px;
  }
}
.about_item {
  position: relative;
  width: calc(306 / 1000 * 100%);
}
@media screen and (max-width: 768px) {
  .about_item {
    width: 100%;
  }
}
.about_item::before {
  position: absolute;
  content: "";
  width: 91px;
  height: 98px;
  top: -28px;
  left: 10px;
}
.about_item:nth-child(1)::before {
  background: url(../images/about_head1.png) no-repeat center center / cover;
}
.about_item:nth-child(2)::before {
  background: url(../images/about_head2.png) no-repeat center center / cover;
}
.about_item:nth-child(3)::before {
  background: url(../images/about_head3.png) no-repeat center center / cover;
}
.about_img img {
  aspect-ratio: 306 / 161;
}
.about_desc {
  margin-top: 13px;
  font-size: 1.8rem;
  line-height: 1.5;
}
.about_desc .text-lg {
  font-size: 2.8rem;
}
.about_bottom {
  position: relative;
  margin-top: 31px;
}
.about_bottom::before {
  position: absolute;
  content: "";
  background-color: #fff;
  opacity: .7;
  width: 100vw;
  height: calc(100% + 10px);
  z-index: -1;
  left: 50%;
  translate: -50%;
  top: 14px;
}
.about_bottom-heading {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.about_bottom-heading::before,
.about_bottom-heading::after {
  position: absolute;
  content: "";
  width: 50vw;
  height: 8px;
  background: linear-gradient(90deg, #D4BF8A 0%, #C29A36 100%);
  top: 50%;
  translate: 0 -50%;
}
.about_bottom-heading::before {
  right: calc(100% + 10px);
}
.about_bottom-heading::after {
  left: calc(100% + 10px);
}
.about_bottom-desc {
  margin-top: 12px;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
}
.about_bottom-block {
  position: relative;
  margin-top: 24px;
  border-radius: 8px;
  background: #EAE1CA;
  padding-block: 19px 9px;
  width: 455px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .about_bottom-block {
    width: 100%;
  }
}
.about_bottom-block::before {
  position: absolute;
  content: "";
  background: url(../images/about_bottom-text.svg) no-repeat center / cover;
  width: 76px;
  height: 26px;
  top: -11px;
  left: 50%;
  translate: -50%;
}
.about_bottom-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 103px;
}
@media screen and (max-width: 768px) {
  .about_bottom-list {
    width: fit-content;
    margin-inline: auto;
  }
}
.about_bottom-item {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  padding-left: 31px;
}
.about_bottom-item::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 12px;
  background: url(../images/check.svg) no-repeat center / contain;
  top: 50%;
  translate: 0 -50%;
  left: 0;
}
.about_bottom-text {
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .about_bottom-text {
    text-align: left;
  }
}
.about_bottom-text .marker {
  background: linear-gradient(to bottom, transparent 55%, #FCD77A 55%);
}

.feature {
  background: url(../images/feature_bg.png) no-repeat center / cover;
  padding-top: 39px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .feature {
    padding-inline: 17px;
    padding-bottom: 0;
    overflow: hidden;
  }
}
.feature_title {
  text-align: center;
}
.feature_list {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 21px;
}
@media screen and (max-width: 768px) {
  .feature_list {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .feature_list .slick-list {
    overflow: visible;
  }
}
.feature_item {
  width: 250px;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 768px) {
  .feature_item {
    width: 100% !important;
    margin-inline: 20px;
  }
}
.feature_item:nth-child(2) {
  position: relative;
}
.feature_item:nth-child(2)::before {
  position: absolute;
  content: "";
  width: 76px;
  height: 76px;
  background: url(../images/feature_head.svg) no-repeat center / contain;
  top: -23px;
  left: 0;
}
.feature_img img {
  aspect-ratio: 250 / 160;
  object-fit: cover;
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
}
.feature_body {
  background: #fff;
  height: 120px;
  padding-inline: 13px;
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
.feature_body {
  min-height: 0;
  min-width: 0;
}
}
.feature_heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.feature_text {
  margin-top: 8px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
}
.feature_block {
  margin-top: 62px;
  background: #fff;
  padding-top: 23px;
  padding-left: 22px;
  padding-right: 37px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .feature_block {
    margin-inline: calc(50% - 50vw);
    padding-left: 17px;
    padding-right: 17px;
  }
}
.feature_block-heading {

}
.feature_block-list {
  display: flex;
  gap: 16px;
  max-width: 810px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .feature_block-list {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .feature_block-item {
    width: 100% !important;
    margin-inline: 20px;
  }
}
.feature_block-item img {
  width: 100%;
  max-width: 100%;
}
.feature_list .slick-dots li button {
  background-color: #fff;
}
.feature_list .slick-dots li button,
.feature_block-list .slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.feature_list .slick-dots li.slick-active button,
.feature_block-list .slick-dots li.slick-active button  {
  background-color: #FCD77A;
}
.feature_list .slick-next:not(.slick-disabled),
.feature_block-list .slick-next:not(.slick-disabled),
.feature_list .slick-prev:not(.slick-disabled),
.feature_block-list .slick-prev:not(.slick-disabled) {
  background-color: #DEAE4D;
  opacity: 0.7;
  width: 29px;
  height: 116px;
}
.reasons {
  position: relative;
  padding-top: 60px;
  padding-bottom: 58px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .reasons {
    padding-top: 30px;
    padding-bottom: 48px;
  }
}
.reasons_title {
  text-align: center;
}

.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;
  }
}
@media screen and (min-width: 769px) {
  .reasons_title-l-pc {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 8px;
    margin: 16px auto;
    background-color: #009533;
  }
}
@media screen and (max-width: 768px) {
  .reasons_title-l-sp {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 8px;
    margin: 0 auto;
    background-color: #009533;
  }
}
@media screen and (max-width: 768px) {
  .reasons_title-l-sp:not(:first-child) {
    margin-top: 5px;
  }
}
.reasons_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  margin-top: 36px;
}
@media screen and (max-width: 990px) {
  .reasons_list {
    grid-template-columns: 1fr;
    gap: 24px 0;
    max-width: 500px;
    margin-inline: auto;
  }
}

.reasons_list-item {
  position: relative;
}
.reasons_index {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 91px;
  height: 98px;
}
@media screen and (max-width: 990px) {
  .reasons_index {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 68px;
  height: 74px;
}
}
.reasons_img img {
  display: block;
  object-fit: cover;
  height: auto;
  aspect-ratio: 475 / 238;
  border-radius: 8px 8px 0 0;
}
.reasons_body {
  position: relative;
  background-color: #fff;
  min-height: 88px;
  padding-top: 42px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 8px;
  border-radius: 0 0 8px 8px;
}
@media screen and (max-width: 990px) {
  .reasons_body {
    padding-top: 28px;
    padding-bottom: 16px;
  }
}
.reasons_head {
  position: absolute;
  top: -22px;
  left: 0;
  width: max-content;
  background-color: #B41A18;
  padding-top: 5px;
  padding-bottom: 6px;
  line-height: 1.5;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  padding-left: 12px;
  padding-right: 24px;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 0% 100%);
}
@media screen and (max-width: 990px) {
  .reasons_head {
    font-size: 2.0rem;
    padding-left: 13px;
    padding-right: 22px;
  }
}
.reasons_desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
.reasons_appeal {
  position: relative;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  display: block;
  width: fit-content;
  margin-inline: auto;
}
.reasons_appeal::before {
  position: absolute;
  content: "";
  background-color: #FCD77A;
  width: 8px;
  height: 6px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  bottom: calc(100% - 1px);
  left: 50%;
  translate: -50%;
}
.reasons_list-item--secondary {
  border-color: #d99506;
}
.reasons_list-item--secondary .reasons_item-index {
  background-color: #d99506;
}
.reasons_item-index {
  position: absolute;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 8px 24px;
  background-color: #009533;
  border-radius: 40px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .reasons_item-index {
    font-size: 1.5rem;
  }
}
.reasons_item-title {
  position: relative;
  padding-bottom: 20px;
  color: #c91818;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .reasons_item-title {
    padding-bottom: 16px;
    font-size: 2.5rem;
  }
}
.reasons_item-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40px;
  height: 6px;
  background-image: -webkit-linear-gradient(
    left,
    #c91818 6px,
    transparent 6px,
    transparent 17px,
    #c91818 17px,
    #c91818 23px,
    transparent 23px,
    transparent 34px,
    #c91818 34px
  );
  background-image: linear-gradient(
    to right,
    #c91818 6px,
    transparent 6px,
    transparent 17px,
    #c91818 17px,
    #c91818 23px,
    transparent 23px,
    transparent 34px,
    #c91818 34px
  );
}
@media screen and (max-width: 768px) {
  .reasons_item-title::after {
    width: 24px;
    background-image: -webkit-linear-gradient(
      left,
      #c91818 6px,
      transparent 6px,
      transparent 9px,
      #c91818 9px,
      #c91818 15px,
      transparent 15px,
      transparent 18px,
      #c91818 18px
    );
    background-image: linear-gradient(
      to right,
      #c91818 6px,
      transparent 6px,
      transparent 9px,
      #c91818 9px,
      #c91818 15px,
      transparent 15px,
      transparent 18px,
      #c91818 18px
    );
  }
}
.reasons_item-desc {
  margin-top: 16px;
  color: #232323;
  font-size: 2rem;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .reasons_item-desc {
    font-size: 1.6rem;
  }
}
.reasons_item-img {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .testimonials {
    padding-bottom: 50px;
  }
}
.testimonials_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .testimonials_list {
    margin-top: 20px;
  }
}
.testimonials_list-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 24px 30px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .testimonials_list-item {
    padding-left: 20px;
    padding-right: 20px;
    margin: 10px;
  }
}
.testimonials_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .testimonials_portrait {
    width: 66px;
  }
}
.testimonials_info {
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .testimonials_info {
    margin-left: 14px;
  }
}
.testimonials_name {
  color: #009533;
  font-size: 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .testimonials_name {
    font-size: 1.2rem;
  }
}
.testimonials_item-title {
  margin-top: 8px;
}
.testimonials_item-title-inner {
  display: inline;
  background-color: #009533;
  color: #fff;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .testimonials_item-title-inner {
    font-size: 2rem;
  }
}
.testimonials_desc {
  margin-top: 28px;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .testimonials_desc {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}
.revenue_bg {
  background: url(../images/revenue_bg.png) no-repeat center / cover;
}
@media screen and (max-width: 768px) {
  .revenue_bg {
    background-image: url(../images/revenue_bg-sp.png);
  }
}
.revenue {
  padding-top: 62px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .revenue {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.revenue_title {
  text-align: center;
}
.revenue_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .revenue_list {
    margin-top: 40px;
  }
}
.revenue_list-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px 37px 35px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  border: 2px solid #FCD77A;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .revenue_list-item {
    padding: 21px 22px 26px;
    margin: 0 20px;
  }
}
.revenue_example {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 12px;
  margin: 0 auto;
  background-color: #009533;
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .revenue_example {
    padding: 8px 20px;
    font-size: 1.5rem;
  }
}
.revenue_example::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  background-color: #009533;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.revenue_achievement {
  margin-top: 20px;
  background-image: -webkit-linear-gradient(
    bottom,
    #fff48f 16px,
    transparent 16px
  );
  background-image: linear-gradient(to top, #fff48f 16px, transparent 16px);
  text-align: center;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.revenue_achievement-text {
  font-size: 4.7rem;
  font-weight: 500;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 768px) {
  .revenue_achievement-text {
    font-size: 3.3rem;
  }
}
.revenue_achievement-num {
  font-size: 8.7rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .revenue_achievement-num {
    font-size: 6.1rem;
  }
}
.revenue_download {
  position: relative;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .revenue_download {
    margin-top: 12px;
  }
}
.revenue_supp {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 34px 8px;
  background-color: #fff;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .revenue_supp {
    font-size: 1.2rem;
    padding: 18px 4px;
    border-radius: 6px;
  }
}
.revenue_supp .text-lg {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .revenue_supp .text-lg {
  font-size: 1.8rem;
}
}
@media screen and (max-width: 768px) {
  .revenue_list .slick-next:not(.slick-disabled),
  .revenue_list .slick-prev:not(.slick-disabled) {
    background-color: #B41A18;
    opacity: 0.7;
    width: 29px;
    height: 116px;
  }
  .revenue_list .slick-dots li.slick-active button {
    background-color: #D41C1F;
  }
  .revenue_list .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
  }
}
.comparison_table {
  max-width: 858px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .comparison_table {
    margin-top: 16px;
    margin-right: -17px;
  }
}
.comparison_appeal {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 18px;
  margin: 30px auto 0;
  background-color: #d99506;
  border-radius: 4px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .comparison_appeal {
    font-size: 1.6rem;
  }
}
.comparison_appeal::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 64px;
  width: 32px;
  height: 16px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #d99506;
}
@media screen and (max-width: 768px) {
  .comparison_appeal::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.table {
  overflow-x: auto;
  border-radius: 0;
}
.table_inner {
  width: 100%;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
  border-collapse: separate;
}
@media screen and (max-width: 768px) {
  .table_inner {
    width: auto;
  }
}
.table_th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 11px;
  background-color: #000;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .table_th {
    white-space: nowrap;
    font-size: 1.4rem;
  }
}
.table_th:first-child {
  text-align: left;
  font-size: 1.3rem;
}
.table_th:last-child {
  border-right: 1px solid #000;
}
.table_th--top {
  height: 40px;
  background-color: #e5e5e5;
  text-align: center;
  color: #5c5c5c;
}
.table_th--primary {
  position: relative;
  height: 100%;
  background-color: #009533;
  border-color: #000;
  color: #fff;
}
.table_th--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #000;
  border-top-width: 1px;
  border-bottom-width: 1px;
}
.table_th--sp-sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .table_th--sp-sticky {
    z-index: 1;
  }
}
.table_th--sp-sticky::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
}
@media screen and (max-width: 768px) {
  .table_th--sp-sticky::after {
    border-right: 2px solid #000;
  }
}
.table_td {
  padding: 12px;
  background-color: #fff;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  vertical-align: middle;
  color: #6d6d6d;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: normal;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .table_td {
    white-space: nowrap;
    font-size: 1.4rem;
  }
}
.table_td:last-child {
  border-right: 1px solid #000;
}
.table_td--primary {
  position: relative;
  background-color: #feffdb;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  color: #d99506;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
}
.table_td--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.table_body-tr:last-child .table_th,
.table_body-tr:last-child .table_td {
  border-bottom: 1px solid #000;
}
.table_body-tr:last-child .table_th--primary::after,
.table_body-tr:last-child .table_td--primary::after {
  border-bottom: 1px solid #000;
}
.table_corner-cell {
  width: 90px;
  height: 48px;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .table_corner-cell {
    width: 90px;
  }
}
.table_body-tr:last-child .table_td:last-child {
  border-radius: 0 0 0 0;
}
.table_body-tr .table_th::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.table_head-tr .table_th {
  border-top-width: 2px;
}
@media screen and (max-width: 768px) {
  .table_head-tr .table_th {
    border-top-width: 2px;
  }
}
.table_body-tr:last-child .table_th,
.table_body-tr:last-child .table_td {
  border-bottom-width: 2px;
}
@media screen and (max-width: 768px) {
  .table_body-tr:last-child .table_th,
  .table_body-tr:last-child .table_td {
    border-bottom-width: 2px;
  }
}
.table_th:first-child {
  border-left-width: 2px;
}
@media screen and (max-width: 768px) {
  .table_th:first-child {
    border-left-width: 2px;
  }
}
.table_th:last-child {
  border-right-width: 2px;
}
@media screen and (max-width: 768px) {
  .table_th:last-child {
    border-right-width: 2px;
  }
}
.table_td:last-child {
  border-right-width: 2px;
}
@media screen and (max-width: 768px) {
  .table_td:last-child {
    border-right-width: 2px;
  }
}

.flow {
  padding-top: 0;
  padding-bottom: 99px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-bottom: 54px;
  }
}
.flow_title {
  text-align: center;
  color: #009533;
  font-size: 2.3rem;
  font-weight: 600;
}
.flow_list-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .flow_list-wrap {
    overflow-x: scroll;
    margin-top: 14px;
    margin-right: -17px;
  }
}
.flow_img {
  display: block;
}
@media screen and (max-width: 768px) {
  .flow_img {
    width: 878px;
  }
}
.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;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .flow_list {
    width: 588px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}
.flow_list-first {
  padding-right: 12px;
  color: #009533;
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .flow_list-first {
    padding-right: 7px;
  }
}
.flow_list-first a {
  text-decoration: none;
}
.flow_list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 105px;
  height: 105px;
  margin-left: 55px;
  background-color: #feffdb;
  border: 3px solid #009533;
  border-radius: 50%;
  color: #009533;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .flow_list-item {
    width: 84px;
    height: 84px;
    margin-left: 42px;
  }
}
.flow_list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -48px;
  width: 40px;
  height: 1px;
  background-color: #009533;
}
@media screen and (max-width: 768px) {
  .flow_list-item::before {
    left: -37px;
    width: 33px;
  }
}
.flow_list-item::after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: 50%;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 1px solid #009533;
  border-bottom: 1px solid #009533;
}
@media screen and (max-width: 768px) {
  .flow_list-item::after {
    left: -12px;
    width: 7px;
    height: 7px;
  }
}

.push {
  padding-top: 54px;
  padding-bottom: 120px;
  background: linear-gradient(0deg, #B41A18 0%, #760201 100%);
}
@media screen and (max-width: 768px) {
  .push {
    padding-top: 29px;
    padding-bottom: 84px;
  }
}
.push_title {
  text-align: center;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .push_title {
    font-size: 1.8rem;
  }
}
.push_title .text-lg {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .push_title .text-lg {
    font-size: 2.3rem;
  }
}
.push_title-em {
  font-size: 3.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .push_title-em {
    font-size: 2.1rem;
  }
}
.push_list {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .push_list {
    margin-top: 32px;
  }
}

.push_list-item {
  position: relative;
  padding-left: 51px;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .push_list-item {
    font-size: 1.7rem;
    padding-left: 36px;
  }
}
.push_list-item:not(:first-child) {
  margin-top: 20px;
}
.push_list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  width: 36px;
  height: 36px;
  background: url(../images/push_check.svg) no-repeat center / contain;
}
@media screen and (max-width: 768px) {
  .push_list-item::before {
    width: 24px;
    height: 24px;
  }
}
.request {
  position: relative;
  padding-top: 103px;
  padding-bottom: 54px;
  background-color: #E7E0D8;
}
@media screen and (max-width: 768px) {
  .request {
    background-color: #fff;
    padding-top: 90px;
  }
}
.request_title {
  position: absolute;
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .request_title {
    top: -60px;
  }
}
.request_title-inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 36px 36px;
  background-color: #fff;
  border: 4px solid #B41A18;
  text-align: center;
  border-radius: 24px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 768px) {
  .request_title-inner {
    padding: 18px 26px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.request_title-inner::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 19px;
  background-color: #B41A18;
  top: 100%;
  left: 50%;
  translate: -50%;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.request_title-inner::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 42px;
  height: 15px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .request_title-inner::after {
    width: 32px;
    height: 13px;
  }
}
.request_title-inner .text-md {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .request_title-inner .text-md {
  font-size: 1.8rem;
}
}
.request_title-em {
  font-size: 3.2rem;
  color: #B41A18;
}
@media screen and (max-width: 768px) {
  .request_title-em {
    font-size: 1.8rem;
  }
}
.request_note {
  text-align: center;
}
.request_note-mail {
  display: inline;
  font-size: 1.6rem;
  line-height: 1.5;

}
@media screen and (max-width: 768px) {
  .request_note-mail {
    display: block;
    font-size: 1.3rem;
  }
}
.request_note-supp {
  display: inline;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .request_note-supp {
    display: block;
    font-size: 1.2rem;
  }
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 858px;
  padding: 24px 72px 36px;
  margin: 28px auto 0;
  border-radius: 6px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 11px rgba(45, 45, 45, 0.21);
  box-shadow: 0 0 11px rgba(45, 45, 45, 0.21);
}
@media screen and (max-width: 768px) {
  .request_panel {
    padding: 22px 12px 24px;
    margin-top: 12px;
    box-shadow: none;
  }
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 12px;
  margin: 0 auto;
  background-color: #B41A18;
  border-radius: 30px;
  color: #FCD77A;
  font-size: 1.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .request_appeal {
    padding: 10px 16px;
    font-size: 1.5rem;
  }
}
.request_appeal-em {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .request_appeal-em {
    font-size: 2rem;
  }
}
.request_require-note {
  text-align: right;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .request_require-note {
    margin-top: 16px;
    font-size: 1.2rem;
  }
}
.request_form {
  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-textarea {
  min-height: 113px;
}
@media screen and (max-width: 768px) {
  .form .form-textarea {
  min-height: 98px;
}
}
.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-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: #393939;
  font-size: 1.6rem;
  line-height: 1.5;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #B41A18;
}
.form .form-select--initial {
  background-color: #fff;
  color: #393939;
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: none;
  border: 2px solid #B41A18;
  border-radius: 50px;
  color: #B41A18;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.1428571429;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form-zip-btn {
    padding: 16px 14px;
    border-width: 1px;
  }
}
.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: 16px;
}
@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: 110px;
  text-align: right;
  font-size: 1.5rem;
}
@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: #B41A18;
  -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.first {
    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 #B41A18;
  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: #B41A18;
  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;
  }
}
.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: #999;
}
@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: #5e544e;
  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: 36px;
  }
}
.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: 20px;
  padding-bottom: 20px;
  outline: none;
  border: none;
  border-radius: 8px;
  background-color: #A69778;
  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: 13px;
  height: 13px;
  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: #000;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 32px;
    padding-bottom: 7px;
  }
}
.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.05em;
}
@media screen and (max-width: 768px) {
  .footer_about-desc {
    font-size: 1.2rem;
    letter-spacing: -0.02em;
  }
}
.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: 27px;
  }
}
.footer_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  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: 24px;
}
@media screen and (max-width: 768px) {
  .footer_contact {
    display: block;
    margin-top: 45px;
  }
}
.footer_contact-link {
  position: relative;
  grid-area: 1/2/2/3;
  color: #B41A18;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: .05em;
  background-color: #FCD77A;
  border-radius: 100vmax;
  text-decoration: none;
  padding: 10px 28px 10px 10px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer_contact-link {
      font-size: 1.2rem;
      padding: 7px 27px 8px 10px;
      display: block;
  }
}
.footer_contact-link::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 12px;
  background-color: #B41A18;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  translate: 0 -50%;
  right: 10px;
}
.footer_copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    font-size: 1.2rem;
  }
}
.footer--copyright {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #000;
}

/* ========================
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: #FCD77A;
}

.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: #FCD77A;
}

.red {
  color: #B41A18;
}

.E42D2D {
  color: #e42d2d;
}

.bold {
  font-weight: bold;
}

.ff-sub {
  font-family: "Noto Serif JP", serif;
}
