@charset "UTF-8";/* Reset =============================================== */
abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video { margin: 0;padding: 0;border: 0;outline: 0;font-family: inherit;font-size: 100%;font-weight: 400;font-style: normal;vertical-align: baseline;list-style-type: none;border-collapse: collapse;background: 0 0;}

html { -webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;appearance: none;}

*, *:before, *:after { -webkit-box-sizing: inherit;-moz-box-sizing: inherit;box-sizing: inherit;}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}

nav ul { list-style: none;}

blockquote, q { quotes: none;}

blockquote:after, blockquote:before, q:after, q:before { content: '';content: none;}

a { margin: 0;padding: 0;font-size: 100%;vertical-align: baseline;background: 0 0;text-decoration: none;}

ins { background-color: #ff9;color: #000;text-decoration: none;}

mark { background-color: #ff9;color: #000;font-style: italic;font-weight: 700;}

del { text-decoration: line-through;}

abbr[title], dfn[title] { border-bottom: 1px dotted;cursor: help;}

table { border-collapse: collapse;border-spacing: 0;}

hr { display: block;height: 1px;border: 0;border-top: 1px solid #ccc;margin: 1em 0;padding: 0;}

input, select { vertical-align: middle;}

/* Base Styles ========================================= */
html, body, table, caption, tr, th, td, input, select, textarea { font-family: "Inter", "Noto Sans JP", "メイリオ" , "Meyryo" , Verdana , Helvetica , "ＭＳ Ｐゴシック" , Osaka, sans-serif;font-size: inherit;}

/*--------------------------------
変数
---------------------------------*/
:root {
  /* カラー */
  --main-color:#15b7aa;
  --sub-color: #036059;
  --accent-color: #ea4855;
  --price-color: #f9bc60;
  --base-color01: #ffffff;
  --base-color02: #ededed;
  --base-color03: #1a1a1a;
  --text-color01: #1a1a1a;
  --text-color02: #ffffff;
  --text-color03: #15b7aa;
  --text-color04: #036059;
  /* フォント */
  --font-xxs: 0.75rem;      /* 12px */
  --font-xs: 0.8125rem;     /* 13px */
  --font-sm: 0.875rem;      /* 14px */
  --font-base: 1rem;        /* 16px */
  --font-md: 1.125rem;      /* 18px */
  --font-md2: 1.3125rem;    /* 21px */
  --font-md3: 1.4375rem;    /* 23px */
  --font-md4: 1.5625rem;    /* 25px */
  --font-lg: 1.6875rem;     /* 27px */
  --font-lg2: 1.875rem;     /* 30px */
  --font-lg3: 2rem;         /* 32px */
  --font-lg4: 2.125rem;     /* 34px */
  --font-xl: 2.5rem;        /* 40px */
  --font-xl2: 2.8125rem;    /* 45px */
  --font-xxl: 3.4375rem;    /* 55px */
  --font-xxxl: 4.125rem;    /* 66px */
}
/*--------------------------------
全体
---------------------------------*/
html, body {
  font-size: 16px;
  background-color: var(--base-color01);
  color: var(--text-color01);
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: justify;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* 本文のline-height */
.text__line-height {
  line-height: 2;
}
/* 英語のフォント */
.eng {
  font-family: "Inter", sans-serif;
}
.eng--bold {
  font-weight: bold;
}
/* 数字のフォント */
.number {
  font-family: "Inter", sans-serif;
}
.number--bold {
  font-weight: bold;
}
/* 改行 */
.text__wrap {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: left;
}
.text__wrap--center {
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: center;
}
.text__nowrap {
  display: inline-block;
  white-space: nowrap;
}
.text__nowrap--bold {
  display: inline-block;
  white-space: nowrap;
  font-weight: bold;
}
.text__break--show-1280and480 {
  display: none;
}
.text__break--show-1280 {
  display: none;
}
.text__break--show-960 {
  display: none;
}
.text__break--show-767 {
  display: none;
}
.text__break--show-640 {
  display: none;
}
.text__break--show-480 {
  display: none;
}
/*--------------------------------
共通（コンポーネント）
---------------------------------*/
.container {
  padding-left: 40px;
  padding-right: 40px;
}
.container__inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.section {
  padding-top: 150px;
  padding-bottom: 150px;
}
/* ==========ボタン========== */
/* ボタン共通 */
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 48px;
  transition: all 0.2s 0s ease;
}
/* 背景色塗りボタン */
.button--bg-white {
  background-color: var(--base-color01);
  color: var(--text-color04);
  font-weight: bold;
}
@media (hover: hover) and (pointer: fine) {
  .button--bg-white:hover {
    background-color: var(--text-color04);
    color: var(--text-color02);
    border: var(--text-color02) 2px solid;
  }
}
@media (hover: none) {
  .button--bg-white:active {
    background-color: var(--text-color04);
    color: var(--text-color02);
    border: var(--text-color02) 2px solid;
  }
}
/* 背景緑塗りボタン */
.button--bg-green {
  background-color: var(--main-color);
  color: var(--text-color02);
  font-weight: bold;
  border: var(--main-color) 2px solid;
}
@media (hover: hover) and (pointer: fine) {
  .button--bg-green:hover {
    background-color: var(--base-color01);
    color: var(--text-color03);
  }
}
@media (hover: none) {
  .button--bg-green:active {
    background-color: var(--text-color04);
    color: var(--text-color02);
  }
}
.button--bg-red {
  background-color: var(--accent-color);
  color: var(--text-color02);
  font-weight: bold;
  border: var(--accent-color) 2px solid;
}
@media (hover: hover) and (pointer: fine) {
  .button--bg-red:hover {
    background-color: var(--base-color01);
    color: var(--accent-color);
  }
}
@media (hover: none) {
  .button--bg-red:active {
    background-color: var(--base-color01);
    color: var(--accent-color);
  }
}
/* トップページH2タイトル */
.section__title-area {
  margin-bottom: 96px;
  padding: 16px 0;
  padding-left: 40px;
  border-left: 2px solid var(--main-color);
}
.section__title {
  font-size: var(--font-lg2);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: left;
}
.section__subtitle {
  margin-bottom: 24px;
  color: var(--main-color);
  font-size: var(--font-xxxl);
  font-weight: bold;
  line-height: 1;
}
.section__lead {
  font-size: var(--font-md2);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: left;
}
/*--------------------------------
ヘッダー
---------------------------------*/
.header {
  height: 120px;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff; /* 背景色を追加しないと透ける */
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  height: 120px;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  opacity: 0;
  transition: opacity 0.3s;
}
.header__logo.is-show {
  opacity: 1;
}
.header__logo-text {
  color: var(--text-color01);
  font-size: var(--font-xxs);
  text-align: right;
}
.header__group {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.header__cta {
  display: flex;
  justify-content: flex-end;
  column-gap: 24px;
}
.header__cta-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 128px;
  height: 36px;
  border-radius: 50px;
  transition: all 0.4s 0s ease;
}
.header__cta-link--contact {
  color: var(--text-color01);
  border: var(--accent-color) 2px solid;
}
@media (hover: hover) and (pointer: fine) {
  .header__cta-link--contact:hover {
    background-color: var(--accent-color);
    color: var(--text-color02);
  }
}
@media (hover: none) {
  .header__link:active {
    background-color: var(--accent-color);
    color: var(--text-color02);
  }
}
.header__cta-link--estimate {
  background-color: var(--accent-color);
  color: var(--text-color02);
}
@media (hover: hover) and (pointer: fine) {
  .header__cta-link--estimate:hover {
    background-color: var(--base-color01);
    color: var(--text-color01);
    border: var(--accent-color) 2px solid;
  }
}
@media (hover: none) {
  .header__cta-link--estimate:active {
    background-color: var(--base-color01);
    color: var(--text-color01);
    border: var(--accent-color) 2px solid;
  }
}
.header__list {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  column-gap: 32px;
}
.header__link {
  position: relative;
  display: block;
  padding: 5px 0;
  color: var(--text-color04);
  font-size: var(--font-base);
  transition: all 0.2s 0s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover {
    color: var(--main-color);
  }
}
@media (hover: none) {
  .header__link:active {
    color: var(--main-color);
  }
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: all 0.2s 0s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover::after {
    width: 100%;
  }
}
@media (hover: none) {
  .header__link:active::after {
    width: 100%;
  }
}
.header__link.is-current {
  color: var(--main-color);
  border-bottom: 2px solid var(--accent-color);
}
.header__link.is-current::after {
  content: none;
}
.header__item--has-sub {
  position: relative;
}
.header__sublist {
  display: none;
  position: absolute;
  top: 100%;
  transform: translateX(-40px);
  width: 280px;
  padding: 20px 40px;
  background-color: #fff;
  z-index: 1000;
}
.header__sublink {
  display: inline-block;
}
/* === 通常メニューはCSSで hover 表示 === */
.header__link:hover .header__sublist {
  display: block;
}
/* === 「ライブ配信」は jQueryで制御するので hover 表示を無効にする === */
.header__link--live:hover .header__sublist {
  display: none;
}
/* 初期状態で非表示（PCファースト） */
.header__mobile {
  display: none;
}
.header__mobile-nav {
  display: none;
}
/*--------------------------------
メインビジュアル
---------------------------------*/
.mv {
  position: relative;
}
.mv__title-bg {
  position: absolute;
  top: -4vw;
  left: -2vw;
  display: block;
  width: 50vw;
  height: 50vw;
  background-color: var(--main-color);
  background: url(../images/title-bg.webp) no-repeat center / cover ;
  transform: rotate(65deg) scaleY(1.1);
  z-index: 10;
}
.mv__group {
  position: absolute;
  top: 7vw;
  left: 28vw;
  transform: translate(-50%);
  z-index: 100;
}
.mv__group::after {
  position: absolute;
  right: -200px;
  bottom: -100px;
  content: none;
  display: inline-block;
  width: 300px;
  height: 250px;
  background: url(../images/internet_image01.png) no-repeat center center / cover;
  z-index: 200;
}
.mv__logo {
  margin-bottom: 32px;
}
.mv__logo-figure {
  display: inline-block;
  text-align: right;
}
.mv__logo-image {
  width: 200px;
}
.mv__logo-text {
  color: var(--text-color02);
  font-size: var(--font-sm);
}
.mv__title {
  margin-bottom: 32px;
  color: var(--text-color02);
  font-size: var(--font-xxxl);
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}
.mv__subtitle {
  margin-bottom: 64px;
  color: var(--text-color02);
  font-size: var(--font-md2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}
.mv__button {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.mv__slide-image {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
/* Swiper */
.swiper-container {
  position: relative;
  width: 100%;
  max-height: 800px; /* 最大でもこれくらいに抑える */
  overflow: hidden;
}
.swiper-wrapper {
  width: 100%;
  height: auto; /* 高さは子要素（スライド）に任せる */
}
.swiper-slide {
  aspect-ratio: 2.4 / 1; /* 例えば横長バナーならこれぐらい */
  width: 100%;
  overflow: hidden;
  position: relative;
}

/*--------------------------------
料金バナー | .top-price
---------------------------------*/
.top-price {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--text-color04);
}
.top-price__title {
  position: relative;
  z-index: 999;
  margin-bottom: 88px;
  color: var(--text-color02);
  font-size: var(--font-xl);
  font-weight: bold;
  text-align: center;
}
.top-price__group {
  display: flex;
}
.top-price__illust {
  width: 40%;
}
.top-price__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 64px;
  row-gap: 24px;
}
.top-price__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background-color: var(--base-color01);
  color: var(--sub-color);
  font-size: var(--font-md4);
  font-weight: bold;
  border-radius: 50%;
}
.top-price__item--camera::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 70px;
  height: 2px;
  background-color: var(--base-color01);
}
.top-price__item--equipment::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: var(--base-color01);
  transform: translate(-60px, -60px) rotate(60deg);
}
.top-price__item--equipment::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: var(--base-color01);
  transform: translate(60px, -60px) rotate(120deg);
}
.top-price__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}
.top-price__text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 48px;
}
.top-price__fee {
  font-family: Arial, sans-serif;
  color: var(--price-color);
  font-size: 100px;
  font-weight: bold;
  font-style: italic;
}
.top-price__fee--en {
  margin-right: 10px;
  font-size: var(--font-xxl);
  font-weight: bold;
}
.top-price__fee--comma {
  font-size: 90px;
  font-style: italic;
}
.top-price__fee--tilde {
  margin-left: 10px;
  font-size: var(--font-xxl);
  vertical-align: middle;
}
/*--------------------------------
サービス【SERVICE】 | .top-service
---------------------------------*/
.top-service {
  overflow: hidden;
}
.top-service__list {
  display: flex;
  margin-bottom: 80px;
}
.top-service__item {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
  align-items: center;
  padding: 48px 36px;
  width: calc(100% / 3);
  background-color: var(--main-color);
  color: var(--text-color02);
}
.top-service__item--center {
  background-color: var(--sub-color);
}
.top-service__subtitle {
  position: relative;
  margin-bottom: 16px;
  font-size: var(--font-xl);
  font-weight: bold;
}
.top-service__subtitle::before,
.top-service__subtitle::after {
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  content: "";
  width: 16px;
  height: 56px;
  border: 2px solid var(--text-color02);
}
.top-service__subtitle::before {
  left: -40px;
  border-right:none;
}
.top-service__subtitle::after {
  right: -40px;
  border-left: none;
}
.top-service__text {
  font-size: var(--font-md);
  text-align: justify;
}
.top-service__button-wrapper {
  display: flex;
  justify-content: center;
}
.top-service__button {
  width: 400px;
  height: 64px;
  font-size: var(--font-md2);
}
/*--------------------------------
当社が選ばれる理由【REASON】 | .top-reason
---------------------------------*/
.top-reason {
  background-color: var(--base-color02);
}
.top-reason__group {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.top-reason__subtitle {
  margin-bottom: 40px;
  font-size: var(--font-lg4);
}
.top-reason__item {
  width: 100%;
  padding: 88px 0;
  background-color: var(--base-color01);
}
.top-reason__item--half {
  width: calc((100% - 40px) / 2);
}
.top-reason__item-title-area {
  display: flex;
  align-items: center;
  column-gap: 56px;
  margin-bottom: 96px;
}
.top-reason__item-title {
  padding: 10px 120px 10px 80px;
  background-color: var(--text-color04);
  color: var(--text-color02);
  font-size: var(--font-xl2);
  font-weight: bold;
  transform: translateX(-20px);
}
.top-reason__lead {
  font-size: var(--font-md4);
}
.top-reason__content {
  position: relative;
  margin-bottom: 64px;
}
.top-reason__content::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  content: "";
  display: inline-block;
  width: 10px;
  height: 150px;
  background-color: var(--main-color);
  animation: crossBoth 4s ease-in-out infinite;
}
.top-reason__content::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  display: inline-block;
  width: 10px;
  height: 150px;
  background-color: var(--main-color);
  animation: crossBoth 4s ease-in-out infinite;
}
/* アニメーション定義 */
@keyframes crossBoth {
  0%   { height: 0; opacity: 0; }
  10%  { opacity: 1; }
  25%  { height: 150px; opacity: 1; }
  70%  { height: 150px; opacity: 1; } /* ← ここで少し止まる */
  90%  { height: 0; opacity: 1; }
  100% { height: 0; opacity: 0; }
}
.top-reason__content-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 80px;
}
.top-reason__content-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.top-reason__item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top-reason__content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
  width: 250px;
  height: 48px;
  background-color: var(--main-color);
  color: var(--text-color02);
  font-size: var(--font-md2);
  font-weight: bold;
}
.top-reason__content-lead {
  font-size: var(--font-md4);
  text-align: center;
}
.top-reason__item-title-area--notfirst {
  margin-bottom: 48px;
}
.top-reason__item-text {
  padding: 0 60px;
  text-align: justify;
}
.top-reason__item-title--communication {
  padding: 10px 30px 10px 80px;
}
.top-reason__item-group {
  display: flex;
  align-items: center;
}
.top-reason__operation {
  width: 50%;
  padding: 0 20px 0 60px;
}
.top-reason__operation-lead {
  margin: 0 auto;
  margin-bottom: 40px;
  font-size: var(--font-md4);
  font-weight: bold;
}
.top-reason__operation-lead--nowrap {
  font-weight: bold;
}
.top-reason__operation-text {
  margin: 0 auto;
  text-align: justify;
}
.top-reason__operation-image-wrapper {
  width: 50%;
}
.top-reason__operation-figure {
  text-align: center;
}
/*--------------------------------
当社の特長【FEATURE】 | .top-feature
---------------------------------*/
.top-feature {
  overflow: hidden;
}
.top-feature__subtitle {
  margin-bottom: 40px;
  font-size: var(--font-lg4);
  font-weight: bold;
}
.top-feature__item {
  padding: 64px 0;
  border-top: 1px solid var(--base-color03);
}
.top-feature__item--border-bottom {
  border-bottom: 1px solid var(--base-color03);
}
.top-feature__container {
  display: flex;
  align-items: center;
  padding: 0 24px;
}
.top-feature__text-area {
  display: flex;
  width: 60%;
}
.top-feature__text-inner {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}
.top-feature__item-title {
  color: var(--text-color03);
  font-size: var(--font-lg4);
  font-weight: bold;
}
.top-feature__text {
  line-height: 2;
  text-align: justify;
}
.top-feature__illust-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
.top-feature__illust-figure {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  background-color: var(--sub-color);
  border-radius: 50%;
}
.top-feature__onestop {
  padding-top: 120px;
}
.top-feature__subtitle--onestop {
  margin-bottom: 96px;
}
.top-feature__onestop-group {
  display: flex;
}
.top-feature__onestop-text-area {
  padding: 0 48px 48px;
  width: 50%;
  background-color: var(--sub-color);
}
.top-feature__onestop-title {
  padding: 16px 0;
  background-color: var(--main-color);
  color: var(--text-color02);
  font-size: var(--font-lg4);
  text-align: center;
  transform: translateY(-50%);
}
.top-feature__onestop-text {
  margin-bottom: 48px;
  color: var(--text-color02);
  line-height: 2;
  text-align: justify;
}
.top-feature__onestop-photo-area {
  width: 50%;
}
.top-feature__onestop-figure {
  height: 100%;
}
.top-feature__onestop-image {
  height: 100%;
  object-fit: cover;
}
/*--------------------------------
お悩み【WORRIES】 | .top-worries
---------------------------------*/
.top-worries {
  background-color: var(--base-color02);
}
.top-worries__group {
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 48px;
}
.top-worries__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 48px) / 3);
}
.top-worries__upper {
  display: flex;
  flex-direction: column;
  position: relative;
  flex-grow: 1;
  min-height: 220px;
  padding: 48px 48px 0;
  background-color: var(--base-color01);
}
.top-worries__upper::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid var(--base-color01);
}
.top-worries__upper-title {
  margin-bottom: 24px;
  color: var(--text-color03);
  font-size: var(--font-md4);
  font-weight: bold;
  text-align: center;
}
.top-worries__upper-text {
  font-size: var(--font-md1);
  font-weight: bold;
  text-align: center;
}
.top-worries__lower {
  flex-grow: 1;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 72px 48px 48px;
  background-color: var(--main-color);
}
.top-worries__lower-title {
  margin-bottom: 24px;
  color: var(--text-color02);
  font-size: var(--font-md4);
  font-weight: bold;
  text-align: center;
}
.top-worries__lower-text {
  color: var(--text-color02);
  text-align: justify;
}
.top-worries__lower-figure {
  height: 110px;
}
.fa-arrow-right {
  margin-top: 2px;
  margin-left: 10px;
}
/*--------------------------------
ライブ配信の実績【WORKS】 | .top-works
---------------------------------*/
.top-works__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 24px;
  margin-bottom: 80px;
}
.top-works__item {
  width: 25%;
}
.top-works__figure {
  text-align: center;
}
.top-works__lower-lead {
  font-size: var(--font-md2);
  text-align: center;
}
/*--------------------------------
CTAバナー | .cta-banner
---------------------------------*/
.cta-banner {
  background-color: var(--text-color04);
}
.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-banner__title {
  margin-bottom: 48px;
  color: var(--text-color02);
  font-size: var(--font-xl);
  font-weight: bold;
}
.cta-banner__lead {
  margin-bottom: 64px;
  color: var(--text-color02);
  font-size: var(--font-md4);
  text-align: center;
}
.cta-banner__tel-link {
  display: block;
  margin-bottom: 80px;
  padding: 5px 10px;
  color: var(--text-color02);
  font-size: var(--font-xl2);
}
.cta-banner__button-area {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 120px;
}
.cta-banner__button {
  width: 360px;
  height: 80px;
  font-size: var(--font-lg);
}
/*--------------------------------
フッター | .footer
---------------------------------*/
.footer {
  background-color: var(--base-color03);
}
.footer__group {
  display: flex;
  align-items: flex-start;
  padding: 120px 0 88px;
}
.footer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__figure {
  text-align: right;
}
.footer__logo-image {
  width: 400px;
}
.footer__logo-text {
  color: var(--text-color02);
  font-size: var(--font-md);
}
.footer__address {
  color: var(--text-color02);
}
.footer__zip {
  display: block;
  margin-bottom: 8px;
}
.footer__location {
  font-size: var(--font-md);
  letter-spacing: 0.1em;
}
.footer__navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.footer__navigation-inner {
  width: 80%;
}
.footer__menu-title {
  margin-bottom: 24px;
  padding-bottom: 24px;
  color: var(--text-color02);
  font-size: var(--font-md4);
  font-weight: bold;
  border-bottom: 1px solid var(--text-color02);
}
.footer__menu-columns {
  display: flex;
  column-gap: 80px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.footer__link {
  color: var(--text-color02);
  font-size: var(--font-md);
  transition: all 0.2s 0s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    color: var(--text-color03);
  }
}
@media (hover: none) {
  .footer__link:active {
    color: var(--text-color03);
  }
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  background-color: var(--main-color);
}
.copyright__small {
  color: var(--text-color02);
}
/*-------------------------------------
レスポンシブ | トップページ
--------------------------------------*/
/* ----------1400px以下---------- */
/* メインビジュアル | .mv */
@media screen and (max-width: 1400px) {
  .mv__title-bg {
    top: -4vw;
    left: -2vw;
    width: 55vw;
    height: 55vw;
    transform: rotate(65deg) scaleY(1.1);
  }
  .mv__group {
    top: 7vw;
    left: 30vw;
    transform: translate(-50%);
  }
  .mv__title {
    font-size: var(--font-xxl);
  }
  .mv__subtitle {
    margin-bottom: 48px;
  }
}
/* ----------1280px以下---------- */
@media screen and (max-width: 1280px) {
  /* 全体 */
  html, body {
    font-size: 15px;
  }
  .text__line-height {
    line-height: 1.8;
  }
  .text__break--show-1280 {
  display: block;
  }
  /* 共通（コンポーネント） */
  .section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .section__title-area {
    margin-bottom: 64px;
  }
  /* サービス【SERVICE】 | .top-service */
  .top-service__item {
    padding: 36px 24px;
  }
  .top-service__subtitle {
    margin-bottom: 8px;
  }
  .top-service__subtitle::before {
    left: -24px;
  }
  .top-service__subtitle::after {
    right: -24px;
  }
  /* 当社が選ばれる理由【REASON】 | .top-reason */
  .top-reason__item {
    padding: 64px 0;
  }
  .top-reason__item-title {
    padding: 10px 40px 10px 68px;
    font-size: var(--font-lg2);
  }
  .top-reason__item-title-area--notfirst {
    margin-bottom: 36px;
  }
  .top-reason__item-text {
    padding: 0 48px;
  }
  .top-reason__operation-image-wrapper {
    width: 48%;
  }
  /* 当社の特長【FEATURE】 | .top-feature */
    .top-feature__container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .top-feature__item {
    padding: 48px 0;
  }
  .top-feature__text-inner {
    row-gap: 36px;
  }
  .top-feature__illust-figure {
    width: 240px;
    height: 240px;
  }
  .top-feature__onestop {
    padding-top: 100px;
  }
  .top-feature__onestop-text-area {
    padding: 0 24px 48px;
  }
  .top-feature__onestop-title {
    font-size: var(--font-lg3);
  }
  .top-feature__onestop-text {
    margin-bottom: 36px;
  }
  /* お悩み【WORRIES】 | .top-worries */
  .top-worries__group {
    column-gap: 16px;
  }
  .top-worries__item {
    width: calc((100% - 32px) / 3);
  }
  .top-worries__upper {
    padding: 36px 12px 0;
    min-height: 210px;
  }
  .top-worries__upper::after {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid var(--base-color01);
  }
  .top-worries__lower {
    min-height: 440px;
    padding: 64px 48px 48px;
  }
  /* CTAバナー | .cta-banner */
  .cta-banner__title {
    font-size: var(--font-lg3);
  }
  .cta-banner__lead {
    font-size: var(--font-md2);
  }
  .cta-banner__tel-link {
    font-size: var(--font-lg4);
  }
  .cta-banner__button {
    width: 320px;
    height: 64px;
  }
  /* フッター | .footer */
  .footer__group {
    padding: 100px 0 88px;
  }
}
/* ----------960px以下---------- */
@media screen and (max-width: 960px) {
  /* 全体 */
  html, body {
    font-size: 14px;
  }
  .text__break--show-960 {
    display: block;
  }
  /* 共通（コンポーネント） */
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section__title-area {
    margin-bottom: 48px;
  }
  /* ボタン */
  .button {
    width: 200px;
  }
  /* ヘッダー | header */
  .header__list {
    column-gap: 16px;
  }
  /* メインビジュアル | .mv */
  .mv__title-bg {
    top: -10vw;
    left: -8vw;
    width: 60vw;
    height: 60vw;
    transform: rotate(65deg) scaleY(1.1);
  }
  .mv__group {
    top: 2vw;
    left: 30vw;
    transform: translate(-50%);
  }
  .mv__logo-image {
    width: 150px;
  }
  .mv__title {
    margin-bottom: 24px;
    font-size: var(--font-xl);
  }
  .mv__subtitle {
    margin-bottom: 32px;
    font-size: var(--font-md1);
  }
  /* 料金バナー | .top-price */
  .top-price__title {
    margin-bottom: 64px;
  }
  .top-price__illust {
    width: 50%;
  }
  .top-price__item {
    width: 100px;
    height: 100px;
  }
  .top-price__text {
    width: 50%;
  }
  .top-price__text-wrapper {
    row-gap: 32px;
  }
  .top-price__fee {
    font-size: 80px;
  }
  /* サービス【SERVICE】 | .top-service */
  .top-service__list {
    flex-direction: column;
    margin-bottom: 64px;
  }
  .top-service__item {
    width: 100%;
    padding: 64px 24px;
  }
  .top-service__subtitle {
    margin-bottom: 24px;
  }
  .top-service__text {
    width: 90%;
  }
  .top-service__button {
    width: 320px;
  }
  /* 当社が選ばれる理由【REASON】 | .top-reason */
  .top-reason__group {
    flex-direction: column;
    gap: 24px;
  }
  .top-reason__item--half {
    width: 100%;
  }
  .top-reason__content::before {
    height: 100px;
  }
  .top-reason__content::after {
    height: 80px;
  }
  /* アニメーション定義 */
  @keyframes crossBoth {
    0%   { height: 0; opacity: 0; }
    10%  { opacity: 1; }
    25%  { height: 80px; opacity: 1; }
    70%  { height: 80px; opacity: 1; } /* ← ここで少し止まる */
    90%  { height: 0; opacity: 1; }
    100% { height: 0; opacity: 0; }
  }
  /* 当社の特長【FEATURE】 | .top-feature */
  .top-feature__text-inner {
    row-gap: 24px;
  }
  .top-feature__illust-figure {
    width: 200px;
    height: 200px;
  }
  .top-feature__illust-image {
    width: 80px;
  }
  .top-feature__onestop {
    padding-top: 80px;
  }
  .top-feature__onestop-group {
    flex-direction: column;
  }
  .top-feature__onestop-text-area {
    width: 100%;
  }
  .top-feature__onestop-photo-area {
    width: 100%;
  }
  .top-feature__onestop-image {
    width: 100%;
  }
  /* お悩み【WORRIES】 | .top-worries */
  .top-worries__group {
    gap: 24px;
  }
  .top-worries__item {
    width: calc((100% - 24px) / 2);
  }
  .top-worries__upper {
    padding: 48px 12px;
    min-height: 180px;
  }
  .top-worries__lower {
    min-height: 430px;
  }
  /* CTAバナー | .cta-banner */
  .cta-banner__button {
    width: 240px;
    font-size: var(--font-md3);
  }
  .cta-banner__lead {
    margin-bottom: 48px;
  }
  .cta-banner__tel-link {
    margin-bottom: 64px;
  }
  /* フッター | .footer */
  .footer__group {
    padding: 80px 0 64px;
  }
  .footer__logo-image {
    width: 300px;
  }
}
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  /* 全体 */
  html, body {
    font-size: 13.5px;
  }
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .text__break--show-767 {
    display: block;
  }
  /* 共通（コンポーネント） */
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section__title-area {
    margin-bottom: 32px;
  }
  /* ヘッダー | header */
  .header {
    height: 60px;
  }
  .header__inner {
    height: 60px;
  }
  .header__group {
    flex-direction: row;
    row-gap: 0;
  }
  /*===== モバイルデザイン===== */
  .header__group {
    display: none;
  }
  .header__mobile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 60px;
  }
  /* ハンバーガーメニューボタン */
  .header__hamburger {
    position: fixed;
    right: 24px;
    z-index: 10000;
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    cursor: pointer;
  }
  .hamburger__line {
    position: absolute;
    z-index: 10000;
    display: block;
    width: 80%;
    height: 3px;
    background-color: var(--main-color);
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  .hamburger__line--top {
    top: 10px;
    left: 6px;
  }
  .hamburger__line--middle {
    top: 22px;
    left: 6px;
  }
  .hamburger__line--bottom {
    top: 34px;
    left: 6px;
  }
  .header__hamburger.is-active .hamburger__line--top {
    transform: rotate(-45deg);
    top: 22px;
  }
  .header__hamburger.is-active .hamburger__line--middle {
    opacity: 0;
  }
  .header__hamburger.is-active .hamburger__line--bottom {
    transform: rotate(45deg);
    top: 22px;
  }
  .header__mobile-nav {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    background-color: var(--main-color);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
  }
  .header__mobile-nav.is-open {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .header__mobile-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 48px;
    height: 100vh;
  }
  .header__mobile-nav-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 24px;
  }
  .header__mobile-cta-list {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
  .header__mobile-nav-link {
    color: var(--text-color02);
    font-size: var(--font-md2);
    font-weight: bold;
  }
  /* メインビジュアル | .mv */
  .mv__title-bg {
    top: -10vw;
    left: -8vw;
    width: 60vw;
    height: 60vw;
    transform: rotate(65deg) scaleY(1.1);
  }
  .mv__group {
    top: -2vw;
    left: 30vw;
    transform: translate(-50%);
  }
  .mv__logo {
    margin-bottom: 24px;
  }
  .mv__title {
    margin-bottom: 24px;
    font-size: var(--font-xl);
  }
  .mv__subtitle {
    margin-bottom: 32px;
    font-size: var(--font-md1);
  }
  /* 料金バナー | .top-price */
  .top-price__title {
    margin-bottom: 48px;
  }
  .top-price__group {
    flex-direction: column;
    align-items: center;
    row-gap: 32px;
  }
  .top-price__illust {
    width: 60%;
  }
  .top-price__text {
    width: 100%;
  }
  .top-price__text-wrapper {
    align-items: center;
    row-gap: 24px;
  }
  /* 当社が選ばれる理由【REASON】 | .top-reason */
  .top-reason__item {
    padding: 48px 0;
  }
  .top-reason__item-title-area {
    margin-bottom: 64px;
    column-gap: 24px;
  }
  .top-reason__content {
    margin-bottom: 48px;
  }
  .top-reason__content::before,
  .top-reason__content::after {
    content: none;
  }
  .top-reason__content-list {
    padding: 0 48px;
    row-gap: 32px;
  }
  .top-reason__content-title {
    width: 100%;
  }
  .top-reason__content-item {
    display: block;
    width: 100%;
  }
  .top-reason__item-title-area {
    display: block;
    margin-bottom: 48px;
  }
  .top-reason__item-title-area--notfirst {
    margin-bottom: 32px;
  }
  .top-reason__item-title {
    margin-bottom: 24px;
  }
  .top-reason__lead {
    margin-left: 48px;
  }
  .top-reason__item-group {
    flex-direction: column;
    row-gap: 24px;
  }
  .top-reason__operation {
    width: 100%;
    padding: 0 48px;
  }
  .top-reason__operation-lead {
    margin-bottom: 24px;
  }
  .top-reason__operation-image-wrapper {
    width: 100%;
    padding: 0 48px;
  }
  .top-reason__operation-image {
    width: 100%;
  }
  /* 当社の特長【FEATURE】 | .top-feature */
  .top-feature__container {
    flex-direction: column-reverse;
    row-gap: 32px;
  }
  .top-feature__text-inner {
    align-items: center;
  }
  .top-feature__illust-figure {
    width: 180px;
    height: 180px;
  }
  /* お悩み【WORRIES】 | .top-worries */
  .top-feature__onestop-text {
    margin-bottom: 16px;
  }
  /* ライブ配信の実績【WORKS】 | .top-works */
  .top-works__item {
    width: calc(100% / 3);
  }
  .top-works__list {
    margin-bottom: 48px;
  }
  /* CTAバナー | .cta-banner */
  .cta-banner__title {
    margin-bottom: 32px;
    text-align: center;
  }
  .cta-banner__lead {
    margin-bottom: 32px;
  }
  .cta-banner__tel-link {
    margin-bottom: 48px;
  }
  .cta-banner__button-area {
    column-gap: 64px;
  }
  .cta-banner__button {
    width: 200px;
    height: 48px;
  }
  /* フッター | .footer */
  .footer__group {
    flex-direction: column-reverse;
    row-gap: 64px;
    padding: 60px 0;
    align-items: center;
  }
  .footer__info {
    width: 100%;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__navigation {
    width: 80%;
  }
  .footer__menu-title {
    padding-bottom: 16px;
  }
}
/* ----------640px以下---------- */
@media screen and (max-width: 640px) {
  /* 全体 */
  html, body {
    font-size: 13px;
  }
  .text__break--show-640 {
    display: block;
  }
  .section__subtitle {
    margin-bottom: 15px;
    font-size: var(--font-xxl);
  }
  .section__lead {
    font-size: var(--font-md);
  }
  .top-works__lower-lead {
    font-size: var(--font-md);
  }
  /* メインビジュアル | .mv */
  .mv__title-bg {
    top: -8vw;
    left: -14vw;
    width: 70vw;
    height: 70vw;
    transform: rotate(65deg) scaleY(1.1);
  }
  .mv__group {
    top: -2vw;
    left: 32vw;
  }
  .mv__logo {
    margin-bottom: 16px;
  }
  .mv__logo-image {
    width: 120px;
  }
  .mv__title {
    margin-bottom: 16px;
    font-size: var(--font-lg3);
  }
  .mv__subtitle {
    margin-bottom: 24px;
    font-size: var(--font-xs);
  }
  .swiper-slide {
    aspect-ratio: 1.6 / 1;
  }
  .mv__button {
    width: 160px;
    height: 40px;
  }
  /* 料金バナー | .top-price */
  .top-price__illust {
    width: 80%;
  }
  /* サービス【SERVICE】 | .top-service */
  .top-service__list {
    margin-bottom: 48px;
  }
  .top-service__item {
    padding: 48px 24px;
  }
  .top-service__subtitle {
    margin-bottom: 16px;
  }
  .top-service__button {
    width: 240px;
  }
  /* 当社が選ばれる理由【REASON】 | .top-reason */
  .top-reason__item-title-area {
    margin-bottom: 32px;
  }
  .top-reason__content {
    margin-bottom: 32px;
  }
  /* 当社の特長【FEATURE】 | .top-feature */
  .top-feature__text-area {
    width: 80%;
  }
  .top-feature__subtitle--onestop {
    margin-bottom: 72px;
  }
  .top-feature__onestop-text {
    margin-bottom: 24px;
  }
  .top-feature__illust-figure {
  width: 160px;
  height: 160px;
  }
  .top-feature__illust-image {
    width: 70px;
  }

  /* お悩み【WORRIES】 | .top-worries */
  .top-worries__group {
    flex-direction: column;
  }
  .top-worries__item {
    width: 100%;
  }
  .top-worries__upper::after {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid var(--base-color01);
  }
  /* ライブ配信の実績【WORKS】 | .top-works */
  .top-works__list {
    row-gap: 16px;
  }
  .top-works__item {
    width: 50%;
  }
  /* CTAバナー | .cta-banner */
  .cta-banner__lead {
    margin-bottom: 24px;
  }
  .cta-banner__tel-link {
    margin-bottom: 32px;
  }
  .cta-banner__button-area {
    column-gap: 48px;
  }
  .cta-banner__button {
    width: 180px;
    font-size: var(--font-md2);
  }
  /* フッター | .footer */
  .footer__navigation {
    width: 90%;
  }
  .footer__navigation-inner {
    width: 100%;
  }
  .footer__menu-columns {
    justify-content: center;
  }
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  /* 全体 */
  .text__break--show-480 {
    display: block;
  }
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .section__title-area {
    padding-left: 24px;
  }
  .section__subtitle {
    margin-bottom: 16px;
  }
  .section__subtitle {
    margin-bottom: 10px;
    font-size: var(--font-xl2);
  }
  /* メインビジュアル | .mv */
  .mv__title-bg {
    top: -10vw;
    left: -12vw;
    width: 70vw;
    height: 70vw;
    transform: rotate(65deg) scaleY(1.1);
  }
  .mv__group {
    top: -2vw;
    left: 37vw;
  }
  .mv__logo {
    margin-bottom: 16px;
  }
  .mv__logo-image {
    width: 120px;
  }
  .mv__logo-text {
    font-size: var(--font-xxs);
  }
  .mv__title {
    margin-bottom: 16px;
    font-size: var(--font-md4);
  }
  .mv__subtitle {
    margin-bottom: 16px;
    font-size: var(--font-xxs);
  }
  .swiper-slide {
    aspect-ratio: 1.3 / 1;
  }
  .mv__button {
    width: 100px;
    height: 32px;
    font-size: var(--font-xxs);
  }  
  /* 料金バナー | .top-price */
  .top-price__title {
    font-size: var(--font-lg4);
  }
  .top-price__group {
    row-gap: 16px;
  }
  .top-price__illust {
    width: 100%;
  }
  .top-price__fee {
    font-size: 64px;
  }
  /* サービス【SERVICE】 | .top-service */
  .top-service__list {
    margin-bottom: 32px;
  }
  .top-service__item {
    row-gap: 24px;
    padding: 36px 24px;
  }
  .top-service__subtitle {
    margin-bottom: 16px;
  }
  .top-service__text {
    width: 100%;
  }
  .top-service__button {
    width: 200px;
    height: 48px;
  }
  /* 当社が選ばれる理由【REASON】 | .top-reason */
  .top-reason__subtitle {
    margin-bottom: 24px;
  }
  .top-reason__content {
    margin-bottom: 24px;
  }
  .top-reason__content-list {
    padding: 0 24px;
    row-gap: 24px;
  }
  .top-reason__item {
    padding: 32px 0;
  }
  .top-reason__item-title {
    padding: 10px 0 10px 24px;
  }
  .top-reason__lead {
    margin-left: 24px;
  }
  .top-reason__item-text {
    padding: 0 24px;
  }
  .top-reason__operation {
    padding: 0 24px;
  }
  .top-reason__operation-image-wrapper {
    padding: 0 24px;
  }
  /* 当社の特長【FEATURE】 | .top-feature */
  .top-feature__container {
    row-gap: 24px;
  }
  .top-feature__illust-area {
    width: 100%;
  }
  .top-feature__illust-figure {
    width: 160px;
    height: 160px;
  }
  .top-feature__illust-image {
    width: 60px;
  }
  .top-feature__text-inner {
    row-gap: 16px;
  }
  .top-feature__onestop {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .top-feature__onestop-title {
    font-size: var(--font-md4);
  }
  .top-feature__onestop-text {
    margin-bottom: 24px;
  }
  /* お悩み【WORRIES】 | .top-worries */
  .top-worries__upper {
    padding: 36px 12px;
    min-height: 160px;
  }
  .top-worries__lower {
    min-height: 400px;
  }
  .top-worries__lower-title {
    margin-bottom: 0;
  }
  /* CTAバナー | .cta-banner */
  .cta-banner__button-area {
    flex-direction: column;
    row-gap: 36px;
  }
  .cta-banner__title {
    margin-bottom: 24px;
    font-size: var(--font-lg);
  }
  .cta-banner__lead {
    font-size: var(--font-md1);
  }
  .cta-banner__tel-link {
    margin-bottom: 24px;
  }
  .cta-banner__button-area {
    row-gap: 24px;
  }
  /* フッター | .footer */
  .footer__menu-columns {
    justify-content: space-between;
  }
  .footer__link {
    font-size: var(--font-base);
  }
  .copyright {
    font-size: var(--font-xxs);
  }
}

/* ==================================================
サービス | service.html
================================================== */
/*--------------------------------
サブビジュアル共通
---------------------------------*/
.sub-visual {
  margin-top: 120px;
  background-color: var(--main-color);
}
.sub-visual__inner {
  display: flex;
  align-items: center;
  min-height: 240px;
  padding: 100px 0;
}
.sub-visual-title {
  margin-bottom: 24px;
  color: var(--text-color02);
  font-size: var(--font-xxl);
  font-weight: bold;
}
.sub-visual-read {
  color: var(--text-color02);
  font-size: var(--font-md);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-align: left;
}
/*--------------------------------
サービス | .service
---------------------------------*/
.sub-service {
  background-color: var(--base-color02);
}
/* 3つのサービス */
.sub-service__services-list {
  display: flex;
  flex-direction: column;
  row-gap: 120px;
}
.sub-service__services-item-inner {
  display: flex;
}
.sub-service__services-left {
  width: 50%;
}
.sub-service__services-title {
  margin-bottom: 64px;
  padding: 12px 40px;
  background-color: var(--main-color);
  color: var(--text-color02);
  font-size: var(--font-lg4);
  font-weight: bold;
}
.sub-service__services-image {
  width: 100%;
}
.sub-service__services-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 60px;
  width: 50%;
  padding-left: 64px;
}
.sub-service__services-read {
  font-size: var(--font-md2);
  font-weight: bold;
}
.sub-service__services-text {
  line-height: 2;
  text-align: justify;
}
/* 安心のワンストップ対応 */
.sub-service__one-stop {
  padding: 200px 0 100px;
  text-align: center;
}
.sub-service__one-stop-title {
  margin-bottom: 40px;
  color: var(--text-color03);
  font-size: var(--font-lg4);
  font-weight: bold;
}
.sub-service__one-stop-read {
  margin-bottom: 60px;
  font-size: var(--font-md2);
}
.sub-service__one-stop-list {
  margin-bottom: 40px;
  display: flex;
}
.sub-service__one-stop-item {
  position: relative;
  width: calc(100% / 3);
  padding: 64px 40px 80px;
  background-color: var(--main-color);
  text-align: center;
}
.sub-service__one-stop-item--first::after,
.sub-service__one-stop-item--second::after {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 10;
  transform: translate(100%, -30%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 80px solid transparent;
  border-bottom: 80px solid transparent;
  border-left: 60px solid var(--main-color);
}
.sub-service__one-stop-item--second::after {
  border-left: 50px solid var(--sub-color);
}
.sub-service__one-stop-item--second {
  background-color: var(--sub-color);
}
.sub-service__one-stop-subtitle {
  margin-bottom: 50px;
  padding: 10px 0;
  color: var(--text-color02);
  font-size: var(--font-lg4);
  font-weight: bold;
  border-top: 1px solid var(--base-color01);
  border-bottom: 1px solid var(--base-color01);
}
.sub-service__one-stop-figure {
  display: inline-block;
  padding: 30px;
  background: linear-gradient(145deg, #16c9ba, #13a79b); 
  border-radius: 50%;
  box-shadow: inset 5px 5px 15px #11988e, inset -5px -5px 15px #1ae6d8;
}
.sub-service__one-stop-subtitle--center {
  background: linear-gradient(145deg, #046c64, #02544f);
  box-shadow: inset 5px 5px 15px #024c47, inset -5px -5px 15px #04756d;
}
.sub-service__one-stop-text {
  line-height: 2;
}
/* さまざまなビジネスイベントに対応 */
.sub-service__event {
  padding-top: 60px;
}
.sub-service__event-title {
  margin-bottom: 40px;
  color: var(--text-color03);
  font-size: var(--font-lg4);
  font-weight: bold;
  text-align: center;
}
.sub-service__event-lead {
  margin-bottom: 120px;
  font-size: var(--font-md2);
  text-align: center;
}
.sub-service__event-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 100px;
}
.sub-service__event-item {
  position: relative;
  width: calc((100% - 40px) / 2);
  padding: 80px 64px 64px;
  background-color: var(--base-color01);
}
.sub-service__event-subtitle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 64px;
  background: var(--main-color);
  color: var(--text-color02);
  font-size: var(--font-lg2);
  font-weight: bold;
  text-align: center;
}
.sub-service__event-figure {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}
.sub-service__event-image {
  width: 100%;
  height: 100%;
}
.sub-service__event-info {
  margin-bottom: 24px;
}
.sub-service__event-desc {
  font-size: var(--font-md);
  font-weight: bold;
  line-height: 1.8;
}
.sub-service__event-text {
  line-height: 2;
}
/*--------------------------------
ライブ配信の流れ | .flow
---------------------------------*/
.sub-flow__list {
  display: flex;
  flex-direction: column;
  row-gap: 64px;
  max-width: 960px;
  margin: 0 auto;
}
.sub-flow__item {
  display: flex;
  min-height: 120px;
}
.sub-flow__title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25%;
  background-color: var(--main-color);
  font-size: 24px;
  font-weight: bold;
  color: var(--text-color02);
  text-align: center;
}
.sub-flow__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 40px solid var(--main-color);
}
.sub-flow__title--last::after {
  content: none;
}
.sub-flow__text {
  display: flex;
  align-items: center;
  width: 75%;
  padding: 0 40px;
  font-size: var(--font-md);
  text-align: justify;
  border: 2px solid var(--main-color);
  border-left: none;
}
.sub-flow__title-line {
  display: block;
  font-weight: bold;
}

