@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif;
  margin: 0;
  background-color: #F7F9FC;
}

h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

ul, p, h1, h2, h3, figure {
  padding: 0;
  margin: 0;
}

p, h1, h2, h3 {
  color: #333;
}

p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  p {
    font-size: 15px;
  }
}

.c-btn-wrap {
  text-align: center;
}

.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 32px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s;
}
.c-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.2s;
}
.c-btn-green {
  background-color: #1A6084;
}
.c-btn-black {
  background-color: #4d4d4d;
}
.c-btn:hover {
  opacity: 0.85;
}
.c-btn:hover::after {
  transform: translateX(2px) rotate(45deg);
}
.c-btn--small {
  padding: 8px 20px;
  font-size: 13px;
}
.c-btn--large {
  padding: 16px 40px;
  font-size: 16px;
}
.c-btn.arrow-right::after {
  transform: rotate(45deg);
}
.c-btn.arrow-right:hover::after {
  transform: translateX(2px) rotate(45deg);
}
.c-btn.arrow-left::after {
  transform: rotate(-135deg);
}
.c-btn.arrow-left:hover::after {
  transform: translateX(-2px) rotate(-135deg);
}
.c-btn.arrow-down::after {
  transform: rotate(135deg);
}
.c-btn.arrow-down:hover::after {
  transform: translateY(2px) rotate(135deg);
}
.c-btn.arrow-up::after {
  transform: rotate(-45deg);
}
.c-btn.arrow-up:hover::after {
  transform: translateY(-2px) rotate(-45deg);
}

.c-margin__section {
  margin-bottom: 80px;
}

.c-heading-h2-left {
  font-weight: 700;
  color: #333;
  text-align: left;
  margin-bottom: 40px;
}

.c-heading-h2-center {
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.c-breadcrumb {
  font-size: 14px;
}
@media (min-width: 961px) {
  .c-breadcrumb {
    padding-top: 80px;
  }
}
.c-breadcrumb__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-breadcrumb__inner {
    width: 90%;
  }
}
.c-breadcrumb__inner {
  padding: 12px 0;
}
.c-breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.c-breadcrumb__item::after {
  content: ">";
  margin-left: 4px;
  margin-right: 4px;
  color: #dfdfdf;
}
.c-breadcrumb__item:last-child::after {
  content: "";
}
.c-breadcrumb__link {
  color: #1A73E8;
  text-decoration: none;
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}
.c-breadcrumb__current {
  color: #4d4d4d;
}

.u-img-100 {
  width: 100%;
  height: 100%;
}

.p-header {
  background-color: #fff;
  height: 80px;
  width: 100%;
  position: fixed;
}

@media (min-width: 961px) {
  .p-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}
.p-header__inner {
  display: flex;
  align-items: center;
  align-items: stretch;
  justify-content: space-between;
}

/* ロゴ部分 */
.p-header__branding {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 40px;
}

.p-header__title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #333;
}

.p-header__tagline {
  font-size: 12px;
  color: #333;
}

/* ナビゲーション */
.p-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 20px;
}

.p-header__nav-list {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 960px) {
  .p-header__nav-list {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .p-header__nav-item {
    margin: 0 auto;
  }
}
.p-header__nav-item a {
  text-decoration: none;
  color: #4d4d4d;
  font-size: 16px;
}

.p-header__nav-item > a {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 6px;
}

@media (max-width: 764px) {
  .p-header__nav-item > a {
    height: auto;
  }
}
.p-header__nav-item a:hover {
  opacity: 0.7;
}

/* お問い合わせボタン */
.p-header__contact {
  display: flex;
  height: 100%;
}

@media (max-width: 764px) {
  .p-header__contact {
    flex-direction: column;
    gap: 20px 0;
    height: 110px;
    width: 100%;
  }
}
.p-header__contact a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  color: #fff;
  font-size: 15px;
  padding: 0 12px;
}

.p-header__contact a.download {
  background-color: #4d4d4d;
}

.p-header__contact a.contact {
  background-color: #1A6084;
}

.p-header__contact a:hover {
  opacity: 0.9;
}

/* レスポンシブ例 */
@media (max-width: 960px) {
  .p-header__inner {
    flex-wrap: wrap;
    gap: 16px;
  }
}
/* ハンバーガーボタンの基本スタイル（PCは非表示） */
.p-header__toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.p-header__toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: 0.3s ease;
}

.p-header__toggle span:nth-child(1) {
  top: 0;
}

.p-header__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.p-header__toggle span:nth-child(3) {
  bottom: 0;
}

/* 開いているときのアニメーション */
.p-header__toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.p-header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.p-header__toggle.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* レスポンシブ */
@media (max-width: 960px) {
  .p-header {
    height: 60px;
  }
  .p-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  /* ハンバーガーボタンを表示 */
  .p-header__toggle {
    display: block;
  }
  /* ナビの初期状態は非表示（SP） */
  .p-header__nav {
    position: fixed;
    inset: 60px 0 0 0;
    background-color: #fff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px 40px;
    gap: 24px;
    z-index: 100;
  }
  /* 開いた時の表示 */
  .p-header__nav.is-open {
    display: flex;
  }
  .p-header__nav-list {
    flex-direction: column;
    gap: 16px;
  }
}
.p-header__nav-item--has-sub {
  position: relative;
}

