@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%;
  }
  /*写真の中央配置*/
  .img-center {
    margin: 0 auto;
    text-align: center;
  }
  /*--------------------------------------------------
見出しタグ設定（スマホ）
-----------------------------------------------------*/
  h2 {
    margin: 0.5em 0em;
    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 #10559A;
    border-bottom: 1px dotted #10559A;
  }
  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;
    text-align: center;
    color: #e7931c;
    font-family: serif;
    font-size: 1.5em;
    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; /*真ん中に要素を置きたいときに使う*/
  }
  /*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
  .top_image {
    background-image: none;
  }
  .top_image_in img {
    width: 100%;
  }
  /*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/
  .seciton_01 {
    padding: 0.5em 0.5em;
  }
  .section_02 {
    background-color: #FFFEF0;
    padding: 0.5em 0.5em;
  }
  /*--------------------------------------------------
見出し
-----------------------------------------------------*/
  .midashi {
    background-color: #e7931c;
    padding: 0.4em 0;
    margin-top: 3em;
  }
  /*--------------------------------------------------
中見出し
-----------------------------------------------------*/
  .tsu-midashi {
    border-bottom: 1px dotted #000;
    padding: 0.5em 0;
    text-align: left;
    margin: 1em 0 0.3em;
  }
  .tsu-midashi p {
    padding-top: 0.5em;
  }
  /*--------------------------------------------------
3つの特徴
-----------------------------------------------------*/
  .tokutyo-img {
    display: inline-block;
    width: 100%;
    height: 200px;
    text-align: center;
  }
  /*--------------------------------------------------
プロフィール
-----------------------------------------------------*/
  .prof {
    margin: 1em 0 3em;
  }
  .prof-title01 {
    position: static;
    text-align: left;
    margin-left: 0em;
  }
  .prof-title02 {
    position: static;
    text-align: left;
    margin-left: 0em;
  }
  .prof-title03 {
    position: static;
    text-align: left;
    margin-left: 0em;
  }
  /*--------------------------------------------------
吹き出し（上向き）
-----------------------------------------------------*/
  .balloon1-left {
    position: relative;
    display: inline-block;
    margin: 0.5em 0.3em 1.5em;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #fff;
  }
  .balloon1-left:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #fff;
  }
  .balloon1-left p {
    margin: 0;
    padding: 0;
  }
  /*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
  .box_qa {
    background-color: #fffff1;
    padding: 1em;
  }
  .box_qa_q {
    background-color: #fff;
    padding: 1em 1em 1em 1em;
    border-bottom: 1px solid #ccc;
    font-size: 1.2em;
    font-weight: bold;
    color: #e7931c;
  }
  .box_qa_a {
    background-color: #fff;
    padding: 1em 1em 1em 1em;
  }
  .box_qa_q p, .box_qa_a p {
    text-indent: 0em;
  }
  /*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
  .cta_text {
    text-align: center;
    font-size: 0.8em;
  }
  /*ボタンフォーム*/
  .cta_btn {
    padding: 2em 0;
  }
  /*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
  .footer {
    background-color: #e7931c;
    padding: 2em 0em;
    text-align: center;
    font-size: 1.2em;
    color: #fff;
  }
  .footer a {
    color: #fff;
  }
}