/*-------------------------------------
レスポンシブ | サービスページ
--------------------------------------*/
/* ----------1280px以下---------- */
@media screen and (max-width: 1280px) {
  /* 安心のワンストップ対応 */
  .sub-service__one-stop {
    padding: 150px 0 80px;
  }
  .sub-service__one-stop-item--first::after,
  .sub-service__one-stop-item--second::after {
    border-left: 30px solid var(--main-color);
  }
  .sub-service__one-stop-item--second::after {
  border-left: 30px solid var(--sub-color);
  }
}
/* ----------960px以下---------- */
@media screen and (max-width: 960px) {
  /* サービス */
  .sub-service__services-right {
    row-gap: 30px;
    padding-left: 32px;
  }
  /* 安心のワンストップ対応 */
    .sub-service__one-stop {
    padding: 120px 0 60px;
  }
  .sub-service__services-list {
    row-gap: 80px;
  }
  .sub-service__one-stop-item {
    padding: 64px 20px 80px;
  }
  .sub-service__services-title {
    margin-bottom: 48px;
  }
  .sub-service__one-stop-figure {
    width: 160px;
    height: 160px;
  }
  .sub-service__one-stop-item--first::after,
  .sub-service__one-stop-item--second::after {
    border-left: 25px solid var(--main-color);
  }
  .sub-service__one-stop-item--second::after {
    border-left: 30px solid var(--sub-color);
  }
  /* さまざまなビジネスイベントに対応 */
  .sub-service__event-item {
    padding: 80px 24px 64px;
    width: calc((100% - 30px) / 2);
  }
  .sub-service__event-subtitle {
    width: 250px;
  }
  /* ライブ配信実施までの流れ */
  .sub-flow__title {
    width: 30%;
  }
  .sub-flow__text {
    width: 70%;
  }
}
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  /* subヘッダー共通 | .header */
  .header__logo {
    width: 120px;
  }
  .header__logo-text {
    font-size: 8px;
  }
  .sub-visual {
    margin-top: 0;
  }
  /* サブビジュアル共通 */
  .sub-visual__inner {
    min-height: 180px;
    padding: 50px 0;
  }
  /* サービス */
  .sub-service__services-item-inner {
    flex-direction: column-reverse;
  }
  .sub-service__services-title {
    margin-bottom: 32px;
  }
  .sub-service__services-right {
    row-gap: 20px;
    margin-bottom: 40px;
  }
  .sub-service__services-left {
    width: 100%;
  }
  .sub-service__services-right {
    width: 100%;
    padding-left: 0;
  }
  /* 安心のワンストップ対応 */
  .sub-service__one-stop-list {
    flex-direction: column;
  }
  .sub-service__one-stop-item {
    width: 100%;
    padding: 64px 80px 80px;
  }
  .sub-service__one-stop-figure {
    width: auto;
    height: auto;
  }
  .sub-service__one-stop-item--second,
  .sub-service__one-stop-item--third {
    padding-top: 100px;
  }
  .sub-service__one-stop-item--first::after,
  .sub-service__one-stop-item--second::after {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -2%);
    border-top: 40px solid var(--main-color);
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: none;
    }
  .sub-service__one-stop-item--second::after {
    border-top: 40px solid var(--sub-color);
  }
}
/* ----------640px以下---------- */
@media screen and (max-width: 640px) {
    /* サブビジュアル共通 */
  .sub-visual__inner {
    min-height: 120px;
    padding: 30px 0;
  }
  .text__break--show-640 {
    display: block;
  }
  .sub-visual-title {
    font-size: var(--font-xl2);
  }
  /* さまざまなビジネスイベントに対応 */
  .sub-service__event-list {
    flex-direction: column;
  }
  .sub-service__event-item {
    width: 100%;
    padding: 80px 24px 64px;
  }
  /* ライブ配信実施までの流れ */
  .sub-flow__item {
    position: relative;
    flex-direction: column;
    min-height: auto;
  }
  .sub-flow__item::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 20px solid var(--main-color);
  }
  .sub-flow__item--last::after {
    content: none;
  }
  .sub-flow__title {
    width: 100%;
    padding: 20px 0;
  }
  .sub-flow__title::after {
    content: none;
  }
  .sub-flow__text {
    width: 100%;
    padding: 20px;
    border-left: 2px solid var(--main-color);
    border-top: none;
  }
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  /* サブビジュアル共通 */
  .sub-visual-title {
    font-size: var(--font-xl);
  }
  .sub-service__one-stop {
    padding: 80px 0 0;
  }
}