/* ▼ ドロップダウン（PC） */
@media (min-width: 961px) {
  .p-header__mega {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
  }
  /* 中身は container 幅 */
  .p-header__subnav {
    max-width: 1080px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0 auto;
    list-style: none;
    padding: 16px 0;
    justify-content: center;
  }
}
@media (min-width: 961px) and (max-width: 768px) {
  .p-header__subnav {
    width: 90%;
  }
}
@media (min-width: 961px) {
  .p-header__subnav-link,
  .p-header__subnav-empty {
    display: block;
    font-size: 14px;
    color: #4d4d4d;
    text-decoration: none;
    padding: 6px 0;
  }
  .p-header__subnav-link:hover {
    color: #1A6084;
    text-decoration: underline;
  }
}
@media (min-width: 961px) {
  /* ▼ hoverが外れても即消えない（判定領域を拡張） */
  .p-header__nav-item--has-sub:hover .p-header__mega,
  .p-header__mega:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
/* ▼ アコーディオン（SP） */
@media (max-width: 960px) {
  .p-header__mega {
    display: none;
  }
  .p-header__subnav {
    width: 100%;
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    border-left: 2px solid #dfdfdf;
  }
  .p-header__subnav-link,
  .p-header__subnav-empty {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #4d4d4d;
    font-size: 15px;
  }
  /* 開いた状態（JSで付与） */
  .p-header__nav-item--has-sub.is-open .p-header__subnav {
    max-height: 600px;
  }
}
.p-top-fv {
  width: 100%;
  height: 60vh;
  min-height: 480px;
  padding-top: 80px;
  background-image: url("../image/top/fv-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}
@media (max-width: 768px) {
  .p-top-fv {
    padding-top: 0;
  }
}
.p-top-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}
.p-top-fv__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-top-fv__inner {
    width: 90%;
  }
}
.p-top-fv__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.p-top-fv__catch {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-top-fv__catch {
    font-size: 22px;
  }
}

.p-top-news {
  background-color: #fff;
  padding: 60px 0;
}
.p-top-news__inner {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-top-news__inner {
    width: 90%;
  }
}
.p-top-news__inner {
  background-color: #f5f5f5;
}
.p-top-news__list {
  margin: 0;
  padding: 20px 16px;
  list-style: none;
}
.p-top-news__item + .p-top-news__item {
  margin-top: 8px;
}
.p-top-news__link {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  color: inherit;
}
.p-top-news__link:hover {
  text-decoration: underline;
}
.p-top-news__date {
  margin-right: 20px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-top-news__date {
    font-size: 15px;
    margin-right: 12px;
  }
}
.p-top-news__title {
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-top-news__title {
    font-size: 15px;
  }
}
.p-top-news__item--empty {
  font-size: 14px;
  color: #4d4d4d;
}

.p-top-service {
  padding-top: 80px;
}
.p-top-service__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-top-service__inner {
    width: 90%;
  }
}
.p-top-service__inner {
  text-align: center;
}
.p-top-service {
  /* --- カードリスト --- */
}
.p-top-service__list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  margin: 0;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}
@media (max-width: 900px) {
  .p-top-service__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-top-service__item {
  width: 31%;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 8px;
  text-align: left;
}
@media (max-width: 900px) {
  .p-top-service__item {
    width: 100%;
    text-align: center;
  }
}
.p-top-service__link {
  display: block;
  padding: 32px 24px;
  text-align: left;
  text-decoration: none;
  transition: 0.2s;
}
.p-top-service__link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .p-top-service__link {
    text-align: center;
  }
}
.p-top-service {
  /* --- アイコンエリア（仮の丸背景） --- */
}
.p-top-service__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-service__icon img {
  width: 100%;
  height: auto;
}
.p-top-service {
  /* --- タイトル --- */
}
.p-top-service__name {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.p-top-service {
  /* --- 説明文 --- */
}
.p-top-service__text {
  font-size: 16px;
  line-height: 1.8;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .p-top-service__text {
    font-size: 15px;
    text-align: left;
  }
}
.p-top-service {
  /* --- ボタン --- */
}
.p-top-service__btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.p-top-feature {
  position: relative;
  background-image: url("../image/top/fv-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-top-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 0;
}
.p-top-feature__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-top-feature__inner {
    width: 90%;
  }
}
.p-top-feature__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 0;
}
@media (max-width: 768px) {
  .p-top-feature__inner {
    padding: 40px 0;
  }
}
.p-top-feature__text {
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.8;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .p-top-feature__text {
    font-size: 14px;
  }
}

.p-top-company__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-top-company__inner {
    width: 90%;
  }
}
.p-top-company__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
}
@media (max-width: 900px) {
  .p-top-company__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-top-company__content {
  width: 48%;
}
@media (max-width: 900px) {
  .p-top-company__content {
    width: 100%;
    text-align: left;
  }
}
.p-top-company__text {
  color: #4d4d4d;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-top-company__text {
    font-size: 13px;
  }
}
.p-top-company__image {
  width: 48%;
  position: relative;
  padding-top: 24%;
}
.p-top-company__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .p-top-company__image {
    width: 100%;
    padding-top: 60%;
  }
}

.p-footer {
  background-color: #f5f5f5;
  color: #333;
}
.p-footer__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-footer__inner {
    width: 90%;
  }
}
.p-footer__inner {
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
}
@media (max-width: 900px) {
  .p-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-footer {
  /* ロゴ部分 */
}
.p-footer__logo {
  min-width: 180px;
}
@media (max-width: 768px) {
  .p-footer__logo {
    margin: 0 auto;
  }
}
.p-footer__logo-image {
  width: 200px;
}
.p-footer__logo-image img {
  width: 100%;
}
.p-footer__logo-main {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #333;
  margin-bottom: 4px;
}
.p-footer__logo-sub {
  font-size: 11px;
  color: #4d4d4d;
  margin: 0;
  text-align: center;
}
.p-footer {
  /* ナビ全体 */
}
.p-footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
}
@media (max-width: 600px) {
  .p-footer__nav {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
  }
}
.p-footer__nav-title {
  margin-bottom: 12px;
}
.p-footer__nav-title a {
  color: #333;
  text-decoration: none;
}
.p-footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-footer__nav-item {
  line-height: 1.8;
}
.p-footer__nav-item a {
  color: #4d4d4d;
  text-decoration: none;
}
.p-footer__nav-item a:hover {
  color: #1A73E8;
}
.p-footer__copy {
  text-align: center;
  font-size: 12px;
  color: #4d4d4d;
  padding: 16px 0;
}
.p-footer__copy a {
  color: #333;
}

.p-services-archive {
  position: relative;
  background-image: url("../image/bg4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-services-archive__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-services-archive__inner {
    width: 90%;
  }
}
.p-services-archive__inner {
  text-align: center;
  padding: 60px 0;
}
.p-services-archive__list {
  display: flex;
  align-items: stretch;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 80px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .p-services-archive__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px 0;
  }
}
.p-services-archive__item {
  flex: 0 0 calc(32.333% - 24px);
}
@media (max-width: 960px) {
  .p-services-archive__item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .p-services-archive__item {
    width: 100%;
  }
}
.p-services-archive__link {
  display: block;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  padding: 40px 16px 0;
  text-align: left;
  text-decoration: none;
  transition: 0.2s;
  height: 100%;
}
.p-services-archive__link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
@media (max-width: 600px) {
  .p-services-archive__link {
    text-align: center;
    padding: 40px 16px;
  }
}
.p-services-archive__icon {
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.p-services-archive__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-services-archive__name {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.p-services-archive__text {
  line-height: 1.8;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .p-services-archive__text {
    text-align: left;
    font-size: 15px;
  }
}

.p-works-archive {
  background-color: #F7F9FC;
}
.p-works-archive__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-works-archive__inner {
    width: 90%;
  }
}
.p-works-archive__inner {
  padding: 40px 0 60px;
}
.p-works-archive__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.p-works-archive__item {
  list-style: none;
}
.p-works-archive__link {
  display: block;
  text-decoration: none;
  color: #333;
}
.p-works-archive__thumb {
  overflow: hidden;
  border: 1px solid #dfdfdf;
  margin-bottom: 8px;
}
.p-works-archive__thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.p-works-archive__link:hover .p-works-archive__thumb img {
  transform: scale(1.1);
}
.p-works-archive__tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: #dfdfdf;
  color: #4d4d4d;
  margin-bottom: 6px;
}
.p-works-archive__meta {
  margin-bottom: 8px;
}
.p-works-archive__label {
  background-color: #4d4d4d;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
}
.p-works-archive__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 768px) {
  .p-works-archive__title {
    font-size: 15px;
  }
}

