/* CSS初期設定 */

/* # =================================================================
   # 基本設定
   # ================================================================= */

html {
  box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}
*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* standard helper classes */

.clr
{
   clear: both;
   overflow: hidden;
   width: 1px;
   height: 1px;
   margin: 0 -1px -1px 0;
   border: 0;
   padding: 0;
   font-size: 0;
   line-height: 0;
}


.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}
p{
transform: rotate(0.05deg);
}
.hamburger-menu{
	display: none;
}
* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}

.hamburger-menu{
	display: none;
}
.grecaptcha-badge {
    bottom: 70px !important;
	z-index: 100000;
}
.pagetop{
  position: fixed;
  right: 5px;
  bottom: 10px;
  font-size: 50px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transition: .3s;
  z-index: 10000;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}


/* トップページのアニメーション */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 300ms;
}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}


/* 診断結果全体 */
#result-area {
  background: #ffffff;
  border: 3px solid #0099cc;
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto 0;
  max-width: 800px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  color: #333;
  font-family: "Helvetica Neue", sans-serif;
}

/* 見出し */
#result-area h3 {
  font-size: 24px;
  color: #0099cc;
  text-align: center;
  margin-bottom: 1em;
}

/* スコア・判定 */
#result-area p {
  font-size: 18px;
  margin: 0.5em 0;
  text-align: center;
}
#result-area strong {
  color: #d35400;
  font-weight: bold;
    font-size: 36px;
}

/* コメントリスト */
#result-area ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
/* 各設問リスト共通 */
#result-area ul li {
  background: #f4faff;
  border-left: 6px solid #0099cc;
  margin-bottom: 1em;
  padding: 1em;
  border-radius: 6px;
  line-height: 1.7;
  font-size: 16px;
}

/* 良い回答（YES）に対応するコメント */
#result-area ul li.good-comment {
  background: #e8f9ee;
  border-left-color: #2ecc71;
  color: #1e824c;
}
#result-area ul li.good-comment strong {
  color: #2ecc71;
}

/* 悪い回答（NO）に対応するコメント */
#result-area ul li.bad-comment {
  background: #fff0f0;
  border-left-color: #e74c3c;
  color: #c0392b;
}
#result-area ul li.bad-comment strong {
  color: #e74c3c;
}

#result-area ul li strong {
  display: inline-block;
  color: #0099cc;
  margin-bottom: 0.3em;
    font-size: 20px;
}

#cf7-area h3{
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    padding-left: 0.8em;
    border-left: 4px solid #0099cc;
    margin: 2em 0 1em;
    line-height: 1.4;
}

/* フォーム全体 */
#listing-check-form ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
#listing-check-form li {
  margin-bottom: 1.5em;
  padding: 1.2em;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.check_t{
font-weight: bold;
color: #0099cc;
font-size: 18px;
}

/* ボタン自体のスタイル */
.messageBtn button {
  padding: 0.8em 2em;
  font-size: 18px;
  font-weight: bold;
  background-color: #0099cc !important;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 122, 204, 0.2);
}

.messageBtn button:hover {
  background-color: #005fa3;
  transform: translateY(-2px);
}

/* ラジオボタンカスタム */
#listing-check-form label {
  display: inline-flex;
  align-items: center;
  margin: 0.5em 1em 0.5em 0;
  font-size: 16px;
  cursor: pointer;
}

#listing-check-form input[type="radio"] {
  display: none;
}

#listing-check-form .custom-radio {
  position: relative;
  padding-left: 30px;
}

#listing-check-form .custom-radio::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 2px solid #0099cc;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}

#listing-check-form input[type="radio"]:checked + .custom-radio::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0px;
  color: #fff;
  font-size: 16px;
}

#listing-check-form input[type="radio"]:checked + .custom-radio::before {
  background-color: #0099cc;
  border-color: #0099cc;
}


.faq-count-wrapper {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.faq-count-box.small-orange {
  display: inline-block;
  background: #f57c00;
  color: #fff;
  font-size: 0.95em;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
}

.faq-count-box .faq-number {
  background: #fff;
  color: #f57c00;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: bold;
  margin: 0 4px;
  display: inline-block;
  font-size: 20px;
}

.archive-header h1{

    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    padding-left: 0.8em;
    border-left: 4px solid #0099cc;
    margin: 2em 0 1em;
    line-height: 1.4;
}

/* ▼三角形ポインター */
.faq-count-box.small-orange::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 8px 0 8px;
  border-style: solid;
  border-color: #f57c00 transparent transparent transparent;
}