/* ==================================================
料金プラン | price.html
================================================== */
/*--------------------------------
基本プラン | .plan
---------------------------------*/
.plan {
  background-color: var(--base-color02);
}
/* PC用料金プラン【table】 */
.plan-table {
  padding-top: 20px;
  width: 100%;
}
.plan-table__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  background-color: var(--base-color01);
  font-size: var(--font-base);
}
.plan-table__head {
  color: var(--text-color02);
}
.plan-table__row {
  border-bottom: 2px solid var(--base-color02);
}
.plan-table__cell {
  width: calc(85% / 4);
  padding: 24px 16px;
  text-align: center;
  vertical-align: middle;
  border-left: 10px solid var(--base-color02);
}
.plan-table__cell--price {
  font-size: var(--font-md);
  font-weight: bold;
}
.plan-table__cell--mini {
  color: #f4b400;
}
.plan-table__cell--light {
  color: #3a90d6;
}
.plan-table__cell--standard {
  color: #15b7aa;
}
.plan-table__cell--premium {
  color: #e36d6d;
}
.plan-table__plan-name {
  position: sticky;
  top: 120px;
  z-index: 10;
  background-color: var(--main-color);
  font-weight: bold;
  font-size: var(--font-md2);
  padding: 20px;
}
.plan-table__plan-name--mini {
  background-color: #f4b400;
}
.plan-table__plan-name--light {
  background-color: #3598db;
}
.plan-table__plan-name--premium {
  background-color: #e36d6d;
}
.plan-table__label {
  width: 15%;
  background-color: #d6d6d6;
  font-weight: bold;
  vertical-align: middle;
  border: none;
}
.plan-table__cell--blank {
  position: sticky;
  top: 120px;
  z-index: 10;
  transform: translateX(1px);
  background-color: var(--base-color02);
  border: none;
}
.plan-table__body .plan-table__row:last-child {
  border-bottom: none;
}
.plan-table__button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 100px;
  margin-top: 80px;
}
.button--high {
  height: 72px;
}

