@charset "UTF-8";
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: メディアクエリー*/
/* 切り替えポイントの設定 */
/* 処理 */
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: @font-face (Webフォント定義) */
@font-face {
  font-family: "LINE Seed JP";
  src: url("fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "LINE Seed JP";
  src: url("fonts/LINESeedJP_OTF_Eb.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-primary: #e24419;
  --color-white: #fff;
  --color-black: #000;
  --color-yellow: #f6d171;
  --color-green: #6a5a1b;
  --color-bg: #fff;
  --color-gray: #f6f6f6;
  --color-dark-gray: #d9d9d9;
  --font-en: "Nova Round", sans-serif;
  --font-ja: "LINE Seed JP", "Yu Gothic", "Meiryo", sans-serif;
  --max-width: 1366;
  --content-width: 1366;
  --transformrate: 0, 0, 0.56, 0.99;
}
@media only screen and (max-width: 760px) {
  :root {
    --content-width: 760;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: フォントサイズ */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media only screen and (max-width: 760px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: body*/
body {
  background: var(--color-bg);
  color: var(--color-black);
  font-family: var(--font-ja);
  font-size: 1.5rem;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 1279px) {
  body {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 960px) {
  body {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 760px) {
  body {
    font-size: 1.3rem;
  }
  body.menu-open {
    overflow: hidden;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: var(--color-black);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.en,
:lang(en),
.number {
  font-family: var(--font-en);
}

.container {
  width: 100%;
  max-width: calc(var(--max-width) * 1px);
  margin: 0 auto;
  padding: 0 6rem;
  position: relative;
  container-type: inline-size;
}
@media only screen and (max-width: 960px) {
  .container {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 760px) {
  .container {
    padding: 0 2rem;
  }
}

.highlight {
  color: var(--color-primary);
}

.nopc {
  display: none;
}
@media only screen and (max-width: 760px) {
  .nopc {
    display: block;
  }
}

.nopc {
  display: none;
}
@media only screen and (max-width: 760px) {
  .nopc {
    display: block;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header .menu-overlay {
  display: none;
}
@media only screen and (max-width: 760px) {
  .header .menu-overlay {
    display: block;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .header .menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.header .header-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.2rem 3.7rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 5rem;
}
@media only screen and (max-width: 760px) {
  .header .header-inner {
    padding: 2rem;
  }
}
.header .header-logo {
  display: block;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.header .header-logo:hover {
  opacity: 0.8;
}
.header .header-logo img {
  width: auto;
  height: 5.2rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 760px) {
  .header .header-logo img {
    height: 4rem;
  }
}
.header .hamburger-btn {
  display: none;
}
@media only screen and (max-width: 760px) {
  .header .hamburger-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 0;
    width: 68px;
    height: 46px;
    border-radius: 6px;
    background: var(--color-black);
    color: var(--color-white);
    z-index: 1001;
    position: relative;
  }
  .header .hamburger-btn .hamburger-text {
    font-family: var(--font-ja);
    font-size: 16px;
    font-weight: 700;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    position: absolute;
  }
  .header .hamburger-btn .hamburger-text--close {
    opacity: 0;
  }
  .header .hamburger-btn.is-active .hamburger-text {
    opacity: 0;
  }
  .header .hamburger-btn.is-active .hamburger-text--close {
    opacity: 1;
  }
}
@media only screen and (max-width: 760px) {
  .header .header-nav {
    position: fixed;
    z-index: 1000;
    top: 7.6rem;
    right: 2rem;
    background: var(--color-black);
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    border-radius: 1rem;
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 760px) {
  .header .header-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.header .header-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4rem;
}
@media only screen and (max-width: 960px) {
  .header .header-nav ul {
    gap: 2rem;
  }
}
@media only screen and (max-width: 760px) {
  .header .header-nav ul {
    display: grid;
    gap: 20px;
    padding: 30px;
    text-align: center;
  }
}
.header .header-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  text-decoration: underline;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
}
@media only screen and (max-width: 960px) {
  .header .header-nav a {
    --content-width: 960;
    font-size: calc(15 / var(--content-width) * 100cqi);
  }
}
@media only screen and (max-width: 760px) {
  .header .header-nav a {
    display: block;
    text-decoration: none;
    color: var(--color-white);
    font-size: 16px;
  }
}
.header .header-nav a:hover {
  color: var(--color-primary);
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: アンカーリンク用スクロールマージン */
section[id] {
  scroll-margin-top: 10rem;
}
@media only screen and (max-width: 760px) {
  section[id] {
    scroll-margin-top: 8rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: hero */
.hero-section {
  background-color: var(--color-yellow);
  container-type: inline-size;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-block: 10rem 7rem;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .hero-section {
    padding-block: 7rem 3rem;
  }
}
.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.hero-section .hero-bg .image span {
  position: absolute;
}
.hero-section .hero-bg .image img {
  width: calc(950 / var(--content-width) * 100cqi);
  height: calc(330 / var(--content-width) * 100cqi);
}
.hero-section .hero-bg .image .left {
  top: 1rem;
  left: calc(-500 / var(--content-width) * 100cqi);
}
.hero-section .hero-bg .image .right {
  bottom: 4rem;
  right: calc(-500 / var(--content-width) * 100cqi);
}
.hero-section .hero-bg .text {
  position: absolute;
  inset: 0;
  margin: auto;
  font-size: 2rem;
}
.hero-section .hero-bg .text span:before {
  display: block;
  content: "Subscription";
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  position: absolute;
  top: 0;
  left: 1em;
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-bg .text span:before {
    font-size: 1rem;
  }
}
.hero-section .hero-bg .text .left {
  position: absolute;
  left: calc(27 / var(--content-width) * 100cqi);
  top: calc(307 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-bg .text .left {
    top: 40%;
  }
}
.hero-section .hero-bg .text .right {
  position: absolute;
  right: calc(27 / var(--content-width) * 100cqi);
  top: calc(307 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-bg .text .right {
    top: 40%;
  }
}
.hero-section .hero-bg .text .right:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  left: unset;
  right: 1em;
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.hero-section .hero-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4.3rem;
  width: 100%;
  padding: 0 2rem;
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-content {
    gap: 2rem;
  }
}
.hero-section .hero-images {
  position: absolute;
  inset: 0;
  margin: auto;
}
.hero-section .hero-images .hero-img {
  position: absolute;
  aspect-ratio: 1/1;
}
.hero-section .hero-images .hero-img.--img1 {
  width: calc(250 / var(--content-width) * 100cqi);
  top: calc(45 / var(--content-width) * 100cqi);
  left: calc(84 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-images .hero-img.--img1 {
    width: 12rem;
    top: -4rem;
    left: 1rem;
  }
}
.hero-section .hero-images .hero-img.--img2 {
  width: calc(194 / var(--content-width) * 100cqi);
  top: calc(199 / var(--content-width) * 100cqi);
  right: calc(109 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-images .hero-img.--img2 {
    width: 9rem;
    right: 2rem;
    top: -1rem;
  }
}
.hero-section .hero-images .hero-img.--img3 {
  width: calc(261 / var(--content-width) * 100cqi);
  bottom: calc(-60 / var(--content-width) * 100cqi);
  left: calc(160 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-images .hero-img.--img3 {
    width: 12rem;
    bottom: unset;
    top: 20rem;
    left: 0rem;
  }
}
.hero-section .hero-title {
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-title {
    padding: 6rem 0 0;
  }
}
.hero-section .hero-title img {
  width: 56.6666666667cqi;
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-title img {
    width: 100%;
  }
}
.hero-section .hero-desc {
  font-size: calc(20 / var(--content-width) * 100cqi);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .hero-section .hero-desc {
    font-size: 1.8rem;
  }
}
.hero-section .hero-desc span {
  color: var(--color-primary);
}

.fixed-cta {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 2rem;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  width: 16rem;
  height: 16rem;
  position: fixed;
  right: calc(60 / var(--content-width) * 100cqi);
  bottom: calc(50 / var(--content-width) * 100cqi);
  z-index: 99;
  margin: auto;
  font-family: var(--font-ja);
}
@media only screen and (max-width: 760px) {
  .fixed-cta {
    font-size: 1.4rem;
    left: 0;
    right: 0;
    top: unset;
    bottom: 0;
    border-radius: 1rem 1rem 0 0;
    width: 100%;
    height: 4rem;
    gap: 1rem;
    margin: 0;
    position: fixed;
  }
  .fixed-cta br {
    display: none;
  }
}
.fixed-cta:hover {
  background: #c93a15;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: worry */
.worry-section {
  padding: 0 0 13rem;
  position: relative;
  background-color: var(--color-yellow);
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .worry-section {
    padding: 0 0 10rem;
  }
}
@media only screen and (max-width: 760px) {
  .worry-section {
    padding: 0 0 6rem;
  }
}
.worry-section .container {
  position: relative;
  z-index: 1;
  padding: 0;
}
.worry-section .section-title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  padding-bottom: 6rem;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 760px) {
  .worry-section .section-title {
    font-size: 2rem;
  }
}
.worry-section .section-title img {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  margin-bottom: -1rem;
  width: calc(179 / var(--content-width) * 100cqi);
}
.worry-section .worry-bg {
  position: absolute;
  bottom: 1.7rem;
  aspect-ratio: 1366/627;
}
.worry-section .worry-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.worry-section .worry-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(30 / var(--content-width) * 100cqi);
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3rem;
}
@media only screen and (max-width: 760px) {
  .worry-section .worry-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
}
.worry-section .worry-item {
  text-align: center;
  container-type: inline-size;
  background-color: var(--color-white);
  aspect-ratio: 1/1;
  border-radius: 999px;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .worry-section .worry-item {
    width: 22rem;
  }
}
.worry-section .worry-item:before {
  content: "";
  display: block;
  width: 123.5294117647cqi;
  height: 123.5294117647cqi;
  border: 1px dashed var(--color-white);
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
}
.worry-section .worry-item .worry-image {
  width: 62.9411764706cqi;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.worry-section .worry-item .worry-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.worry-section .worry-item .worry-text {
  font-family: var(--font-ja);
  font-size: 5.8823529412cqi;
  font-weight: 700;
  line-height: 1.4;
}
@media only screen and (max-width: 760px) {
  .worry-section .worry-item .worry-text {
    font-size: 1.3rem;
  }
}
.worry-section .worry-item .worry-text .highlight {
  color: var(--color-primary);
  font-size: 1.5em;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: merit */
.merit-section {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .merit-section {
    padding: 5rem 0 3rem;
  }
}
.merit-section .merit-header {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 6rem;
  max-width: 95.7rem;
  width: calc(957 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .merit-section .merit-header {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.merit-section .merit-content .merit-subtitle {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .merit-section .merit-content .merit-subtitle {
    font-size: 1.5rem;
  }
}
.merit-section .merit-content .merit-subtitle .large {
  font-size: 1.6666666667em;
}
.merit-section .merit-content .merit-subtitle .small {
  font-size: 0.8em;
}
.merit-section .merit-content .merit-subtitle .highlight {
  color: var(--color-yellow);
}
.merit-section .merit-content .merit-subtitle .highlight-box {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-black);
  padding: 0 0.2em;
  border-radius: 1rem;
  margin-left: 4px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: scroll-infinity */
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity .scroll-infinity__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.scroll-infinity .scroll-infinity__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 2rem 0;
}
.scroll-infinity .scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity .scroll-infinity__item {
  width: 22.2222222222vw;
  padding: 1rem;
}
@media only screen and (max-width: 960px) {
  .scroll-infinity .scroll-infinity__item {
    width: 28.5714285714vw;
  }
}
@media only screen and (max-width: 760px) {
  .scroll-infinity .scroll-infinity__item {
    width: 40vw;
  }
}
.scroll-infinity .scroll-infinity__item:nth-child(even) {
  padding-top: calc(50 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .scroll-infinity .scroll-infinity__item:nth-child(even) {
    padding-top: 4rem;
  }
}
.scroll-infinity .scroll-infinity__item > img {
  width: 100%;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px calc(40 / var(--content-width) * 100cqi) 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px calc(40 / var(--content-width) * 100cqi) 0 rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 760px) {
  .scroll-infinity .scroll-infinity__item > img {
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  }
}
.scroll-infinity .scroll-infinity__item--text {
  white-space: nowrap;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: calc(100 / var(--max-width) * 100cqi);
  font-weight: 400;
  padding-right: 0.3em;
  line-height: 1.4;
}
@media only screen and (max-width: 760px) {
  .scroll-infinity .scroll-infinity__item--text {
    font-size: 5rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: merit-detail */
.merit-detail-section {
  padding: 8rem 0 14rem;
}
@media only screen and (max-width: 960px) {
  .merit-detail-section {
    padding: 6rem 0 10rem;
  }
}
@media only screen and (max-width: 760px) {
  .merit-detail-section {
    padding: 4rem 0 6rem;
  }
}
.merit-detail-section .merit-detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(50 / var(--content-width) * 100cqi) calc(40 / var(--content-width) * 100cqi);
  max-width: 108rem;
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.merit-detail-section .merit-detail-item {
  border-radius: 1rem;
  background: #f6f6f6;
  padding: 3rem 3.6rem;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .merit-detail-section .merit-detail-item {
    padding: 3rem;
  }
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item {
    padding: 2rem;
  }
}
.merit-detail-section .merit-detail-item:nth-child(1) .merit-circle-img {
  width: 26rem;
  margin-top: -2rem;
}
@media only screen and (max-width: 960px) {
  .merit-detail-section .merit-detail-item:nth-child(1) .merit-circle-img {
    width: 23rem;
  }
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item:nth-child(1) .merit-circle-img {
    margin-top: -1rem;
    width: 20rem;
  }
}
.merit-detail-section .merit-detail-item .merit-number {
  position: absolute;
  top: 3.7rem;
  left: 3.9rem;
  z-index: 2;
}
@media only screen and (max-width: 960px) {
  .merit-detail-section .merit-detail-item .merit-number {
    top: 3rem;
    left: 3rem;
  }
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-number {
    top: 2rem;
    left: 2rem;
  }
}
.merit-detail-section .merit-detail-item .merit-number .en {
  font-family: var(--font-en);
  font-size: 2rem;
  padding-right: 0.4em;
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-number .en {
    font-size: 1.5rem;
  }
}
.merit-detail-section .merit-detail-item .merit-number .number {
  color: var(--color-yellow);
  font-family: var(--font-ja);
  font-size: 4rem;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 1em;
  -webkit-transform: translate(70%, -50%);
          transform: translate(70%, -50%);
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-number .number {
    font-size: 3rem;
  }
}
.merit-detail-section .merit-detail-item .merit-number img {
  position: absolute;
  right: 0;
  top: 0.8em;
  width: 4.5rem;
  height: 4.5rem;
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-number img {
    width: 3rem;
    height: 3rem;
  }
}
.merit-detail-section .merit-detail-item .merit-circle {
  width: 19.5rem;
  aspect-ratio: 1/1;
  position: relative;
  margin: 0 auto -3rem;
}
@media only screen and (max-width: 960px) {
  .merit-detail-section .merit-detail-item .merit-circle {
    width: 17rem;
  }
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-circle {
    width: 14rem;
    margin: 0 auto -1.5rem;
  }
}
.merit-detail-section .merit-detail-item .merit-circle:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border-radius: 50%;
}
.merit-detail-section .merit-detail-item .merit-circle-img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 1/1;
}
.merit-detail-section .merit-detail-item .merit-circle-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.merit-detail-section .merit-detail-item .merit-detail-title {
  font-size: 4rem;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-detail-title {
    font-size: 3rem;
  }
}
.merit-detail-section .merit-detail-item .merit-detail-title span {
  font-size: 0.75em;
}
.merit-detail-section .merit-detail-item .merit-detail-text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-detail-text {
    font-size: 1.5rem;
  }
}
.merit-detail-section .merit-detail-item .merit-detail-note {
  font-size: 1.2rem;
  text-align: center;
  padding-top: 1rem;
}
@media only screen and (max-width: 760px) {
  .merit-detail-section .merit-detail-item .merit-detail-note {
    font-size: 1rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: price */
.price-section {
  position: relative;
  padding: calc(270 / var(--content-width) * 100cqi) 0 15rem;
  background-color: var(--color-yellow);
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .price-section {
    padding: 9rem 0 6rem;
  }
}
.price-section .price-bg {
  position: absolute;
  top: 0.8rem;
  left: 0;
}
.price-section .price-bg img {
  width: 46rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 760px) {
  .price-section .price-bg img {
    width: 20rem;
  }
}
.price-section .price-decoration {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
  border-width: 1px 0;
}
@media only screen and (max-width: 760px) {
  .price-section .price-decoration {
    gap: 1rem;
  }
}
.price-section .price-decoration .scroll-infinity__list--left {
  padding: 0;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.price-section .grid {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 14rem;
}
@media only screen and (max-width: 1279px) {
  .price-section .grid {
    gap: calc(140 / var(--content-width) * 100cqi);
  }
}
@media only screen and (max-width: 960px) {
  .price-section .grid {
    gap: calc(70 / var(--content-width) * 100cqi);
  }
}
@media only screen and (max-width: 760px) {
  .price-section .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.price-section .price-title-vertical {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 960px) {
  .price-section .price-title-vertical {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 760px) {
  .price-section .price-title-vertical {
    font-size: 3rem;
  }
}
.price-section .price-title-vertical .label {
  display: block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  white-space: nowrap;
}
@media only screen and (max-width: 760px) {
  .price-section .price-title-vertical .label {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    text-align: center;
  }
}
.price-section .plan-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 calc(40 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .price-section .plan-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.price-section .plan-list .plan-item {
  border-radius: 1rem;
  background: var(--color-white);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  overflow: hidden;
  gap: 0;
}
.price-section .plan-list .plan-item b {
  font-weight: 700;
}
.price-section .plan-list .plan-item:last-child .plan-title {
  background: #b5a318;
}
.price-section .plan-list .plan-title {
  font-size: calc(22 / var(--content-width) * 100cqi);
  font-weight: 700;
  line-height: normal;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background: #8d8461;
  color: var(--color-white);
  padding: 2rem 1rem;
}
@media only screen and (max-width: 760px) {
  .price-section .plan-list .plan-title {
    font-size: 1.8rem;
    padding: 1rem;
  }
}
.price-section .plan-list .plan-title b {
  font-size: 1.3636363636em;
}
.price-section .plan-list .plan-detail {
  border-bottom: 1px solid #f6d171;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .price-section .plan-list .plan-detail {
    padding: 1rem;
  }
}
.price-section .plan-list .plan-detail-title {
  font-size: calc(26 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .price-section .plan-list .plan-detail-title {
    font-size: 2rem;
  }
}
.price-section .plan-list .plan-detail-price {
  font-size: calc(26 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .price-section .plan-list .plan-detail-price {
    font-size: 2rem;
  }
}
.price-section .plan-list .plan-detail-price b {
  font-size: 1.5384615385em;
}
.price-section .plan-list .plan-detail-note {
  font-size: calc(20 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .price-section .plan-list .plan-detail-note {
    font-size: 1.8rem;
  }
}
.price-section .plan-list .plan-detail-note b {
  font-size: 1.3em;
}
.price-section .price-info {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: calc(40 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .price-section .price-info {
    padding-top: 2rem;
  }
}
.price-section .price-info .lead {
  font-size: calc(26 / var(--content-width) * 100cqi);
  font-weight: 700;
  line-height: normal;
}
@media only screen and (max-width: 760px) {
  .price-section .price-info .lead {
    font-size: 2.1rem;
    text-align: center;
  }
}
.price-section .price-info .note {
  font-size: calc(16 / var(--content-width) * 100cqi);
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 760px) {
  .price-section .price-info .note {
    font-size: 1.3rem;
  }
}
.price-section .price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 1rem;
  border: unset;
  overflow: hidden;
  table-layout: fixed;
}
.price-section .price-table th,
.price-section .price-table td {
  border: 1px solid var(--color-yellow);
  font-family: var(--font-ja);
  font-size: calc(26 / var(--content-width) * 100cqi);
  font-weight: 700;
  padding: 1rem;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .price-section .price-table th,
  .price-section .price-table td {
    font-size: 1.3rem;
  }
}
.price-section .price-table th {
  background: var(--color-green);
  color: var(--color-white);
}
.price-section .price-table .price-value b {
  font-size: 1.3846153846em;
  font-weight: 700;
}
.price-section .price-note {
  padding-top: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .price-section .price-note {
    font-size: 1.2rem;
  }
}
.price-section .price-more .title {
  width: calc(320 / var(--content-width) * 100cqi);
  padding: 6rem 0;
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .price-section .price-more .title {
    padding: 3rem 0;
    width: 100%;
    max-width: 17rem;
  }
}
.price-section .price-more .title img {
  width: 100%;
  height: auto;
}
.price-section .price-more .card {
  display: grid;
  grid-template-columns: 1fr calc(400 / var(--content-width) * 100cqi);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(40 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .price-section .price-more .card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.price-section .price-more .card-image img {
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
}
.price-section .price-more .card-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(17 / var(--content-width) * 100cqi);
}
.price-section .price-more .card-title {
  font-size: calc(26 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .price-section .price-more .card-title {
    font-size: 1.5rem;
  }
}
.price-section .price-more .card-title b {
  font-size: 1.3846153846em;
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .price-section .price-more .card-title b {
    font-size: 2.4rem;
  }
}
.price-section .price-more .card-desc {
  font-size: calc(18 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .price-section .price-more .card-desc {
    font-size: 1.5rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: case */
.case-section {
  position: relative;
  padding: 20rem 0 18rem;
  overflow: hidden;
}
@media only screen and (max-width: 960px) {
  .case-section {
    padding: 15rem 0 10rem;
  }
}
@media only screen and (max-width: 760px) {
  .case-section {
    padding: 10rem 0 6rem;
  }
}
.case-section .case-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.case-section .case-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-section .case-bg {
  position: absolute;
  top: 27rem;
  width: 100%;
  height: 100%;
  background-image: url("images/case_bg.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 760px) {
  .case-section .case-bg {
    top: 13rem;
    background-image: url("images/case_bg_sp.svg");
    background-size: 100%;
    background-repeat: repeat;
  }
}
.case-section .case-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 7rem;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .case-section .case-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.case-section .case-title img {
  width: 42rem;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 760px) {
  .case-section .case-title img {
    width: 24rem;
  }
}
.case-section .case-title .small {
  font-size: 0.6em;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .case-section .case-title .small {
    font-size: 1.5rem;
  }
}
.case-section .case-title .label {
  color: var(--color-primary);
  position: relative;
}
.case-section .case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(70 / var(--content-width) * 100cqi) calc(30 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .case-section .case-list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.case-section .case-item {
  display: grid;
  gap: 1rem;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  container-type: inline-size;
  --content-width: 336;
}
.case-section .case-item .case-image .case-img-placeholder {
  background: var(--color-dark-gray);
  aspect-ratio: 336/224;
}
.case-section .case-item .case-name {
  font-size: calc(24 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .case-section .case-item .case-name {
    font-size: 1.8rem;
  }
}
.case-section .case-item .case-title-text {
  font-size: calc(26 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .case-section .case-item .case-title-text {
    font-size: 2rem;
  }
}
.case-section .case-item .case-desc {
  font-size: calc(16 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .case-section .case-item .case-desc {
    font-size: 1.5rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: faq */
.faq-section {
  position: relative;
  padding: calc(250 / var(--content-width) * 100cqi) 0 13rem;
  background-color: #f7f4ef;
  overflow: hidden;
}
@media only screen and (max-width: 760px) {
  .faq-section {
    padding: 8rem 0 6rem;
  }
}
.faq-section .faq-bg {
  position: absolute;
  top: calc(260 / var(--content-width) * 100cqi);
  left: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  mix-blend-mode: multiply;
  pointer-events: none;
  background-image: url("images/faq_bg.svg");
  background-size: 100% auto;
  background-position: top;
}
.faq-section .faq-decoration {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--color-black);
  border-width: 1px 0;
}
.faq-section .faq-decoration .scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
  padding: 0;
}
.faq-section .faq-decoration .scroll-infinity__item--text {
  color: var(--color-yellow);
}
.faq-section .faq-list {
  max-width: 92.5rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.faq-section .faq-item {
  background: var(--color-yellow);
  border: 1rem solid var(--color-white);
  border-radius: 1rem;
  padding: 2rem 3rem;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item {
    padding: 1rem;
  }
}
.faq-section .faq-item .faq-question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.2rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.4s;
  transition: border-color 0.4s;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-question {
    gap: 0;
  }
}
.faq-section .faq-item .faq-question:hover {
  opacity: 0.8;
}
.faq-section .faq-item .faq-question .faq-q {
  font-family: var(--font-en);
  font-size: calc(50 / var(--content-width) * 100cqi);
  width: calc(59 / var(--content-width) * 100cqi);
  text-align: center;
  pointer-events: none;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-question .faq-q {
    font-size: 3.5rem;
    width: 4rem;
  }
}
.faq-section .faq-item .faq-question .faq-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: calc(30 / var(--content-width) * 100cqi);
  font-weight: 700;
  pointer-events: none;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-question .faq-text {
    font-size: 1.5rem;
  }
}
.faq-section .faq-item .faq-question .faq-toggle {
  width: 3rem;
  height: 3rem;
  position: relative;
  pointer-events: none;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-question .faq-toggle {
    width: 2rem;
    height: 2rem;
  }
}
.faq-section .faq-item .faq-question .faq-toggle::before {
  content: "";
  display: block;
  width: 3rem;
  height: 5px;
  background: var(--color-black);
  position: absolute;
  inset: 0;
  margin: auto;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-question .faq-toggle::before {
    width: 2rem;
    height: 3px;
  }
}
.faq-section .faq-item .faq-question .faq-toggle::after {
  content: "";
  display: block;
  width: 5px;
  height: 3rem;
  background: var(--color-black);
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-question .faq-toggle::after {
    width: 3px;
    height: 2rem;
  }
}
.faq-section .faq-item.active .faq-question {
  border-color: var(--color-black);
}
.faq-section .faq-item.active .faq-question .faq-toggle::after {
  height: 0;
}
.faq-section .faq-item .faq-answer-wrapper {
  display: none;
}
.faq-section .faq-item .faq-answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 3.2rem;
  padding-top: 1rem;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-answer {
    gap: 0;
  }
}
.faq-section .faq-item .faq-answer .faq-a {
  font-family: var(--font-en);
  font-size: calc(50 / var(--content-width) * 100cqi);
  color: var(--color-primary);
  width: calc(59 / var(--content-width) * 100cqi);
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-answer .faq-a {
    font-size: 3.5rem;
    width: 4rem;
  }
}
.faq-section .faq-item .faq-answer .faq-answer-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: calc(20 / var(--content-width) * 100cqi);
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
@media only screen and (max-width: 760px) {
  .faq-section .faq-item .faq-answer .faq-answer-text {
    font-size: 1.3rem;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
/*index: footer */
.footer-section {
  position: relative;
  background-color: var(--color-yellow);
  overflow: hidden;
}
.footer-section .container {
  padding-block: 6rem 7rem;
}
@media only screen and (max-width: 760px) {
  .footer-section .container {
    padding-block: 6rem 4rem;
  }
}
.footer-section .footer-bg {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.footer-section .footer-bg .image span {
  position: absolute;
}
.footer-section .footer-bg .image img {
  width: calc(950 / var(--content-width) * 100cqi);
  height: calc(330 / var(--content-width) * 100cqi);
}
.footer-section .footer-bg .image .left {
  top: 1rem;
  left: calc(-500 / var(--content-width) * 100cqi);
}
.footer-section .footer-bg .image .right {
  bottom: 4rem;
  right: calc(-500 / var(--content-width) * 100cqi);
}
.footer-section .footer-title {
  font-size: calc(30 / var(--content-width) * 100cqi);
  font-weight: 700;
  text-align: center;
  padding-bottom: 0.7rem;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-title {
    font-size: 1.8rem;
  }
}
.footer-section .footer-title .highlight {
  font-size: 1.3333333333em;
}
.footer-section .footer-logo {
  text-align: center;
  padding-bottom: 4rem;
  max-width: calc(599 / var(--content-width) * 100cqi);
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-logo {
    padding-bottom: 3rem;
    max-width: 80%;
    margin: 0 auto;
  }
}
.footer-section .footer-images {
  position: absolute;
  inset: 0;
  margin: auto;
  pointer-events: none;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-images {
    display: none;
  }
}
.footer-section .footer-images .footer-img {
  position: absolute;
  aspect-ratio: 1/1;
}
.footer-section .footer-images .footer-img.--img1 {
  width: calc(250 / var(--content-width) * 100cqi);
  top: calc(292 / var(--content-width) * 100cqi);
  left: calc(60 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-images .footer-img.--img1 {
    width: 12rem;
  }
}
.footer-section .footer-images .footer-img.--img2 {
  width: calc(194 / var(--content-width) * 100cqi);
  top: calc(102 / var(--content-width) * 100cqi);
  left: calc(0 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-images .footer-img.--img2 {
    width: 10rem;
  }
}
.footer-section .footer-images .footer-img.--img3 {
  width: calc(261 / var(--content-width) * 100cqi);
  top: calc(162 / var(--content-width) * 100cqi);
  right: calc(0 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-images .footer-img.--img3 {
    width: 13rem;
  }
}
.footer-section .footer-contact {
  background: var(--color-primary);
  border-radius: 1rem;
  padding: calc(30 / var(--content-width) * 100cqi);
  margin: 0 auto;
  max-width: calc(920 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact {
    max-width: unset;
    padding: 2rem;
  }
}
.footer-section .footer-contact .footer-contact-title {
  color: var(--color-white);
  font-size: calc(36 / var(--content-width) * 100cqi);
  padding-bottom: 1rem;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .footer-contact-title {
    font-size: 2rem;
  }
}
.footer-section .footer-contact .footer-contact-buttons {
  display: grid;
  grid-template-columns: repeat(2, auto);
  place-content: center;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .footer-contact-buttons {
    grid-template-columns: 1fr;
  }
}
.footer-section .footer-contact .contact-btn {
  color: var(--color-white);
  display: grid;
  grid-template-rows: subgrid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  grid-row: span 3;
  padding: 0 calc(30 / var(--content-width) * 100cqi);
  min-width: calc(280 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .contact-btn {
    min-width: 100%;
    padding: 2rem 0;
  }
}
.footer-section .footer-contact .contact-btn:first-child {
  border-right: 1px solid var(--color-white);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .contact-btn:first-child {
    border-right: none;
    border-bottom: 1px solid var(--color-white);
  }
}
.footer-section .footer-contact .contact-btn:first-child img {
  height: calc(37 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .contact-btn:first-child img {
    height: 1.9rem;
  }
}
.footer-section .footer-contact .contact-btn img {
  width: auto;
  height: calc(58 / var(--content-width) * 100cqi);
  margin-top: auto;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .contact-btn img {
    height: 3rem;
  }
}
.footer-section .footer-contact .contact-btn .contact-label {
  font-size: calc(36 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .contact-btn .contact-label {
    font-size: 2rem;
  }
}
.footer-section .footer-contact .contact-btn .contact-note {
  font-size: calc(16 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-contact .contact-btn .contact-note {
    font-size: 1.3rem;
  }
}
.footer-section .footer-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 calc(40 / var(--content-width) * 100cqi) calc(70 / var(--content-width) * 100cqi);
  position: relative;
  max-width: 1366px;
  margin: 0 auto;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 0 2rem 6rem;
    text-align: center;
  }
}
.footer-section .footer-nav .footer-nav-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem 2rem;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-nav .footer-nav-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.footer-section .footer-nav .footer-nav-left img {
  width: calc(148 / var(--content-width) * 100cqi);
  height: calc(52 / var(--content-width) * 100cqi);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-nav .footer-nav-left img {
    width: 12rem;
    height: auto;
  }
}
.footer-section .footer-nav .footer-nav-left p {
  font-size: calc(13 / var(--content-width) * 100cqi);
  font-weight: 700;
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-nav .footer-nav-left p {
    font-size: 1rem;
  }
}
.footer-section .footer-nav .footer-nav-right ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media only screen and (max-width: 1366px) {
  .footer-section .footer-nav .footer-nav-right ul {
    gap: calc(40 / var(--content-width) * 100cqi);
  }
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-nav .footer-nav-right ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.footer-section .footer-nav .footer-nav-right a {
  font-weight: 700;
  text-decoration: underline;
  position: relative;
  -webkit-transition: color 0.5s;
  transition: color 0.5s;
  font-size: 15px;
}
@media only screen and (max-width: 1366px) {
  .footer-section .footer-nav .footer-nav-right a {
    font-size: calc(15 / var(--content-width) * 100cqi);
  }
}
.footer-section .footer-nav .footer-nav-right a:hover {
  color: var(--color-primary);
}
@media only screen and (max-width: 760px) {
  .footer-section .footer-nav .footer-nav-right a {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=subscribe.css.map */