.seo_t {
  text-align: center;
  margin: 3rem 0;
}

.seo_t span {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 3.5rem;
  color: #7A98C9;
  position: relative;
  padding-bottom: 0.5rem;
}

.seo_t span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 60px;
  background-color: #7A98C9;
  border-radius: 2px;
}


.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 50px 0 1em 1em;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 0.5em;
  color: #999;
}

.breadcrumb a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #005077;
  text-decoration: underline;
}

/* 固定ヘッダー */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pagetop_block{
	display: none;
}
/* ロゴ */
.site-logo a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

/* グローバルナビ */
.global-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.global-nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.global-nav a:hover {
  color: #0099cc;
}

/* ロゴ画像サイズ調整 */
.logo-img {
  height: 70px;
  width: auto;
  display: block;
}


.main-visual {
  position: relative;
  height: 30vh;
  min-height: 400px;
  background: url('/images/mvbg.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* フィルター（暗めレイヤー） */
.main-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* 黒の透過 */
  z-index: 1;
}

/* テキスト */
.mv-inner {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  max-width: 800px;
}

.mv-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.mv-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
}


h2.subt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  padding-left: 0.8em;
  border-left: 4px solid #0099cc;
  margin: 2em 0 1em;
  line-height: 1.4;
}

/* メディアタイプ全体の枠 */
.media-type-block {
  border: 1px solid #ddd;
  background-color: #f9fcfe;
  padding: 1.5em;
  margin-bottom: 2em;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

/* タイトルのデザイン */
.media-type-block .media-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: #0099cc;
  border-left: 4px solid #0099cc;
  padding-left: 0.6em;
}

/* 難易度の表示 */
.media-type-block .media-level {
  font-size: 0.95em;
  color: #444;
  margin-bottom: 1em;
}

/* 星の表示 */
.media-type-block .stars {
  color: #f39c12;
  font-weight: bold;
}

/* 説明文 */
.media-type-block .media-desc {
  line-height: 1.8;
  font-size: 0.98em;
  color: #333;
}

.content-service-list {
  margin-bottom: 60px;
}

.content-service-list .subt {
  font-size: 1.6em;
  margin-bottom: 1.2em;
  color: #0099cc;
  font-weight: bold;
  border-bottom: 2px solid #0099cc;
  display: inline-block;
  padding-bottom: 0.2em;
}

.content-item {
  border: 1px solid #ddd;
  background-color: #f9fcfe;
  padding: 1.5em;
  margin-bottom: 1.5em;
  border-radius: 4px;
}

.content-title {
  font-size: 1.2em;
  color: #0099cc;
  margin-bottom: 0.4em;
  font-weight: bold;
}

.content-price {
  font-weight: bold;
  color: #444;
  margin-bottom: 0.5em;
  font-size: 0.95em;
}

.content-desc {
  line-height: 1.8;
  font-size: 0.96em;
  color: #333;
}
.pcnon{
	display: none;
}
.spnon{
	display: block;
}


.bot60{
	margin-bottom: 70px !important;
}

h3.subt {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding-left: 0.8em;
  background: #0099cc;
  margin: 2em 0 1em;
  line-height: 1.4;
  padding: 10px 20px;
}

.included-section {
  margin-top: 40px;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.included-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0099cc;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.included-list li {
  margin: 10px 0;
  font-size: 16px;
}

.included-list li span {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #0099cc;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 10px;
}

.included-highlight {
  background: #e6f4fd;
  padding: 20px;
}

.included-highlight h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #005a99;
}

.included-highlight ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.included-highlight ul li {
  font-size: 16px;
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
}

.included-highlight ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0099cc;
  font-weight: bold;
}

.included-highlight .note {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
}
.package-highlight {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: -30px 0 32px 0 !important;
}

.highlight-item {
  border: 1px solid #0099cc;
  padding: 16px;
  border-radius: 10px;
  background-color: #f0f8ff;
  box-shadow: 0 2px 6px rgba(0, 122, 204, 0.1);
  font-size: 1.1em;
  font-weight: bold;
  color: #003f63;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  background-color: #e6f2fb;
  transform: translateY(-2px);
}

.highlight-item p{
    background-image: url(/images/check_icon.png);
    background-size: 30px;
    padding: 0 0 0 45px;
    background-position: left center;
}
.p-entry__thumb {
    margin: 2rem auto 0 !important;
    text-align: center;
    width: 1200px !important;
    display: block;
}