/* SP用料金プラン【ul】 */
.plan-card {
  display: none;
}
.plan__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 60px;
}
.plan__item {
  width: calc((100% - 40px) / 2);
  background-color: var(--base-color01);
}
.plan__name {
  padding: 20px 0;
  text-align: center;
  background-color: var(--main-color);
  color: var(--text-color02);
  font-size: var(--font-md4);
  font-weight: bold;
}
.plan__name--mini {
  background-color: #f4b400;
}
.plan__name--light {
  background-color: #3a90d6;
}
.plan__name--premium {
  background-color: #e36d6d;
}
.plan__details {
  padding: 0 20px;
}
.plan__row {
  display: flex;
  padding: 20px 0;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
}
.plan__row--price {
  padding: 30px 0;
}
.plan__text {
  font-size: var(--font-md);
}
.plan__price {
  font-size: var(--font-md2);
  font-weight: bold;
}
.plan__price--mini {
  color: #f4b400;
}
.plan__price--light {
  color: #3a90d6;
}
.plan__price--standard {
  color: #15b7aa;
}
.plan__price--premium {
  color: #e36d6d;
}
.plan__row--large {
  min-height: 12em;
}
.plan__row--medium {
  min-height: 8em;
}
.plan__row--noborder {
  border-bottom: none;
}
.plan__desc-name {
  width: 40%;
  font-size: var(--font-md);
  font-weight: bold;
}
.plan__desc-name--price {
  padding: 20px 0;
}
.plan__desc {
  width: 60%;
  padding-left: 20px;
}
/*--------------------------------
オプション | .option
---------------------------------*/
.option__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 100px;
}
.option__block {
  width: 45%;
}
.option__row {
  display: flex;
  justify-content: flex-start;
  column-gap: 40px;
}
.option__block-title {
  margin-bottom: 40px;
  padding-bottom: 20px;
  color: var(--main-color);
  font-size: var(--font-lg);
  font-weight: bold;
  border-bottom: 2px solid var(--main-color);
}
.option__row {
  padding: 20px;
}
.option__term {
  padding-left: 1em;
  padding-bottom: 15px;
  width: 38%;
  font-weight: bold;
  border-bottom: 2px solid var(--main-color);
}
.option__price {
  padding-left: 1em;
  padding-bottom: 15px;
  width: 62%;
  border-bottom: 1px solid var(--main-color);
}
/*-------------------------------------
レスポンシブ | 料金プランページ
--------------------------------------*/
/* ----------1280px以下---------- */
@media screen and (max-width: 1280px) {
  /* オプション */
  .option__block {
    width: 48%;
  }
  .option__row {
    column-gap: 20px;
    padding: 20px 10px;
  }
  .option__term {
    width: 48%;
  }
  .option__price {
    width: 52%;
  }
}
/* ----------960px以下---------- */
@media screen and (max-width: 960px) {
  /* 基本プラン */
  .plan-table {
    display: none;
  }
  .plan-card {
    display: block;
  }
  .plan-table__button-wrapper {
    column-gap: 60px;
    margin-top: 60px;
  }
  .button--high {
    height: 64px;
  }
  /* オプション */
  .option__content {
    flex-direction: column;
    row-gap: 60px;
  }
  .option__block {
    width: 100%;
  }
  .option__term {
    width: 40%;
  }
  .option__row {
    padding: 20px;
  }
  .option__price {
    width: 60%;
  }
}
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  /* 基本プラン */
  .plan__list {
    flex-direction: column;
  }
  .plan__item {
    width: 100%;
  }
  .plan-table__button-wrapper {
    column-gap: 40px;
    margin-top: 60px;
  }
  .button--high {
    height: 56px;
  }
}
/* ----------640px以下---------- */
@media screen and (max-width: 640px) {
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  .plan-table__button-wrapper {
    flex-direction: column;
    row-gap: 20px;
    margin-top: 60px;
  }
  .button--high {
    height: 56px;
  }
  }
  /* オプション */
  .option__content {
    row-gap: 40px;
  }
  .option__block-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .option__row {
    padding: 20px 10px;
  }
  .option__term {
    width: 48%;
  }
  .option__price {
    width: 52%;
  }
}