.p-seo-consulting-voice {
  background-color: #F7F9FC;
}
.p-seo-consulting-voice__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-voice__inner {
    width: 90%;
  }
}
.p-seo-consulting-voice__body {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
}
@media (max-width: 900px) {
  .p-seo-consulting-voice__body {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-seo-consulting-voice__content {
  width: 50%;
}
@media (max-width: 900px) {
  .p-seo-consulting-voice__content {
    width: 100%;
  }
}
.p-seo-consulting-voice__company {
  font-size: 14px;
  color: #333;
}
.p-seo-consulting-voice__title {
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
  color: #333;
}
.p-seo-consulting-voice__text {
  color: #4d4d4d;
  margin-bottom: 24px;
}
.p-seo-consulting-voice__meta {
  font-size: 13px;
  line-height: 1.8;
  color: #4d4d4d;
}
.p-seo-consulting-voice__image {
  width: 50%;
}
@media (max-width: 900px) {
  .p-seo-consulting-voice__image {
    width: 100%;
    min-height: 220px;
  }
}
.p-seo-consulting-voice__image img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.p-seo-consulting-point {
  border-top: 1px solid #dfdfdf;
}
.p-seo-consulting-point__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-point__inner {
    width: 90%;
  }
}
.p-seo-consulting-point__inner {
  padding-top: 60px;
}
.p-seo-consulting-point__text {
  line-height: 1.7;
}

.p-seo-consulting-trouble {
  background-color: #fff;
}
.p-seo-consulting-trouble__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-trouble__inner {
    width: 90%;
  }
}
.p-seo-consulting-trouble__inner {
  padding: 60px 0;
}
.p-seo-consulting-trouble__lists {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 80px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .p-seo-consulting-trouble__lists {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
  }
}
.p-seo-consulting-trouble__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-seo-consulting-trouble__item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: #4d4d4d;
}
.p-seo-consulting-trouble__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #1A6084;
}
@media (max-width: 768px) {
  .p-seo-consulting-trouble__item {
    margin-bottom: 12px;
  }
}

.p-seo-consulting-feature {
  background-color: #F7F9FC;
}
.p-seo-consulting-feature__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-feature__inner {
    width: 90%;
  }
}
.p-seo-consulting-feature__inner {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .p-seo-consulting-feature__inner {
    padding-bottom: 0;
  }
}
.p-seo-consulting-feature__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .p-seo-consulting-feature__item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
    gap: 24px;
    margin-bottom: 60px;
  }
}
.p-seo-consulting-feature__item.is-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .p-seo-consulting-feature__item.is-reverse {
    flex-direction: column-reverse;
  }
}
.p-seo-consulting-feature__content {
  width: 55%;
}
@media (max-width: 900px) {
  .p-seo-consulting-feature__content {
    width: 100%;
  }
}
.p-seo-consulting-feature__label {
  color: #1A6084;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}
.p-seo-consulting-feature__title {
  font-weight: 700;
  margin-bottom: 16px;
}
.p-seo-consulting-feature__text {
  font-size: 15px;
  color: #4d4d4d;
  line-height: 1.7;
}
.p-seo-consulting-feature__image {
  width: 40%;
}
@media (max-width: 900px) {
  .p-seo-consulting-feature__image {
    width: 100%;
    min-height: 200px;
  }
}
.p-seo-consulting-feature__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-seo-consulting-compare {
  background-color: #fff;
}
.p-seo-consulting-compare__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-compare__inner {
    width: 90%;
  }
}
.p-seo-consulting-compare__inner {
  padding: 60px 0;
}
.p-seo-consulting-compare__table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}
.p-seo-consulting-compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
}
.p-seo-consulting-compare__table thead th {
  padding: 16px 12px;
  border: 1px solid #dfdfdf;
  background-color: #f5f5f5;
  font-weight: 700;
  color: #333;
}
.p-seo-consulting-compare__table thead th.is-main {
  background-color: #1A6084;
  color: #fff;
}
.p-seo-consulting-compare__table tbody th,
.p-seo-consulting-compare__table tbody td {
  padding: 14px 12px;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.6;
  color: #4d4d4d;
}
.p-seo-consulting-compare__table tbody th {
  background-color: #f5f5f5;
  text-align: left;
  font-weight: 700;
  width: 24%;
}
.p-seo-consulting-compare__table tbody td {
  width: 25.3333333333%;
}
.p-seo-consulting-compare__table tbody tr:nth-child(odd) td {
  background-color: #F7F9FC;
}

.p-seo-consulting-support {
  background-color: #4d4d4d;
}
.p-seo-consulting-support__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-support__inner {
    width: 90%;
  }
}
.p-seo-consulting-support__inner {
  padding: 60px 0;
}
.p-seo-consulting-support__h2 {
  color: #fff;
}
.p-seo-consulting-support__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.p-seo-consulting-support__item {
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.p-seo-consulting-support__title {
  margin-bottom: 8px;
  font-weight: 700;
}
.p-seo-consulting-support__text {
  font-size: 14px;
  color: #4d4d4d;
}

.p-seo-consulting-price {
  background-color: #F7F9FC;
}
.p-seo-consulting-price__inner {
  max-width: 700px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-price__inner {
    width: 90%;
  }
}
.p-seo-consulting-price__inner {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-seo-consulting-price__inner {
    padding: 0;
  }
}
.p-seo-consulting-price__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
}
@media (max-width: 900px) {
  .p-seo-consulting-price__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
  }
}
.p-seo-consulting-price__item {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  flex: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-seo-consulting-price__item {
    width: 80%;
  }
}
.p-seo-consulting-price__head {
  background-color: #333;
  padding: 16px;
  text-align: center;
}
.p-seo-consulting-price__plan {
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.p-seo-consulting-price__body {
  padding: 24px;
  text-align: center;
}
.p-seo-consulting-price__price {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.p-seo-consulting-price__features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-seo-consulting-price__features li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #4d4d4d;
}
.p-seo-consulting-price__features li:last-child {
  margin-bottom: 0;
}
.p-seo-consulting-price__annotation {
  text-align: right;
  font-size: 14px;
}

.p-seo-consulting-ai__bg {
  background-color: #F7F9FC;
  background-image: url("../image/top/fv-bg.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.p-seo-consulting-ai__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-ai__inner {
    width: 90%;
  }
}
.p-seo-consulting-ai__inner {
  text-align: center;
  background: #fff;
  padding: 20px 0;
}
.p-seo-consulting-ai__text-wrap {
  margin-top: 24px;
  text-align: left;
  max-width: 920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-ai__text-wrap {
    padding: 0 16px;
  }
}
.p-seo-consulting-ai__text {
  font-size: 15px;
  color: #4d4d4d;
  margin-bottom: 16px;
  line-height: 1.7;
}
.p-seo-consulting-ai__text:last-child {
  margin-bottom: 0;
}

.p-seo-consulting-area__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-area__inner {
    width: 90%;
  }
}
.p-seo-consulting-area__text {
  line-height: 1.8;
}

