@charset "UTF-8";

/*------------------------------------------

Base Setting

------------------------------------------*/

/*----------------------
 Layout
----------------------*/

:root {
  --header-h: 96px;

  --section-w: 1280px;
  --section-w-m: 960px;

  --section-padding-side: 48px;
}


/*----------------------
 Text
----------------------*/

:root {
  --fc-default: #202020;

  --fc-link: #0078de;
  --fc-link-hv: #f60;
  --fc-navy: #1A3451;
  --fc-gray: #8C949D;

  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-default: 1.7rem;

  --lh-default: 2;
  --ls-default: 0;

  --fw-default: 400;
  --fw-bold: 700;
}


/*----------------------
 Color
----------------------*/

:root {
  --color-primary: #064da6;
  --color-primary-l: #1273e4;
  --color-secondary: #44ddce;
  --color-accent: #FF6A49;

  --color-gradient-start: #0867c5;

  --color-page-bg: #ecf1f7;
  --color-page-bg-l: #f3f6fa;
  --color-page-bg-d: #d3dce8;

  --color-border: #dfe2e5;
  --color-border-d: #C3C8CD;
}


/*----------------------
 Modules
----------------------*/

:root {
  --box-r: 6px;

  --btn-r: 5px;
  --btn-shadow: 0 3px 4px rgba(0, 0, 0, 0.07);

  --btn-bg-cta: #07cfdb;
  --btn-bg-cta-hv: #3bdce6;
  --btn-bg-sub: #ffc948;
  --btn-bg-sub-hv: #ffd266;

  --z-header: 50;
  --z-modal: 100;
}



@media all and (max-width: 768px) {
:root{
  --header-h: 60px;
  --section-padding-side: 28px;
}
}

@media all and (max-width: 480px) {
:root {
  --section-padding-side: 18px;
}
}


/** body **/

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  color: var(--fc-default);
  font-family: var(--ff-default);
  font-size: var(--fs-default);
  font-weight: var(--fw-default);
  letter-spacing: var(--ls-default);
  line-height: var(--lh-default);
  text-align: left;
  background: var(--color-page-bg);
}

