@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定*/
  font-family: Meiryo, "メイリオ", sans-serif;
  font-weight: normal;
  color: #000;
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}

a:link,
a:visited {
  color: #39f;
}

a:hover,
a:active {
  color: #f60;
}

/*ブラウザのCSSをリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}

/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}

/*--------------------------------------------------
見出しタグ設定（PC）
-----------------------------------------------------*/
h2 {
  margin: 0.5em 0em;
  font-size: 2em;
  font-weight: 900 !important;
  text-align: center;
}

h3 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.6em;
  font-weight: bold;
  border-left: 8px solid #10559A;
  border-bottom: 1px dotted #10559A;
}

h4 {
  margin: 0.5em 0em;
  padding: 0.3em 0.6em;
  font-size: 1.4em;
  border: 1px solid #ccc;
  font-weight: bold;
}

h5 {
  margin: 0.5em 0em;
  padding: 0.1em;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}

/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #f2f2f2;
}

/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 2em;
  /*=16px*/
}

/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

/*カラム全体の幅を変更する*/
.article,
.top_image_in {
  width: 950px;
  margin: 0 auto;
  /*真ん中に要素を置きたいときに使う*/
}

/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
.main-header {
  background-color: #fff;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.header-inner {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 70px;
}

.header-logo img {
  height: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
  margin: 0 70px 0 0;
}

.header-buttons {
  display: flex;
  gap: 5px; /* ←←← ここでボタンの間隔を指定 */
}

.header-buttons img,
.header-line img,
.header-mail img {
  height: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}
/* === スマホ用レスポンシブ === */
@media screen and (max-width: 768px) {
  .header-inner {
    max-width: 768px;
    width: 100%;
    height: 50px;
    margin: 0 auto;
    padding: 0 10px;
  }

  .header-logo img,
  .header-line img,
  .header-mail img {
    max-height: 50px;
    width: 100%;
  }

  .header-inner {
    gap: 5px;
  }
}



/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: url("../images/top_image_back.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
}

.top_image_in img {
  width: 100%;
  display: block;
}

/* スマホ用画像に切り替え（最大幅767px以下） */
@media screen and (max-width: 767px) {
  .top_image_in img {
    content: url("../images/fv_sp.jpg");
  }
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.seciton_01 {
  padding: 1.5em 3em;
}

.sec_02 {
  background-color: #ccc;
  padding: 1.5em 3em;
}

.section_03 {
  padding: 1.5em 3em;
}


/*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
ul.checklist {
  background-color: #fff;
  border: 1px solid #ccc;
  list-style: none;
  padding: 1em;
}

ul.checklist li {
  background-image: url("../images/icon-check03-red.png");
  background-repeat: no-repeat;
  background-size: 3.5%;
  padding-left: 1.8em;
  margin-bottom: 0.8em;
}

ul.checklist li:last-child {
  margin-bottom: 0em;
}

/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
table {
  width: 100%;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  margin: 1em 0em;
}

th,
td {
  padding: 0.5em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: center;
}

td {
  background-color: #fff;
  text-align: left;
}

/*スマホでは行が列になるテーブルタグ*/
.table_style_01 {
  text-align: left;
  vertical-align: middle;
}

/*--------------------------------------------------
フォーム設定
-----------------------------------------------------*/
.mailform {
  background-color: #fff;
  margin-bottom: 1em;
  padding: 1em 0em 1.5em;
  box-shadow: 0px 0px 1px #000;
}

.input {
  padding: 0 2em;
}

.input_style {
  background-color: #FFFBF0;
  width: 100%;
  height: 60px;
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 1.4em;
}

input[type="image"] {
  width: 100%;
}

.caution {
  text-align: center;
  font-size: 0.8em;
  color: #F00;
}

/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.box_qa {
  background-color: #efefef;
  padding: 1em;
}

.box_qa_q {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
  border-bottom: 1px solid #ccc;
  font-size: 1.2em;
  font-weight: bold;
  color: #D10003;
}

.box_qa_a {
  background-color: #fff;
  padding: 1em 2em 1em 3em;
}

.box_qa_q p,
.box_qa_a p {
  text-indent: -2em;
}

/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  background-color: #105FA3;
  padding: 1em 3em;
}

