@charset "UTF-8";
/* CSS Document */


@media only screen and (max-width : 768px) {

  /*-------------------------------------------------------------------------------------
スマホ用レイアウト（768px以下スクリーン）
----------------------------------------------------------------------------------------*/

  /*--------------------------------------------------
共通設定(スマホ)
-----------------------------------------------------*/

  /*body全体の初期スタイル調整*/
  body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  /*--------------------------------------------------
見出しタグ設定（スマホ）
-----------------------------------------------------*/
  h2 {
    margin: 0 0 1.5em;
    padding: 0.9em;
    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.2em;
    border: 1px solid #ccc;
    font-weight: bold;
  }

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

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

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

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

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

  .pc { display: none !important; }
  .sp { display: block !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: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  /*ヘッダーのロゴ*/
  .header_logo {
    width: 25%;
    float: left;
    margin: 0em;
  }

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

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

  /*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
  .top_image {
    background-image: none;
  }

  .top_image_in img {
    width: 100%;
  }

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

  .section_02 {
    background-color: #FFF;
    padding: 0;
  }

  .section_03 {
    padding: 0em;
  }

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

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

  .cp_qa {
    padding: 0 1em;
  }

  .cp_qa *,
  .cp_qa *:after,
  .cp_qa *:before {
    font-family: sans-serif;
    font-size: 14px;
    -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;
  }

  .cp_qa dd {
    margin: 0 3em 3em 3em;
    background: #b2ebf2;
  }

  /* 吹き出し▶︎ */
  .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.5em;
    border-width: 5px 8.7px 5px 0;
    border-color: transparent #ffe0b2 transparent transparent;
  }

  /* 答え吹き出し▶︎ */
  .cp_qa dd::before {
    right: -0.5em;
    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: 1em 0em 0em;
  }

  table{
    font-size: 14px;
    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 1.5em 1.5em;
  }

  .cta_comment {
    text-align: center;
    font-size: 12px;
    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.2em;
    color: #fff;
  }

  .footer a {
    color: #fff;
  }

  /*-----------------------------------------------------------------------------------------------------
プライバシーポリシー
-----------------------------------------------------------------------------------------------------*/
  .sub {
    width: 100%;
  }

  /*カラム部分*/
  .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 5px;
    margin: 0em 1em;
  }

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

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

  /*テーブルタグ*/
  .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 {
    display: block;
    width: 100%;
  }

  .google_service{
  margin: 2em 0;
  padding: 0 2em;
  font-size: small;
}

}