/* ==================================================
当社ライブ配信の特長 | feature.html
================================================== */
/*--------------------------------
コンセプト | .live-concept
---------------------------------*/
.live-concept {
  background-color: var(--base-color02);
}
.live-concept__group {
  margin-bottom: 40px;
}
.live-concept__title {
  color: var(--main-color);
  font-size: var(--font-lg2);
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.live-concept__text {
  text-align: justify;
  line-height: 1.8;
  text-align: center;
}
/*--------------------------------
特長 | .live-feature
---------------------------------*/
.live-feature__content {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.live-feature__row {
  display: flex;
  column-gap: 100px;
  padding-right: 40px;
}
.live-feature__visual {
  text-align: center;
}
.live-feature__title {
  position: relative;
  margin-bottom: 40px;
  padding: 20px 40px;
  background-color: var(--main-color);
  color: var(--base-color01);
  font-size: var(--font-md4);
  font-weight: bold;
  scroll-margin-top: 120px;
}
.live-feature__text {
  text-align: justify;
  line-height: 1.8;
}
/* 最適なプラットフォームをご提案 */
.live-feature__platform-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 40px;
  padding: 0 80px;
}
/* 有料配信にも対応 */
.live-feature__paid-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 0 80px;
}
/* 強固なセキュリティ */
.live-feature__security-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 40px;
  padding-left: 80px;
}
.live-feature__security-item {
  font-size: var(--font-md);
  font-weight: bold;
}
.live-feature__security-icon {
  margin-right: 15px;
  color: var(--text-color04);
  font-size: var(--font-lg);
  vertical-align: -4px;
}

