@-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 {
  --ja-sans: 'Noto Sans JP', serif;
  --ja-serif: 'Noto Serif JP', serif;
  --en: 'Cormorant Infant', serif;
  --roboto: 'Roboto', sans-serif;

  --text: #3c312d;
  --red: #d73d14;
  --yellow: #ffe51c;
  --brown: #c67028;
  --green: #47a248;
  --white: #fff;
  --bg1: #f2f5ea;
  --bg2: #f5f3ee;
  --bg3: #f3ecdc;

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

img {
  max-width: 100%;
}

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

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%;
  border-right: 999px;
}
@media screen and (max-width: 768px) {
  .btn {
    min-height: 54px;
    font-size: 20px;
  }
}
.btn.btn--s {
  aspect-ratio: 380 / 76;
}

.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: 20px;
  padding-right: 20px;
}

.cta-btn {
  background: var(--brown);
  display: grid;
  place-items: center;
  padding-block: 20px;
}
.cta-btn a {
  max-width: 460px;
}

@media screen and (max-width: 768px) {
  .cta-btn {
    padding-block: 26px;
  }
}

.sect-title {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.sect-title_ja {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-size: 3.6rem;
  font-family: var(--ja-serif);
}
.sect-title_ja.white {
  color: var(--white);
}

.sect-title_en {
  background: var(--white);
  color: var(--green);
  line-height: 1.6;
  font-family: var(--en);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  width: 172px;
  border: 2px solid #d7c889;
  text-align: center;
  transform: skew(22deg);
  position: relative;
}

.sect-title_en span {
  transform: skew(-22deg);
  display: block;
}

.sect-title_en::before,
.sect-title_en::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 13px;
  height: 15px;
  background: url('../images/title_deco.png') no-repeat center center / contain;
  transform: skew(-22deg);
  translate: -92.5% 0;
}

.sect-title_en::after {
  left: auto;
  right: 0;
  bottom: auto;
  top: 0;
  translate: 92.5% 0;
  rotate: 180deg;
}

@media screen and (max-width: 768px) {
  .sect-title {
    gap: 8px;
    text-align: center;
  }

  .sect-title_ja {
    font-size: 2.8rem;
  }

  .sect-title_ja--s {
    font-size: 2.6rem;
  }

  .sect-title_en {
    font-size: 1.6rem;
    width: 146px;
  }

  .sect-title_en::before,
  .sect-title_en::after {
    width: 10px;
    height: 12px;
  }
}
.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 {
  height: 100%;
  margin-left: -17px;
  margin-right: -17px;
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.slick-slide {
  float: none;
  height: auto;
  height: 100%;
  display: inline-block;
}
.slick-slide:not(.slick-current) * {
  -webkit-filter: none;
  filter: none;
}
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 57%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 29px;
  height: 116px;
  padding: 0;
  background: rgb(215 61 20 / 0.7);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
  outline: none;
  color: transparent;
  cursor: pointer;
}
.slick-prev::after,
.slick-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-70%, -50%) rotate(-45deg);
  transform: translate(-70%, -50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}
.slick-prev {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  left: -17px;
}
.slick-next {
  right: -17px;
}
.slick-disabled {
  opacity: 0;
  cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
  opacity: 0;
}
.slick-dotted.slick-slider {
  margin-bottom: 40px;
}
.slick-dots {
  display: block;
  position: absolute;
  bottom: -20px;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 7px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 13px;
  height: 13px;
  padding: 0;
  border-radius: 50%;
  background-color: #c0c0c0;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: var(--brown);
}

.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 {
  max-width: 1000px;
  width: fit-content;
  box-shadow: 0px 0px 54px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 5;
  border-bottom-right-radius: 20px;
}

.header .header-logo {
  display: flex;
  gap: 39px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 35px 15px 31px;
  position: relative;
}
.header .header-logo .header_brand-logo {
  width: 57px;
  display: inline-block;
}
.header .header-logo .header_fcs-logo {
  width: 153px;
  display: inline-block;
}
.header .header-logo::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 20px;
  height: 2px;
}
.header .header-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 20px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .header {
    border-bottom-right-radius: 17px;
  }
  .header .header-logo {
    margin-inline: auto;
    gap: 21px;
    padding: 7px 27px 7px 21px;
  }

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

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

  .header .header-logo::before {
    width: 12px;
    height: 1px;
  }

  .header .header-logo::after {
    width: 12px;
    height: 1px;
  }
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50vw * 4)); /* 4枚分移動 */
  }
}

