/*
Theme Name: フォーム3
Description: Contact Form 7 専用・問い合わせ固定ページ用テーマ
Version: 3.0
*/

:root{
  --accent:#2563eb;
  --border:#c5c6c8;
  --bg:#e5eff8;
  --brand:#1e66b3;
  --sec:#39b6bf;
  --orange:#f26622;
  --rad:#d03900;
  --text:#111;
  --muted:#5a6b73;
  --line:#cfdde3;
  --serif:system-ui,-apple-system,"Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP","Yu Gothic","Meiryo",sans-serif;
}

body{
  margin:0;
  font-family:var(--serif);
  background:var(--bg);
}



  .pc {
    display: inline-block;
  }

  .sp {
    display: none;
  }

header{
  background: #fff;
}

header .h-container{
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.container{
  max-width:100%;
  margin:0 auto;
  padding:0px 0px;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:32px;
}

h1{
  font-size:28px;
  margin-bottom:10px;
}

.lead{
  color:#666;
  margin-bottom:30px;
}

footer{
  margin: 20px 0;
}



/* -------------------------
  レスポンシブ（全ページ）
------------------------- */
@media (max-width:640px){

.pc {
  display: none;
}

.sp {
  display: inline-block;
}

header .h-container{
padding-left: 15px;
padding-right: 15px;
}

}






.wpcf7-form p{
  margin: 0;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select{
  width:100%;
  padding:15px;
  border:1px solid var(--border);
  border-radius:5px;
  font-size:16px;
  margin: 5px 0;
  background: #fff;
}

.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"]
{
  padding:10px;
}

.wpcf7 .w50{
  width:50%;
}

input::placeholder,
textarea::placeholder
{color:#8b8b8b}


.wpcf7-submit{
  background:var(--accent);
  color:#fff;
  border:none;
  padding:14px 24px;
  border-radius:12px;
  font-weight:bold;
  cursor:pointer;

}

.wpcf7 form .wpcf7-response-output{
  margin: 20px 15px 0px;
  border-radius:10px;
  max-width: 720px;
  margin-left: auto !important;
  margin-right: auto !important;
  border-color: #d63638 !important;
  color: #d63638 !important;
  text-align: center;
  border: 0px;
}


.wpcf7-submit:disabled{
  opacity:0.7 !important;
  cursor: not-allowed; /* 追加 */
}



/* submitされた時にエラーを表示（バリデーションのタイミングをコントロール） */
/* 修正後（素のCSSとして安全な書き方） */
.wpcf7-form-control-wrap {
  margin-top: 0px;
  display: block;
}
.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 20px;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid {
  background-color: #fff0f0;
  border-color: #d63638;
}






/* =========================
   OKAYAMA GAS ENE - Form UI
   scope: .oge-form
========================= */
.oge-form{

  padding:0px 0px 40px;
  font-family:var(--serif);
  color:var(--text);

}

.oge-form *{ box-sizing:border-box; }

.oge-form p{margin-bottom: 0px;
    font-size: clamp(0.938rem, 0.875rem + 0.27vw, 1rem);
  line-height: 1.8em;
}/*リセット*/

.oge-hero{
  max-width:100%;
  margin:0 auto 14px;
}

.oge-hero__title{
  background:var(--brand);
  color:#fff;
  margin:0;
  padding:25px 0px;
  font-size: clamp(1.5rem, 1.123rem + 1.61vw, 1.875rem);
  font-weight:600;
  letter-spacing:.02em;
  text-align:center;
}



/* steps */
.oge-steps{
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:62px;               /* 丸同士の間隔（矢印分を確保） */
  margin:50px 0;
  padding:0;
  flex-wrap:wrap;
}

/* 丸 */
.oge-steps li{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#8fb8e1;     /* 通常：薄い青 */
  color:#fff;
  font-weight:600;
  font-size:30px;
  position:relative;      /* 矢印用 */
}

/* 現在地 */
.oge-steps li.is-current{
  background:#0b67b9;     /* 濃い青 */
}

/* 中の文字（確認/完了も中央） */
.oge-steps li span{
  display:block;
  line-height:1;
  font-size:20px;
  letter-spacing:.02em;
}
.oge-steps li span.jp{ font-size:18px;}

/* 矢印（li間） */
.oge-steps li:not(:last-child)::after{
  content:"→";
  position:absolute;
  left:calc(100% + 22px);
  top:50%;
  transform:translateY(-50%);
  color:#0b67b9;
  font-size:28px;
  font-weight:700;
  line-height:1;
}

/* 開始、中止の場合は3を非表示 */
#gus_start ol li.three,
#gus_stop ol li.three{
  display: none;
}



/* SP調整 */
@media (max-width:640px){
  .oge-stepsbar{ padding:16px 10px; }
  .oge-steps{ gap:46px; }

  .oge-steps li{
    width:48px;
    height:48px;
  }

  .oge-steps li span{ font-size:20px; }
  .oge-steps li span.jp{ font-size:16px;}

  .oge-steps li:not(:last-child)::after{
    display: none;
    left:calc(100% + 14px);
    font-size:22px;
  }
}


.oge-read{
    max-width: 720px;
    margin: 0 auto;
    padding: 14px 0 0;
}


h2.sub__title{
  font-size: clamp(1.25rem, 0.999rem + 1.07vw, 1.5rem);
  text-align: center;
  color: var(--brand);
}

.oge-read ul{
  list-style: none;
  padding: 0;
  line-height: 1.8em;
  margin-top: 2em;
  }

.oge-read li{
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.5em;
}

.oge-read li::before{
  content: '●';
  color: var(--brand);
}
@media (max-width:640px){
  .oge-read{
    padding: 0 15px;
  }
}





/* body card-ish */
.oge-body{
  max-width:720px;
  margin:0 auto;
  padding:14px 0 0;
}

/* section */
.oge-sec{
  margin:50px 0 10px;
  width: 100%;
}
.oge-sec__title{
  display:flex;
  align-items:center;
  gap:5px;
  background:var(--sec);
  color:#fff;
  padding:10px 20px;
  border-radius:4px;
  margin:0 0 10px;
  font-size:clamp(1.25rem, 1.124rem + 0.54vw, 1.375rem);
  font-weight:600;
}
.oge-sec__icon{
  width:3px;
  height:20px;
  background:#fff;
  border-radius:2px;
  display:inline-block;
  opacity:.9;
  margin-right: 5px;
}

/* fields */
.oge-field{
  background:transparent;
  padding:15px 15px 6px;
  margin:0 0 10px;
}
.oge-field__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 8px;
}
.oge-label{
  font-weight:600;
  font-size:clamp(1rem, 0.874rem + 0.54vw, 1.125rem);
}

/*必須*/
.oge-badge{ 
  background:var(--rad);
  color:#fff;
  font-size:13px;
  line-height:1;
  padding:4px 8px;
  border-radius:4px;
  font-weight:400;
}

/* inputs */
.oge-input,
.oge-select{
  width:100%;
  max-width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:3px;
  padding:10px 12px;
  font-size:16px;
  outline:none;
}
.oge-input:focus,
.oge-select:focus{
  border-color:#8fb6cc;
  box-shadow:0 0 0 3px rgba(30,102,179,.12);
}

/* zip row */
.oge-grid{ display:grid; gap:0px; }
.oge-row{
  display:flex;
  align-items:center;
  gap:8px;
}
.oge-mini{
  width:24px;
  text-align:center;
  font-weight:700;
}

/* split (name/kana) */
.oge-split{
  display:block;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}
.oge-sub{
  font-size:clamp(0.938rem, 0.875rem + 0.27vw, 1rem);
  color:var(--text);
  margin:15px 0 0 0;
  font-weight: 600;
}
.oge-split__item{
  margin-top: 15px;
}

/* radios */
.oge-radio{
    padding: 15px 20px 3px;
    background-color: #fff;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid var(--border);
}


.oge-radio .wpcf7-list-item{
  display:block;
  margin:0 0 8px;
}
.oge-radio label{
  display:flex;
 align-items: center; /* 複数行テキスト時のズレ防止 */
  gap:10px;
  cursor:pointer;
  font-size:16px;
}
.oge-radio input[type="radio"]{
  width:20px;
  height:20px;
  min-width:20px;     /* ← 念のため */
  min-height:20px;    /* ← 念のため */
  flex-shrink:0;      /* ← これが重要 */
  accent-color: var(--brand);
  margin-top: 3px;
}


/* =======================================
  CF7 Checkbox を縦並び（1カラム）にする
  scope: .oge-form
======================================= */

/* チェックボックスの各項目をブロック化して縦積み */
.oge-form .wpcf7-checkbox .wpcf7-list-item{
  display:block;
  margin:0 0 8px;
}

.oge-form .wpcf7-list-item{
  margin: 0;
  padding-bottom: 5px;
}

/* ラベル内を横並び（チェック本体＋文言）で整列 */
.oge-form .wpcf7-checkbox label, .oge-form .wpcf7-acceptance label{
  display:flex;
  align-items:flex-start;
  gap:10px;
  cursor:pointer;
  font-size:16px;
  line-height:1.5;
}

/* チェックボックスの見た目（サイズ合わせ） */
.oge-form .wpcf7-checkbox input[type="checkbox"], .oge-form .wpcf7-acceptance input[type="checkbox"]{
  width:20px;
  height:20px;
  margin-top:2px; /* 複数行の文言でも頭が揃う */
  accent-color: var(--brand);
}

.oge-form .wpcf7-checkbox, .oge-form .wpcf7-acceptance{
    padding: 15px 20px 3px;
    background-color: #fff;
    display: inline-block;
    border-radius: 5px;
    border: 1px solid var(--border);
}


/* notes */
.oge-note{
  margin:8px 0 0;
  font-size:14px !important;
  /*color:var(--muted);*/
  line-height:1.6 !important;
  padding: 0.5em 0 0.5em;
}

.oge-note_label_under{
  margin:8px 0 20px !important;
  font-size:14px !important;
  line-height:1.6 !important;
  padding: 0.5em 0 0.5em;
}

.oge-note_button_top{
  margin:50px 0 20px !important;
  font-size:14px !important;
  line-height:1.6 !important;
  text-align: center;
}

.oge-note-red{
  color:#c60000;
}
.oge-attn{
  margin:1em 0px;
  font-size:16px;
  color:#c60000;
  font-weight:600;
  line-height:1.6;
  padding: 1em 0;
}
.oge-warn{
  margin:8px 0 0;
  font-size:15px;
  color:#c60000;
  font-weight:60;
}

/* actions */
.oge-actions{
  margin:18px 0 0;
  display:block;
  justify-content:center;
  text-align: center;
}
input.oge-next{
  appearance:none;
  border:0;
  background:var(--brand);
  color:#fff;
  font-weight:600;
  font-size:18px;
  padding:25px 20px;
  border-radius:4px;
  width:clamp(15.625rem, -0.084rem + 67.02vw, 31.25rem);
  cursor:pointer;
  position:relative;
}


/* 戻るボタン（任意） */
input.oge-prev{
  appearance:none;
  border:1px solid var(--border);
  background: unset;
  color:var(--text);
  font-weight:600;
  font-size:16px;
  padding:14px 26px;
  border-radius:4px;
  width:clamp(15.625rem, -0.084rem + 67.02vw, 31.25rem);
  cursor:pointer;
}


/* スピナー */
.wpcf7-spinner{display: block;
}



.oge-next:hover{ filter:brightness(.98); }
.oge-next::after{
  content:"›";
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:20px;
  line-height:1;
  opacity:.9;
}

/* CF7 validation */
.oge-form .wpcf7-not-valid{
  border-color:#c60000;
  background: #fff7f7;
  border: solid 2px #d63638;
  display: block;
  padding-left: 1em;
  padding-top: 1em;
}
.oge-form .wpcf7-not-valid-tip{
  font-size:15px;
  margin-top:6px;
  font-weight: 600;
}
.oge-form .wpcf7-response-output{
  margin:18px 0 0;
  border-radius:4px;
}

/* responsive */
@media (max-width: 640px){
  .oge-field{
  padding:15px 20px 6px;
  margin:0 0 10px;
}
  .oge-form{ padding:0px 0px 30px; }
  
  .oge-split{ grid-template-columns: 1fr; }
  .oge-steps{ gap:8px; }
  .oge-steps li{ padding:0px;  }

  .oge-sec__title{border-radius:0px;}
}





/* アイコンを非表示にして全体をクリック可能にする(PC) */
@media (min-width: 641px){
.wpcf7-date::-webkit-calendar-picker-indicator {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
}



/* =======================================
  Confirm view（値表示の見た目）
======================================= */
.oge-form--confirm .oge-confirm{
  background-color: #f5f8fb !important;
  border-radius:3px;
  padding:10px 12px;
  font-size:16px;
  line-height:1.6;
}

.oge-form--confirm .oge-confirm__row + .oge-confirm__row{
  margin-top:10px;
}

.oge-form--confirm .oge-confirm--split{
  display:block;
  grid-template-columns:1fr 1fr;
  gap:20px;
  background:transparent;
  border:0;
  padding:0;
}

.oge-form--confirm .oge-confirm--split .oge-confirm__item{
 
  border-radius:3px;
  padding:10px 12px;
}
.oge-form--confirm .oge-sub{
  margin-top: 0px;
  display: inline-block;
}
.oge-form--confirm .oge-sub::after{
  content: "：";
  padding-right: 0.5em;
}

@media (max-width:640px){
  .oge-form--confirm .oge-confirm--split{
    grid-template-columns:1fr;
  }
}






/* =========================
   Finish page additions（送信完了ページ）
========================= */
.oge-finish .oge-body{
  padding-top: 12px;

}



/* done box */
.oge-donebox{
  max-width: 720px;
  margin: 30px auto 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 35px 18px;
  text-align: center;
}
.oge-donebox__title{
  font-size: 24px;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 14px;
}
.oge-donebox__no{
  display: inline-flex;
  gap: 14px;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 18px;
}
.oge-donebox__label{
  font-weight: 600;
  color: #c60000;
}
.oge-donebox__value{
  font-weight: 600;
  color: #c60000;
  letter-spacing: .04em;
}

/* text block */
.oge-text{
  max-width: 720px;
  margin: 0 auto 34px;


}
.oge-text p{ margin: 0 0 14px; }
.oge-text ul{
  margin: 8px 0 14px;
  padding-left: 18px;
}
.oge-text li{ margin: 6px 0; }
.oge-center{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 3em !important;
}



/* contact section（ページ共通） */
.oge-contact{
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 24px;
}
.oge-contact__title{
  display:flex;
  align-items:center;
  gap:10px;
  background: var(--sec);
  color:#fff;
  padding: 15px 12px;
  border-radius: 3px;
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
}
.oge-contact__icon{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: relative;
}
.oge-contact__icon::after{
  content:"";
  position:absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--sec);
}

.oge-contact__grid{
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 20px;
  width: max-content;
    margin: 0 auto;
}
.oge-contact__row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
}
.oge-contact__name{
  font-weight: 600;
  text-align: left;
  letter-spacing: .1em;
}
.oge-contact__tel{
  font-weight: 600;
  letter-spacing: .06em;
}
.oge-contact__tel a:link{text-decoration: none;
color: var(--text);}

