@charset "utf-8";

/* ==========================================================================
   1. ベース・共通スタイル（inquiry.css 優先）
   ========================================================================== */
html {
  font-size: 62.5%; /*ベース10px*/
}

body {
    /* background: url(../../main/chatform/common/img/bg.webp) repeat left / contain; */
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  font-size: 1.6rem;;
  color: #396769;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
}

img {
  width: 100%;
}

header img, main img, footer img {
  -webkit-backface-visibility: hidden;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* スマホ用改行指定 */
.break, .break01 {
  display: none;
}

.break02 {
  display: block;
}

@media screen and (max-width: 640px) {
  .break, .break01 {
    display: block;
  }
  .break02 {
    display: none;
  }
}

/* alpha / hover */
.alpha:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

a img:hover {
  opacity: 0.8;
}

/* clearfix */
.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

/* 汎用・ユーティリティクラス */
.clear { clear: both; }
.fl-right { float: right; }
.fl-left { float: left; }
.align-left { text-align: left; }
.align-right { text-align: right; }
.align-center { text-align: center; }
.bold { font-weight: bold; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-35 { margin-bottom: 35px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

/* テキスト・注釈・リスト */
.txt {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.25em;
}

.txt .emp_red {
  color: #f33;
  text-decoration: underline;
}

.txt_annotation {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.25em;
  padding-left: 1em;
  text-indent: -1em;
}

.txt_annotation:last-of-type {
  margin-bottom: 0;
}

ul.txt_list {
  padding-left: 20px;
  margin-bottom: 15px;
}

ul.txt_list li {
  font-size: 1.4rem;
  list-style: disc;
  width: 100%;
  line-height: 1.25em;
  white-space: normal;
  margin-bottom: 10px;
}

.thumbnail {
  width: auto;
  height: auto;
  max-width: 250px;
  max-height: 250px;
}

/* 電話番号(リンク)（style.cssより移動） */
a[href^="tel:"] {
  color: #3f3c3c !important;
}
@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: #3f3c3c !important;
  }
}

/* エラーメッセージ */
.error {
  color: #ef1736;
  margin-top: 5px;
  font-size: 1.2rem;
  font-weight: bold;
}

.phperror {
  font-size: 1.4rem;
  padding: 15px 30px 15px;
  line-height: 1.25em;
  border: 1px solid #ef1736;
  margin: 0 0 50px;
}

.phperror li {
  list-style: disc;
  margin-bottom: 5px;
}

.phperror li:last-of-type {
  margin-bottom: 0;
}

.phperror a:link,
.phperror a:visited {
  color: #ef1736;
  text-decoration: none;
  font-weight: bold;
}

.phperror a:hover,
.phperror a:active {
  color: #f99;
  text-decoration: underline;
}

@media screen and (max-width: 640px) {
  .phperror {
    margin: 0 0 25px;
  }
}

.hide {
  display: none;
}


/* ==========================================================================
   2. ヘッダー（inquiry.css を優先・統合）
   ========================================================================== */
header {
  background-color: #DEF9FA;
}

header .header_inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  padding: 25px 0;
}

header .header_inner h1 {
  display: flex;
}

header .header_inner h1 img {
  max-width: 204px;
  margin-right: 5px;
}

header .header_inner h1 a {
  text-decoration: none;
  color: #396769;
}