@keyframes slide-sp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100vw * 4)); /* 4枚分移動 */
  }
}

.hero {
  position: relative;
  padding-block: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 0;
  }
}

.hero_main {
  max-width: 776px;
  margin-inline: auto;
}

.hero_bg {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: calc(50vw * 8);
  display: flex;
  animation: slide 20s linear infinite;
}
.hero_bg-item {
  display: inline-block;
  width: 50%;
  height: 100%;
  float: none;
  position: relative;
  width: 50vw;
  flex-shrink: 0;
}

.hero_bg-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: var(--brown);
}
.hero_bg-img img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .hero_bg {
    width: calc(100vw * 8);
    animation: slide-sp 20s linear infinite;
  }
  .hero_bg-item {
    width: 100vw;
  }
}

.hero-bottom {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: var(--bg3);
}
.hero-bottom_inner {
  box-sizing: border-box;
  padding-inline: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero-bottom_appeal {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-bottom_catch {
  aspect-ratio: 165 / 60;
  width: 165px;
}

.hero-bottom_text {
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-align: center;
}
.hero-bottom_text em {
  font-style: normal;
  font-weight: 700;
  color: var(--red);
}

.hero-bottom_btn {
  width: 100%;
  max-width: 380px;
}

@media screen and (max-width: 768px) {
  .hero-bottom {
    margin-block-start: -20px;
  }
  .hero-bottom_inner {
    display: block;
    padding: 0;
    padding-block: 0 10px;
  }

  .hero-bottom_appeal {
    flex-direction: column;
    gap: 0;
  }

  .hero-bottom_catch {
    width: calc(192 / 375 * 100%);
    aspect-ratio: 192 / 51;
  }

  .hero-bottom_text {
    font-size: 1.4rem;
  }

  .hero-bottom_btn {
    margin-inline: auto;
    padding: 0;
    margin-block-start: 8px;
  }
}

.about {
  padding-block: 86px 92px;
  background: url('../images/about_bg.jpg') no-repeat center center / 939px auto;
}
@media screen and (max-width: 768px) {
  .about {
    background: url('../images/about_bg-sp.jpg') no-repeat center center / 335px auto;
    padding-top: 40px;
    padding-bottom: 275px;
  }
}
.about_desc {
  margin-top: 40px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about_desc {
    margin-top: 26px;
    font-size: 1.5rem;
    text-align: left;
  }
}

.loop-slider {
  overflow: hidden;
}

.loop-slider_item {
  aspect-ratio: 300 / 200;
  width: 300px;
  display: inline-block;
}

.what {
  background: var(--bg2);
  padding-block-end: 56px;
}

.what_list-wrap {
  margin-block-start: 40px;
  overflow: auto;
}
.what_list {
  display: flex;
  gap: 66px;
  width: 1040px;
  padding-inline: 20px;
  margin-inline: auto;
  margin-block-end: 24px;
}

.what_item {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.what_item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 58%;
  right: -53px;
  translate: -50% 0%;
  width: 22px;
  height: 26px;
  background: var(--red);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.what_item-idx {
  font-family: var(--en);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  display: block;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  position: relative;
}

.what_item-idx:not(.no-line)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1px;
  translate: 100% -50%;
  width: 219px;
  height: 3px;
  background: var(--red);
}
.what_item-title {
  color: var(--red);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  font-size: 2.4rem;
  margin-block-start: 20px;
}

.what_item-icon {
  width: 94px;
  height: 94px;
}

.what_item-text {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
  .what {
    padding-inline-end: 0;
  }

  .what_title {
    padding-inline-end: 20px;
  }

  .what_list-wrap {
    padding-inline-start: 43px;
  }
}

.reasons {
  position: relative;
  padding-block: 72px 80px;
  background: url(../images/reason_bg.jpg) no-repeat center center / cover;
}
@media screen and (max-width: 768px) {
  .reasons {
    background: url(../images/reason_bg-sp.jpg) no-repeat center center / cover;
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.reasons_list {
  display: grid;
  grid-template: auto auto/1fr 1fr;
  gap: 74px 60px;
  position: relative;
  margin-top: 70px;
}
@media screen and (max-width: 1280px) {
  .reasons_list {
    gap: 62px 28px;
  }
}
@media screen and (max-width: 768px) {
  .reasons_list {
    grid-template: repeat(4, auto) / auto;
    row-gap: 56px;
    margin-top: 56px;
  }
}

.reasons_list-item {
  position: relative;
  background-color: #fff;
  border: 4px solid var(--brown);
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.reasons_list-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  background: transparent;
  border: 2px solid var(--brown);
  z-index: 1;
}

.reasons_list-item:first-child .reasons_item-desc {
  margin-block-start: 12px;
}

.reasons_list-item:nth-child(2) .reasons_item-title {
  margin-block-start: -50px;
}

@media screen and (max-width: 768px) {
  .reasons_list-item::after {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }

  .reasons_list-item:first-child .reasons_item-desc {
    margin-block-start: 0px;
  }

  .reasons_list-item:nth-child(2) .reasons_item-title {
    margin-block-start: -44px;
  }
}

.reasons_item-index {
  position: absolute;
  width: 90px;
  height: 95px;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  background: url(../images/reasons_idx.svg) no-repeat center center / contain;
  color: #fff;
  font-size: 5.6rem;
  font-weight: bold;
  font-style: italic;
  font-family: var(--en);
  display: grid;
  place-items: center;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .reasons_item-index {
    font-size: 4.4rem;
    width: 72px;
    height: 76px;
  }
}

.reasons_item-body {
  display: flex;
  flex-direction: column;
}
.reasons_item-title {
  position: relative;
  padding: 8px 14px;
  color: #c91818;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.3;
  font-family: var(--ja-serif);
  display: block;
  background: #eddfa7;
  box-shadow: 4px 4px 0 var(--red);
  width: calc(100% - 64px);
  margin: -28px auto 0;
}
.reasons_item-title span {
  font-size: 2.4rem;
  display: block;
}

@media screen and (max-width: 768px) {
  .reasons_item-title {
    padding: 8px 12px;
    font-size: 2.2rem;
    width: calc(100% - 48px);
  }
  .reasons_item-title span {
    font-size: 1.8rem;
  }
}
.reasons_item-desc {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  padding: 13px 33px 33px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .reasons_item-desc {
    font-size: 1.6rem;
    padding: 12px 23px 30px;
  }
}
.reasons_item-img {
  aspect-ratio: 460 / 264;
  width: 100%;
}

.works {
  background: #c67028;
}

.works_cont {
  margin-block-start: 40px;
}
.works_cont img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .works_cont {
    margin-block-start: 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: 64px;
}
@media screen and (max-width: 768px) {
  .testimonials_list {
    margin-top: 64px;
  }
}
.testimonials_list-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 24px 30px;
  border: 5px solid var(--brown);
  display: flex;
  background: var(--bg2);
  padding: 53px 72px 28px;
  gap: 60px;
  align-items: start;
  position: relative;
}

.testimonials_list-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background: transparent;
  border: 2px solid var(--brown);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .testimonials_list-item {
    padding: 68px 24px 42px;
    gap: 10px;
    flex-direction: column-reverse;
  }

  .testimonials_list-item::after {
    width: calc(100% - 16px);
    height: calc(100% - 16px);
  }
}

.testimonials_appeal {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: calc(833 / 1000 * 100%);
}

.testimonials_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.testimonials_portrait {
  width: 223px;
}

.testimonials_portrait-img {
  width: 100%;
  height: 100%;
}

.testimonials_portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .testimonials_appeal {
    max-width: 400px;
    width: calc(292 / 335 * 100%);
    translate: -50% -35%;
  }
  .testimonials_head {
    aspect-ratio: 288 / 200;
    width: 100%;
  }
  .testimonials_portrait {
    width: 100%;
  }
}
.testimonials_info {
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .testimonials_info {
    margin-left: 14px;
  }
}
.testimonials_name {
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.8;
  background: var(--brown);
  text-align: center;
  translate: 0 -100%;
}
@media screen and (max-width: 768px) {
}
.testimonials_desc {
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .testimonials_desc {
    font-size: 1.6rem;
  }
}

.revenue {
  background: url(../images/revenue_bg.jpg) 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: 40px 50px;
  }
  .revenue_list {
    margin-block-start: 6px;
  }
}
.revenue_list-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
}
.revenue_list-item.slick-slide {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .revenue_list-item {
    margin: 10px;
    margin-block-start: 43px;
  }
}