.area_cta_inr {
  background-color: #fff;
  padding: 1em 2em;
  overflow: auto;
}

.area_cta_inr_left {
  float: left;
  width: 48%;
}

.area_cta_inr_right {
  float: right;
  width: 48%;
}

/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #105FA3;
  padding: 2em 0em;
  text-align: center;
  font-size: 16px;
  color: #fff;
}

.footer a {
  color: #fff;
}


.image-cta-section {
  padding: 10px 10px 40px;
  background-color: #DFF8FD;
  display: flex;
  justify-content: center;
}

.image-cta-box {
  background-color: #ffffff;
  border-radius: 12px;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px 10px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.cta-main-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

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

.cta-button-img {
  width: 350px;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .cta-button-img {
    width: 100%;
    max-width: 350px;
  }

  .cta-main-image {
    margin-bottom: 10px;
  }


  .image-cta-box {
    font-size: 16px;
    padding: 20px 5px;

  }
}

.nayami-section {
  padding: 40px 0px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.nayami-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.nayami-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .nayami-section {
    padding: 30px 5px;
  }
}

.kaiketsu-section {
  padding: 40px 10px;
  background-color: #f8fbff;
  display: flex;
  justify-content: center;
}

.kaiketsu-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.kaiketsu-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .kaiketsu-section {
    padding: 30px 5px;
  }
}

.kodawari-title-section {
  padding: 40px 10px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.kodawari-title-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.kodawari-title-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .kodawari-title-section {
    padding: 30px 5px 15px;
  }
}

.kodawari-item-section {
  padding: 40px 10px;
  background-color: #f8fbff;
  display: flex;
  justify-content: center;
}

.kodawari-item-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 15px;
  max-width: 800px;
  width: 100%;
  text-align: left;
}

.kodawari-image {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: 8px;
}

.kodawari-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.kodawari-text strong {
  color: #0066c2;
  font-weight: bold;
}

@media (max-width: 480px) {
  .kodawari-item-box {
    padding: 20px 10px;
  }

  .kodawari-text p {
    font-size: 15px;
  }
}

.bunkai-section {
  padding: 40px 10px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.bunkai-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  width: 100%;
  padding: 30px 20px;
  text-align: left;
}

.bunkai-title-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.bunkai-text p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.8;
  margin: 0 0 20px;
}

.bunkai-text strong {
  color: #0066c2;
  font-weight: bold;
}

.voice-list {
  list-style-type: "▶ ";
  padding-left: 1.2em;
  margin: 20px 0;
}

.voice-list li {
  margin-bottom: 8px;
  font-size: 1.0em;
  color: #444;
}

@media (max-width: 480px) {
  .bunkai-box {
    padding: 20px 5px;
  }

  .bunkai-text p,
  .voice-list li {
    font-size: 18px;
  }
}

.kodawari-item-section {
  padding: 20px 5px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.kodawari-item-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 15px;
  max-width: 800px;
  width: 100%;
  text-align: left;
}

.kodawari-image {
  width: 100%;
  height: auto;
  margin-bottom: 24px;
  border-radius: 8px;
}

.kodawari-text p {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.kodawari-text strong {
  color: #0066c2;
  font-weight: bold;
}

@media (max-width: 480px) {
  .kodawari-item-box {
    padding: 20px 5px;
  }

  .kodawari-text p {
    font-size: 18px;
  }
}

.anshin-image-section {
  padding: 40px 5px;
  background-color: #f8fbff;
  display: flex;
  justify-content: center;
}

.anshin-inner {
  width: 100%;
  text-align: center;
}

.anshin-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .anshin-image-section {
    padding: 30px 5px;
  }
}

.gijutsu-section {
  padding: 40px 10px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.gijutsu-inner {
  width: 100%;
  text-align: center;
}

.gijutsu-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .gijutsu-section {
    padding: 30px 5px;
  }
}