/* 共通：セクションの内側調整 */
.l-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 「このサイトについて」セクション */
.site-about {
  padding: 4rem 0;
  text-align: center;
    background-repeat: no-repeat;
    background-image: url(https://seo-faq.jp/images/tp01.png),url(https://seo-faq.jp/images/tp02.png);
    background-size: 300px,300px;
    background-position: left 50px top 100px,right 50px top 100px;
}


.site-about strong {
    font-weight: 600;
    color: #000;
    padding: 0 0.3em;
background:linear-gradient(transparent 60%, #ff6 60%);
}
.site-about h2 {
  margin-bottom: 1.5rem;
}

.site-about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.yellow{
    color: yellow;
}
 .section-title {
    font-size: 1.8em;
    margin-bottom: 1em;
    color: #0099cc;
  }

  .message-box {
    background: #f7fbff;
    border: 1px solid #cce5f6;
    padding: 1.5em;
    border-radius: 6px;
    line-height: 2.4;
  }

  .policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .policy-list li {
    margin-bottom: 1.5em;
    background: #f5fafd;
    padding: 1em;
    border-radius: 4px;
  }

  .policy-list li strong {
    color: #2b5ca8;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 1.4em;
    }

    .message-box,
    .policy-list li {
      font-size: 0.95em;
    }
  }
/* カテゴリ一覧セクション */
.faq-categories {
  padding: 4rem 0;
  background-color: #fff;
}

.faq-categories h2 {
  margin-bottom: 2rem;
  text-align: center;
}

.faq-categories2 {
  padding: 0 0 50px 0;
  background-color: #fff;
}

.faq-categories2 h2 {
  margin-bottom: 2rem;
  text-align: center;
}


.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li a {
  display: inline-block;
  background-color: #f2f8fc;
  color: #0099cc;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #d6eaff;
}

.category-list li a:hover {
  background-color: #0099cc;
  color: #fff;
  border-color: #0099cc;
}

.l-wrapper{
	padding: 50px 0;
}

.p-entry{
	padding: 0 10%;
}
.tax{
	font-size: 13px;
}

.package-details {
  padding: 2rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.package-title {
  font-size: 1.5rem;
  color: #0099cc;
  margin-bottom: 1rem;
}
.package-subtitle {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #333;
}
.package-subtitle.ng {
  color: #cc0000;
}
.package-subtitle.option {
  color: #0099cc;
}
.package-list {
  list-style: disc;
  margin-left: 1.5rem;
}
.package-list li {
  margin-bottom: 0.5rem;
}
/* SEO導入コラムセクション */
.seo-intro {
    padding: 60px 20px;
    margin-top: 60px;
    border-top: 2px dashed #0099cc;
    border-bottom: 2px dashed #0099cc;
    margin: 60px auto;
    background-image: url(https://seo-faq.jp/images/aboutbg.jpg);
    background-size: cover;
}
.seo-intro .highlight {
    padding: 0.4em;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 0.5rem;
	font-weight: bold;
}

.seo-intro .l-inner {
  max-width: 960px;
  margin: 0 auto;
}

.seo-intro h2.bot_line {
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  color: #111;
}

.seo-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    line-height: 2.2 !important;
}

.op{
	margin: 50px 0 !important;
    font-size: 1.2rem;
    color: #0099cc;
	font-weight: bold;
}

.point_icon img{
    width: 300px;
    height: auto;
}

/* 記事全体の余白と基本スタイル */
.c-postContent.p-entry__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* 記事内タイトル */
.faq-article h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  color: #222;
  border-left: 5px solid #0099cc;
  padding-left: 0.8rem;
}

/* セクション見出し（h2） */
.faq-article h2 {
  font-size: 1.4rem;
  margin-top: 3.5rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #0099cc;
  padding-bottom: 0.4rem;
  color: #0099cc;
}

.faq-article h3 {
    font-size: 1.2rem;
  margin-top: 2.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #eee;
    padding: 5px 20px;
    background: #eef8ff;
}
.grecaptcha-badge { visibility: hidden; }

.notice-block {
    border: 1px solid #ddd;
    background-color: #f9fcfe;
    padding: 1.5em;
    margin-bottom: 2em;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.notice-block strong {
  font-weight: 600;
  color: #222;
}
.notice-block h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #005b9f; /* 深めのアクセントブルー */
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.notice-block h4  span{
    background: linear-gradient(transparent 60%, #ffffa0 60%);

}
.package_t{
	margin-bottom: 40px;
    border-left: 4px solid #0099cc;
	padding: 10px 0 10px 20px;
}

/* 強調（strong） */
.faq-article strong {
  font-weight: 600;
  color: #000;
  background: #fff3cd;
  padding: 0 0.3em;
}

/* 段落 */
.faq-article p {
    margin-bottom: 1.5rem;
    font-size: 18px;
    line-height: 2.4;
}

/* リスト（ul） */
.faq-article ul {
  padding-left: 1.5em;
  margin-bottom: 1.5rem;
}

.faq-article ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
}



.faq-article ol li::before {
  content: \"・\";
  position: absolute;
  left: 0;
  color: #007;
}

.faq-article ol {
  padding-left: 1.5em;
  margin-bottom: 1.5rem;
}

.faq-article ol li {
  position: relative;
  padding-left: 1em;
  padding-bottom: 10px;
  margin-bottom: 25px;
  border-bottom: 1px dashed #eee;
}



.p-postList.-related.-type-card .p-postList__item {
        flex-basis: 33.33%;
    }

.cta-contact.has-bg {
  background: url("/images/contactbg.jpg") center center / cover no-repeat;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.cta-contact.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); /* 黒の透過で可読性UP */
  z-index: 1;
}

.cta-contact .l-inner {
  position: relative;
  z-index: 2;
}

.cta-contact .cta-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-contact .cta-lead {
  font-size: 1em;
  margin-bottom: 30px;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.cta-buttons a {
  display: inline-block;
  padding: 15px 30px;
  font-weight: bold;
  font-size: 1em;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact {
  background: #fff;
  color: #0099cc;
  border: 2px solid #fff;
}

.btn-contact:hover {
  background: #e6f3ff;
  color: #005fa3;
}

.btn-line {
  background: #00c300;
  color: #fff;
  border: 2px solid #00c300;
}

.btn-line:hover {
  background: #00a800;
  border-color: #00a800;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

.side_btn01 {
    position: fixed;
    top: 210px;
    z-index: 10001;
    right: 10px;
}

.side_btn02 {
    position: fixed;
    top: 300px;
    z-index: 10001;
    right: 10px;
}


.entry-calltoaction {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cta-box {
  flex: 1 1 50%;
  padding: 2rem;
  color: #fff;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cta-left {
  background: linear-gradient(135deg, #0073aa, #00aaff); /* 青系グラデ */
}

.cta-right {
  background: linear-gradient(135deg, #ff7b00, #ffb347); /* オレンジ系グラデ */
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.cta-img img{
  display: block;
  margin: 0 auto;
  width: auto;
  height: 200px;
}
.cta-box p {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background: #ffffff;
  color: #333;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #f0f0f0;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .entry-calltoaction {
    flex-direction: column;
  }
  .cta-box {
    flex: 1 1 100%;
  }
}


.l-main {
        max-width: 100%;
        width: auto !important;
    }
[data-sidebar=on] .l-main {
        max-width: 100%;
        width: auto !important;
    }

/* 検索フォーム全体 */
.faq-search {
  padding: 3rem 0 1.5rem;
  background-color: #f4f8fb;
}

.faq-search__form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  max-width: 800px;
    margin: 0 auto 50px auto;
}

.faq-search__label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.faq-search__input {
  flex: 1 1 300px;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-width: 400px;
}

.faq-search__btn {
  padding: 0.6rem 1.5rem;
  background-color: #0099cc !important;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-search__btn:hover {
  background-color: #005fa3 !important;s
}

/* モバイル対応 */
@media (max-width: 600px) {
  .faq-search__form {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-search__input,
  .faq-search__btn {
    width: 100%;
    flex: unset;
  }
}

.highlight-note {
  display: inline-block;
  background-color: #eef8ff;
  color: #0099cc;
  padding: 0.4em 0.8em;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 0.5rem;
}

.site-footer {
  background-color: #f4f4f4;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #555;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.footer-logo img {
  width: 36px;
  height: auto;
  margin-right: 0.5rem;
}

.footer-sitename {
  font-weight: 600;
  font-size: 1rem;
}

.footer-right .footer-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-right .footer-links a {
  color: #0099cc;
  text-decoration: none;
  font-weight: 500;
}

.footer-right .footer-links a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #999;
}

/* モバイル対応 */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-right .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.bot_line{
	text-align: center;
	background-image: url(/images/bot_line.jpg);
	background-position: center bottom;
	padding: 0 0 20px 0;
	background-repeat: no-repeat;
	margin-bottom: 50px;
}


.page-header {
  background: url('/images/headbg.jpg') center/cover no-repeat;
  background-color: #0099cc; /* 画像がなければ色背景 */
  padding: 8rem 1rem 6rem;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
}

.page-header__inner {
  max-width: 960px;
  margin: 0 auto;
}

.page-header__title {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .page-header__title {
    font-size: 1.5rem;
  }
}

/* Google Mapを囲う要素 */
.googlemap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
 
/* Google Mapのiframe */
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.com_tab {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto;
  font-size: 1rem;
  line-height: 1.8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #e0e6ec !important;
}

/* 交互の背景色 */
.com_tab tr:nth-child(odd) {
}

.com_tab tr:nth-child(even) {
  background-color: #eef5fb;
}

.com_tab th,
.com_tab td {
  padding: 1.4rem 2rem !important; /* ← ここで上下パディングを大きく */
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid #e0e6ec;
border-left: unset !important;
}

.com_tab th {
  font-weight: 600;
  color: #2c3e50;
  width: 30%;
  background: transparent;
}

.com_tab td {
  color: #444;
}

/* 最後の行の下線消す */
.com_tab tr:last-child th,
.com_tab tr:last-child td {
}

/* モバイル対応 */
@media (max-width: 640px) {
  .com_tab,
  .com_tab tbody,
  .com_tab tr,
  .com_tab th,
  .com_tab td {
    display: block;
    width: 100%;
  }

  .com_tab tr {
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    overflow: hidden;
  }

  .com_tab th {
    background-color: #f0f4f8;
    font-size: 0.95rem;
    padding: 1rem 1.5rem 0.5rem;
    color: #555;
    border: none;
  }

  .com_tab td {
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    border: none;
  }
}

button, input, select, textarea {
    border: 1px solid var(--ark-color--border);
    border-radius: 0;
    color: #333;
    padding: .25em .5em;
    background: #fff !important;
}

.archive-header {
    margin: 100px 0 0 0;
}

.messageBtn {
  text-align: center; /* ← ボタンを中央寄せ */
  margin-top: 2rem;
}

.messageBtn input[type="submit"] {
  padding: 0.6rem 1.5rem;
  background-color: #0099cc !important;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.messageBtn input[type="submit"]:hover {
  background-color: #005f99 !important;
}
.back-home {
  text-align: center;
  margin-top: 2rem;
}
.back-home__btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background-color: #0099cc;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.back-home__btn:hover {
  background-color: #005f99;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
}

.hero {
  background: linear-gradient(135deg, #2e7be2, #6fb3ff);
  color: #fff;
  padding: 60px 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 0.3em;
  letter-spacing: 1px;
}

.hero p {
    font-size: 1.2em;
    opacity: 1;
    font-weight: bold;
    color: #fff;
}

.section {
  margin-bottom: 50px;
  padding: 20px;
}

.section.gray.twocol {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  background: #f8f8f8;
  padding: 40px;
  border-radius: 12px;
}

.section .column {
  flex: 1;
}

.checklist-area ul.checklist {
  padding-left: 20px;
  list-style: none;
}

.checklist-area ul.checklist li::before {
  content: "✔ ";
  color: #4caf50;
  font-weight: bold;
}

.pdf-preview {
  text-align: center;
}

.pdf-preview .pdf-image {
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pdf-preview .pdf-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #444;
}

.greet-section {
  background-color: #f9f9f9;
  padding: 50px 5%;
}

.greet-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.greet-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.greet-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.greet-text {
  flex: 2;
  min-width: 300px;
}

.greet-text p{
	margin-bottom: 15px;
  line-height: 2.4;
}

.greet-desc {
  font-size: 1rem;
  line-height: 2;
  color: #333;
  margin-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
  .greet-inner {
    flex-direction: column;
    align-items: center;
  }

  .greet-text {
    text-align: left;
  }
}

.name01{
	font-family: serif;
	margin: 30px 0 15px 0;
}
.name02{
	font-family: serif;
	font-size: 36px;
	letter-spacing: 2px;
}
.name03{
	font-family: serif;
	font-size: 16px;
}

.section h2 {
    font-size: 1.6em;
    margin-bottom: 25px;
    color: #2e7be2;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
    padding-left: 0.8em;
    border-left: 4px solid #0099cc;
    line-height: 1.4;
}

.section ul {
  list-style: disc;
  padding-left: 1.5em;
}

.checklist li {
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px dashed silver;
}

.cta {
  text-align: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  background: #e56925;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.1em;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #c8531a;
}

.note {
  font-size: 0.9em;
  color: #777;
  margin-top: 40px;
  text-align: center;
}

.footer {
  margin-top: 60px;
  font-size: 0.85em;
  color: #999;
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.free_top{
    width: 500px;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
}

.seo-summary-box {
  margin: 40px auto;
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 2.4;
  color: #333;
}

.seo-summary-box h2 {
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #0099cc;
}

.seo-summary-box p {
  margin-bottom: 15px;
  font-size: 1em;
}

.seo-summary-box strong {
  color: #000;
  font-weight: bold;
}

.red{
	color: #ff0000;
}

.marker{
    padding: 0 0.3em;
    background: linear-gradient(transparent 60%, #ff6 60%);
}

.pricing-table {
  max-width: 1200px;
  margin: 0 auto 60px auto !important;
  padding: 40px 20px;
  background-color: #f4f9fd;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 50, 100, 0.08);
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin: 30px 0 40px;
  color: #2b5ca8;
  gap: 20px;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 2px;
  background-color: #2b5ca8;
}

.price-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.plan {
  background: #fff;
  border: 1px solid #c6ddf1;
  padding: 24px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 50, 100, 0.12);
}

.plan h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #003366;
}

.plan .price {
  font-size: 20px;
  color: #2b5ca8;
  font-weight: bold;
  text-align: center;
}

.plan .note {
  font-size: 13px;
  color: #666;
  display: block;
  margin-top: 4px;
}
.plan .description {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.plan_icon{
	margin-bottom: 15px;
}


.service-block {
    display: flex;
    background: #fff;
    margin-bottom: 80px !important;
    border-radius: 10px;
    padding: 30px 0;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid silver;
}



.plan-block {
    display: flex;
    background: #fff;
    margin-bottom: 30px !important;
    border-radius: 10px;
    padding: 30px 0;
    overflow: hidden;
}


.service-img {
  flex: 2;
  min-width: 40%;
}

.service-img img {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.service-content {
    flex: 3;
    padding: 0 30px;
    display: flex
;
    flex-direction: column;
    justify-content: unset;
}

.service-content h2 {
  font-size: 24px;
  color: #2b5ca8;
  margin-bottom: 15px;
  padding: 5px 10px;
  background: #f4f9fd;
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #ff4747;
    text-align: right;
    margin-bottom: 10px;
}

.catch {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    border-bottom: 1px dashed #2b5ca8;
    color: #2b5ca8;
    margin: 0 10px 20px 10px;
    background: linear-gradient(transparent 60%, #ffffa0 60%);
}

.detail {
    font-size: 16px;
    line-height: 2.2;
    margin: 0 10px 10px 10px;
}

@media screen and (max-width: 768px) {
  .service-block {
    flex-direction: column;
  }
  .service-img,
  .service-content {
    min-width: 100%;
  }
  .section-title::before,
  .section-title::after {
    width: 20%;
  }
}

.plan_wrap{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid silver;
	margin-bottom: 70px !important;
    border-radius: 10px;
}
.p-entry__title {
    margin-top: 80px !important;
}
.p-postList .p-postList__title {
    font-size: 1.3rem !important;
}
.features {
    list-style: none;
    padding: 0;
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
}

.features li {
    align-items: flex-start;
    gap: 20px;
    background: #f5f5f5;
    padding: 20px 2.5% 10px 2.5%;
    margin: 0 2.5% 40px 2.5% !important;
    flex-basis: 45%;
}

.feature-media {
  text-align: center;
  width: 120px;
  flex-shrink: 0;
}

.feature-media img {
  width: 60px;
  height: 60px;
  display: block;
  margin: 0 auto 8px;
}

.caption {
  font-size: 14px;
  font-weight: bold;
  color: #2b5ca8;
  display: block;
    line-height: 1.4;
}

.feature-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
}

.service-content h2.lav01::before {
  content: "";
  display: inline-block;
    width: 40px;
    height: 40px;
  margin-right: 8px;
  background: url("images/plan_01.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.service-content h2.lav02::before {
  content: "";
  display: inline-block;
    width: 40px;
    height: 40px;
  margin-right: 8px;
  background: url("images/plan_02.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.service-content h2.lav03::before {
  content: "";
  display: inline-block;
    width: 40px;
    height: 40px;
  margin-right: 8px;
  background: url("images/plan_03.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.feature-block {
  display: flex;
  align-items: center; /* 縦中央揃え */
  gap: 20px; /* アイコンとテキストの間隔 */
}

.feature-img {
  flex-shrink: 0; /* 画像側を縮めない */
  text-align: center;
    width: 120px;
}
.feature-img img{
	width: 60px;
	height: auto;
	margin-bottom:10px;
}

.feature-text {
  flex: 1;
}
.feature-text {
  display: flex;
  align-items: center;       /* 縦中央 */
  height: 100%;              /* 親要素に高さがある前提 */
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin: 40px 0;
  padding: 0;
  list-style: none;
}

.feature-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f5f8fc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-img {
  text-align: center;
}

.feature-img img {
  width: 60px;
  height: 60px;
}

.caption {
  margin-top: 8px;
  font-size: 13px;
  color: #2b5ca8;
}

.feature-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
}

.top-services {
    padding: 20px 0 60px 0;
    background: #f9fbff;
    background: linear-gradient(135deg, #2e7be2, #6fb3ff);
}

.top-services h2.subt{
  color: #fff;
    border-left: 4px solid #fff;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.service-card {
  flex: 1 1 calc(33.333% - 20px);
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px 20px 40px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.service-card img {
    max-width: unset;
    width: auto;
    height: 150px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.service-card img.img_web_p{
    max-width: unset;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
    height: 200px;
    object-fit: cover;
    width: 100%;
    object-position: 100% 0;
}

.service-title {
  font-size: 20px;
  font-weight: bold;
  color: #2b5ca8;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
    text-align: left;
}
@media (max-width: 767px) {
  .service-cards {
    flex-direction: column;
  }
  .service-card {
    flex: 1 1 100%;
  }
}

.service-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #2b5ca8;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.service-btn:hover {
  background-color: #1d3f7f;
}

.content-services {
  padding: 20px 0 60px 0;
  background: #f4f8fa;
}

.content-services h2.subt {
  color: #0099cc;
  border-left: 4px solid #0099cc;
}



@media screen and (max-width: 1650px) {
.site-about {
    background-size: 250px, 250px;
    background-position: left 30px top 100px, right 30px top 100px;
}
}

@media screen and (max-width: 1500px) {
.site-about {
    background-size: 200px, 200px;
    background-position: left 30px top 150px, right 30px top 150px;
}
}

@media screen and (max-width: 1400px) {
.site-about {
    background-size: 150px, 150px;
    background-position: left 30px top 150px, right 30px top 150px;
}
}
@media screen and (max-width: 1300px) {
    .site-about {
        background-size: 150px, 150px;
        background-position: left 30px top 30px, right 30px top 30px;
    }
    #main_content {
        margin: 0 5%;
    }
.p-entry__thumb {
    margin: 2rem auto 0;
    text-align: center;
    width: 100% !important;
    display: block;
}

}

@media screen and (max-width: 1151px) {
    .site-about {
background-image: unset;
}
.side_btn01{
    display: none;
}
.side_btn02{
    display: none;
}
.global-nav{
    display: none;
}
.hmenu {
    display: none;
}
	html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}
	.side_btn{
		display: none;
	}
.hamburger-menu{
	display: block;	
	}

.menu-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    background-color: #0099cc;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}

.menu-content ul {
    padding: 70px 30px 0 30px;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 20px 15px 20px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 24px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 10000;
    background-color: #005fa3;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
}

@media screen and (max-width: 767px) {
.site-about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: left;
}
.highlight-note {
    display: inline;
    background-color: #eef8ff;
    color: #0099cc;
    padding: 0;
    border-radius: 6px;
    font-weight: 500;
    margin-top: 0.5rem;
}
.category-list li a {
    padding: 10px;
}
.category-list {
    gap: 1rem;
}
#main_content{
	margin: 0 5%;
}
.page-header {
    padding: 4rem 1rem 3rem;
}
.plan-block {
    display: block;
    padding: 30px 0 0 0;
}
.features {
    display: block;
    margin: 0 5%;
}
.feature-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}
.detail {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
.features li {
    gap: 10px;
}
.catch {
    font-size: 16px;
}
.service-content h2 {
    font-size: 20px;
    color: #2b5ca8;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: #f4f9fd;
}
.p-entry {
    padding: 0;
}
.c-postContent.p-entry__content {
    padding: 2rem 1rem;
}
.faq-article h1 {
    font-size: 1.5rem;
}
.faq-article p {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 2;
}
.l-main__body>.c-postContent {
    margin-top: 0rem !important;
}
.p-entry__title {
    margin-top: 30px !important;
}
    .p-postList.-related.-type-card .p-postList__item {
        padding: 0 .5rem;
        flex-basis: 50%;
    }
.p-postList .p-postList__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}
.p-postList.-type-card .p-postList__item {
    flex-basis: 50%;
}
.p-postList .p-postList__title {
    font-size: 16px !important;
}
.mv-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.main-visual {
    position: relative;
    height: 20vh;
    min-height: 300px;
}
.mv-subtitle {
    font-size: 1rem;
}
.p-postList.-type-card .p-postList__item {
    flex-basis: 50% !important;
}
.cta-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.seo_t span {
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 2.5rem;
}


	.pagetop_block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
		position: fixed;
		  opacity: 0;
        bottom: 0;
        right: 0;
        left: 0;
  visibility: hidden;
  transform: translateY(100px); /* ← 初期は下にオフセット */
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
        z-index: 100;
    }
/* 表示状態 */
.pagetop_block.active {
  opacity: 1;
  visibility: visible;
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* ← 上がってくる動きに */
        z-index: 100;
}
    .pagetop_block #pagetop {
        width: 16%;
        height: 60px;
    }
    .pagetop_block #pagetop a::before {
        font-family: "fontello";
        content: "▲";
        font-size: 11px;
        line-height: 2;
    }
.pagetop_block .contact_sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 28%;
}
.pagetop_block .contact_sp a {
    background: #151515;
    padding: 8px;
    height: 60px;
    width: 100%;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    border-right: 1px solid #ffffff;
}

.pagetop_block .contact_sp a::before {
    content: "";
    position: absolute;
    top: 8px;
    background-image: url(/images/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagetop_block .contact_sp a span {
    margin-top: 24px;
}
.pagetop_block .contact_sp2 a span {
    margin-top: 24px;
}
.pagetop_block .contact_sp3 a span {
    margin-top: 24px;
}
.text-white {
    color: #fff !important;
}

.pagetop_block .contact_sp2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 28%;
}

    .pagetop_block .contact_sp2 a {
        opacity: 1 !important;
    }
	
.pagetop_block .contact_sp2 a {
    background: #151515;
    padding: 8px;
    height: 60px;
    width: 100%;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
    border-right: 1px solid #ffffff;
}

.pagetop_block .contact_sp2 a::before {
    content: "";
    position: absolute;
    top: 8px;

    background-image: url(/images/email.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.pagetop_block .contact_sp3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 28%;
}

    .pagetop_block .contact_sp3 a {
        opacity: 1 !important;
    }
.pagetop_block .contact_sp3 a {
    background: #151515;
    padding: 8px;
    height: 60px;
    width: 100%;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    color: #ffffff;
}

.pagetop_block .contact_sp3 a::before {
    content: "";
    position: absolute;
    top: 8px;

    background-image: url(/images/line.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.wrapper {
    margin: 0 auto;
    padding: 0 10px 40px 10px;
}
.free_top img{
	width: 100%;
	height: auto;
}
.free_top {
    width: auto;
}
    .pagetop_block #pagetop a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: #151515;
        font-weight: 600;
        background: #f7f7f5;
        border: 1px solid #151515;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
.hero p {
    font-size: 1em;
    opacity: 1;
    text-align: left;
    font-weight: bold;
}
.section.gray.twocol {
    display: block;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    background: #f8f8f8;
    padding: 40px 20px;
    border-radius: 12px;
}
.com_tab th, .com_tab td {
    padding: 1.4rem 1rem !important;
    vertical-align: top;
    text-align: left;
    border-bottom: 1px solid #e0e6ec;
    border-left: unset !important;
}
button, input, select, textarea {
    border: 1px solid var(--ark-color--border);
    border-radius: 0;
    color: #333;
    padding: .25em .5em;
    width: 100% !important;
}
.com_tab td {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
        border: none;
        background: #fff;
border: unset;
    }
table.com_tab{
	border-right: unset !important;
}
.seo-summary-box h2 {
    font-size: 1.3em;
    line-height: 1.7;
}
.footer-copy{
	padding-bottom: 70px;
}
.package-list {
    list-style: disc;
    margin-left: 0;
}
.pricing-table {
    padding: 20px;
}

.pcnon{
	display: block;
}
.spnon{
	display: none;
}
.seo-intro {
    margin: 20px auto;
	background-position: right 0px top 0px;
}

.top_p{
	text-align: center;
	margin-bottom: 30px;
}

.top_p img{
	width: 250px;
	height: auto;
	display: block;
	margin: 0 auto;
}
.greet-image img {
    max-width: 60%;
}
}