main.lp-content__inner {
    max-width: none;
}

/* PC・スマホ共通の基本スタイル */
.custom-lp-header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  padding: 10px 4%; /* 上下の余白と左右の余白 */
  position: sticky; /* スクロールしてもヘッダーを追従させる */
  top: 0;
  z-index: 999;
}
.custom-lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px; /* ヘッダーの最大幅 */
  margin: 0 auto;
}
.custom-lp-header__logo img {
  height: 36px; /* ロゴの高さを指定 */
  width: auto;
  vertical-align: middle; /* 画像の下の余白を消す */
}
.custom-lp-hamburger {
  display: none; /* PCではハンバーガーを非表示 */
}
/* PC用ナビゲーション */
.custom-lp-nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.custom-lp-nav a {
    display: block;
    padding: 10px 15px;
    color: #727171;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
}
.custom-lp-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px; /* 下線の位置 */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #3498db;
  transition: width 0.3s ease;
}
.custom-lp-nav a:hover::after {
  width: calc(100% - 30px); /* 左右のpadding分を引く */
}

/* --- ここからスマホ用のスタイル (幅が782px以下で適用) --- */
@media screen and (max-width: 782px) {
  /* PC用ナビゲーションを非表示に */
.custom-lp-nav {
    position: fixed;
    top: 73px;
    left: 0;
    padding: 30px;
    width: 100%;
    /* height: calc(100vh - 71px); */
    background-color: rgb(139 190 229 / 80%);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
  /* is-activeクラスが付いたら表示 */
  .custom-lp-nav.is-active {
    transform: translateX(0);
  }
  .custom-lp-nav ul {
    flex-direction: column; /* 縦並びにする */

  }
.custom-lp-nav a {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: white;
}
  .custom-lp-nav a:hover::after {
    width: 0; /* スマホではホバー時の下線を無効化 */
  }

  /* ハンバーガーボタンを表示・デザイン */
  .custom-lp-hamburger {
    display: block;
    position: relative;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
    -webkit-tap-highlight-color: transparent; /* クリック時の青い背景を消す */
  }
  .custom-lp-hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: transform 0.3s, opacity 0.3s;
    border-radius: 2px;
  }
  .custom-lp-hamburger span:nth-of-type(1) { top: 0; }
  .custom-lp-hamburger span:nth-of-type(2) { top: 9px; }
  .custom-lp-hamburger span:nth-of-type(3) { bottom: 0; }
  
  /* is-activeクラスが付いたらバツ印に変化 */
  .custom-lp-hamburger.is-active span:nth-of-type(1) {
    top: 9px;
    transform: rotate(45deg);
  }
  .custom-lp-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .custom-lp-hamburger.is-active span:nth-of-type(3) {
    top: 9px;
    transform: rotate(-45deg);
  }
}


/* 前後に線がある見出し */
  .custom-section-title {
    display: flex; /* 横並びのレイアウトを作成 */
    align-items: center; /* 上下中央揃え */
    justify-content: center; /* 水平中央揃え */
    margin: 60px 0; /* 見出しの上下に余白を設ける */
  }

  /* テキストを囲む線 */
  .custom-section-title__line {
    flex-grow: 1; /* 自動で伸びるようにする */
    height: 1px; /* 線の太さ */
    background-color: #ddd; /* 線の色 */
  }

  /* テキスト部分 */
  .custom-section-title__text {
    text-align: center;
    padding: 0 2em; /* テキストと線の間の余白 */
    flex-shrink: 0; /* テキストが縮まないようにする */
  }

  /* メインの見出し (例: サービス内容) */
  .custom-section-title__text h2 {
    font-size: 26px; /* 文字の大きさ */
    color: #555; /* 文字の色 */
    font-weight: 600; /* 文字の太さ */
    margin: 0 0 5px 0; /* 下に少しだけ余白 */
  }

  /* サブの見出し (例: Our Service) */
  .custom-section-title__text p {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px; /* 文字の間隔 */
    margin: 0;
    text-transform: uppercase; /* 大文字に変換 */
  }

#awa.lp_only img {
    position: absolute;
    left: 0;
    bottom: -600px;
    z-index: 0;
}

header.custom-lp-header {
    margin-bottom: 0;
}

#lp-header {
    position: fixed;
    z-index: 99999;
    top: 0;
    padding: 30px 0;
}

/* ----- WordPress管理バーとの重なりを解消 (優先度強化版) ----- */

/* PC表示の時 (管理バーの高さ: 32px) */
.admin-bar #lp-header {
  top: 32px !important;
}

/* スマホ表示の時 (管理バーの高さ: 46px) */
@media screen and (max-width: 782px) {
.admin-bar #lp-header {
    top: 46px !important;
  }