.jijitsu-section {
  padding: 40px 20px;
  background-color: #f8fbff;
  display: flex;
  justify-content: center;
}

.jijitsu-inner {
  width: 100%;
  text-align: center;
}

.jijitsu-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .jijitsu-section {
    padding: 30px 5px;
  }
}

.bf-section {
  padding: 40px 10px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.bf-inner {
  width: 100%;
  text-align: center;
}

.bf-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .bf-section {
    padding: 30px 5px;
  }
}

.reason-section {
  padding: 40px 5px;
  background-color: #f8fbff;
  display: flex;
  justify-content: center;
}

.reason-inner {
  width: 100%;
  text-align: center;

}

.reason-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .reason-section {
    padding: 30px 5px;
  }
}


.biz-aircon-section {
  padding: 10px 5px 50px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.biz-frame {
  border: 15px solid #39B54A;
  /* 緑の太枠 */
  border-radius: 10px;
  padding: 30px 15px;
  max-width: 800px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

.biz-header-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -45px;
  margin-bottom: 20px;
}

.biz-text p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.biz-text strong {
  color: #27ae60;
  font-weight: bold;
  margin-bottom: 20px;
}

.biz-extra-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .biz-frame {
    border: 10px solid #39B54A;
    /* 緑の太枠 */
    ;
    padding: 20px 5px;
  }

  .biz-text p {
    font-size: 1.0em;
  }

  .biz-header-image img {
    margin-top: -25px;
    margin-bottom: 20px;
  }
}

.price-type-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 30px;
}

.price-type-image {

  text-align: center;
}

.price-type-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 6px;
}

.price-type-content {
  flex: 2 1 50px;
}

.price-title {
  font-size: 1.2em;
  color: #27ae60;
  margin-bottom: 10px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1em;
}

.price-table th,
.price-table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}

.price-table th {
  background-color: #eaffea;
  color: #2c7c46;
}

.price-table td {
  background-color: #fff;
}

@media (max-width: 600px) {
  .price-type-box {
    flex-direction: column;
    align-items: center;
  }

  .price-title {
    text-align: center;
  }

  .price-table {
    font-size: 0.9em;
  }
}