header .header_inner .header_catch {
  margin-left: auto;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  header .header_inner {
    display: block;
    max-width: 100%;
    margin: 0px auto;
    padding: 25px 20px;
  }
  header .header_inner h1 {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  header .header_inner .header_catch {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  header .header_inner {
    display: block;
    max-width: 100%;
    margin: 0px auto;
    padding: 15px 10px;
  }
  header .header_inner h1 {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 1.2rem;
    height: auto;
    line-height: 1.6;
  }
  header .header_inner h1 img {
    max-width: 160px;
    margin-right: 0;
  }
  header .header_inner .header_catch {
    display: none;
  }
}


/* ==========================================================================
   3. 見出し（h2, h3）
   ========================================================================== */
h2.tit {
  text-align: center;
  margin: 0 auto;
  padding: 25px 20px;
  font-size: 3.4rem;
  color: #fff;
  background-color: #02A4AC;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  h2.tit {
    padding: 25px 20px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 640px) {
  h2.tit {
    padding: 15px 10px;
    font-size: 2.4rem!important;
    line-height: 1.5em;
  }
}

h3.form_tit {
  color: #fff;
  background-color: #F3A310;
  padding: 15px 20px 13px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  font-size: 2.4rem;
  margin-bottom: 25px;
  line-height: 1.25em;
}

h3.form_tit span.info {
  color: #faf3c3;
  margin-left: 30px;
  font-size: 1.6rem;
  line-height: 1.25em;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  h3.form_tit span.info {
    margin-left: 0;
    display: block;
  }
}

@media screen and (max-width: 640px) {
  h3.form_tit {
    padding: 10px;
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
    font-weight: bold;
  }
  h3.form_tit span.info {
    display: block;
    margin-left: 0;
    font-size: 1.2rem;
  }
}


/* ==========================================================================
   4. コンテンツエリア汎用設定（inquiry.css をベースに style.css 独自指定を追加）
   ========================================================================== */
.contentarea {
  background-color: #fff; /* style.css 独自 */
}

.contentarea_inner, .contentarea_inner_700 {
  width: 100%;
  max-width: 1000px;
  padding: 50px 0 0;
  margin: 0px auto 0px;
  box-sizing: border-box;
  font-size: 1.6rem; /* inquiry.css の指定 */
}
.contentarea_inner_700{
    max-width: 700px;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  .contentarea_inner, .contentarea_inner_700 {
    padding: 50px 20px 0;
  }
}

@media screen and (max-width: 640px) {
  .contentarea_inner, .contentarea_inner_700 {
    width: 100%;
    padding: 25px 10px 0;
    font-size: 1.4rem; /* style.css 独自 */
  }
}

/* --- style.css 独自スタイルの追加 --- */
.bg_blue {
  background-image: url(../images/lp/bg_blue_dot.png) !important;
}

.bg_grey {
  background-color: #e8edee !important;
}

.inner_bottom {
  padding-bottom: 50px !important;
}

.inner_bottom-non {
  padding-bottom: 0 !important;
}

.content_tit {
  margin-bottom: 80px;
}

h2.heading {
  position: relative;
  font-size: 4.6rem;
  line-height: 1.3;
  color: #2192b2;
  font-weight: bold;
  text-align: center;
}

h2.heading:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 50px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #2192b2;
}

h2.heading.txt_wh {
  color: #fff;
}

h2.heading.txt_wh:before {
  background: #fff;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  .content_tit {
    margin-bottom: 60px;
  }
  h2.heading {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 640px) {
  .content_tit {
    margin-bottom: 30px;
  }
  h2.heading {
    font-size: 2.2rem;
  }
}


/* ==========================================================================
   5. 各種コンポーネント（flow / document / securitylist など）
   ========================================================================== */
.flow {
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .document {
    display: none;
  }
  .booklet{
    display: none;
  }
}

/* セキュリティリスト（クラス分離・サイズ最適化） */
.securitylist {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding-bottom: 50px;
}

/* 共通のベーススタイル */
.security-ssl, .security-pmark {
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
  width: 50%; /* 左右に2分割 */
}

.security-ssl {
  margin-right: 40px;
}

/* SSLブロック：シールサイズ 115px に固定 */
.security-ssl .img {
  box-sizing: border-box;
  width: 115px;
  min-width: 115px; /* 横幅をキープ */
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.security-ssl .img a {
  display: block;
  font-size: 1.2rem;
  margin-top: 4px;
  white-space: nowrap;
}

/* Pマークブロック：マークサイズ 75px に固定 */
.security-pmark .img {
  box-sizing: border-box;
  width: 75px;
  min-width: 75px; /* 横幅をキープ */
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* テキスト：余白を自動で埋め、かぶらないようにする */
.security-ssl .txt, .security-pmark .txt {
  flex: 1; 
  font-size: 1.4rem;
  line-height: 1.5em;
  box-sizing: border-box;
  text-align: justify;
  margin-bottom: 0;
}

/* スマホ用（縦並び）設定 */
@media screen and (max-width: 640px) {
  .securitylist {
    display: block;
    padding-bottom: 25px;
  }
  .security-ssl, .security-pmark {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .security-pmark {
    margin-bottom: 0;
  }
  /* スマホ時はテキストの回り込みを防ぐため必要に応じて微調整 */
  .security-ssl .txt, .security-pmark .txt {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 640px) {
  .securitylist {
    display: block;
    padding-bottom: 25px;
  }
  .security {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .security:last-of-type {
    margin-bottom: 0;
  }
  .security .txt {
    max-width: 80%;
  }
}


/* ==========================================================================
   6. フッター（inquiry.css 優先 + style.css 独自指定を追加）
   ========================================================================== */
footer {
  background-color: #DEF9FA;
  color: #396769;
}

footer .fotter_inner {
  padding: 30px 0;
  width: 100%;
  max-width: 1000px;
  margin: 0px auto;
  box-sizing: border-box;
}

.foot_navi {
  display: flex;
  justify-content: space-between; /* 横いっぱいに均等配置 */
  width: 100%;
  max-width: 600px;              /* 幅を600pxに広げて崩れを防止 */
  margin: 0 auto 20px;
}

.foot_navi li {
  text-align: center;
  /* リストマーク（bg_foot_navi.png）を消したくない場合は、ここに list-style-image: url(../img/bg_foot_navi.png); を残してもOKです */
}

.foot_navi a {
  color: #396769;
  text-decoration: none;
  font-size: 1.4rem;
}

.foot_navi a:hover {
  opacity: 0.8;
}

.foot_navi i {
  margin-right: 3px;
  font-size: 1.4rem;
}

footer .copyright {
  text-align: center;
}

/* Page Top (inquiry.css 指定) */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  text-align: center;
}

#page-top a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#page-top a:hover {
  opacity: 0.7;
}

.arrow {
  display: block;
  position: relative;
  width: 28px;
  height: 24px;
  margin: 0 auto 6px;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 4px solid #02A4AC;
  border-left: 4px solid #02A4AC;
  transform: translateX(-50%) rotate(45deg);
}

.arrow::before { top: 0; }
.arrow::after { top: 10px; }

.text {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: bold;
  font-size: 11px;
  color: #02A4AC;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media screen and (max-width: 639px) {
  footer .fotter_inner {
    padding: 0;
    width: 100%;
    margin: 0 auto;
  }
  .foot_navi {
    display: block;
    text-align: center;
    margin: 0px auto;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .foot_navi li {
    list-style-image: none;
    padding: 10px;
    width: 100% !important;
    box-sizing: border-box;
    /* 下の点線が必要な場合は、inquiry.cssの border-bottom: #FFF 1px dotted; をここに追加してください */
  }
  footer .copyright {
    font-size: 8px;
    text-align: center;
    padding: 10px 0px;
  }
  #page-top {
    bottom: 55px;
    right: 10px;
    width: 50px;
  }
}

/* --- style.css 独自フッター指定（バッティングしないもの） --- */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #0067b2;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f062';
  font-size: 2.0rem;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.foot_navi i {
  margin-right: 3px;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px) {
  #security {
    padding: 0 15px;
    display: block;
  }
  #security .trust {
    width: 100%;
    margin-bottom: 15px;
  }
  #security .pmark {
    width: 100%;
  }
  #page_top {
    display: none !important;
  }
}


/* ==========================================================================
   7. フォーム関連（入力フォームテーブル・各入力要素）
   ========================================================================== */
.form_table {
  width: 100%;
  margin-bottom: 50px;
}

.form_table table,
.form_table td,
.form_table th {
  border-top: 1px solid #a9a6a4;
  border-bottom: 1px solid #a9a6a4;
  border-collapse: collapse;
  box-sizing: border-box;
  width: 100%;
}

.form_table th {
  width: 38%;
  text-align: left;
  background-color: #fdfcf3;
  padding: 20px 15px;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
  line-height: 1.5em;
  word-break: break-all;
}

.form_table th span {
  position: absolute;
  right: 15px;
  background-color: #666666;
  color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 0px 5px;
}

.form_table th span.required {
  background-color: #f7942b;
  color: #fff;
  border-radius: 5px;
  font-size: 1.4rem;
  padding: 0px 5px;
}

.form_table td {
  width: 62%;
  text-align: left;
  padding: 20px 15px;
  vertical-align: middle;
  box-sizing: border-box;
  word-break: break-all;
}

.any {
  background-color: #7cb578 !important;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  .form_table th {
    width: 100%;
    display: block;
    border-top: none;
    border-bottom: 1px solid #a9a6a4;
  }
  .form_table td {
    width: 100%;
    display: block;
    border: none;
  }
}

@media screen and (max-width: 640px) {
  .form_table {
    margin-bottom: 25px;
  }
  .form_table th {
    width: 100%;
    display: block;
    padding: 15px 10px;
    border-top: none;
    border-bottom: 1px solid #a9a6a4;
  }
  .form_table th span {
    right: 10px;
  }
  .form_table td {
    width: 100%;
    display: block;
    padding: 15px 10px;
    border: none;
  }
  /* radio/checkbox (sp) */
  .form_table ul.radio_check,
  .form_table ul.checkbox_check {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }
  .form_table ul.radio_check li,
  .form_table ul.checkbox_check li {
    width: 50%;
    margin-right: 0 !important;
  }
  .form_table ul.radio_check li {
    margin-bottom: 15px;
  }
  .form_table ul.radio_check li:last-of-type {
    margin-bottom: 0;
  }
}

