/*---------------------------------------------------------
Theme Name: yaritori
Description: Theme for yaritori
Author: Onebox
---------------------------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: bold;
  font-display: swap;
}

:root {
  --bg-color: #edf6ff;
  --link-color: #3f82f9;
  --main-color: #4984f2;
  --text-color: #333;
  --delivery-main-color: #3f81f9;
  --delivery-bg-color: #edf6ff;
  --delivery-text-color: #333;
  --delivery-bg-color-cta: #fef6f1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  color: var(--text-color);
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}

body.bg-color {
  background-color: var(--bg-color);
}

img {
  height: auto;
}

a {
  transition: all 0.3s;
}

p > a {
  color: var(--link-color);
}

time {
  display: block;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.fadeInEffect,
.fadeUpEffect,
.fadeLeftEffect {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeUp {
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fadeLeft {
  animation-name: fadeLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mvTextAnimation {
  animation-name: mvTextAnimation;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s;
}
@keyframes mvTextAnimation {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.delay-time01 {
  animation-delay: 0.4s;
}

.delay-time02 {
  animation-delay: 0.8s;
}

.delay-time03 {
  animation-delay: 1.2s;
}

.delay-time04 {
  animation-delay: 1.6s;
}

.text-bold {
  font-weight: bold;
}

/*--------------------------------
wp-block
---------------------------------*/
.wp-block-table table {
  display: table;
  border-collapse: collapse;
}
.wp-block-table tr,
.wp-block-table td {
  font-size: 16px;
  line-height: 2;
  border: 1px solid #000;
}

.wp-block-table.mail-template tr,
.wp-block-table.mail-template td {
  padding: 1.5rem 2rem;
  border: solid 2px #969696;
}

.wp-block-image {
  margin-bottom: 1.5rem;
}
.post_body .wp-block-btn__link,
.post_body .wp-block-btn__link:active,
.post_body .wp-block-btn__link:focus,
.post_body .wp-block-btn__link:hover,
.post_body .wp-block-btn__link:visited {
  color: #fff;
}

/*--------------------------------
レイアウト
---------------------------------*/
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.main-contents {
  overflow-x: hidden;
}

.page-contents {
  padding: 56px 0 80px;
}

.page-contents--pt-lg {
  padding: 120px 0 80px;
}

/*--------------------------------
見出し
---------------------------------*/
.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading__title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: bold;
}

.section-heading__title._plan {
  display: inline-flex;
  justify-content: center;
  position: relative;
}

.section-heading__title._plan::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -21px;
  background-image: url(./img/icon_plan-title-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: inline-block;
  width: 35px;
  height: 50px;
}
@media screen and (max-width:767px) {
  .section-heading__title._plan::before {
    left: -20px;
    top: -17px;
    width: 25px;
    height: 40px;
  }
}

.section-heading__title > span {
  color: var(--main-color);
}

.section-heading__lead {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 16px;
}

.section-heading__lead > span {
  color: var(--main-color);
  font-weight: bold;
}

.section-heading__inner {
  padding: 0 40px;
}

/*--------------------------------
ボタン
---------------------------------*/
.btn {
  position: relative;
  height: 60px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  width: 260px;
  padding: 1.2em;
  color: #fff;
  background-color: #f25816;
  box-shadow: 0px 8px 32px 0px rgba(242, 88, 22, 0.4);
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #fff;
}

.btn:hover {
  text-decoration: none;
  transform: scale(0.96);
}

.btn--type01 > a:hover {
  color: #fff !important;
}

.btn--type02 {
  color: #f26417 !important;
  background-color: #fff;
}

.btn--type02::after {
  border-left: 4px solid #f26417;
}

.btn--type02 > a:hover {
  color: var(--main-color) !important;
}

.btn--type03 {
  background-color: #fff;
  box-shadow: 0px 8px 32px 0px rgba(73, 132, 242, 0.5);
  color: var(--main-color);
  padding: 12px 40px;
  height: auto;
  min-width: 176px;
  width: auto;
  font-weight: normal;
}

.btn--type03::after {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid var(--main-color);
}

.btn-cta {
  text-align: center;
}

.btn-cta__eyecatch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5em;
  font-size: 12px;
  font-weight: bold;
  color: #f26417;
}

.btn-cta__eyecatch::before,
.btn-cta__eyecatch::after {
  background-color: #f26417;
  border-radius: 2px;
  content: "";
  height: 2px;
  width: 20px;
}
.btn-cta__eyecatch::before {
  margin-right: 10px;
  transform: rotate(60deg);
}

.btn-cta__eyecatch::after {
  margin-left: 10px;
  transform: rotate(-60deg);
}

.btn-cta__subtitle {
  display: block;
  font-size: 12px;
}

.btn-cta__title {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.btn-cta02 .btn-cta__eyecatch::before,
.btn-cta02 .btn-cta__eyecatch::after {
  background-color: var(--main-color);
}

.btn-cta02 .btn {
  color: var(--main-color) !important;
  border: 2px solid var(--main-color);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ボタンの色反転 */
.cta .btn-cta__eyecatch {
  color: #fff;
}

.cta .btn-cta__eyecatch::before,
.cta .btn-cta__eyecatch::after {
  background-color: #fff;
}

.cta .btn {
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
}

.cta .btn--type02 {
  color: #f25816 !important;
  background-color: #fff;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.2);
}

.fixed-area {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 16px;
  background: white;
}

.fixed-area-btn {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 1em 72px;
  color: #fff !important;
  background: linear-gradient(180deg, #ff9255 0%, #f25816 100%);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

/*--------------------------------
ラベル
---------------------------------*/
.label {
  display: inline-block;
  font-size: 12px;
  /* width: 100px; */
  text-align: center;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  background-color: var(--main-color);
}

.label-news {
  font-size: 12px;
  width: 120px;
  text-align: center;
  color: var(--text-color);
  padding: 5px;
  border-radius: 2px;
  background-color: #f4f4f4;
}

.label-article {
  font-size: 12px;
  text-align: center;
  color: #fff;
  padding: 6px;
  border-radius: 4px;
  background-color: var(--main-color);
}

/*--------------------------------
特長レイアウト
---------------------------------*/
.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 8%;
}

.feature__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.feature__img._03 {
  aspect-ratio: 174/213;
  width: 174px;
}

.feature__img img {
  width: 100%;
  height: 100%;
  /* height: auto; */
}

.feature__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}

.feature_text {
  font-size: 16px;
  line-height: 1.8;
}

/*--------------------------------
カード型レイアウト
---------------------------------*/
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.cards--sm {
  gap: 24px;
}

.cards--sm .card__body {
  padding: 16px;
}

.cards--sm .card__title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}

.card {
  /* border-radius: 10px; */
  overflow: hidden;
  z-index: 1;
}

.card__link {
  overflow: hidden;
}

.card__thumb {
  overflow: hidden;
  text-align: center;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid #eee;
  border-radius: 10px;
}

.card__thumb > img {
  width: 100%;
  transition: 0.3s;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.card__body {
  padding: 24px;
}

.card__label {
  margin-bottom: 8px;
}

.card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.card__desc {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
}

.card__btn {
  margin-top: auto;
  padding: 0 20px 20px 20px;
}

.card__btn .btn {
  width: 100%;
  box-shadow: 0px 6px 16px 0px rgba(242, 88, 22, 0.4);
}

.card__company {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: bold;
  color: #757578;
}

.card__company-info {
  margin-top: 8px;
  font-size: 14px;
}

.card__company-info p {
  margin-bottom: 2px;
  line-height: 1.4;
}

.card__company-label {
  display: inline-block;
  width: 60px;
  background-color: #f4f4f4;
  text-align: center;
  font-size: 10px;
  padding: 4px;
  margin-right: 1em;
}

.cards--col4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cards--col4 .card__title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}

.cards--icon-link .card__body {
  padding: 16px 0;
}

.cards--icon-link .card {
  position: relative;
}

.card__link:hover .card__thumb > img {
  transform: scale(1.05);
}

.card__link--no-scale:hover .card__thumb > img {
  transform: scale(1);
}

/*--------------------------------
コンテンツ途中のCTAエリア
---------------------------------*/
.section-cta {
  background-color: #fff6f1;
  padding: 64px 0;
}

.section-cta--bgimage {
  background-image: url(img/bg_cta.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section-cta--p-sm {
  padding: 40px 0;
}

.cta-box__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 5%;
}

.cta-box__body {
  flex: 1;
}

.cta-box__img {
  flex: 0 1 36%;
}

.cta-box__heading {
  margin-bottom: 32px;
}

.cta-box__heading._marginSmall {
  margin-bottom: 24px;
}

.cta-box__title {
  font-size: 28px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  word-break: auto-phrase;
}

.cta-box__title._orange {
  color: #F25816;
}

.cta-box__title._lg {
  font-size: 32px;
}
@media screen and (max-width:767px) {
  .cta-box__title._lg {
    font-size: 24px;
  }
}

.cta-box__lead {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-box__lead-main {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width:767px) {
  .cta-box__lead-main {
    font-size: 18px;
  }
}

.cta-box__lead-sub {
  text-align: center;
  color: #757578;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width:767px) {
  .cta-box__lead-sub {
    font-size: 14px;
  }
}

.cta-box__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  row-gap: 16px;
  flex: 0 1 64%;
}

.cta-box__items {
  margin-top: 112px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 21px;
}
@media screen and (max-width:900px) {
  .cta-box__items {
    grid-template-columns: 1fr;
    gap: 100px;
  }
}

.cta-box__item {
  border-radius: 12px;
  background: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
  padding: 91px 32px 32px;
  position: relative;
}
@media screen and (max-width:900px) {
  .cta-box__item {
    padding: 51px 16px 32px;
  }
}

.cta-box__item-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media screen and (max-width:767px) {
  .cta-box__item-title {
    font-size: 20px;
    margin-bottom: 18px;
  }
}

.cta-box__item-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.cta-box__item-img._01 {
  top: -74px;
  max-width: 213px;
}
@media screen and (max-width:1024px) {
  .cta-box__item-img._01 {
    max-width: 163px;
  }
}

.cta-box__item-img._02 {
  top: -58px;
  max-width: 205px;
}
@media screen and (max-width:1024px) {
  .cta-box__item-img._02 {
    max-width: 163px;
  }
}

.cta-box__item-img img {
  width: 100%;
  object-fit: cover;
}

.cta-box__btns--lg .btn {
  width: 400px;
}

.cta-box__img img {
  width: 100%;
  height: auto;
}

.cta-box__message {
  /* max-width: 830px; */
  max-width: 949px;
  margin-inline: auto;
}

.cta-box__message img {
  width: 100%;
  height: auto;
}

.cta-box--inside {
  background-color: #fff6f1;
  /* padding: 16px 24px 48px 24px; */
  padding: 80px 0 64px;
  /* border-radius: 10px; */
  /* max-width: 1000px; */
  /* margin-inline: auto; */
  overflow: hidden;
  position: relative;
}

.cta-box__deco {
  position: absolute;
}
@media (max-width: 767px) {
  .cta-box__deco {
    display: none;
  }
}

.cta-box__deco._left {
  left: 0;
  bottom: 0;
  width: 209px;
  height: 249px;
}

.cta-box__deco._right {
  right: 0;
  top: 0;
  width: 289px;
  height: 267px;
}
@media screen and (max-width: 1240px) {
  .cta-box__deco._right {
    width: 144.5px;
    height: 133.5px;
  }
}

.cta-box--inside::after {
  right: -162px;
  top: -125px;
  width: 226;
  height: 195.5px;
  background-image: url(./img/deco_cta-box-right.webp);
}
@media screen and (max-width:1240px) {
  .cta-box__deco._right {
    width: 144.5px;
    height: 133.5px;
  }
}

.section-cta--bgimage .cta-box__title,
.section-cta--bgimage .btn-cta__eyecatch {
  color: #fff;
}

.section-cta--bgimage .btn-cta__eyecatch::before,
.section-cta--bgimage .btn-cta__eyecatch::after {
  background-color: #fff;
}

/* 絞り込み検索 */
#search-result .card {
  animation-name: search-fadein;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

@keyframes search-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*--------------------------------
ページネーション
---------------------------------*/
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  text-align: center;

  column-gap: 10px;
  row-gap: 10px;
}

.pagination .page-numbers {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 40px;
  color: #333;
  border: 1px solid #c5c5c5;
  border-radius: 3px;
  text-decoration: none;
}

.pagination .current {
  font-weight: bold;
  font-weight: normal;
  color: #fff;
  border: 1px solid var(--main-color);
  background-color: var(--main-color);
}

.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  font-size: 13px;
  width: 60px;
}

/*--------------------------------
サブヘッダー
---------------------------------*/
.sub-header {
  padding-top: 24px;
  background-color: #fff;
}

.single-post .sub-header {
  display: none;
}

.sub-header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.sub-header__list {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
}

.sub-header__list li {
  font-size: 13px;
  font-weight: bold;
  color: #757578;
}

.sub-header__list a {
  padding: 8px;
}

.sub-header__list a:hover {
  color: var(--main-color);
}

.sub-header__tel {
  background-image: url(img/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 1.3em;
}

.sub-header__tel > a {
  cursor: initial;
  pointer-events: none;
}

.sp-gnav-sub-header {
  display: none;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  position: sticky;
  top: 0;
  transition: all 0.3s;
  z-index: 99;
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  padding: 0 40px;
  margin: 0 auto;
}

.no-header-footer.header {
  position: static;
}

.header__logo {
  width: 160px;
  margin-right: 25px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__cta {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.header__cta .btn {
  height: 46px;
  width: 220px;
  box-shadow: 0px 2px 12px 0px rgba(242, 88, 22, 0.4);
}

.header__cta .btn-cta__title {
  font-size: 14px;
}

.gnav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}

.gnav__list .btn:not(:last-child) {
  margin-right: 8px;
}

.gnav__list a {
  font-size: 14px;
  padding: 8px;
  font-weight: bold;
  text-decoration: none;
}

.gnav__list a:hover {
  color: var(--main-color);
}

.gnav__list .gnav__btn:not(:last-child) {
  margin-right: 8px;
  margin-left: 8px;
}

.gnav__btn > a {
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  padding: 1em 1.3em;
}

.gnav__btn > a:hover {
  text-decoration: none;
  transform: scale(0.95);
}

.gnav__btn--type01 > a {
  color: #fff !important;
  background: linear-gradient(180deg, #ff9255 0%, #f25816 100%);
}

.gnav__btn--type01 > a:hover {
  color: #fff !important;
}

.gnav__btn--type02 > a {
  color: var(--main-color) !important;
  border: 2px solid var(--main-color);
  background-color: #fff;
}

.gnav__btn--type02 > a:hover {
  color: var(--main-color) !important;
}

.btn-menu {
  display: none;
}

/*グロナビの下層表示*/
.menu-item-has-children {
  display: block;
  position: relative;
}

.gnav__list .menu-item-has-children {
  margin-right: 16px !important;
}

.gnav__list .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: -6px;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #333;
}

.gnav__list .menu-item-has-children > a:hover::before {
  border-top: 4px solid var(--main-color);
}

.gnav__list .menu-item-has-children .sub-menu {
  position: absolute;
  left: 0;
  top: 24px;
  z-index: 4;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  padding: 18px 4px;
  border-radius: 8px;
  box-shadow: 2px 5px 20px -10px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
}

.gnav__list .menu-item-has-children .sub-menu li {
  width: 100%;
  margin-right: 0;
}

.gnav__list .menu-item-has-children .sub-menu a {
  padding: 8px 18px;
  display: inline-block;
  font-weight: normal;
}

.gnav__list .menu-item-has-children .sub-menu li.ex-link a {
  background-image: url(img/icon_external-link.svg);
  background-repeat: no-repeat;
  background-position: 92% center;
  background-size: 16px;
  padding-right: 2.2em;
}

/*hoverしたら表示*/
.gnav__list .menu-item-has-children:hover > .sub-menu,
.gnav__list .menu-item-has-children:active > .sub-menu {
  visibility: visible;
  opacity: 1;
}

.single-post .header .menu-item:not(.gnav__btn) {
  display: none;
}

/*--------------------------------
下層ページヘッダー
---------------------------------*/
.page-header {
  background-color: var(--bg-color);
}

.page-header__inner {
  background-image: url(img/bg_page-header-light.svg);
  background-position: 98% center;
  background-size: 522px 281px;
  background-repeat: no-repeat;
}

.page-header__body {
  padding: 72px 0;
  position: relative;
}

.page-header__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
}

.page-header__subtitle {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
  word-break: auto-phrase;
}

.page-header__lead {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  margin-top: 16px;
}

.page-header__btn {
  text-align: center;
  margin-top: 16px;
}

.page-header .breadcrumb {
  position: absolute;
  top: 16px;
  left: 0;
}

/* 機能ページ用ヘッダー */
.page-header2 {
  background-image: url(img/bg_page-header-gradient.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.page-header2 .breadcrumb {
  position: absolute;
  top: 16px;
  left: 0;
}

.page-header2__inner {
  background-image: url(img/func-title-screen.webp),
    url(img/func-title-text2.webp), url(img/func-title-text1.webp);
  background-repeat: no-repeat;
  background-size: 360px 280px, 204px 204px, 204px 204px;
  background-position: calc(50% - 400px) 32%, calc(50% - -490px) 60%,
    calc(50% - -331px) 1%;
}

.page-header2__body {
  padding: 40px 0 56px;
}

.page-header2__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
}

.page-header2__subtitle {
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
}

.page-header2__lead {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  margin-top: 12px;
  color: #fff;
}

.page-header2__btn {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  display: flex;
  column-gap: 24px;
}

.page-header2-btn {
  width: 320px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  line-height: 1;
  padding: 20px;
  position: relative;
}

.page-header2-btn::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #fff;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.page-header2-btn:hover {
  transform: scale(0.95);
}

.page-header2-btn--type01 {
  background-color: #f25816;
  box-shadow: 0px 8px 32px 0px #f2581680;
  color: #fff;
}

.page-header2-btn--type02 {
  background-color: #fff;
  box-shadow: 0px 8px 32px 0px #f2581680;
  color: #f25816;
}

.page-header2-btn--type02::after {
  border-color: transparent transparent transparent #f25816;
}

.page-header2__screen {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 280px;
  height: 200px;
}

.page-header2__text1 {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 280px;
  height: 200px;
}
.page-header2__text2 {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 280px;
  height: 200px;
}

/*--------------------------------
パンくずリスト
---------------------------------*/
.breadcrumb__inner {
  font-size: 12px;
}

.breadcrumb .current-item {
  opacity: 0.6;
}

.breadcrumb__list {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb__list a {
  margin-right: 0.5em;
}

.breadcrumb__list span:nth-child(n + 2) span {
  margin-left: 1.3em;
}

.breadcrumb__list span:nth-child(n + 2) {
  position: relative;
}

.breadcrumb__list span:nth-child(n + 2):before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  border-style: solid;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin: 0.1em;
}

.breadcrumb-wrapper {
  padding: 16px 0;
}

.breadcrumb-wrapper--white {
  color: var(--text-color);
}

.breadcrumb-wrapper--white span:nth-child(n + 2):before {
  border-color: var(--text-color);
}

/*--------------------------------
メインビジュアル
---------------------------------*/
.mv {
  background-image: url(img/bg_grad.webp);
  background-repeat: no-repeat;
  background-position: -30% 60%;
  background-size: 40%;
}

.mv__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 56px 40px 32px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 5%;
}

.mv__inner-2 {
  background-image: none;
  display: flex;
  justify-content: space-around;
  padding: 5px 0 90px 56px;
}

.mv__inner-2 #mv__body {
  width: 50%;
}

.mv__inner-2 #mv__body .btn-cta {
  text-align: left;
}

.mv__inner-2 #mv__body .btn-cta img {
  width: 66%;
}

.mv__body {
  flex: 1;
}

.mv__desc {
  flex: 0 1 62%;
}

.mv__video {
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 0px 18px 8px rgba(0, 0, 0, 0.08);
}

.mv__subcatch {
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 0.4em;
}

.mv__subcatch span {
  font-size: 1.4em;
}

.mv__title {
  font-weight: bold;
  font-size: clamp(18px, 3.6vw, 40px);
  line-height: 1.4;
  word-break: auto-phrase;
}

.mv__title-2 {
  font-size: clamp(18px, 3vw, 52px);
}