/*-------------------------------------
レスポンシブ | ライブ配信の特長ページ
--------------------------------------*/
/* ----------1280px以下---------- */
@media screen and (max-width: 1280px) {
  .live-feature__platform-list {
    justify-content: center;
    padding: 0;
  }
  .live-feature__paid-list {
    padding: 0 20px;
  }
  .live-feature__figure {
    min-width: 300px;
  }
}
/* ----------960px以下---------- */
@media screen and (max-width: 960px) {
  .live-feature__content {
    row-gap: 60px;
  }
  .live-feature__platform-list {
    column-gap: 40px;
  }
  .live-feature__paid-list {
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 40px;
  }
  .live-feature__row {
    column-gap: 60px;
  }
}
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  .live-feature__content {
    row-gap: 40px;
  }
  .live-feature__title {
    margin-bottom: 20px;
    scroll-margin-top: 100px;
  }
  .live-feature__platform-list {
    row-gap: 0;
  }
  .live-feature__row {
    column-gap: 20px;
    padding-right: 0;
  }
}
/* ----------640px以下---------- */
@media screen and (max-width: 640px) {
  .live-feature__title {
    padding: 15px 20px;
  }
  .live-feature__platform-list {
    column-gap: 0;
    margin-top: 20px;
  }
  .live-feature__platform-item {
    width: 50%;
  }
  .live-feature__paid-list {
    column-gap: 0;
    margin-top: 20px;
  }
  .live-feature__paid-item {
    width: 50%;
  }
  .live-feature__row {
    flex-direction: column;
    row-gap: 20px;
  }
  .live-feature__figure {
    min-width: 250px;
    width: 100%;
  }
  .live-feature__security-list {
    margin-top: 30px;
    padding-left: 40px;
  }
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  .live-feature__title {
    padding: 10px 15px;
    font-size: var(--font-md3);
  }
  .live-feature__security-list {
    margin-top: 20px;
    padding-left: 20px;
  }
}


