@charset "UTF-8";
/* 使用変数
=========================*/
/* 画像ディレクトリ */
/* ブレークポイント */
/* カラー */
/* font */
/* テキストカラー */
/* コンテンツ幅 */
/* reset css
==============================================================*/
body,
h1, h2, h3, h4, h5, h6,
p, ol, ul, dl, dt, dd, form,
figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

strong {
  font-weight: normal;
}

table, td, th, tr, thead, tbody {
  border: none;
}

table th {
  text-align: left;
  font-weight: normal;
}

table {
  border-collapse: collapse;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
}

textarea {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
select::-ms-expand {
  display: none;
}

header, footer, section, nav, main,
figure, figcaption, time, small {
  display: block;
}

input[type=submit], input[type=image] {
  border: none;
  padding: 0;
}
input[type=text], input[type=email], input[type=tel], input[type=number], input[type=password] {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

button {
  border: none;
  margin: 0;
  cursor: pointer;
}

input[type=submit], input[type=image], input[type=reset] {
  cursor: pointer;
}

address {
  font-style: normal;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #999;
}

/* 汎用モジュール
=========================*/
/* PC/SP 出し分け
-----------------------------------------*/
.modBpPc {
  display: block;
}
@media screen and (max-width: 768px) {
  .modBpPc {
    display: none;
  }
}
.modBpPc--inline {
  display: inline;
}
@media screen and (max-width: 768px) {
  .modBpPc--inline {
    display: none;
  }
}
.modBpSp {
  display: none;
}
@media screen and (max-width: 768px) {
  .modBpSp {
    display: block;
  }
}
.modBpSp--inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .modBpSp--inline {
    display: inline;
  }
}

/* 見出し
-----------------------------------------*/
.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .heading {
    gap: 0.3rem;
  }
}
.heading__sub {
  font-size: 2rem;
  font-weight: 700;
  color: #009740;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .heading__sub {
    font-size: 1.8rem;
  }
}
.heading__main {
  font-size: 3.2rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .heading__main {
    font-size: 2.8rem;
  }
}
.heading__main--excel {
  margin: 1rem 0 0;
}
.heading__bar {
  display: block;
  width: 4.2rem;
  height: 0.6rem;
  background-color: #009740;
  border-radius: 1920px;
  margin-top: 0.4rem;
}
.heading__icon {
  height: 6rem;
  width: auto;
}

/* ボタン
-----------------------------------------*/
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #f06575;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 0.8rem 8rem;
  border-radius: 0.8rem;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .btn--primary {
    font-size: 1.6rem;
    padding: 0.8rem 4rem;
    width: 100%;
  }
}
.btn--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #22254c;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 1.6rem 8rem;
  border-radius: 0.8rem;
  cursor: pointer;
  border: none;
}
@media screen and (max-width: 768px) {
  .btn--dark {
    padding: 1.6rem 4rem;
    width: 100%;
  }
}
.btn__icon {
  width: 2rem;
  height: 2rem;
}

.modBtn {
  display: flex;
  justify-content: center;
  margin: 40px 0 20px;
}
.modBtn__top {
  max-width: 344px;
  width: 100%;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #22254C;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
}
.modBtn__top:hover {
  opacity: 0.7;
}
.modBtn__top:hover .modBtn__arrow {
  transform: translateY(-50%) translateX(5px);
}
@media screen and (max-width: 768px) {
  .modBtn__top {
    font-size: 1.2rem;
    padding: 0.6rem 1.2rem;
  }
}
.modBtn__top--white {
  background-color: #ffffff;
  color: #f06575;
  border: 1px solid #f20039;
}
.modBtn__top--white:hover {
  color: #ffffff;
  background-color: #f20039;
}
.modBtn__top--white:hover .header__ctaIcon {
  transform: translateX(5px);
  transition: all 0.2s ease-in-out;
}
.modBtn__top--white:hover .header__ctaIcon circle {
  fill: #ffffff;
}
.modBtn__top__wrapper {
  display: flex;
  gap: 8px;
}
.modBtn__arrow {
  width: 2rem;
  height: 2rem;
  transition: all 0.2s ease-in-out;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .modBtn__arrow {
    display: none;
  }
}