.mv-title-num {
  color: var(--main-color);
  font-size: 1.5em;
  vertical-align: -10px;
  line-height: 1;
  display: inline-block;
  background: linear-gradient(0deg, #4984f2 0%, #58bce7 63%, #57b9d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv-title-ruby {
  color: var(--main-color);
  display: block;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  margin-bottom: -3px;
}

.mv__subtitle {
  font-size: 16px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  margin-top: 1em;
}

.mv__subtitle-2 {
  font-size: clamp(15px, 1vw, 18px);
}

.mv__subtitle > span {
  color: var(--main-color);
  font-weight: bold;
}

.mv__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 1em;
}

.mv__cta {
  display: flex;
  align-items: center;
  margin-top: 40px;
  column-gap: 16px;
  row-gap: 16px;
}

.mv__cta-2 {
  width: 100%;
}

.mv__cta > .btn {
  width: 100px;
}

.mv__sp-cta {
  display: none;
}

/*--------------------------------
導入企業ロゴスライダー
---------------------------------*/
.user-company-logo {
  padding: 72px 0;
}

.user-company-logo__heading {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  word-break: auto-phrase;
}

.user-company-logo__heading span {
  color: var(--main-color);
}

.user-company-logo__heading > span > span {
  font-size: 1.5em;
}

.user-company-logo__body {
  width: fit-content;
  margin-inline: auto;
}

.user-company-logo__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
  row-gap: 24px;
}

.user-company-logo__item {
  width: 140px;
  text-align: center;
}

.user-company-logo__logo {
  max-width: 140px;
  object-fit: contain;
  height: 40px;
}

@keyframes logo-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes logo-loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*--------------------------------
こんなお悩みありませんか？
---------------------------------*/
.problem {
  position: relative;
  padding: 80px 0;
  background-image: url(img/bg_problem.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
}

.problem__heading {
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  word-break: auto-phrase;
}

.problem__heading > span {
  color: var(--main-color);
  font-weight: bold;
}

.problem__list {
  max-width: 750px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.problem__balloon {
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  background-color: #ffffff;
  padding: 0 24px;
  box-shadow: 0px 0px 32px 6px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------
yaritoriが解決します！
---------------------------------*/
.top-function {
  margin-inline: auto;
  padding: 100px 40px 90px;
  background-image: url(img/bg_grad2.webp);
  background-repeat: no-repeat;
  background-position: center 8px;
}

.top-function__heading {
  text-align: center;
  margin-bottom: 50px;
}

.top-function__title {
  font-size: 32px;
  font-weight: bold;
  word-break: auto-phrase;
}

.top-function__title img {
  vertical-align: text-bottom;
}

.top-function__title > span {
  font-size: 1.5em;
  color: var(--main-color);
}

.top-function__desc {
  font-size: 24px;
  margin-top: 32px;
  line-height: 1.6;
}

.top-function__mv {
  text-align: center;
  margin-bottom: 120px;
  margin-inline: auto;
}

.top-function__mv-img {
  max-width: 840px;
  width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

.point {
  max-width: 790px;
  margin: 0 auto;
}

.point__body {
  margin-bottom: 40px;
}

.point__list {
  display: grid;
  row-gap: 120px;
}

.point__subtitle {
  font-size: 12px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 4px;
}

.point__title {
  font-size: 40px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0.4em;
}

.point__text {
  font-size: 16px;
  line-height: 1.7;
}

.point__video {
  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 0px 18px 8px rgba(0, 0, 0, 0.08);
}

.point__btn {
  text-align: center;
  margin-top: 60px;
}

.top-function__btn {
  text-align: center;
  margin-top: 56px;
}

/*--------------------------------
yaritoriが選ばれる理由
---------------------------------*/
.reason {
  padding: 128px 40px;
  background-image: url(img/bg_grad3.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

/*--------------------------------
料金プラン（TOP）
---------------------------------*/
.top-plan {
  background-color: #fafafa;
  padding: 54px 0;
}

.top-plan .section-heading {
  margin-bottom: 24px;
}

.top-plan-price__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.top-plan-price__sub {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #3F82F9;
}
@media screen and (max-width:767px) {
  .top-plan-price__sub {
    font-size: 20px;
  }
}

.top-plan-price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 16px;
  margin-bottom: 20px;
}

.top-plan-price__lead {
  text-align: center;
  color: #3F82F9;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 4.245px;
  line-height: 1.2;
}

.top-plan-price__user {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.top-plan-price__label {
  display: block;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 16px;
}

.top-plan-price__num {
  font-size: 90px;
  font-weight: bold;
  background: linear-gradient(0deg, #4984f2 0%, #58bce7 63%, #57b9d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 6px;
}

.top-plan-price__unit {
  font-size: 46px;
  margin-left: 8px;
}

.top-plan-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  max-width: 750px;
  margin-inline: auto;
}
@media screen and (max-width:767px) {
  .top-plan-feature {
    grid-template-columns: 1fr;
  }
}

.top-plan-feature-box {
  padding: 0;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width:767px) {
  .top-plan-feature-box {
    padding: 14px 0;
  }
}

.top-plan-feature-box__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1.4;
}

.top-plan-feature-box__desc {
  font-size: 48px;
  font-weight: bold;
  background: linear-gradient(0deg, #4984f2 0%, #58bce7 63%, #57b9d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-plan-feature-box__desc span {
  font-size: 0.6em;
}

.top-plan-feature-box__figure {
  width: 150px;
  aspect-ratio: 1;
}

.top-plan-feature-box__figure img {
  width: 100%;
  object-fit: cover;
}

.top-plan__body {
  max-width: 1060px;
  margin-inline: auto;
  background-color: #fff;
  padding: 24px 40px;
}

.top-plan__btn {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 42px;
}
@media screen and (max-width:767px) {
  .top-plan__btn {
    margin-bottom: 60px;
  }
}

/*--------------------------------
コスト削減（TOP）
---------------------------------*/
.top-cost {
  background-color: #EDF6FF;
  padding: 64px 0;
}

.top-cost__desc {
  max-width: 1060px;
  margin-inline: auto;
}

.top-cost__desc img {
  width: 100%;
  height: auto;
}

.top-cost__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 767px) {
  .top-cost__items {
    grid-template-columns: 1fr;
  }
}

.top-cost__item {
  padding: 20px 40px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .top-cost__item {
    padding: 20px 20px;
  }
}

.top-cost__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-cost__title .text {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .top-cost__title .text {
    font-size: 21px;
  }
  .top-cost__title svg {
    width: 24px;
  }
}

.top-cost__title svg {
  position: relative;
  transform: translateY(1px);
}

.top-cost__result {
  text-align: center;
  margin-bottom: 16px;
}

.top-cost__result .sm {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.top-cost__result .sm-colored {
  color: #3F82F9;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.top-cost__result .lg-colored {
  color: #3F82F9;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}

.top-cost__figure {
  max-width: 210px;
  margin-inline: auto;
  position: relative;
}

.top-cost__figure .circle-icon {
  position: absolute;
  top: 5px;
  right: -50px;
  width: 105px;
  object-fit: cover;
}
@media screen and (max-width:767px) {
  .top-cost__figure .circle-icon {
    right: -35px;
    width: 97px;
  }
}

.top-cost__figure img {
  width: 100%;
  object-fit: cover;
}

.top-cost__figure-info {
  margin: 15px auto 0;
  max-width: 294px;
  display: flex;
  justify-content: space-between;
  padding: 0 13px;
}

.top-cost__figure-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.top-cost__figure-item .top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-cost__figure-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 27px;
  border: 1px solid #243446;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
}

.top-cost__figure-tag._sm {
  width: 91px;
}

.top-cost__figure-tag._sm .md {
  font-size: 11px;
}

.p-top-cost__figure-result {
  display: flex;
  align-items: flex-end;
  font-weight: 700;
  line-height: 1.5;
  margin-top: -4px;
}


.p-top-cost__figure-result._colored {
  color: #3F82F9;
}

.p-top-cost__figure-result .sm {
  font-size: 13.5px;
  transform: translateY(-5px);
}
.p-top-cost__figure-result .lg {
  font-size: 24.6px;
}

.top-cost__figure-tag .wrap {
  display: flex;
  align-items: flex-end;
  transform: translateY(-4px);
}
.top-cost__figure-tag .sm {
  font-size: 10px;
}
.top-cost__figure-tag .md {
  font-size: 12px;
}
.top-cost__figure-tag .lg {
  font-size: 17.67px;
  transform: translateY(2px);
}

.top-cost__figure-tag._colored {
  color: #3F82F9;
  border: 1px solid #3F82F9;
}

.top-cost__figure-desc {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-cost__figure-desc .icon {
  flex: 0 0 82px;
  width: 82px;
  object-fit: cover;
}

.top-cost__figure-desc .text {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.top-cost__annotation {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width:767px) {
  .top-cost__annotation {
    font-size: 12px;
  }
}

/*--------------------------------
契約の流れ
---------------------------------*/
.intro {
  padding: 90px 40px;
}

.flow {
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.flow__list {
  counter-reset: flow-number 0;
}

.flow__item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 60px;
  padding-top: 4px;
}

.flow__item:last-child {
  padding-bottom: 0;
}

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

.flow__item:after {
  position: absolute;
  top: 0;
  left: -24px;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  counter-increment: flow-number 1;
  content: counter(flow-number) " ";
}

.flow__item:last-child:before {
  border-left: none;
}

.flow__title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--main-color);
}

.flow__desc {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
}

.flow__desc > span {
  font-size: 0.8em;
  color: var(--main-color);
}

/*--------------------------------
万全のサポート体制
---------------------------------*/
.support {
  padding: 64px 40px;
  background-color: var(--bg-color);
}

.support__inner {
  max-width: 1260px;
  margin-inline: auto;
  padding: 56px 72px;
  background-color: #fff;
  border-radius: 16px;
}

.support .section-heading {
  text-align: left;
  font-size: 32px;
}

.support-list .card__title {
  font-size: 21px;
}

.support .feature__img {
  width: 184px;
}

.support__btn {
  text-align: center;
  margin-top: 40px;
}

/*--------------------------------
導入事例（TOP）
---------------------------------*/
.bg-grad-block {
  background-image: url(img/bg_grad4.webp);
  background-repeat: no-repeat;
  background-position: -16% 87%;
  background-size: 50%;
}

.top-cases {
  padding: 90px 0;
}

.top-cases__btn {
  text-align: center;
  margin-top: 40px;
}

/*--------------------------------
お知らせ
---------------------------------*/
.top-news {
  border-radius: 40px 0 0 0;
  max-width: 1400px;
  margin-left: 5%;
  padding: 72px 56px 40px;
  background-color: #fff;
}

.top-news__inner {
  display: flex;
  column-gap: 64px;
}

.top-news .section-heading {
  flex: 0 1 300px;
  text-align: left;
}

.top-news .section-heading__title {
  font-weight: normal;
  color: var(--main-color);
}

.top-news .section-heading__subtitle {
  font-size: 12px;
  margin-top: 4px;
}

.top-news__side-btn {
  margin-top: 32px;
}

.news-box {
  flex: 1;
}
.news-box__item {
  border-bottom: 1px dotted #eeeeee;
}

.news-box__item:last-child {
  margin-bottom: 0;
}

.news-box__link {
  display: flex;
  font-size: 15px;
  text-decoration: none;
  color: var(--text-color);
  transition: all 0.3s;
  padding: 24px 0;
}

.news-box__link:hover {
  text-decoration: none;
  opacity: 0.8;
}

.news-box__info {
  display: flex;
}

.news-box__date {
  color: var(--text-color);
  margin-right: 1em;
  line-height: 1.5;
  width: 90px;
}

.news-box__cat {
  display: inline-block;
  margin-right: 1em;
}

.news-box__title {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-color);
}

.top-news__btn {
  display: none;
  text-align: center;
  margin-top: 40px;
}

.navigation {
  margin-top: 40px;
}

.news {
  margin-bottom: 80px;
}

.news__header {
  margin-bottom: 40px;
}

.news__article {
  max-width: 800px;
  margin: 0 auto;
}

.news__title {
  font-size: 32px;
  line-height: 1.6;
  font-weight: bold;
}

.news__info {
  margin-top: 16px;
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.news__date {
  display: block;
}

.news__body h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 2.5em;
  padding: 0.8em 0.8em 0.8em 1.4em;
  margin-bottom: 1.2em;
  background-color: var(--bg-color);
  border-radius: 6px;
}

.news__body h2:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  border-radius: 6px 0 0 6px;
  background-color: var(--main-color);
  content: "";
}

.news__body h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
  padding-top: 2.5em;
  padding-bottom: 0.6em;
  margin-bottom: 1.2em;
}

.news__body h4 {
  margin-top: 2em;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1em;
}

.news__body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5em;
}

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

.news__body ul,
.news__body ol {
  list-style: auto;
  padding-left: 1.3em;
  margin-bottom: 1em;
}

.news__body ul li,
.news__body ol li {
  line-height: 1.7;
  margin-bottom: 0.2em;
}

/* .news__body h2 {
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: bold;
}

.news__body h3 {
  font-weight: bold;
}

.news__body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1.5em;
}

.news__body ul,
.news__body ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}

.news__body ul {
  list-style: disc;
}

.news__body ol {
  list-style: decimal;
}

.news__body ul li,
.news__body ol li {
  line-height: 1.7;
  margin-bottom: 0.2em;
} */

/*--------------------------------
CTA
---------------------------------*/
.cta {
  background-color: #4984f2;
  padding: 56px 0;
  color: #fff;
}

.cta__inner {
  border-radius: 16px;
  display: flex;
  align-items: center;
  column-gap: 6%;
}

.cta__body {
  margin-right: 20px;
  flex: 0 0 55%;
}

.cta__img {
  flex: 1;
}

.cta__img img {
  width: 100%;
  height: auto;
}

.cta__text01 {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 16px;
}

.cta__text02 {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cta__tel {
  margin-top: 16px;
  display: flex;
  align-items: center;
  line-height: 1;
}

.cta__tel-num {
  cursor: inherit;
  pointer-events: none;
  background-image: url(img/icon_tel_white.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 1em;
  margin-right: 1em;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.cta__tel-time {
  font-size: 13px;
  font-weight: normal;
  white-space: nowrap;
}

.cta__btn {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

/*--------------------------------
メディア掲載実績
---------------------------------*/
.media-list__inner {
  padding: 90px 20px;
}

.media-list__heading {
  text-align: center;
  margin-bottom: 20px;
}

.media-list__title {
  font-size: 16px;
  color: #949497;
}

.media-list__wrapper {
  display: grid;
  row-gap: 16px;
}

.media-list__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 32px;
  row-gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.media-list__item {
  max-width: 130px;
  text-align: center;
}

.media-list__item img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.media-list__item.media--nbd {
  max-height: 50px;
}

.media-list__list--lg .media-list__item {
  max-width: 190px;
}

/*--------------------------------
フッター
---------------------------------*/
.footer {
  color: #fff;
  background-color: var(--text-color);
  padding: 64px 0 110px;
}

.footer__logo {
  margin-bottom: 40px;
  width: 150px;
}

.footer-nav__list {
  display: flex;
  /* flex-wrap: wrap; */
  /* gap: 88px; */
  gap: 70px;
  margin-bottom: 56px;
}

.footer-nav__list > li {
  margin-bottom: 16px;
}

.footer-nav__list .menu-item-has-children > a {
  font-size: 18px;
  color: #6da2ff;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
  cursor: unset;
  pointer-events: none;
}

.footer-nav__list .menu-item-has-children > a:hover {
  opacity: 1;
}

.footer-nav__list .sub-menu {
  display: grid;
  row-gap: 12px;
}

.footer-nav__list .sub-menu a {
  color: #fff;
  font-size: 14px;
}

.footer-nav__list a:hover {
  opacity: 0.8;
}

.footer__copyright {
  font-size: 11px;
}

.fixed-footer {
  display: none;
  position: relative;
  padding: 16px;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 1; /* ぼかしエフェクト */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(4px);
}

.fixed-footer__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
}

.fixed-footer__tel {
  position: absolute;
  left: 0;
  background-color: #fff;
  padding: 16px;
  bottom: 0;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.3;
  font-weight: bold;
  height: 100%;
  display: grid;
  place-content: center;
}

.fixed-footer__tel span {
  font-size: 0.8em;
  font-weight: normal;
}

/*--------------------------------
フォーム：主な機能
---------------------------------*/
.function-index {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 24px;
  margin-bottom: 64px;
  margin-bottom: 20px;
}

.function-index__item {
  position: relative;
  transition: all 0.3s;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.function-index__item:hover {
  transform: scale(0.95);
}

.function-index__item:after {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: block;
  content: "";
  width: 11px;
  height: 6px;
  transform: translateX(-50%);
  background-image: url(img/icon_arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.function-index__link {
  display: block;
  padding: 40px 16px;
}

.function-index__icon {
  margin-bottom: 12px;
}

.function-index__text {
  font-size: 16px;
  font-weight: bold;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.function__body {
  display: grid;
  row-gap: 96px;
}

.function-detail__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 32px;
}

.function-deital__title-icon {
  display: block;
  margin-bottom: 8px;
}

.function-detail__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 64px;
}

.function-detail-card__img {
  text-align: center;
  margin-bottom: 16px;
}

.function-detail-card__title {
  font-size: 14px;
  line-height: 1.4;
  font-weight: bold;
  height: 2em;
  margin-bottom: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.function-detail-card__img img {
  width: 100%;
  height: auto;
}

.function-detail-card__body {
  font-size: 14px;
  line-height: 1.5;
}

.function-detail-card__btn {
  text-align: center;
  margin-top: 16px;
}

.function-detail-card__link {
  display: block;
  text-align: center;
  color: #f25249;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid #f25249;
  border-radius: 50px;
  padding: 8px;
  width: 100%;
}

.function-detail-card__link:hover {
  transform: scale(0.95);
}

.function-detail-card__link-text {
  position: relative;
}

.function-detail-card__link-text::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -16px;
  content: "";
  display: inline-block;
  width: 7px;
  height: 9px;
  background-image: url(img/icon_arrow-right-red.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/*--------------------------------
料金プラン
---------------------------------*/
.page-header-plan {
  background-image: url(img/bg_grad-lg.webp);
  background-size: cover;
  background-position: center;
  padding: 40px 0 80px;
  position: relative;
}

.page-header-plan__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 10%;
}

.page-header-plan__body {
  flex: 0 1 56%;
}

.page-header-plan__img {
  flex: 1;
  position: relative;
  left: -4%;
}

.page-header-plan__img-sp {
  display: none;
}

.page-header-plan__label {
  display: inline-block;
  font-size: 24px;
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: bold;
  color: #757578;
  background-color: #fff;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  margin-bottom: 0.8em;
}

.page-header-plan__heading {
  font-weight: bold;
}

.page-header-plan__title-sub {
  font-size: 56px;
  font-size: clamp(32px, 4vw, 56px);
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header-plan__title-main {
  font-size: 120px;
  font-size: clamp(40px, 8vw, 120px);
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header-plan__title-note {
  font-size: 16px;
  color: #fff;
  margin-top: 1em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header-plan__title-unit {
  font-size: 0.6em;
}

.page-header-plan__desc {
  margin-top: 1em;
  font-size: 24px;
  font-size: clamp(16px, 1.7vw, 24px);
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-header-plan__img img {
  width: 100%;
  height: auto;
}

.page-header-plan__btn {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  display: flex;
  column-gap: 24px;
}

.page-header-plan-btn {
  width: 320px;
  border-radius: 50px;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  padding: 0.8em;
  line-height: 1.3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-plan-btn::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent #fff;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.page-header-plan-btn:hover {
  transform: scale(0.95);
}

.page-header-plan-btn--type01 {
  background-color: #f25816;
  box-shadow: 0px 8px 32px 0px #f2581680;
  color: #fff;
  padding: 0.6em;
}

.page-header-plan-btn--type02 {
  background-color: #fff;
  box-shadow: 0px 8px 32px 0px #f2581680;
  color: #f25816;
}

.page-header-plan-btn--type02::after {
  border-color: transparent transparent transparent #f25816;
}

.page-contents--pt-none {
  padding-top: 0 !important;
}

.plan-reason {
  padding: 112px 0 100px;
  background-color: #fafafa;
}

.section-heading__title {
  font-size: 40px;
  line-height: 1.3;
}

.section-heading__title-sub {
  display: block;
  color: var(--text-color) !important;
  font-size: 0.8em;
}

.plan-reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.plan-reason-item__icon {
  width: 180px;
  margin: 0 auto;
  margin-bottom: 1em;
}

.plan-reason-item__icon img {
  width: 100%;
  height: auto;
}

.plan-reason-item__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.plan-reason-item__desc {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-top: 0.5em;
}

.price-plan {
  padding: 96px 0;
}

.plan-price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.plan-price-item {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0px 0px 24px rgba(13, 90, 233, 0.2);
  text-align: center;
}

.plan-price-item__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0.2em;
}

.plan-price-item__desc {
  font-size: 48px;
  font-weight: bold;
  color: var(--main-color);
}

.plan-price-item__desc-unit {
  font-size: 0.6em;
}

.plan-price-item__desc-sub {
  font-size: 0.6em;
  color: var(--text-color);
}

.plan-price-note {
  text-align: right;
  font-size: 14px;
  margin-top: 3em;
}

.cta-box-heading-plan {
  text-align: center;
  margin-bottom: 2em;
}

.cta-box-heading-plan__subtitle {
  font-size: 24px;
}

.cta-box-heading-plan__title {
  font-size: 72px;
  font-weight: bold;
  color: #f25816;
}

.cta-box-heading-plan__title-unit {
  font-size: 0.6em;
}

.cta-box-heading-plan__title-note {
  font-size: 12px;
  color: var(--text-color);
}

.cta-box-heading-plan__desc {
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 0.5em;
}

.price-result {
  padding: 100px 0;
  background-image: url(img/bg_grad-blue.webp);
  background-size: cover;
  background-position: center;
}

.plan-result-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* .plan-result-itemの間にsvgのアイコンを配置 */
.plan-result-list::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  content: "";
  display: inline-block;
  width: 56px;
  height: 56px;
  background-image: url(img/icon_arrow-circle-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.plan-result-item {
  background-color: #fff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0px 0px 24px rgba(13, 90, 233, 0.3);
}

.plan-result-item--box1 .plan-result-item__desc {
  background-image: url(img/bg_time.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: left 100%;
}

.plan-result-item--box2 .plan-result-item__desc {
  background-image: url(img/bg_money.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: left 100%;
}

.plan-result-item__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  background-color: var(--main-color);
  color: #fff;
  padding: 0.8em 0;
}

.plan-result-item__title .highlight {
  font-size: 1.2em;
}

.plan-result-item__desc {
  font-size: 120px;
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  padding: 0.2em 0 0.3em;
}

.plan-result-item__desc-unit {
  font-size: 0.6em;
}

.plan-result-note {
  font-size: 14px;
  text-align: right;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 1em;
}

.plan-result-more {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 1em;
}

.plan-result-more__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  max-width: 480px;
  margin: 0 auto;
}

.plan-result-more__item {
  aspect-ratio: 1 / 1;
  background-color: #fff;
  padding: 8px;
  border-radius: 50%;
  box-shadow: 0px 0px 24px rgba(13, 90, 233, 0.3);
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.plan-result-more__title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: bold;
  margin-top: 0.4em;
  text-align: center;
}

.plan-result-more__title .highlight {
  color: var(--main-color);
  font-size: 1.2em;
  display: block;
}

.price-flow {
  padding: 100px 0 0;
}

/* .plan__scroll {
  display: none;
} */

/* .plan-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
} */

/* .plan-summery {
  box-shadow: 0px 2px 16px rgb(0 0 0 / 10%);
  border-radius: 10px;
  padding: 32px 24px;
} */
/*
.pc-plan-table {
  display: block;
}

.sp-plan-table {
  display: none;
}

.plan-table {
  width: 100%;
  border-collapse: separate;
  word-break: break-all;
}

.plan-table th,
.plan-table td {
  border-bottom: 1px solid #ddd;
  padding: 20px;
  font-size: 15px;
}

.plan-table td {
  text-align: center;
  vertical-align: middle;
}

.plan-table th > a {
  text-decoration: underline;
  position: relative;
  white-space: nowrap;

.plan-table th > a::after {
  position: absolute;
  top: 50%;
  right: -16px;
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background-image: url(img/icon_plan-external.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.plan-table th .th-note {
  font-weight: normal;
  font-size: 0.8em;
  margin-top: 4px;
  line-height: 1.4;
}

.plan-table .plan-title {


/* .plan-table .plan-title--space {
  background-color: #fff !important;
}

.plan-table .plan-title:nth-child(3) {
  border-left: 2px solid #48b941 !important;
  border-right: 2px solid #48b941 !important;
  border-top: 2px solid #48b941 !important;
  background-color: #f4fff2 !important;
  border-radius: 8px 8px 0 0;
}

.plan-table td:nth-child(3) {
  background-color: #f4fff2 !important;
  border-left: 2px solid #48b941 !important;
  border-right: 2px solid #48b941 !important;
}

.plan-table tr:last-child td:nth-child(3) {
  border-bottom: 2px solid #48b941 !important;
  border-radius: 0 0 8px 8px !important;
}

.plan-table th:first-child {
  background-color: #f6f6f6;
}

.plan-recommended {
  position: relative;
}

.plan-recommended__text {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #ffffff;
  font-weight: bold;
  padding: 8px 16px;
  white-space: nowrap;
  line-height: 1;
  background-color: #48b941;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  width: 90%;
}

.plan-table th.plan-func-title {
  background-color: #fff;
  padding: 8px 20px;
}

.plan-table td.plan-func-title {
  padding: 8px 20px;
}

.plan-summery__item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eeeeee;
}

.plan-summery__name {
  text-align: center;
  font-size: 18px;
  color: var(--main-color);
  font-weight: bold;
  margin-bottom: 8px;
}

.plan-summery__desc {
  text-align: center;
  font-size: 15px;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-summery__price {
  text-align: center;
}

.plan-summery__price-label {
  font-size: 14px;
}

.plan-summery__price-num {
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
}

.plan-summery__price-unit {
  font-size: 32px;
  margin-right: 0.1em;
}

.plan-summery__price-initial {
  font-size: 14px;
  margin-top: 4px;
  color: var(--main-color);
}

.plan-summery__btn {
  margin-top: 8px;
} */

/*
.plan-summery__info {
  text-align: center;
}

.plan-summery__info-block:not(:last-child) {
  margin-bottom: 16px;
}

.plan-summery__info-title {
  font-size: 14px;
  margin-bottom: 8px;
}

.plan-summery__info-desc {
  font-size: 14px;
  font-weight: bold;
  color: var(--main-color);
}

.plan-feature {
  display: grid;
  row-gap: 4px;
}

.plan-feature__item {
  font-size: 14px;
  line-height: 1.5;
  background-image: url(img/icon_check.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  padding-left: 2em;
}

.plan-summery__btn > .btn {
  width: 100%;
} */

/* .plan__note {
  margin-top: 24px;
}

.plan__note ul {
  list-style: inherit;
  padding-left: 1.2em;
  display: grid;
  row-gap: 4px;
}

.plan__note ul:not(:last-child) {
  margin-bottom: 8px;
}

.plan__note li {
  font-size: 13px;
  line-height: 1.4;
}

.plan__note p {
  font-size: 14px;
  line-height: 1.4;
}

.plan-block:not(:last-child) {
  margin-bottom: 56px;
}

.plan-block__title {
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--bg-color);
  margin-bottom: 24px;
}

.plan-block__qa {
  padding: 32px 0;
  border-bottom: 1px dotted #ccc;
}

.plan-block__qa:first-child {
  padding-top: 16px;
}

.plan-block__q,
.plan-block__a {
  position: relative;
  display: flex;
  column-gap: 8px;
  line-height: 1.6;
}

.plan-block__q {
  font-weight: bold;
  margin-bottom: 16px;
}

.plan-block__q:before,
.plan-block__a:before {
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
  color: var(--main-color);
}

.plan-block__q:before {
  content: "Q";
}

.plan-block__a:before {
  content: "A";
}

.price-start__slogan {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 8px;
}

.price-start__slogan::before {
  display: inline-block;
  content: "";
  background-image: url(img/icon_left-two-line.webp);
  width: 44px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.price-start__slogan::after {
  display: inline-block;
  content: "";
  background-image: url(img/icon_right-two-line.webp);
  width: 44px;
  height: 40px;
  background-size: 44px 40px;
  background-repeat: no-repeat;
  background-position: 0 0;
}

.price-start__price {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 16px;
  margin-bottom: 32px;
}

.price-start__lead {
  text-align: center;
}

.price-start__user {
  display: block;
  font-size: 32px;
  font-weight: bold;
}

.price-start__label {
  display: block;
  font-size: 38px;
  font-weight: bold;
  padding-bottom: 16px;
}

.price-start__num {
  font-size: 130px;
  font-weight: bold;
  color: #ed723e;
}

.price-start__unit {
  font-size: 64px;
  margin-left: 8px;
}

.plan-detail {
  background-color: var(--bg-color);
  padding: 72px 0;
  position: relative;
}

.plan-detail::after {
  position: absolute;
  top: 0;
  left: 50%;
  content: "";
  transform: translateX(-50%);
  border-top: 40px solid #fff;
  border-right: 60px solid transparent;
  border-left: 60px solid transparent;
}

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

.plan-detail-box {
  padding: 48px 32px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.plan-detail-box__title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 4px;
}

.plan-detail-box__desc {
  font-size: 56px;
  font-weight: bold;
  color: var(--main-color);
}

.plan-detail-box__desc-unit {
  font-size: 0.8em;
}

.plan-detail__cta {
  margin-top: 40px;
} */

/* .plan-detail__cta .cta-box {
  background-color: #fff;
} */

/*--------------------------------
導入事例
---------------------------------*/
.tax-cat {
  margin-bottom: 56px;
}

.tax-cat__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
}

.tax-cat__item:not(:last-child) {
  border-right: 1px solid #eee;
}

.tax-cat__item a {
  font-size: 15px;
  padding: 0 16px;
}

.tax-cat__item a:hover {
  color: var(--main-color);
}

.tax-cat__item--current {
  color: var(--main-color);
}

.case-search {
  margin-bottom: 32px;
}

.search-box {
  padding: 32px;
  background-color: #f6f6f6;
  border-radius: 12px;
}

.search-box__list {
  display: grid;
  row-gap: 16px;
}

.search-box__item {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
}

.search-box__item:not(:last-child) {
  border-bottom: 1px solid #eaeaea;
}

.search-box__item:last-child {
  padding-bottom: 0;
}

.search-box__title {
  flex: 0 1 140px;
  font-weight: bold;
}

.search-box__item-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 6px;
}

.search-box__label {
  cursor: pointer;
  /* display: inline-flex; */
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 15px;
  line-height: 24px;
  background-color: #fff;
  color: #535356;
  border: 1px solid #eaeaea;
  transition: opacity 0.8s;
}

.search-box__label:hover {
  opacity: 0.9;
}

.search-box__input {
  display: none;
}

/* .search-box__label:has(.search-box__input:checked) {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
} */

.search-box__label.is-active {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.search-box__reset {
  text-align: right;
  margin-top: 8px;
}

.search-box__btn-reset {
  cursor: pointer;
  background-color: transparent;
  color: #333;
  padding: 0.3em 0.2em 0.2em 1.3em;
  background-image: url(img/icon_close-search.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 12px 12px;
  line-height: 1;
  font-size: 13px;
  transition: opacity 0.8s;
}

.search-box__btn-reset:hover {
  opacity: 0.8;
}

/*--------------------------------
よくあるご質問
---------------------------------*/
.faq__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.faq-box__title {
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--bg-color);
}

.faq-box__item {
  border-bottom: 1px dotted #ccc;
}

.faq-box__item > a {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  font-weight: normal;
  padding: 20px 10px;
}

.faq-detail {
  margin-bottom: 56px;
}

.faq-detail__inner {
  display: flex;
  column-gap: 32px;
}

.faq-side {
  flex: 0 1 300px;
}

.faq-main {
  flex: 1;
}

.faq-side__title {
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--bg-color);
}

.faq-main__bottom-btn {
  margin-top: 32px;
  text-align: center;
}

.faq-side__item > a {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  padding: 20px 8px;
  border-bottom: 1px dotted #ccc;
}

.faq-main__title {
  font-size: 32px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 24px;
}

.faq-main__contents > p {
  line-height: 1.6;
}

/*--------------------------------
活用シーン
---------------------------------*/
.solution-block:not(:last-child) {
  margin-bottom: 100px;
}

.solution-block__title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 48px;
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
}

.solution-block__btn {
  text-align: center;
  margin-top: 40px;
}

.solution-problem__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.solution-problem__item {
  text-align: center;
  background: #edf6ff;
  border-radius: 12px;
  padding: 32px 16px;
}

.solution-problem__img {
  margin-bottom: 20px;
}

.solution-problem__img img {
  height: 150px;
  width: 100%;
}

.solution-problem__desc {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
}

.solution-service__title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}

.solution-service__title > span {
  font-size: 1.5em;
  color: var(--main-color);
}

.solution-service__desc {
  font-size: 24px;
  line-height: 1.4;
  margin-top: 32px;
  line-height: 1.6;
}

.solution-service__mv {
  text-align: center;
  margin-bottom: 64px;
}

.solution-service__mv-img {
  width: 100%;
}

.solution-logo__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 16px;
  row-gap: 32px;
}

.solution-logo__item {
  width: calc(100% / 3 - 32px);
  text-align: center;
}

.solution-reason__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
  row-gap: 40px;
}

.solution-reason__icon {
  margin-bottom: 24px;
}

.solution-reason__title {
  margin-bottom: 20px;
  font-weight: bold;
}

.solution-reason__desc {
  line-height: 1.5;
}

.solution-case__list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.solution-cta {
  text-align: center;
  margin-bottom: 100px;
}

.case-card {
  display: block;
  background-color: var(--bg-color);
  padding: 32px 48px;
  border-radius: 12px;
}

.case-card:hover {
  opacity: 0.8;
}

.case-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
}

.case-card__desc {
  flex: 0 1 50%;
}

.case-card__img {
  flex: 1;
}

.case-card__img > img {
  width: 100%;
}

.case-card__result {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 24px;
}

.case-card__result dl {
  display: flex;
  column-gap: 24px;
}

.case-card__result dt {
  white-space: nowrap;
}

.case-card__result dd {
  line-height: 1.4;
}

.case-card__info {
  font-size: 14px;
  line-height: 1.4;
  color: #6f6f6f;
}

.case-card__link {
  margin-top: 16px;
  text-align: right;
  color: var(--main-color);
  position: relative;
  padding-right: 1em;
}

.case-card__link:after {
  position: absolute;
  top: 4px;
  right: 0;
  content: "";
  border-style: solid;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin: 0.1em;
}

.solution-point {
  max-width: auto;
}

.solution-point .point__item {
  column-gap: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-point .point__item:nth-child(odd) {
  flex-direction: row-reverse;
}

.solution-point .point__body {
  flex: 0 1 40%;
}

.solution-point .point__subtitle {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 0.8em;
}

.solution-point .point__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.solution-point .point__img {
  flex: 1;
}

.solution-point .point__img img {
  width: 100%;
}

/*--------------------------------
サポート
---------------------------------*/
.content-block:not(:last-child) {
  margin-bottom: 120px;
}

.content-block__heading {
  margin-bottom: 40px;
}

.content-block__title {
  font-size: 32px;
  line-height: 1.4;
  color: var(--main-color);
  text-align: center;
  font-weight: bold;
}

.content-block__lead {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-top: 16px;
}

.content-block__btn {
  text-align: center;
  margin-top: 32px;
}

.support-point {
  max-width: 900px;
  margin: 0 auto;
}

.support-point__item {
  display: flex;
  align-items: center;
  column-gap: 32px;
  position: relative;
  padding-bottom: 40px;
}

.support-point__item:last-child {
  padding-bottom: 0;
}

.support-point__item::before {
  border-left: 1px dotted var(--main-color);
  content: "";
  display: block;
  height: 100%;
  left: 36px;
  position: absolute;
  top: 0;
  width: 0;
}
.support-point__item:last-child::before {
  border-left: none;
}

.support-point__img {
  /* position: relative; */
  flex: 0 1 210px;
  padding-left: 56px;
}

.support-point__img img {
  width: 100%;
  height: auto;
}

.support-point__step {
  position: absolute;
  top: 0;
  left: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 100px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: bold;
}

.support-point__body {
  flex: 1;
}

.support-point__label {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}

.support-point__title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  color: var(--main-color);
}

.support-point__desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
}

/* .support-customer {
  max-width: 900px;
  margin: 0 auto;
} */

.support-customer__list {
  display: grid;
  row-gap: 32px;
  margin-bottom: 48px;
}

.support-customer__item {
  display: flex;
  align-items: stretch;
  column-gap: 32px;
}

.support-customer__img {
  flex: 0 1 240px;
}

.support-customer__img img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 5/3;
  border-radius: 8px;
}

.support-customer__body {
  flex: 1;
  padding: 32px;
  background-color: var(--bg-color);
  border-radius: 8px;
  position: relative;
  /* filter: drop-shadow(0px 0px 10px rgba(63, 133, 209, 0.3)); */
}

.support-customer__body::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  background-color: var(--bg-color);
  width: 20px;
  height: 30px;
  clip-path: polygon(100% 0%, 30% 50%, 100% 100%);
}

.support-customer__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
}

.support-customer__desc {
  font-size: 15px;
  line-height: 1.5;
}

.support-service__list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.support-service__item {
  text-align: center;
}

/* .support-service__img {
  text-align: center;
} */

.support-service__title {
  margin-top: 8px;
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
}

.support-service__desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.4;
}