/* ==================================================
当社ライブ配信の事例 | example.html
================================================== */
/*--------------------------------
小規模・中規模配信の事例 | .example
---------------------------------*/
.example__content {
  max-width: 1000px;
  margin: 0 auto;
}
.example__group--small {
  padding-bottom: 150px;
}
.example__group-title {
  margin-bottom: 40px;
  padding: 20px 40px;
  background-color: var(--main-color);
  color: var(--base-color01);
  font-size: var(--font-md4);
  font-weight: bold;
}
.example__read {
  margin-bottom: 40px;
  font-size: var(--font-md);
}
.example__list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  margin-bottom: 80px;
}
.example__row {
  display: flex;
  align-items: center;
  column-gap: 10%;
}
.example__term {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  padding: 25px 0;
  background-color: #e0f7f5;
  color: var(--sub-color);
  font-size: var(--font-md);
  font-weight: bold;
}
.example__desc {
  width: 70%;
}
.example__illust-text {
  margin-bottom: 40px;
  color: var(--text-color03);
  font-size: var(--font-lg3);
  font-weight: bold;
}
.example__figure {
  width: 100%;
}
.example__illust {
  width: 100%;
}
.example__notice {
  margin-bottom: 80px;
}
.example__recommend {
  position: relative;
  padding: 60px 80px 40px;
  background-color: var(--base-color02);
}
.example__recommend::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "オススメ";
  display: inline-block;
  padding: 10px 60px;
  background-color: var(--accent-color);
  color: var(--text-color02);
  font-size: var(--font-md4);
  font-weight: bold;
}
.example__recommend-title {
  margin-bottom: 10px;
  color: var(--main-color);
  font-size: var(--font-md3);
  font-weight: bold;
}
.example__recommend-list {
  padding-left: 1em;
}
.example__recommend-list--mb {
  margin-bottom: 30px;
}
.example__recommend-item {
  margin-bottom: 15px;
  font-size: var(--font-md);
  font-weight: bold;
  text-align: justify;
}
.example__recommend-icon {
  margin-right: 5px;
  color: var(--accent-color);
  font-weight: bold;
}

/*-------------------------------------
レスポンシブ | ライブ配信の事例ページ
--------------------------------------*/
/* ----------960px以下---------- */
@media screen and (max-width: 960px) {
  .example__row {
    column-gap: 5%;
  }
  .example__term {
    width: 25%;
  }
}
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  .example__group--small {
    padding-bottom: 100px;
  }
  .example__recommend {
    padding: 60px 40px 40px;
  }
}
/* ----------640px以下---------- */
@media screen and (max-width: 640px) {
  .example__group--small {
    padding-bottom: 80px;
  }
  .example__group-title {
    margin-bottom: 20px;
  }
  .example__term {
    padding: 20px 0;
    font-size: var(--font-md2);
  }
  .example__desc {
    font-size: var(--font-md);
  }
  .example__list {
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 60px;
  }
  .example__row {
    flex-direction: column;
  }
  .example__term {
    width: 100%;
  }
  .example__desc {
    width: 100%;
    padding: 20px;
  }
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  .example__group--small {
    padding-bottom: 60px;
  }
  .example__read {
    margin-bottom: 30px;
  }
  .example__list {
    margin-bottom: 40px;
  }
  .example__term {
    padding: 15px 0;
  }
  .example__illust-text {
    margin-bottom: 20px;
  }
  .example__recommend {
    padding: 60px 10px 20px;
  }
  .example__recommend::before {
    padding: 10px 40px;
  }
  .example__recommend-list {
    padding-left: 0;
  }
}


/* ==================================================
FAQ | faq.html
================================================== */
.faq__title-area {
  margin-bottom: 150px;
}
.faq__content {
  display: flex;
  flex-direction: column;
  row-gap: 150px;
}
.faq__category-title {
  margin-bottom: 40px;
  padding-left: 20px;
  padding-bottom: 10px;
  color: var(--text-color03);
  font-size: var(--font-lg3);
  font-weight: bold;
  border-left: 10px solid var(--main-color);
  border-bottom: 2px solid var(--main-color);
}
.faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.faq__item {
  padding: 40px;
  background-color: #e0f7f5;
}
.faq__question {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 30px;
  padding-left: 50px;
  color: var(--sub-color);
  font-size: var(--font-md2);
  font-weight: bold;
}
.faq__question::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--sub-color);
  color: var(--text-color02);
  font-size: var(--font-lg3);
  font-weight: bold;
  border-radius: 50%;
}
.faq__answer {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding-left: 50px;
  font-size: var(--font-md2);
}
.faq__answer::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--main-color);
  color: var(--text-color02);
  font-size: var(--font-lg3);
  font-weight: bold;
  border-radius: 50%;
}
.faq__notice {
  margin-top: 40px;
  font-size: var(--font-md);
}

/*-------------------------------------
レスポンシブ | FAQページ
--------------------------------------*/
/* ----------1280px以下---------- */
@media screen and (max-width: 1280px) {
  .faq__title-area {
    margin-bottom: 100px;
  }
}
/* ----------960px以下---------- */
@media screen and (max-width: 960px) {
  .faq__title-area {
    margin-bottom: 80px;
  }
  .faq__content {
    row-gap: 100px;
  }
}
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  .faq__item {
    padding: 40px 20px;
  }
}
/* ----------640px以下---------- */
@media screen and (max-width: 640px) {
  .faq__content {
    row-gap: 80px;
  }
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  .faq__title-area {
    margin-bottom: 60px;
  }
  .faq__content {
    row-gap: 60px;
  }
}