body.modal-active {
  position: fixed;
  inset: 0;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

*::before, *::after {
  box-sizing: border-box;
}

img, video, iframe{
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

figure {
  margin: 0;
}

a {
  cursor: pointer;
}

b, strong, h1, h2, h3, h4, h5 {
  font-weight: var(--fw-bold);
}

br {
  line-height: inherit;
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


.fc-main-color {
  color: var(--color-main);
}




/*------------------------------------------

Header

------------------------------------------*/

.g-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-header);
  transform: translateZ(1px);
}

.g-header__inner {
  width: 100%;
  max-width: 1480px;
  height: var(--header-h);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-header__logo {
  width: 220px;
  transform: translateY(-3px);
}



/*---------------------------
 Header / Global Nav
---------------------------*/

.g-nav {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 28px;
}

.g-nav ul {
  display: flex;
  justify-content: end;
  align-items: center;
}

.g-nav__link {
  gap: 28px;
  font-size: 1.5rem;
  font-weight: 500;
}

.g-nav__link a:hover {
  color: var(--fc-gray);
  text-decoration: underline;
}


.g-nav__btn a {
  height: 48px;
  padding: 0 28px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 600;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: .2s;
}

.g-nav__btn a::after {
  width: 12px;
  height: 12px;
  background-image: url(../img/arrow-btn.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  transition: .2s;
}

.g-nav__btn a::after:hover {
  transform: translateX(2px);
}

.g-nav__btn {
  gap: 12px;
}

.g-nav__btn .--contact a {
  background: var(--btn-bg-sub);
}

.g-nav__btn .--contact a:hover {
  background: var(--btn-bg-sub-hv);
}

.g-nav__btn .--trial a {
  background: var(--btn-bg-cta);
}

.g-nav__btn .--trial a:hover {
  background: var(--btn-bg-cta-hv);
}



/*---------------------------
 Header / SP Nav
---------------------------*/

.sp-nav {
  display: none;
}

.sp-nav__btn a {
  width: fit-content;
  height: 40px;
  padding: 0 16px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  background: var(--btn-bg-cta);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-nav__menu {
  width: 56px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
}

.sp-nav__menu div {
  width: 24px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  left: 16px;
  transition: .2s;
}

.sp-nav__menu div:nth-child(1) {
  top: 20px;
}

.sp-nav__menu div:nth-child(2) {
  top: 27px;
}

.sp-nav__menu div:nth-child(3) {
  top: 34px;
}

.sp-nav__menu.--active div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.sp-nav__menu.--active div:nth-child(2) {
  opacity: 0;
  transform: translateX(-5px);
}

.sp-nav__menu.--active div:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



/*---------------------------
 Header / Drawer
---------------------------*/

.sp-drawer {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  position: fixed;
  top: 60px;
  left: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition: .2s grid-template-rows ease;
}

.sp-drawer.--active {
  z-index: var(--z-header);
  grid-template-rows: 1fr;
}

.sp-drawer__inner {
  overflow: hidden;
}

.sp-drawer li {
  border-top: 1px solid var(--color-border);
}

.sp-drawer a {
  width: 100%;
  height: 54px;
  padding: 0 12px;
  font-size: 1.45rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sp-drawer a::after {
  width: 12px;
  height: 12px;
  background-image: url(../img/arrow-link.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
}



@media all and (max-width: 1280px) {
  .g-header__inner {
    padding: 0 24px;
  }

  .g-header__logo {
    width: 180px;
  }

  .g-nav {
    gap: 20px;
  }

  .g-nav__link {
    font-size: 1.4rem;
    gap: 16px;
  }

  .g-nav__btn a {
    padding: 0 18px;
    font-size: 1.4rem;
  }
}


@media all and (max-width: 960px) {
  .g-header__inner {
    padding: 0 0 0 12px;
  }

  .g-header__logo {
    width: 148px;
    transform: translateY(-2px);
  }

  .g-nav {
    display: none;
  }

  .sp-nav {
    display: flex;
    justify-content: end;
    align-items: center;
  }
}



/*------------------------------------------

 Main Visual

------------------------------------------*/

.main-visual {
  min-height: 700px;
  margin-top: var(--header-h);
  padding: 96px 0;
  background-image: linear-gradient(to bottom right, var(--color-gradient-start) 30%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: end;
}

.main-visual__inner {
  width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 600px 1fr;
  grid-template-rows: auto;
  align-items: center;
  column-gap: 80px;
  row-gap: 16px;
  grid-template-areas:
    "heading img"
    "body img"
    "btn img"
  ;
  position: relative;
  z-index: 1;
}

.main-visual__heading {
  color: #fff;
  font-weight: var(--fw-bold);
  line-height: 1.4;
  grid-area: heading;
}

.main-visual__sub-catch {
  font-size: 2rem;
}

.main-visual__catch {
  margin-top: 16px;
  font-size: 4.4rem;
  letter-spacing: 0;
}

.main-visual__catch p {
  display: flex;
  align-items: center;
  gap: 0.03em;
}

.main-visual__catch .char {
  overflow: hidden;
}

.main-visual__catch .char span {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition: transform .6s ease, opacity .6s ease;
  transition-delay: calc(var(--i, 0) * .06s);
}

.is-visible .main-visual__catch .char span {
  opacity: 1;
  transform: translateY(0);
}


.main-visual__catch span {
  letter-spacing: 0.03em;
}

.main-visual__body {
  color: #fff;
  font-size: 1.6rem;
  grid-area: body; 
}

.main-visual__body .--sp-txt {
  display: none;
}

.main-visual__btn {
  margin-top: 16px;
  grid-area: btn;
}

.main-visual__btn a {
  height: 72px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  background: var(--btn-bg-cta);
  border-radius: var(--btn-r);
  box-shadow: var(--btn-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: .2s;
  position: relative;
}

.main-visual__btn a::after {
  width: 14px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-btn.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: .2s;
}

.main-visual__btn a:hover {
  background: var(--btn-bg-cta-hv);
}

.main-visual__btn a:hover::after {
  transform: translate(3px, -50%);
}

.main-visual__btn-label {
  width: 240px;
  height: 30px;
  color: var(--fc-navy);
  font-size: 1.5rem;
  line-height: 26px;
  background: #fff;
  border: 2px solid var(--btn-bg-cta);
  border-radius: 13px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.02);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.main-visual__img {
  grid-area: img;
}


.main-visual__img img {
  max-height: 440px;
  opacity: 0;
  transform: translateY(12px);
  transition: .6s;
}

.main-visual__img img:is(.is-visible *) {
  opacity: 1;
  transform: translateY(0);
}

.main-visual__bg {
  width: 65%;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  z-index: 0;
}

.main-visual__bg video {
  width: 100%;
  height: auto;
  opacity: 0.1;
}

.main-visual__bg-wrapper {
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.main-visual__bg-wrapper > div{
  animation: scroll-left 16s infinite linear .5s both;
  display: flex;
}

.main-visual__bg-wrapper img {
  width: calc(100vw * 0.65);
  max-width: calc(100vw * 0.65);
  opacity: 0;
  transition: opacity .8s;
  transition-delay: .8s;
}

.main-visual__bg-wrapper img:is(.is-visible *) {
  opacity: 0.1;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


@media all and (max-width: 1400px) {
  .main-visual__inner {
    width: 100%;
    padding: 0 28px;
    grid-template-columns: 400px 1fr;
    column-gap: 32px;
  }

  .main-visual__catch {
    font-size: 3.8rem;
  }

  .main-visual__img {
    padding-right: 0;
  }
}


@media all and (max-width: 768px) {
  .main-visual {
    padding: 40px 0;
    min-height: initial;
  }

  .main-visual__inner {
    padding: 0 24px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "img"
      "body"
      "btn"
    ;
    row-gap: 24px;
  }

  .main-visual__sub-catch {
    font-size: 1.9rem;
  }

  .main-visual__catch {
    margin-top: 12px;
    font-size: 3.2rem;
  }

  .main-visual__body {
    font-size: 1.5rem;
  }

  .main-visual__body .--pc-txt {
    display: none;
  }

  .main-visual__body .--sp-txt {
    display: block;
  }

  .main-visual__btn {
    margin-top: 12px;
  }

  .main-visual__btn a{
    height: 64px;
    font-size: 1.65rem;
  }

  .main-visual__btn-label {
    height: 28px;
    font-size: 1.4rem;
    top: -14px;
  }

  .main-visual__img img {
    width: 94%;
    max-width: 560px;
  }

  .main-visual__bg {
    width: 100%;
  }

  .main-visual__bg-wrapper img {
    width: 100vw;
    max-width: 100vw;
    transform: scale(1, 1.2);
  }
}


@media all and (max-width: 480px) {
  .main-visual__inner {
    padding: 0 18px;
  }

  .main-visual__sub-catch {
    font-size: 1.7rem;
  }

  .main-visual__catch {
    font-size: 3rem;
  }

  .main-visual__img img {
    width: 100%;
  }

  .main-visual__body {
    font-size: 1.45rem;
  }
}



/*------------------------------------------

 Main merit

------------------------------------------*/

/*---------------------------
 Main merit - Content
---------------------------*/

.main-merit {
  display: grid;
  grid-template-columns: 1fr 540px;
  align-items: center;
  gap: 72px;
}

.main-merit__txt--read {
  color: #65636A;
  font-size: 2.1rem;
  font-weight: var(--fw-bold);
  line-height: 1.8;
  text-align: center;
}

.main-merit__txt--top {
  margin-top: 20px;
  font-size: 3.0rem;
  font-weight: var(--fw-bold);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.main-merit__txt--top p {
  font-size: 108%;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-merit__txt--bottom {
  width: fit-content;
  margin: 16px auto 0;
  font-size: 2.8rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition: .4s ease;
  transition-delay: calc(3 * 0.35s);
  will-change: opacity, transform;
}

.main-merit__txt--bottom:is(.is-visible *) {
  opacity: 1;
  transform: translateY(0);
}

.main-merit__txt--bottom span {
  color: var(--color-primary);
  font-size: 116%;
}



/*---------------------------
 Main merit - Content
---------------------------*/

.main-merit-flow {
  margin-top: 20px;
}

.main-merit-flow ul {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-merit-flow__item {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  background: linear-gradient(to right bottom, #a3e0db, #92b5e0);
  border-radius: 100%;
  flex: 1;
  opacity: 0;
  position: relative;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--i, 0) * .35s);
  will-change: opacity, transform;
}

.main-merit-flow__item:is(.is-visible *) {
  opacity: 1;
  transform: translateY(0);
}

.main-merit-flow__item span {
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: #fff;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main-merit-flow__arrow {
  width: 48px;
  height: 48px;
  position: relative;
  opacity: 0;
  transition: .6s ease;
  transition-delay: calc(var(--i, 0) * .45s);
  will-change: opacity;
}

.main-merit-flow__arrow:is(.is-visible *) {
  opacity: 1;
}


.main-merit-flow__arrow div::before {
  width: 36px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-flow.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/*---------------------------
 Main merit - Graph
---------------------------*/

.main-merit-graph {
  padding: 48px;
  background: var(--color-page-bg-l);
  border-radius: calc(var(--box-r) * 2);
}

.main-merit-graph__row {
  display: grid;
  grid-template-columns: 124px 1fr;
  align-items: center;
  gap: 12px;
}

.main-merit-graph dt {
  height: 152px;
  color: var(--fc-gray);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-merit-graph dt:is(.--after *) span {
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.main-merit-graph dt::after {
  width: 2px;
  height: 100%;
  background: #D1DAE5;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}

.main-merit-graph dd {
  position: relative;
}

.main-merit-graph__chart {
  height: 124px;
  background: #D1DAE5;
}


/* before */

.main-merit-graph__caption:is(.--before *) {
  font-size: 1.45rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  z-index: 10;
}

.main-merit-graph__caption:is(.--before *) p > span {
  margin: 0 auto;
  font-size: 2.4rem;
  display: block;
}

.main-merit-graph__caption:is(.--before *) span span {
  font-size: 108%;
}


/* after */

.main-merit-graph__chart:is(.--after *) {
  width: 100%;
  background: linear-gradient(to right, var(--color-gradient-start), var(--color-primary));
  transition: width 1.3s ease-in;
  will-change: width;
}

.is-visible .main-merit-graph__chart:is(.--after *) {
  width: 12%;
}

.main-merit-graph__caption:is(.--after *) {
  width: 128px;
  aspect-ratio: 1 / 1;
  font-size: 1.7rem;
  font-weight: var(--fw-bold);
  line-height: 1.5;
  text-align: center;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 0 8px rgba(6, 77, 166, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg) scale(0);
  opacity: 0;
  will-change: opacity, transform;
}

.is-visible .main-merit-graph__caption:is(.--after *) {
  animation: graphCaptionIn .35s ease-out;
  animation-delay: 1.55s;
  animation-fill-mode: forwards;
}

@keyframes graphCaptionIn {
  0%   { opacity: 0; transform: translate(-50%, -50%) rotate(15deg) scale(0); }
  40%  { opacity: 1; transform: translate(-50%, -50%) rotate(15deg) scale(1.4); } 
  65%  { transform: translate(-50%, -50%) rotate(15deg) scale(0.9); }
  85%  { transform: translate(-50%, -50%) rotate(15deg) scale(1.1); }
  100% { opacity: 1 ;transform: translate(-50%, -50%) rotate(15deg) scale(1); } 
}

.main-merit-graph__caption:is(.--after *) p > span{
  color: var(--color-primary);
  font-size: 124%;
  letter-spacing: 0.05em;
  display: block;
}

.main-merit-graph__caption:is(.--after *) p > span span {
  font-size: 108%;
}


@media all and (max-width: 1280px) {
  .main-merit {
    grid-template-columns: 52% 1fr;
    gap: 40px;
  }

  .main-merit-flow__arrow {
    width: 40px;
  }

  .main-merit-graph {
    padding: 40px 32px;
  }
}


@media all and (max-width: 960px) {
  .main-merit {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .main-merit-graph dl {
    max-width: 600px;
    margin: 0 auto;
  }
}


@media all and (max-width: 768px) {
  .main-merit {
    gap: 40px;
  }

  .main-merit__txt--read {
    font-size: 1.7rem;
  }

  .main-merit__txt--top {
    margin-top: 16px;
    font-size: 2.4rem;
  }

  .main-merit__txt--bottom {
    margin-top: 16px;
    font-size: 2.2rem;
  }

  .main-merit-flow {
    max-width: 100%;
    margin-top: 8px;
  }

  .main-merit-flow__item {
    font-size: 1.8rem;
  }

  .main-merit-flow__item span {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }

  .main-merit-flow__arrow {
    width: 36px;
  }

  .main-merit-flow__arrow div::before {
    width: 80%;
  }

  .main-merit-graph {
    padding: 20px 24px 20px 16px;
  }

  .main-merit-graph dt {
    height: 128px;
    font-size: 1.65rem;
  }

  .main-merit-graph__row {
    grid-template-columns: 108px 1fr;
  }

  .main-merit-graph__chart {
    height: 104px;
  }

  .main-merit-graph__caption:is(.--before *) {
    font-size: 1.3rem;
  }

  .main-merit-graph__caption:is(.--before *) p > span {
    font-size: 2rem;
  }

  .main-merit-graph__caption:is(.--after *) {
    width: 120px;
    font-size: 1.6rem;
    transform: translate(-50%, -50%) rotate(15deg);
  }
}


@media all and (max-width: 480px) {
  .main-merit__txt--top {
    margin-top: 8px;
    font-size: 2.1rem;
  }

  .main-merit__txt--bottom {
    margin-top: 12px;
    font-size: 1.9rem;
  }

  .main-merit-flow {
    max-width: calc(100% + 16px);
    margin: 4px -8px 0;
  }

  .main-merit-flow__item {
    font-size: 1.55rem;
    line-height: 1.4;
  }

  .main-merit-flow__arrow {
    width: 26px;
  }

  .main-merit-graph {
    margin: 0 -8px;
    padding: 18px 20px 18px 8px;
  }
}



/*------------------------------------------

 Layout

------------------------------------------*/

.section {
  position: relative;
}

.section__bottom {
  margin-top: -32px;
  height: 160px;
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.section__bottom:is(.section--bg-white *) {
  background: var(--color-page-bg);
}

.section__bottom.--steps {
  background: var(--color-page-bg);
}

.section__bottom::before {
  width: calc(100% + 400px);
  height: 100%;
  margin: 0 -200px;
  background: var(--color-page-bg);
  border-bottom-left-radius: 50% 160px;
  border-bottom-right-radius: 50% 160px;
  content: "";
  display: block;
}

.section__bottom:is(.section--bg-white *)::before {
  background: #fff;
}

.section__bottom.--steps::before {
  background: var(--color-primary);
}


.section--bg-white {
  background: #fff;
}

.section--bg-blue {
  background: var(--color-primary);
}


.section__inner {
  width: var(--section-w);
  margin: 0 auto;
  padding: 88px 0 0;
  position: relative;
  z-index: 1;
}

.section__inner:is(.section--w-m *) {
  width: var(--section-w-m);
}

.section__inner:has(.main-merit) {
  padding-bottom: 88px;
}

.section__inner:is(.section--features *) {
  width: 100%;
}


.section-heading{
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  --se-y: 12px;
  --se-duration: .45s;
  --se-delay: .2s;
}

.section-heading__en {
  width: fit-content;
  height: 24px;
  padding: 0 24px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  background: linear-gradient(to right bottom, #a3e0db, #92b5e0);
  letter-spacing: 0.05em;
  border-radius: 12px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(var(--se-y));
  transition: opacity var(--se-duration) ease, transform var(--se-duration) ease;
  will-change: opacity, transform;
}

.section-heading__en.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading__label {
  margin: 0 auto 2px;
  padding: 0 14px;
  color: var(--fc-navy);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  background: #fff;
  display: block;
  opacity: 0;
  transform: translateY(var(--se-y));
  transition: opacity var(--se-duration) ease, transform var(--se-duration) ease;
  will-change: opacity, transform;
}

.section-heading__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading__ttl {
  color: var(--fc-navy);
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(var(--se-y));
  transition: opacity var(--se-duration) ease, transform var(--se-duration) ease;
  transition-delay: var(--se-delay);
  will-change: opacity, transform;
}

.section-heading__ttl.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading__ttl:is(.section--bg-blue *) {
  color: #fff;
}


@media all and (max-width: 1280px) {
  .section__inner {
    width: 100%;
    padding: 64px var(--section-padding-side) 0;
  }

  .section__inner:has(.main-merit) {
    padding-bottom: 64px;
  }

  .section__bottom {
    margin-top: -60px;
  }

  .section__inner:is(.section--w-m *) {
    width: 100%;
  }

  .section__inner:is(.section--features *) {
    padding: 64px 0 0;
  }
}


@media all and (max-width: 768px) {
  .section__inner,
  .section__inner:is(.section--features *) {
    padding: 48px var(--section-padding-side) 0;
  }

  .section__inner:has(.main-merit) {
    padding-bottom: 48px;
  }

  .section-heading {
    margin: 0 0 28px;
    gap: 8px;
  }

  .section-heading__en {
    height: 20px;
    padding: 0 18px;
    font-size: 1.15rem;
  }

  .section-heading__label {
    padding: 0 10px;
    font-size: 1.45rem;
  }

  .section-heading__ttl {
    font-size: 2.1rem;
  }
}


@media all and (max-width: 480px) {
  .section__inner,
  .section__inner:is(.section--features *) {
    padding: 36px var(--section-padding-side);
  }

  .section__inner:has(.main-merit) {
    padding-bottom: 36px;
  }

  .section__bottom {
    margin-top: -88px;
    height: 112px;
  }

  .section__bottom::before {
    width: calc(100% + 240px);
    margin: 0 -120px;
    border-bottom-left-radius: 50% 112px;
    border-bottom-right-radius: 50% 112px;
  }

  .section-heading {
    margin: 0 0 24px;
  }
}




/*------------------------------------------

 Steps

------------------------------------------*/

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.steps__block {
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--box-r);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
  position: relative;
}

.steps__block:not(:last-child)::after {
  width: 24px;
  height: 88px;
  background-image: url(../img/arrow-steps.svg);
  background-repeat: no-repeat;
  background-size: 24px 88px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -43px;
  transform: translateY(-50%);
}

.steps__label {
  width: 108px;
  height: 24px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  background: var(--color-primary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps__img {
  margin: 16px auto 0;
  width: 140px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--i, 0) * .3s);
  will-change: opacity, transform;
}

.steps__img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.steps__heading {
  margin-top: 16px;
  font-size: 2.0rem;
  line-height: 1.6;
  text-align: center;
}

.steps__txt {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
}


@media all and (max-width: 1280px) {
  .steps__block {
    padding: 28px 20px;
  }

  .steps__img {
    width: 124px;
  }
}

@media all and (max-width: 960px) {
  .steps {
    gap: 40px;
  }

  .steps__block:not(:last-child)::after {
    width: 18px;
    height: 80px;
    background-size: 18px 80px;
    right: -32px;
  }
}


@media all and (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps__block {
    padding: 24px 16px;
  }

  .steps__block:not(:last-child)::after {
    width: 16px;
    height: 88px;
    background-size: 16px 88px;
    top: initial;
    bottom: -61px;
    left: 50%;
    right: initial;
    transform: translate(-50%, 0) rotate(90deg);
  }

  .steps__label {
    width: 96px;
    height: 20px;
    font-size: 1.2rem;
  }

  .steps__heading {
    font-size: 1.9rem;
  }

  .steps__img {
    transition-delay: 0s;
  }

  .steps__txt {
    margin-top: 6px;
    font-size: 1.4rem;
  }
}


@media all and (max-width: 768px) {
  .steps__img {
    width: 112px;
  }
}




/*------------------------------------------

 Solution

------------------------------------------*/

/*---------------------------
 Solution - Before after
---------------------------*/

.solution-before-after {
  display: flex;
  align-items: center;
  gap: 72px;
}

.solution-before-after__box {
  padding: 32px 40px;
  background: #fff;
  border: 1px solid var(--color-page-bg-d);
  border-radius: var(--box-r);
  position: relative;
}

.solution-before-after__box.--before {
  padding: 24px 40px;
  width: 42%;
}

.solution-before-after__box.--after {
  border: 2px solid var(--color-primary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  flex: 1;
}

.solution-before-after__box.--before::after {
  width: 160px;
  height: 160px;
  border: 80px solid transparent;
  border-left-color: var(--color-page-bg-d);
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -130px;
  opacity: 0;
  transition: opacity .6s ease;
  transform: translateY(-50%) scale(0.32, 1);
}

.solution-before-after__box.--before.is-visible::after {
  opacity: 1;
}


.solution-before-after__label {
  width: 160px;
  height: 28px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: var(--fc-gray);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.solution-before-after__label:is(.--after *) {
  background: var(--color-primary);
}

.solution-before-after__img {
  width: 280px;
  max-width: 100%;
  margin: 16px auto 0;
  position: relative;
  z-index: 0;
}

.solution-before-after__img:is(.--after *) {
  opacity: 0;
}

.solution-before-after__img:is(.is-visible.--after *) {
  animation: afterImgIn .5s ease-out;
  animation-delay: .6s;
  animation-fill-mode: forwards;
}

@keyframes afterImgIn {
  0%   { opacity: 0; transform: scale(0); }
  40%  { opacity: 1; transform: scale(1.3); } 
  65%  { transform: scale(0.9); }
  85%  { transform: scale(1.1); }
  100% { opacity: 1 ;transform: scale(1); } 
}

.solution-before-after__list {
  margin-top: 12px;
}

.solution-before-after__list li {
  padding: 12px 0 12px 42px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.7;
  position: relative;
}

.solution-before-after__list li:not(:first-child) {
  border-top: 1px dotted var(--color-border-d);
}


.solution-before-after__list li::before {
  width: 28px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-before.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.solution-before-after__list li:is(.--after *)::before {
  background-image: url(../img/icon-after.svg);
}


@media all and (max-width: 1280px) {
  .solution-before-after__box {
    padding: 28px 18px;
  }

  .solution-before-after__box.--before {
    padding: 24px 18px;
  }

  .solution-before-after__list li {
    font-size: 1.6rem;
  }
}


@media all and (max-width: 768px) {
  .solution-before-after {
    flex-direction: column;
    align-items: initial;
    gap: 56px;
  }

  .solution-before-after__box {
    padding: 20px 16px;
  }

  .solution-before-after__box.--before {
    width: 100%;
    padding: 20px 16px;
  }

  .solution-before-after__box.--before::after {
    width: 120px;
    height: 120px;
    border-width: 60px;
    top: initial;
    right: initial;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%) scale(1, 0.32) rotate(90deg);
  }

  .solution-before-after__label {
    width: 140px;
    height: 24px;
    font-size: 1.5rem;
  }

  .solution-before-after__img:is(.--before *) {
    width: 248px;
  }

  .solution-before-after__list li {
    padding: 11px 0 11px 38px;
    font-size: 1.5rem;
  }

  .solution-before-after__list li br {
    display: none;
  }

  .solution-before-after__list li::before {
    width: 24px;
  }
}


@media all and (max-width: 480px) {
  .solution-before-after {
    gap: 44px;
  }

  .solution-before-after__box {
    padding: 18px 16px;
  }

  .solution-before-after__img {
    width: 240px;
  }

  .solution-before-after__img:is(.--before *) {
    width: 208px;
  }

  .solution-before-after__label {
    height: 22px;
  }

  .solution-before-after__box.--before::after {
    bottom: -94px;
    transform: translateX(-50%) scale(0.9, 0.3) rotate(90deg);
  }
}



/*---------------------------
 Solution - Time performance
---------------------------*/

.solution-time-performance {
  margin-top: 52px;
  padding: 40px 80px 56px;
  background: #fff;
  border-radius: var(--box-r);
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: center;
  column-gap: 48px;
  row-gap: 24px;
}

.solution-time-performance__heading {
  font-size: 2.2rem;
}

.solution-time-performance__txt {
  margin-top: 16px;
  font-size: 1.6rem;
}

.solution-time-performance__list {
  margin-top: 20px;
  border-top: 1px dotted var(--color-border-d);
}

.solution-time-performance__list li {
  padding: 14px 0 14px 28px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.7;
  border-bottom: 1px dotted var(--color-border-d);
  position: relative;
}

.solution-time-performance__list li::before {
  width: 7px;
  height: 7px;
  background: var(--color-primary-l);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  left: 10px;
}

.solution-time-performance__img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.solution-time-performance__img > div {
  height: 290px;
  overflow: hidden;
}

.solution-time-performance__img > div:nth-child(1) {
  transform: translateY(10px);
}

.solution-time-performance__img > div:nth-child(2) {
  transform: translateY(-10px);
}

.solution-time-performance__img div div {
  transform: translateY(-16px);
}

.solution-time-performance__img img {
  width: 110%;
  max-width: initial;
}

.para { overflow: hidden; }

.para > * {
  display: block;
  will-change: transform;
  transform: translate3d(0, -20px , 0);
}

@media (prefers-reduced-motion: reduce) {
  .para > * { transform: none !important; }
}


@media all and (max-width: 1280px) {
  .solution-time-performance {
    padding: 40px 48px 56px 48px;
    grid-template-columns: 1fr 42%;
  }
}


@media all and (max-width: 768px) {
  .solution-time-performance {
    margin-top: 36px;
    padding: 32px 28px 40px;
    grid-template-columns: 1fr;
  }

  .solution-time-performance__heading {
    font-size: 1.9rem;
  }

  .solution-time-performance__txt {
    margin-top: 8px;
    font-size: 1.5rem;
  }

  .solution-time-performance__list {
    margin-top: 16px;
  }

  .solution-time-performance__list li {
    padding: 10px 0 10px 22px;
    font-size: 1.5rem;
  }

  .solution-time-performance__list li::before {
    width: 6px;
    height: 6px;
    left: 6px;
    top: 19px;
  }

  .solution-time-performance__img > div {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .solution-time-performance__img > div:nth-child(1) {
    transform: translateY(5px);
  }

  .solution-time-performance__img > div:nth-child(2) {
    transform: translateY(-5px);
  }

  .solution-time-performance__img img {
    width: 120%;
    margin-left: -10%;
  }
}


@media all and (max-width: 480px) {
  .solution-time-performance {
    margin-top: 28px;
    padding: 24px 16px 20px;
  }

  .solution-time-performance__heading {
    font-size: 1.7rem;
  }

  .solution-time-performance__txt {
    font-size: 1.4rem;
  }  
}



/*---------------------------
 Solution - Other
---------------------------*/

.solution-other {
  margin-top: 52px;
  padding: 40px 80px 56px;
  background: #fff;
  border-radius: var(--box-r);
}

.solution-other__heading {
  font-size: 2.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.solution-other__heading span {
  font-size: 108%;
  background: linear-gradient(to right, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-other__items {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.solution-other-item {
  padding: 0 28px 24px;
  background: var(--color-page-bg);
  border-radius: var(--box-r);
}

.solution-other-item__heading {
  color: var(--color-primary);
  font-size: 1.7rem;
  line-height: 1.6;
  text-align: center;
}

.solution-other-item__heading::before {
  width: 96px;
  max-width: calc(100% - 32px);
  height: 4px;
  margin: 0 auto 18px;
  background: var(--color-primary);
  border-radius: 0 0 3px 3px;
  content: "";
  display: block;
}

.solution-other-item__txt {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.8;
}


@media all and (max-width: 768px) {
  .solution-other {
    margin-top: 40px;
    padding: 32px 28px 40px;
  }

  .solution-other__heading {
    font-size: 1.9rem;
  }

  .solution-other__items {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-other-item {
    padding: 0 16px 20px;
  }

  .solution-other-item__heading::before {
    margin: 0 auto 14px;
  }

  .solution-other-item__txt {
    margin-top: 4px;
    font-size: 1.4rem;
  }
}


@media all and (max-width: 480px) {
  .solution-other {
    margin-top: 28px;
    padding: 24px 16px 28px;
  }

  .solution-other__heading {
    font-size: 1.8rem;
  }

  .solution-other__items {
    margin-top: 12px;
    gap: 12px;
  }

  .solution-other-item__heading {
    font-size: 1.6rem;
  }
}




/*------------------------------------------

 Features

------------------------------------------*/

.features {
  display: flex;
  justify-content: end;
  gap: 64px;
}

.features__inner {
  width: calc(50% + 640px);
  display: grid;
  grid-template-columns: 60% 1fr;
  align-items: center;
  gap: 72px;
}

.features__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}

.features-item {
  padding: 20px 20px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--box-r);
  position: relative;
}

.features-item::before {
  width: 28px;
  height: 2px;
  background: var(--color-primary-l);
  border-radius: 0 0 1px 1px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
}

.features-item.--is-developing::before {
  background-color: var(--color-page-bg);
}

.features-item dt {
  font-size: 1.75rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
}

.features-item__label {
  width: fit-content;
  height: 18px;
  margin: 5px 0 0 8px;
  padding: 0 8px;
  font-size: 1.2rem;
  font-weight: 500;
  background: var(--color-page-bg);
  border-radius: 3px;
  display: inline-block;
  align-items: center;
  vertical-align: top;
}

.features-item dd {
  margin-top: 6px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.features__img {
  overflow: hidden;
}

.features__img img {
  width: 140%;
  max-width: initial;
  height: auto;
}


@media all and (max-width: 1280px) {
  .features__inner {
    padding-left: 48px;
    gap: 48px;
  }

  .features__img img {
    width: 160%;
  }
}


@media all and (max-width: 768px) {
  .features__inner {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .features__items {
    width: 100%;
    order: 2;
    gap: 12px;
  }

  .features-item {
    padding: 16px 14px 16px;
  }

  .features-item::before {
    width: 24px;
    left: 16px;
  }

  .features-item dt {
    font-size: 1.65rem;
  }

  .features-item__label {
    margin: 4px 0 0 8px;
  }

  .features-item dd {
    margin-top: 4px;
    font-size: 1.3rem;
  }

  .features__img {
    width: 100%;
    order: 1;
  }

  .features__img img {
    width: 92%;
    max-width: 560px;
  }
}


@media all and (max-width: 480px) {
  .features__inner {
    gap: 24px;
  }

  .features__items {
    gap: 10px;
  }

  .features-item dt {
    font-size: 1.6rem;
  }
}




/*------------------------------------------

 Plan

------------------------------------------*/

/*---------------------------
 Plan - Select
---------------------------*/

.plan-select {
  width: 360px;
  margin: 0 auto;
  position: relative;
}

.plan-select ul {
  background: var(--color-page-bg-d);
  border: 1px solid var(--color-border);
  border-radius: var(--box-r);
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-select li {
  height: 44px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--fc-gray);
  background: #fff;
  border-radius: var(--box-r) 0 0 var(--box-r);
  outline: 1px solid var(--color-border);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  gap: 6px;
  position: relative;
  transition: .2s;
}

.plan-select li:last-child {
  border-radius: 0 var(--box-r) var(--box-r) 0;
}

.plan-select li.--active {
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
  z-index: 1;
}

.plan-select li.--active::before {
  width: 18px;
  height: 18px;
  background-image: url(../img/icon-check-plan.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
}


.plan-select__discount-label {
  width: 148px;
  height: 48px;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -148px;
}

.plan-select__discount-label.--active {
  display: flex;
} 


.plan-select__discount-label br {
  display: none;
}


@media all and (max-width: 768px) {
  .plan-select {
    width: 300px;
  }

  .plan-select__discount-label {
    width: 72px;
    font-size: 1.5rem;
    left: calc(-72px - 8px);
  }

  .plan-select__discount-label br {
    display: block;
  }
}


@media all and (max-width: 480px) {
  .plan-select {
    width: 100%;
    position: relative;
  }

  .plan-select li {
    font-size: 1.4rem;
    position: static;
  }

  .plan-select__discount-label {
    width: 50%;
    height: auto;
    margin-top: 12px;
    font-size: 1.4rem;
    position: static;
  }

  .plan-select__discount-label:is(.--active *) {
    display: block;
  }

  .plan-select__discount-label br {
    display: none;
  }
}



/*---------------------------
 Plan - Item
---------------------------*/

.plan {
  margin-top: 44px;
  position: relative;
}

.plan-group {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility 0s .2s;
  z-index: 0;
}

.plan-group.--active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s, 0s;
  transform: translateY(0);
  z-index: 1;
}

.plan-group__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}


.plan-item {
  padding: 22px 24px 32px;
  background: #fff;
  border-radius: var(--box-r);
  position: relative;
  top: 0;
  left: 0;
}

.plan-item__ribbon {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 1px;
  left: 1px;
  overflow: hidden;
}

.plan-item__ribbon::before {
  width: 12px;
  height: 68px;
  background: var(--color-accent);
  content: "";
  display: block;
  transform: translateY(-14px) rotate(45deg);
}

.plan-item__ttl {
  font-size: 1.9rem;
  letter-spacing: -0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.plan-item__pickup-label {
  width: fit-content;
  height: 20px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 3px;
  background: var(--color-accent);
  display: flex;
  align-items: center;
}


.plan-item__price {
  margin-top: -4px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.plan-item__price:is(.--monthly *) {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border);
}

.plan-item__price div {
  font-size: 2.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2px;
}

.plan-item__price div span {
  font-size: 74%;
  transform: translateY(0.01em);
}

.plan-item__price > span {
  color: var(--fc-gray);
  font-size: 1.55rem;
  font-weight: 600;
}

.plan-item__discount {
  margin-top: -8px;
  color: var(--fc-red);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}


.plan-item__recording {
  margin-top: 16px;
  padding: 12px 14px;
  background: var(--color-page-bg-l);
  border-radius: var(--box-r);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-item__recording h4 {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plan-item__recording h4::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-mic.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
}

.plan-item__recording-row {
  font-size: 1.5rem;
  line-height: 1.8;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3px;
}

.plan-item__recording dt {
  font-weight: 600;
}

.plan-item__recording dd {
  display: flex;
  align-items: center;
  gap: 4px;
}

.plan-item__recording dd::before {
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-ellipsis.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
}


.plan-item__table {
  margin-top: 8px;
}

.plan-item__table table {
  width: 100%;
  font-size: 1.5rem;
  table-layout: fixed;
}

.plan-item__table th {
  padding: 4px 0 4px 6px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.plan-item__table td {
  padding: 4px 6px 4px 0;
  font-weight: 600;
  text-align: right;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}


.plan-item__btn {
  margin-top: 24px;
}

.plan-item__btn a {
  height: 60px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: var(--btn-r);
  box-shadow: var(--btn-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.plan-item__btn a:is(.--pro-plan *) {
  background-color: var(--btn-bg-cta);
}

.plan-item__btn a::after {
  width: 12px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-btn.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: .2s;
}

.plan-item__btn a:hover {
  background: #1964c2;
}

.plan-item__btn a:is(.--pro-plan *):hover {
  background-color: var(--btn-bg-cta-hv);
}

.plan-item__btn a:hover::after {
  transform: translate(2px, -50%);
}


@media all and (max-width: 1280px) {
  .plan-group__inner {
    margin: 0 -28px;
    gap: 16px;
  }

  .plan-item {
    padding: 16px 16px 20px;
  }

  .plan-item__ttl {
    font-size: 1.7rem;
  }

  .plan-item__recording {
    flex-direction: column;
    gap: 2px;
  }

  .plan-item__recording-row {
    justify-content: start;
  }

  .plan-item__table table {
    font-size: 1.4rem;
  }

  .plan-item__btn a {
    font-size: 1.5rem;
  }

  .plan-item__btn a::after {
    content: none;
  }
}


@media all and (max-width: 768px) {
  .plan {
    margin-top: 36px;
  }

  .plan-group__inner {
    margin: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .plan-item__ttl {
    font-size: 1.6rem;
  }

  .plan-item__price div {
    font-size: 2.3rem;
  }

  .plan-item__price > span {
    font-size: 1.4rem;
  }

  .plan-item__recording {
    flex-direction: initial;
  }

  .plan-item__recording h4 {
    font-size: 1.6rem;
  }

  .plan-item__recording h4::before {
    width: 18px;
    height: 18px;
  }

  .plan-item__recording-row {
    font-size: 1.45rem;
    justify-content: end;
  }

  .plan-item__btn a::after {
    content: "";
  }
}


@media all and (max-width: 480px) {
  .plan {
    margin-top: 28px;
  }

  .plan-item__table table {
    font-size: 1.3rem;
  }

  .plan-item__table th {
    padding: 4px 0;
  }

  .plan-item__table td {
    padding: 4px 0;
  }

  .plan-item__btn a {
    font-size: 1.5rem;
  }
}



/*---------------------------
 Plan - Other
---------------------------*/

.plan-other {
  margin-top: 44px;
}


.plan-other__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.plan-other__item {
  padding: 20px 0;
  background: #fff;
  border-radius: var(--box-r);
  display: grid;
  align-items: center;
  grid-template-columns: 240px 1fr;
}

.plan-other__heading {
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.plan-other__free-label {
  width: fit-content;
  height: 22px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 22px;
  background: var(--color-primary);
  border-radius: 3px;
}

.plan-other__body {
  padding: 8px 40px;
  position: relative;
}

.plan-other__body::before {
  width: 1px;
  height: 100%;
  background: var(--color-border);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.plan-other__body p {
  font-size: 1.6rem;
  line-height: 1.8;
}


.payment-info {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.payment-info dl {
  width: 100%;
  padding: ;
  background: var(--color-page-bg-l);
  border-radius: var(--box-r);
  display: flex;
  align-items: center;
}

.payment-info dt {
  width: auto;
  padding: 16px 20px;
  font-size: 1.45rem;
  font-weight: 600;
}

.payment-info dd {
  padding: 16px 16px 16px 0;
  flex: 1;
}

.payment-info dd img {
  height: 36px;
  margin: 0;
}


.plan-other__trial {
  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: center;
  gap: 20px;
}

.plan-other__trial-btn a {
  height: 52px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 600;
  background: var(--btn-bg-cta);
  border-radius: var(--btn-r);
  box-shadow: var(--btn-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: .2s;
}

.plan-other__trial-btn a::after {
  width: 12px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-btn.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: .2s;
}

.plan-other__trial-btn a:hover {
  background: var(--btn-bg-cta-hv);
}

.plan-other__trial-btn a:hover::after {
  transform: translate(2px, -50%);
}


@media all and (max-width: 1280px) {
  .plan-other__item {
    grid-template-columns: 200px 1fr;
  }

  .plan-other__body {
    padding: 8px 24px;
  }
}


@media all and (max-width: 960px) {
  .payment-info dl {
    padding: 12px 20px 16px 20px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 8px;
  }

  .payment-info dt {
    padding: 0;
  }

  .payment-info dd {
    padding: 0;
  }
}


@media all and (max-width: 768px) {
  .plan-other {
    margin-top: 36px;
  }

  .plan-other__items {
    gap: 16px;
  }

  .plan-other__item {
    padding: 16px 16px 20px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .plan-other__heading {
    font-size: 1.65rem;
    line-height: 1.7;
  }

  .plan-other__free-label {
    height: 18px;
    padding: 0 8px;
    font-size: 1.1rem;
    line-height: 18px;
  }

  .plan-other__body {
    padding: 0;
  }

  .plan-other__body::before {
    content: none;
  }

  .plan-other__body p {
    font-size: 1.5rem;
  }

  .payment-info dl {
    padding: 10px 14px 12px 14px;
    gap: 6px;
  }

  .payment-info dt {
    font-size: 1.3rem;
  }

  .payment-info dd img {
    width: 100%;
    max-width: 312px;
    height: auto;
  }

  .plan-other__trial {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .plan-other__trial-btn {

  }

  .plan-other__trial-btn a {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media all and (max-width: 480px) {
  .plan-other {
    margin-top: 28px;
  }

  .plan-other__body p {
    font-size: 1.4rem;
  }
}



/*---------------------------
 Plan - Tax guide
---------------------------*/

.plan-tax-guide {
  margin-top: 28px;
  color: var(--fc-gray);
  font-size: 1.4rem;
  text-align: center;
}


@media all and (max-width: 480px) {
  .plan-tax-guide {
    margin-top: 20px;
    font-size: 1.3rem;
  }
}



/*------------------------------------------

 Support system

------------------------------------------*/

.support-system {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  column-gap: 52px;
  row-gap: 28px;
}

.support-system__box {
  padding: 28px 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--box-r);
}

.support-system__heading {
  font-size: 2rem;
  line-height: 1.6;
  display: grid;
  grid-template-columns: 7px auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.support-system__heading::before {
  width: 7px;
  height: 7px;
  background: var(--color-primary-l);
  border-radius: 100%;
  content: "";
  display: block;
}

.support-system__img {
  margin-top: 20px;
  border: 1px solid var(--color-border);
}

.support-system__img img {
  width: 100%;
  max-width: 520px;
}

.support-system__txt {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.8;
}


@media all and (max-width: 768px) {
  .support-system {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .support-system__box {
    padding: 18px;
  }

  .support-system__heading {
    font-size: 1.7rem;
  }

  .support-system__img {
    margin-top: 18px;
  }

  .support-system__txt {
    margin-top: 18px;
    font-size: 1.4rem;
  }
}

@media all and (max-width: 480px) {
  .support-system {
    row-gap: 16px;
  }
}




/*------------------------------------------

 FAQ

------------------------------------------*/

.faq {
  padding: 0 0 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item {
  padding: 20px 40px 22px;
  background: #fff;
  border-radius: var(--box-r);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01);
}

.faq__item h3 {
  margin: 0 0 8px;
  padding: 0 0 0 34px;
  font-size: 1.8rem;
  position: relative;
}

.faq__item h3::before {
  width: 26px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-faq-q.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
}

.faq__body p {
  font-size: 1.6rem;
}

.faq__more {
  color: var(--fc-link);
  font-weight: 600;
  background: none;
}

.faq__more:hover {
  color: var(--fc-link-hv);
}

.faq__more::before {
  content: "（続きを見る…）";
}

.faq__more:is(.is-visible *)::before {
  content: "（続きを閉じる）";
}

.faq__hidden-area {
  display: grid;
  grid-template-rows: 0fr;
  transition: .3s grid-template-rows ease;
}

.faq__hidden-area:is(.is-visible *) {
  grid-template-rows: 1fr;
}

.faq__hidden-area > div {
  overflow: hidden;
}


@media all and (max-width: 768px) {
  .faq {
    padding-bottom: 48px;
    gap: 16px;
  }

  .faq__item {
    padding: 16px 16px 20px;
  }

  .faq__item h3 {
    margin: 0 0 4px;
    padding: 0 0 0 28px;
    font-size: 1.6rem;
  }

  .faq__item h3::before {
    width: 22px;
    top: 4px;
  }

  .faq__body p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}


@media all and (max-width: 480px) {
  .faq {
    padding-bottom: 12px;
    gap: 12px;
  }

  .faq__item h3 {
    padding: 0 0 0 25px;
    font-size: 1.5rem;
  }

  .faq__item h3::before {
    width: 20px;
    top: 4px;
  }
}




/*------------------------------------------

 Modules

------------------------------------------*/

.cta-btn {
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}

.cta-btn:is(.steps + *) {
  margin-top: 48px;
}

.cta-btn__microcopy {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.cta-btn__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.cta-btn__main a {
  width: 320px;
  height: 66px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  background: var(--btn-bg-cta);
  border-radius: var(--btn-r);
  box-shadow: var(--btn-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: .2s;
}

.cta-btn__main a::after {
  width: 13px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-btn.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  transition: .2s;
}

.cta-btn__main a:hover {
  background: var(--btn-bg-cta-hv);
}

.cta-btn__main a:hover::after {
  transform: translate(2px, -50%);
}


@media all and (max-width: 768px) {
  .cta-btn {
    gap: 12px;
  }

  .cta-btn:is(.steps + *) {
    margin-top: 28px;
  }

  .cta-btn__microcopy {
    margin: 0 calc(var(--section-padding-side) * -1);
    font-size: 1.6rem;
  }

  .cta-btn__main a {
    height: 60px;
    font-size: 1.6rem;
  }
}


@media all and (max-width: 480px) {
  .cta-btn__microcopy {
    font-size: 1.5rem;
  }
}




/*------------------------------------------

 CTA

------------------------------------------*/

.f-cta {
  padding: 88px 0;
  background-color: var(--color-primary);
  background-image: linear-gradient(to bottom right, var(--color-gradient-start) 30%, var(--color-primary) 100%);
  border-radius: 28px 28px 0 0;
}

.f-cta__inner {
  width: var(--section-w-m);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 72px;
}

.f-cta__catch {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.8;
}

.f-cta__catch .sp-visible {
  display: none;
}

.f-cta__txt {
  margin-top: 16px;
  color: #fff;
  font-size: 1.5rem;
}

.f-cta__btn {
  margin-top: 24px;
}

.f-cta__btn a {
  height: 64px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  background: var(--btn-bg-cta);
  border-radius: var(--btn-r);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: .2s;
}

.f-cta__btn a::after {
  width: 12px;
  height: 12px;
  background-image: url(../img/arrow-btn.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: .2s;
}

.f-cta__btn a:hover {
  background: var(--btn-bg-cta-hv);
}

.f-cta__btn a:hover::after {
  transform: translate(3px, -50%);
}

.f-cta__img img{
  transform: scale(1.14);
}


@media all and (max-width: 1200px) {
  .f-cta {
    padding: 68px 0;
  }
  .f-cta__inner {
    width: 100%;
    grid-template-columns: 1fr 400px;
    padding: 0 var(--section-padding-side);
    gap: 48px;
  }

  .f-cta__catch {
    font-size: 2rem;
  }

  .f-cta__img img {
    transform: scale(1);
  }
}


@media all and (max-width: 768px) {
  .f-cta {
    border-radius: 20px 20px 0 0;
    padding: 36px 0;
  }

  .f-cta__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .f-cta__catch {
    font-size: 1.9rem;
  }

  .f-cta__btn {
    margin-top: 16px;
  }

  .f-cta__btn a {
    height: 56px;
    font-size: 1.6rem;
  }

  .f-cta__img img {
    width: 100%;
    max-width: 560px;
  }
}


@media all and (max-width: 480px) {
  .f-cta__inner {
    gap: 24px;
  }

  .f-cta__catch br {
    display: none;
  }

  .f-cta__txt {
    margin-top: 8px;
    font-size: 1.4rem;
  }
}



/*---------------------------
 CTA - Form
---------------------------*/

.f-form {
  width: var(--section-w-m);
  margin: 80px auto 0;
  padding: 56px 64px;
  background: #fff;
  border-radius: var(--box-r);
}

.f-form__ttl {
  color: var(--fc-navy);
  font-size: 2.2rem;
}

.f-form dl {
  margin-top: 24px;
  border-top: 1px solid var(--color-border);
}

.f-form__row {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
}

.f-form dt {
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.label-required {
  width: fit-content;
  height: 20px;
  padding: 0 4px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  background: #f93b3b;
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.f-form dd {
  font-size: 1.6rem;
}

.f-form input[type="text"],
.f-form input[type="email"] {
  width: 280px;
  height: 48px;
  padding: 0 3px;
  background: var(--color-page-bg);
  border-radius: 3px;
}

.f-form select {
  width: 280px;
  height: 48px;
  padding: 0 3px;
  background-image: linear-gradient(to bottom, #fff, var(--color-page-bg-l));
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

.f-form textarea {
  width: 100%;
  height: 200px;
  padding: 0 3px;
  background: var(--color-page-bg);
  border-radius: 3px;
  display: block;
  resize: vertical;
}

.f-form input::placeholder,
.f-form textarea::placeholder {
  color: var(--fc-gray);
}

.f-form input[type="text"]:focus,
.f-form input[type="email"]:focus,
.f-form textarea:focus {
  outline: 2px solid var(--color-primary-l);
}


.notes-txt {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.alert-txt {
  margin-top: 10px;
  color: #f93b3b;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
}

.alert-txt:is(.notes-txt + *){
  margin-top: 0;
}




.f-form-submit {
  margin-top: 28px;
}

.f-form-submit__inner {
  width: 320px;
  height: 64px;
  margin: 0 auto;
  border-radius: var(--btn-r);
  background: var(--color-primary);
  position: relative;
}

.f-form-submit__inner::after {
  width: 12px;
  height: 12px;
  background-image: url(../img/arrow-btn.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: .2s;
}

.f-form-submit__inner:hover {
  background: #1964c2;
}

.f-form-submit__inner:hover::after {
  transform: translate(3px, -50%);
}

.f-form-submit input[type="submit"] {
  width: 100%;
  height: 64px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}


@media all and (max-width: 960px) {
  .f-form {
    width: calc(100% - (var(--section-padding-side) * 2));
    margin: 56px var(--section-padding-side) 0;
    padding: 40px 48px 48px;
  }
}


@media all and (max-width: 768px) {
  .f-form {
    padding: 28px 18px;
  }

  .f-form__ttl {
    font-size: 1.8rem;
  }

  .f-form dl {
    margin-top: 20px;
  }

  .f-form__row {
    grid-template-columns: 160px 1fr;
  }

  .f-form dt {
    font-size: 1.35rem;
  }

  .label-required {
    height: 18px;
    padding: 0 4px;
    font-size: 1.1rem;
  }

  .f-form dd {
    font-size: 1.35rem;
  }

  .f-form input[type="text"],
  .f-form input[type="email"],
  .f-form select {
    width: 100%;
    height: 48px;
  }

  .f-form textarea {
    height: 128px;
  }

  .notes-txt {
    font-size: 1.3rem;
  }

  .alert-txt {
    font-size: 1.3rem;
  }

  
}


@media all and (max-width: 480px) {
  .f-form {
    width: calc(100% - 16px);
    margin: 40px 8px 0;
    padding: 20px 14px 24px;
  }

  .f-form__ttl {
    font-size: 1.7rem;
  }

  .f-form dl {
    margin-top: 16px;
  }

  .f-form__row {
    padding: 12px 0 16px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .f-form-submit {
    margin-top: 24px;
  }
}




/*------------------------------------------

 Fixed CTA

------------------------------------------*/

.f-fixed-nav {
  width: 300px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-modal);
}

.f-fixed-nav__close-btn {
  width: 38px;
  height: 38px;
  background-color: var(--fc-navy);
  background-image: url(../img/icon-close.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center center;
  border: 2px solid #fff;
  border-radius: 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -12px;
  right: -12px;
  cursor: pointer;
}

.f-fixed-nav__close-btn:hover {
  background-color: var(--color-primary);
}

.f-fixed-nav__box {
  padding: 16px 20px;
  background: #fff;
  border: 2px solid var(--color-primary-l);
  border-radius: var(--box-r);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.f-fixed-nav__header {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
}

.f-fixe-dnav__avatar img {
  width: 100%;
}

.f-fixed-nav__txt {
  font-size: 1.3rem;
  line-height: 1.7;
}

.f-fixed-nav__name {
  margin-bottom: 4px;
  color: var(--fc-gray);
  font-size: 1.2rem;
  font-weight: 600;
}

.f-fixed-nav__banner {
  margin-top: 12px;
}

.f-fixed-nav__banner a {
  transition: opacity .2s;
}

.f-fixed-nav__banner a:hover {
  opacity: .8;
}

.f-fixed-nav__btn {
  margin-top: 12px;
}

.f-fixed-nav__btn a {
  width: 100%;
  height: 48px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--btn-bg-cta);
  border-radius: var(--btn-r);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.f-fixed-nav__btn a::after {
  width: 12px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-btn.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  transition: .2s;
}

.f-fixed-nav__btn a:hover {
  background: var(--btn-bg-cta-hv);
}

.f-fixed-nav__btn a:hover::after {
  transform: translate(3px, -50%);
}

.f-fixed-nav__contact-link {
  margin-top: 4px;
  line-height: 1.7;
  text-align: center;
}

.f-fixed-nav__contact-link a {
  color: var(--fc-gray);
  font-size: 1.3rem;
  text-decoration: underline;
}


@media all and (max-width: 768px) {
  .f-fixed-nav {
    display: none;
  }
}




/*------------------------------------------

 Footer

------------------------------------------*/

.g-footer {
  background: #fff;
}

.g-footer__inner{
  padding: 40px 0;
}


.f-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  gap: 12px;
}

.f-nav li {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.f-nav li:not(:first-child)::before {
  width: 1px;
  height: 16px;
  background: var(--color-border);
  content: "";
  display: block;
}

.f-nav li a:hover {
  color: var(--fc-gray);
  text-decoration: underline;
}


.f-copyright {
  margin-top: 20px;
  color: var(--fc-gray);
  font-size: 1.2rem;
  text-align: center;
}


@media all and (max-width: 768px) {
  .g-footer__inner {
    padding: 28px var(--section-padding-side);
  }

  .f-nav ul {
    column-gap: 20px;
    row-gap: 8px;
  }

  .f-nav li:not(:first-child)::before {
    content: none;
  }
}


@media all and (max-width: 480px) {
  .f-nav ul {
    column-gap: 16px;
  }

  .f-nav li {
    font-size: 1.3rem;
  }

  .f-copyright {
    margin-top: 16px;
    font-size: 1.1rem;
  }
}