.p-seo-consulting-flow {
  background-color: #F7F9FC;
}
.p-seo-consulting-flow__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-flow__inner {
    width: 90%;
  }
}
.p-seo-consulting-flow__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
}
@media (max-width: 900px) {
  .p-seo-consulting-flow__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 24px;
  }
}
.p-seo-consulting-flow__item {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 4px;
  padding: 40px 16px;
  flex: 1;
  position: relative;
  text-align: left;
  list-style: none;
}
@media (max-width: 768px) {
  .p-seo-consulting-flow__item {
    width: 90%;
  }
}
.p-seo-consulting-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid #dfdfdf;
}
@media (max-width: 900px) {
  .p-seo-consulting-flow__item:not(:last-child)::after {
    display: none;
  }
}
.p-seo-consulting-flow__icon {
  width: 60px;
  margin: 0 auto 8px;
}
.p-seo-consulting-flow__icon img {
  width: 100%;
}
.p-seo-consulting-flow__title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  text-align: center;
}
.p-seo-consulting-flow__text {
  font-size: 14px;
  color: #4d4d4d;
}

.p-seo-consulting-contact {
  background-color: #fff;
}
.p-seo-consulting-contact__inner {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-seo-consulting-contact__inner {
    width: 90%;
  }
}
.p-seo-consulting-contact__inner {
  padding: 60px 0;
}
.p-seo-consulting-contact__h2 {
  margin-bottom: 0;
}

.p-related-services {
  background-color: #F7F9FC;
}
.p-related-services__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-related-services__inner {
    width: 90%;
  }
}
.p-related-services__inner {
  padding: 60px 0;
}
.p-related-services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px 32px;
  margin-top: 32px;
}
.p-related-services__item {
  list-style: none;
}
.p-related-services__link {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.p-related-services__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}
.p-related-services__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #1A6084;
  flex-shrink: 0;
}

.p-cta {
  background-color: #333;
  color: #fff;
}
.p-cta__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-cta__inner {
    width: 90%;
  }
}
.p-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  padding: 80px 0;
}
@media (max-width: 900px) {
  .p-cta__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-cta__logo {
  width: 260px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .p-cta__logo {
    width: 200px;
    align-self: center;
  }
}
.p-cta__logo img {
  max-width: 70%;
  height: auto;
  display: block;
}
.p-cta__content {
  flex: 1;
  text-align: center;
}
@media (max-width: 900px) {
  .p-cta__content {
    width: 100%;
  }
}
.p-cta__title {
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
}
.p-cta__lead {
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
}
.p-cta__btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}
.p-cta__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 56px 14px 48px;
  border-radius: 999px;
  background-color: #1A6084;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.p-cta__btn::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
}
.p-cta__btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.p-cta__btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.p-cta__btn--secondary {
  background-color: #fff;
  color: #1A6084;
}
.p-cta__btn--secondary::before {
  background-color: #1A6084;
}
.p-cta__btn--secondary::after {
  border-color: #1A6084;
}

.p-company {
  background-color: #fff;
}
.p-company__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-company__inner {
    width: 90%;
  }
}
.p-company__inner--narrow {
  max-width: 900px;
  margin: 0 auto;
}
.p-company__head {
  background-color: #fff;
}
.p-company__head .p-company__inner {
  padding: 40px 0 24px;
}
.p-company__page-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 32px;
  text-align: left;
}
.p-company__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  flex-wrap: wrap;
}
.p-company__nav .c-btn {
  min-width: 260px;
  border-radius: 999px;
}
.p-company__section .p-company__inner {
  padding: 40px 0 60px;
}
.p-company__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background-color: #fff;
  border: 1px solid #dfdfdf;
}
.p-company__table th,
.p-company__table td {
  padding: 14px 20px;
  border-bottom: 1px solid #dfdfdf;
  line-height: 1.6;
}
.p-company__table td a {
  color: #1A73E8;
}
.p-company__table th {
  width: 22%;
  background-color: #f5f5f5;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.p-company__table tr:last-child th,
.p-company__table tr:last-child td {
  border-bottom: none;
}
.p-company__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.8;
  color: #4d4d4d;
}
.p-company__president {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
  margin-top: 32px;
}
@media (max-width: 900px) {
  .p-company__president {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-company__president-profile {
  width: 36%;
  text-align: center;
}
@media (max-width: 900px) {
  .p-company__president-profile {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.p-company__president-photo {
  width: 100%;
  padding-top: 100%;
  background-color: #dfdfdf;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.p-company__president-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-company__president-meta {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.p-company__president-name {
  font-weight: 700;
  margin-bottom: 4px;
}
.p-company__president-career {
  margin: 0;
}
.p-company__president-career a {
  color: #1A73E8;
}
.p-company__president-body {
  width: 64%;
}
@media (max-width: 900px) {
  .p-company__president-body {
    width: 100%;
  }
}
.p-company__president-text {
  line-height: 1.9;
  color: #333;
  margin-bottom: 16px;
}
.p-company__president-text:last-child {
  margin-bottom: 0;
}

.p-pricing__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-pricing__inner {
    width: 90%;
  }
}
.p-pricing__inner--narrow {
  max-width: 1000px;
  margin: 0 auto;
}
.p-pricing__head .p-pricing__inner {
  padding: 40px 0 24px;
}
.p-pricing__page-title {
  font-weight: 700;
  color: #333;
  margin-bottom: 32px;
  text-align: left;
}
.p-pricing__h2.link {
  color: #1A73E8;
  text-decoration: none;
}
.p-pricing__h2.link:hover {
  text-decoration: underline;
}
.p-pricing__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  flex-wrap: wrap;
}
.p-pricing__nav .c-btn {
  min-width: 180px;
  border-radius: 999px;
}
.p-pricing__section {
  background-color: #F7F9FC;
}
.p-pricing__section .p-pricing__inner {
  padding: 40px 0 60px;
}
.p-pricing__cards {
  margin-top: 32px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  flex-wrap: wrap;
}
.p-pricing__cards.web-maintenance {
  margin-bottom: 40px;
}
.p-pricing__card {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 24px 24px 20px;
  border-radius: 4px;
  list-style: none;
  flex: 0 0 25%;
}
.p-pricing__card-title {
  font-weight: 700;
  margin-bottom: 16px;
}
.p-pricing__card-link {
  color: #1A73E8;
  text-decoration: none;
}
.p-pricing__card-link:hover {
  text-decoration: underline;
}
.p-pricing__card-price {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 20px;
}
.p-pricing__card-list {
  padding-left: 1.2em;
  margin: 0;
}
.p-pricing__card-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #4d4d4d;
}
.p-pricing__placeholder {
  margin-top: 24px;
  font-size: 14px;
  color: #4d4d4d;
  text-align: center;
}

.p-web-maintenance-fv {
  position: relative;
  background-image: url("../image/bg3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-web-maintenance-fv__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-fv__inner {
    width: 90%;
  }
}
.p-web-maintenance-fv__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  padding: 60px 0;
}
@media (max-width: 960px) {
  .p-web-maintenance-fv__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-web-maintenance-fv__left {
  flex: 1;
}
@media (max-width: 768px) {
  .p-web-maintenance-fv__left {
    margin-bottom: 40px;
  }
}
.p-web-maintenance-fv__title {
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}
.p-web-maintenance-fv__banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background-color: #dfdfdf;
  color: #333;
  font-weight: 700;
  font-size: 16px;
}
.p-web-maintenance-fv__right {
  width: 40%;
  border: 1px solid #dfdfdf;
  background-color: #fff;
}
@media (max-width: 960px) {
  .p-web-maintenance-fv__right {
    width: 100%;
  }
}
.p-web-maintenance-fv__form {
  width: 100%;
}