/* ==================================================
会社概要 | about.html
================================================== */
/*--------------------------------
コンセプト | .concept
---------------------------------*/
.concept {
  padding-top: 120px;
  padding-bottom: 50px;
}
.concept__title {
  margin-bottom: 100px;
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
}
.concept__content {
  position: relative;
  display: flex;
}
.concept__text {
  width: 50%;
  padding: 40px;
  background-color: var(--base-color02);
}
.concept__intro {
  margin-bottom: 30px;
  text-align: justify;
}
.concept__list {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  margin-left: 40px;
  margin-bottom: 30px;
}
.concept__item {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.concept__icon {
  margin-right: 10px;
  color: var(--main-color);
  font-size: var(--font-md2);
}
.concept__summary {
  text-align: justify;
}
.concept__visual {
  width: 50%;
}
.concept__figure {
  width: 100%;
  height: 100%;
}
.concept__image {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
/*--------------------------------
企業情報 | .information
---------------------------------*/
.information {
  padding-bottom: 50px;
}
.information__title-area {
  margin-bottom: 120px;
}
.information__content {
  padding: 0 100px;
}
.information__list {
  display: flex;
  flex-direction: column;
  padding-left: 40px;
  padding-bottom: 40px;
  border-left: 1px solid var(--sub-color);
}
.information__row {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted var(--sub-color);
}
.information__term {
  width: 30%;
  padding: 40px;
  padding-left: 40px;
  color: var(--text-color04);
  font-weight: bold;
}
.information__desc {
  padding: 40px 0;
}
/*--------------------------------
アクセスマップ | .access
---------------------------------*/
.access__map {
  padding: 0 100px;
  margin-bottom: 80px;
}
.access__frame {
  width: 100%;
}
.access__train {
  padding: 0 100px;
}
.access__train-title {
  margin-bottom: 40px;
  color: var(--main-color);
  font-size: var(--font-md4);
  font-weight: bold;
}
.access__train-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.access__train-item {
  font-size: var(--font-md2);
}
.access__icon {
  margin-right: 15px;
  color: var(--text-color04);
}

/*-------------------------------------
レスポンシブ | 会社概要ページ
--------------------------------------*/
/* ----------1280px以下---------- */
@media screen and (max-width: 1280px) {
  /* BtoB制作会社 */
  .concept {
    padding-top: 100px;
    padding-bottom: 20px;
  }
  .concept__title {
    margin-bottom: 80px;
  }
  .concept__text {
    padding: 40px 20px;
  }
  .concept__list {
    margin-left: 0;
  }
  .concept__icon {
    margin-right: 5px;
  }
  /* 企業情報 */
  .information__content {
    padding: 0 80px;
  }
  .information__title-area {
    margin-bottom: 100px;
  }
  /* アクセスマップ */
  .access__map {
    padding: 0 80px;
  }
  .access__train {
    padding: 0 80px;
  }
  .access__train-title {
    margin-bottom: 30px;
  }
}
/* --------- 960px以下---------- */
@media screen and (max-width: 960px) {
  /* BtoB制作会社 */
  .concept {
    padding-top: 80px;
  }
  .concept__title {
    margin-bottom: 60px;
  }
  .concept__content {
    flex-direction: column-reverse;
  }
  .concept__text {
    width: 100%;
  }
  .concept__list {
    margin-left: 40px;
  }
  .concept__visual {
    width: 100%;
  }
  /* 企業情報 */
  .information__content {
    padding: 0 60px;
  }
  .information__title-area {
    margin-bottom: 80px;
  }
  .information__term {
    padding-left: 30px;
  }
    /* アクセスマップ */
  .access__map {
    padding: 0 60px;
    margin-bottom: 40px;
  }
  .access__frame {
    height: 400px;
  }
  .access__train {
    padding: 0 60px;
  }
  .access__train-title {
    margin-bottom: 20px;
  }
}
/* --------- 767px以下---------- */
@media screen and (max-width: 767px) {
  /* 企業情報 */
  .information {
    padding-bottom: 40px;
  }
  .information__content {
    padding: 0 40px;
  }
  .information__title-area {
    margin-bottom: 60px;
  }
  /* アクセスマップ */
  .access__map {
    padding: 0;
  }
  .access__train {
    padding: 0 40px;
  }
  .access__train-list {
    row-gap: 5px;
  }
}
/* --------- 640px以下---------- */
@media screen and (max-width: 640px) {
  /* BtoB制作会社 */
  .concept {
    padding-top: 60px;
  }
  .concept__title {
    margin-bottom: 40px;
  }
  /* 企業情報 */
  .information__content {
    padding: 0 20px;
  }
  .information__list {
    padding-left: 20px;
  }
  .information__term {
    width: 110px;
    padding-left: 10px;
    padding-right: 20px;
  }
  /* アクセスマップ */
  .access__train {
    padding: 0 20px;
  }
  .access__train-title {
    margin-bottom: 10px;
  }
}
/* --------- 480px以下---------- */
@media screen and (max-width: 480px) {
  /* BtoB制作会社 */
  .concept {
    padding-top: 40px;
  }
  .concept__title {
    margin-bottom: 30px;
  }
  .concept__list {
    margin-left: 0;
  }
  /* 企業情報 */
  .information__content {
    padding: 0;
  }
  .information__list {
    padding-left: 10px;
  }
  .information__term {
    width: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .information__service-item {
    margin-bottom: 10px;
  }
  /* アクセスマップ */
  .access__map {
    margin-bottom: 20px;
  }
  .access__frame {
    height: 300px;
  }
  .access__train {
    padding: 10px;
  }
  .access__train-item {
    font-size: var(--font-md);
  }
}

/* ==================================================
お問い合わせページ | contact.html
================================================== */
/*--------------------------------
お問い合わせフォーム | .contact
---------------------------------*/
.contact {
  padding: 100px 0;
  background-color: var(--base-color02);
}
.sub-visual__inner--form  {
  justify-content: center;
  min-height: 180px;
  padding: 0;
}
.sub-visual-title--form {
  margin-bottom: 0;
}
.contact__title-area {
  text-align: center;
}
.contact__title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-size: var(--font-xl);
  font-weight: bold;
}
.contact__title-area {
  margin-bottom: 80px;
}
.contact__lead {
  padding: 0;
  font-size: var(--font-md4);
}
.contact__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--base-color01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.contact__list {
  margin-bottom: 40px;
}
.contact__item {
  display: flex;
  align-items: center;
  column-gap: 20px;
  padding: 20px;
}
.contact__item-label {  
  width: 32%;
}
.contact__label {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 18px;
  font-weight: bold;
}
.contact__required-mark {
  display: inline-block;
  padding: 4px 8px;
  background-color: var(--accent-color);
  color: var(--text-color02);
  font-size: 12px;
  border-radius: 4px;
}
.contact__item-input {
  width: 68%;
  font-size: 16px;
}
.contact__input {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 16px;
  font-weight: normal;
  border: 1px solid #999;
  border-radius: 4px;
  outline: black;
}
.contact__input--date {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 16px;
  font-weight: normal;
  border: 1px solid #999;
  border-radius: 4px;
  appearance: none; /* iOS Safariでの独自UI無効化（部分的に有効） */
  -webkit-appearance: none; /* Safari向け */
  outline: black;
}
.contact__input:focus {
  border: 2px solid var(--text-color01);
  outline: none;
}
.contact__input::placeholder {
  color: #ccc;
}
.contact__item-input--meeting {
  display: flex;
  align-items: center;
}
.contact__meeting-wrapper {
  display: flex;
  align-items: center;
}
.contact__input--radio {
  width: auto;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.contact__input--radio {
  margin-bottom: 4px;
}
.contact__label--radio {
  margin-right: 1.5rem;
  font-weight: 400;
  cursor: pointer;
}
.contact__item-note--tel {
  margin-top: 0.8rem;
  font-size: 14px;
}
.contact__item--message {
  align-items: flex-start;
  border-bottom: none;
}
.contact__input--textarea {
  height: 150px;
  padding: 1rem;
  resize: none;
}
.contact__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 40px;
  text-align: center;
}
.contact__button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .contact__button:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .contact__button:active {
    transform: scale(0.98);
    opacity: 0.8;
  }
}
.contact__under {
  max-width: 960px;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
}
.contact__subtitle {
  margin-bottom: 10px;
  color: var(--text-color03);
  font-size: var(--font-md3);
  font-weight: bold;
}
.contact__under-text {
  font-size: var(--font-base);
}
.error {
  color: var(--accent-color);
  font-size: 16px;
}
.contact__item-input--confirm {
  overflow: auto;
}
.contact__item-input--confirm-textarea {
  overflow: auto;
}
/*-------------------------------------
レスポンシブ | お問い合わせページ
--------------------------------------*/
/* ----------960px以下---------- */
@media screen and (max-width: 960px) {
  .contact__item {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
  }
  .contact__item-label {
    width: 100%;
  }
  .contact__item-input {
    width: 100%;
  }
}
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  .sub-visual__inner--form  {
    min-height: 140px;
  }
  .contact {
    padding: 60px 0;
  }
  .contact__container {
    padding: 30px 20px;
  }
  .contact__title-area {
    margin-bottom: 60px;
  }
  .contact__title {
    font-size: var(--font-lg4);
  }
  .contact__lead {
    font-size: var(--font-md2);
  }
  .contact__item {
    padding: 15px 10px;
  }
  .contact__item-input--meeting {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact__item-input--meeting {
    row-gap: 10px;
  }
  .contact__label {
    font-size: 16px;
  }
  .contact__actions {
    margin-top: 20px;
  }
  .contact__under {
    margin-top: 40px;
  }
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  .sub-visual__inner--form  {
    min-height: 100px;
  }
  .contact {
    padding: 40px 0;
  }
  .contact__title-area {
    margin-bottom: 40px;
  }
  .contact__title {
    font-size: var(--font-lg3);
  }
  .contact__lead {
    font-size: var(--font-md1);
  }
  .contact__container {
    padding: 10px 10px 30px;
  }
  .contact__item-note--tel {
    font-size: 12px;
  }
}

/* ==================================================
サンクスページ | thanks.php
================================================== */
/*--------------------------------
サンクス | .thanks
---------------------------------*/
.thanks {
  padding: 100px 20px;
  background-color: var(--gb-color01);
}
.thanks__title-area {
  margin-bottom: 100px;
}
.thanks__content {
  max-width: 960px;
  margin: 0 auto;
  margin-bottom: 80px;
  padding: 40px;
  text-align: justify;
  background-color: var(--bg-color05);
  text-align: center;
}
.thanks__title {
  color: var(--main-color);
  font-size: var(--font-xl);
  font-weight: bold;
  text-align: center;
}
.thanks__text {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 1.6;
}
/*-------------------------------------
レスポンシブ | サンクスページ
--------------------------------------*/
/* ----------767px以下---------- */
@media screen and (max-width: 767px) {
  .thanks__title-area {
    text-align: center;
  }
}
/* ----------480px以下---------- */
@media screen and (max-width: 480px) {
  .thanks__title-area {
    margin-bottom: 40px;
  }
  .thanks__content {
    padding: 20px;
  }
}

/* ==================================================
無料お見積りページ | estimate.php
================================================== */
.contact__select {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 16px;
  font-weight: normal;
  border: 1px solid #999;
  border-radius: 4px;
  appearance: none; /* iOS Safariでの独自UI無効化（部分的に有効） */
  -webkit-appearance: none; /* Safari向け */
  outline: black;
}
.contact__item--detail {
  border-bottom: 1px dashed #eee;
}
.contact__item-note--date {
  margin-top: 0.8rem;
  font-size: 12px;
}