/* radio 共通 */
.form_table ul.radio_check {
  display: flex;
  box-sizing: border-box;
  width: 100%;
}

ul.radio_check li {
  white-space: nowrap;
  width: 33%;
}

ul.radio_check input[type="radio"] {
  width: 25px;
  height: 25px;
  margin: 0px 5px 0px 0px;
  vertical-align: middle;
}

ul.radio_check label {
  display: block;
}

ul.radio_check label span {
  font-size: 1.2rem;
}

/* checkbox 共通 */
.form_table ul.checkbox_check {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
  row-gap: 15px;
}

ul.checkbox_check li {
  white-space: nowrap;
  width: 33%;
}

ul.checkbox_check li input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin: 0px 5px 0px 0px;
  vertical-align: middle;
}

ul.checkbox_check label {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
select,
.custom-select-selected {
  width: 100%!important;
  padding: 10px!important;
  border-radius: 10px!important;
  border: 1px #a9a6a4 solid!important;
  font-size: 1.4rem!important;
  box-sizing: border-box!important;
}
.custom-select-wrapper {
    position: relative;
}

.custom-select-selected {
    cursor: pointer;
    user-select: none;
}

.custom-select-selected:hover {
    background: #f5f5f5;
}

.custom-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #a9a6a4;
    border-top: none;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
}

.custom-option {
    padding: 8px;
    cursor: pointer;
    line-height: 1.6;
    border-bottom: 1px solid #eee;
}

.custom-option:hover {
    background: #e8f0fe;
}

.custom-option .option-line1 {
    font-weight: bold;
}

.custom-option .option-line2 {
    font-size: 0.85em;
    color: #666;
}

@media screen and (min-width:641px) and (max-width:768px) {
  .form_table ul.radio_check li,
  .form_table ul.checkbox_check li {
    width: 100%;
    margin-bottom: 15px;
  }
  .form_table ul.radio_check li:last-of-type,
  .form_table ul.checkbox_check li:last-of-type {
    margin-bottom: 0;
  }
  #tr_budget ul.radio_check {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 640px) {
  ul.checkbox_check li {
    font-size: 1.4rem;
  }
}

/* select */
select {
  padding: 10px;
  border-radius: 5px;
  border: 1px #a9a6a4 solid;
  font-size: 1.4rem;
  width: 30%;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../../main/chatform/form/img/bg_select.png);
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center right 10px;
  box-sizing: border-box;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  select { width: 100%; }
}

@media screen and (max-width: 640px) {
  select { width: 100%; }
}

/* 各フォーム個別 ID/クラス */
#tr_genre select { width: 51%; }
@media screen and (min-width:641px) and (max-width:1024px) { #tr_genre select { width: 100%; } }
@media screen and (max-width: 640px) { #tr_genre select { width: 100%; } }

@media screen and (max-width: 640px) {
  ul.checkbox_check_br li { width: 49%; }
}
@media screen and (max-width: 320px) {
  ul.checkbox_check_br li { width: 49%; font-size: 1.4rem; }
}

#tr_age ul.radio_check,
#tr_budget ul.radio_check {
  font-size: 1.4rem;
}
#tr_age li,
#tr_budget li {
  margin-right: 15px;
}
#tr_age li:last-of-type,
#tr_budget li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #tr_age ul.radio_check,
  #tr_budget ul.radio_check {
    font-size: 1.6rem;
  }
}

.form_table textarea {
  padding: 10px;
  width: 100%;
  font-size: 2rem;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px #a9a6a4 solid;
  height: auto;
  min-height: 100px;
}

#txt_list_open {
  font-size: 1.6rem;
  font-weight: bold;
  color: #003399;
  margin-bottom: 10px;
}
#txt_list_open:hover {
  text-decoration: underline;
}

/* ファイルアップロード */
/* ファイル選択の入力欄全体をinputと同じ形に整える */
input[type="file"].upload_file { /* 👈 IDを #upload_file に変更 */
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px #a9a6a4 solid;
  font-size: 1.4rem;
  box-sizing: border-box;
  background-color: #fff;
  cursor: pointer;
}

