@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%; /*emの計算をしやすくするための定番設定*/
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #333333;
}
/*リンク文字の設定*/
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）
-----------------------------------------------------*/
/*--------------------------------------------------
全体レイアウト／背景設定（PC）
-----------------------------------------------------*/
/*全体エリア（全体背景を設定するにはここ）*/
.main {
  background-color: #fff;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  font-size: 1.3em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}
.article {
  width: 100%;
}
/*カラム全体の幅を変更する*/
.top_image_in {
  width: 950px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}
.section_inr {
  width: 960px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
  padding: 4.5em;
}
.section_inr2 {
  width: 860px;
  margin: 0 auto 2%; /*真ん中に要素を置きたいときに使う*/
  padding: 1.5em;
  border: 1px solid #000;
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: rgba(255, 255, 255, 0.9);
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  width: 100%;
  max-width: 950px;
  margin: 1rem auto;
  overflow: hidden;
  align-items: center;
  display: flex;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 35%;
  float: left;
  margin: 0em;
}
/*ヘッダーの問い合わせボタン*/
/*ヘッダーの電話ボタン*/
/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img {
  width: 100%;
}
a {
  text-decoration: none;
  color: #333333;
}
nav {
  margin: 0 0 0 auto;
}
#header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
#header li {
  margin: 0 0 0 15px;
  font-size: 14px;
}
.sp-nav {
  display: none;
}
@media screen and (max-width: 950px) {
  /*===========
.scroll-box
===========*/
  .scroll-box {
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-box div img {
    vertical-align: top;
  }
  /*===========
scrollbar
===========*/
  /*スクロールバー全体の高さ*/
  .scroll-box::-webkit-scrollbar {
    height: 4px;
  }
  /*スクロールバー全体の背景*/
  .scroll-box::-webkit-scrollbar-track {
    background: #eee;
  }
  /*スクロールバーの動く部分*/
  .scroll-box::-webkit-scrollbar-thumb {
    background: #aaa;
    border: none;
  }
  /*スクロールバーの動く部分のホバー（マウスオーバー）*/
  .scroll-box::-webkit-scrollbar-thumb:hover {
    background: #999;
  }
  a {
    text-decoration: none;
    color: #fff;
  }
  .pc-nav {
    display: none;
  }
  .sp-nav {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    opacity: 0;
    transform: translateY(-100%);
    transition: all .2s ease-in-out;
  }
  #hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
    margin: 0 0 0 auto;
  }
  #hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
  }
  #hamburger::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
  }
  #hamburger::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: #333;
  }
  /*スマホメニュー*/
  .sp-nav ul {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .sp-nav li {
    margin: 0;
    padding: 0;
  }
  .sp-nav li span {
    font-size: 15px;
    color: #fff;
  }
  .sp-nav li a, .sp-nav li span {
    display: block;
    padding: 20px 0;
    color: #ffff00;
  }
  /*-閉じるアイコンー*/
  .sp-nav .close {
    position: relative;
    padding-left: 20px;
  }
  .sp-nav .close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #ffff00;
    transform: rotate(45deg);
  }
  .sp-nav .close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 16px;
    height: 1px;
    background: #ffff00;
    transform: rotate(-45deg);
  }
  .toggle {
    transform: translateY(0);
    opacity: 1;
  }
  .main-visual {
    padding: 0 4%;
  }
}
/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image1 {
  background-image: url("../images/fv_01.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: auto;
}
.top_image2 {
  background-image: url("../images/fv_02.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: auto;
  margin-bottom: 3%;
}
.top_image_in img {
  display: block;
  margin: 0 auto;
}
/*.top_image .fv1-bg{
	  background-image: url("../images/fv1-bg.png");
	background-repeat: repeat;
	height: auto;
	padding:0.5em 0;
}*/
/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.section_01 {
  background: rgba(242, 242, 242, 0.8);
  padding: 0 0 3em;
  height: auto;
  overflow: hidden;
  text-align: center;
}
/*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
ul {
  list-style: none;
  margin-bottom: 35px;
  padding-inline-start: 0px;
}
li {
  padding: 10px 0 10px 3px;
  font-size: 1.8rem;
  line-height: 1.5;
}
li:before {
  font-family: FontAwesome;
  margin-right: 20px;
}
.box_contents {
  border-radius: 8px;
  border: 5px solid #ff6d10;
  padding: 1.5em 2.5em;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
}
.box_contents3 {
  border-radius: 8px;
  border: 5px solid #004999;
  padding: 2.5em;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.2));
}
.box_contents4 {
  border-radius: 20px;
  border: 5px solid #eeeeee;
  padding: 2.5em 2.5em 2.5em 1.5em;
  margin-bottom: 3%;
}
/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #333333;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}
/*--------------------------------------------------
追加CSS
-----------------------------------------------------*/
.pc-nav ul {
  margin-bottom: 0px !important;
}
.button a {
  background: #FF7F50;
  border-radius: 9999px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 250px;
  padding: 10px 25px;
  font-family: "Noto Sans Japanese";
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button a:hover {
  background: #333333;
  color: #FFF;
}
.button a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button a:hover:after {
  border-color: #FFF;
}
.btn-area {
  display: block;
  margin: 0 auto;
  width: 50%;
}
a.btn_1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #115f9f;
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
  font-size: 120%;
}
a.btn_1::before {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #27acd9;
}
a.btn_1::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #27acd9;
}
a.btn_1:hover {
  background: #d4eef7;
  color: #27acd9;
}
#header {
  height: 70px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #fff;
  text-align: center;
  padding: 20px;
}
.pc-nav a {
  color: #333;
}
/*JSを使いfixedクラスが付与された際の設定*/
#header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  left: 0; /*位置指定*/
}
.age-savings-table {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1.5em;
}
.age-savings-table th, .age-savings-table td {
  padding: 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.age-savings-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  color: #333;
}
.age-savings-table td {
  color: #444;
}
.age-savings-table thead th {
  line-height: 1.4;
}
/* 偶数行の背景色を変える */
.age-savings-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .age-savings-table th, .age-savings-table td {
    padding: 12px 8px;
    font-size: 0.9em;
  }
}
.summary-table {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.summary-table th, .summary-table td {
  padding: 15px;
  border: 1px solid #e0e0e0;
  text-align: center;
}
.summary-table th {
  background-color: #f8f9fa;
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
}
.summary-table td {
  font-size: 1.1em;
  color: #444;
}
/* 列幅の調整 */
.column-1 {
  width: 15%;
}
.column-2 {
  width: 15%;
}
.column-3 {
  width: 25%;
}
.column-4 {
  width: 10%;
}
.column-5 {
  width: 20%;
}
.column-6 {
  width: 15%;
}
/* 数値データのスタイル */
.numeric-data {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
}
/* 改行を入れるためのスタイル */
.break-line {
  display: block;
  margin-top: 5px;
}
/* レスポンシブ対応 */
@media screen and (max-width: 767px) {
  .summary-table {
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
}
/* テーブル2用の独自スタイル */
.summary-table2 {
  width: 100%;
  max-width: 1400px;
  margin: 20px auto;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}
.summary-table2 th, .summary-table2 td {
  padding: 12px 10px;
  border: 1px solid #e0e0e0;
  text-align: center;
  vertical-align: middle;
}
.summary-table2 th {
  background-color: #f8f9fa;
  font-weight: bold;
  font-size: 0.95em;
  color: #333;
}
.summary-table2 td {
  font-size: 0.9em;
  color: #444;
}
/* 列幅の調整（テーブル2用） */
.col2-1 {
  width: 22%;
} /* ソフト名称 */
.col2-2 {
  width: 13%;
} /* 分析データ */
.col2-3 {
  width: 20%;
} /* 年間勝敗数 */
.col2-4 {
  width: 8%;
} /* PF */
.col2-5 {
  width: 13%;
} /* 利益 */
.col2-6 {
  width: 12%;
} /* 最大DD（確定） */
.col2-7 {
  width: 12%;
} /* 最大DD（含み） */
/* 数値データのスタイル（テーブル2用） */
.numeric-data2 {
  font-family: 'Arial', sans-serif;
  font-weight: 500;
}
/* 改行用スタイル（テーブル2用） */
.break-line2 {
  display: block;
  margin-top: 3px;
  font-size: 0.9em;
  color: #666;
}
/* レスポンシブ対応（テーブル2用） */
@media screen and (max-width: 767px) {
  .summary-table2 {
    width: 100%;
    overflow-x: auto;
    display: block;
    white-space: nowrap;
  }
  .summary-table2 th, .summary-table2 td {
    padding: 8px 6px;
    font-size: 0.85em;
  }
}
table.table01 {
  width: 100%;
  border-right: #3EB1C6 solid 1px;
  border-collapse: collapse;
}
table.table01 p {
  font-size: clamp(13px, 1.3vw, 13px) !important;
  line-height: 200%;
}
table.table01 thead th {
  background: #3EB1C6;
  color: #FFF;
  padding: 10px 15px;
  border-right: #FFF solid 1px;
  border-bottom: #FFF solid 1px;
}
table.table01 thead th:last-child {
  border-right: #3EB1C6 solid 1px;
}
table.table01 tbody th {
  background: #3EB1C6;
  color: #FFF;
  padding: 10px 15px;
  border-bottom: #FFF solid 1px;
  vertical-align: top;
	white-space: nowrap;
}
table.table01 tbody tr:last-child th {
  border-bottom: #3EB1C6 solid 1px;
}
table.table01 tbody td {
  background: #FFF;
  padding: 10px 15px;
  border-left: #3EB1C6 solid 1px;
  border-bottom: #3EB1C6 solid 1px;
  vertical-align: top;
	white-space: nowrap;
}
@media screen and (max-width: 640px) {
  table.table01 thead {
    display: none;
  }
  table.table01 tbody th {
    display: block;
  }
  table.table01 tbody td {
    display: block;
  }
  table.table01 tbody td::before {
    content: attr(label);
    float: left;
    clear: both;
    font-weight: bold;
  }
  table.table01 tbody td p {
    padding-left: 6em !important;
  }
}
/* ヘッダーセルのレイアウト調整 */
.header-cell {
  font-size: 1.25em;
  font-weight: bold;
  padding: 15px 10px;
  vertical-align: top;
}
/* ヘッダーコンテンツコンテナ */
.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* アイコン用のコンテナ - 高さと幅を固定 */
.icon-container {
  width: 90px;
  height: 120px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* ヘッダーアイコンのスタイル */
.header-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* 縦横比を維持したままサイズを調整 */
}
/* ヘッダー内のテキスト */
.header-content span {
  display: block;
  text-align: center;
}
/* テーブルコンテナ - モバイルでスクロール可能にする */
.table-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto; /* 横スクロールを有効化 */
  -webkit-overflow-scrolling: touch; /* iOS用のスムーズスクロール */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.pricing-table {
  width: 100%;
  min-width: 750px; /* 最小幅を設定してスマホでも表が崩れないようにする */
  border-collapse: collapse;
  background-color: #fff;
}
.pricing-table th, .pricing-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
.pricing-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}
/* ヘッダー行のフォントサイズを大きく */
.header-cell {
  font-size: 1.25em; /* 1.25倍に拡大 */
  font-weight: bold;
  padding: 18px 15px; /* 少し余白を増やす */
}
/* 一列目（feature-column）の文字サイズを大きくする */
.feature-column {
  font-size: 1.4em; /* 1.2倍の大きさに設定 */
  text-align: left !important;
  background-color: #f8f8f8;
  width: 40%;
  font-weight: normal;
}
/* サブ項目の文字サイズは調整 */
.feature-column.sub-feature {
  font-size: 1.2em; /* サブ項目は少し小さめに */
  padding-left: 25px;
  color: #555;
}
.plan-column {
  width: 20%;
}
/* 丸とバツを太字に */
.check {
  color: #4CAF50;
  font-size: 24px; /* サイズを大きく */
  font-weight: bold; /* 太字に */
}
.cross {
  color: #F44336;
  font-size: 24px; /* サイズを大きく */
  font-weight: bold; /* 太字に */
}
.master-plan {
  background-color: #f9f9ff;
}
.master-plan-header {
  background-color: #5c6bc0 !important;
  color: white;
}
.section-title {
  background-color: #eeeeee;
  font-weight: bold;
}
.sub-feature {
  padding-left: 25px;
  font-size: 0.95em;
  color: #555;
}
.price {
  font-weight: bold;
  font-size: 1.2em;
  padding: 15px;
  background-color: #fafafa;
  border-top: 2px solid #e0e0e0;
}
.discount {
  text-decoration: line-through;
  color: #999;
  font-size: 0.9em;
}
.final-price {
  color: #e53935;
  margin-left: 5px;
}
.product-count {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
/* モバイル向けのスタイル調整 */
@media only screen and (max-width: 767px) {
  .table-container {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
  }
  /* スマホでスワイプを促すメッセージ（オプション） */
  .swipe-notice {
    display: block;
    text-align: center;
    padding: 8px;
    background-color: #fffde7;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9em;
    color: #555;
  }
}
.sec01-title {
  position: relative;
  padding: 5PX 0 5PX 40px;
  background: #fff;
  border-radius: 8px;
  line-height: 1.8;
  font-weight: 500;
  font-size: 1.5em;
}
.sec01-title:before {
  position: absolute;
  top: 9px;
  left: 5px;
  content: url(../images/check2.png);
}
.marker {
  background: linear-gradient(transparent 50%, rgba(255, 220, 123) 50%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}
/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}
ul {
  list-style: none;
  margin-bottom: 35px;
  font-size: 1.2em;
}
.main li {
  border-bottom: 1px dotted #ddd;
  font-size: 1.15em;
  font-weight: 500;
  padding: 10px 0 10px 7px;
  list-style: none;
  line-height: 1.5;
}
.main li:before {
  font-size: 1.1rem;
  font-family: FontAwesome;
  content: '\f0eb';
  /* アイコンのunicode       f087 \f091      */
  margin-right: 10px;
}
.main li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .main li {
    padding: 5px 0 5px 3px;
    line-height: 1.8;
    font-size: 1.05rem;
    text-indent: -1.2em;
  }
}
.main .ul4 {
  list-style: none;
  margin-bottom: 35px;
  font-size: 1.3em;
}
.main .ul4 li {
  border-bottom: 1px dotted #ddd;
  font-size: 1.15em;
  font-weight: 500;
  padding: 10px 0 10px 7px;
  list-style: none;
  line-height: 1.5;
  text-indent: -1.6em;
}
.main .ul4 li:before {
  font-size: 1.1rem;
  font-family: FontAwesome;
  content: '\f058';
  color: #f52c3c;
  /* アイコンのunicode       f087 \f091      */
  margin-right: 10px;
}
.main .ul4 li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .main .ul4 li {
    padding: 5px 0 5px 3px;
    line-height: 1.8;
    font-size: 1.05rem;
  }
}
.main .ul5 {
  list-style: none;
  margin-bottom: 35px;
}
.main .ul5 li {
  border-bottom: 1px dotted #ddd;
  font-size: 1.15em;
  font-weight: 500;
  padding: 10px 0 10px 7px;
  list-style: none;
  line-height: 1.5;
  text-indent: -1.6em;
}
.main .ul5 li:before {
  font-size: 1.1rem;
  font-family: FontAwesome;
  content: '\f35a';
  color: #f52c3c;
  /* アイコンのunicode       f087 \f091      */
  margin-right: 10px;
}
.main .ul5 li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .main .ul5 li {
    padding: 5px 0 5px 3px;
    line-height: 1.8;
    font-size: 1.05rem;
  }
}
.center-title {
  display: block;
  margin: 0 auto;
  border: 3px solid #004999;
  width: 100%;
  text-align: center;
  font-size: 1.4em;
  font-weight: 600;
  color: #004999;
  padding: .5em;
}
.center-title2 {
  display: block;
  margin: 0 auto;
  border: 2px solid #333333;
  width: 100%;
  text-align: center;
  font-size: 1.5em;
  font-weight: 500;
  color: #333333;
  padding: .5em;
  line-height: 200%;
}
.center-title3 {
  display: block;
  margin: 0 auto;
  border: 3px solid #f3343f;
  width: 100%;
  text-align: center;
  font-size: 1.3em;
  font-weight: 500;
  color: #f3343f;
  padding: .5em;
  font-size: 1.5em;
}
.center-title4 {
  display: block;
  margin: 0 auto .5em;
  border: 3px solid #333333;
  border-radius: 25px;
  width: 100%;
  text-align: left;
  font-size: 1.5em;
  font-weight: 500;
  color: #333333;
  padding: .5em 2.5em;
}
.center-title5 {
  display: block;
  margin: 0 auto;
  border: 4px solid #a38147;
  width: 100%;
  text-align: left;
  font-size: 1.3em;
  font-weight: 500;
  color: #333333;
  padding: 1em;
}
.sec01-caution {
  position: relative;
  padding: 5PX 0 5PX 35px;
  font-size: 1.2em;
  margin-bottom: 20px;
  background: #fff;
}
.sec01-caution:before {
  position: absolute;
  top: 7px;
  left: 0px;
  content: "※";
}
.border-l {
  border-left: 1px solid #333333;
  padding: 0 .5em;
}
.qa-q {
  position: relative;
  padding: 5PX 0 5PX 70px;
  font-size: 140% !important;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  font-weight: 500;
  color: #004999;
}
.qa-q:before {
  position: absolute;
  content: url(../images/qa-1.png);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.qa-a {
  position: relative;
  padding: 5PX 0 5PX 70px;
  font-size: 125% !important;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 8px;
  font-weight: 400;
}
.qa-a:before {
  position: absolute;
  content: url(../images/qa-2.png);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/**
 * $keyframes \ gelatine 
 **/
.reason-text3 {
  background-color: #004999;
  background-repeat: repeat;
  background-position: bottom center;
  height: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  text-align: center;
  font-size: 1.4em;
  font-weight: 600;
  color: #fff;
  padding: 1.1em;
}
.top-title {
  background-image: url("../images/top-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 283px;
  color: #fff;
  text-align: center;
  position: relative;
}
.title {
  background-image: url("../images/sub-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 172px;
  color: #fff;
  text-align: center;
  position: relative;
}
.title2 {
  background-image: url("../images/sub-bg2.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 291px;
  color: #fff;
  text-align: center;
  position: relative;
  background-color: rgba(242, 242, 242, 0.8);
}
.title3 {
  background-image: url("../images/sub-bg3.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 207px;
  color: #fff;
  text-align: center;
  position: relative;
  background-color: rgba(242, 242, 242, 0.8);
}
.title4 {
  background-image: url("../images/sub-bg4.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 172px;
  color: #fff;
  text-align: center;
  position: relative;
  background-color: rgba(242, 242, 242, 0.8);
}
.title5 {
  background-image: url("../images/sub-bg5.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 357px;
  color: #fff;
  text-align: center;
  position: relative;
  background-color: rgba(242, 242, 242, 0.8);
}
.title6 {
  background-image: url("../images/sub-bg6.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 302px;
  color: #fff;
  text-align: center;
  position: relative;
  background-color: rgba(242, 242, 242, 0.8);
}
/*.title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #0d385b transparent transparent transparent;
  border-width: 20px 20px 0 20px;
}*/
.title-text {
  font-size: 1.56em;
  font-weight: 800;
}
.section_inr p {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 200%;
}
.section_inr2 p {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 160%;
}
.section_01 .section_inr {
  text-align: left;
  background-color: #fff;
}
.section_02 .section_inr2 {
  text-align: left;
  background-color: #fff;
}
img.sub {
  display: block;
  margin: 0em auto;
  max-width: 950px;
}
img.c1 {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.marker {
  background: linear-gradient(transparent 50%, rgba(255, 220, 123) 50%);
  display: inline;
  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;
  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;
  /* マーカーが引かれる速度を指定 */
  transition: background-size 1.5s;
}
/* マーカーが引かれる際に付与するクラス */
@media only screen and (max-width : 950px) {
  .center-title2 {
    display: block;
    margin: 0 auto;
    border: 2px solid #333333;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    color: #333333;
    padding: .5em;
    line-height: 200%;
  }
  .center-title3 {
    display: block;
    margin: 0 auto;
    border: 3px solid #f3343f;
    width: 100%;
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
    color: #f3343f;
    padding: .5em;
    font-size: 1.2em;
  }
  .center-title4 {
    display: block;
    margin: 0 auto .5em;
    border: 3px solid #333333;
    border-radius: 25px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
    font-weight: 500;
    color: #333333;
    padding: .5em 2.5em;
  }
  .top-title {
    background-image: url("../images/top-bg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    color: #fff;
    text-align: center;
    position: relative;
  }
  .title {
    background-image: url("../images/sub-bg.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    color: #fff;
    text-align: center;
    position: relative;
  }
  .title2 {
    background-image: url("../images/sub-bg2.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: rgba(242, 242, 242, 0.8);
  }
  .title3 {
    background-image: url("../images/sub-bg3.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: rgba(242, 242, 242, 0.8);
  }
  .title4 {
    background-image: url("../images/sub-bg4.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: rgba(242, 242, 242, 0.8);
  }
  .title5 {
    background-image: url("../images/sub-bg5.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: rgba(242, 242, 242, 0.8);
  }
  .title6 {
    background-image: url("../images/sub-bg6.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    height: auto;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: rgba(242, 242, 242, 0.8);
  }
  .top_image_in {
    width: 100%;
    margin: 0 auto;
  }
  .top_image_in img {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
  .section_inr {
    width: 100%;
    margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
    padding: 0 3%;
  }
  .section_01 {
    background: rgba(242, 242, 242, 0.8);
    padding: 1.5%;
    height: auto;
    overflow: hidden;
    text-align: center;
  }
  .section_01 .section_inr {
    text-align: left;
    background-color: #fff;
    padding: 3%;
  }
  .section_02 .section_inr2 {
    text-align: left;
    background-color: #fff;
    padding: 3%;
    width: 100%;
  }
  img.sub {
    display: block;
    margin: 0em auto;
    max-width: 100%;
  }
  img.c1 {
    display: block;
    margin: 1.5em auto;
    max-width: 95%;
  }
}