.p-web-maintenance-service {
  background-color: #fff;
  position: relative;
  background-image: url("../image/top/fv-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
}
.p-web-maintenance-service__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-service__inner {
    width: 90%;
  }
}
.p-web-maintenance-service__inner {
  background-color: #fff;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .p-web-maintenance-service__inner {
    width: 80%;
    padding: 20px 8px;
  }
}
.p-web-maintenance-service__lead {
  margin-top: 16px;
  margin-bottom: 32px;
  line-height: 1.9;
  text-align: center;
  color: #4d4d4d;
}
@media (max-width: 768px) {
  .p-web-maintenance-service__lead {
    text-align: left;
  }
}

.p-web-maintenance-problem__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-problem__inner {
    width: 90%;
  }
}
.p-web-maintenance-problem__inner {
  text-align: center;
}
.p-web-maintenance-problem__list {
  margin-top: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.p-web-maintenance-problem__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #4d4d4d;
}
.p-web-maintenance-problem__item::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #1A6084;
  flex-shrink: 0;
}

.p-web-maintenance-task__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-task__inner {
    width: 90%;
  }
}
.p-web-maintenance-task__inner {
  padding: 40px 0 60px;
}
.p-web-maintenance-task__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.p-web-maintenance-task__item {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 40px 16px;
  list-style: none;
  text-align: left;
}
.p-web-maintenance-task__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}
.p-web-maintenance-task__label {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #333;
}
.p-web-maintenance-task__price {
  text-align: center;
  font-weight: 700;
  color: #BC1B36;
  margin-bottom: 16px;
  font-size: 22px;
}
.p-web-maintenance-task__desc {
  line-height: 1.7;
  color: #4d4d4d;
  margin-bottom: 16px;
  font-size: 14px;
}
.p-web-maintenance-task__caption {
  font-size: 14px;
  font-weight: 700;
  color: #4d4d4d;
}
.p-web-maintenance-task__bullet {
  padding-left: 1.1em;
  margin: 0;
}
.p-web-maintenance-task__bullet li {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.p-web-maintenance-price__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-price__inner {
    width: 90%;
  }
}
.p-web-maintenance-price__inner {
  padding: 40px 0 60px;
}
@media (max-width: 768px) {
  .p-web-maintenance-price__inner {
    padding: 0;
  }
}
.p-web-maintenance-price__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.p-web-maintenance-price__item {
  background-color: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  overflow: hidden;
}
.p-web-maintenance-price__head {
  background-color: #4d4d4d;
  color: #fff;
  font-weight: 700;
  padding: 14px;
  text-align: center;
  font-size: 22px;
}
.p-web-maintenance-price__body {
  padding: 20px;
}
.p-web-maintenance-price__price {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 40px;
}
.p-web-maintenance-price__title {
  font-size: 16px;
  margin-bottom: 6px;
}
.p-web-maintenance-price__bullet {
  padding-left: 1.2em;
  margin-bottom: 24px;
}
.p-web-maintenance-price__bullet li {
  font-size: 15px;
  line-height: 1.7;
}
.p-web-maintenance-price__text {
  font-size: 15px;
  margin-bottom: 24px;
}

.p-web-maintenance-reason {
  background-image: url("../image/top/fv-bg.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
}
.p-web-maintenance-reason__inner {
  background-color: #fff;
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-reason__inner {
    width: 90%;
  }
}
.p-web-maintenance-reason__inner {
  text-align: center;
  padding: 40px 0;
}
@media (max-width: 768px) {
  .p-web-maintenance-reason__inner {
    padding: 20px 16px;
  }
}
.p-web-maintenance-reason__box {
  max-width: 900px;
  margin: auto;
  background-color: #fff;
  text-align: left;
}
.p-web-maintenance-reason__text {
  font-size: 14px;
  line-height: 1.8;
  color: #4d4d4d;
  margin-bottom: 12px;
}
.p-web-maintenance-reason__text:last-child {
  margin-bottom: 0;
}

.p-web-maintenance-feature {
  background-color: #fff;
}
.p-web-maintenance-feature__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-feature__inner {
    width: 90%;
  }
}
.p-web-maintenance-feature__inner {
  padding: 60px 0;
}
.p-web-maintenance-feature__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.p-web-maintenance-feature__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
}
@media (max-width: 900px) {
  .p-web-maintenance-feature__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
  }
}
.p-web-maintenance-feature__item--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 900px) {
  .p-web-maintenance-feature__item--reverse {
    flex-direction: column;
  }
}
.p-web-maintenance-feature__image {
  height: 240px;
  width: 40%;
}
@media (max-width: 900px) {
  .p-web-maintenance-feature__image {
    width: 100%;
  }
}
.p-web-maintenance-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-web-maintenance-feature__content {
  flex: 1;
  width: 60%;
}
@media (max-width: 768px) {
  .p-web-maintenance-feature__content {
    width: 100%;
  }
}
.p-web-maintenance-feature__title {
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}
.p-web-maintenance-feature__text {
  font-size: 15px;
  line-height: 1.8;
  color: #4d4d4d;
}