.revenue_head {
  position: relative;
  height: 50px;
  width: 100%;
  background: var(--brown);
  display: grid;
  place-items: center;
}
.revenue_icon {
  width: 90px;
  height: 102px;
  position: absolute;
  left: 48px;
  bottom: -3px;
}

.revenue_example {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 12px 10px 30px;
  margin: 0 auto;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .revenue_example {
    padding-inline-start: 100px;
  }
}
@media screen and (max-width: 768px) {
  .revenue_example {
    padding: 9px 20px 9px 95px;
    font-size: 2rem;
  }
}
.revenue_achievement-wrap {
  padding: 20px 30px 26px;
  border: 3px solid var(--brown);
}
.revenue_achievement {
  text-align: center;
}
.revenue_achievement + * {
  margin-block-start: 10px;
}
.revenue_achievement-text1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--ja-serif);
  writing-mode: vertical-rl;
  color: var(--white);
  background: var(--red);
  padding: 5px 8px;
}
.revenue_achievement-text2 {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--ja-serif);
  font-size: 3.2rem;
  color: var(--red);
}
@media screen and (max-width: 768px) {
  .revenue_achievement-text1 {
    font-size: 2rem;
    padding: 3px 7px;
  }
  .revenue_achievement-text2 {
    font-size: 2.4rem;
  }
}
.revenue_achievement-num {
  font-size: 9rem;
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  font-family: var(--en);
  margin-inline-start: 7px;
}
@media screen and (max-width: 768px) {
  .revenue_achievement-num {
    font-size: 7rem;
  }
}
.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: 18px 8px;
  background-color: #fff;
  border-radius: 6px;
  color: #7b7b7b;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .revenue_supp {
    padding: 12px 4px;
    border-radius: 4px;
    font-size: 1.3rem;
  }
}

