@charset "utf-8";

/*----------------------------
    all
----------------------------*/
:root {
  --main-color: #e76226;
  --sub-color: #3fb076;
  --cta-color: #2e2c3e;
  --bg-color: #fafafa;
  --bg-color2: #f7f9fa;
  --border-color: #ebebeb;
  --black: #111;
  --gray: #666;
}
html {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  width: 100%;
  -ms-overflow-style: scrollbar;
}
body {
  color: var(--black);
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.7;
}
.wrap {
  overflow-x: clip;
}
a {
  color: var(--black);
  transition: all 0.5s;
  text-decoration: none;
}
img {
  height: auto;
  max-width: 100%;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none !important;
  }
}

/*----------------------------
    header
----------------------------*/
.header {
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0px 1px 4px 0px #d9d9d980;
  height: 70px;
  transform: translateX(-50%);
  margin: auto;
  max-width: 1100px;
  width: 100%;
  padding: 16px 32px;
  position: fixed;
  top: 25px;
  left: 50%;
  z-index: 99;
}
.header__wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  line-height: 1;
}
.header__logo img {
  vertical-align: middle;
  width: 200px;
}
.header__content {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  width: 100%;
}
.header__nav {
  width: 100%;
}
.header__menu {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  width: 100%;
}
.header__menu li a {
  color: var(--black);
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}
.header__menu li a.active {
  color: var(--main-color);
}
@media (hover: hover) {
  .header__menu li a:hover {
    color: var(--main-color);
  }
}
.header__sub-menu {
  display: none;
}
.header__btn.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  padding: 8px 18px;
  width: 120px;
}
@media screen and (max-width: 1100px) {
  .header__wrap,
  .header__content,
  .header__menu {
    gap: 16px;
  }
}
@media screen and (max-width: 900px) and (min-width: 851px) {
  .header__logo img {
    width: 150px;
  }
}
@media screen and (max-width: 850px) {
  .header {
    border-radius: 0;
    padding: 10px 16px;
    height: 60px;
    top: 0;
  }
  .header__wrap {
    height: 100%;
  }
  .header__content {
    background-color: var(--main-color);
    display: block;
    padding: 32px;
    opacity: 0;
    transition: all 0.5s;
    height: calc(100vh - 60px);
    width: 100%;
    pointer-events: none;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 10;
  }
  .header__content.active {
    opacity: 1;
    pointer-events: auto;
  }
  .header__menu {
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    gap: 28px;
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
  .header__menu li a {
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.01em;
  }
  .header__menu li a.active {
    color: #fff;
  }
  .header__sub-menu {
    display: block;
    margin-bottom: 64px;
  }
  .header__sub-menu li {
    margin-bottom: 16px;
  }
  .header__sub-menu a {
    color: #fff;
  }
  .header__sub-menu span {
    margin-left: 4px;
  }
  .header__btn.btn {
    background-color: var(--black);
    font-size: 1.6rem;
    padding: 16px;
    width: 300px;
  }

  /* ハンバーガー */
  .hamburger {
    cursor: pointer;
    display: block;
    position: relative;
    height: 26px;
    width: 35px;
    z-index: 99;
  }
  .hamburger span {
    display: block;
    margin: auto;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    background: var(--black);
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 12px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2) {
    display: none;
  }
  .hamburger.active span:nth-child(3) {
    top: 10px;
    bottom: auto;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

/*----------------------------
    parts
----------------------------*/
/* inner */
.inner {
  margin: auto;
  max-width: 1100px;
}
@media screen and (max-width: 1100px) {
  .inner {
    padding: 0 24px;
  }
  .section-inner.inner {
    padding: 100px 24px 120px;
  }
}
.section-inner {
  padding: 100px 0 120px;
}
@media screen and (max-width: 768px) {
  .section-inner {
    padding: 64px 0;
  }
  .section-inner.inner {
    padding: 64px 24px;
  }
}

/* btn */
.btn {
  background: var(--black);
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin: auto;
  padding: 18px;
  width: 300px;
}
@media (hover: hover) {
  .btn:hover {
    opacity: 0.5;
  }
}
.sub-btn {
  background-color: var(--main-color);
}

/* title */
.section-title {
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section-title {
    flex-direction: column;
    font-size: 3.2rem;
  }
}
.section-title span {
  color: var(--black);
  font-size: 2rem;
  padding-left: 90px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-title span {
    font-size: 1.6rem;
    padding: 16px 0 0;
    margin-top: 8px;
  }
}
.section-title span::before {
  content: "";
  background-color: var(--main-color);
  display: block;
  transform: rotate(-45deg);
  height: 2px;
  width: 60px;
  position: absolute;
  top: 50%;
  left: 16px;
}
@media screen and (max-width: 768px) {
  .section-title span::before {
    transform: translateX(-50%);
    width: 40px;
    top: 0;
    left: 50%;
  }
}
.card-title {
  color: var(--main-color);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.sub-title {
  background-color: var(--main-color);
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  padding: 16px 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sub-title {
    font-size: 1.6rem;
    padding: 16px 30px;
    margin-bottom: 32px;
  }
}
.border-title {
  color: var(--main-color);
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .border-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
}
.border-title span {
  border-bottom: 2px solid var(--main-color);
  padding-bottom: 2px;
}

/* text */
.lead-text {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .lead-text {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}
.lead-text .small {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .lead-text .small {
    font-size: 1.3rem;
    font-weight: 400;
  }
}
.text-bold {
  font-weight: 700;
}
.text-link {
  color: var(--main-color);
}
@media (hover: hover) {
  .text-link:hover {
    text-decoration: underline;
  }
}

/* row */
.row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}

/* card */
.card {
  width: 100%;
}
.card-type2 {
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .card-type2 {
    padding: 0 0 32px;
  }
}

/* list */
.basic-list {
  line-height: 1.5;
}
.basic-list li {
  font-weight: 500;
  padding-left: 12px;
  text-indent: -12px;
}
.basic-list li::before {
  background: var(--main-color);
  border-radius: 50%;
  content: "";
  display: inline-block;
  margin-right: 4px;
  vertical-align: 2px;
  height: 8px;
  width: 8px;
}
.basic-list li:not(:last-child) {
  margin-bottom: 4px;
}
.attention-list {
  color: var(--gray);
  font-size: 1.5rem;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .attention-list {
    padding: 0 16px;
  }
}
.attention-list li {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

/* background */
.bg-main {
  background-color: var(--main-color);
}
.bg-sub {
  background-color: var(--sub-color);
}
.bg-gray {
  background-color: var(--bg-color);
}
.bg-black {
  background-color: var(--black);
}

/* color */
.main-color {
  color: var(--main-color);
}

/* figure */
.figure-square {
  text-align: center;
  margin-bottom: 8px;
  width: 100%;
}
.figure-square img {
  box-shadow: 0px 4px 4px 0px #00000040;
}
.figure-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .figure-circle img {
    max-width: 280px;
  }
}

/*---------------------------
    FV
----------------------------*/
.fv {
  background: linear-gradient(
    90deg,
    var(--main-color) 0%,
    var(--main-color) 50%,
    #f9f3f3 50%,
    #f9f3f3 100%
  );
  height: auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv {
    background: var(--main-color);
  }
}
.fv__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 680px;
  padding: 150px 0 60px;
  position: relative;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .fv__inner {
    padding-inline: 16px;
  }
}
@media screen and (max-width: 768px) {
  .fv__inner {
    display: block;
    max-height: 800px;
    padding: 90px 24px 60px;
  }
}
@media screen and (max-width: 400px) {
  .fv__inner {
    padding: 90px 16px 60px;
  }
}
.fv__inner::before {
  content: "";
  background-color: #f9f3f3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 25%;
}
@media screen and (max-width: 768px) {
  .fv__inner::before {
    height: 65%;
    width: 180%;
    left: auto;
    right: -90%;
  }
}
.fv__main {
  position: relative;
  z-index: 1;
}
.fv__title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .fv__title {
    gap: 8px;
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.fv__title-label {
  background-color: var(--bg-color);
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .fv__title-label {
    padding: 0 8px;
  }
}
.fv__title-label:last-child {
  font-size: 5.6rem;
}
@media screen and (max-width: 768px) {
  .fv__title-label:last-child {
    font-size: 2.7rem;
  }
}
.fv__title .emphasis {
  color: var(--main-color);
}
@media screen and (max-width: 768px) {
  .fv__title .emphasis {
    font-size: 3rem;
  }
}
.fv_target {
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .fv_target {
    gap: 16px;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
}
.fv_target-item {
  background-color: var(--border-color);
  border-radius: 4px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv_target-item {
    width: calc((100% - 16px) / 2);
  }
  .fv_target-item:last-child {
    width: 100%;
  }
}
.fv_target-title {
  background-color: var(--cta-color);
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  padding: 8px 8px 10px;
}
.fv_target-text {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 12px 24px 16px;
}
@media screen and (max-width: 768px) {
  .fv_target-text {
    padding: 12px 8px 16px;
  }
}
.fv__lead {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  -webkit-text-stroke: 4px var(--main-color);
  text-stroke: 4px var(--main-color);
  paint-order: stroke;
}
@media screen and (max-width: 768px) {
  .fv__lead {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 24px;
  }
}
.fv__btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .fv__btn {
    margin: auto;
  }
}
.fv__img {
  position: absolute;
  right: -7%;
  bottom: 42px;
}
.fv__img img {
  width: 460px;
}
@media screen and (max-width: 768px) {
  .fv__img {
    text-align: center;
    margin-bottom: 24px;
    position: static;
  }
  .fv__img img {
    width: 200px;
  }
}

/*----------------------------
    NEWS
----------------------------*/
.news {
  background-color: var(--bg-color2);
}
.news__list {
  margin-bottom: 40px;
}
.news__contents {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0px 1px 4px 0px #d9d9d980;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  margin-bottom: 16px;
  width: 100%;
}
@media (hover: hover) {
  .news__contents:hover .news__title {
    text-decoration: underline;
  }
}
@media screen and (max-width: 768px) {
  .news__contents {
    flex-wrap: wrap;
    padding: 24px 16px;
  }
}
.news__date {
  color: var(--gray);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.news__category {
  background-color: var(--black);
  border-radius: 4px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 8px;
}
.news__category-case {
  background-color: var(--main-color);
}
.news__title {
  flex: 1;
  font-weight: 700;
  transition: all 0.5s;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-left: 8px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news__title {
    flex: auto;
    margin: 0;
  }
}

/*----------------------------
    SERVICE
----------------------------*/
.service__row {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .service__row {
    gap: 16px;
  }
}
.service__card {
  counter-increment: number;
  padding: 56px 30px 32px;
  margin-top: 24px;
  position: relative;
}
.service__card::before {
  background-color: var(--main-color);
  border-radius: 50%;
  content: "0" counter(number);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin: auto;
  transform: translate(-50%, -100%);
  height: 54px;
  width: 54px;
  position: absolute;
  top: 30px;
  left: 50%;
}
.service__card::after {
  background-color: var(--main-color);
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  transform: translate(-50%, -100%);
  height: 16px;
  width: 16px;
  position: absolute;
  top: 40px;
  left: 50%;
}
.service__card figure {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .service__card figure {
    margin: 0 12px 16px;
  }
}
.service__list {
  padding: 24px;
}
.service__section:first-of-type {
  margin-bottom: 80px;
  position: relative;
}
.service__section:first-of-type::after {
  background-color: var(--main-color);
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  transform: translate(-50%, 100%);
  height: 32px;
  width: 40px;
  position: absolute;
  left: 50%;
  bottom: -24px;
}
.service__content {
  padding: 0 40px 24px;
}
@media screen and (max-width: 768px) {
  .service__content {
    padding: 0 16px;
  }
}
.service__point {
  gap: 32px;
  padding-bottom: 32px;
}

/*----------------------------
    CTA
----------------------------*/
.cta {
  background-color: var(--cta-color);
}
.cta__title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 88px;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 2.4rem;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 400px) {
  .cta__title {
    font-size: 2.2rem;
  }
}
.cta__title span {
  border-bottom: 3px solid var(--main-color);
  padding-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .cta__title span {
    padding-bottom: 16px;
  }
}
.cta__row {
  gap: 30px;
}
.cta__card {
  background-color: #fff;
  border-radius: 4px;
  text-align: center;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta__card {
    padding: 32px 16px;
  }
}
.cta__card:first-child::before {
  background-image: url(../images/cta_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 94px;
  width: 118px;
  position: absolute;
  top: -80px;
  left: 13px;
}
@media screen and (max-width: 768px) {
  .cta__card:first-child::before {
    height: 64px;
    width: 80px;
    top: 6px;
    left: auto;
    right: -11px;
  }
}
.cta__card:last-child::before {
  background-image: url(../images/cta_02.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 115px;
  width: 133px;
  position: absolute;
  top: -106px;
  right: 13px;
}
@media screen and (max-width: 768px) {
  .cta__card:last-child::before {
    display: none;
  }
}
.cta__campaign {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.cta__card-title {
  font-size: 2.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cta__card-title {
    font-size: 2.4rem;
  }
  .cta__card-title .small {
    display: block;
  }
}
.cta__card-title .medium {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .cta__card-title .medium {
    font-size: 2.8rem;
  }
}
.cta__card-title .emphasis {
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .cta__card-title .emphasis {
    font-size: 3.2rem;
  }
}
.cta__text-small {
  font-size: 1.4rem;
}
.cta__contact {
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .cta__contact {
    padding: 0;
  }
}
.cta__contact .cta__card-title {
  font-size: 3.2rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .cta__contact .cta__card-title {
    font-size: 2.4rem;
  }
}
.cta__lead {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .cta__lead {
    font-size: 1.6rem;
    font-weight: 400;
  }
}

/*----------------------------
    CASE
----------------------------*/
.case {
  overflow: hidden;
}
.case .section-title,
.case .section-title span {
  color: #fff;
}
.case .section-title span::before {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .case .swiper {
    margin: 0 -24px;
    width: 100vw;
  }
}
.case__row {
  gap: 40px;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .case__row {
    gap: 0;
    flex-direction: row;
  }
}
.case__card {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 20px 0px #00000026;
  width: calc((100% - 80px) / 3);
  position: relative;
}
@media screen and (max-width: 768px) {
  .case__card {
    margin: 0 0 0 16px;
    width: 100%;
  }
}
@media (hover: hover) {
  .case__link:hover .case__figure img {
    transform: scale(1.02);
    opacity: 0.9;
  }
  .case__link:hover .case__title {
    text-decoration: underline;
  }
}
.case__figure {
  border-radius: 4px 4px 0 0;
  height: 240px;
  overflow: hidden;
}
.case__figure img {
  border-radius: 4px 4px 0 0;
  transition: all 0.5s;
  width: 100%;
}
.case__logo {
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  height: 40px;
  width: 80px;
  position: absolute;
  top: 200px;
  left: 0;
}
.case__text {
  padding: 24px;
}
.case__company {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.case__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1.8rem;
  font-weight: 700;
  transition: all 1.5s;
  overflow: hidden;
}

/* case list */
.case__list {
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .case__list {
    gap: 24px;
  }
  .case__list .case__card {
    margin: 0;
  }
}

/*----------------------------
    INDUSTRY FIT
----------------------------*/
.tab__list {
  gap: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .tab__list {
    flex-direction: row;
  }
}
.tab__item {
  background: #e7622680;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.5s;
  line-height: 1.3;
  padding: 9px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tab__item {
    font-size: 1.4rem;
  }
}
.tab__item.current {
  background: var(--main-color);
  position: relative;
}
.tab__item::after {
  background-color: var(--main-color);
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  transition: all 0.5s;
  transform: translateX(-50%);
  opacity: 0;
  height: 19px;
  width: 24px;
  position: absolute;
  left: 50%;
  bottom: -14px;
}
.tab__item.current::after {
  opacity: 1;
}
.tab__wrap {
  border-radius: 4px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .tab__wrap {
    padding: 32px 24px;
  }
}
.tab__body {
  display: none;
}
.tab__body.current {
  display: block;
}
.tab__content {
  gap: 36px;
}
@media screen and (max-width: 940px) and (min-width: 769px) {
  .tab__content {
    gap: 16px;
    flex-direction: column;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .tab__content {
    gap: 0;
  }
}
.tab__content figure {
  flex-shrink: 0;
  text-align: center;
  padding: 0 15px;
  width: 385px;
}
@media screen and (max-width: 940px) and (min-width: 769px) {
  .tab__content figure {
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .tab__content figure {
    padding: 0;
    margin-bottom: 24px;
    width: 100%;
  }
  .tab__content-text {
    padding: 0 8px;
  }
}
.tab__row {
  gap: 32px;
}
@media screen and (max-width: 940px) and (min-width: 769px) {
  .tab__row {
    gap: 16px;
  }
}
.tab__card {
  background-color: #fff;
  border-radius: 4px;
  padding: 0 20px 32px;
}
@media screen and (max-width: 940px) {
  .tab__card {
    padding: 0 16px 32px;
  }
}
.tab__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
}
.tab__figure img {
  max-width: 220px;
  width: 100%;
}
.tab__card .basic-list {
  margin: auto;
  max-width: 200px;
}

/*----------------------------
    CORE FUNCTIONS
----------------------------*/
.function__image {
  margin: 24px auto 80px;
  max-width: 666px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .function__image {
    margin: 0 0 30px;
  }
}
.function__image + .function__row {
  margin-bottom: 24px;
}
.function__row {
  gap: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.function__card {
  border-radius: 4px;
  padding: 24px 24px 40px;
  position: relative;
  width: calc(100% / 3);
}
@media screen and (max-width: 768px) {
  .function__card {
    padding: 24px 32px 40px;
    width: 100%;
  }
}
.function__card:nth-child(2n + 1) {
  background-color: #fff;
}
.function__card:nth-child(2n) {
  background-color: var(--bg-color2);
}
.function__label {
  background-color: var(--main-color);
  border-radius: 4px;
  color: var(--bg-color);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
  padding: 12px 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .function__label {
    transform: translateX(-8px);
  }
}
.function__figure {
  text-align: center;
  padding: 0 10px;
  margin: 0 auto 16px;
  max-width: 280px;
}
.function__option .sub-title {
  margin: 0;
}

/*----------------------------
    PRICING PLANS
----------------------------*/
@media screen and (max-width: 768px) {
  .pricing__plans .lead-text {
    margin-bottom: 24px;
  }
}
.plan__table {
  table-layout: fixed;
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .plan__table {
    table-layout: auto;
    margin-bottom: 40px;
  }
  .plan__table:last-child {
    margin-bottom: 24px;
  }
}
.plan__table th {
  border-bottom: 1px solid var(--border-color);
  border-radius: 4px 0 0 4px;
  font-weight: 500;
  padding: 16px;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .plan__table th {
    font-size: 1.4rem;
    padding: 8px;
  }
}
.plan__table tr:not(:first-child) th {
  background-color: var(--bg-color2);
}
.plan__table th.space {
  border: none;
  width: 200px;
}
.plan__table th.plan__header {
  border-radius: 4px 4px 0 0;
  border-left: 1px solid #fff;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .plan__table th.plan__header {
    line-height: 1.5;
  }
}
.asterisk {
  color: var(--main-color);
}
.plan__table td {
  border-bottom: 1px solid var(--border-color);
  padding: 24px 16px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .plan__table td {
    font-size: 1.4rem;
    padding: 24px 8px;
  }
  .plan__table tr:nth-child(2) td {
    text-align: left;
  }
}
.plan__cost {
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .plan__table td.plan__cost {
    font-size: 2.4rem;
  }
}
.plan__cost .number {
  font-size: 4rem;
}
.plan__table td.plan__campaign {
  border: 6px solid var(--sub-color);
}
.plan__table td.plan__campaign.dx {
  border-color: var(--main-color);
}
.cancel {
  font-weight: 700;
  text-decoration: line-through;
}
@media screen and (max-width: 768px) {
  .cancel {
    font-size: 1.6rem;
  }
}
.plan__campaign-price {
  color: var(--sub-color);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.plan__campaign-price::before {
  content: "↓";
  color: var(--black);
  display: block;
  font-size: 1.6rem;
  text-align: center;
}
.dx .plan__campaign-price {
  color: var(--main-color);
}
.plan__campaign-price .number {
  font-size: 4rem;
}
.plan__campaign-price .text {
  color: var(--main-color);
  display: block;
  font-size: 2rem;
}
.cross,
.double-circle {
  display: block;
  position: relative;
}
.cross {
  margin: auto;
  padding-top: 36px;
  width: 5em;
}
.cross::before,
.cross::after {
  background-color: var(--black);
  content: "";
  display: block;
  margin: auto;
  transform: rotate(45deg);
  height: 2px;
  width: 30px;
  position: absolute;
  top: 15px;
  left: 25px;
}
@media screen and (max-width: 768px) {
  .cross::before,
  .cross::after {
    left: 20px;
  }
}
.cross::after {
  transform: rotate(135deg);
}
.cross.bold::before,
.cross.bold::after {
  height: 4px;
}
.double-circle::before,
.double-circle::after {
  border: 2px solid var(--main-color);
  border-radius: 50%;
  content: "";
  display: block;
  margin: 0 auto 7px;
  height: 26px;
  width: 26px;
}
.double-circle::after {
  height: 13px;
  width: 13px;
  transform: translate(-50%, 100%);
  position: absolute;
  top: -10.5px;
  left: 50%;
}
.triangle {
  display: block;
}
.triangle::before {
  background-color: var(--black);
  content: "";
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  display: block;
  margin: 0 auto 7px;
  height: 22px;
  width: 26px;
}

/*----------------------------
    footer
----------------------------*/
.footer {
  background-color: #eee;
  padding: 56px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 32px 0;
  }
}
.footer__inner {
  margin-bottom: 32px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    margin-bottom: 56px;
  }
}
.footer__upper {
  margin-top: 16px;
  padding-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .footer__upper {
    margin-top: 24px;
    padding-bottom: 40px;
  }
}
.footer__logo {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    display: block;
    margin: auto;
    width: 280px;
  }
}
.footer__logo img {
  width: 280px;
}
.footer__nav {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__nav {
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 32px;
  }
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .footer__nav ul {
    width: 50%;
  }
  .footer__nav ul:not(:last-child) {
    margin-bottom: 12px;
  }
}
.footer__nav ul a {
  display: flex;
  align-items: center;
}
.footer__nav li {
  display: flex;
}
.footer__nav li a {
  color: var(--black);
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.018em;
}
@media (hover: hover) {
  .footer__nav li a:hover {
    text-decoration: underline;
  }
}
.footer__nav ul a span img {
  margin-left: 4px;
  max-width: 12px;
  width: 100%;
}
.footer__button .btn {
  padding: 12px;
  width: 325px;
}
@media screen and (max-width: 768px) {
  .footer__button .btn {
    padding: 16px;
    margin: auto;
    width: 300px;
  }
}
.footer__lower {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  border-top: 1px solid var(--gray);
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .footer__lower {
    flex-direction: column;
    padding-top: 40px;
  }
}
.footer__lower__small {
  font-size: 1.4rem;
  line-height: 1.5;
}
.footer__lower__big {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.018em;
  margin: 4px 0 8px;
}
@media screen and (max-width: 768px) {
  .footer__lower__big {
    font-size: 1.8rem;
  }
  .footer__lower__big + .footer__lower__small {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }
}
.footer__lower .footer__right {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: fit-content;
}
.footer__logo-mark img {
  width: 50px;
}
.footer__lower .footer__right p {
  max-width: 368px;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .footer__lower .footer__right p {
    font-size: 1.3rem;
  }
}
.footer__copyright {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
}

/*----------------------------
    page
----------------------------*/
.page {
  background-color: var(--bg-color);
  padding: 150px 0 100px;
}
@media screen and (max-width: 768px) {
  .page {
    padding: 120px 0 64px;
  }
}

/*----------------------------
    contact
----------------------------*/
.contact__thanks {
  text-align: center;
  margin-bottom: 40px;
}
.contact__title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.contact__thanks p {
  margin-bottom: 1em;
}

/*----------------------------
    article
----------------------------*/
.article {
  margin: 0 auto 56px;
  max-width: 980px;
}
.article .article_title {
  color: var(--black);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 0 10%;
  margin-bottom: 16px;
  text-align: left;
}
.article .article_label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10%;
}
.line {
  border: solid 1px var(--main-color);
  position: relative;
  width: 100%;
  margin: 40px 0;
}
.line::before {
  content: "";
  background-color: var(--main-color);
  position: absolute;
  left: -2px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 100%;
}
.line::after {
  content: "";
  background-color: var(--main-color);
  position: absolute;
  right: -2px;
  top: -5px;
  width: 9px;
  height: 9px;
  border-radius: 100%;
}
.article_content {
  padding: 0 10%;
  margin-top: 1em;
  margin-bottom: 3em;
}
.article_content p {
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  margin-bottom: 48px;
}
.article figure {
  margin-bottom: 1.8em;
}
.article a {
  color: var(--main-color);
}
.article dd {
  margin-left: 40px;
}
.article ul {
  padding-left: 0;
}
.article ul li,
.article ol li {
  margin: 0.2em;
}
.article ul ul,
.article ul ol,
.article ol ul,
.article ol ol {
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}
.article h1,
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  line-height: 1.25;
  font-weight: bold;
}
.article h4,
.article h5,
.article h6 {
  font-size: 20px;
  padding: 9px 10px;
}
.article h2 {
  font-size: 24px;
  padding: 25px;
}
.article h3 {
  font-size: 22px;
  padding: 12px 20px;
}

@media screen and (max-width: 768px) {
  .article .article_title {
    font-size: 23px;
    line-height: 1.4;
    padding: 0 16px;
  }
  .article .article_label,
  .article_content {
    padding: 0 16px;
  }
  .article_content p {
    font-size: 14px;
    margin-bottom: 35px;
  }
  .article h2,
  .article h3,
  .article h4,
  .article h5,
  .article h6 {
    padding: 0.6em;
  }
  .article h2 {
    font-size: 2rem;
    padding: 0.6em 0.8em;
  }
  .article h3 {
    font-size: 1.8rem;
  }
  .article h4,
  .article h5,
  .article h6 {
    font-size: 1.6rem;
  }
}
/* article case */
.article_eyecatch {
  aspect-ratio: 16 / 9;
  margin: 0 10% 1.8em;
}
.article_eyecatch img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.article_case .case_company {
  padding: 0 10%;
}
.article_case .company_logo {
  margin: 0;
}
.company_logo img {
  width: 100px;
}
.article_case h2 {
  font-size: 2.4rem;
  line-height: 1.4;
  padding: 0 0 40px;
}
.article_case h3 {
  color: var(--main-color);
  font-size: 1.8rem;
  line-height: 1.7;
  padding: 0 0 20px 60px;
  position: relative;
}
.article_case h3::before {
  background-color: var(--gray);
  content: "";
  display: inline-block;
  height: 1px;
  width: 40px;
  position: absolute;
  top: 16px;
  left: 0;
}
.article_case h3 + p {
  line-height: 2;
  padding: 0 0 0 60px;
}

@media screen and (max-width: 768px) {
  .article_eyecatch {
    margin: 0 16px 24px;
  }
  .article_case .case_company {
    padding: 0 16px;
  }
  .article_case h2 {
    font-size: 2rem;
  }
  .article_case h3 {
    font-size: 1.6rem;
    padding: 0 0 16px 30px;
  }
  .article_case h3::before {
    width: 20px;
  }
  .article_case h3 + p {
    padding: 0 0 0 30px;
  }
}
