@charset "UTF-8";

/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/
/*--------------------------------------------------
共通設定(PC)
-----------------------------------------------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%;
  /*emの計算をしやすくするための定番設定*/
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", 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 0 1.5em;
  padding: 0.9em;
  border-bottom: 3px solid #000;
  font-size: 1.6em;
  font-weight: bold;
  text-align: center;
}

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

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-image: url("../images/main_bg.png");
  background-size: cover;
  background-attachment: fixed;
}

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

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

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

.pc { display: block !important; }
.sp { display: none !important; }
/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.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: 20%;
  float: left;
  margin: 0em;
}

/*ヘッダーの問い合わせボタン*/
.header_mail {
  width: 25%;
  float: right;
  margin: 0.8em 0em 0em;
}

/*ヘッダーの電話ボタン*/
.header_tel {
  width: 30%;
  float: right;
  margin: 0.8em 0em 0em;
}

/*ヘッダー内の画像が常に幅100%になるように*/
.header_logo img,
.header_mail img,
.header_tel img {
  width: 100%;
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
.section_01 {
  padding: 0em;
}

.section_02 {
  background-color: #FFF;
}

.section_03 {
  padding: 0 1em;
}

.voice_message {
  padding: 1.5em 2em 0.5em;
  margin: 0 1em;
  background-color: #f9f9f9;
  font-size: 20px;
}

.section_04 {
  padding: 0.5em 1em 0em;
}

.cp_qa {
  padding: 0 1em;
}

.cp_qa *,
.cp_qa *:after,
.cp_qa *:before {
  font-family: sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cp_qa dt,
.cp_qa dd {
  position: relative;
  padding: 0.5em;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
  border-radius: 0.3em;
}

.cp_qa dt {
  margin: 0 3em 1em 3em;
  background: #ffe0b2;
  font-size: 20px;
}

.cp_qa dd {
  margin: 0 3em 2em 3em;
  background: #b2ebf2;
  font-size: 20px;
}

/* 吹き出し▶︎ */
.cp_qa dt::before,
.cp_qa dd::before {
  position: absolute;
  z-index: 99;
  top: 0.5em;
  display: inline-block;
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
}

/* 質問吹き出し▶︎ */
.cp_qa dt::before {
  left: -0.4em;
  border-width: 5px 8.7px 5px 0;
  border-color: transparent #ffe0b2 transparent transparent;
}

/* 答え吹き出し▶︎ */
.cp_qa dd::before {
  right: -0.4em;
  border-width: 5px 0 5px 8.7px;
  border-color: transparent transparent transparent #b2ebf2;
}

/* ?!アイコン */
.cp_qa dt::after,
.cp_qa dd::after {
  font-size: 1.2em;
  position: absolute;
  top: 0;
  color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.2em;
}

/* ?アイコン */
.cp_qa dt::after {
  left: -2.5em;
  margin: 0 0.2em 0 0;
  padding: 0.2em 0.45em;
  content: '?';
  background: #f57c00;
}

/* !アイコン */
.cp_qa dd::after {
  right: -2.5em;
  margin: 0 0 0 0.5em;
  padding: 0.15em 0.4em;
  content: 'A';
  background: #0097a7;
}

.section_05 {
  padding: 0.5em 1em 0em;
  background-color: #fdeecf;
}

.company_info{
  padding: 0 1em;
  margin: 0.5em 0 1em;
}

table{
  font-size: 1.2em;
  width: 100%;
  border-collapse: collapse;
}

table tr{
  border-bottom: solid 2px white;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  position: relative;
  text-align: left;
  width: 30%;
  background-color: #ff9e00;
  color: white;
  text-align: center;
  padding: 10px 0;
}

table th:after{
  display: block;
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top:calc(50% - 10px);
  right:-10px;
  border-left: 10px solid #ff9e00;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

table td{
  text-align: left;
  width: 70%;
  text-align: center;
  background-color: #eee;
  padding: 10px 0;
}
/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  background-image: url("../images/cta_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0em 5em 2em;
}

.cta_comment {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.cta_comment:before {
  margin-right: 1em;
  content: '＼';
}

.cta_comment:after {
  margin-left: 1em;
  content: '／';
}

.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {

  0%,
  40%,
  60%,
  80% {
    transform: scale(1.0);
  }

  50%,
  70% {
    transform: scale(0.85);
  }
}

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

.footer a {
  color: #fff;
}

/*-----------------------------------------------------------------------------------------------------
プライバシーポリシー
-----------------------------------------------------------------------------------------------------*/
.container {
  background-image: url(../images/main_bg.png);
  background-size: cover;
  background-attachment: fixed;
}

/*本体*/
.sub {
  width: 950px;
  margin: 0 auto;
}

/*カラム部分*/
.sub-in {
  background-color: #FCEFCE;
  padding: 0em 0;
  box-shadow: 0px 0px 25px #594a42;
  border-left: 1px solid #FCEFCE;
  border-right: 1px solid #FCEFCE;
}

/*カラム内部のサイズ*/
.sub-contents .contents {
  background-color: #fff;
  box-shadow: 0px 0px 10px #594a42;
  margin-bottom: 0em;
  padding: 0em 60px;
  margin: 0em 1em;
}

/*段落タグ*/
.sub-contents p {
  line-height: 1.6em;
}

/*全体のフォントサイズ*/
.sub-contents {
  font-size: 1.8em;
}

/*テーブルタグ*/
.sub-contents table {
  margin-bottom: 1.5em;
  padding: 0;
  border-top: 1px solid #959595;
  border-left: 1px solid #959595;
}

.sub-contents th,
.sub-contents td {
  padding: 0.5em;
  border-right: 1px solid #959595;
  border-bottom: 1px solid #959595;
}

.sub-contents th {
  background-color: #f0f0f0;
  font-weight: bold;
  text-align: left;
}

.sub-contents table.table-style01 th,
.sub-contents table.table-style01 td {
  text-align: left;
  vertical-align: middle;
}
.google_service{
  margin: 2em 0;
  padding: 0 3em;
  font-size: small;
}