.flow {
  padding-block: 70px 80px;
  background-color: var(--white);
}
.flow_title {
}
.flow_list-wrap {
  overflow: hidden;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block: 40px 66px;
  }
  .flow_list-wrap {
    overflow: auto;
    margin-right: -17px;
    margin-top: 20px;
  }
}
.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: 670px;
    margin-bottom: 30px;
    margin-inline: auto;
    padding-inline-end: 20px;
  }
}
.flow_list-first {
  width: 140px;
  height: 140px;
  filter: drop-shadow(7px 4px 0px rgba(97, 30, 13, 1));
}
@media screen and (max-width: 768px) {
  .flow_list-first {
    padding-right: 7px;
    width: 116px;
    height: 116px;
    margin-block-start: 10px;
  }
}
.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: 160px;
  height: 173px;
  margin-left: 62px;
}
@media screen and (max-width: 768px) {
  .flow_list-item {
    width: 133px;
    height: 144px;
    margin-left: 51px;
  }
}
.flow_list-item::before {
  content: '';
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: -57px;
  width: 54px;
  height: 3px;
  background-color: #3c312d;
}
@media screen and (max-width: 768px) {
  .flow_list-item::before {
    left: -47px;
    width: 45px;
  }
}
.flow_list-item:last-child::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 18px;
  translate: -100% -50%;
  background-color: #3c312d;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.push {
  padding-top: 40px;
  padding-bottom: 143px;
  background: url(../images/push_bg.png) no-repeat center center / cover, #f3ecdc;
}
@media screen and (max-width: 768px) {
  .push {
    padding-top: 32px;
    padding-bottom: 97px;
    background: url(../images/push_bg-sp.png) no-repeat center center / cover, #f3ecdc;
  }
}
.push_title {
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-family: var(--ja-serif);
}
@media screen and (max-width: 768px) {
  .push_title {
    font-size: 2.6rem;
  }
}