/*--------------------------------
フォーム
---------------------------------*/
/*--------------------------------
お役立ち資料・動画
---------------------------------*/
.apply__body .wp-block-group {
  /* margin-top: 16px; */
  padding: 8px 20px 16px;
  border-radius: 8px;
  background-color: #fcfcfc;
  color: black;
}

.apply__body h2 {
  font-size: 20px;
  font-weight: bold;
  /* margin-top: 16px; */
  /* margin-bottom: 8px; */
}

.apply__body p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.apply__body ul {
  list-style-type: disc;
  padding-left: 20px;
}

.apply__body li {
  line-height: 2em;
}

.apply {
  /* color: #fff; */
  margin-top: 20px;
  margin-bottom: 60px;
}

.apply__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 40px;
}

.apply-detail {
  text-align: left;
  flex: 0 0 46%;
  padding: 40px;
  /* background: linear-gradient(91.11deg, #3f82f9 0%, #1362ee 100%); */
  background-color: #fff;
  border-radius: 6px;
}

.documents-flex {
  display: flex;
  flex-direction: column;
}

.documents-flex > .post-pager__bottom-btn {
  width: 100%;
  margin-top: auto;
}

.apply__form {
  flex: 1;
  background-color: #fff;
  padding: 32px;
  border-radius: 6px;
}

.apply-note {
  margin-bottom: 16px;
}

.apply-note__desc {
  font-size: 14px;
  line-height: 1.5;
}

.apply-note__require {
  font-size: 12px;
  color: red;
  margin-top: 8px;
}

.apply__form-2 {
  flex: 0.8;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding: 2%;
}

.apply__ttl {
  color: var(--main-color);
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.apply-detail__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.apply-detail__subtitle {
  font-size: 24px;
}

.apply-detail__bold {
  font-size: 1.2em;
  color: var(--main-color);
}

.apply-detail__lead {
  font-size: 15px;
  line-height: 1.7;
  /* margin-bottom: 32px; */
}

.apply-detail__img {
  margin-bottom: 32px;
  text-align: center;
}

.apply-detail__img img {
  width: auto;
  max-width: 100%;
  max-height: 170px;
}

.apply-detail__info {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.7;
}
.apply-detail__info2 {
  margin-bottom: 10px;
}

.apply-detail__seminar-img {
  max-width: 100%;
  margin-bottom: 10px;
}
.apply-detail__seminar-img img {
  max-width: 100%;
}

.apply-contents__desc {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.apply-contents__desc-b {
  font-weight: bold;
  margin-bottom: 12px;
}

.apply-thanks {
  font-size: 16px;
  line-height: 1.7;
  padding: 20px;
  color: #33475b;
  text-align: center;
  margin: auto;
}
.apply-thanks a {
  color: #6da2ff;
  text-decoration: underline;
}

/*--------------------------------
フォーム：無料お試し
---------------------------------*/
.apply-contents__body {
  padding: 24px;
  border-radius: 5px;
  background-color: var(--bg-color);
}

.apply-contents__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--main-color);
}