.highlight-price {
  color: #d90000;
  /* 赤字 */
  font-size: 1.4em;
  font-weight: bold;
  background-image: linear-gradient(transparent 60%, #ffeb3b 60%);
  /* 黄色のアンダーライン風 */
  display: inline-block;
  padding: 2px 4px;
}

.biz-discount-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.special-fee-section {
  margin-top: 10px;
}

.special-fee-title {
  font-size: 20px;
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 10px;
}

.special-fee-intro {
  font-size: 1em;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.special-fee-list {
  border-top: 1px solid #ccc;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  font-size: 18px;
  line-height: 1.6;
  flex-wrap: wrap;
}

.fee-price {
  color: #d90000;
  font-weight: bold;
  margin-left: 10px;
}

@media (max-width: 600px) {
  .fee-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .fee-price {
    margin-left: 0;
    margin-top: 5px;
  }
}

.comparison-title-section {
  padding: 20px 20px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.comparison-title-inner {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.comparison-title-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .comparison-title-section {
    padding: 5px 15px 0px;
  }
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  min-width: 120px;
  max-width: 160px;
  word-break: break-word;
  white-space: normal;
  text-align: left;
}

.comparison-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: Meiryo, "メイリオ", sans-serif;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1em;
  background-color: #fff;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px 10px;
  vertical-align: top;
}

.comparison-table th {
  background-color: #f0f8f0;
  font-weight: bold;
  text-align: center;
}

.comparison-table .ours {
  background-color: #e9fbe9;
  color: #2c7c46;
}

.comparison-table .others {
  background-color: #fdfdfd;
  color: #666;
}

.comparison-table td.price {
  font-weight: bold;
  color: #d90000;
  text-align: center;
}

.symbol-notes {
  margin-top: 15px;
  font-size: 13px;
  color: #555;
  text-align: center;
}

.comparison-scroll {
  width: 100%;
  overflow-x: auto;
}

.comparison-table {
  min-width: 700px;
  /* 横幅が超える場合にスクロール発生 */
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  background-color: #fff;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #ddd;
  padding: 12px 10px;
  vertical-align: middle;
  text-align: center;
}

/* 1列目（項目）は幅を確保＋折り返しあり */
.comparison-table th:first-child,
.comparison-table td:first-child {
  min-width: 140px;
  max-width: 180px;
  word-break: break-word;
  white-space: normal;
  text-align: center;
  /* ←ここも中央寄せに変更 */
}

@media (max-width: 768px) {

  .comparison-table th,
  .comparison-table td {
    font-size: 1.1em;
    padding: 10px 6px;
  }

  .comparison-table-wrapper {
    padding: 10px 15px 50px;
  }
}

.styled-faq-section {
  background: #fff;
  padding: 40px 10px;
}

.styled-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

/* ====== 質問ブロック ====== */
.styled-faq-item {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.styled-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: #e74c3c;
  color: #fff;
  font-size: 1.0em;
  font-weight: bold;
  padding: 15px 20px;
  border: none;
  width: 100%;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
}

/* Qマーク */
.styled-faq-question .q-icon {
  background: #fff;
  color: #e74c3c;
  font-weight: bold;
  width: 26px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  font-size: 1.0em;
  flex-shrink: 0;
}

/* 質問文 */
.styled-faq-question .question-text {
  flex: 1;
  text-align: left;
}

/* ＋− アイコン */
.styled-faq-question .toggle-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* ====== 回答ブロック ====== */
.styled-faq-answer {
  display: none;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
  padding: 20px;
  font-size: 1.0em;
  color: #333;
  line-height: 1.7;
  border-radius: 0 0 4px 4px;
}

/* Aマーク */
.styled-faq-answer .a-icon {
  display: inline-block;
  font-weight: bold;
  font-size: 17px;
  color: #000;
  margin-right: 8px;
}

.voice-section {
  background-color: #f8f8f8;
  padding: 30px 10px;
}

.voice-header {
  text-align: center;
  margin-bottom: 40px;
}

.voice-title-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.voice-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.voice-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.voice-name {
  font-weight: bold;
  color: #444;
  margin-bottom: 12px;
}

.voice-comment {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

.testimonial-wrap {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 0 15px;
}

.testimonial-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 40px;
}

.testimonial-box.reverse {
  flex-direction: row-reverse;
}

.testimonial-icon {
  flex-shrink: 0;
}

.testimonial-icon img {
  width: 80px;
  height: auto;
  border-radius: 50%;
}

.testimonial-content {
  background: #fffdf5;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px 10px;
  position: relative;
  flex: 1;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  border: 10px solid transparent;
  border-right-color: #e0e0e0;
}

.testimonial-box.reverse .testimonial-content::before {
  left: auto;
  right: -10px;
  border-right-color: transparent;
  border-left-color: #e0e0e0;
}

.testimonial-content::after {
  content: "";
  position: absolute;
  top: 21px;
  left: -8px;
  border: 9px solid transparent;
  border-right-color: #fffdf5;
}

.testimonial-box.reverse .testimonial-content::after {
  left: auto;
  right: -8px;
  border-right-color: transparent;
  border-left-color: #fffdf5;
}

.testimonial-name {
  text-align: right;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.0em;
  color: #555;
}

.company-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.map-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
}

.company-info table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  line-height: 1.8;
  background: #fff;
}

.company-info th,
.company-info td {
  border: 1px solid #ccc;
  padding: 10px;
  vertical-align: top;
}

.company-info th {
  width: 150px;
  background: #f8f8f8;
  font-weight: bold;
  text-align: left;
}

/* Responsive */
@media screen and (max-width: 768px) {
  
  
  .section-title {
    font-size: 1.7em;
  }

  .company-info th {
    width: 100px;
    font-size: 13px;
  }

  .company-info td {
    font-size: 14px;
  }
}