/* 左側の「ファイルを選択」ボタン部分だけのスタイル */
input[type="file"].upload_file::file-selector-button { /* 👈 IDを #upload_file に変更 */
  background-color: #f5f5f5;      
  color: #333;                   
  border: 1px solid #ccc;        
  border-radius: 4px;            
  padding: 4px 12px;             
  margin-right: 10px;            
  font-size: 1.4rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* ボタンにマウスを乗せたときの変化 */
input[type="file"].upload_file::file-selector-button:hover { /* 👈 IDを #upload_file に変更 */
  background-color: #e5e5e5;
}

/* フォーム内パーツ（名前・郵便番号など） */
.name { display: flex; box-sizing: border-box; width: 100%; }
.name_list { display: flex; box-sizing: border-box; margin-right: 10px; }
.name_list li { margin-right: 15px; }
.name_list li:last-of-type { margin-right: 0; }
.name .ex { display: flex; align-items: center; width: 30%; font-size: 1.4rem; }
.name_annotation { font-size: 1.4rem; margin-top: 10px; margin-bottom: 0; line-height: 1.25em; }

@media screen and (min-width:641px) and (max-width:1024px) {
  .name { display: block; width: 100%; margin-bottom: 0; }
  .name_list { width: 100%; margin-right: 0; margin-bottom: 10px; }
  .name_list li { width: 100%; }
  .name .ex { display: block; width: 100%; margin-bottom: 0; }
}

@media screen and (max-width: 640px) {
  .name { display: block; width: 100%; margin-bottom: 0; }
  .name_list { width: 100%; margin-right: 0; margin-bottom: 10px; }
  .name_list li { width: 100%; }
  .name_list .formErrorContent { width: 140px !important; }
  .name .ex { display: block; width: 100%; }
}

.add_title { margin-bottom: 5px; font-weight: bold; font-size: 1.4rem; }
.zip { width: 30% !important; }
.add_title span { font-weight: normal; }
.add_title span a { color: #f7942b; }
.add_annotation { font-size: 1.4rem; margin-top: 10px; margin-bottom: 0; line-height: 1.25em; }

.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.gap-2 { gap: 0.5rem !important; }

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

/* 予定地 */
.form_table ul.radio_check_plan { display: block; }
ul.radio_check_plan li { width: 100%; margin-bottom: 15px; }
ul.radio_check_plan li:last-of-type { margin-bottom: 0; }
.invisible { display: none; }
#other .caution {
  margin: 10px 0px 20px;
  background-color: #efece8;
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.caution .txt { font-size: 1.6rem; color: #c30506; line-height: 1.25em; margin: 0; }
.caution .txt_annotation { font-size: 1.2rem; color: #c30506; line-height: 1.25em; }

.btn { text-align: center; margin: 50px auto; }
@media screen and (max-width: 640px) {
  .btn { text-align: center; margin: 25px auto; }
}


/* ==========================================================================
   8. 各種ボタン（送信・確認・戻るボタン）
   ========================================================================== */
button.confirm {
  cursor: pointer;
  color: #FFF;
  box-sizing: border-box;
  width: 100%;
  max-width: 640px;
  padding: 0 10px;
  background: #F3A310;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 30px solid #F3A310;
  box-shadow: 0px 8px 0px 0px #9b670c;
  background-image: url(../img/img_formbtn-arrow.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 50%;
  text-decoration: none;
}

button.confirm .button {
  display: block;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 120%;
  padding: 0;
}

button.confirm .button .consent_txt {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 100%;
}

button.submit {
  cursor: pointer;
  color: #FFF;
  box-sizing: border-box;
  width: 100%;
  max-width: 450px;
  padding: 0 10px;
  background: #F3A310;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 20px solid #F3A310;
  box-shadow: 0px 8px 0px 0px #9b670c;
  background-image: url(../img/img_formbtn-arrow.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 50%;
  text-decoration: none;
}

button.submit .button {
  display: block;
  font-size: 3.6rem;
  font-weight: bold;
  background-image: url(../img/img_formbtn-free.png);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: left 50%;
  padding: 15px 0 15px 45px;
}

button.submit .button br.break {
  display: none;
}

button.submit .button_shiroari {
  font-size: 4.6rem;
  background-size: 80px;
}

button.close {
    cursor: pointer;
    color: #555;
    box-sizing: border-box;
    width: 100%;
    max-width: 200px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #555;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    text-decoration: none;
}

button.close .button {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 100%;
    padding: 15px 15px 15px;
}


/*スマホ用*/
@media screen and (max-width: 640px) {

    button.close .button {
        font-size: 1.6rem;
        padding: 15px 15px 15px;
    }
}

@media screen and (min-width:641px) and (max-width:1024px) {
  button.submit .button {
    line-height: 1.5em;
    background-size: 90px;
  }
  button.submit .button br.break {
    display: block;
  }
}

@media screen and (min-width:768px) and (max-width:1024px) {
  button.submit .button_shiroari {
    font-size: 4.8rem;
    background-size: 68px;
  }
}

@media screen and (min-width:641px) and (max-width:767px) {
  button.submit .button_shiroari {
    font-size: 3.8rem;
    background-size: 60px;
  }
}

@media screen and (max-width: 640px) {
  button.confirm {
    width: 100%;
    max-width: 100%;
    padding: 5px;
    border: 15px solid #F3A310;
  }
  button.confirm .button {
    font-size: 2.2rem;
    line-height: 1.5em;
  }
  button.confirm .button .consent_txt {
    font-size: 1.8rem;
  }
  button.submit {
    width: 100%;
    max-width: 100%;
    padding: 5px;
    border: 10px solid #F3A310;
  }
  button.submit .button {
    font-size: 3.6rem;
    line-height: 1.5em;
    background-size: 50px;
    padding: 10px 0 10px 25px;
  }
  button.submit .button br.break {
    display: block;
  }
  button.submit .button_shiroari {
    font-size: 2.8rem !important;
    background-size: 60px;
  }
}

@media screen and (max-width: 430px) {
  button.submit .button_shiroari {
    font-size: 2.2rem !important;
    background-size: 50px;
  }
}

@media screen and (max-width: 375px) {
  button.submit .button_shiroari {
    font-size: 2rem !important;
    background-size: 40px;
  }
}

@media screen and (max-width: 350px) {
  button.submit .button {
    font-size: 2.8rem;
    background-size: 40px;
    padding: 10px 0 10px 20px;
  }
}


/* ==========================================================================
   9. 利用規約・プライバシーポリシー
   ========================================================================== */
.privacy_terms p {
  text-align: center;
}

.privacy_terms .terms {
  width: 100%;
  box-sizing: border-box;
  line-height: 1.5em;
  color: #396769;
  height: 120px;
  margin: 10px 0 0;
  padding: 20px;
}

@media screen and (max-width: 640px) {
  .privacy_terms p {
    text-align: center;
    font-size: 1.2rem;
  }
}


/* ==========================================================================
   10. 店舗・ショップリスト
   ========================================================================== */
.shop_together_top {
  display: flex;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 25px 0;
  padding: 20px;
  border: #a9a6a4 solid 2px;
  background-color: #fdf4f4;
}
.shop_together_top:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #fdf4f4;
  z-index: 2;
}
.shop_together_top:after {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #a9a6a4;
  z-index: 1;
}

.shop_together_under {
  display: flex;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 25px 0 0;
  padding: 20px;
  border: #a9a6a4 solid 2px;
  background-color: #fdf4f4;
}
.shop_together_under:before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-bottom: 12px solid #fdf4f4;
  z-index: 2;
}
.shop_together_under:after {
  content: "";
  position: absolute;
  top: -29px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-bottom: 14px solid #a9a6a4;
  z-index: 1;
}

.shop_together_top .shopall_check,
.shop_together_under .shopall_check {
  box-sizing: border-box;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (max-width: 640px) {
  .shop_together_top .shopall_check,
  .shop_together_under .shopall_check {
    font-size: 1.8rem;
  }
}

.shopall_check input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin: 0px 5px 0px 0px;
  vertical-align: middle;
}

.shopall_check label {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #F3A310;
}

.shop_count {
  margin-left: auto;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop_count span {
  font-size: 2rem;
  font-weight: bold;
  color: #ef1736;
}

.shop_content {
  width: 100%;
  padding: 20px;
  margin-bottom: 25px;
  box-sizing: border-box;
  border: #a9a6a4 solid 2px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
}
.shop_content:last-of-type { margin-bottom: 0; }

.shop_name {
  padding: 10px 15px;
  background-color: #feefe7;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.shop_name input[type="checkbox"] {
  width: 30px;
  height: 30px;
  margin: 0px 10px 0px 0px;
  vertical-align: middle;
  float: left;
}
.shop_name label p {
  float: left;
  width: calc(100% - 40px);
  font-weight: bold;
  line-height: 30px;
}
.shop_name label {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}
.shop_name label:after {
  content: "";
  clear: both;
  display: block;
}
.shop_name a.txtlink {
  color: #F3A310;
  text-decoration: none;
}
.shop_name a.txtlink:hover { color: #255c94; }

.shop_detail {
  display: flex;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.shop_detail .shop_img {
  width: 26.2%;
  margin-right: 2.1%;
  box-sizing: border-box;
}
.shop_detail .shop_img .pic_area01 { margin-bottom: 4px; }
.shop_detail .shop_img .pic_area01 img.pic_item {
  width: 100%;
  max-height: 170px;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}
.shop_detail .shop_img .pic_area02 {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}
.shop_detail .shop_img .pic_area02 a.pic {
  margin-right: 4px;
  width: 50%;
}
.shop_detail .shop_img .pic_area02 img.pic_item {
  width: 100%;
  height: 100px;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}
.shop_detail .shop_img .pic_area02 a.pic:last-of-type { margin-right: 0; }

.shop_detail .shop_txt {
  width: 71.7%;
  line-height: 1.5em;
}
.shop_txt .catch {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 3px;
  margin-bottom: 5px;
  border-bottom: #a9a6a4 dotted 1px;
}
.shop_txt .description { padding-bottom: 10px; }

.wrap_shop-detail_btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
}
.shop-detail_btn { margin-right: 10px; }
.shop-detail_btn:last-of-type { margin-right: 0; }

.shop_btn {
  max-width: 150px;
  padding: 5px 10px 3px 35px;
  background-color: #f7942b;
  box-sizing: border-box;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0px 2px 0px 0px #d77a18;
  background-image: url(../img/icon_shop_btn.png);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 10px 50%;
}

ul.attached_image li { margin-bottom: 10px; }
ul.attached_image li:last-of-type { margin-bottom: 0; }

.compatible { margin-bottom: 15px; }
.compatible p {
  font-size: 2rem;
  font-weight: bold;
  color: #F3A310;
}
.compatible ul {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.compatible ul li {
  width: calc(17% - 2%);
  margin-right: 2%;
  margin-top: 4px;
  box-sizing: border-box;
}
.compatible ul li:nth-of-type(6n) { margin-right: 0; }

@media screen and (max-width: 640px) {
  .shop_together_top,
  .shop_together_under {
    display: block;
    margin: 15px 0;
    padding: 10px;
  }
  .shopall_check label {
    text-align: center;
    font-size: 1.8rem;
  }
  .shop_content {
    padding: 20px 10px;
    margin-bottom: 15px;
  }
  .shop_name { margin-bottom: 15px; }
  .shop_name label { font-size: 1.6rem; }
  .shop_detail { display: block; }
  .shop_detail .shop_img {
    width: 250px;
    margin: 0 auto 15px;
  }
  .shop_detail .shop_img .erase { display: none; }
  .shop_detail .shop_txt {
    width: 100%;
    line-height: 1.25em;
  }
  .shop_txt .catch { font-size: 1.4rem; }
  .shop_txt .description { font-size: 1.2rem; }
  .shop-detail_btn { text-align: center; }
  .shop_btn {
    max-width: 150px;
    text-align: center;
    margin: 0 auto;
  }
  .compatible p { font-size: 1.4rem; }
  .compatible ul li {
    width: calc(34% - 2%);
    margin-right: 2%;
  }
  .compatible ul li:nth-of-type(3n) { margin-right: 0; }
}


/* ==========================================================================
   11. 完了画面（サンクスページ）
   ========================================================================== */
.thanks {
  margin-bottom: 50px;
}
.thanks h3.txt_complete {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  color: #F3A310;
  margin-bottom: 10px;
}
.thanks h4 {
  font-size: 2rem;
  line-height: 1.25em;
  text-align: center;
  position: relative;
  padding: 0 55px;
  margin: 0 auto;
}
.thanks h4:before,
.thanks h4:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 18%;
  height: 1px;
  background-color: #a9a6a4;
}
.thanks h4:before { left: 0; }
.thanks h4:after { right: 0; }
.thanks br.break { display: none; }

.complete_description {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 50px;
}
.complete_description .description_txt {
  margin-right: 20px;
  box-sizing: border-box;
}
.description_txt .after {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.25em;
  color: #ef1736;
}
.description_txt .note {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.25em;
  padding-left: 1em;
  text-indent: -1em;
}
.complete_description .pr_bnr_side {
  max-width: 300px;
  width: 30%;
  box-sizing: border-box;
}

.thankscheck {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 25px;
}
.thankscheck .box {
  width: 29.6%;
  box-sizing: border-box;
  border: #a9a6a4 solid 2px;
}
.box h5.boxtitle {
  background-color: #F3A310;
  box-sizing: border-box;
  text-align: center;
  padding: 10px 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}
.box p.boxtxt {
  padding: 20px;
  box-sizing: border-box;
}
.thankscheck .flow_arrow {
  width: 5.6%;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 0 1.4%;
}
.flow_arrow .pc-tab { display: block; }
.flow_arrow .sp { display: none; }

.supplement {
  color: #ef1736;
  text-align: center;
  margin-bottom: 50px;
}

.pr_bnr_bottom { margin-bottom: 100px; }
.pr_bnr_bottom .pr_bnr_area {
  max-width: 728px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 25px;
}
.pr_bnr_bottom .pr_bnr_area:last-of-type { margin-bottom: 0; }
.pr_bnr_area p {
  max-width: 728px;
  margin: 15px auto 0;
  margin-bottom: 25px;
  text-align: left;
}
.pr_bnr_area p span.red {
  font-weight: bold;
  color: #ef1736;
}
.pr_bnr_area p .link {
  color: #3A8AC0;
  text-decoration: underline;
  margin-top: 5px;
  display: block;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  .thanks br.break { display: block; }
  .supplement {
    text-align: left;
    padding-left: 1em;
    text-indent: -1em;
  }
}

@media screen and (max-width: 640px) {
  .thanks { margin-bottom: 25px; }
  .thanks h3.txt_complete { font-size: 2.4rem; line-height: 1.25em; }
  .thanks h4 { font-size: 1.5rem; padding: 0 60px; }
  .thanks h4:before, .thanks h4:after { width: 13%; }
  .thanks br.break { display: block; }
  .complete_description { display: block; margin-bottom: 25px; }
  .complete_description .description_txt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .description_txt .after { font-size: 1.8rem; }
  .complete_description .pr_bnr_side {
    max-width: 300px;
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
  }
  .thankscheck { display: block; }
  .thankscheck .box { width: 100%; }
  .box h5.boxtitle {
    background-color: #F3A310;
    padding: 5px 10px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  .box p.boxtxt { padding: 10px; font-size: 1.4rem; }
  .thankscheck .flow_arrow {
    width: 15%;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
  }
  .flow_arrow .pc-tab { display: none; }
  .flow_arrow .sp { display: block; }
  .supplement {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 25px;
    padding-left: 1em;
    text-indent: -1em;
  }
  .pr_bnr_bottom { margin-bottom: 50px; }
}


/* ==========================================================================
   12. モーダルウィンドウ
   ========================================================================== */
#modal_close {
  font-size: 1.2rem;
  margin-top: 10px;
  cursor: pointer;
}

#modal-overlay {
  z-index: 4;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.75);
}

#modal-shop {
  background-color: #fff;
  position: absolute;
  width: 80%;
  height: 90%;
  margin: 0;
  padding: 0;
  z-index: 5;
  display: none;
  text-align: center;
}

#modal-shop iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#modal-shop #modal_close_box {
  position: absolute;
  bottom: 60px;
  width: 100%;
}

#modal-shop #modal_close_box #modal_close {
  padding: 15px;
  margin: 0 auto;
  width: 15%;
  background-color: #000;
  color: #fff;
  opacity: 0.7;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

@media screen and (max-width:640px) {
  #modal-shop {
    width: 100%;
    height: 100%;
  }
}


/* ==========================================================================
   13. 会社選択デザイン（202410 追加分）
   ========================================================================== */
.company_contents {
  display: flex;
  position: relative;
  width: 100%;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background-color: #fff;
  box-sizing: border-box;
}

.company_contents.ver-pickup {
  background-color: #F8F5EE;
}

.company_contents:last-child {
  border-bottom: 1px solid #CCC;
}

.pickup-company {
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
  height: 75px;
  overflow: hidden;
}

.pickup_txt {
  display: inline-block;
  position: absolute;
  padding: 5px 0 2px;
  left: -30px;
  top: 14px;
  width: 160px;
  text-align: center;
  font-size: 1.3rem;
  line-height: 16px;
  background: #E97028;
  color: #E3F216;
  letter-spacing: 0.05em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  box-shadow: 0 0 0 2px rgb(233, 112, 40);
  border-top: dashed 1px rgba(255, 255, 255, 1);
  border-bottom: dashed 1px rgba(255, 255, 255, 1);
}

.company_check {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6%;
  background-color: #F9F1F1;
  box-sizing: border-box;
}

.ver-pickup .company_check {
  background-color: #E97028;
}

.company_check input[type="checkbox"] {
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid #767676;
  margin: 0 7px;
  background-color: #fff;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.company_check input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 8px;
  transform: rotate(50deg);
  width: 8px;
  height: 16px;
  border-right: 3px solid #767676;
  border-bottom: 3px solid #767676;
  content: '';
}

.company_item {
  width: 94%;
  display: flex;
  padding: 15px;
  box-sizing: border-box;
}

.company_item_img {
  width: 23%;
  max-width: 120px;
  margin-right: 10px;
  box-sizing: border-box;
}

.company_item_img .company-img {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  font-family: 'object-fit: cover;'
}

.company_item_detail {
  width: 100%;
  box-sizing: border-box;
}

.company_item_detail h2 {
  color: #555;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
}

.ver-pickup .company_item_detail h2 {
  width: 80%;
}

.company_item_detail_info {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  box-sizing: border-box;
}

.normal_detail_info {
  width: 93%;
  margin-right: 1%;
}

.shop_part {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.shop_part li {
  width: 100%;
  max-width: 50px;
  list-style: none;
  margin-right: 8px;
}

.shop_part li img.part_icon {
  width: 100%;
  max-width: 50px;
}

.shop_part li:last-child {
  margin-right: 0;
}

.company_info-txt {
  width: 100%;
  margin-bottom: 3px;
}

.company_info-txt p {
  font-size: 1.6rem;
}

.company_info {
  display: flex;
  gap: 5px;
  align-items: flex-end;
  justify-content: flex-end;
  width: 6%;
  padding: 0;
  box-sizing: border-box;
}

.company_info .modallink {
  width: 100%;
  max-width: 35px;
  vertical-align: bottom;
  cursor: pointer;
  padding-top: 15px;
  z-index: 2;
}

@media screen and (min-width:641px) and (max-width:768px) {
  .pickup_txt {
    padding: 5px 2px 2px;
    left: -28px;
    top: 10px;
    font-size: 1.1rem;
  }
  .company_check input[type="checkbox"]:checked:before {
    top: 2px;
    left: 7px;
    width: 6px;
    height: 12px;
    border-right: 2px solid #767676;
    border-bottom: 2px solid #767676;
  }
  .company_check input[type="checkbox"] {
    width: 25px;
    height: 25px;
  }
  .company_item_detail h2 {
    font-size: 1.6rem;
  }
  .shop_part li {
    max-width: 44px;
    margin-right: 5px;
  }
  .shop_part li img.part_icon {
    max-width: 44px;
  }
  .company_info-txt p {
    font-size: 1.4rem;
  }
  .company_info .modallink {
    max-width: 28px;
  }
}

@media screen and (max-width: 640px) {
  .pickup_txt {
    padding: 4px 1px 1px 23px;
    left: -45px;
    top: 2px;
    width: 160px;
    font-size: 1rem;
    line-height: 14px;
  }
  .company_check input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  .company_check input[type="checkbox"]:checked:before {
    position: absolute;
    top: 0;
    left: 5px;
    width: 5px;
    height: 10px;
    border-right: 2px solid #767676;
    border-bottom: 2px solid #767676;
  }
  .company_item {
    padding: 10px;
  }
  .company_item_img {
    width: 45%;
    margin-right: 5px;
  }
  .company_item_detail h2 {
    font-size: 1.5rem;
  }
  .normal_detail_info {
    width: 94%;
  }
  .shop_part {
    width: 100%;
  }
  .company_info-txt {
    width: 100%;
  }
  .company_info-txt p {
    font-size: 1.3rem;
  }
  .company_info {
    width: 9%;
  }
  .company_info .modallink {
    max-width: 25px;
  }
  .shop_part li {
    max-width: 38px;
    margin-right: 5px;
    margin-top: 5px;
  }
  .shop_part li img.part_icon {
    max-width: 38px;
  }
}

@media screen and (max-width: 430px) {
  .company_check {
    width: 8%;
  }
  .company_check input[type="checkbox"] {
    margin: 0 5px;
  }
  .company_item_detail_info {
    margin-top: 0;
  }
  .normal_detail_info {
    width: 88%;
  }
  .shop_part {
    width: 100%;
  }
  .company_info-txt {
    width: 100%;
    margin-bottom: 1px;
  }
  .company_info-txt p {
    font-size: 1.3rem;
  }
  .company_info {
    width: 11%;
  }
  .company_info .modallink {
    max-width: 24px;
  }
}

@media screen and (max-width: 375px) {
  .shop_part li {
    max-width: 35px;
  }
  .shop_part li img.part_icon {
    max-width: 35px;
  }
  .normal_detail_info {
    width: 89%;
  }
  .shop_part {
    width: 100%;
  }
  .company_info-txt {
    width: 100%;
  }
  .company_info {
    width: 10%;
  }
  .company_info .modallink {
    max-width: 21px;
  }
}


/* ==========================================================================
   14. 利用規約・スクロール枠（202411 追加分）
   ========================================================================== */
.agreement {
  box-sizing: border-box;
  height: 180px;
  width: 100%;
  overflow-y: scroll;
  border: 1px solid #ccc;
  font-size: 1.2rem;
  padding: 20px;
}

.agreement p {
  text-align: left;
}

.agreement dt {
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.agreement ul {
  list-style-position: inside;
}

.agreement li {
  text-indent: -1em;
  padding-left: 1em;
}

.agreement dl {
  margin-bottom: 2em;
}

.privacy_terms > p {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 640px) {
  .privacy_terms > p {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  button.submit .button {
    font-size: 2.2rem;
  }
}


/* ==========================================================================
   15. 注意喚起・外壁塗装用・その他（202412〜202501 追加分）
   ========================================================================== */
.comfirm_headsup {
  padding: 15px;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  margin-bottom: 20px;
}
.comfirm_headsup p {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

.inquiry_headsup {
  padding: 15px;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
}
.inquiry_headsup p {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.8;
}

.btn.btn_bottom0 {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 640px) {
  .comfirm_headsup p,
  .inquiry_headsup p {
    font-size: 1.4rem;
    text-align: left;
  }
}

/* 外壁塗装用 (202501) */
.header_innert_wall {
  justify-content: center !important;
  align-items: center !important;
}

.form_tit_wall {
  text-align: left !important;
  line-height: 1.5 !important;
}

.form_table th em {
  display: inline-block;
  padding-left: 1em !important;
  text-indent: -1em !important;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #ec131d;
}

.bnr_subsidy {
  max-width: 250px;
}

@media screen and (max-width: 1024px) {
  .header_innert_wall {
    display: flex !important;
  }
  h1.h1_wall {
    margin: 0 !important;
  }
  .bnr_subsidy {
    display: block !important;
  }
  .form_table th em br {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .bnr_subsidy {
    max-width: 150px;
  }
  .form_table th em {
    font-size: 1.2rem;
  }
}

button.twlf_request .button {
  display: block;
  font-size: 3.6rem;
  font-weight: bold;
  background-image: url(../img/img_formbtn-free.png);
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: left 50%;
  padding: 15px 0 15px 45px;
}

button.twlf_request {
  cursor: pointer;
  color: #FFF;
  box-sizing: border-box;
  width: 100%;
  max-width: 850px;
  padding: 0 10px;
  background: #c30506;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border: 30px solid #c30506;
  box-shadow: 0px 8px 0px 0px #710000;
  background-image: url(../img/img_formbtn-arrow.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right 50%;
  text-decoration: none;
}
button.twlf_request .button br.break {
  display: none;
}


/* ==========================================================================
   16. キャッシュバック・流れ・注意事項等独自指定（style.css より統合）
   ========================================================================== */
.cashback_about {
  margin-bottom: 50px;
  box-sizing: border-box;
}

.about_tit {
  border-bottom: 2px solid #d7d7d7;
  font-weight: bold;
  padding: 15px;
  line-height: 1;
  margin-bottom: 15px;
  padding-left: 15px;
  font-size: 2.6rem;
  position: relative;
}
.about_tit::before {
  position: absolute;
  top: calc(10px / 2);
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 5px;
  height: calc(100% - 10px);
  content: "";
  border-radius: 2px;
  background-color: #F3A310;
  margin-right: 10px;
}

.cashback_about p {
  font-size: 1.6rem;
  line-height: 1.8;
}
.cashback_about .red {
  font-weight: bold;
  color: #e21212;
}
.cashback_about .bold{
    font-weight: bold;
}

.indent_cashback {
  padding-left: 1em !important;
  text-indent: -1em !important;
  margin-bottom: 3px !important;
  font-size: 1.6rem !important;
}
.indent_cashback:last-of-type {
  margin-bottom: 0 !important;
}

.cashback_about_sub {
  margin-top: 20px;
}
.cashback_about_sub h4 {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
}
.cashback_about_sub h4::first-letter {
  color: #02A4AC;
  margin-right: 7px;
}
.cashback_about_sub p {
  font-size: 1.6rem;
  margin-top: 6px;
}

@media screen and (min-width:641px) and (max-width:1024px) {
  .cashback_about h3.about_tit { font-size: 2rem; }
}

@media screen and (max-width: 640px) {
  .cashback_about { margin-bottom: 30px; }
  .cashback_about h3.about_tit { font-size: 1.6rem; margin-bottom: 10px; }
  .cashback_about p { font-size: 1.4rem; }
  .indent_cashback { font-size: 1.4rem !important; }
  .cashback_about_sub h4 { font-size: 1.4rem; font-weight: bold; }
  .cashback_about_sub p { font-size: 1.4rem; }
}

/* ボタン */
.btn_cashback {
  text-align: center;
  margin: 30px auto;
}
.btn_cashback a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding: 1em 2em;
  max-width: 500px;
  color: #fff;
  font-size: 2.6rem;
  background-color: #d03b3b;
  border-radius: 50vh;
}
.btn_cashback a::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.btn_cashback a:hover {
  text-decoration: none;
  background-color: #a20b0b;
}
.btn_cashback a span {
  text-align: center;
  margin: 0 auto;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  .btn_cashback a { font-size: 1.8rem; }
}

/* 表 */
table.cashback_sum {
  border-collapse: collapse;
  width: 80%;
  margin: 50px auto;
}
.cashback_sum th,
.cashback_sum td {
  font-size: 2rem;
  font-weight: unset;
  padding: 15px;
  border: solid 1px #ccc;
  text-align: left;
  box-sizing: border-box;
}
.cashback_sum th {
  text-align: center !important;
  color: #fff;
}
.bonus-style th,
.bonus-style td {
    width: 50%;
    vertical-align: middle;
}
table.cashback_sum.bonus-style th {
    background: #FAFAFA;
    color: #333333;             /* 文字色も黒（ダークグレー）に変更 */
    text-align: left !important; /* 元のセンター寄せを、スクショ通りの左寄せに上書き */
}
.bonus-style .bonus-table__highlight {
    font-weight: 700;
}
 .sp_only{
    display: none;
 }

@media screen and (min-width:641px) and (max-width:1024px) {
  table.cashback_sum { width: 100%; }
  table.cashback_sum th, table.cashback_sum td { font-size: 1.8rem; }
}
@media screen and (max-width: 640px) {
  table.cashback_sum { width: 100%; margin: 30px auto; }
  table.cashback_sum th, table.cashback_sum td {
    font-size: 1.6rem;
    border-bottom: none;
    text-align: center;
  }
  .cashback_sum tr:last-child { border-bottom: solid 1px #ccc; }
  .sp_only{
    display: block;
  }
}

/* ご応募の流れ */
ol.flowlist {
  list-style: none;
  counter-reset: number;
}
ol.flowlist li {
  position: relative;
  padding-left: 3.2rem;
  margin-bottom: 15px;
}
ol.flowlist li span {
  font-size: 2rem;
  font-weight: bold;
}
ol.flowlist li:last-of-type { margin-bottom: 0; }
ol.flowlist li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 3px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #02A4AC;
  color: white;
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 640px) {
  ol.flowlist li span { font-size: 1.4rem; }
  ol.flowlist li::before {
    top: -1px;
    width: 23px;
    height: 23px;
    font-size: 14px;
    line-height: 1.3;
  }
}

/* 注意事項 */
ul.wrap_note_list { padding-left: 20px; margin-bottom: 5px; }
li.note_list {
  font-size: 1.6rem;
  list-style: none;
  width: 100%;
  text-indent: -2.4rem;
  line-height: 1.5;
  white-space: normal;
  margin-bottom: 15px;
}
li.note_list .blodred { font-weight: bold; }
li.note_list:before {
  content: "◆";
  margin-right: 7px;
  color: #02A4AC;
}
li.note_list:last-of-type { margin-bottom: 0; }

ul.wrap_inner_detail { padding-left: 20px; margin-top: 15px; margin-bottom: 5px; }
li.inner_detail {
  font-size: 1.6rem;
  list-style: none;
  width: 100%;
  text-indent: -1.8rem;
  line-height: 1.5;
  white-space: normal;
  margin-bottom: 10px;
}
li.inner_detail:before {
  content: "●";
  margin-right: 5px;
  color: #02A4AC;
  font-size: 10px;
  width: 20px;
  height: 20px;
  position: relative;
  bottom: 2px;
}
li.inner_detail:last-of-type { margin-bottom: 0; }

.companyinfo {
  padding: 10px;
  margin-top: 5px;
  background-color: #fafafa;
  box-sizing: border-box;
}
.companyinfo p { font-size: 1.5rem; }

@media screen and (max-width: 640px) {
  li.note_list { font-size: 1.4rem; text-indent: -1.5em; }
  li.inner_detail { font-size: 1.2rem; }
  li.inner_detail:before { bottom: 1px; }
  .companyinfo p { font-size: 1.3rem; }
}


/* ==========================================================================
   17. 土地活用新規スタイル（style.css独自 241220）
   ========================================================================== */
.fv {
  width: 100%;
  background-image: url(../../img/index/fv_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
}

.fv__inner {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.fv__img_wrap { display: block; }
.fv__img_wrap img {
  height: 360px;
  object-fit: cover;
  object-position: center;
}

@media (width > 1440px) {
  .fv__inner { max-width: 1150px; }
  .fv__img_wrap img { height: 500px; }
}
@media (width < 480px) {
  .fv__img_wrap img { height: 270px; }
}

.cta_area {
  background-color: #02A4AC;
  padding: 30px 0 30px 0;
  width: 100%;
  cursor: default;
  position: relative;
}
/* 親要素：下部に三角形の高さ分の余白を確保 */
.cta_area.thanks {
  position: relative;
  margin-bottom: 60px; /* 三角形の下に続くコンテンツとの余白（数値はお好みで） */
}

/* 疑似要素で、エリアの幅いっぱいの逆三角形（V字）を作成 */
.cta_area.thanks::after {
  content: "";
  position: absolute;
  bottom: -49px;      /* 三角形の縦の「高さ」分だけ下に突き出させる */
  left: 0;
  width: 100%;        /* cta_areaの横幅とまったく同じ幅 */
  height: 50px;       /* 三角形の縦の「高さ」（もっと深く尖らせたい場合は数値を大きく） */
  
  /* cta_areaと同じ背景色 */
  background-color: #02A4AC; 
  
  /* エリアの下辺全体（左端・右端）から、中央最下点に向かってV字に切り抜く */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  
  z-index: 10;
}
.cta_area h2 {
  width: 100%;
  cursor: default;
  position: relative;
  text-align: center;
  margin: 0 auto;
  font-size: 3.4rem;
  color: #fff;
}
.cta_area_inner{
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
}
.cta_area p {
  color: #fff;
  font-size: 1.6rem;
}

.cta_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 40px auto;
}

.cta__link {
  width: 90%;
  height: 106px;
  max-width: 400px;
  background-color: #F3A310;
  border: 5px solid white;
  border-radius: calc(infinity * 1px);
  color: white;
  display: flex;
  box-shadow: 5px 6px 6px -3px rgba(119, 119, 119, 0.3);
  padding: 0 25px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  position: relative;
  transition: .3s ease-in-out;
}
.cta__link:hover {
  transform: scale(1.07);
  transition: .3s ease-in-out;
}

.cta__illust {
  height: 100%;
  flex-basis: 77px;
  animation-name: sway;
  animation-duration: 2.2s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes sway {
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

.cta__txt {
  flex-basis: auto;
  font-size: 2rem;
  font-weight: bold;
  display: block;
}
.cta__txt::after {
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  content: "";
  border-right: 3px white solid;
  border-bottom: 3px white solid;
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  right: 30px;
}

.cta__bubble {
  width: 70%;
  max-width: 280px;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: shake 0.66s infinite alternate ease-in-out;
}

@keyframes shake {
  0% { transform: translate(-50% , 0); }
  100% { transform: translate(-50% , -5px); }
}

@media (width < 480px) {
  .cta_area { padding: 42px 0; }
  .cta__link {
    height: 86px;
    box-shadow: 2px 3px 3px -1.5px rgba(119, 119, 119, 0.3);
    border: 5px solid white;
    max-width: 337.5px;
  }
  .cta__txt { font-size: 1.8rem; }
  .cta__illust { flex-basis: 74px; }
  .cta__txt::after { width: 10px; height: 10px; right: 18px; }
  .cta__bubble { max-width: 240px; top: 14px; }
}

@media (width < 362px) {
  .cta_area { padding: 47px 0 15px 0; }
  .cta__bubble { top: 10px; }
}

/* ＝＝＝＝＝＝＝メッセージ枠＝＝＝＝＝＝＝＝ */

.chat_msg {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 10px;
}

.chat_msg .img_chara {
    width: 70px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.chat_msg .name_chara {
    font-size: 1.2rem;
    margin-top: 5px;
    text-align: center;
}

.chat_msg .name_break {
    display: none;
}

.chat_msg .msg_chara {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex: 1;
}

.chat_msg .msg_chara .balloon_msg {
    position: relative;
    padding: 10px 12px;
    background-color: #FFF;
    border: 1px solid #dae0dd;
    width: auto;
    max-width: 696px;
    border-radius: 22px;
}

.msg_name_wrap {
    width: 100%;
    font-size: 1.2rem;
    margin-bottom: 3px;
}

/*タブレット用*/
@media screen and (min-width:641px) and (max-width:768px) {
    .chat_msg .name_break {
        display: block;
    }
}

/*スマホ用*/
@media screen and (max-width: 640px) {
    .chat_msg .img_chara {
        width: 60px;
    }

    .chat_msg .name_chara {
        font-size: 1rem;
    }

    .chat_msg .name_break {
        display: block;
    }

    .chat_msg .msg_chara .balloon_msg:before {
        top: 22%;
    }

    .chat_msg .msg_chara .balloon_msg:after {
        top: 22%;
    }
}

/* ===== スピナー：くるくる回る円形（デフォルト）===== */
@keyframes ov-spin {
  to { transform: rotate(360deg); }
}
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--spinner-light);
  border-radius: 50%;
  animation: ov-spin 0.8s linear infinite;
}
.spinner--dark {
  border-color: rgba(37, 99, 235, 0.2);
  border-top-color: var(--spinner-dark);
}
.spinner span { display: none; }

/* ===== 全画面オーバーレイ ===== */
.ov-full {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ov-full.is-show {
    display: flex;
}