.p-web-maintenance-type__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-web-maintenance-type__inner {
    width: 90%;
  }
}
.p-web-maintenance-type__inner {
  padding: 40px 0 60px;
  text-align: center;
}
.p-web-maintenance-type__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 40px;
  justify-items: center;
}
.p-web-maintenance-type__item {
  width: 160px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #dfdfdf;
  padding: 20px 10px 16px;
  list-style: none;
}
.p-web-maintenance-type__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
}
.p-web-maintenance-type__icon img {
  width: 100%;
}
.p-web-maintenance-type__label {
  font-size: 13px;
  line-height: 1.6;
  color: #4d4d4d;
}

.p-works {
  background-color: #fff;
}
.p-works__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-works__inner {
    width: 90%;
  }
}
.p-works__inner {
  padding: 60px 0;
}
.p-works__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.p-works__item {
  list-style: none;
}
.p-works__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-works__thumb {
  overflow: hidden;
  border: 1px solid #dfdfdf;
  margin-bottom: 8px;
}
.p-works__thumb img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.p-works__link:hover .p-works__thumb img {
  transform: scale(1.1);
}
.p-works__tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: #dfdfdf;
  color: #4d4d4d;
  margin-bottom: 6px;
}
.p-works__meta {
  margin-bottom: 8px;
}
.p-works__label {
  background-color: #4d4d4d;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
}
.p-works__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
@media (max-width: 768px) {
  .p-works__title {
    font-size: 15px;
  }
}

.p-contact__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-contact__inner {
    width: 90%;
  }
}
.p-contact__inner {
  padding: 60px 0;
}
.p-contact__h2 {
  margin-bottom: 16px;
}
.p-contact__text {
  text-align: center;
}

.p-works-single {
  padding: 80px 0 120px;
}

.p-works-single__inner {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-works-single__inner {
    width: 90%;
  }
}

/* タイトル */
.p-works-single__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

/* アイキャッチ */
.p-works-single__thumb {
  width: 100%;
  margin-bottom: 40px;
  background-color: #e3e3e3;
}
.p-works-single__thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 情報テーブルブロック */
.p-works-single__info {
  margin-bottom: 40px;
}

/* 表本体 */
.p-works-single__table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f3f3f3;
}

.p-works-single__table th,
.p-works-single__table td {
  padding: 16px 20px;
  border-bottom: 1px solid #ddd;
}

.p-works-single__table td a {
  color: #1A73E8;
  text-decoration: underline;
}

.p-works-single__table th {
  width: 25%;
  font-weight: 600;
  text-align: left;
  background-color: #e8e8e8;
}

.p-works-single__table tr:last-child th,
.p-works-single__table tr:last-child td {
  border-bottom: none;
}

/* 本文 */
.p-works-single__content {
  margin-top: 40px;
  line-height: 1.8;
}
.p-works-single__content p + p {
  margin-top: 1em;
}

/* SP調整 */
@media (max-width: 768px) {
  .p-works-single {
    padding: 48px 0 80px;
  }
  .p-works-single__title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .p-works-single__table th,
  .p-works-single__table td {
    display: block;
    width: 100%;
  }
  .p-works-single__table th {
    border-bottom: none;
  }
}
.p-faq {
  background-color: #fff;
}
.p-faq__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-faq__inner {
    width: 90%;
  }
}
.p-faq__inner {
  padding: 40px 0 60px;
}
.p-faq__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.p-faq__item {
  list-style: none;
  background-color: #F7F9FC;
  border-radius: 6px;
  padding: 32px;
}
@media (max-width: 768px) {
  .p-faq__item {
    padding: 28px 16px;
  }
}
.p-faq__question {
  display: flex;
  gap: 0 12px;
  align-items: flex-start;
}
.p-faq__q {
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
  color: #1A6084;
}
.p-faq__q-text {
  font-size: 16px;
  font-weight: 700;
}
.p-faq__a {
  font-size: 15px;
  line-height: 1.8;
  color: #4d4d4d;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .p-faq__a {
    padding: 0;
  }
}

.p-services-fv {
  position: relative;
  background-image: url("../image/bg4.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-services-fv__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-services-fv__inner {
    width: 90%;
  }
}
.p-services-fv__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  padding: 60px 0;
}
@media (max-width: 900px) {
  .p-services-fv__inner {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 32px;
  }
}
.p-services-fv__content {
  width: 55%;
  padding-top: 60px;
}
@media (max-width: 900px) {
  .p-services-fv__content {
    width: 100%;
    padding-top: 0;
    margin-bottom: 40px;
  }
}
.p-services-fv__title {
  color: #1A6084;
  margin: 0 0 32px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-services-fv__title {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.p-services-fv__text {
  line-height: 1.8;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .p-services-fv__text {
    margin-bottom: 20px;
  }
}
.p-services-fv__banner {
  background-color: #dfdfdf;
  padding-top: 22%;
  position: relative;
  overflow: hidden;
}
.p-services-fv__banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-services-fv__form {
  width: 40%;
  background-color: #fff;
  border: 1px solid #dfdfdf;
  padding: 0 16px;
}
@media (max-width: 900px) {
  .p-services-fv__form {
    width: 90%;
  }
}
.p-services-fv__form-title {
  color: #4d4d4d;
  text-align: center;
  padding: 20px 0;
  font-size: 20px;
  font-weight: 700;
}
.p-services-fv__form-placeholder {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.p-services-fv-area {
  padding: 16px 20px;
  background: #F7F9FC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
}
.p-services-fv-area__item {
  color: #4d4d4d;
  flex: 1;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.p-services-fv-area__item span {
  color: #1A6084;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 768px) {
  .p-services-fv-area__item span {
    font-size: 22px;
  }
}
.p-services-fv-area__divider {
  width: 2px;
  height: 64px;
  background: #dfdfdf;
  border-radius: 1px;
  flex: 0 0 auto;
}
.p-services-fv-area {
  /* レスポンシブ（任意） */
}
@media (max-width: 700px) {
  .p-services-fv-area {
    flex-direction: column;
    gap: 18px;
  }
  .p-services-fv-area__divider {
    width: 70%;
    height: 2px;
  }
}

.p-privacy-policy__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-privacy-policy__inner {
    width: 90%;
  }
}

.p-page-common {
  padding: 60px 0;
  background-color: #fff;
}
.p-page-common__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-page-common__inner {
    width: 90%;
  }
}
.p-page-common h1 {
  margin-bottom: 20px;
}
.p-page-common h2 {
  margin: 36px 0 20px;
}
.p-page-common p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.p-page-common ul {
  padding: 0 20px;
  margin: 20px 0;
}
.p-page-common a {
  color: #1A73E8;
}

.p-news-archive {
  padding: 60px 0;
}
.p-news-archive__inner {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-news-archive__inner {
    width: 90%;
  }
}
.p-news-archive__item {
  list-style: none;
}
.p-news-archive__link {
  display: flex;
  gap: 0 28px;
  text-decoration: none;
}
.p-news-archive__link:hover {
  text-decoration: underline;
}

.p-not-found {
  padding: 60px 0;
}
.p-not-found__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-not-found__inner {
    width: 90%;
  }
}
.p-not-found__title {
  margin-bottom: 40px;
}
.p-not-found p {
  line-height: 1.7;
  margin-bottom: 16px;
}
.p-not-found a {
  color: #1A73E8;
}

.p-feature-vision__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-feature-vision__inner {
    width: 90%;
  }
}
.p-feature-vision__inner {
  text-align: center;
  padding: 80px 0;
}
.p-feature-vision__catch {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6;
  color: #1A6084;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  padding: 16px 40px;
}
.p-feature-vision__catch::before, .p-feature-vision__catch::after {
  position: absolute;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  content: "";
}
.p-feature-vision__catch::before {
  content: "“";
  top: 0;
  left: 0;
  transform: translate(-40%, 16%);
}
.p-feature-vision__catch::after {
  content: "”";
  bottom: 0;
  right: 0;
  transform: translate(40%, -90%);
}
.p-feature-vision__text {
  line-height: 1.7;
}