.apply-step__item {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.apply-contents__note {
  font-size: 13px;
  line-height: 1.4;
  font-weight: bold;
  color: var(--main-color);
}

.apply-contents__list {
  /* display: flex;
  flex-wrap: wrap; */
  list-style: disc;
  padding-left: 0.4em;
}

.apply-contents__list--vertical {
  flex-direction: column;
}

.apply-contents__item {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 0 1 42%;
  margin-left: 1em;
}

.apply-contents__item:last-child {
  margin-bottom: 0;
}

.apply-tel {
  margin-top: 24px;
  border: 1px solid #ccc;
  padding: 16px;
  border-radius: 5px;
}

.apply-tel__title {
  margin-bottom: 8px;
  line-height: 1.4;
}

.apply-tel__tel {
  display: flex;
  align-items: center;
  padding-left: 32px;
  background-image: url(img/icon_tel-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.apply-tel__icon {
  display: block;
  margin-right: 8px;
  width: 32px;
  height: 32px;
}

.apply-tel__icon img {
  width: 100%;
}

.apply-tel__num {
  font-size: 24px;
  font-weight: bold;
  margin-right: 8px;
}

.apply-tel__hours {
  font-size: 12px;
}

/*--------------------------------
メディア
---------------------------------*/
.media-cat {
  margin-bottom: 56px;
}

.media-cat__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
}

.media-cat__item:not(:last-child) {
  border-right: 1px solid #eee;
}

.media-cat__item a {
  font-size: 15px;
  padding: 0 16px;
}

.media-cat__item a:hover {
  color: var(--main-color);
}

.media-cat__item--current {
  color: var(--main-color);
}

/* 2026/5/2 追記 */
.media-box {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.media-box__body {}

.report-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.report-card {}

.report-card__item {
  display: flex;
  border-radius: 8px;
  border: 1px solid #c5c5c5;
}

.report-card__thumb {
  /* flex: 0 0 300px; */
  flex: 0 0 28.301%;
  border-radius: 8px 0 0 8px;
}
@media (max-width:768px) {
  .report-card__thumb {
    flex: initial;
    border-radius: 8px 8px 0 0;
  }
}

.report-card__thumb > img {
  border-radius: 8px 0 0 8px;
  width: 100%;
  object-fit: cover;
}
@media (max-width:768px) {
  .report-card__thumb > img {
    border-radius: 8px 8px 0 0;
  }
}

.report-card__link {
  display: flex;
  align-items: center;
}
@media (max-width:768px) {
  .report-card__link {
    flex-direction: column;
    align-items: initial;
  }
}

.report-card__body {
  flex: 1 1 auto;
  padding: 8px 8px 8px 16px;
}
@media (max-width:768px) {
  .report-card__body {
    flex: initial;
  }
}

.report-card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.report-card__desc {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
}
@media (max-width:768px) {
  .report-card__desc {
    font-size: 14px;
  }
}

.report-card__date {
  font-size: 12px;
  margin-bottom: 8px;
  color: #aaa;
}

.media-box-wrapper {
  display: grid;
  row-gap: 56px;
}

.media-box-wrapper._report {
  row-gap: 64px;
}

.report-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.report__lead {
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width:768px) {
  .report__lead {
    font-size: 14px;
  }
}

.media-box__heading {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.media-box__title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  padding-left: 1em;
}

.media-box__subtitle {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 1em;
}

.media-box__all-link {
  font-size: 14px;
  color: var(--main-color);
}

.media-box__bottom-btn {
  margin-top: 24px;
  text-align: center;
}

.media-box__title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px;
  background-color: var(--main-color);
  content: "";
}

.media-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.media-cards--col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card__link:hover {
  opacity: 0.8;
}

.media-card__thumb {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
}

.media-card__thumb > img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border: 1px solid #eee;
}

.media-card__title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
}

.media-card__date {
  font-size: 12px;
  margin-top: 8px;
  color: #aaa;
}

.media-card__company {
  margin-top: 4px;
  font-size: 12px;
}

.media-card__tags {
  margin-top: 8px;
}

.media-card__tags:not(:has(.tag-list__item)) {
  display: none;
}

/*--------------------------------
記事ページ
---------------------------------*/
.single-post .main-contents,
.single-case .main-contents {
  background-color: #dbedff;
}

.single-post .post__article,
.single-case .post__article {
  background-color: #fff;
  padding: 4% 5%;
  border-radius: 16px;
}

.single-post .container,
.single-case .container {
  max-width: 1320px;
}

.post-wrapper {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
  margin-bottom: 32px;
}

.post__article {
  flex: 1;
  padding-bottom: 56px;
}

.sidebar {
  flex: 0 0 348px;
  position: relative;
}

.post__header {
  margin-bottom: 32px;
  /* padding: 0 20px; */
}

.post__header--case .post__title {
  font-size: 28px;
  line-height: 1.5;
}

.post__title {
  font-size: 32px;
  line-height: 1.6;
  font-weight: bold;
}

.post__company {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
}

.post-company-info {
  margin-top: 24px;
  display: flex;
  column-gap: 24px;
}

.post-company-info__item {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 18px;
  font-weight: bold;
}

.post-company-info__item-label {
  display: block;
  font-weight: bold;
  color: var(--main-color);
  background-color: var(--bg-color);
  padding: 8px 12px;
  font-size: 15px;
  border-radius: 4px;
}

.post-solution-box {
  margin-bottom: 32px;
  display: grid;
  border-radius: 8px;
  background-color: #f7f7f7;
  padding: 24px 32px;
  overflow: hidden;
}

.post-solution-box__inner {
  position: relative;
}

/* .post-solution-box__inner::before {
  border-left: 6px solid #e2e2e2;
  content: "";
  display: block;
  height: 100%;
  left: 38px;
  position: absolute;
  top: 0;
  width: 0;
} */

.post-solution-box__item {
  display: flex;
  align-items: stretch;
  column-gap: 16px;
  position: relative;
  padding-bottom: 16px;
  /* padding: 8px 0; */
}

.post-solution-box__item::before {
  border-left: 8px solid #e2e2e2;
  content: "";
  display: block;
  height: 100%;
  left: 40px;
  position: absolute;
  top: 0;
  width: 0;
}

.post-solution-box__item:last-child::before {
  border-left: none;
}

/* .post-solution-box__item:first-child {
  padding-top: 0;
} */

.post-solution-box__item:last-child {
  padding-bottom: 0;
}

.post-solution-box__title {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  background-color: #595959;
  color: #fff;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.post-solution-box__title--solution {
  background-color: #fff;
  color: var(--main-color);
}

.post-solution-box__title--result {
  background-color: var(--main-color);
  color: #fff;
}

.post-solution-box__body {
  flex: 1;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.post-solution-box__body ul {
  list-style: disc;
  padding-left: 1.2em;
}

.post-solution-box__body li:not(:last-child) {
  margin-bottom: 4px;
}

.post-solution-box__body a {
  text-decoration: underline;
  color: var(--link-color);
}

/* .post-solution-box__cover-top {
  display: block;
  width: 80px;
  height: 100%;
  background-color: #f7f7f7;
  position: absolute;
  left: 0;
  top: -50%;
  transform: translateY(25%);
}

.post-solution-box__cover-bottom {
  display: block;
  width: 80px;
  height: 100%;
  background-color: #f7f7f7;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-25%);
} */

.post__info {
  margin-top: 16px;
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.post__date {
  display: block;
}

.post__eyecatch {
  margin-bottom: 24px;
  text-align: center;
}

.post__eyecatch > img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  max-width: 100%;
}

.post__related {
  margin-bottom: 40px;
}

.post__body {
  /* background-color: #fcfcfc; */
  /* padding: 20px; */
  margin-bottom: 32px;
}

.post__body p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 1.5em;
}

.post__body p > a {
  text-decoration: underline;
}

.post__body h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 2.5em;
  padding: 0.8em 0.8em 0.8em 1.4em;
  margin-bottom: 1.2em;
  background-color: var(--bg-color);
  border-radius: 6px;
}

.post__body h2:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  border-radius: 6px 0 0 6px;
  background-color: var(--main-color);
  content: "";
}

.post__body h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
  padding-top: 2.5em;
  padding-bottom: 0.6em;
  margin-bottom: 1.2em;
}

.post__body h4 {
  margin-top: 2em;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1em;
}

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

.post__body ul,
.post__body ol {
  list-style: auto;
  padding-left: 1.3em;
  margin-bottom: 1em;
}

.post__body ul {
  list-style: disc;
}

.post__body ul li,
.post__body ol li {
  line-height: 1.7;
  margin-bottom: 0.2em;
}

.post__sns {
  margin-top: 16px;
  margin-bottom: 24px;
}

.sns-btn__list {
  display: flex;
  justify-content: right;
  column-gap: 8px;
}

.btn-sns {
  display: block;
  padding: 8px 12px 8px 8px;
  background-color: #0b66ff;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  column-gap: 4px;
  height: 34px;
}

.btn-sns--twitter {
  background-color: #000;
  color: #fff;
  border-radius: 4px;
}

.btn-sns:hover {
  opacity: 0.8;
}

.btn-sns__icon {
  width: 18px;
  height: 18px;
}

.btn-sns__icon--twitter {
  width: 16px;
  height: 16px;
}

.post__tag {
  border: 1px solid #ccc;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.post__tag:not(:has(.tag-list__item)) {
  display: none;
}

/* 著者プロフィール */
.post-profile {
  display: flex;
  gap: 24px;
  background-color: #f8fbff;
  border: 2px solid #ecf3ff;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.post-profile__figure {
  flex: 0 0 auto;
  max-width: 150px;
  width: 100%;
  position: relative;
}

.post-profile__figure img {
  width: 100%;
  object-fit: cover;
}

.post-profile__img {
  width: 100px;
  /* height: 100px; */
  border-radius: 50%;
}

.post-profile__name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.post-profile__desc {
  font-size: 14px;
  line-height: 1.5;
}

.post-profile__desc p:not(:last-child) {
  margin-bottom: 0.5em;
}

.post-profile__desc a {
  text-decoration: underline;
}

.post-profile._type02 {
  margin-bottom: 0;
}

.post-profile__role {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: #ed7e00;
  padding: 4px 8px;
  border-radius: 4px;
}

/* 2026/5/16 追記 */
.post-profile__figure._type02 {
  flex: 0 0 150px;
}
@media (max-width:900px) {
  .post-profile__figure._type02 {
    flex: 0 0 auto;
  }
}

.wp-block-button__link {
  text-decoration: none !important;
}

.wp-block-image figcaption {
  font-size: 14px;
}

hr {
  border: 0;
}

.wp-block-separator {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.post__body .wp-block-image {
  margin: 0 auto 1.5rem;
}

.post__body .wp-block-image img {
  display: block;
  margin: 0 auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.list[class*="category-"] .post_links {
  margin-bottom: 2rem;
  border-bottom: none;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.wp-block-table tr,
.wp-block-table td {
  font-size: 16px;
  line-height: 2;
  border: 1px solid #000;
}

.wp-block-button.aligncenter,
.wp-block-buttons.aligncenter,
.wp-block-calendar {
  margin-top: 16px;
  text-align: center;
  display: block;
}

.wp-block-button__link {
  background-color: var(--main-color);
}

#rtoc-mokuji-wrapper {
  margin-top: 32px;
}

.single-news .rtoc-mokuji-content,
.single-report .rtoc-mokuji-content {
  display: none;
}

.function-secbox__inner {
  margin-bottom: 20px;
}
li.rtoc-item {
  text-indent: 0;
}

/* パターン */

.pattern-cta {
  margin-bottom: 1.5em;
  padding: 32px;
  border-radius: 16px;
  background-color: #fff6f1;
  border: 2px solid #ffe3d7;
}

.pattern-cta .wp-block-button__link {
  position: relative;
  font-size: 14px !important;
  font-weight: bold;
  width: 260px;
  padding: 1.2em;
  color: #fff;
  line-height: 1.4;
  vertical-align: middle;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 50px;
  background-color: #f25816;
  box-shadow: 0px 8px 32px 0px rgba(242, 88, 22, 0.4);
}

.pattern-cta .wp-block-button__link:hover {
  text-decoration: none;
  transform: scale(0.96);
}

.pattern-cta .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #fff;
}

.pattern-cta-media-text {
  border: solid 2px #eae8e4;
  border-radius: 16px;
  padding: 32px;
  column-gap: 32px;
  margin-bottom: 1.5em;
}

.pattern-cta-media-text p {
  font-size: 15px;
  margin-bottom: 0.5em;
}

.pattern-cta-media-text p:last-child {
  margin-bottom: 0;
}

.pattern-cta-media-text .wp-block-heading {
  border-bottom: none;
  color: var(--text-color);
  font-size: 16px;
  margin-top: 0;
  padding: 0;
  margin-bottom: 0.5em;
}

.pattern-cta-media-text .wp-block-media-text__content {
  padding: 0;
}

.pattern-related {
  padding: 32px;
  background-color: #f9f5ed;
  border-radius: 16px;
  margin-bottom: 1.5em;
}

.pattern-related p:last-child {
  margin-bottom: 0;
}

/* パターン 追従ページ内リンク */
.pattern-sticky-link {
  /* display: none !important; */
  justify-content: center;
  align-items: center;
  /* font-size: 14px; */
  /* line-height: 1.4; */
  /* font-weight: bold; */
  /* border-bottom: 1px solid #e7e7e7; */
}

.post__body .pattern-sticky-link > .wp-block-column {
  flex-basis: unset !important;
  flex: 1 !important;
  text-align: center;
}

.post__body .pattern-sticky-link > .wp-block-column a {
  /* text-decoration: none; */
  /* color: var(--text-color); */
  /* display: block; */
  transition: none;
  /* padding: 8px 0; */

  border: 1px solid #717171;
  border-radius: 50px;
  padding: 1em;
  font-size: 16px;
  line-height: 1.3;
  color: #717171;
  text-decoration: none !important;
  background-image: url(img/icon_arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 12px;
  padding-right: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post__body .pattern-sticky-link .wp-block-buttons {
  display: block;
}

.post__body .pattern-sticky-link .wp-block-button {
  width: 100%;
}

.pattern-sticky-link p {
  margin-bottom: 0 !important;
}

.pattern-sticky-link .wp-block-button__link {
  background-color: initial !important;
}

/* 2026/5/11 追加 */
.pattern-anchor-list .wp-block-column a {
  border: 1px solid #717171;
  border-radius: 50px;
  padding: 1em;
  font-size: 16px;
  line-height: 1.3;
  color: #717171;
  text-decoration: none !important;
  background-color: transparent;
  background-image: url(img/icon_arrow-down.svg);
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 12px;
  padding-right: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pattern-anchor-list .wp-block-columns {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px;
  margin-top: 0 !important;
}

.pattern-anchor-list__title
  {
  margin-bottom: 0 !important;
  font-weight: bold;
  background-color: #717171;
  padding: 0.5em 1em;
  border-radius: 50px;
  text-align: center;
  position: relative;
  color: #fff;
  margin-bottom: 1.5em !important;
}
@media (max-width:768px) {
  .pattern-anchor-list__title {
    display: none;
  }
}

.pattern-anchor-list__title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 20px;
  height: 12px;
  background-color: #717171;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (max-width:768px) {
  .pattern-anchor-list__title::before {
    content: none;
  }
}

.pattern-anchor-list__body {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px;
  margin-top: 0 !important;
}

.pattern-anchor-list__body .wp-block-buttons > .wp-block-button {
  display: block;
}

.pattern-anchor-list__body .wp-block-buttons.is-layout-flex {
  display: block;
}

.pattern-anchor-list__btn-wrapper a {
  border: 1px solid #717171;
  border-radius: 50px;
  padding: 1em;
  font-size: 16px;
  line-height: 1.3;
  color: #717171;
  text-decoration: none !important;
  background-color: transparent;
  background-image: url(img/icon_arrow-down-gray.svg);
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-size: 12px;
  padding-right: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== 目次 ===== */
#rtoc-mokuji-wrapper {
  position: relative;
  margin-top: 32px;
  background-color: #f5f5f5;
  padding: 32px;
  border-radius: 8px 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  max-height: 150px; /* ←初期状態は一部だけ表示 */
  overflow: hidden; /* 残りは隠す */
  transition: max-height 0.3s ease;
}

#rtoc-mokuji-wrapper.expanded {
  max-height: 4000px; /* ←展開後は十分大きくする */
}

#rtoc-mokuji-wrapper #rtoc-mokuji-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.5em;
}

#rtoc-mokuji-wrapper.rtoc-mokuji-content .rtoc-mokuji li > a {
  color: #7a7a7a;
  border-bottom: 1px solid #e7e7e7;
  padding: 4px 0;
  display: block;
  font-size: 14px;
}

/* ===== 目次の下部フェード（続きがある気配を出す） ===== */
#rtoc-mokuji-wrapper .mokuji-fader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; /* 枠の最下部に被せる */
  height: 60px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(247, 247, 247, 0) 0%,
    rgba(247, 247, 247, 1) 100%
  );
}
/* 展開時はフェードを消す */
#rtoc-mokuji-wrapper.expanded .mokuji-fader {
  display: none;
}

/* ===== 目次のボタン ===== */
.mokuji-toggle {
  border-radius: 0 0 8px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 8px 14px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  background-color: #f5f5f5;
}

/* SVGアイコンのサイズ＆回転アニメーション */
.mokuji-toggle .toggle-icon {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

/* 展開時は下向きシェブロンを上向きに（隣接兄弟セレクタで制御） */
#rtoc-mokuji-wrapper.expanded + .mokuji-toggle .toggle-icon {
  transform: rotate(180deg);
}

.rtoc-mokuji-content.frame1 {
  border: none !important;
}

/*--------------------------------
ページャー
---------------------------------*/
.post-pager__list {
  margin-top: 32px;
  margin-bottom: 20px;
  display: flex;
  column-gap: 16px;
}

.post-pager__item {
  border-radius: 5px;
  line-height: 1.6;
  overflow: hidden;
  flex: 0 0 47%;
}

.post-pager__link {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-decoration: none;
}