/*--------------------------------------------------
セミナー
-----------------------------------------------------*/

.fv-section {
  width: 100%;
  max-width: 1080px;
  background-color: fff;
  margin: 0 auto;
  padding: 0 15px;
}

.fv-section picture img {
  width: 100%;
  height: auto;
  display: block;
}

.story-section {
  max-width: 800px;
  width: 100%;
  background-color: #f9f9f9;
  margin: 0 auto;
  padding: 60px 20px;
}

.story-inner {
  max-width: 950px;
  margin: 0 auto;
}

/* ===== 見出し ===== */
.story-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.4;
}

.highlight-red {
  color: #e63946;
  font-weight: bold;
}

/* ===== リード文（冒頭メッセージ） ===== */
.lead-text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 30px 0;
}

/* ===== 通常段落 ===== */
.story-inner p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* ===== 情報強調ボックス ===== */
.info-box {
  background: #fff8e1;
  border-left: 6px solid #f9a825;
  padding: 15px 20px;
  margin: 30px 0;
  font-weight: bold;
  font-size: 18px;
}

/* ===== お客様の声風引用ボックス ===== */
.quote-block {
  background: #eeeeee;
  border-left: 5px solid #999;
  padding: 15px 20px;
  margin: 25px 0;
  font-style: italic;
  font-size: 18px;
  color: #444;
}

/* ===== 画像表示 ===== */
.story-img {
  margin: 30px 0;
}

.story-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ===== 強調背景付きテキスト ===== */
.emphasis {
  background: #fff3f3;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

/* ===== フッターノート・補足文 ===== */
.footer-note {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 40px;
}

/* ===== レスポンシブ対応（スマホ） ===== */
@media screen and (max-width: 768px) {
  .story-title {
    font-size: 26px;
  }

  .lead-text {
    font-size: 18px;
  }

  .info-box,
  .quote-block,
  .story-inner p {
    font-size: 18px;
  }

  .footer-note {
    font-size: 15px;
  }

  .story-img {
    margin: 20px 0;
  }
}



.feature-section {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 20px 10px;
}

.feature-inner {
  max-width: 800800px;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
}

.feature-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}

/* リスト */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 20px;
  line-height: 1.9;
}

.feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 2px;
  color: #2ecc71;
  font-weight: bold;
  font-size: 16px;
}

/* 補足注記 */
.feature-note {
  background: #f5f5f5;
  border-left: 5px solid #999;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* 結論エリア */
.feature-conclusion {
  background: #fff8e1;
  border-left: 6px solid #f9a825;
  padding: 20px;
  font-size: 18px;
  line-height: 1.9;
}

/* 強調クラス */
.highlight-red {
  color: #e74c3c;
  font-weight: bold;
}

.emphasis {
  background: #fff3f3;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
}

/* 画像 */
.feature-image {
  margin: 35px 0;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.cta-inner img{
  max-width: 800px;
  width: 80%;
  margin: 0 auto;
}


/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .feature-title {
    font-size: 26px;
  }

  .feature-note {
    font-size: 15px;
  }

  .feature-conclusion {
    font-size: 18px;
  }

  .cta-inner img{
    max-width: 800px;
    width: 90%;
    margin: -20px auto 0;
  }
}


.reason-section {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 60px 20px;
}

.reason-inner {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
  line-height: 1.9;
}

.reason-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.sub-title {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #222;
  border-left: 5px solid #3498db;
  padding-left: 15px;
}

/* 画像表示 */
.reason-img {
  margin: 30px 0;
}
.reason-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* 警告 */
.warning-box {
  background: #fff2f2;
  border-left: 6px solid #e74c3c;
  padding: 15px 20px;
  margin: 30px 0;
}

/* 強調 */
.highlight-box {
  background: #eaf8ff;
  border-left: 6px solid #3498db;
  padding: 15px 20px;
  margin: 30px 0;
  font-weight: bold;
}

/* 学べるリスト */
.learn-list {
  padding-left: 20px;
  margin-top: 25px;
}
.learn-list li {
  margin-bottom: 12px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .reason-title {
    font-size: 26px;
  }
  .sub-title {
    font-size: 24px;
  }
  .reason-inner {
    font-size: 18px;
  }
}



.seminar-steps-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  background-color: #FFF;
  line-height: 1.8;
  font-family: "メイリオ", sans-serif;
}