.modBreadcrumbs {
  max-width: 103.2rem;
  margin: 0 auto;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
}
.modBreadcrumbs__item {
  font-size: 1.2rem;
  color: #22254C;
}
.modBreadcrumbs__item__link {
  padding: 0 40px 0 0;
  position: relative;
}
.modBreadcrumbs__item__link:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #E6E3E1;
  border-right: 2px solid #E6E3E1;
  transform: translateY(-50%) rotate(45deg);
}
.modBreadcrumbs__item__current {
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica, Verdana, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  font-weight: 400;
  line-height: 1.8;
  color: #22254c;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: inherit;
}
@media screen and (min-width: 769px) {
  a {
    -wewbkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  a:hover {
    opacity: 0.7;
  }
}

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

.modVisuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* header
=========================*/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 7rem;
  padding-inline: 8rem;
  border-bottom: 1px solid #e6e3e1;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5rem;
    padding-inline: 1.6rem;
  }
}
.header__logo {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .header__logo {
    gap: 0.5rem;
  }
}
.header__logoText {
  font-size: 2.5rem;
  font-weight: 500;
  color: #009740;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header__logoText {
    font-size: 1.4rem;
  }
}
.header__logoSub {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.2rem;
  color: #8f8c8a;
  white-space: nowrap;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .header__logoSub {
    max-width: 37px;
    padding-top: 0;
  }
}
.header__logoSubImg {
  width: 7.4rem;
  height: auto;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #f06575;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
}
.header__cta:hover {
  background-color: #f20039;
}
.header__cta:hover .header__ctaIcon {
  transform: translateX(5px);
  transition: all 0.2s ease-in-out;
}
.header__cta:hover .header__ctaIcon path {
  stroke: #f20039;
}
@media screen and (max-width: 768px) {
  .header__cta {
    font-size: 1rem;
    max-width: 146px;
    padding: 0.5rem 0.8rem;
  }
}
.header__cta--white {
  background-color: #ffffff;
  color: #f06575;
  border: 1px solid #f20039;
}
@media screen and (max-width: 768px) {
  .header__cta--white {
    max-width: 56px;
    padding: 0.5rem 0.7rem;
  }
}
.header__cta--white:hover {
  color: #ffffff;
  background-color: #f20039;
}
.header__cta--white:hover .header__ctaIcon {
  transform: translateX(5px);
  transition: all 0.2s ease-in-out;
}
.header__cta--white:hover .header__ctaIcon circle {
  fill: #ffffff;
}
.header__cta__wrapper {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .header__cta__wrapper {
    gap: 4px;
  }
}
.header__ctaIcon {
  width: 2rem;
  height: 2rem;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .header__ctaIcon {
    display: none;
  }
}

/* footer
=========================*/
.footer {
  background-color: #faf7f5;
  padding: 4rem 0 3.6rem;
}
.footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.footer__link {
  font-size: 1.2rem;
  color: #22254c;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__separator {
  color: #e6e3e1;
  font-size: 1.4rem;
}
.footer__copy {
  font-size: 1.2rem;
  color: #8f8c8a;
  text-align: center;
  line-height: 1.5;
}

