@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@500&family=Noto+Serif+JP:wght@500;600;700&display=swap');

:root {
  --main: #E08980;
  --sub: #E8B6B1;
  --cta: #06C655;
  --bg: #FFF5F4;
  --text: #534F4C;
  --white: #FFFFFF;
  --font-size: 16px;
  --bold: bold;
  --content-width: 430px;
  --content-inner-width: 360px;
  --header-height: 75px;
  --font-sans-serif: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-en: "Futura", "Kumbh Sans", sans-serif;
  --font18: clamp(16px, 4.62vw, 18px);
  --font20: clamp(16px, 5.2vw, 20px);
  --font22: clamp(16px, 5.65vw, 22px);
  --font24: clamp(16px, 6.2vw, 24px);
  --font26: clamp(16px, 6.7vw, 26px);
  --font28: clamp(16px, 7.2vw, 28px);
  --font30: clamp(16px, 7.7vw, 30px);
  --font32: clamp(16px, 8.206vw, 32px);
  --font34: clamp(16px, 8.72vw, 34px);
  --font36: clamp(16px, 8.8vw, 36px);
  --font42: clamp(16px, 10.8vw, 42px);
  --spacing: 0.04em;
}

* { margin: 0; padding: 0; box-sizing: border-box;}
html { scroll-padding-top: var(--header-height);}
body {
  font-family: var(--font-sans-serif);
  color: var(--text);
  font-size: var(--font-size);
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: 0;
}
body.active { height: 100vh; overflow: hidden;}
ul, ol { list-style-type: none;}
h1, h2, h3, h4 { font-size: inherit; font-weight: inherit; word-break: auto-phrase;}
a { color: var(--text); text-decoration: none;}
a, a::before, a::after, a:hover, a:hover:before, a:hover:after { transition: all 0.5s ease;}
a:hover { opacity: 0.6;}
p + p { margin-top: 1em;}
mark { background-color: transparent; color: inherit;}
em, small { font-style: inherit; font-size: inherit; font-weight: inherit;}
.color { color: var(--main);}
.line { text-decoration: underline;}
strong { font-style: inherit; font-size: inherit; font-weight: var(--bold);}
img { width: 100%; height: auto; vertical-align: bottom;}
iframe { width: 100%; vertical-align: bottom;}
.wrapper {
  width: 100%;
  max-width: var(--content-width);
  min-width: 320px;
  padding-bottom: 68px;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 2px 14px -2px #00000040;
}
section { padding: 40px 0;}
.section-inner { width: 90%; max-width: var(--content-inner-width); margin: auto;}
.section-title {
  font-size: var(--font26);
  text-align: center;
  margin-bottom: 30px;
}