@media (max-width: 768px) {
  .p-feature-vision__inner {
    padding: 60px 0;
  }
  .p-feature-vision__catch {
    font-size: 22px;
  }
}
.p-feature-organization {
  background-color: #fff;
}
.p-feature-organization__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-feature-organization__inner {
    width: 90%;
  }
}
.p-feature-organization__inner {
  padding: 80px 0;
}
.p-feature-organization__list {
  max-width: 340px;
  margin: 0 auto;
}
.p-feature-organization__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  margin-bottom: 24px;
  font-weight: bold;
}
.p-feature-organization__item p {
  font-size: 18px;
}
.p-feature-organization__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #1A6084;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .p-feature-organization__inner {
    padding: 60px 0;
  }
  .p-feature-organization__item {
    align-items: flex-start;
  }
}
.p-feature-position__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-feature-position__inner {
    width: 90%;
  }
}
.p-feature-position__inner {
  padding: 80px 0;
}
.p-feature-position__figure {
  max-width: 980px;
  margin: 0 auto 32px;
}
.p-feature-position__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.p-feature-position__body {
  max-width: 980px;
  margin: 0 auto;
}
.p-feature-position__body p + p {
  margin-top: 16px;
}

@media (max-width: 768px) {
  .p-feature-position__inner {
    padding: 60px 0;
  }
  .p-feature-position__figure {
    margin-bottom: 24px;
  }
}
.p-feature-difference__inner {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-feature-difference__inner {
    width: 90%;
  }
}
.p-feature-difference__list {
  display: grid;
  gap: 80px;
}
.p-feature-difference__list li a {
  color: #fff;
  text-decoration: none;
}
.p-feature-difference__list li a:hover {
  text-decoration: underline;
}
.p-feature-difference__item {
  list-style: none;
}
.p-feature-difference__head {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: start;
  margin-bottom: 24px;
}
.p-feature-difference__title {
  margin-bottom: 20px;
}
.p-feature-difference__media {
  height: 250px;
}
.p-feature-difference__media img {
  background-color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-feature-difference__service {
  color: #fff;
  background-color: #4d4d4d;
  padding: 24px 0px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.p-feature-difference__service-title {
  color: #fff;
  font-weight: bold;
  margin-bottom: 24px;
}
.p-feature-difference__service-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 48px;
  margin: 0;
  padding: 0;
}
.p-feature-difference__service-list li {
  list-style: disc;
}

@media (max-width: 768px) {
  .p-feature-difference__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-feature-difference__service {
    padding: 24px 16px;
  }
}
.p-feature-comparison__inner {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-feature-comparison__inner {
    width: 90%;
  }
}
.p-feature-comparison__table-wrap {
  overflow-x: auto;
}
.p-feature-comparison__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.p-feature-comparison__table th {
  font-weight: normal;
}
.p-feature-comparison__table td.marker {
  font-weight: 600;
}
.p-feature-comparison__table th,
.p-feature-comparison__table td {
  border: 1px solid #dfdfdf;
  padding: 16px;
  text-align: center;
  vertical-align: middle;
}
.p-feature-comparison__table thead th {
  background-color: #4d4d4d;
  color: #fff;
}
.p-feature-comparison__table tbody th {
  background-color: #F7F9FC;
  text-align: left;
  white-space: nowrap;
}

.p-column-archive__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-column-archive__inner {
    width: 90%;
  }
}
.p-column-archive__inner {
  padding: 40px 0 80px;
}
.p-column-archive__title {
  margin-bottom: 32px;
}
.p-column-archive__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .p-column-archive__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-column-archive__sidebar-box {
  border: 1px solid #dfdfdf;
  padding: 24px;
  border-radius: 6px;
}
.p-column-archive__sidebar-title {
  margin-bottom: 16px;
  text-align: center;
}
.p-column-archive__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
}
.p-column-archive__item {
  list-style: none;
}
.p-column-archive__card {
  display: block;
  text-decoration: none;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  transition: opacity 0.2s;
}
.p-column-archive__card-title {
  font-size: 16px;
}
.p-column-archive__thumb {
  background-color: #f5f5f5;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid #dfdfdf;
}
.p-column-archive__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-column-archive__body {
  padding: 14px 14px 12px;
}
.p-column-archive__date {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: #4d4d4d;
}
.p-column-archive__card-title {
  margin-bottom: 12px;
}
.p-column-archive__more {
  display: flex;
  justify-content: flex-end;
}
.p-column-archive__more-text {
  position: relative;
  padding-right: 12px;
  font-size: 14px;
  color: #4d4d4d;
}
.p-column-archive__more-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  transform: translateY(-50%) rotate(-45deg);
}
.p-column-archive__card:hover {
  opacity: 0.9;
}
.p-column-archive__pagination {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .p-column-archive__inner {
    padding: 24px 0 60px;
  }
  .p-column-archive__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-column-single {
  background-color: #fff;
}
.p-column-single__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-column-single__inner {
    width: 90%;
  }
}
.p-column-single__inner {
  padding: 40px 0 80px;
}
.p-column-single__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .p-column-single__layout {
    grid-template-columns: 1fr;
  }
}
.p-column-single__header {
  margin-bottom: 24px;
}
.p-column-single__title {
  font-size: 28px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .p-column-single__title {
    font-size: 24px;
  }
}
.p-column-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.p-column-single__terms {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.p-column-single__term {
  color: #fff;
  list-style: none;
  background-color: #4d4d4d;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 12px;
}
.p-column-single__term a {
  color: #fff;
}
.p-column-single__term a:hover {
  opacity: 0.5;
}
.p-column-single__dates {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
}
.p-column-single__date {
  position: relative;
  padding-left: 20px;
}
.p-column-single__date::before {
  content: "";
  background-image: url("../image/icon/publish.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: 16px;
  width: 16px;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  top: 50%;
}
.p-column-single__date--modified::before {
  background-image: url("../image/icon/update.png");
}
.p-column-single__thumb {
  margin-bottom: 16px;
}
.p-column-single__thumb img {
  display: block;
  width: 100%;
  height: auto;
}
.p-column-single__content {
  /* H2 / H3 装飾は後で調整予定のため仮 */
}
.p-column-single__content h2 {
  background-color: #4d4d4d;
  color: #fff;
  font-size: 24px;
  margin: 50px 0 20px;
  padding: 12px 16px;
}
@media (max-width: 768px) {
  .p-column-single__content h2 {
    font-size: 22px;
    margin: 40px 0 20px;
  }
}
.p-column-single__content h3 {
  font-size: 20px;
  margin: 40px 0 28px;
  padding-bottom: 8px;
  position: relative;
  padding-bottom: 6px;
}
.p-column-single__content h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px; /* 線の太さ */
  background: linear-gradient(to right, #1A6084 0%, rgba(255, 255, 255, 0.9) 100%);
}
@media (max-width: 768px) {
  .p-column-single__content h3 {
    margin: 24px 0 28px;
  }
}
.p-column-single__content figure {
  margin: 40px 0;
  border: 1px solid #dfdfdf;
}
.p-column-single__content strong {
  background: linear-gradient(transparent 60%, #fff3a0 60%);
}
.p-column-single__content ul {
  margin: 24px 0;
  line-height: 2;
  background: #dfdfdf;
  border-radius: 4px;
  padding: 20px 46px;
}
.p-column-single__content p {
  line-height: 2;
  margin-bottom: 20px;
}
.p-column-single__content a {
  color: #1A73E8;
  text-decoration: underline;
  transition: all 0.3s;
}
.p-column-single__content a:hover {
  opacity: 0.5;
}
.p-column-single__content p + p {
  margin-top: 16px;
}
.p-column-single__content img {
  max-width: 100%;
  height: auto;
}
.p-column-single__content thead {
  border-bottom: 1px solid #333 !important;
}
.p-column-single__content th {
  background-color: #1A6084;
  color: #fff;
  border-color: #333 !important;
  font-weight: 400;
}
.p-column-single__sidebar {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  height: fit-content;
  border: 1px solid #dfdfdf;
}
.p-column-single__sidebar-header {
  background: #f5f5f5;
  text-align: center;
  padding: 12px;
  letter-spacing: 0.04em;
}
.p-column-single__sidebar-body {
  padding: 0 12px;
}
.p-column-single__sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-column-single__sidebar-item {
  padding: 18px 0;
}
.p-column-single__sidebar-link {
  display: flex;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.p-column-single__sidebar-link:hover {
  opacity: 0.8;
}
.p-column-single__sidebar-thumb {
  width: 90px;
  height: 60px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
}
.p-column-single__sidebar-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-column-single__sidebar-thumb-fallback {
  font-weight: 700;
  color: #4d4d4d;
}
.p-column-single__sidebar-meta {
  min-width: 0;
}
.p-column-single__sidebar-date {
  display: block;
  font-size: 11px;
  color: #4d4d4d;
  margin-bottom: 2px;
  position: relative;
}
.p-column-single__sidebar-title {
  font-size: 12px;
  color: #4d4d4d;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .column-single__inner {
    padding: 24px 0 60px;
  }
  .column-single__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-column-term__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-column-term__inner {
    width: 90%;
  }
}
.p-column-term__inner {
  padding: 40px 0 80px;
}
.p-column-term__title {
  margin-bottom: 32px;
}
.p-column-term__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 768px) {
  .p-column-term__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-column-term__sidebar-box {
  border: 1px solid #dfdfdf;
  padding: 24px;
  border-radius: 6px;
}
.p-column-term__sidebar-title {
  margin-bottom: 16px;
  text-align: center;
}
.p-column-term__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
}
.p-column-term__item {
  list-style: none;
}
.p-column-term__card {
  display: block;
  text-decoration: none;
  border: 1px solid #dfdfdf;
  background-color: #fff;
  transition: opacity 0.2s;
}
.p-column-term__card-title {
  font-size: 16px;
}
.p-column-term__thumb {
  background-color: #f5f5f5;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-bottom: 1px solid #dfdfdf;
}
.p-column-term__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-column-term__body {
  padding: 14px 14px 12px;
}
.p-column-term__date {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  color: #4d4d4d;
}
.p-column-term__card-title {
  margin-bottom: 12px;
}
.p-column-term__more {
  display: flex;
  justify-content: flex-end;
}
.p-column-term__more-text {
  position: relative;
  padding-right: 12px;
  font-size: 14px;
  color: #4d4d4d;
}
.p-column-term__more-text::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  transform: translateY(-50%) rotate(-45deg);
}
.p-column-term__card:hover {
  opacity: 0.9;
}
.p-column-term__pagination {
  margin-top: 40px;
  text-align: center;
}

@media (max-width: 768px) {
  .p-column-archive__inner {
    padding: 24px 0 60px;
  }
  .p-column-archive__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-supervisor {
  background: #f5f5f5;
  padding: 12px 0;
  margin: 40px 0;
}
.p-supervisor__inner {
  max-width: 1080px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-supervisor__inner {
    width: 90%;
  }
}
.p-supervisor__title {
  margin-bottom: 8px !important;
}
.p-supervisor__box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
}
.p-supervisor__avatar {
  width: 80px;
  height: 80px;
}
.p-supervisor__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-supervisor__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-supervisor__content {
  flex: 1;
  min-width: 0;
}
.p-supervisor__head {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.p-supervisor__name {
  font-weight: 700;
  margin-bottom: 8px !important;
}
.p-supervisor__name span {
  color: #4d4d4d;
  font-weight: 400;
  margin-left: 12px;
  font-size: 13px;
}
.p-supervisor__meta {
  font-weight: 500;
  font-size: 18px;
  color: #dfdfdf;
  line-height: 1.4;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.p-supervisor__company, .p-supervisor__position {
  color: #dfdfdf;
}
.p-supervisor__text {
  font-size: 14px;
  line-height: 2;
  color: #4d4d4d;
  margin: 0 0 8px !important;
}
.p-supervisor__footer {
  text-align: right;
}
.p-supervisor__link {
  font-weight: 400 !important;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .p-supervisor {
    padding: 16px 0;
  }
  .p-supervisor__box {
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
  }
  .p-supervisor__avatar {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
  }
  .p-supervisor__meta {
    font-size: 14px;
  }
  .p-supervisor__text {
    line-height: 1.9;
    font-size: 12px;
  }
  .p-supervisor__footer {
    text-align: left;
    margin-top: 4px;
  }
  .p-supervisor__link {
    font-size: 13px;
  }
}

/*# sourceMappingURL=style.css.map */