.post-pager__link .post-pager__icon {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.post-pager__item--prev .post-pager__link {
  border-left: 20px solid var(--main-color);
}

.post-pager__item--prev .post-pager__icon {
  left: -19px;
  background-image: url(img/icon_pager-arrow-left-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

.post-pager__item--next .post-pager__link {
  border-right: 20px solid var(--main-color);
}

.post-pager__item--next .post-pager__icon {
  right: -19px;
  background-image: url(img/icon_pager-arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

.post-pager__item--next .post-pager__link {
  flex-direction: row-reverse;
}

.post-pager__body {
  display: flex;
  flex: 1;
}
.post-pager__title {
  font-size: 12px;
  word-break: break-all;
}

.post-pager__body {
  padding: 15px;
}

.post-pager__img {
  flex: 0 0 40%;
}

.post-pager__img {
  height: 100%;
}

.post-pager__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-pager__bottom-btn {
  margin-top: 24px;
  text-align: center;
}

/*--------------------------------
記事内バナー
---------------------------------*/
.ad-yaritori {
  margin-top: 2em;
  margin-bottom: 40px;
  padding: 30px;
  border: 3px solid var(--main-color);
  border-radius: 10px;
  background-color: #edf6ff;
}

.ad-yaritori__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
}

.ad-yaritori__title span {
  color: var(--main-color);
}

.ad-yaritori__subtitle {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.ad-yaritori__subtitle span {
  color: var(--main-color);
}

.ad-yaritori__links {
  display: flex;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
}

/*--------------------------------
サイドバー
---------------------------------*/
.side-section {
  margin-bottom: 16px;
  padding: 24px;
  background-color: #fff;
  border-radius: 16px;
}
.side-sticky {
  position: fixed;
  top: 96px;
  display: none;
  max-width: 348px;
  z-index: 1;
}
.side-sticky .side-banner:not(:last-child) {
  margin-bottom: 24px;
}

.side-sticky.bottom {
  position: absolute;
  top: auto;
  bottom: 10px;
}

.side-section__title {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: bold;
  padding-left: 1em;
  position: relative;
}

.side-section__title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px;
  background-color: var(--main-color);
  content: "";
}

.article-list__item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dotted #ccc;
}

.article-list__item:last-child {
  margin-bottom: 0;
}

.article-list__link {
  display: flex;
  justify-content: space-between;
  column-gap: 8px;
}

.article-list__thumb {
  flex: 0 1 100px;
}

.article-list__thumb > img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border: 1px solid #eee;
}

.article-list__body {
  flex: 1;
}

.article-list__title {
  font-size: 13px;
  line-height: 1.5;
}

.article-list__title--line2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-list__company {
  font-size: 12px;
  margin-top: 4px;
}

.side-cat__list {
  padding-left: 1.5em;
  list-style: inherit;
  display: grid;
  row-gap: 8px;
}

.side-cat__item {
  font-size: 15px;
  line-height: 1.4;
}

.side-cat__item a:hover {
  color: var(--main-color);
}

.side-section__btn {
  text-align: center;
  margin-top: 16px;
}

.side-section__btn > .btn {
  width: 100%;
}

.tag-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.label-tag {
  display: block;
  font-weight: bold;
  color: var(--main-color);
  background-color: var(--bg-color);
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 4px;
}

.label-tag--sm {
  padding: 6px 8px;
  font-size: 10px;
}
/*--------------------------------
 404
---------------------------------*/
.not-found {
  padding: 32px 0;
}

.not-found__body {
  text-align: center;
}

.not-found__text {
  font-size: 24px;
  line-height: 1.5;
}

.not-found__btn {
  margin-top: 24px;
  text-align: center;
}

.not-found__btn > .btn {
  width: 200px;
}

.cta-box__item .btn {
  width: 100%;
  height: 70px;
  max-width: 400px;
}
@media screen and (max-width:767px) {
  .cta-box__item .btn {
    height: 60px;
  }
}

.cta-box__item .btn-cta__eyecatch {
  font-size: 16px;
}
@media screen and (max-width:767px) {
  .cta-box__item .btn-cta__eyecatch {
    font-size: 12px;
  }
}

.cta-box__item .btn-cta__title {
  font-size: 20px;
}
@media screen and (max-width:767px) {
  .cta-box__item .btn-cta__title {
    font-size: 16px;
  }
}

.cta-box__item .btn-cta__subtitle {
  font-size: 14px;
}
@media screen and (max-width:767px) {
  .cta-box__item .btn-cta__subtitle {
    font-size: 12px;
  }
}

.cta-box__item .btn-cta__eyecatch::before,
.cta-box__item .btn-cta__eyecatch::after {
  width: 15px;
  height: 1px;
}

.cta-box__item .btn-cta__eyecatch::before {
  margin-right: 8px;
}

.cta-box__item .btn-cta__eyecatch::after {
  margin-left: 8px;
}

/*--------------------------------
イベント(ウェビナー)
---------------------------------*/
.logo {
  background: #f3f7f9;
}

.logo__inner {
  width: 100%;
  padding: 40px 0 40px 9.6vw;
}

.logo img {
  width: 180px;
  height: 40px;
  object-fit: contain;
}

.event {
  background: #f3f7f9;
}

.event__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1160px;
  width: 100%;
  height: 100%;
  padding: 20px 5px 95px 30px;
  margin: 0 auto;
}

.event-head {
  font-family: Hiragino Kaku Gothic Pro;
  padding-bottom: 46px;
  margin-left: 7.37vw;
}

.event-detail {
  padding-bottom: 130px;
  flex-basis: 60%;
}

.event__form-title {
  color: #33475b;
  font-weight: bold;
  letter-spacing: 0.07885em;
  margin: -13px 0 19px 0;
}

.event-detail__title {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 2.125rem;
  line-height: 1.29;
  letter-spacing: 0.0770117647em;
  margin-bottom: 36px;
  color: #00001a;
  font-weight: bold;
}

.event-detail__date {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.57;
  letter-spacing: 0.1190285714em;
}

.event-contents {
  width: 100%;
  padding: 60px 12vw 39px 7.3vw;
  background: #fff;
}

.event-contents__inner {
  max-width: 800px;
}

.event-contents__seminar-img {
  width: 100%;
}

.event-contents__seminar-img img {
  height: 26.4vw;
  object-fit: contain;
}

.event-contents__title {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 1.5625rem;
  margin-top: 88px;
  margin-bottom: 23px;
  line-height: 1.52;
  letter-spacing: 0.0876em;
  color: #00001a;
  font-weight: bold;
}

.event-contents__title:nth-of-type(n + 2) {
  margin-bottom: 19px;
}

.event-detail__lead {
  font-family: Hiragino Kaku Gothic Pro;
  font-size: 0.9375rem;
  line-height: 2.1333333;
  letter-spacing: 0.1076em;
}

.event-detail__lead:not(:last-child) {
  margin-bottom: 2.13em;
}

.event-contents__desc {
  font-size: 0.9375rem;
  margin-bottom: 2.13em;
  line-height: 2.1333333;
  letter-spacing: 0.1076em;
}

.webinar-list__item {
  display: flex;
  flex-direction: column;
}

/* イベントフォーム */

.event__form-wrapper {
  position: sticky;
  top: 40px;
  width: 100%;
  flex-basis: 40%;
  /*margin-left: -7.4vw;*/
}

.event__form {
  width: 98%;
  padding: 66px 7% 70px 7%;
  background: #b1cdff;
}

/*--------------------------------
yaritoriAI ページ
---------------------------------*/
.yaritoriai {
  position: relative;
}

.yaritoriai::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("img/yaritoriai/yaritoriai_bg.webp") center/cover no-repeat;
  z-index: -1;
}

.yaritoriai__inner {
  position: relative;
  z-index: 1;
}

.yaritoriai-heading {
  text-align: center;
}

.yaritoriai-heading--left {
  text-align: left;
}

.yaritoriai-heading__subtitle {
  font-size: 40px;
  background: -webkit-linear-gradient(-90deg, #4f8ce7, #61dced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yaritoriai-heading__title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 16px;
  position: relative;
}

.yaritoriai-heading__title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #6fb1fc;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.yaritoriai-mv {
  padding: 80px 24px;
}

.yaritoriai-mv__logo {
  text-align: center;
  margin-bottom: 2em;
}

.yaritoriai-mv__title {
  text-align: center;
  font-size: 44px;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 1em;
}

.yaritoriai-mv__title-lg {
  font-size: 48px;
}

.yaritoriai-mv__title-xl {
  font-size: 56px;
}

.yaritoriai-mv__desc {
  font-size: 24px;
  line-height: 1.7;
  margin-top: 2em;
  text-align: center;
  font-weight: bold;
}

.yaritoriai-mv__cta {
  text-align: center;
  margin-top: 4em;
}

.yaritoriai-mv__video {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.yaritoriai-mv__video iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}

/* yaritori AIとは */
.yaritoriai-about {
  padding: 80px 16px;
}

.yaritoriai-heading__desc {
  font-size: 32px;
  line-height: 1.7;
  margin-top: 1.5em;
  text-align: center;
  font-weight: bold;
}

.yaritoriai-about__video {
  max-width: 848px;
  margin: 0 auto;
  text-align: center;
  margin-top: 3.5em;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.yaritoriai-about__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}

.yaritoriai-skills {
  padding: 80px 16px;
}

.yaritoriai-skills__container {
  max-width: 1000px;
  margin: 0 auto;
}

.yaritoriai-skills__heading {
  margin-bottom: 2.5em;
  margin-left: 80px;
}

.yaritoriai-skills__body {
  margin-top: 3.5em;
}

/* .yaritoriai-skills__title {
  font-size: 84px;
  margin-bottom: 8px;
  color: red;
  background: -webkit-linear-gradient(-90deg, #4f8ce7, #61dced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yaritoriai-skills__subtitle {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-left: 1.2em;
}

.yaritoriai-skills__subtitle::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  background: linear-gradient(to bottom, #4f8ce7, #61dced);
  border-radius: 50%;
} */

.yaritoriai-skills__item:not(:last-child) {
  margin-bottom: 5em;
}

.yaritoriai-skills-box {
  display: flex;
  align-items: center;
  position: relative;
}

.yaritoriai-skills-box__body {
  border-radius: 10px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.7);
  width: 630px;
  height: 430px;
  display: flex;
  align-items: center;
  padding-left: 8%;
}

.yaritoriai-skills-box__img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 59%;
}

.yaritoriai-skills-box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yaritoriai-skills-box__subtitle {
  display: block;
  background: -webkit-linear-gradient(-90deg, #4f8ce7, #61dced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  margin-bottom: 1em;
}

.yaritoriai-skills-box__subtitle::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #6fb1fc;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: 2px;
}

.yaritoriai-skills-box__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
}

.yaritoriai-skills-box__text {
  font-size: 16px;
  line-height: 1.7;
}

.yaritoriai-skills__item--reverse .yaritoriai-skills-box {
  justify-content: flex-end;
}

.yaritoriai-skills__item--reverse .yaritoriai-skills-box__body {
  padding-left: 0;
  padding-right: 8%;
  justify-content: flex-end;
}

.yaritoriai-skills__item--reverse .yaritoriai-skills-box__img {
  left: 0;
}

/* その他の機能 */
.yaritoriai-other {
  padding: 40px 16px;
}

.yaritoriai-other__container {
  max-width: 1230px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.08);
  padding: 80px 72px;
}

.yaritoriai-other-heading {
  text-align: center;
}

.yaritoriai-other-heading__subtitle {
  font-size: 24px;
  background: -webkit-linear-gradient(-90deg, #4f8ce7, #61dced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.yaritoriai-other__list {
  display: flex;
  justify-content: space-between;
  column-gap: 32px;
}

.yaritoriai-other-heading__subtitle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -16px);
  width: 6px;
  height: 6px;
  background-color: #6fb1fc;
  border-radius: 50%;
}

.yaritoriai-other-heading__title {
  font-size: 32px;
  font-weight: bold;
  margin-top: 24px;
  position: relative;
}

.yaritoriai-other-heading__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
  text-align: center;
}

.yaritoriai-other__body {
  margin-top: 56px;
}

.yaritoriai-other__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  overflow: hidden;
}

.yaritoriai-other__item {
  text-align: center;
}

.yaritoriai-other__title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 1em;
}

.yaritoriai-other__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 0.5em;
}

/* yaritori AIの特徴 */
.yaritoriai-feature {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}

.yaritoriai-feature__body {
  margin-top: 3.5em;
}

.yaritoriai-feature__list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.yaritoriai-feature-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 32px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.08);
  padding: 56px 72px;
}

.yaritoriai-feature-box:nth-child(even) {
  flex-direction: row-reverse;
}

.yaritoriai-feature-box__body {
  flex: 0 1 60%;
}

.yaritoriai-feature-box__number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  background: -webkit-linear-gradient(-90deg, #4f8ce7, #61dced);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.yaritoriai-feature-box__title {
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0.8em;
  text-align: center;
}

.yaritoriai-feature-box__desc {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.yaritoriai-feature-box__img {
  margin-top: 1em;
}

.yaritoriai-feature-box__img--01 {
  position: relative;
  width: 170px;
  height: 170px;
}

.yaritoriai-feature-box__img--01 > * {
  position: absolute;
}

/* yaritoriの導入は１分で完了！マニュアルは不要。 */
.yaritoriai-cta {
  background-color: #fff6f1;
  background-image: url(img/yaritoriai/yaritoriai-cta_bg-right.webp),
    url(img/yaritoriai/yaritoriai-cta_bg-left.webp);
  background-repeat: no-repeat;
  background-size: 16%, 16%;
  background-position: right top, left bottom;
}

.yaritoriai-cta__container {
  max-width: 950px;
  padding: 80px 0;
  margin: 0 auto;
}

.yaritoriai-cta-heading {
  text-align: center;
}

.yaritoriai-cta-heading__title {
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 1.5em;
  color: #f25816;
}

.yaritoriai-cta-heading__desc {
  font-size: 24px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 1em;
}

.yaritoriai-cta-heading__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1em;
}

.yaritoriai-cta__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  margin-top: 6.5em;
}

.yaritoriai-cta-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.08);
  padding: 48px;
}

.yaritoriai-cta-card__inner {
  margin-top: -132px;
}

.yaritoriai-cta-card__img {
  max-width: 213px;
  margin: 0 auto;
  margin-bottom: 1em;
}

.yaritoriai-cta-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yaritoriai-cta-card__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1.5em;
  text-align: center;
}

.yaritoriai-cta-card .btn {
  width: 100%;
  text-align: center;
}

/* メリット */
.yaritoriai-merit {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
  z-index: -1;
}

.yaritoriai-merit .yaritoriai-heading__desc {
  margin-top: 1.5em;
  position: relative;
  z-index: 10;
}

.yaritoriai-merit__body {
  margin-top: -3.5em;
}

.yaritoriai-merit__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.yaritoriai-merit__item {
  position: relative;
  width: 100%;
  max-width: 530px;
  text-align: center;
  padding-top: 32px;
}

/* ▼▼▼ 波紋レイヤー（カードの兄弟要素として配置） ▼▼▼ */
.yaritoriai-merit__ripple-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  /* カードの中心から広がる */
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  z-index: 0;
  /* カード(z-index:2)より後ろ */
  pointer-events: none;
}

/* 各波紋（円） */
.yaritoriai-merit__ripple-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #d2ebff;
  /* box-sizing: border-box;
  background: transparent; */
}

/* サイズ定義 */
.yaritoriai-merit__ripple-ring-0 {
  width: 400px;
  height: 400px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(62, 134, 255, 0.1);
  border: none;
  z-index: 1;
}

.yaritoriai-merit__ripple-ring-1 {
  width: 690px;
  height: 690px;
  border: 1px solid #d0ebff;
}

.yaritoriai-merit__ripple-ring-2 {
  width: 1000px;
  height: 1000px;
  background: rgba(160, 193, 255, 0.1);
  border: none;
}

.yaritoriai-merit__ripple-ring-3 {
  width: 1400px;
  height: 1400px;
  background: rgba(160, 193, 255, 0.05);
  border: none;
}

.yaritoriai-merit__ripple-ring-4 {
  width: 1700px;
  height: 1700px;
}
/* ▲▲▲ 波紋設定ここまで ▲▲▲ */

/* ステージバッジ */
.yaritoriai-merit__badge {
  display: inline-block;
  background: #4984f2;
  color: #fff;
  padding: 6px 20px;
  border-radius: 24px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(70, 198, 255, 0.4);
}

.yaritoriai-merit__badge.gradient {
  background: linear-gradient(135deg, #4f8ce7 0%, #61dced 50%, #6deeb3 100%);
}

.yaritoriai-merit__title {
  font-size: 32px;
  color: #4a80f0;
  font-weight: bold;
  margin-bottom: 30px;
}

/* 矢印 */
.yaritoriai-merit__arrow-divider {
  align-self: center;
  z-index: 5;
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  z-index: 5;
  width: 182px;
  height: 65px;
}

.yaritoriai-merit__arrow-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* AIのエキスパートによる支援も可能です。 */
.yaritoriai-support {
  background-color: #edf6ff;
  padding: 80px 0;
  background-image: url(img/yaritoriai/yaritoriai-support_bg.webp);
  background-repeat: no-repeat;
  background-size: 31%;
  background-position: 18% -90px;
}
.yaritoriai-support__container {
  max-width: 650px;
  margin: 0 auto;
}

.yaritoriai-support-heading {
  text-align: center;
}

.yaritoriai-support-heading__subtitle {
  font-size: 20px;
  background-color: #dde7ed;
  display: inline-block;
  padding: 8px 16px;
  font-weight: bold;
  border-radius: 100px;
  color: #4984f2;
}

.yaritoriai-support-heading__title {
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  margin-top: 1em;
  position: relative;
  margin-bottom: 1.5em;
}

.yaritoriai-support-heading__desc {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 1em;
  text-align: center;
}

.yaritoriai-support__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 32px;
}

.yaritoriai-support__desc {
  flex: 1;
}

.yaritoriai-support__desc p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 1em;
}

.yaritoriai-support__desc p:last-child {
  margin-bottom: 0;
}

.yaritoriai-support__img {
  flex: 0 1 180px;
}

.yaritoriai-support__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------
メール配信システム delivery
---------------------------------*/
/* delivery レイアウト */
.delivery-container {
  max-width: 1048px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.delivery-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-btn-eyecatch {
  display: inline-block;
  font-size: 20px;
  margin-bottom: 0.4em;
  position: relative;
}

.delivery-btn-eyecatch::before,
.delivery-btn-eyecatch::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--text-color);
}

.delivery-btn-eyecatch::before {
  left: -12%;
  transform: rotate(60deg);
}

.delivery-btn-eyecatch::after {
  right: -12%;
  transform: rotate(-60deg);
}

.delivery-btn-eyecatch .highlight {
  font-weight: bold;
  font-size: 1.2em;
}

.delivery-btn {
  display: inline-block;
  min-width: 320px;
  padding: 1em 2em;
  border-radius: 100px;
  background: linear-gradient(180deg, #ff7e2f, #f6531d);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.delivery-btn:hover {
  transform: translateY(4px);
}

.delivery-btn__text {
  position: relative;
  padding-left: 24px;
}

.delivery-btn__text::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("img/site-delivery/icon_file.svg") no-repeat center / contain;
}

.delivery-btn::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  content: "";
  width: 16px;
  height: 16px;
  background: url("img/site-delivery/icon_arrow-right.svg") no-repeat center /
    contain;
}

/* delivery ヘッダー */
.delivery-header {
  padding: 24px 0;
}

.delivery-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}

.delivery-header__logo {
  width: 180px;
}

.delivery-header__logo-img {
  width: 100%;
  height: auto;
}

.delivery-header__contact {
  display: flex;
  align-items: center;
  column-gap: 8px;
}

.delivery-header__tel {
  font-size: 24px;
  font-weight: bold;
}

.delivery-header__tel-icon {
  width: 18px;
  height: auto;
  margin-right: 6px;
  position: relative;
  top: -4px;
}

.delivery-header__tel-link {
  color: var(--text-color);
}

.delivery-header__hours {
  font-size: 14px;
}

.delivery-header__cta {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

.delivery-header__cta .delivery-btn {
  min-width: 240px;
  font-size: 16px;
}

.delivery-header__cta .delivery-btn__text::before {
  width: 18px;
  height: 18px;
  left: -2px;
}

/* delivery メインビジュアル */
.delivery-mv__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 80px 88px;
  display: flex;
  align-items: center;
  column-gap: 64px;
}

.delivery-mv__contents {
  flex: 0 1 48%;
}

.delivery-mv__figure {
  flex: 1;
}

.delivery-mv__figure-img {
  width: 360px;
  max-width: 400px;
  height: auto;
}

.delivery-mv__subtitle {
  width: fit-content;
  font-size: 24px;
  font-weight: bold;
  background-image: url(img/site-delivery/img_balloon.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 152px 53px;
  padding: 1em 1em 1.3em 1em;
  margin-bottom: -0.8em;
  margin-left: -0.5em;
}

.delivery-mv__title {
  font-size: 40px;
  font-size: clamp(32px, 3.2vw, 40px);
  line-height: 1.5;
  font-weight: bold;
}

.delivery-mv__title .hightlight {
  color: var(--main-color);
  font-size: 1.2em;
}

.delivery-mv__btn {
  margin-top: 32px;
}

/* delivery 問題点 */
.section-delivery-problem {
  padding: 64px 0 100px;
  position: relative;
}

.section-delivery-problem::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -64px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 120px 0 120px;
  border-color: var(--delivery-bg-color) transparent transparent transparent;
}

.delivery-problem-heading__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}

.delivery-problem-heading__title .highlight {
  color: var(--delivery-main-color);
}

.delivery-problem-heading__title--sm {
  font-size: 0.6em;
}

.delivery-problem-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  background-color: #fff;
  padding: 32px 56px;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
}

.delivery-problem-list__item {
  font-size: 20px;
  line-height: 1.7;
  font-weight: bold;
  position: relative;
}

.delivery-problem-list__item::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -1.6em;
  width: 24px;
  height: 24px;
  background-image: url("img/site-delivery/icon_check.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.delivery-problem-list::after {
  content: "";
  position: absolute;
  right: -132px;
  bottom: -24px;
  width: 200px;
  height: 150px;
  background: url("img/site-delivery/problem.webp") no-repeat center / contain;
}