.under-line {
    gap: 0em!important;
    margin-bottom: 1em;
    padding-bottom: 1em;
}

}

.price-table-column {
    gap: 0!important;
}

.price-suffix {
  position: relative;
}

.price-suffix::after {
    content: '～';
    display: inline-block;
    font-size: 1em;
    color: inherit;
    position: absolute;
    margin-left: 0.2em;
}

.wp-block-columns.price-table {
    gap: 0em 4em !important;
}
.back-gray {
    background-color: #c3cfd0;
    color: white;
    padding: 3px;
}
.under-line {
    border-bottom: 1px solid #d3d2d1;
}
p.font-family-shippori.wp-elements-5e264a8388b75c6f789bcee54350a208 {
    text-shadow: 0px 0px 3px rgb(186 191 225);
}



#store-list,
#price,
#company {
  display: block; /* 念のためブロック要素として扱う */
  padding-top: 40px;  /* ヘッダーの高さ分の余白を追加 */
  margin-top: -40px; /* 追加した余白分、表示を上に引き上げる */
}

header#header,div#fix_header {
    display: none;
}
div#before_footer_widget,footer#footer {
    display: none;
}
h1.c-pageTitle {
    display: none;
}
div#content {
    padding-top: 0;
}

div#breadcrumb {
    display: none;
}

.margin-bottom-0 {
margin-bottom:0;
}


body#page-top {
    padding-top: 45px;
}

@media screen and (max-width: 767px) {
    .sdgs {
    gap: 0!important;
}
#awa.lp_only img {

    bottom: -120px;

}

.custom-section-title {
    gap: 0em;
     margin-bottom: 0;
}
.custom-section-title__text {
    padding: 1em;
}
.custom-section-title__text h2 {
    font-size: 20px;
    margin: 0 auto;
}
.custom-section-title__text p {
    font-size: 12px;

}
p.has-text-align-center.u-mb-ctrl.u-mb-30 {
    text-align: left;
}
.wp-block-columns.is-not-stacked-on-mobile.price-table-column {
    padding: 0 15px 0 0;
}
}

.custom-section-title__line.line-black {
    background-color: #727171;
}

/* コンタクトフォーム */
/* Contact Form 7 のデフォルトpタグの余白をリセット */
.wpcf7-form p {
    margin: 0;
}

/* フォーム全体のコンテナ */
.custom-form-container {
    width:100%;
    max-width: 600px;
    margin: 0 auto; /* 中央寄せ */
    padding: 20px;
    box-sizing: border-box; /* paddingを含めて幅600pxを維持 */
}

/* 各フォーム項目のラベル */
.custom-form-container label {
    display: block;
    font-weight: bold;
    margin-bottom: -30px;

}

/* 「※必須」のスタイル */
.custom-form-container .required {
    color: red;
    font-size: 0.9em;
    font-weight: normal;
    margin-left: 8px;
}

/* テキスト入力欄、テキストエリアの共通スタイル */
.custom-form-container input[type="text"],
.custom-form-container input[type="tel"],
.custom-form-container input[type="email"],
.custom-form-container textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

/* テキストエリアの高さ設定 */
.custom-form-container textarea.wpcf7-textarea {
    height: 180px;
    resize: vertical;
}

/* 個人情報の取り扱いについてのセクション */
.privacy-policy-section {
    margin-top: 30px;
    font-size: 0.9em;
}

.privacy-policy-section p {
    margin: 0;
    line-height: 1.7;
}


/* プライバシーポリシーのスクロールボックス */
.privacy-policy-scroll-box {
    margin-top: 15px;
    padding: 15px;
    border: 1px solid #ccc;
    height: 250px;
    overflow-y: scroll;
    background-color: #fff;
    font-size: 0.85em;
    line-height: 1.7;
}
.privacy-policy-scroll-box p {
    margin-bottom: 1em;
}


/* 同意チェックボックスのコンテナ */
.acceptance-container {
    /* text-align: center; */
    margin-top: 30px;
}
.wpcf7-acceptance .wpcf7-list-item {
    margin: 0; /* CF7がつけるデフォルトマージンを解除 */
}


/* 送信ボタンのコンテナ */
.submit-container {
    text-align: center;
    margin-top: 3em;
}

/* 送信ボタンのスタイル */
.submit-container input[type="submit"] {
    background-color: #4A90E2;
    color: white;
    border: none;
    padding: 15px 60px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    -webkit-appearance: none;
    width: 100%;
    display: inline;
}

/* 送信ボタンのホバーエフェクト */
.submit-container input[type="submit"]:hover {
    background-color: #357ABD;
}

div#top_title_area {
    display: none;
}

/* コンタクトフォームでのありがとうございましたメッセージ非表示 */
.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}