.oge-hours{
  display:flex;
  justify-content:center;
}
.oge-hours__box{
  border: 1px solid #3d3d3d;
  padding: 10px 18px;
  border-radius: 2px;
margin-top: 1em;
  font-size: 15px;
  width: 100%;
  text-align:center;
}

@media (max-width: 640px){
  .oge-donebox{ padding: 22px 14px; 
    margin: 0px 20px 30px;}
  .oge-donebox__title{ font-size: 18px; }
  .oge-contact__row{
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
  }
  .oge-contact__name{ text-align: center; }

  .oge-contact__tel a:link{text-decoration: underline;
color: var(--text);}
}



/* =========================================================
   よくあるご質問（FAQ）
   root変数準拠版（追加変数なし）
========================================================= */

/* -------------------------
  全体
------------------------- */
.oge-faq{
  background:#fff;
  color:var(--text);
  padding:60px 20px 80px;
  font-family:var(--serif);
}

.oge-faq__inner{
  max-width:720px;
  margin:0 auto 100px;
}

/* -------------------------
  上部バナー
------------------------- */
.oge-faq__hero{
  display:flex;
  justify-content:center;
  margin-bottom:30px;
}

.oge-faq__hero img{
  width:100%;
  max-width:720px;
  height:auto;
  display:block;
}