.push_list {
  position: relative;
  margin: 39px auto 0;
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 700px;
}
@media screen and (max-width: 768px) {
  .push_list {
    margin-top: 20px;
    gap: 0;
    max-width: 380px;
  }
}

.push_list-item {
  position: relative;
  translate: -5px 0;
}
@media screen and (max-width: 768px) {
  .push_list-item + .push_list-item {
    margin-top: -12px;
  }
}
.request {
  position: relative;
  padding-top: 129px;
  padding-bottom: 100px;
  background: var(--bg2);
}
.request_title {
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .request {
    padding-block: 93px 60px;
  }
  .request_title {
    top: -66px;
    width: calc(100% - 40px);
    max-width: 380px;
  }
}
.request_title-inner {
  width: 760px;
}
@media screen and (max-width: 768px) {
  .request_title-inner {
    width: 100%;
  }
}
.request_note {
  text-align: center;
}
.request_note-mail {
  display: inline;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .request_note-mail {
    display: block;
    font-size: 1.3rem;
  }
}
.request_note-supp {
  display: inline;
  font-weight: 400;
  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: 40px 60px 40px 66px;
  margin: 28px auto 0;
  border: 3px solid var(--brown);
  font-family: var(--roboto);
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .request_panel {
    padding: 32px 20px 40px;
    margin-top: 17px;
    border-radius: 6px;
  }
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 9px 22px;
  margin: 0 auto;
  background-color: var(--green);
  color: #fff;
  font-size: 1.8rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .request_appeal {
    padding: 6px 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-weight: 300;
  font-size: 1.4rem;
  font-family: var(--roboto);
}
@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 {
  font-family: var(--roboto);
}

.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: #c0c0c0;
}
.form .form-text::-moz-placeholder {
  color: #c0c0c0;
}
.form .form-text:-ms-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::-ms-input-placeholder {
  color: #c0c0c0;
}
.form .form-text::placeholder {
  color: #c0c0c0;
}
.form .form-text:not(:-moz-placeholder-shown) {
  background-color: #fff;
  border: 1px solid #232323;
}
.form .form-text:not(:-ms-input-placeholder) {
  background-color: #fff;
  border: 1px solid #232323;
}
.form .form-text:not(:placeholder-shown) {
  background-color: #fff;
  border: 1px solid #232323;
}
.form .form-textarea {
  height: 140px;
}
.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 var(--brown);
}
.form .form-select--initial {
  background-color: #fff;
  color: #393939;
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: none;
  border: 2px solid var(--brown);
  border-radius: 50px;
  color: var(--brown);
  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-select {
    background: var(--white);
  }
  .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: 108px;
  font-weight: 400;
  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: var(--brown);
  -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.9rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-list-item-label {
    font-size: 1.6rem;
    padding-left: 27px;
  }
}
.form .form_item--radio .wpcf7-list-item-label::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid var(--brown);
  box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
  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: 8px;
  height: 8px;
  background-color: var(--brown);
  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: #b1b1b1;
  -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: 30px;
    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;
  font-size: 1.4rem;
  font-weight: 400;
}
@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: #b1b1b1;
}
@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;
  font-feature-settings: 'palt' 1;
}
@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: 22px;
  }
}
.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;
    font-weight: 300;
    line-height: 1.8;
  }
}
.form_submit-wrap {
  margin-top: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_submit-wrap {
    margin-top: 16px;
  }
}
.form_submit {
  position: relative;
  width: 300px;
  padding-top: 19px;
  padding-bottom: 21px;
  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;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}
@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: 11px;
  height: 11px;
  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: 20px;
  background-color: var(--brown);
  color: #fff;
  font-family: var(--brown);
}
@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;
}
@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: 42px;
}
@media screen and (max-width: 768px) {
  .footer_info + .footer_info {
    margin-top: 32px;
    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;
}
.footer_contact {
  margin-top: 19px;
  border: 1px solid var(--white);
  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: 6px;
  height: 9px;
  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: 20px;
}
@media screen and (max-width: 768px) {
  .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;
}

.E42D2D {
  color: #e42d2d;
}

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

.bold {
  font-weight: bold;
}