/* delivery 解決策 */
.section-delivery-solution {
  padding: 100px 0 80px;
}

.delivery-solution-heading {
  text-align: center;
  margin-bottom: 40px;
}

.delivery-solution-heading__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
}

.delivery-solution-heading__title--sm {
  font-size: 20px;
  display: block;
}

.delivery-solution-heading__subtitle {
  font-size: 20px;
  line-height: 1.7;
  margin-top: 1em;
}

.delivery-solution-heading__title .highlight {
  color: var(--main-color);
}

.delivery-solution__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
  position: relative;
}

.delivery-solution__list::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -88px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 120px 0 120px;
  border-color: var(--delivery-bg-color) transparent transparent transparent;
}

.delivery-solution-card {
  padding: 40px 32px;
  border: 3px solid #dde5f4;
}

.delivery-solution-card {
  counter-increment: solution-number;
  position: relative;
}

.delivery-solution-card::before {
  content: counter(solution-number);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--main-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.delivery-solution-card__title {
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.delivery-solution-card__figure {
  margin-top: 24px;
}

.delivery-solution-card__figure-img {
  width: 100%;
  height: auto;
}

.delivery-solution__more {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  margin-top: 40px;
  margin-bottom: 48px;
  position: relative;
  color: var(--main-color);
}

.delivery-solution-feature__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}

.delivery-solution-feature__title .highlight {
  color: var(--main-color);
}

.delivery-reply {
  max-width: 800px;
  margin: 0 auto;
}

.delivery-reply__img {
  width: 100%;
  height: auto;
}

.delivery-reply__note {
  font-size: 12px;
  margin-top: 0.4em;
}

.delivery-solution-message {
  padding: 56px 24px;
  background-color: var(--delivery-bg-color);
  margin-top: 64px;
  position: relative;
}

.delivery-solution-message::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 0;
  width: 150px;
  height: 160px;
  background: url("img/site-delivery/happy.webp") no-repeat;
  background-size: contain;
}

.delivery-solution-message__title {
  font-size: 24px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.delivery-solution-message__title .highlight1 {
  font-size: 1.2em;
}

.delivery-solution-message__title .highlight2 {
  color: var(--main-color);
  font-size: 1.6em;
}

.delivery-cta {
  padding: 64px 24px;
  background-color: var(--delivery-bg-color-cta);
}

.delivery-cta-heading__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
}

.delivery-cta-heading__title .highlight {
  color: var(--main-color);
}

.delivery-cta__btn {
  margin-top: 32px;
  text-align: center;
}

.delivery-cta--bg-img {
  background-image: url("img/site-delivery/bg_cta.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.delivery-cta--bg-img .delivery-cta-heading__title {
  color: #fff;
}

.delivery-cta--bg-img .delivery-cta-heading__title .highlight {
  color: #fff;
}

.delivery-cta--bg-img .delivery-btn-eyecatch {
  color: #fff;
}

.delivery-cta--bg-img .delivery-btn-eyecatch::before,
.delivery-cta--bg-img .delivery-btn-eyecatch::after {
  background: #fff;
}

/* delivery 導入までの流れ */
.section-delivery-flow {
  padding: 80px 0;
}

.delivery-flow-heading {
  text-align: center;
  margin-bottom: 56px;
  text-align: center;
}

.delivery-flow-heading__title {
  font-size: 32px;
  line-height: 1.4;
  font-weight: bold;
}

.delivery-flow-heading__subtitle {
  font-size: 20px;
  line-height: 1.7;
  margin-top: 1em;
}

.delivery-flow-heading__subtitle .highlight {
  color: var(--main-color);
  font-weight: bold;
}

.delivery-flow__list {
  max-width: 740px;
  margin: 0 auto;
  display: grid;
  row-gap: 48px;
}

.delivery-step {
  display: flex;
  column-gap: 32px;
  position: relative;
}

.delivery-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 32px 0 32px;
  border-color: #dfe7f9 transparent transparent transparent;
}

.delivery-step__icon {
  flex: 0 0 80px;
}

.delivery-step__body {
  flex: 1;
}

.delivery-step__subtitle {
  font-size: 18px;
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 0.5em;
}

.delivery-step__title {
  font-size: 24px;
  font-weight: bold;
}

.delivery-step__desc {
  margin-top: 0.5em;
  font-size: 16px;
  line-height: 1.7;
}

.delivery-step__desc-note {
  font-size: 0.8em;
  color: var(--main-color);
}

.delivery-step__desc .highlight {
  color: var(--main-color);
  font-weight: bold;
}

/* delivery 資料請求 */
.section-delivery-form {
  padding: 80px 0;
}

.delivery-form {
  max-width: 600px;
  margin: 0 auto;
}

/* delivery フッター */
.delivery-footer {
  padding: 40px 0;
  background-color: var(--delivery-main-color);
}

.delivery-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.delivery-footer__logo {
  flex: 0 0 132px;
}

.delivery-footer-nav__list {
  display: flex;
  column-gap: 24px;
}

.delivery-footer-nav__item {
  font-size: 14px;
}

.delivery-footer-nav__link {
  color: #fff;
}

.delivery-footer__copyright {
  font-size: 12px;
  color: #fff;
}

.delivery-footer__logo-img {
  width: 100%;
  height: auto;
}

.delivery-fixed-footer {
  display: none; /* PCでは非表示 */
}

/* ユーザーガイド */
.userguide-search__wrapper {
  max-width: 416px;
  width: 100%;
  margin: 0 auto;
}

.userguide-search__text {
  line-height: 150%;
}

.userguide-search {
  border: 1px solid var(--text-color);
  padding: 7px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.userguide-search__icon {
  flex: 0 0 auto;
}

.userguide-search__inputs {
  flex: 1;
  min-width: 0;
}

.userguide-search input {
  width: 100%;
  height: 100%;
}

.userguide-search input::placeholder {
  color: #B2B2B2;
}

.userguide-tabs {
  margin-top: 38px;
  justify-content: center;
  display: flex;
  gap: 40px;
  margin-bottom: 58px;
}

.userguide-tabs__tab {
  border: 2px solid var(--main-color);
  color: var(--main-color);;
  padding-inline: 22px;
  height: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  width: 280px;
}

.userguide-tabs__tab.is-active,
.userguide-tabs__tab:hover {
  background-color: var(--main-color);
  color: #fff;
}

.userguide-detail {
  margin-bottom: 56px;
}

.userguide-detail__inner {
  display: flex;
  column-gap: 32px;
}

.userguide-side {
  flex: 0 1 300px;
}

.userguide-detail-main {
  flex: 1;
  min-width: 0;
}

.userguide-side__title {
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  border-radius: 5px;
  background-color: var(--bg-color);
}

.userguide-main__bottom-btn {
  margin-top: 32px;
  text-align: center;
}

.userguide-side__item > a {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  padding: 20px 8px;
  border-bottom: 1px dotted #ccc;
}

.userguide-main__title {
  font-size: 32px;
  line-height: 1.7;
  font-weight: bold;
  margin-bottom: 24px;
}

.userguide-main__contents > p {
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 1.5em;
}

.userguide-main__contents > ul {
  list-style: auto;
  padding-left: 1.3em;
  margin-bottom: 1em;
  max-width: 100%;
}

.userguide-main__contents > ul > li {
    line-height: 1.7;
    margin-bottom: 0.2em;
}

.userguide-main__contents > ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
  max-width: 100%;
}

.userguide-main__contents > ol > li {
  line-height: 1.7;
  margin-bottom: 0.6em;
}

.userguide-main__contents li img {
  margin-top: 12px;
}