.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.step-label {
  background-color: #c0392b;
  color: #fff;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 3px;
  font-size: 16px;
  min-width: 80px;
  text-align: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.step-content p {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .seminar-steps-section {
    font-size: 18px;
    padding: 40px 15px;
  }

  .step-item {
    flex-direction: column;
    gap: 5px;
  }

  .step-label {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .step-content h3 {
    font-size: 18px;
  }
}


.income-section {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFF;
  font-family: 'メイリオ', sans-serif;
  font-size: 18px;
  line-height: 1.8;
}

.income-inner img {
  max-width: 800px;
  width: 100%;
  margin-bottom: 20px;

}

.income-section .section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.price-box,
.income-example,
.average-box {
  margin-bottom: 40px;
  padding: 20px;
  background: #f5f5f5;

  border-radius: 6px;
}

.price-box h3,
.income-example h3,
.average-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.price-box ul,
.average-box ul,
.income-example ul {
  list-style: none;
  padding-left: 0;
}

.price-box ul li::before,
.average-box ul li::before,
.income-example ul li::before {
  content: "✔";
  color: #27ae60;
  margin-right: 8px;
}

.yen {
  font-weight: bold;
  color: #e74c3c;
}

.highlight {
  font-weight: bold;
  color: #d35400;
}

.tax {
  font-size: 0.9em;
  color: #888;
}

@media screen and (max-width: 768px) {
  .income-section {
    font-size: 18px;
    padding: 40px 15px;
  }

  .income-section .section-title {
    font-size: 26px;
  }

  .price-box h3,
  .income-example h3,
  .average-box h3 {
    font-size: 20px;
  }
}


.price-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  font-family: "Meiryo", sans-serif;
}

.price-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.price-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.highlight-red {
  color: #e53935;
  font-weight: bold;
}

.price-box {
  background: #fff3cd;
  padding: 20px;
  border-left: 6px solid #ffa000;
  margin: 30px 0;
}

.price-benefits {
  list-style: none;
  padding-left: 0;
  margin-top: 30px;
}

.price-benefits li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.price-benefits li::before {
  content: "✔";
  color: #4caf50;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.thanks-text p{
  margin-top: 40px;
  font-weight: bold;
  text-align: center;

}


@media screen and (max-width: 768px) {
  .price-title {
    font-size: 26px;
  }
  .price-section {
    padding: 40px 15px;
    font-size: 18px;
    max-width: 800px;
  }
}

.cta-buttons {
  padding: 60px 20px;
  background: #f2f2f2;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.cta-btn img {
  max-width: 600px;
  width: 100%;
  height: auto;
  transition: transform 0.2s ease;
}

.cta-btn img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .cta-buttons {
    padding: 40px 15px;
    max-width: 800px;
  }

  .cta-btn img {
    max-width: 100%;
  }
}

.seminar-invite-section {
  padding: 60px 20px;
  background: #f6fbff;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  font-family: "Meiryo", sans-serif;
  line-height: 1.8;
}

.seminar-invite-title {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.highlight-red {
  color: #e53935;
  font-weight: bold;
}

.seminar-point-title {

  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
  color: #2980b9;
}

.seminar-points {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.seminar-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.seminar-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #27ae60;
  font-weight: bold;
}

.seminar-cta-btn {
  margin-top: 40px;
  text-align: center;
}

.seminar-cta-btn img {
  max-width: 600px;
  width: 100%;
  height: auto;
  transition: 0.2s ease;
}

.seminar-cta-btn img:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 768px) {
  .seminar-invite-section {
    font-size: 18px;
    padding: 40px 15px;
    max-width: 800px;
  }

  .seminar-invite-title {
    font-size: 26px;
  }

  .seminar-point-title {
    font-size: 20px;
  }
}