.cta-link { position: relative;}
.cta-link-head {
  display: flex;
  width: max-content;
  font-size: 12px;
  line-height: 1.2;
  background-color: var(--white);
  color: var(--cta);
  font-weight: var(--bold);
  padding: 4px 48px;
  border: 1px solid var(--cta);;
  border-radius: 14px;
  position: relative;
  margin: 0 auto -8px;
  z-index: 2;
}
.cta-link-head::before,
.cta-link-head::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: var(--cta);;
}
.cta-link-head::before { transform: rotate(-22deg); left: -10px; margin-right: 8px;}
.cta-link-head::after { transform: rotate(22deg); right: -10px; margin-left: 8px;}
.cta-link-text {
  display: flex;
  align-items: center;
  width: max-content;
  color: var(--white);
  font-size: var(--font18);
  font-weight: var(--bold);
  line-height: 1;
  background-color: var(--cta);;
  border: 1px solid var(--white);
  border-radius: 30px;
  box-shadow: 0 4px 4px #00000040;
  padding: 14px 40px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.cta-link-text::before,
.cta-link-text::after { content: ""; display: block;}
.cta-link-text::before {
  width: 17px;
  height: 17px;
  background: url(../img/icon-line.png) no-repeat;
  background-size: contain;
  margin-right: 11px;
}
.cta-link-text::after {
  width: 10px;
  height: 11px;
  background: url(../img/icon-arrow.png) no-repeat;
  background-size: contain;
  margin-left: 13px;
}
.section-cta {
  background: url(../img/cta-bg.webp) no-repeat;
  background-size: cover;
}
.no-webp .section-cta { background-image: url(../img/cta-bg.png);}
.section-cta .cta-link { margin-bottom: 8px;}
.cta-title {
  background-color: var(--main);
  color: var(--white);
  font-size: var(--font30);
  font-weight: var(--bold);
  line-height: 1;
  font-style: italic;
  text-align: center;
  border-radius: 10px 10px 0 0;
  padding: 8px 4px 8px 0;
  margin: 0 -5px;
  position: relative;
}
.cta-title::before,
.cta-title::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: -8px;
  border-top: 8px solid #A46059;
}
.cta-title::before { border-left: 5px solid transparent; left: 0;}
.cta-title::after { border-right: 5px solid transparent; right: 0;}
.cta-content {
  background-color: var(--white);
  border: 1px solid var(--main);
  border-radius: 10px;
  padding-bottom: 24px;
  margin-bottom: 30px;
}
.cta-content-wrap::before {
  content: "";
  display: block;
  aspect-ratio: 360 / 286;
  background: url(../img/cta.webp) no-repeat;
  background-size: cover;
  margin-bottom: -10px;
}
.no-webp .cta-content-wrap::before { background-image: url(../img/cta.jpg);}
.cta-content-title {
  width: max-content;
  max-width: 100%;
  background-color: var(--main);
  color: var(--white);
  font-size: var(--font18);
  line-height: 1;
  border: 4px solid var(--white);
  border-radius: 30px;
  margin: -25px auto 0;
  padding: 12px 6%;
  position: relative;
}
.cta-content-title::before {
  content: "";
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 1px solid var(--main);
  border-radius: 40px;
  position: absolute;
  top: -4px;
  left: -4px;
}
.cta-content-list { padding: 0 6%;}
.cta-content-item {
  padding-left: 27px;
  margin-top: 16px;
  position: relative;
}
.cta-content-item::before {
  content: "";
  width: 19px;
  height: 19px;
  background: url(../img/icon-check.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.header {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}
.header-logo { width: 96px;}
.header-link a {
  display: block;
  width: max-content;
  color: var(--white);
  font-weight: var(--bold);
  line-height: 1;
  background-color: var(--cta);;
  border: 1px solid var(--white);
  border-radius: 30px;
  box-shadow: 0 4px 4px #00000040;
  padding: 8px 16px;
  margin: auto;
}
.header-link span {
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.header-link-head {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 4px;
}
.header-link-head::before,
.header-link-head::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: var(--white);
}
.header-link-head::before { transform: rotate(-22deg); margin-right: 8px;}
.header-link-head::after { transform: rotate(22deg); margin-left: 8px;}
.header-link-text { display: flex; align-items: center;}
.header-link-text::before,
.header-link-text::after { content: "";}
.header-link-text::before {
  width: 17px;
  height: 17px;
  background: url(../img/icon-line.png) no-repeat;
  background-size: contain;
  margin-right: 11px;
}
.header-link-text::after {
  width: 10px;
  height: 11px;
  background: url(../img/icon-arrow.png) no-repeat;
  background-size: contain;
  margin-left: 13px;
}

.first-view { padding-bottom: 20px;}
.fv-head {
  display: flex;
  column-gap: 2%;
  justify-content: space-between;
  align-items: center;
  background-color: var(--main);
  font-size: var(--font22);
  font-weight: var(--bold);
  letter-spacing: 0.02em;
  padding: 16px 1.5%;
}
.fv-head-text { color: var(--white); font-style: italic; word-break: keep-all;}
.fv-head-text em { position: relative;}
.fv-head-text em::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: 20%;
  right: 0;
  margin: auto;
}
.fv-head-text strong {
  display: block;
  font-size: var(--font32);
  letter-spacing: 0.04em;
  border-bottom: 3px double var(--white);
  padding-right: 4px;
}
.fv-head-list {
  flex-grow: 1;
  font-size: min(14px, 3.59vw);
}
.fv-head-item {
  background-color: var(--white);
  padding: 4px 2% 4px 18%;
  border-radius: 4px;
  word-break: keep-all;
  position: relative;
}
.fv-head-item::before {
  content: "";
  display: block;
  width: 12%;
  height: 14px; 
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4%;
  margin: auto;
}
.fv-head-item.calender::before { background-image: url(../img/icon-calender.png);}
.fv-head-item.beginner::before { background-image: url(../img/icon-beginner.png);}
.fv-head-item.regular::before { background-image: url(../img/icon-regular.png);}
.fv-head-item + .fv-head-item { margin-top: 4px;}
.fv-main {
  aspect-ratio: 780 / 1070;
  background: url(../img/first-view.webp) no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 30px;
}
.no-webp .fv-main { background-image: url(../img/first-view.jpg);}
.fv-main-box { position: relative;}
.fv-main-text1 span {
  background-color: var(--white);
  display: block;
  width: max-content;
  max-width: 100%;
  color: var(--main);
  font-size: var(--font20);
  line-height: 1.45;
  border: 1px solid var(--main);
  border-left: none;
  border-radius: 0 4px 4px 0;
  padding: 4px 4px 4px 16px;
  margin-top: 8px;
}
.fv-main-copy { width: 95%; margin: 20px auto 16px;}
.fv-main-text2 {
  width: max-content;
  max-width: 100%;
  font-size: var(--font18);
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding: 8px 20px;
  margin: auto;
  border-image: linear-gradient(90deg, #B5B5B5 0%, #828282 50%, #B5B5B5 100%);
  border-image-slice: 1;
}
.fv-main-wage {
  display: flex;
  align-items: center;
  width: 130px;
  height: 130px;
  background-color: var(--main);
  color: var(--white);
  font-size: var(--font18);
  text-align: center;
  border-radius: 50%;
  padding: 8px;
  position: absolute;
  top: 18px;
  right: 3%;
}
.fv-main-wage em { font-family: var(--font-en); font-size: var(--font32);}
.fv-main-wage small { display: block; font-size: 11px;}
.fv-main-wage::before {
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 3px 3px #00000040;
}

.section-about { padding: 0;}
.osusume-wrap {
  background: var(--main) url(../img/osusume-bg.svg) no-repeat bottom center;
  background-size: 100%;
  color: var(--white);
  padding: 30px 0 60px;
}
.osusume-box-wrap {
  background-color: #FFFFFF1A;
  border: 1px solid var(--white);
  padding: 8px 5%;
  position: relative;
}
.osusume-box-wrap::before,
.osusume-box-wrap::after,
.osusume-box::before,
.osusume-box::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}
.osusume-box-wrap::before {
  border-top: 14px solid var(--white);
  border-right: 14px solid transparent;
  top: 4px;
  left: 4px;
}
.osusume-box-wrap::after {
  border-top: 14px solid var(--white);
  border-left: 14px solid transparent;
  top: 4px;
  right: 4px;
}
.osusume-box::before {
  border-bottom: 14px solid var(--white);
  border-right: 14px solid transparent;
  bottom: 4px;
  left: 4px;
}
.osusume-box::after {
  border-bottom: 14px solid var(--white);
  border-left: 14px solid transparent;
  bottom: 4px;
  right: 4px;
}
.osusume-item {
  font-size: 14px;
  border-bottom: 1px dotted var(--white);
  padding: 12px 0 12px 30px;
  position: relative;
}
.osusume-item::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url(../img/icon-check-w.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  left: 0;
}
.osusume-item:last-of-type { border-bottom: none;}
.osusume-item mark {
  display: inline-block;
  background-color: var(--white);
  color: var(--main);
  padding: 0 4px;
  margin: 0 2px;
}
.osusume-item mark.left { margin-left: 0;}
.osusume-item mark.bottom { margin-top: 8px;}
.about-wrap { padding-top: 18px;}
.about-title {
  width: max-content;
  max-width: 100%;
  background-color: var(--main);
  color: var(--white);
  line-height: 1.2;
  border-radius: 24px;
  padding: 8px 32px;
  margin: 0 auto 20px;
  position: relative;
}
.about-title::before {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 30px;
  border: 1px solid var(--main);
  position: absolute;
  top: -3px;
  left: -3px;
}
.about-box { width: 95%; margin: auto;}
.about-box::after {
  content: "";
  display: block;
  width: 52px;
  height: 15px;
  background: url(../img/about-arrow.png) no-repeat;
  background-size: contain;
  margin: 8px auto 0;
}
.about-item {
  display: flex;
  align-items: center;
  font-size: var(--font20);
  border-bottom: 1px solid #00000040;
  padding: 4px 0;
  margin-bottom: 18px;
}
.about-item::before {
  content: attr(data-no);
  display: block;
  min-width: 56px;
  font-family: var(--font-en);
  color: #00000040;
  font-size: var(--font36);
  line-height: 1;
  margin: 0 4px;
}
.about-foot {
  aspect-ratio: 390 / 353;
  background: url(../img/about.webp) no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  margin-top: 20px;
}
.no-webp .about-foot { background-image: url(../img/about.jpg);}
.about-foot-text {
  width: 95%;
  max-width: 346px;
  background-color: var(--white);
  color: #444849;
  line-height: 1.6;
  text-align: center;
  border: 1px solid var(--main);
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  margin: 0 auto;
  padding: 10px 20px;
}
.about-foot-text strong {
  display: block;
  width: max-content;
  max-width: 100%;
  font-size: var(--font20);
  border-bottom: 2px solid var(--main);
  padding: 0 20px;
  margin: 0 auto 4px;
  position: relative;
}
.about-foot-text strong::before,
.about-foot-text strong::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: #444849;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.about-foot-text strong::before { transform: rotate(-45deg); left: 4px;}
.about-foot-text strong::after {transform: rotate(45deg); right: 4px;}

.section-reason { background: linear-gradient(180deg, #E08980 0%, #FFFFFF 49.04%, #E08980 100%);}
.section-reason .section-title { color: var(--white);}
.reason-item {
  background-color: var(--white);
  border: 1px solid var(--main);
  border-radius: 20px 0 20px 0;
  padding: 0 5% 20px;
  margin-top: 60px;
  position: relative;
}
.reason-item::before {
  content: attr(data-text);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--main) url(../img/reason-head-bg.png) no-repeat bottom right;
  background-size: 100%;
  color: var(--white);
  border: 1px solid var(--white);
  position: relative;
  top: -30px;
  margin: 0 auto -20px;
}
.reason-item-title {
  font-size: var(--font22);
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 16px;
}
.reason-item-title em { color: var(--main);}
.reason-item-text::before {
  content: "";
  display: block;
  aspect-ratio: 330 / 220;
  margin-bottom: 16px;
  background-repeat: no-repeat;
  background-size: cover;
}
.reason-item:nth-child(1) .reason-item-text::before { background-image: url(../img/reason1.webp);}
.reason-item:nth-child(2) .reason-item-text::before { background-image: url(../img/reason2.webp);}
.reason-item:nth-child(3) .reason-item-text::before { background-image: url(../img/reason3.webp);}
.reason-item:nth-child(4) .reason-item-text::before { background-image: url(../img/reason4.webp);}
.reason-item:nth-child(5) .reason-item-text::before { background-image: url(../img/reason5.webp);}
.no-webp .reason-item:nth-child(1) .reason-item-text::before { background-image: url(../img/reason1.jpg);}
.no-webp .reason-item:nth-child(2) .reason-item-text::before { background-image: url(../img/reason2.jpg);}
.no-webp .reason-item:nth-child(3) .reason-item-text::before { background-image: url(../img/reason3.jpg);}
.no-webp .reason-item:nth-child(4) .reason-item-text::before { background-image: url(../img/reason4.jpg);}
.no-webp .reason-item:nth-child(5) .reason-item-text::before { background-image: url(../img/reason5.jpg);}

.section-shop { background-color: #EFD9D7; padding-bottom: 57px;}
.section-shop .splide__pagination { bottom: -12px;}
.section-shop .splide { padding-bottom: 16px;}
.section-shop .splide__pagination__page { background-color: var(--sub);}
.section-shop .splide__pagination__page.is-active { background-color: var(--main); transform: scale(1);}
.section-shop .splide__arrow {
  width: 30px;
  height: 30px;
  opacity: 1;
  background-repeat: no-repeat;
  background-size: contain;
  top: 40%;
}
.section-shop .splide__arrow--prev { background-image: url(../img/shop-arrow-l.png); left: -5px;}
.section-shop .splide__arrow--next { background-image: url(../img/shop-arrow-r.png); right: -5px;}
.section-shop .splide__arrow svg { display: none;}
.shop-item::before {
  content: "";
  display: block;
  aspect-ratio: 360 / 236;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 16px;
}
.shop-item:nth-child(1):before { background-image: url(../img/shop1.webp);}
.shop-item:nth-child(2):before { background-image: url(../img/shop2.webp);}
.shop-item:nth-child(3):before { background-image: url(../img/shop3.webp);}
.no-webp .shop-item:nth-child(1):before { background-image: url(../img/shop1.jpg);}
.no-webp .shop-item:nth-child(2):before { background-image: url(../img/shop2.jpg);}
.no-webp .shop-item:nth-child(3):before { background-image: url(../img/shop3.jpg);}

.section-training { background-color: #E4A5A0;}
.training-title { color: var(--white); line-height: 40px;}
.training-title em {
  display: inline-block;
  background-color: var(--white);
  width: 40px;
  height: 40px;
  color: var(--main);
  font-weight: var(--bold);
  border: 1px solid var(--main);
  margin-right: 4px;
}
.training-item {
  background-color: #FFFFFFE5;
  font-size: var(--font18);
  line-height: 30px;
  padding: 8px 8px 8px 56px;
  margin-bottom: 16px;
  position: relative;
}
.training-item::before {
  content: attr(data-no);
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--main);
  font-family: var(--font-en);
  color: var(--white);
  text-align: center;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.training-item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--main);
  border-left: 10px solid transparent;
  position: absolute;
  bottom: 2px;
  right: 2px;
}
.training-text {
  border: 1px solid var(--white);
  border-radius: 10px;
  padding: 30px 8%;
  position: relative;
  margin-top: 20px;
  z-index: 1;
}
.training-text::before {
  content: "";
  width: 92%;
  height: calc(100% - 16px);
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 4%;
  z-index: -1;
}
.training-text::after {
  content: attr(data-text);
  display: inline-block;
  width: max-content;
  background-color: #E4A5A0;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-en);
  padding: 0 4px;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  margin: auto;
}
.training-text .small {
  display: inline-block;
  background-color: var(--main);
  color: var(--white);
  font-size: 8px;
  line-height: 1.1;
  padding: 2px 4px;
  margin-right: 2px;
}
.training-text em { font-weight: var(--bold); color: var(--main);}

.section-recruit { background-color: var(--bg);}
.recruit-item { display: flex; font-size: 14px; border-bottom: 1px solid var(--text);}
.recruit-item:last-of-type { border: none;}
.recruit-item-head,
.recruit-item-content { padding: 6px 8px;}
.recruit-item-head { width: 7em; border-right: 1px solid var(--text);}
.recruit-item-content { width: calc(100% - 7em);}

.section-message { background: url(../img/message-bg.webp) no-repeat; background-size: cover;}
.no-webp .section-message { background-image: url(../img/message-bg.png);}
.massage-box {
  width: 94%;
  max-width: 370px;
  background-color: #FFFFFFCC;
  margin-top: 52px;
  margin-left: auto;
}
.message-head {
  position: relative; 
  display: flex;
  align-items: center;
}
.message-img {
  width: 50%;
  aspect-ratio: 200 / 229;
  position: relative;
  top: -52px;
  left: -3%;
  margin-bottom: -44px;
}
.message-img img { border-radius: 6px; border: 1px solid var(--main);}
.message-title-wrap { flex-grow: 1;}
.message-title {
  font-size: var(--font20);
  line-height: 1;
  border-bottom: 1px solid var(--main);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.message-head-text {
  font-size: var(--font22);
  line-height: 1;
}
.message-head-text small {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  margin-left: 8px;
}
.message-text { font-size: 14px; padding: 0 2.7% 30px;}

.flow-title {
  background-color: var(--main);
  color: var(--white);
  line-height: 1;
  text-align: center;
  border-radius: 3px;
  padding: 6px;
}
.flow-item { padding-top: 34px; border-bottom: 1px solid var(--main);}
.flow-item::after {
  content: "";
  display: block;
  width: 30px;
  height: 6px;
  background: url(../img/flow-arrow.png) no-repeat;
  background-size: contain;
  margin: auto;
  position: relative;
  bottom: -6px;
}
.flow-item:first-of-type { padding-top: 0;}
.flow-item:last-of-type { border: none;}
.flow-item:last-of-type::after { content: none;}
.flow-item-head {
  display: flex;
  align-items: flex-start;
  font-size: var(--font18);
  font-weight: var(--bold);
  word-break: keep-all;
  line-height: 28px;
  margin-bottom: 16px;
}
.flow-item-head::before {
  content: attr(data-no);
  display: inline-block;
  background-color: var(--main);
  color: var(--white);
  font-size: min(4vw, 18px);
  font-family: var(--font-en);
  font-weight: normal;
  padding: 0 2.6%;
  margin-right: 2.8%;
}
.flow-item-content { margin-bottom: 16px;}
.flow-item:last-of-type .flow-item-content { margin-bottom: 0;}
.section-faq { background-color: var(--sub);}
.faq-title {
  width: max-content;
  max-width: 100%;
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.faq-title::before,
.faq-title::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.faq-title::before { left: -16px;}
.faq-title::after { right: -16px;}
.faq-item { margin-top: 24px; position: relative;}
.faq-item::after {
  content: "";
  height: 2px;
  width: 14px;
  background-color: var(--white);
  position: absolute;
  top: 16px;
  right: 14px;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  background-color: var(--main);
  color: var(--white);
  font-weight: var(--bold);
  padding: 6px 40px 6px 10px;
  position: relative;
  cursor: pointer;
}
.faq-q::before { content: "Q."; margin-right: 8px;}
.faq-q::after {
  content: "";
  width: 2px;
  height: 14px;
  background-color: var(--white);
  position: absolute;
  top: 10px;
  right: 20px;
}
.faq-q.active::after { content: none;}
.faq-a { background-color: var(--white); font-size: 14px; padding: 8px 5px; display: none;}

.footer-cta {
  display: block;
  background-color: var(--cta);
  width: var(--content-width);
  max-width: 100%;
  position: fixed;
  bottom: -68px;
  left: 0; right: 0;
  padding: 10px;
  margin: auto;
  transition: all 0.5s ease;
  z-index: 10;
  cursor: pointer;
}
.footer-cta .cta-link {
  width: 90%;
  max-width: var(--content-inner-width);
  margin: 0 auto;
}
.footer-cta .cta-link-text {
  border: none;
  box-shadow: none;
  padding-bottom: 0;
}
.footer-cta.view { bottom: 0; transition: all 0.5s ease;}