/* TOP PAGE
=========================*/
/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background-color: #faf7f5;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 2.6rem 1.6rem 4.5rem;
  }
}
@media screen and (min-width: 769px) {
  .hero {
    height: 30rem;
  }
}
.hero::before {
  position: absolute;
  content: "";
  top: -5rem;
  left: 0;
  background: url(/assets/img/top/img_curved_left.webp) no-repeat center center;
  background-size: contain;
  width: 270px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .hero::before {
    background: url(/assets/img/top/sp/img_curved_leftSp.webp) no-repeat center center;
    width: 220px;
    background-size: contain;
  }
}
.hero::after {
  position: absolute;
  content: "";
  top: 0;
  right: -50px;
  transform: rotate(15deg);
  background: url(/assets/img/top/img_curved_right.webp) no-repeat center center;
  background-size: contain;
  width: 284px;
  aspect-ratio: 1/1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero::after {
    background: url(/assets/img/top/sp/img_curved_rightSp.webp) no-repeat center center;
    background-size: contain;
    width: 150px;
    top: unset;
    bottom: 0;
    right: 0;
    transform: rotate(0);
  }
}
@media screen and (min-width: 1441px) {
  .hero::after {
    top: unset;
    bottom: -35px;
    right: -50px;
    transform: unset;
  }
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .hero__inner {
    flex-direction: column-reverse;
    gap: 0;
    padding: 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .hero__content {
    align-items: center;
    gap: 1.4rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .hero__content {
    width: 60%;
  }
}
.hero__badge {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .hero__badge {
    width: 100%;
    gap: 0.4rem;
  }
}
.hero__titleRow {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .hero__titleRow {
    gap: 1.2rem;
  }
}
.hero__badgeCircle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 9rem;
  height: 9rem;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #f06575;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero__badgeCircle {
    width: 6rem;
    height: 6rem;
    font-size: 1.4rem;
  }
}
.hero__badgeCircle span {
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .hero__badgeCircle span {
    font-size: 1.2rem;
  }
}
.hero__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background-color: #ffffff;
  border: 2px solid #009740;
  color: #009740;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  padding: 0.2rem 2rem;
  border-radius: 0.4rem;
}
@media screen and (max-width: 768px) {
  .hero__label {
    font-size: 1.6rem;
    letter-spacing: 0.16rem;
    padding: 0.1rem 1.6rem;
  }
}
.hero__labelDeco {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.84rem;
  height: 1.84rem;
  flex-shrink: 0;
}
.hero__labelDeco::before {
  content: "";
  display: block;
  width: 2px;
  height: 2.4rem;
  background-color: #009740;
}
.hero__labelDeco:first-child::before {
  transform: rotate(-45deg);
}
.hero__labelDeco:last-child::before {
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hero__labelDeco {
    width: 1.4rem;
    height: 1.4rem;
  }
  .hero__labelDeco::before {
    height: 1.8rem;
  }
}
.hero__labelAccent {
  color: #f06575;
  padding-left: 10px;
}
.hero__title {
  font-size: 6rem;
  font-weight: 700;
  color: #009740;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 3.6rem;
    text-align: center;
    letter-spacing: 0.27rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__desc {
  font-size: 1.6rem;
  color: #22254c;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .hero__desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .hero__img {
    max-width: 32.3rem;
    width: 100%;
    aspect-ratio: 323/164;
    margin-left: 2.7rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .hero__img {
    position: absolute;
    right: 0;
    top: unset;
    bottom: 0;
    width: 40%;
  }
}
@media screen and (min-width: 1001px) {
  .hero__img {
    position: absolute;
    right: -13%;
    top: 15%;
    width: 51%;
  }
}
.hero__decoCircle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}
.hero__decoCircle--01 {
  width: 31.6rem;
  height: 31.6rem;
  border: 3px solid #009740;
  top: -18.2rem;
  left: -7.4rem;
}
@media screen and (max-width: 768px) {
  .hero__decoCircle--01 {
    width: 16rem;
    height: 16rem;
    top: -8rem;
    left: -4rem;
  }
}
.hero__decoCircle--02 {
  width: 30.2rem;
  height: 30.2rem;
  border: 3px solid #009740;
  bottom: -6rem;
  right: -2rem;
}
@media screen and (max-width: 768px) {
  .hero__decoCircle--02 {
    display: none;
  }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  padding: 0 1.5rem;
  max-width: 123rem;
  margin: 8rem auto;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 0 1.6rem;
    margin-top: 6.5rem;
    margin-bottom: 6rem;
  }
}
.cta__label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #009740;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .cta__label {
    font-size: 1.4rem;
  }
}
.cta__box {
  border-radius: 1.2rem;
  overflow: hidden;
  background: url(/assets/img/common/img_background.webp) no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  max-width: 1200px;
  width: 100%;
  height: 360px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 5rem 0 3rem;
}
@media screen and (max-width: 768px) {
  .cta__box {
    background: url(/assets/img/sp/img_backgroundSp.webp) no-repeat;
    background-size: cover;
    background-position: 100% 100%;
    width: 100%;
    height: auto;
    flex-direction: column;
    padding: 1rem 1.6rem 2.8rem;
    gap: 1.9rem;
  }
}
@media screen and (min-width: 1001px) {
  .cta__box {
    height: 36rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .cta__box {
    height: 32rem;
  }
}
.cta__imgWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1001px) {
  .cta__imgWrap {
    position: relative;
    width: 44%;
    height: 100%;
    margin-left: 1.3rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .cta__imgWrap {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .cta__imgWrap {
    width: 100%;
  }
}
.cta__circle {
  position: absolute;
  width: 48rem;
  height: 48rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .cta__circle {
    width: 30rem;
    height: 30rem;
    left: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__circle {
    max-width: unset;
    width: 41rem;
    height: 41rem;
    top: 7%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.cta__screenshot {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1001px) {
  .cta__screenshot {
    width: 43rem;
    aspect-ratio: 400/300;
    margin-left: 1.3rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .cta__screenshot {
    position: absolute;
    width: 28rem;
    aspect-ratio: 280/180;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .cta__screenshot {
    width: 100%;
    max-width: 28.6rem;
    aspect-ratio: 286/172;
    margin-left: 0.7rem;
  }
}
.cta__textArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cta__textArea {
    margin-top: 35px;
    width: 100%;
    align-items: center;
    gap: 1rem;
  }
}
.cta__badge {
  background-color: #009740;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  padding: 0.4rem 2.5rem;
  border-radius: 6rem;
  position: relative;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
}
.cta__badge::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #009740 transparent;
  display: block;
  width: 0;
}
@media screen and (max-width: 768px) {
  .cta__badge {
    font-size: 1.4rem;
    padding: 0.5rem 2.5rem 0.7rem;
  }
}
.cta__catchcopy {
  font-size: 4.4rem;
  font-weight: 800;
  color: #1a254c;
  line-height: 1.25;
  text-align: left;
  margin-bottom: 2.8rem;
  letter-spacing: -0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 1135px) and (min-width: 1001px) {
  .cta__catchcopy {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .cta__catchcopy {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__catchcopy {
    font-size: 3.2rem;
    text-align: center;
    margin-top: 0;
    white-space: normal;
    letter-spacing: 0.01em;
    margin-bottom: 0.1rem;
  }
}
.cta__grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.5rem 3.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .cta__grid {
    gap: 1rem;
    margin: 0 auto 1.7rem;
  }
}
.cta__gridItem {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.cta__checkIcon {
  width: 2rem;
  height: 2rem;
  background-color: #009740;
  border-radius: 0.4rem;
  position: relative;
  flex-shrink: 0;
}
.cta__checkIcon::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.3rem;
  width: 0.5rem;
  height: 1rem;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.cta__gridText {
  font-size: 1.8rem;
  color: #1a254c;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .cta__gridText {
    font-size: 1.4rem;
  }
}
.cta__btnWrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta__btnWrap {
    justify-content: center;
  }
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f06575;
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 0.8rem 2rem;
  border-radius: 0.8rem;
  text-decoration: none;
  position: relative;
  height: 6rem;
  width: 100%;
  max-width: 415px;
  box-shadow: 0 4px 12px rgba(240, 101, 117, 0.25);
  transition: background-color 0.2s ease;
}
.cta__btn:hover {
  background-color: #e05363;
}
.cta__btn:hover .cta__btnIcon {
  transform: translate(5px, -50%);
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .cta__btn {
    padding: 0.8rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__btn {
    font-size: 1.6rem;
    max-width: 100%;
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .cta__btn--p0 {
    letter-spacing: -0.2px;
  }
}
.cta__btnIcon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  transition: all 0.2s ease-in-out;
}

/* ==========================================================================
   Calculator Section
   ========================================================================== */
.calculator {
  background-color: #faf7f5;
  padding: 8rem 2rem;
}
@media screen and (max-width: 768px) {
  .calculator {
    padding: 6.8rem 1.6rem 6.2rem;
  }
}
.calculator__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .calculator__header {
    margin-bottom: 4.3rem;
    gap: 1.9rem;
  }
}
.calculator__notes {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
@media screen and (max-width: 768px) {
  .calculator__notes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}
.calculator__note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  color: #22254c;
}
@media screen and (max-width: 768px) {
  .calculator__note {
    font-size: 1.4rem;
    align-items: start;
    gap: 0.8rem;
  }
}
.calculator__noteIcon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}
.calculator__body {
  display: flex;
  gap: 2.4rem;
  max-width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .calculator__body {
    flex-direction: column;
  }
}
.calculator__main {
  flex: 1;
  min-width: 0;
}
.calculator__form {
  background-color: #ffffff;
  border: 1px solid #e6e3e1;
  border-radius: 1.2rem;
  padding: 5.6rem 8rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .calculator__form {
    padding: 3.1rem 2.3rem 1.3rem;
    gap: 2.7rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .calculator__form {
    padding: 3rem;
  }
}
.calculator__section {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media screen and (max-width: 768px) {
  .calculator__section {
    gap: 1.8rem;
  }
}
.calculator__sectionHead {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.calculator__sectionNum {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #009740;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .calculator__sectionNum {
    font-size: 1.6rem;
  }
}
.calculator__sectionTitle {
  font-size: 2.2rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .calculator__sectionTitle {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.calculator__row {
  display: flex;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .calculator__row {
    flex-direction: column;
    gap: 1rem;
  }
}
.calculator__field {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.calculator__label {
  font-size: 1.6rem;
  color: #22254c;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .calculator__label {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .calculator__label--mt08 {
    margin-top: -0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .calculator__label--mt04 {
    margin-top: -0.4rem;
  }
}
@media screen and (max-width: 768px) {
  .calculator__label--mt01 {
    margin-top: -0.1rem;
  }
}
.calculator__warning {
  font-size: 1rem;
  color: #f06575;
  line-height: 1.8;
}
.calculator__input {
  width: 100%;
  padding: 0.8rem 1.6rem 0.7rem;
  border: 1px solid #e6e3e1;
  border-radius: 0.4rem !important;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, Arial, Helvetica, Verdana, sans-serif, "ＭＳ Ｐゴシック", "MS PGothic";
  color: #22254c;
  line-height: 1.8;
  background-color: #ffffff;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .calculator__input {
    font-size: 1.4rem;
    padding: 0.8rem 1.6rem 1.1rem;
  }
}
.calculator__input::placeholder {
  color: #8f8c8a;
}
.calculator__input:focus {
  border: 1px solid #009740;
}
.calculator__input--error {
  border-color: #f06575;
}
.calculator__input--warning {
  border: 1px solid #F06575;
}
.calculator__error {
  font-size: 1rem;
  color: #f06575;
  line-height: 1.8;
}
.calculator__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #faf7f5;
  border-radius: 0.4rem;
  padding: 0.8rem 4rem;
}
@media screen and (max-width: 768px) {
  .calculator__subtotal {
    padding: 0.5rem 2.5rem 0.8rem;
  }
}
.calculator__subtotalLabel {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22254c;
}
@media screen and (max-width: 768px) {
  .calculator__subtotalLabel {
    font-size: 1.4rem;
    letter-spacing: 3px;
  }
}
.calculator__subtotalValue {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.calculator__subtotalUnit {
  font-size: 1.6rem;
  color: #22254c;
}
.calculator__subtotalAmount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #22254c;
}
@media screen and (max-width: 768px) {
  .calculator__subtotalAmount {
    font-size: 2.8rem;
  }
}
.calculator__submit {
  align-self: center;
  margin-top: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.calculator__submit:hover {
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .calculator__submit {
    margin-top: 0;
    margin-bottom: -0.5rem;
  }
}
.calculator__divider {
  width: 100%;
  height: 1px;
  background-color: #e6e3e1;
}
.calculator__result {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .calculator__result {
    margin-top: -4rem 0 0;
  }
}
.calculator__resultLabel {
  font-size: 1.6rem;
  font-weight: 700;
  color: #009740;
  line-height: 1.8;
}
.calculator__resultValue {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  color: #009740;
  font-weight: 700;
}
.calculator__resultYen {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .calculator__resultYen {
    font-size: 4rem;
  }
}
.calculator__resultAmount {
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .calculator__resultAmount {
    font-size: 6rem;
  }
}
.calculator__terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
.calculator__termsLink {
  font-size: 1.4rem;
  color: #22254c;
  text-decoration: none;
}
.calculator__termsLink:hover {
  text-decoration: underline;
}
.calculator__termsIcon {
  width: 1.6rem;
  height: 1.6rem;
}
.calculator__sidebar {
  width: 15.7rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .calculator__sidebar {
    display: none;
  }
}
.calculator__sidebarBanner {
  border-radius: 1.2rem;
  overflow: hidden;
  background: linear-gradient(174deg, #96e28c 16%, #cdFccb 89%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.calculator__sidebarBanner--small {
  gap: 1.2rem;
}
.calculator__sidebarImg {
  width: 100%;
  border-radius: 0.4rem;
}
.calculator__sidebarIcon {
  width: 5.6rem;
  height: auto;
}
.calculator__sidebarText {
  font-size: 2.8rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.1;
  text-align: center;
  writing-mode: vertical-rl;
  display: flex;
  gap: 2rem;
}
.calculator__sidebarPills {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.calculator__sidebarPill {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #009740;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.6rem 0.8rem;
  border-radius: 6rem;
  line-height: 1.2;
  text-align: center;
}
.calculator__sidebarBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f06575;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 0.8rem 1.6rem;
  border-radius: 0.8rem;
  text-decoration: none;
  white-space: nowrap;
}
.calculator__sidebarSmallTitle {
  font-size: 1rem;
  font-weight: 700;
  color: #22254c;
  text-align: center;
}
.calculator__sidebarSmallLogo {
  width: 13rem;
  height: auto;
  background-color: #ffffff;
  border-radius: 0.2rem;
  padding: 0.4rem;
}
.calculator__sidebarSmallText {
  font-size: 1.3rem;
  font-weight: 700;
  color: #22254c;
  text-align: center;
}
.calculator__sidebarSmallBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f06575;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  text-decoration: none;
  text-align: center;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.flow {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 0 1.6rem;
    margin-bottom: 6.4rem;
  }
}
.flow__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .flow__steps__wrapper {
    display: flex;
    gap: 1.5rem;
    margin-top: 4.2rem;
  }
}
.flow__steps {
  display: flex;
  align-items: center;
  background-color: #009740;
  border-radius: 7rem;
  padding: 1.6rem 0;
  position: relative;
  margin-top: 3.7rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .flow__steps {
    width: 48px;
    flex-direction: column;
    border-radius: 7rem;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }
}
.flow__step {
  flex: 1;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__step {
    font-size: 1.4rem;
    padding: 1.8rem 1.6rem;
    width: 100%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: nowrap;
    display: flex;
    align-items: center;
    letter-spacing: 3.2px;
  }
  .flow__step:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1.8rem 1.6rem;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .flow__step--02 {
    padding: 1rem 1.6rem !important;
    letter-spacing: 0.3rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__step--03 {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .flow__step--04 {
    padding: 2.2rem 1.6rem !important;
    justify-content: center;
  }
}
.flow__stepArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 63px;
  background-color: #ffffff;
  clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 70% 100%, 94% 49%, 70% 0);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .flow__stepArrow--01 {
    top: 16%;
    left: -10% !important;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .flow__stepArrow--01 {
    left: 17% !important;
  }
}
@media screen and (max-width: 768px) {
  .flow__stepArrow--02 {
    top: 44%;
    left: -10% !important;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  .flow__stepArrow--03 {
    top: 68%;
    left: -10% !important;
    transform: rotate(90deg);
  }
}
.flow__descriptions {
  display: flex;
  gap: 2.6rem;
  background-color: #faf7f5;
  border-radius: 1.2rem;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  .flow__descriptions {
    flex-direction: column;
    padding: 2.5rem;
    width: 100%;
  }
}
.flow__descItem {
  flex: 1;
  background-color: #ffffff;
  border-radius: 1.2rem;
  padding: 1.8rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .flow__descItem {
    flex: unset;
    padding: 4.8rem 1.6rem;
  }
}
.flow__descText {
  font-size: 1.4rem;
  color: #22254c;
  line-height: 1.8;
}

/* ==========================================================================
   Feature Section
   ========================================================================== */
.feature {
  background: linear-gradient(135deg, #96E28C 0%, #CDFCCB 100%);
  padding: 4rem 0 8rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .feature {
    padding: 4rem 1.6rem 8rem;
  }
}
.feature__inner {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .feature__inner {
    padding: 0;
  }
}
.feature__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .feature__intro {
    margin-bottom: 4.4rem;
    gap: 1.3rem;
  }
}
.feature__introIcon {
  width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 768px) {
  .feature__introIcon {
    width: 6rem;
    height: 6rem;
  }
}
.feature__intro__inner {
  text-align: center;
}
.feature__introText {
  font-size: 1.8rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature__introText {
    font-size: 1.4rem;
  }
}
.feature__introCatch {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: #22254c;
  text-align: center;
  line-height: 1;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .feature__introCatch {
    line-height: 1.6;
  }
  .feature__introCatch span {
    color: #22254c;
  }
}
.feature__cards {
  counter-reset: feature-counter 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .feature__cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.feature__card {
  background-color: #ffffff;
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2.4rem;
}
@media screen and (max-width: 768px) {
  .feature__card {
    gap: 2.2rem;
    align-items: start;
    padding: 2rem 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__card:last-child {
    padding: 2.2rem 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 375px) {
  .feature__card:last-child .feature__cardNum {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .feature__card:last-child .feature__cardBody {
    gap: 1.5rem;
  }
}
.feature__cardNum {
  font-size: 4rem;
  font-weight: 700;
  color: #009740;
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .feature__cardNum {
    font-size: 3.2rem;
    display: none;
  }
}
.feature__cardBody {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .feature__cardBody {
    gap: 1.1rem;
  }
}
.feature__cardTitle {
  font-size: 2rem;
  font-weight: 700;
  color: #009740;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .feature__cardTitle {
    font-size: 2rem;
    padding-left: 6rem;
    counter-increment: feature-counter;
    position: relative;
  }
  .feature__cardTitle:before {
    font-size: 3.2rem;
    font-weight: 700;
    opacity: 0.3;
    content: "0" counter(feature-counter);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.feature__cardText {
  font-size: 1.4rem;
  color: #22254c;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .feature__cardText {
    font-size: 1.4rem;
  }
}
.feature__ctaBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.8rem;
  margin: 4rem auto 0;
  background-color: #f06575;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  padding: 1.2rem 0 1.2rem 5rem;
  border-radius: 0.8rem;
  text-decoration: none;
  width: 41%;
}
@media screen and (max-width: 768px) {
  .feature__ctaBtn {
    font-size: 1.6rem;
    width: 100%;
    padding: 1.7rem 1.3rem 1.6rem 5.8rem;
    margin-top: 3.7rem;
    gap: 2.8rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .feature__ctaBtn {
    width: 50%;
  }
}
.feature__ctaBtnIcon {
  width: 2rem;
  height: 2rem;
}
.feature__decoIcon {
  position: absolute;
  right: 0;
  top: 50%;
  width: 42rem;
  height: auto;
  opacity: 0.3;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .feature__decoIcon {
    display: none;
  }
}
.feature__decoCircle {
  position: absolute;
  left: 0;
  top: -4rem;
  background: url(/assets/img/top/img_payrollNext01.webp) no-repeat;
  background-size: contain;
  background-position: 100% 100%;
  width: 32.4rem;
  aspect-ratio: 1/1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .feature__decoCircle {
    display: none;
  }
}

/* ==========================================================================
   Benefit Section
   ========================================================================== */
.benefit {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .benefit {
    padding: 6.5rem 1.6rem 6.5rem;
  }
}
.benefit__inner {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .benefit__inner {
    padding: 0;
  }
}
.benefit__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .benefit__cards {
    grid-template-columns: 1fr;
    margin-top: 3.6rem;
    gap: 1.4rem;
  }
}
.benefit__card {
  background-color: #faf7f5;
  border-radius: 1.2rem;
  overflow: hidden;
  padding: 2.4rem 4rem 4rem;
}
@media screen and (max-width: 768px) {
  .benefit__card {
    padding: 5.5rem 2.3rem 1rem;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .benefit__card {
    padding: 2.4rem 2rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .benefit__card:last-child {
    padding: 8.7rem 2.3rem 4rem;
  }
}
.benefit__cardImg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20rem;
}
@media screen and (max-width: 768px) {
  .benefit__cardImg {
    height: 14rem;
  }
}
.benefit__cardImgInner {
  max-width: 137px;
  width: 100%;
  aspect-ratio: 137/160;
}
.benefit__cardImgInner--man {
  max-width: 153px;
  aspect-ratio: 153/170;
}
.benefit__cardTitle {
  font-size: 2rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.6;
  margin-top: 0.7rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .benefit__cardTitle {
    font-size: 2.2rem;
    letter-spacing: -2px;
    text-align: start;
    margin-top: 3.7rem;
    margin-bottom: 0;
  }
}
.benefit__cardText {
  font-size: 1.6rem;
  color: #22254c;
  line-height: 1.8;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .benefit__cardText {
    font-size: 1.4rem;
    margin-top: 0.5rem;
  }
}

/* ==========================================================================
   Excel Section
   ========================================================================== */
.excel {
  padding: 0 0 8rem;
}
@media screen and (max-width: 768px) {
  .excel {
    padding: 0 1.6rem 6.5rem;
  }
}
.excel__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .excel__inner {
    padding: 0;
  }
}
.excel__intro {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .excel__intro {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.excel__introTitle {
  font-size: 2rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .excel__introTitle {
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }
}
.excel__introText {
  font-size: 1.6rem;
  color: #22254c;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .excel__introText {
    font-size: 1.4rem;
    text-align: left;
  }
}
.excel__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2.4rem;
}
@media screen and (max-width: 1000px) {
  .excel__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }
}
.excel__card {
  background-color: #ffffff;
  border: 1px solid #e6e3e1;
  border-radius: 1.2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #22254c;
  box-shadow: 0 0 1.2rem rgba(143, 140, 138, 0.12);
}
.excel__cardImg {
  width: 100%;
  height: auto;
  aspect-ratio: 382/215;
  object-fit: cover;
}
.excel__cardBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.4rem 2.4rem 0;
}
@media screen and (max-width: 768px) {
  .excel__cardBody {
    padding: 1.6rem 2.5rem 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .excel__cardBody--gap {
    gap: 0.5rem;
  }
}
.excel__cardTitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .excel__cardTitle {
    font-size: 1.4rem;
    letter-spacing: 0.2rem;
  }
}
@media screen and (max-width: 768px) {
  .excel__cardTitle--height {
    line-height: 1.7;
  }
}
.excel__cardText {
  font-size: 1.4rem;
  color: #22254c;
  line-height: 1.8;
  height: 17.637rem;
}
@media screen and (max-width: 768px) {
  .excel__cardText {
    font-size: 1.4rem;
    letter-spacing: 0;
    height: auto;
  }
}
.excel__cardLink {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 0.5rem 2.4rem 2.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #436FC0;
}
@media screen and (max-width: 768px) {
  .excel__cardLink {
    padding: 0 2.5rem 1.4rem;
  }
}
.excel__cardLink svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Related Section
   ========================================================================== */
.related {
  padding: 0 0 8rem;
}
@media screen and (max-width: 768px) {
  .related {
    padding: 0 1.6rem 6.5rem;
  }
}
.related__inner {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .related__inner {
    padding: 0;
  }
}
.related__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: 3.8rem;
}
@media screen and (max-width: 768px) {
  .related__cards {
    grid-template-columns: 1fr;
    margin-top: 3.7rem;
    gap: 1.5rem;
  }
}
.related__card {
  background-color: #ffffff;
  border: 1px solid #e6e3e1;
  border-radius: 1.2rem;
  overflow: hidden;
  text-decoration: none;
  color: #22254c;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 1.2rem rgba(143, 140, 138, 0.12);
}
.related__cardImg {
  width: 100%;
  aspect-ratio: 382/215;
  object-fit: cover;
}
.related__cardBody {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 2.4rem 3.2rem 0.5rem;
}
@media screen and (max-width: 768px) {
  .related__cardBody {
    padding: 1.6rem 2.5rem 0.7rem;
  }
}
.related__cardTitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.5;
}
.related__cardDate {
  font-size: 1.2rem;
  color: #8f8c8a;
  line-height: 1.8;
}
.related__cardLink {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  padding: 0 3.2rem 2.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #436FC0;
}
@media screen and (max-width: 768px) {
  .related__cardLink {
    padding: 0 2.5rem 1.5rem;
  }
}
.related__cardLink svg {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
}

/* TERMS PAGE
=========================*/
.terms {
  max-width: 103.2rem;
  margin: 0 auto;
  padding: 7.3rem 1.6rem 5.9rem;
}
@media screen and (max-width: 768px) {
  .terms {
    padding: 3.2rem 1.6rem;
  }
}
.terms__title {
  font-size: 4rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .terms__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.terms__section {
  margin-bottom: 2.5rem;
}
.terms__section:nth-child(5) {
  margin-top: 5.5rem;
}
@media screen and (max-width: 768px) {
  .terms__section {
    margin-bottom: 2.4rem;
  }
}
.terms__sectionTitle {
  font-size: 2.2rem;
  font-weight: 700;
  color: #22254c;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .terms__sectionTitle {
    font-size: 1.8rem;
  }
}
.terms__text {
  font-size: 1.6rem;
  color: #22254c;
  line-height: 1.8;
  letter-spacing: 0.015rem;
}
@media screen and (max-width: 768px) {
  .terms__text {
    font-size: 1.4rem;
  }
}
.terms__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.terms__listItem {
  font-size: 1.6rem;
  color: #22254c;
  line-height: 1.8;
  padding-left: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .terms__listItem {
    font-size: 1.4rem;
  }
}
.terms__listItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 0.6rem;
  height: 0.6rem;
  background-color: #22254c;
  border-radius: 50%;
}
.terms__orderedList {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: terms-counter;
}
.terms__orderedItem {
  font-size: 1.6rem;
  color: #22254c;
  line-height: 1.8;
  padding-left: 2.4rem;
  position: relative;
  counter-increment: terms-counter;
}
.terms__orderedItem:not(:last-child) {
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 768px) {
  .terms__orderedItem {
    font-size: 1.4rem;
  }
}
.terms__orderedItem::before {
  content: counter(terms-counter) ".";
  position: absolute;
  left: 0;
}