/* -------------------------
  見出し
------------------------- */
.oge__title{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  margin:50px 0 50px;
  width: 100%;
  border-top:3px solid var(--sec);
  border-bottom: 3px solid var(--sec);
}

.oge__titleLine{
  height:2px;
  
}

.oge__titleMain{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  color:var(--sec);
  font-size:clamp(1.375rem, 0.872rem + 2.14vw, 1.875rem);
  font-weight:600;
  letter-spacing:.03em;
  
  font-family: var(--serif);
}

/* 見出しアイコン */
.oge__titleIcon{
  width:26px;
  height:26px;
  border:2px solid var(--sec);
  border-radius:4px;
  position:relative;
}

.title__icon{
  width:70px;
  height:70px;
}



.oge-faq__title{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  margin:50px 0 50px;
  width: 100%;
  border-top:3px solid var(--sec);
  border-bottom: 3px solid var(--sec);
}

.oge-faq__titleLine{
  height:2px;
  
}

.oge-faq__titleMain{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  color:var(--sec);
  font-size:clamp(1.563rem, 1.374rem + 0.8vw, 1.75rem);
  font-weight:600;
  letter-spacing:.08em;
  white-space:nowrap;
  font-family: var(--serif);
}

/* 見出しアイコン */
.oge-faq__titleIcon{
  width:26px;
  height:26px;
  border:2px solid var(--sec);
  border-radius:4px;
  position:relative;
}

