@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 65%;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: normal;
  color: #0e2d42;
}
/*リンク文字の設定*/
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: bold;
  text-align: center;
}
.obi {
  color: white; /* 文字色を白に設定 */
  background-color: #0e2d42; 
  padding: 10px 0; /* テキストの上下にスペースを追加 */
  text-align: center; /* テキストを中央寄せ */
  width: 100%; /* 横幅いっぱいに広げる */
  box-sizing: border-box; /* パディングを含めて幅を計算 */
  margin: 0; /* デフォルトのマージンをリセット */
}
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: 1em;
  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-image: url(../images/main_bg.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 1.6em; /*=16px*/
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* ドロップシャドウの追加 */
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}
/*カラム全体の幅を変更する*/
.article, .top_image_in {
  width:700px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 30%;
  float: left;
  margin: 1em 0em;
}
/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 25%;
  float: right;
  margin: 0.8em 0em 0em;
}
/*ヘッダーの電話ボタン*/
.header_tel {
  width: 40%;
  float: right;
  margin: 0.8em 0em 0em;
}
/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img, .header_mail img, .header_tel img {
  width: 100%;
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.section_campagin{
  background-image: url("../images/cta_campagin_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 1em 1em;
}

.section_area{
  margin: 1em auto;
}


.section_reason,.section_ng,.section_company{
  background-color: #0e2d42;
}
.white-container{
  background-color: #FFF;
  margin: 1em;
  padding: 0.5em 1em 1em;
}
.section_voice{
  background-image: url(../images/voice_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #0e2d42; /* 三角形の色を指定 */
}
.section_faq{
  background-color: #FEF5C3
}

/*--------------------------------------------------
チェックリスト設定
-----------------------------------------------------*/
ul.checklist {
  border: ;
  background-color: #fff;
  list-style: none;
  padding: 1em;
  margin: 0 1em;
}
ul.checklist li {
  background-image: url("../images/icon-check03-red.png");
  background-repeat: no-repeat;
  background-size: 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;
}

/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.box_qa {
  background-color: #;
  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: #0e2d42;
}
.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: #0e2d42;
  padding: 1em 1.5em;
}
.area_cta_inr {
  background-color: #fff;
  padding: 1em 1em;
  overflow: auto;
}
.area_cta_inr_left {
  float: left;
  width: 50%;
}
.area_cta_inr_right {
  float: right;
  width: 48%;
}

.scroll_btn {
  animation-name:fuwafuwa; /* fuwafuwaっていうアニメーションの名前*/
  animation-duration:2s; /*アニメーションの時間設定*/
  animation-iteration-count:infinite; /*アニメーションの繰り返し設定*/
}

@keyframes fuwafuwa {
  0% {-webkit-transform:translate(0, 0px);}/*X軸とY軸*/
  50% {-webkit-transform:translate(0, -5px);}
  100% {-webkit-transform:translate(0, 0px);}
}
/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #0e2d42;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #fff;
}
.footer a {
  color: #fff;
}

#section_company::before {
  content: "";
  display: block;
  height: 100px; /* ずらしたい高さ */
  margin-top: -100px; /* ずらしたい高さの分だけマイナスのマージンを設定 */
}

/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.contents_inner{
  width:700px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
  padding: 2em;
}