.userguide-main__contents img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ユーザーガイド本文のはみ出し対策 */
.userguide-main__contents {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.userguide-main__contents li {
  overflow-wrap: anywhere;
}


/* ユーザーガイド用ヘッダー */
.header .gnav__list .is-userguide-header > a {
  font-size: 16px;
}
.header .gnav__list .is-highlight > a {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 22px;
  width: 156px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  margin-left: 36px;
}

/* 2026/5/11 追記 */
/* スタートアップ向け特別プログラム */
.startups {}

.startups__heading {
  padding: 40px 50px 80px;
  background: linear-gradient(126deg, #E6F5FF 0%, #EAFFFA 100%);
}

.startups__heading-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.startups__heading-primary {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width:768px) {
  .startups__heading-primary {
    gap: 10px;
  }
}

.startups__heading-primary-en {
  /* 40 74 */
  font-size: clamp(2.5rem, 1.752rem + 3.19vw, 4.625rem);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(120deg, var(--main-color) 9.49%, #00E4A1 90.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.startups__heading-primary-jp {
  display: block;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--main-color);
}
@media (max-width:768px) {
  .startups__heading-primary-jp {
    font-size: 14px;
  }
}

.startups__section {
  /* padding: 100px 0; */
  padding: clamp(3.125rem, 2.025rem + 4.69vw, 6.25rem) 0;
}

.startups__section-title {
  text-align: center;
  /* 28 44 */
  /* font-size: 44px; */
  font-size: clamp(1.75rem, 1.398rem + 1.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.5;
  background: linear-gradient(120deg, #0385FE 9.49%, #00E4A1 90.48%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.startups__lead-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  line-height: calc(41 / 34);
}
@media (max-width:768px) {
  .startups__lead-title {
    font-size: 24px;
    line-height: 1.3;
  }
}

.startups__contents-inner {
  max-width: calc(1200px + (20px * 2));
  margin-inline: auto;
  padding: 0 20px;
}

.startups__lead-content {
  display: flex;
  align-items: center;
  gap: 84px;
}
@media (max-width:1240px) {
  .startups__lead-content {
    justify-content: center;
    gap: 24px;
  }
}
@media (max-width:768px) {
  .startups__lead-content {
    margin-top: 30px;
    flex-direction: column;
    justify-content: initial;
    gap: 16px;
  }
}

.startups__lead-body {
  flex: 1;
}
@media (max-width:1240px) {
  .startups__lead-body {
    flex: initial;
  }
}

.startups__lead-text {
  /* 14 24 */
  font-size: clamp(0.875rem, 0.655rem + 0.94vw, 1.5rem);
  font-weight: 500;
  line-height: 1.6;
}

.startups__lead-text + .startups__lead-text {
  margin-top: 1em;
}

.startups__lead-img {
  flex: 0 0 510px;
  position: relative;
  transform: translateX(16px);
}
@media (max-width:1240px) {
  .startups__lead-img {
    flex: 0 0 42.5%;
    transform: none;
  }
}
@media (max-width:768px) {
  .startups__lead-img {
    flex: initial;
  }
}

.startups__lead-img img {
  width: 100%;
  object-fit: cover;
}

.startups__outline-inner {
  max-width: calc(1000px + (20px * 2));
  margin-inline: auto;
  padding: 0 20px;
}

.startups__outline-content {
  margin-top: 88px;
}
@media (max-width:768px) {
  .startups__outline-content {
    margin-top: 30px;
  }
}

.startups__outline-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width:768px) {
  .startups__outline-list {
    gap: 18px;
  }
}

.startups__outline-item {
  padding-left: 20px;
  display: flex;
}
@media (max-width:768px) {
  .startups__outline-item {
    flex-direction: column;
    padding-left: 0;
  }
}

.startups__outline-item:not(:last-of-type) {
  padding-bottom: 28px;
  border-bottom: 1px solid #C2C2C2;
}
@media (max-width:768px) {
  .startups__outline-item:not(:last-of-type) {
    padding-bottom: 18px;
  }
}

.startups__outline-term {
  flex: 0 0 350px;
  color: #7A7A7A;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width:768px) {
  .startups__outline-term {
    flex: initial;
    font-size: 14px;
  }
}

.startups__outline-desc {
  flex: 1 1 auto;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width:768px) {
  .startups__outline-desc {
    margin-top: 4px;
    flex: initial;
    font-size: 14px;
  }
}

.startups__form {
  padding: 100px 0 120px;
  background: linear-gradient(126deg, #E6F5FF 0%, #EAFFFA 100%);
}

.startups__form-inner {
  max-width: 800px;
  margin-inline: auto;
}

.startups__form-content {
  margin-top: 60px;
}
@media (max-width:768px) {
  .startups__form-content {
    margin-top: 30px;
  }
}

.startups__form-lead {
  padding: 0 20px;
}

.startups__form-lead-text {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width:768px) {
  .startups__form-lead-text {
    font-size: 14px;
  }
}

.startups__form-contact {
  /* margin-top: 60px; */
  margin-top: 0;
}
@media (max-width:768px) {
  .startups__form-contact {
    /* margin-top: 30px; */
  }
}

/* メディアクエリ：820px以下 */
@media screen and (max-width: 820px) {
  .delivery-header {
    padding: 16px 0;
  }
  .delivery-header__logo {
    width: 140px;
  }
  .delivery-btn-eyecatch {
    font-size: 16px;
  }

  .delivery-btn {
    min-width: 260px;
    font-size: 16px;
  }

  .delivery-header__cta {
    display: none;
  }

  .delivery-mv__inner {
    padding: 0 24px 32px;
    column-gap: 40px;
  }

  .delivery-mv__btn {
    margin-top: 24px;
  }

  .delivery-mv__figure-img {
    width: 100%;
  }

  .section-delivery-problem {
    padding: 32px 0 48px;
    position: relative;
  }

  .delivery-problem-list::after {
    right: -4%;
    width: 140px;
    height: 120px;
  }

  .delivery-solution-card {
    padding: 24px 16px;
  }

  .delivery-solution-card__title {
    font-size: 16px;
  }

  .section-delivery-problem::after {
    bottom: -48px;
    border-width: 32px 80px 0 80px;
  }

  .section-delivery-solution {
    padding: 64px 0 32px;
  }

  .delivery-solution-message::after {
    right: -16px;
    width: 80px;
    height: 90px;
  }

  .delivery-cta {
    padding: 32px 16px;
  }

  .section-delivery-flow {
    padding: 32px 0;
  }

  @media screen and (max-width: 767px) {
    .delivery-container {
      padding: 0 16px;
    }

    .delivery-mv__inner {
      flex-direction: column;
      row-gap: 24px;
    }

    .delivery-problem-heading__title {
      font-size: 24px;
    }

    .delivery-problem-list {
      row-gap: 8px;
      padding: 16px;
      padding-left: 2.4em;
    }

    .delivery-problem-list__item {
      font-size: 14px;
    }

    .delivery-problem-list__item::before {
      width: 16px;
      height: 16px;
    }

    .delivery-problem-list::after {
      bottom: -8px;
      width: 100px;
      height: 70px;
    }

    .delivery-solution-heading__title {
      font-size: 24px;
    }

    .delivery-solution-heading__subtitle {
      font-size: 16px;
    }

    .delivery-solution__list {
      grid-template-columns: 1fr;
      row-gap: 32px;
    }

    .delivery-solution-card {
      padding: 32px 16px;
    }

    .delivery-solution-card__title {
      font-size: 24px;
    }

    .delivery-solution__list::after {
      bottom: -64px;
      border-width: 32px 80px 0 80px;
    }

    .delivery-solution__more {
      margin-top: 24px;
      margin-bottom: 32px;
    }

    .delivery-solution-feature__title {
      font-size: 24px;
      margin-bottom: 24px;
    }

    .delivery-solution-message {
      padding: 32px 16px;
      margin-top: 40px;
    }

    .delivery-solution-message__title {
      font-size: 16px;
    }

    .delivery-cta-heading__title {
      font-size: 24px;
    }

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

    .delivery-flow-heading {
      margin-bottom: 32px;
    }

    .delivery-flow-heading__title {
      font-size: 24px;
    }

    .delivery-flow-heading__subtitle {
      font-size: 16px;
    }

    .delivery-step {
      flex-direction: column;
      align-items: center;
      row-gap: 16px;
    }

    .delivery-step:not(:last-child)::after {
      bottom: -32px;
    }

    .delivery-step__subtitle {
      text-align: center;
      font-size: 16px;
    }

    .delivery-step__title {
      text-align: center;
      font-size: 20px;
    }

    .section-delivery-form {
      padding: 32px 0;
    }

    .delivery-footer {
      padding: 32px 0 88px;
    }

    .delivery-footer__inner {
      flex-direction: column;
      row-gap: 16px;
    }

    .delivery-footer__logo {
      flex: 1;
    }

    .delivery-footer__logo-img {
      width: 140px;
    }
    .delivery-fixed-footer {
      display: flex;
      position: fixed;
      align-items: center;
      column-gap: 8px;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 12px;
      box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
      z-index: 100;
    }

    .delivery-fixed-footer__tel {
      flex: 0 1 45%;
      display: flex;
      align-items: center;
      flex-direction: column;
    }

    .delivery-fixed-footer__tel-link {
      display: flex;
      color: var(--text-color);
      text-decoration: none;
      font-weight: bold;
      text-align: center;
    }

    .delivery-fixed-footer__tel-icon {
      width: 12px;
      margin-right: 2px;
      position: relative;
      top: 1px;
    }

    .delivery-fixed-footer__tel-num {
      font-size: 18px;
      font-weight: bold;
    }

    .delivery-fixed-footer__tel-hours {
      font-size: 11px;
      display: block;
      text-align: center;
    }

    .delivery-fixed-footer__cta {
      flex: 1;
    }

    .delivery-fixed-footer__cta .delivery-btn {
      width: 100%;
      min-width: 100%;
      font-size: 14px;
    }
  }

  /*--------------------------------
1300px〜1070px
---------------------------------*/
  @media (max-width: 1350px) and (min-width: 1071px) {
    .event-detail__title {
      font-size: 2.42vw;
    }
  }

  /*--------------------------------
1120px以下
---------------------------------*/
  @media screen and (max-width: 1120px) {
    .page-header2__inner {
      background-size: 360px 280px, 164px 164px, 164px 164px;
      background-position: calc(50% - 400px) 32%, calc(50% - -380px) 88%,
        calc(50% - -296px) 1%;
    }
  }

  /*--------------------------------
1070px以下
---------------------------------*/
  @media screen and (max-width: 1070px) {
    .sub-header {
      display: none;
    }

    .sp-gnav-sub-header {
      display: block;
    }

    .header__nav {
      position: fixed;
      top: 0;
      right: 0;
      display: block;
      width: 220px;
      height: 100%;
      transform: translateX(220px);
      transition: all 0.3s ease;
      z-index: 10;
      background-color: #fff;
      align-items: flex-start;
      justify-content: center;
      padding: 64px 24px 16px 24px;
    }

    .header__nav.is-show {
      transform: translateX(0);
      box-shadow: -10px 0 35px -20px rgba(0, 0, 0, 0.25);
    }

    .header__cta {
      flex-direction: column;
      row-gap: 8px;
    }

    .header__cta .btn-cta__title {
      font-size: 11px;
    }

    .gnav {
      margin-bottom: 24px;
    }

    .gnav__list {
      display: flex;
      width: 100%;
      align-items: flex-start;
      flex-direction: column;
    }

    .gnav__list li {
      width: 100%;
    }

    .gnav__list a {
      font-size: 15px;
      width: 100%;
      display: block;
    }

    .gnav__list a:hover {
      color:v;
    }

    .gnav__list li:not(:last-child) {
      margin-right: 0;
    }

    .gnav__list .menu-item-has-children > a:hover::before {
      border-top: 4px solid var(--text-color);
    }

    .gnav__list .btn {
      font-size: 13px;
    }

    .gnav__list .gnav__btn:not(:last-child) {
      margin-top: 4px;
      margin-bottom: 12px;
      margin-right: 0;
      margin-left: 0;
    }

    .gnav__list .gnav__btn {
      width: 100%;
    }

    /* グロナビの下層表示 */
    .gnav__list .menu-item-has-children .sub-menu {
      position: relative;
      left: 0;
      top: 0;
      width: 100%;
      visibility: visible;
      opacity: 1;
      display: none;
      transition: none;
      box-shadow: none;
      padding: 0;
      margin: 8px 0;
      display: block;
    }

    .gnav__list .menu-item-has-children .sub-menu li {
      margin: 0;
    }

    .gnav__list .menu-item-has-children .sub-menu a {
      padding: 8px 16px;
      font-size: 0.9em;
    }

    .gnav__list .menu-item-has-children .sub-menu li.ex-link a {
      background-position: 89% center;
    }

    .gnav__list .menu-item-has-children::before {
      right: 80px;
    }

    .gnav__list .menu-item-has-children.active::before {
      transform: rotate(-45deg);
      top: 6px;
    }

    .gnav__list .menu-item-has-children > a::before {
      top: 12px;
    }

    .sp-gnav-sub-header__list li a {
      font-size: 15px;
      font-weight: bold;
      display: block;
      width: 100%;
    }

    .sp-gnav-sub-header__list li:not(:last-child) {
      margin-bottom: 20px;
    }

    .sub-header__tel span {
      display: block;
      font-weight: normal;
      font-size: 11px;
      margin-top: 2px;
    }

    /* ハンバーガーボタン */
    .btn-menu {
      display: flex;
    }

    .btn-menu {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 40px;
      height: 40px;
      text-align: center;
      z-index: 100;
      padding: 8px;
      outline: none;
      border: none;
      background: none;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      appearance: none;
      background: linear-gradient(180deg, #3f82f9 0%, #2168e8 100%);
      border-radius: 4px;
    }

    .btn-menu__line {
      position: relative;
      left: 0;
      display: block;
      width: 100%;
      height: 2px;
      transition: all 0.4s;
      border-radius: 4px;
      background-color: #fff;
    }

    .btn-menu__line::before,
    .btn-menu__line::after {
      position: absolute;
      display: block;
      content: "";
      width: 100%;
      height: 100%;
      transition: inherit;
      border-radius: 4px;
      background-color: inherit;
    }

    .btn-menu__line::before {
      top: -6px;
    }

    .btn-menu__line::after {
      top: 6px;
    }

    .btn-menu.is-active .btn-menu__line {
      background-color: transparent;
    }

    .btn-menu.is-active .btn-menu__line::before,
    .btn-menu.is-active .btn-menu__line::after {
      top: 0;
      background-color: #fff;
    }

    .btn-menu.is-active .btn-menu__line::before {
      transform: rotate(45deg);
    }

    .btn-menu.is-active .btn-menu__line::after {
      transform: rotate(-45deg);
    }

    /* .single-post .btn-menu {
    display: none;
  } */

    .cta-box--inside {
      padding: 40px 24px;
    }

    .section-cta--bgimage {
      background-image: url(img/sp_bg_cta.webp);
    }

    /* メインビジュアル */
    .mv {
      background-position: -150% -50%;
      background-size: 80%;
    }

    .mv__inner {
      padding: 24px;
      flex-direction: column;
      row-gap: 24px;
    }

    /* 課題 */
    .problem__balloon {
      font-size: 18px;
    }

    .point__img {
      flex: 0 0 60%;
    }

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

    .point__body {
      flex: 1;
    }

    .feature__img {
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      width: 180px;
      margin: 0 auto;
      margin-bottom: 24px;
    }

    .feature__img._03 {
      width: 136px;
    }

    .features__list {
      column-gap: 4%;
    }

    .feature__img img {
      width: 76%;
    }

    /* お知らせ */
    .top-news__inner {
      flex-direction: column;
    }

    /* 料金プラン */
    /* .plan .container {
    padding-left: 0;
    padding-right: 0;
  } */

    /* .plan-list-wrapper {
    position: relative;
  } */

    /* .plan-list {
    overflow-x: auto;
    padding: 14px 20px;
  } */

    .event-head {
      padding-right: 7.24vw;
      padding-left: 7.24vw;
      margin-left: 0;
    }

    .logo__inner {
      padding: 30px 35px 40px;
      margin: 0;
      background: #fff;
    }

    .logo img {
      width: 112px;
      height: 25px;
    }

    .event {
      background: #fff;
    }

    .event-detail__title {
      margin-bottom: 10px;
      font-size: calc((100vw - 415px) / 627 * 12 + 22px);
    }

    .event-head {
      padding-bottom: 35px;
    }

    .event-detail__lead {
      font-size: calc((100vw - 415px) / 627 * -1 + 16px);
    }

    .event-detail {
      width: 100%;
      padding-bottom: 48px;
    }

    .event-detail__date {
      font-size: calc((100vw - 415px) / 627 * 0 + 14px);
    }

    .event-contents {
      padding: 0;
      background: #fff;
    }

    .event-contents__inner {
      width: 100%;
      padding: 0 7.24vw;
    }

    .event-contents__seminar-img {
      padding: 0 20px;
      margin-bottom: 23px;
    }

    .event__inner {
      align-items: center;
      flex-direction: column;
      gap: 32px;
      padding: 0 0 62px;
    }

    .event-contents__seminar-img img {
      width: 100%;
      height: 100%;
    }

    .event-contents__title {
      font-size: calc((100vw - 415px) / 627 * 7 + 18px);
    }

    .event-contents__desc {
      margin-bottom: 17px;
      font-weight: 300;
      font-size: calc((100vw - 415px) / 627 * -1 + 16px);
    }

    .event__form-wrapper {
      position: static;
      width: 93%;
      margin-left: 0;
    }

    .event__form {
      width: 100%;
      background: #3f82f9;
      padding: 55px 8.21vw 30px 8.21vw;
    }

    .event__form-title {
      font-size: 17px;
    }

    .yaritoriai-feature-box__img {
      width: 48%;
    }
  }

  /*--------------------------------
880px以下
---------------------------------*/
  @media screen and (max-width: 850px) {
    .pc-plan-table {
      display: none;
    }

    .sp-plan-table {
      display: block;
    }

    .sp-each-plan-table {
      border: 1px solid #ddd;
      border-bottom: none;
      border-radius: 8px;
      overflow: hidden;
    }

    .sp-each-plan-table:not(:last-child) {
      margin-bottom: 24px;
    }

    .plan-recommended__text {
      position: static;
      transform: translateX(0);
      width: auto;
      top: -12px;
      margin: -24px -12px 12px -12px;
      border-radius: 0;
    }

    .sp-plan-highlight {
      border: 2px solid #48b941;
    }

    .plan-table .plan-title {
      background-color: #fff !important;
    }

    .plan-table th,
    .plan-table td {
      padding: 14px;
      font-size: 14px;
    }

    .plan-table th:first-child {
      width: 64%;
    }

    .plan-func-title {
      padding: 8px 14px !important;
    }

    .event {
      font-size: 14px;
    }

    .event-head {
      padding-bottom: 35px;
    }

    .event-contents__title {
      margin: 68px 0 23px;
    }

    .event-detail__lead {
      font-size: calc((100vw - 415px) / 627 * -1 + 16px);
      line-height: 1.87;
    }
    .page-header2__inner {
      background-size: 330px 220px, 144px 144px, 144px 144px;
      background-position: calc(50% - 358px) 32%, calc(50% - -310px) 83%,
        calc(50% - -282px) 5%;
    }
  }

  /*--------------------------------
以下からSP
---------------------------------*/
  @media screen and (max-width: 768px) {
    body {
      font-size: 15px;
    }

    .pc {
      display: none;
    }
    .sp {
      display: block;
    }

    /* レイアウト */
    .container {
      padding: 0 20px;
    }

    .page-contents {
      padding: 40px 0 48px;
    }

    /* アニメーション */
    .delay-time01,
    .delay-time02 {
      animation-delay: unset;
    }

    /* ボタン */
    .btn {
      width: 100% !important;
      font-size: 14px;
    }

    .btn:hover {
      transform: none;
    }

    /* .btn--sm {
    font-size: 12px;
    padding: 1em 1.5em;
  }

  .btn--lg {
    font-size: 14px;
    padding: 1.2em 1.5em;
  }

  .btn--md {
    padding: 1.2em 1.5em;
  } */

    .btn-cta {
      width: 100%;
      flex-direction: column;
      row-gap: 8px;
    }

    .btn {
      width: 100%;
      padding: 1em;
    }

    .btn:hover {
      transform: none;
    }

    .btn-cta__subtitle {
      font-size: 12px;
    }

    .btn-cta__title {
      font-size: 16px;
    }

    /* コンテンツ途中のCTAエリア */
    .section-cta {
      padding: 40px 0;
    }

    .section-cta {
      padding: 40px 0;
    }

    .cta-box__title {
      font-size: 22px;
    }

    .cta-box__btns {
      display: flex;
      flex-direction: column;
      row-gap: 24px;
    }

    /* ラベル */
    .label {
      font-size: 11px;
      padding: 4px 12px;
    }

    .label-news {
      font-size: 11px;
    }

    .label-article {
      font-size: 11px;
      padding: 4px 12px;
    }

    /* 拡大縮小を非アクティブに */
    .card__link:hover .card__thumb > img {
      transform: scale(1);
    }

    .gnav__btn > a:hover {
      text-decoration: none;
      transform: scale(1);
    }

    .function-index__item:hover {
      transform: scale(1);
    }

    /* 見出し */
    .section-heading {
      margin-bottom: 20px;
    }

    .section-heading__title {
      font-size: 24px;
      line-height: 1.4;
    }

    .section-heading__lead {
      font-size: 15px;
      margin-top: 10px;
    }

    .section-heading__inner {
      padding: 0 20px;
    }

    /* カード型レイアウト */
    .cards {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .cards--icon-link .card:after {
      width: 16px;
      height: 16px;
    }

    .card__label {
      margin-bottom: 10px;
    }

    .card__title {
      font-size: 15px;
    }

    .card__desc {
      font-size: 14px;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    /* ヘッダー */
    .header__inner {
      padding: 0 20px;
      height: 56px;
    }

    .header__logo {
      width: 130px;
      margin-right: 0;
    }

    .sub-header__tel > a {
      cursor: pointer;
      pointer-events: all;
    }

    /* メインビジュアル */
    .mv {
      padding-top: 32px;
      background-position: 240% -10%;
      background-size: 120%;
    }

    .mv__inner {
      padding: 0 16px;
    }

    .mv__inner-2 {
      flex-direction: column;
      padding-bottom: 0%;
    }

    .mv__inner-2 #mv__body {
      width: 100%;
    }

    .mv__inner-2 #mv__body .btn-cta img {
      width: 100%;
    }

    .mv__subcatch {
      text-align: center;
      font-size: 20px;
    }

    .mv__title {
      font-size: 32px;
      line-height: 1.3;
      text-align: center;
    }

    .mv__subtitle {
      margin-top: 16px;
      font-size: 15px;
      text-align: left;
    }

    .mv__body {
      width: 100%;
    }

    .mv__body.fadeLeftEffect {
      opacity: 1;
    }

    .mv__body.fadeLeft {
      animation: none;
    }
    .mv__cta {
      margin-top: 16px;
      width: 100%;
      flex-direction: column;
    }

    .apply__form-2 {
      padding: 30px 20px;
    }

    .mv__sp-cta {
      display: block;
      padding: 0 20px;
      margin-top: 24px;
      display: grid;
      row-gap: 8px;
    }

    .mv__cta {
      width: 100%;
    }

    /* 導入企業ロゴスライダー */
    .user-company-logo {
      padding: 20px 0;
    }

    .user-company-logo__heading {
      font-size: 24px;
      margin-bottom: 0.5em;
    }

    .user-company-logo__inner {
      padding: 0 20px;
    }

    .user-company-logo__list {
      grid-template-columns: repeat(3, 1fr);
      row-gap: 8px;
    }

    .user-company-logo__item {
      text-align: center;
      width: 72px;
    }

    .user-company-logo__logo {
      max-width: 72px;
      height: 28px;
      object-fit: contain;
    }

    /* 課題 */
    .problem {
      padding: 40px 0;
    }

    .problem__heading {
      font-size: 24px;
      margin-bottom: 24px;
    }

    .problem__list {
      grid-template-columns: 1fr;
      gap: 8px;
    }

    .problem__balloon {
      height: auto;
      padding: 16px;
      font-size: 16px;
    }

    .problem__item-img {
      order: 1;
      margin-top: 8px;
    }

    /* .problem::after {
    border-top: 40px solid var(--bg-color);
    border-right: 80px solid transparent;
    border-left: 80px solid transparent;
  } */

    /* ポイント */
    .top-function {
      padding: 40px 0;
    }

    .top-function__heading {
      margin-bottom: 20px;
    }

    .top-function__title {
      font-size: 24px;
      line-height: 1.4;
    }

    .top-function__title img {
      width: 140px;
    }

    .top-function__desc {
      font-size: 16px;
      margin-top: 16px;
      line-height: 1.6;
    }

    .top-function__mv {
      margin-bottom: 40px;
    }

    .point__list {
      row-gap: 56px;
    }

    .point__item {
      display: block;
    }

    .point__body {
      margin-bottom: 16px;
    }

    .point__img {
      text-align: center;
    }

    .point__subtitle {
      font-size: 11px;
    }

    .point__title {
      font-size: 24px;
    }

    .point__text {
      font-size: 15px;
      line-height: 1.6;
    }

    .point__btn {
      margin-top: 40px;
    }

    /* yaritoriが選ばれる理由 */
    .reason {
      padding: 40px 0;
      background-position: 120% 20%;
      background-size: 200%;
    }

    .features__list {
      grid-template-columns: 1fr;
      row-gap: 40px;
    }

    .feature_text {
      font-size: 15px;
      line-height: 1.6;
    }

    .feature__img img {
      width: 100%;
    }

    /* 料金プラン（TOP） */
    .top-plan {
      padding: 40px 0;
    }

    .top-plan-price {
      column-gap: 8px;
      margin-bottom: 24px;
    }

    .top-plan-price__label {
      font-size: 24px;
      padding-bottom: 8px;
    }
    .top-plan-price__num {
      font-size: 48px;
    }

    .top-plan-price__unit {
      font-size: 24px;
      margin-left: 4px;
    }

    .top-plan-feature-box {
      padding: 24px 16px;
    }

    .top-plan-feature-box__title {
      font-size: 16px;
    }

    .top-plan-feature-box__desc {
      font-size: 32px;
    }

    /* コスト（TOP） */
    .top-cost {
      padding: 56px 0 24px;
    }

    /* 導入の流れ */
    .intro {
      padding: 40px 0;
    }

    .flow {
      padding-left: 20px;
    }

    .flow__item {
      position: relative;
      padding-left: 32px;
      padding-bottom: 40px;
    }

    .flow__item:after {
      left: -16px;
      width: 32px;
      height: 32px;
      font-size: 15px;
    }

    .flow__title {
      font-size: 16px;
    }

    .flow__desc {
      margin-top: 4px;
    }

    /* サポート */
    .support {
      padding: 40px 0;
      background-color: var(--bg-color);
    }

    .support__inner {
      padding: 40px 24px;
    }

    /* お客様の声 */
    .top-cases {
      padding: 40px 0;
    }

    .bg-grad-block {
      background-position: 45% 56%;
      background-size: 150%;
    }

    .top-cases__list .cards {
      grid-template-columns: repeat(6, 1fr);
      overflow-x: scroll;
      margin: 0 -20px;
      padding: 8px 20px 16px;
    }

    .top-cases__list .card {
      width: 220px;
    }

    .top-cases__btn {
      margin-top: 24px;
    }

    /* お知らせ */
    .top-news {
      padding: 40px 0;
      margin-left: 0;
      background-color: transparent;
    }

    .top-news__side-btn {
      display: none;
    }

    .top-news__btn {
      display: block;
    }

    .post-type-archive-news .news-box {
      padding: 0;
    }

    .news-box__link {
      display: block;
      padding: 16px 0;
    }

    .news-box__info {
      margin-bottom: 8px;
    }

    .news-box__date {
      margin-right: 0.5em;
      width: 88px;
      font-size: 14px;
    }

    .news-box__title {
      font-size: 14px;
    }

    /* CTA */
    .cta {
      padding: 20px 0;
    }

    .cta__inner {
      flex-direction: column;
      row-gap: 8px;
    }

    .cta__body {
      margin-top: 8px;
      margin-right: 0;
    }

    .cta__text01 {
      font-size: 18px;
    }

    .cta__text02 {
      font-size: 15px;
    }

    .cta-box__inner {
      flex-direction: column;
      row-gap: 24px;
    }

    .cta-box__body {
      width: 100%;
    }

    .cta-box__btn {
      width: 100%;
    }

    .cta__btn {
      flex-direction: column;
      row-gap: 16px;
    }

    .cta__tel {
      flex-direction: column;
      row-gap: 4px;
    }

    .cta__tel-num {
      cursor: pointer;
      pointer-events: all;
    }

    .cta__tel-time {
      font-weight: normal;
      font-size: 11px;
    }

    .cta-box--inside .cta-box__btns {
      display: flex;
      flex-direction: column;
      row-gap: 24px;
    }

    /* 掲載実績 */
    .media-list__title {
      font-size: 18px;
    }

    .media-list__inner {
      padding: 40px 20px;
    }

    .media-list__list {
      flex-wrap: wrap;
      justify-content: center;
    }

    .media-list__item img {
      height: 32px;
    }

    .media-list__list--lg .media-list__item {
      max-width: 150px;
    }

    /* 活用シーン */
    .solution-block:not(:last-child) {
      margin-bottom: 48px;
    }

    .solution-block__title {
      font-size: 20px;
      margin-bottom: 32px;
    }

    .solution-block__btn {
      margin-top: 24px;
    }

    .solution-problem__list {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .solution-problem__item {
      padding: 24px 16px;
    }

    .solution-problem__desc {
      font-size: 16px;
    }

    .solution-service__title {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .solution-service__title img {
      width: 140px;
    }

    .solution-logo__list {
      /* display: block; */
      flex-direction: column;
    }

    .solution-logo__item {
      width: 100%;
      text-align: center;
    }

    .solution-point .point__item {
      display: block;
    }

    .solution-reason__list {
      grid-template-columns: 1fr;
      row-gap: 32px;
      padding: 0 24px;
    }

    .solution-reason__icon {
      margin-bottom: 16px;
      text-align: center;
    }

    .solution-reason__title {
      margin-bottom: 8px;
      text-align: center;
    }

    .solution-cta {
      text-align: center;
      margin-bottom: 48px;
    }

    .case-card {
      padding: 24px;
    }

    .case-card__body {
      display: block;
    }
    .case-card__desc {
      margin-bottom: 24px;
    }

    /* サポート */
    .content-block:not(:last-child) {
      margin-bottom: 80px;
    }

    .content-block__heading {
      margin-bottom: 24px;
    }

    .content-block__title {
      font-size: 24px;
    }

    .content-block__lead {
      text-align: left;
      font-size: 14px;
    }

    .support-point__item {
      display: block;
      padding-left: 32px;
    }

    .support-point__img {
      padding-left: 0;
      width: 160px;
      margin: 0 auto;
    }

    .support-point__item::before {
      left: 14px;
    }

    .support-point__title {
      font-size: 20px;
    }

    .support-customer__list {
      margin-bottom: 32px;
    }

    .support-customer__item {
      display: block;
    }

    .support-customer__img img {
      width: 100%;
      height: auto;
    }

    .support-customer__body {
      padding: 24px;
      margin-top: 24px;
    }

    .support-customer__body::after {
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--bg-color);
      width: 40px;
      height: 12px;
      clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    }

    .support-service__list {
      display: block;
    }

    .support-service__item:not(:last-child) {
      margin-bottom: 24px;
    }

    /* フッター */
    .footer .container {
      padding: 0 32px;
    }

    .footer-nav__list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 24px;
      row-gap: 32px;
    }

    .footer-nav__list .sub-menu {
      row-gap: 16px;
    }

    .fixed-footer__cta {
      column-gap: 8px;
    }

    .fixed-footer__cta .btn-cta__title {
      font-size: 11px;
    }

    .fixed-footer__cta .btn {
      padding: 16px 8px;
      height: auto;
    }

    .fixed-footer__tel {
      display: none;
    }

    /* 下層ページヘッダー */
    .page-header__inner {
      background-position: 130px center;
      background-size: 105%;
    }

    .page-header__body {
      padding: 48px 0 40px;
    }

    .page-header__title {
      font-size: 24px;
    }

    .page-header__lead {
      font-size: 14px;
      margin-top: 8px;
    }

    .page-header2 {
      background-image: url(img/bg_page-header-gradient-sp.webp);
    }

    .page-header2__inner {
      background: none;
    }

    .page-header2__image img {
      width: 110%;
      height: auto;
    }

    .page-header2__btn {
      position: static;
      transform: translateX(0);
      flex-direction: column;
      row-gap: 16px;
      align-items: center;
    }

    .page-header2-btn:hover {
      transform: none;
    }

    .page-header2-btn {
      width: 100%;
    }

    /* パンくずリスト */
    .page-header .breadcrumb {
      top: 10px;
    }

    .breadcrumb__inner {
      font-size: 11px;
    }

    /* 下層：機能 */
    .function__body {
      row-gap: 56px;
    }

    .function-index {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .function-index__link {
      padding: 24px 8px 40px;
    }

    .function-index__icon {
      width: 32px;
    }

    .function-index__text {
      font-size: 14px;
    }

    .function-detail__title {
      font-size: 20px;
      margin-bottom: 24px;
    }

    .function-detail__list {
      grid-template-columns: 1fr;
      row-gap: 48px;
    }

    .function-detail-card__title {
      height: auto;
      margin-bottom: 8px;
    }

    .function-detail-card__link {
      padding: 14px 8px;
    }

    .function-detail-card__link:hover {
      transform: none;
    }

    /* 下層：料金プラン */
    .plan__scroll {
      display: block;
      position: absolute;
      top: 50%;
      right: 5%;
      z-index: 1;
      font-size: 12px;
      color: #fff;
      padding: 10px;
      transform: translateY(-50%);
      border-radius: 4px;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .plan__scroll-icon {
      display: block;
      width: 32px;
      height: 32px;
      margin: 0 auto;
    }

    .plan-summery__name {
      font-size: 18px;
      margin-bottom: 12px;
    }

    .plan-summery__desc {
      font-size: 15px;
      margin-bottom: 16px;
    }

    .plan-block:not(:last-child) {
      margin-bottom: 32px;
    }

    .plan-block__qa {
      padding: 24px 0;
    }

    .plan-block__qa:first-child {
      padding-top: 8px;
    }

    .price-start__slogan {
      font-size: 24px;
    }

    .price-start__slogan::before,
    .price-start__slogan::after {
      width: 22px;
      height: 20px;
      background-size: 22px 20px;
    }

    .price-start__price {
      display: block;
    }

    .price-start__user {
      font-size: 16px;
    }

    .price-start__label {
      font-size: 16px;
      padding-bottom: 0;
    }

    .price-start__num {
      font-size: 64px;
      line-height: 1;
      text-align: center;
    }

    .price-start__unit {
      font-size: 32px;
      margin-left: 4px;
    }

    .plan-detail {
      padding: 48px 0;
    }

    .plan-detail::after {
      border-top: 30px solid #fff;
      border-right: 42px solid transparent;
      border-left: 42px solid transparent;
    }

    .plan-detail__list {
      grid-template-columns: 1fr;
      row-gap: 16px;
    }

    .plan-detail-box__title {
      font-size: 24px;
    }

    .plan-detail-box__desc {
      font-size: 32px;
    }

    .plan-detail-box {
      padding: 24px;
    }

    /* 料金ページ */
    .page-header-plan {
      padding: 40px 0;
      background-image: url(img/sp_bg_grad-lg.webp);
    }

    .page-header-plan__inner {
      flex-direction: column;
      padding-left: 0;
    }

    .page-header-plan__title-sub {
      font-size: 32px;
      text-align: center;
    }

    .page-header-plan__title-main {
      font-size: 88px;
      font-size: clamp(56px, 18vw, 88px);
      text-align: center;
    }

    .page-header-plan__title-note {
      text-align: right;
    }

    .page-header-plan__img-sp {
      display: block;
      margin-top: -2em;
    }

    .page-header-plan__img-sp img {
      width: 100%;
      height: auto;
    }

    .page-header-plan__img {
      display: none;
    }

    .page-header-plan__desc {
      margin-top: 0;
      margin-bottom: 2em;
      text-align: center;
      font-size: 14px;
    }

    .page-header-plan__btn {
      position: static;
      transform: translateX(0);
      flex-direction: column;
      row-gap: 16px;
      align-items: center;
    }

    .page-header-plan-btn {
      width: 100%;
      font-size: 16px;
      padding: 1.2em;
    }

    .plan-reason {
      padding: 56px 0;
    }

    .plan-reason-list {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .plan-reason-item__title {
      font-size: 16px;
    }

    .plan-reason-item__desc {
      font-size: 14px;
    }

    .price-plan {
      padding: 56px 0;
    }

    .plan-price-list {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .plan-price-item {
      padding: 24px;
    }

    .plan-price-item__title {
      font-size: 24px;
    }

    .plan-price-item__desc {
      font-size: 32px;
    }

    .plan-price-note {
      font-size: 12px;
    }

    .cta-box-heading-plan__title-note {
      display: block;
    }

    .cta-box-heading-plan__desc {
      font-size: 16px;
    }

    .price-result {
      padding: 40px 0;
    }

    .plan-result-list {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .plan-result-list::before {
      top: 50%;
      left: 50%;
      transform: rotate(90deg) translate(-50%, 50%);
      width: 48px;
      height: 48px;
    }

    .plan-result-item--box1 .plan-result-item__desc {
      background-size: 150px;
    }

    .plan-result-item--box2 .plan-result-item__desc {
      background-size: 150px;
    }

    .plan-result-item__desc {
      font-size: 72px;
    }

    .plan-result-more__list {
      max-width: 100%;
      gap: 16px;
    }

    .plan-result-more__item {
      margin: 0 auto;
      width: 100%;
      height: auto;
    }

    .plan-result-more__title {
      font-size: 18px;
    }

    .price-flow {
      padding: 40px 0 0;
    }

    /* 下層：よくあるご質問 */
    .faq__body {
      grid-template-columns: 1fr;
    }

    .faq-box {
      width: 100%;
    }

    .faq-box__title {
      font-size: 16px;
      padding: 16px;
    }

    .faq-box__item a {
      font-size: 15px;
      line-height: 1.5;
      padding: 16px 8px;
    }

    .faq-detail__inner {
      display: block;
    }

    .faq-main {
      margin-bottom: 32px;
    }

    .faq-main__title {
      font-size: 24px;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .faq-main__contents p {
      font-size: 1.5;
      line-height: 1.7;
    }

    .faq-side__item > a {
      padding: 16px 8px;
    }

    /* 導入事例 */
    .tax-cat {
      margin-bottom: 32px;
    }

    .tax-cat__item a {
      font-size: 13px;
      padding: 0 10px;
    }

    .case-search {
      margin-bottom: 16px;
    }

    .search-box__item {
      display: block;
    }

    .search-box {
      padding: 24px;
    }

    .search-box__title {
      margin-bottom: 8px;
    }

    .search-box__label {
      padding: 4px 10px;
      font-size: 13px;
    }

    /* 下層：フォームページ */
    .apply__inner {
      flex-direction: column;
      row-gap: 24px;
    }

    .apply-detail {
      padding: 24px;
    }

    .apply-detail__title {
      font-size: 20px;
    }

    .apply-contents__title {
      font-size: 16px;
      margin-bottom: 12px;
    }

    .apply-contents__item {
      font-size: 14px;
    }

    .apply-step__item {
      font-size: 14px;
    }

    .apply-contents__list {
      flex-direction: column;
    }

    .apply-thanks {
      font-size: 15px;
      padding: 0;
      text-align: left;
    }

    .apply-tel__tel {
      display: block;
      background-size: 32px 32px;
      padding-left: 40px;
    }

    .apply-tel__title {
      font-size: 14px;
    }

    .apply-tel__num {
      font-size: 22px;
    }

    .apply-tel__hours {
      margin-top: 4px;
      font-size: 12px;
    }

    /* お知らせ */
    .news {
      margin-bottom: 40px;
    }

    .news__header {
      margin-bottom: 24px;
    }

    .news__info {
      margin-top: 8px;
    }

    .news__title {
      font-size: 20px;
    }

    .news__date {
      font-size: 12px;
    }

    .news-box__link:hover {
      opacity: 1;
    }

    .news__body h2 {
      font-size: 18px;
      border-radius: 4px;
    }

    .news__body h2:before {
      border-radius: 4px 0 0 4px;
    }

    .news__body h3 {
      font-size: 16px;
      padding-top: 1.5em;
    }

    .news__body h4 {
      font-size: 16px;
    }

    .news__body p {
      font-size: 15px;
      line-height: 1.7;
    }

    /* メディア */
    .media-cat {
      margin-bottom: 32px;
    }

    .media-cat__item a {
      font-size: 13px;
      padding: 0 10px;
    }

    .media-box__heading {
      margin-bottom: 16px;
    }

    .media-box__title {
      font-size: 18px;
    }

    .media-cards {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 16px;
      row-gap: 24px;
    }

    .media-cards--col3 {
      grid-template-columns: 1fr;
    }

    .media-box-wrapper {
      row-gap: 40px;
    }

    .media-card__link:hover {
      opacity: 1;
    }

    .media-card__thumb {
      margin-bottom: 8px;
    }

    .media-card__title {
      font-size: 13px;
    }

    .media-card__date {
      font-size: 11px;
    }

    /* 記事 */
    .single-post .post__article,
    .single-case .post__article {
      padding: 16px;
    }

    .single-post .media > .container,
    .single-case .media > .container {
      padding: 0;
    }

    /* .single-post .breadcrumb-wrapper,
  .single-case .breadcrumb-wrapper {
    padding: 16px;
  } */

    .post-wrapper {
      flex-direction: column;
      row-gap: 24px;
    }

    .post__title {
      font-size: 20px;
    }

    .post__info {
      margin-top: 8px;
    }

    .post__date {
      font-size: 12px;
    }

    .post__header {
      margin-bottom: 24px;
    }

    .post__body p {
      font-size: 15px;
      line-height: 1.8;
    }

    .rtoc-mokuji-content .rtoc-mokuji.level-1 {
      font-size: 14px;
    }

    /* .rtoc-mokuji-content .rtoc-mokuji.level-2 {
      display: none;
    } */

    .post__body h2 {
      font-size: 18px;
      border-radius: 4px;
    }

    .post__body h2:before {
      border-radius: 4px 0 0 4px;
    }

    .post__body h3 {
      font-size: 16px;
      padding-top: 1.5em;
    }

    .post__body h4 {
      font-size: 16px;
    }

    .post__header--case .post__title {
      font-size: 20px;
    }

    .post__company {
      font-size: 16px;
    }

    .post-company-info__item {
      font-size: 16px;
    }

    .post-company-info__item-label {
      font-size: 13px;
    }

    /* 著者プロフィール */
    .post-profile {
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .post-profile__name {
      text-align: center;
    }

    .post-solution-box {
      padding: 16px;
    }

    .post-solution-box__inner::before {
      left: 28px;
    }

    .post-solution-box__title {
      font-size: 12px;
      width: 60px;
      height: 60px;
    }

    .post-solution-box__body {
      font-size: 14px;
      line-height: 1.4;
    }

    .post-solution-box__item::before {
      left: 27px;
    }

    .wp-block-image figcaption {
      font-size: 11px;
    }

    .ad-yaritori {
      padding: 24px;
    }

    .ad-yaritori__title {
      font-size: 24px;
      margin-bottom: 8px;
    }

    .ad-yaritori__subtitle {
      font-size: 14px;
      line-height: 1.5;
    }

    .ad-yaritori__links {
      flex-direction: column;
    }

    .post-pager__list {
      flex-direction: column;
      row-gap: 8px;
    }

    .post-pager__body {
      padding: 12px;
    }

    /* パターン */
    .pattern-cta {
      padding: 24px;
    }

    .pattern-cta .wp-block-button__link:hover {
      transform: none;
    }

    .pattern-cta-media-text {
      padding: 24px;
      row-gap: 16px;
    }

    .pattern-related {
      padding: 24px;
    }

    /* パターン 追従ページ内リンク */
    .pattern-sticky-link {
      background-color: #fff;
      display: flex !important;
      /* display: none !important; */
      justify-content: center;
      align-items: center;
      border-bottom: 1px solid #e7e7e7;
    }

    .pattern-sticky-link.is-fixed {
      position: fixed;
      top: 57px;
      width: 100%;
      z-index: 9999;
    }

    .post__body .pattern-sticky-link > .wp-block-column {
      flex-basis: unset !important;
      flex: 1 !important;
      text-align: center;
    }

    .pattern-sticky-link.is-fixed > .wp-block-column a {
      /* color: var(--text-color);
      display: block;
      transition: none;
      padding: 8px 0;
      border: none;
      border-radius: 0;
      background-image: none; */
    }

    .post__body .pattern-sticky-link > .wp-block-column a {
      color: var(--text-color);
      display: block;
      transition: none;
      padding: 8px 0;
      border: none;
      border-radius: 0;
      background-image: none;
      font-size: 14px;
      line-height: 1.4;
      font-weight: bold;
    }

    .pattern-sticky-link a.is-active {
      /* border-bottom: 3px solid var(--main-color); */
      border-bottom: 3px solid #d27100 !important;
    }

    .pattern-sticky-link p {
      margin-bottom: 0 !important;
    }

    /* サイドバー */
    .side-section {
      margin-bottom: 32px;
    }
    .side-sticky {
      display: none !important;
      opacity: none;
    }

    .side-banner {
      text-align: center;
    }

    /* 404 */
    .not-found__text {
      font-size: 15px;
    }

    /* ウェビナー詳細 */
    .logo__inner {
      padding: 30px 30px 40px;
    }

    .event-contents__title {
      font-size: calc((100vw - 415px) / 627 * 5 + 20px);
    }

    /* yaritoriAI */
    .yaritoriai {
      background-size: 200%;
      background-position: center -40px;
    }

    .yaritoriai-heading__subtitle {
      font-size: 24px;
    }

    .yaritoriai-heading__title {
      font-size: 20px;
    }

    .yaritoriai-heading__desc {
      font-size: 16px;
    }

    .yaritoriai-mv {
      padding: 24px;
    }

    .yaritoriai-mv__logo {
      margin-bottom: 24px;
    }

    .yaritoriai-mv__logo img {
      width: 150px;
      height: auto;
    }

    .yaritoriai-mv__title {
      font-size: 28px;
      margin-bottom: 24px;
    }

    .yaritoriai-mv__title-xl {
      font-size: 36px;
    }

    .yaritoriai-mv__title-lg {
      font-size: 34px;
    }

    .yaritoriai-mv__desc {
      font-size: 16px;
      margin-top: 24px;
    }

    .yaritoriai-mv__cta {
      margin-top: 24px;
    }

    .yaritoriai-about {
      padding: 48px 16px;
    }

    .yaritoriai-about__video {
      margin-top: 1.5em;
    }

    .yaritoriai-skills {
      padding: 48px 16px;
    }

    .yaritoriai-skills-box__body {
      flex-direction: column-reverse;
      width: auto;
      height: auto;
      padding-left: 0;
      padding: 24px 24px 32px;
    }

    .yaritoriai-skills__item--reverse .yaritoriai-skills-box__body {
      padding-right: 0;
      padding: 24px 24px 32px;
    }

    .yaritoriai-skills__item:not(:last-child) {
      margin-bottom: 56px;
    }

    .yaritoriai-skills-box__img {
      width: 100%;
      position: static;
      transform: translateX(0);
      margin-top: -48px;
      margin-bottom: 24px;
    }

    .yaritoriai-skills-box__text {
      font-size: 14px;
    }

    .yaritoriai-other {
      padding: 24px 16px;
    }

    .yaritoriai-other__container {
      padding: 48px 24px 24px;
    }

    .yaritoriai-other-heading__subtitle {
      font-size: 16px;
    }

    .yaritoriai-other-heading__title {
      font-size: 24px;
      margin-top: 1em;
    }

    .yaritoriai-other-heading__desc {
      font-size: 14px;
      margin-top: 1em;
    }

    .yaritoriai-other__body {
      margin-top: 2em;
    }

    .yaritoriai-other__list {
      flex-direction: column;
      row-gap: 24px;
    }

    .yaritoriai-other__desc {
      font-size: 14px;
    }

    .yaritoriai-feature {
      padding: 48px 16px;
    }

    .yaritoriai-feature__body {
      margin-top: 2em;
    }

    .yaritoriai-feature__list {
      row-gap: 16px;
    }

    .yaritoriai-feature-box {
      padding: 24px 24px 32px;
      flex-direction: column-reverse;
      width: auto;
      height: auto;
      padding-left: 0;
      padding: 24px 24px 32px;
      row-gap: 16px;
    }

    .yaritoriai-feature-box:nth-child(even) {
      flex-direction: column-reverse;
    }

    .yaritoriai-feature-box__title {
      font-size: 20px;
      margin-bottom: 0.5em;
    }

    .yaritoriai-feature-box__desc {
      font-size: 14px;
    }

    .yaritoriai-cta {
      padding: 16px;
    }

    .yaritoriai-cta__container {
      padding: 24px 0;
    }

    .yaritoriai-cta-heading__title {
      font-size: 24px;
      margin-bottom: 1em;
    }

    .yaritoriai-cta-heading__desc {
      font-size: 16px;
      margin-bottom: 1em;
    }

    .yaritoriai-cta-heading__text {
      font-size: 14px;
      margin-bottom: 1em;
    }

    .yaritoriai-cta__list {
      grid-template-columns: 1fr;
      row-gap: 128px;
      margin-top: 8.5em;
    }

    .yaritoriai-cta-card {
      padding: 24px;
    }

    .yaritoriai-cta-card__title {
      font-size: 16px;
    }

    .yaritoriai-cta-card__img {
      margin-bottom: 1em;
    }

    .yaritoriai-cta-card__img img {
      width: 100%;
      height: auto;
    }

    .yaritoriai-cta-card .btn {
      width: 100%;
      font-size: 14px;
    }

    .yaritoriai-merit {
      padding: 48px 16px;
    }

    .yaritoriai-merit .yaritoriai-heading {
      position: relative;
      z-index: 1;
    }

    .yaritoriai-merit__list {
      flex-direction: column;
      align-items: center;
      gap: 56px;
    }

    .yaritoriai-merit__item {
      flex-direction: column;
      row-gap: 16px;
    }

    .yaritoriai-merit__badge {
      font-size: 14px;
    }

    .yaritoriai-merit__title {
      font-size: 20px;
    }

    .yaritoriai-merit__img img {
      width: 100%;
      height: auto;
    }

    .yaritoriai-merit__arrow-divider {
      transform: rotate(90deg);
      transform-origin: center;
      left: auto;
    }

    .yaritoriai-support {
      padding: 48px 16px;
      background-size: 51%;
      background-position: -5% -35px;
    }

    .yaritoriai-support-heading__subtitle {
      font-size: 16px;
    }

    .yaritoriai-support-heading__title {
      font-size: 24px;
      margin-bottom: 0.5em;
    }

    .yaritoriai-support__body {
      flex-direction: column-reverse;
      row-gap: 4px;
    }

    .yaritoriai-support__img {
      width: 220px;
    }

    .yaritoriai-support__desc p {
      font-size: 14px;
    }

    /* ユーザーガイド */
    .userguide-tabs__tab {
      font-size: 16px;
      padding-inline: 10px;
    }

    .userguide-detail__inner {
      display: block;
    }

    .userguide-detail-main {
      margin-bottom: 32px;
    }
    

    .userguide-main__title {
      font-size: 24px;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .userguide-main__contents p {
      font-size: 1.5;
      line-height: 1.7;
    }

    .userguide-side__item > a {
      padding: 16px 8px;
    }

    /*--------------------------------
    390px以下
    ---------------------------------*/
    @media screen and (max-width: 390px) {
      /* ウェビナー詳細 */
      .event-detail__title {
        font-size: calc(10px + 2.8985507246vw);
        letter-spacing: 0.0657818182em;
      }

      .event-detail__date {
        font-size: calc(10px + 0.9661835749vw);
        letter-spacing: 0.0761714286em;
      }

      .event-contents__title {
        font-size: calc(10px + 2.4154589372vw);
        letter-spacing: 0.0676em;
      }

      .event-detail__lead {
        font-size: calc(10px + 1.4492753623vw);
        letter-spacing: 0.0726em;
      }

      .event-contents__desc {
        font-size: calc(10px + 1.4492753623vw);
        letter-spacing: 0.0726em;
        line-height: 1.87;
      }
    }
  }
}

/* 2026/5/16追記 */
/* ブロックエディタ：マーカー */
.marker {
  background: linear-gradient(to bottom, #fff176 0%, #ffeb3b 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.5em;
  background-position: 0 100%;
}