.title__icon{
  width:70px;
  height:70px;
}

/* 説明文 */
.oge__lead{
  text-align:center;
  margin:18px 0 36px;
  color:var(--muted);
}

@media (max-width:640px){
.oge__title{
  gap:0px;
}

.oge__titleMain{gap:0px;}

}


/* 説明文 */
.oge-faq__lead{
  text-align:center;
  margin:18px 0 36px;
  color:var(--muted);
}





/* -------------------------
  FAQ リスト
------------------------- */
.oge-faq__list{
  border-top:1px solid var(--line);
}

.oge-faq__item{
  border-bottom:1px solid var(--line);
}

/* -------------------------
  Q ボタン
------------------------- */
.oge-faq__q{
  width:100%;
  background:none;
  border:none;
  padding:22px 8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  text-align:left;
}

.oge-faq__q:hover{
  background-color: #e2f5f7;
  transition: 0.5s;
}

.oge-faq__qLeft{
  display:flex;
  gap:12px;
  
  align-items: center;
}

.oge-faq__qMark{
  color:var(--sec);
  font-weight:600;
  flex-shrink:0;
  font-size: 25px;
}

.oge-faq__qText{
  color:var(--sec);
  font-size:clamp(0.938rem, 0.812rem + 0.54vw, 1.063rem);
  font-weight:600;
  line-height:1.7;
}

/* + / − */
.oge-faq__qIcon{
  width:22px;
  height:22px;
  position:relative;
  flex-shrink:0;
}

.oge-faq__qIcon::before,
.oge-faq__qIcon::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  background:var(--sec);
  border-radius:1px;
}

.oge-faq__qIcon::before{
  width:18px;
  height:2px;
}

.oge-faq__qIcon::after{
  width:2px;
  height:18px;
}

/* open時は − */
.oge-faq__item.is-open .oge-faq__qIcon::after{
  opacity:0;
}

/* -------------------------
  A エリア
------------------------- */
.oge-faq__a{
  padding:0 0px 30px;
}

.oge-faq__aInner{
  padding:8px 15px;
  color:var(--text);
  font-size:16px;
  line-height:1.8;
}

.oge-faq__aInner p{
  margin:0;
}

/* -------------------------
  A 行（A.マーク付き）
------------------------- */
.oge-faq__aRow{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.oge-faq__aMark{
  color:var(--text);
  font-weight:400;
  flex-shrink:0;
  line-height:1.8;
  font-size: 20px;
}

.oge-faq__aText{
  color:var(--text);
}

.oge-faq__aText p{
  margin:0;
}


/* -------------------------
  CTA ボタン
------------------------- */
.oge-faq__cta{
  margin:50px 0 28px;
  display:flex;
  justify-content:center;
}

.oge-faq__ctaBtn{
  width:100%;
  max-width:760px;
  background:var(--sec);
  color:#fff;
  text-decoration:none;
  padding:16px 18px;
  font-size:15px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:12px;
}

.oge-faq__ctaBtn:hover{
  opacity:.9;
}

/* CTA 左丸 */
.oge-faq__ctaIcon{
  width:16px;
  height:16px;
  border:2px solid #fff;
  border-radius:50%;
}

/* -------------------------
  営業時間
------------------------- */
.oge-faq__hours{
  display:flex;
  justify-content:center;
}

.oge-faq__hours span{
  border:1px solid var(--line);
  padding:10px 22px;
  font-size:13px;
  color:var(--muted);
  letter-spacing:.05em;
}

/* -------------------------
  レスポンシブ(faq）
------------------------- */
@media (max-width:640px){
  
  .oge-faq{
    padding:40px 14px 60px;
  }

  .title__icon{
  width:15vw;
  height:auto;
}

  .oge-faq__qText{
    font-size:16px;
  }

  .oge-faq__aInner{
    font-size:15px;
  }
}



/* =========================================================
   ガス使用開始・中止 お申し込み案内（.oge-apply）
========================================================= */
.oge-apply{
  background:#fff;
  color:var(--text);
  padding:20px 20px 80px;
  font-family:var(--serif);
}
.oge-apply__inner{
  max-width:720px;
  margin:0 auto 50px;
}

.oge-apply__hero{
  display:flex;
  justify-content:center;
  margin-bottom:30px;
}
.oge-apply__hero img{
  width:100%;
  max-width:720px;
  height:auto;
  display:block;
}

/* 見出し（FAQに寄せた簡易版） */
.oge-apply__title{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:20px;
  margin:50px 0;
  border-top:3px solid var(--sec);
  border-bottom:3px solid var(--sec);
}
.oge-apply__titleLine{ height:2px; }
.oge-apply__titleMain{
  display:flex;
  align-items:center;
  gap:10px;
  margin:0;
  color:var(--sec);
  font-size:clamp(1.375rem, 0.872rem + 2.14vw, 1.875rem);
  font-weight:600;
  letter-spacing:.08em;
  white-space:nowrap;
}
.oge-apply__titleIcon{
  width:70px;
  height:auto;
  display:block;
}

.oge-apply__notice{
  background:#ffffbb;
  color:#ff0000;
  font-weight:600;
  text-align:center;
  padding:10px 20px;
  margin:0 0 18px;
  font-size:clamp(1rem, 0.874rem + 0.54vw, 1.125rem);
  line-height:1.7;
}
.oge-apply__notice_black{
  color:#000000;
}

.oge-apply__banner{
  margin:0 0 18px;
  padding: 30px;
}
.oge-apply__bannerLink{
  display:block;
}
.oge-apply__banner img{
  width:100%;
  height:auto;
  display:block;
  
}

.oge-apply__bullets{
  list-style:none;
  padding:0;
  margin:0 0 12px;
  line-height:1.8;
  font-size: 15px;
 
}
.oge-apply__bullets li{
  text-indent:-1em;
  padding-left:1em;
  margin:0 0 8px;
}
.oge-apply__bullets li::before{
  content:"●";
  color:var(--brand);
}

.oge-apply__centerNote{
  text-align:center;
  color:var(--muted);
  font-size:15px;
  margin:30px 0 10px;
}

/* ★スクロール枠（指定：高さ300px） */
.oge-apply__scroll{
  max-height:300px;
  overflow:auto;
  border:1px solid var(--line);
  background:#fafaf5;
  padding:16px 16px;
  border-radius:2px;
  margin-bottom: 40px;
}

/* 中の文章（超シンプル） */
.oge-apply__block + .oge-apply__block{ margin-top:18px; }
.oge-apply__h3{
  font-size: 18px;
  font-weight:600;
  margin:0 0 8px;
  line-height:1.7;
}
.oge-apply__sub{ margin:10px 0 0; }
.oge-apply__h4{
  font-size:15px;
  font-weight:600;
  margin:0 0 6px;
}
.oge-apply__block p{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.9;
}
.oge-apply__list{
  margin:0;
  padding-left:18px;
  font-size:14px;
  line-height:1.9;
}
.oge-apply__list li{ margin:0 0 6px; }

/* CTA */
.oge-apply__ctas{
  margin:22px 0 0;
  display:grid;
  gap:12px;
}

.oge-apply__ctas p{
  text-align: center;
  font-size: clamp(0.875rem, 0.812rem + 0.27vw, 0.938rem);
  line-height:1.9;
}

.oge-apply__ctas-go-form{
  background-color: #e2f5f7;
  margin: 30px 0;
  padding-top: 30px;
}

.oge-apply__btn{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:600;
  border-radius:4px;
  border:1px solid var(--line);
  max-width:380px ;
  width: 380px;
  margin: auto;
  padding: 10px 20px;
  font-size: 18px;
}
.oge-apply__btn--faq{
  background:var(--sec);
  color:#fff;
  border-color:transparent;
}


.oge-actionBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  padding: 20px 28px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #3383ca 0%, #0064bd 100%);
  border-radius: 8px;
  border: 4px solid #2a6fb4;
  color: #fff !important;
  text-decoration: none;
  font-size: clamp(1.25rem, 0.999rem + 1.07vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: 0.25s ease;
  margin: 40px auto;
}

.oge-btn_contaner a:last-child {margin-bottom: 5px;}


.oge-actionBtn:hover {

  opacity: 0.85;
}


/* 左アイコン */
.oge-actionBtn__icon img {
  height: auto;
  width: 105px;
  display: block;
}

/* テキスト */
.oge-actionBtn__label {
  flex: 1;
  text-align: center;

}

/* 右矢印 */
.oge-actionBtn__arrow img {
  height: 22px;
  width: auto;
  display: block;
}
.oge-actionBtn .oge-actionBtn__arrow{
	margin-right: 0px;
	 transition: 0.25s linear;
}
.oge-actionBtn:hover .oge-actionBtn__arrow{
	margin-right: 3px;
	 transition: 0.25s linear;
}




/* SP */
@media (max-width:640px){
  .oge-apply{ padding:40px 20px 60px; }
  .oge-apply__titleIcon{ width:15vw; }
  .oge-apply__btn{width: auto; padding: 10px 50px;}
  .oge-actionBtn{margin: 30px; width: auto;}
  .oge-apply__ctas-go-form{
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .oge-apply__banner{
  padding: 0px;
  }
  .oge-apply__hero{
    margin: 0 -20px;
  }
}


/* =========================================================
   特定商取引法に基づく表記（PCレイアウト合わせ）
========================================================= */
.oge-law{
  max-width:900px;
  margin:34px auto 0;
  padding:0 20px;
  color:var(--text);
}

.oge-law__title{
  text-align:center;
  font-size:14px;
 font-weight: 400;
  margin:0 0 14px;
}

.oge-law__table{
  border-top:1px solid #bdbdbd;
  border-bottom:1px solid #bdbdbd;
}

/* 1行 = 左/右 2カラム */
.oge-law__row{
  display:grid;
  grid-template-columns:260px 1fr;
  column-gap:40px;
  padding:22px 0;
  border-top:1px solid #bdbdbd;
}
.oge-law__row:first-child{ border-top:none; }

.oge-law__left{
  padding-left:10px; /* 左の●列の軽いインデント */
}
.oge-law__label{
  margin:0;
  font-size:14px;
  line-height:2.0;
}

.oge-law__right{
  padding-right:10px;
  font-size:14px;
  line-height:2.0;
}

/* 役務提供事業者：右側の dt/dd を横並び */
.oge-law__dl{
  margin:0;
}
.oge-law__item{
  display:grid;
  grid-template-columns:120px 1fr;
  column-gap:28px;
}
.oge-law__item dt{

}
.oge-law__item dd{
  margin:0;
}

/* 右側テキスト */
.oge-law__text{
  margin:0;
}

/* ガス料金のご案内（画像ではボックスっぽい見え） */
.oge-law__link{
  margin:0px 0 0;
}
.oge-law__linkA{
  display:inline-block;
  /*padding:3px 7px;
  border:1px solid #bdbdbd;*/
  text-decoration:none;
  color:inherit;
  font-weight:400;
}
.oge-law__linkA:hover{
  text-decoration: underline;
}

/* SP：1カラム（左→右の順に縦積み） */
@media (max-width:640px){
  .oge-law{ padding:0 14px; }

  .oge-law__row{
    grid-template-columns:1fr;
    row-gap:8px;
    column-gap:0;
    padding:16px 0;
  }

  .oge-law__left{ padding-left:0; }
  .oge-law__right{ padding-right:0; }

  .oge-law__item{
    display:grid;
  grid-template-columns:1fr 3fr;
    row-gap:2px;
    padding:6px 0;
  }

}


/* 確認画面の表示調整 */
/* 空白時は消す */
.confirm-item.is-empty {
  display: none;
}


/* flatpickrカレンダー */
input.flatpickr-input,
input[readonly].flatpickr-input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.flatpickr-calendar {
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
  border: 1px solid #ddd;
}

.flatpickr-day.selected {
  background: var(--brand);
  border-color: #0073aa;
  border:none;
}
.flatpickr-day.today {
  background-color: var(--bg);
  color: #3d3d3d;
}