@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
スマホ用レイアウト（768px以下スクリーン）
-----------------------------------------------------------------------------------------------------*/
@media only screen and (max-width : 768px) {
  /*--------------------------------------------------------
共通設定(スマホ)
-------------------------------------------------------*/
  html {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  html, body {
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  /*画像サイズの調整*/
  img {
    height: auto;
    max-width: 100%;
  }
  a {
    color: #39f;
    -webkit-tap-highlight-color: #fc6;
  }
  p {
    font-family: "ヒラギノ角ゴ ProN", sans-serif;
  }
  /*-----------------------------------------------------------------------------------------------------
各エリアの設定(スマホ)
-----------------------------------------------------------------------------------------------------*/
  /*ページ全体*/
  #container {
    position: relative;
    padding-top: 5em;
    overflow: hidden;
  }
  /*本体*/
  .main {}
  /*カラム部分*/
  .main-in {
    padding: 1.5em 0;
  }
  /*カラム内部のサイズ*/
  .main-contents .contents {
    margin-bottom: 0em;
    padding: 0 10px;
  }
  /*段落タグ*/
  .main-contents p {
    line-height: 1.8em;
  }
  /*全体のフォントサイズ*/
  .main-contents {
    font-size: 1.6em;
  }
  /*-----------------------------------------------------------------------------------------------------
ｈタグの設定(スマホ)
-----------------------------------------------------------------------------------------------------*/
  /*H2タグ*/
  .main-contents h2 {
    position: relative;
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    font-size: 1.1em;
    text-align: center;
  }
  .main-contents h2:before {
    content: '';
    position: absolute;
    bottom: -13px;
    display: inline-block;
    width: 60px;
    height: 5px;
    left: 50%;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 2px;
  }
  /*H3タグ*/
  .main-contents h3 {
    font-size: 100%;
    margin-bottom: 0.5em;
  }
  /*-----------------------------------------------------------------------------------------------------
上部固定ヘッダー部分(スマホ)　※ロゴ・電話番号・お問い合わせボタン
-----------------------------------------------------------------------------------------------------*/
  #top-head, .inner {
    width: 100%;
    padding: 0;
  }
  #top-head {
    top: 0;
    position: fixed;
    margin-top: 0;
  }
  /* Fixed reset */
  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    background: #fff;
    width: 100%;
    height: 50px;
    z-index: 999;
    position: relative;
  }
  #top-head.fixed .logo, #top-head .logo {
    position: absolute;
    top: 7px;
    left: 8px;
    color: #333;
    font-size: 26px;
    width: 28%;
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: #333;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 10px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #top-head #global-nav ul li a, #top-head.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 18px 0;
  }
  #nav-toggle {
    display: none;
  }
  /* #nav-toggle 切り替えアニメーション */
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }
  .open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }
  /* #global-nav スライドアニメーション */
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }
  .btn_item {
    display: none;
  }
  .btn_item_sp {
    display: block;
    float: right;
    padding: 0.2em;
    position: absolute;
    top: 5%;
    right: 1%;
    color: #fff;
  }
  .btn_item_sp a {
    color: #fff !important;
  }
  .btn_item_sp img {
    width: 100%;
  }
  /*ログインボタン*/
  button.login {
    background: #fff;
    color: #000;
    border: none;
    position: relative;
    height: 30px;
    font-size: 3vw;
    padding: 0 2em;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
    border: 1px solid #3c3c3c;
    margin-top: 0.2em;
  }
  button.login:hover {
    background: #000;
    color: #fff;
  }
  button.login:before, button.login:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: 400ms ease all;
  }
  button.login:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
  }
  button.login:hover:before, button.login:hover:after {
    width: 100%;
    transition: 800ms ease all;
  }
  /*登録ボタン*/
  button.regist {
    background: #E75E57;
    color: #fff;
    border: none;
    position: relative;
    height: 30px;
    font-size: 3vw;
    padding: 0 2em;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
    margin-top: 0.2em;
  }
  button.regist:hover {
    background: #fff;
    color: #E75E57;
  }
  button.regist:before, button.regist:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #E75E57;
    transition: 400ms ease all;
  }
  button.regist:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
  }
  button.regist:hover:before, button.regist:hover:after {
    width: 100%;
    transition: 800ms ease all;
  }
  /*コンタクトエリア登録ボタン*/
  button.contact_regist {
    background: #E75E57;
    color: #fff;
    border: none;
    position: relative;
    width: 100%;
    height: 60px;
    font-size: 4vw;
    margin: 0em 0em 0em;
    padding: 0 1em;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
  }
  button.contact_regist:hover {
    background: #fff;
    color: #E75E57 !important;
  }
  button.contact_regist:hover a {
    color: #E75E57 !important;
  }
  button.contact_regist:before, button.contact_regist:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #E75E57;
    transition: 400ms ease all;
  }
  button.contact_regist:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
  }
  button.contact_regist:hover:before, button.contact_regist:hover:after {
    width: 100%;
    transition: 800ms ease all;
  }
  /*資料ダウンロードボタン*/
  button.download {
    background: #4d9ecc;
    color: #fff;
    border: none;
    position: relative;
    width: 100%;
    height: 60px;
    font-size: 4vw;
    margin: 0.5em 0em 1em;
    padding: 0 1em;
    cursor: pointer;
    transition: 800ms ease all;
    outline: none;
  }
  button.download:hover {
    background: #fff;
    color: #4d9ecc !important;
  }
  button.download:hover a {
    color: #4d9ecc !important;
  }
  button.download:before, button.download:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #4d9ecc;
    transition: 400ms ease all;
  }
  button.download:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
  }
  button.download:hover:before, button.download:hover:after {
    width: 100%;
    transition: 800ms ease all;
  }
  .m-back-to-top_sp {
    width: 100%;
    position: fixed;
    right: 0px;
    bottom: 0px;
    clear: both;
    z-index: 50000;
  }
  .m-back-to-top_sp a {
    display: block;
  }
  .btn_under_left {
    float: left;
    width: 50%;
  }
  .btn_under_right {
    float: right;
    width: 50%;
  }
  /*電話ボタン*/
  button.tel {
    background: #4ABC4A;
    color: #fff;
    width: 100%;
    height: 50px;
    font-size: 3.5vw;
    padding: 0 2em;
    border: 1px solid #fff;
  }
  button.tel:hover {
    background: #000;
    color: #fff;
  }
  /*お問い合わせボタン*/
  button.mail {
    background: #4ABC4A;
    color: #fff;
    width: 100%;
    height: 50px;
    font-size: 3.5vw;
    padding: 0 2em;
    border: 1px solid #fff;
  }
  button.mail:hover {
    background: #000;
    color: #fff;
  }
  /*-----------------------------------------------------------------------------------------------------
ファーストビュー(ヘッダー画像)
-----------------------------------------------------------------------------------------------------*/
  #main-image {
    padding-top: 0em;
    height: auto;
  }
  /*--------------------------------------------------------------------------------------------------
※※※※※※※※※メイン部分(ボディ) ※ここに案件独自のcssを記述していく
-----------------------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------------
セクション 悩み
-----------------------------------------------------------------------------------------------------*/
  .section_nayami {}
  .section_nayami_in {
    background-color: transparent;
  }
  .area_box_nayami {
    display: block;
  }
  .box_nayami {
    background-color: #fff;
    width: 100%;
    float: left;
    margin-right: 5px;
    text-align: center;
    padding: 0em 0em;
    margin-top: 1em;
    font-size: 1.1em;
  }
  .box_nayami img {
    margin-bottom: 5px;
  }
  /*-----------------------------------------------------------------------------------------------------
セクション 紹介
-----------------------------------------------------------------------------------------------------*/
  .section_syokai {
    background-color: #fff;
  }
  .section_syokai_in {
    background-color: transparent;
  }
  .img_tyousei {
    margin: 0 0em;
  }
  .fadein {
    opacity: 0;
    transform: translateY(0px);
    transition: all 2s;
  }
  .fadeinleft {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 2s;
  }
  .title_setumei {
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
  }
  p.title_setumei {
    line-height: 1.7em;
  }
  .text_setumei {
    text-align: center;
    font-size: 1.2em;
    margin-top: 0em;
    margin-bottom: 1em;
  }
  /*-----------------------------------------------------------------------------------------------------
セクション 特徴
-----------------------------------------------------------------------------------------------------*/
  .section_tokutyo {}
  .section_tokutyo_in {
    background-color: transparent;
  }
  .area_merit {
    display: block;
    margin-top: 1em;
  }
  .box_service {
    float: none;
    padding: 1em 0em;
    font-size: 1.2em;
    margin-top: 2em;
    border-radius: 0px;
  }
  /*H3タグ*/
  .main-contents h3.b {
    font-size: 1.4em;
    margin-bottom: 0.5em;
  }
  .box_service p {
    line-height: 1.8em;
  }
  .box_service img {}
  /*-----------------------------------------------------------------------------------------------------
セクション 問い合わせ
-----------------------------------------------------------------------------------------------------*/
  .section_contact {
    background-image: url(../images/bg_section_05.jpg);
    background-repeat: repeat; /* 背景を繰り返さない */
    background-position: 50% 50%; /* 背景画像の位置は画面中央 */
    background-attachment: fixed; /* 背景画像を固定する */
    background-size: 100%;
  }
  .section_contact_in {
    background-color: transparent;
  }
  .box_contact {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0px;
    margin-top: 0.5em;
    margin: 0 auto;
    padding: 0em 1em 1em;
  }
  /*-----------------------------------------------------------------------------------------------------
セクション　会社概要
-----------------------------------------------------------------------------------------------------*/
  .section_07 {}
  .section_07_in {
    background-color: transparent;
  }
  /*テーブルタグ*/
  .main-contents table {
    margin-bottom: 1.5em;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0px 5px;
  }
  .main-contents th, .main-contents td {
    background-color: #f9f9f9;
    padding: 10px;
    text-align: center;
    border-left: 1px solid #fff;
  }
  .main-contents th {
    background: #4d9ecc;
    vertical-align: middle;
    text-align: center;
    width: 10px;
    overflow: visible;
    position: relative;
    color: #fff;
    font-weight: normal;
  }
  .main-contents table.table-style01 th, .main-contents table.table-style01 td {
    text-align: left;
    vertical-align: top;
    font-size: 80%;
  }
  .table-style04 th {
    background-color: #f6f6f6;
    color: #fff;
    border-left: 0px solid #ccc;
  }
  .table-style04 th, td {
    padding: 0.5em !important;
    font-size: 0.9em;
  }
  .table-style04 td {
    border-left: 1px solid #ccc;
  }
  .table-style02 th {
    background-color: #4d9ecc !important;
    border-radius: 0px;
  }
  .table-style02 td {
    text-align: left !important;
    border-radius: 5px;
    padding: 0.5em !important;
    font-size: 90%;
  }
  .table-style03 {
    font-size: 70% !important;
  }
  .box_gaiyo_left {
    float: left;
    width: 49%;
    padding: 0.1em
  }
  .box_gaiyo_right {
    float: right;
    width: 49%;
    padding: 0.1em
  }
  .box_gaiyo_right a {
    color: #000;
    text-decoration: underline;
  }
  .box_qa {
    margin-bottom: 1em;
  }
  .accordion_header_01 {
    margin: 0px 0px 0em 0px;
    background: url(../images/+.png) no-repeat;
    background-color: #fff;
    background-size: 30px;
    background-position: 98% 50%;
    padding: 15px 60px 15px 25px;
    color: #4d9ecc;
    border: 2px solid #4d9ecc;
    font-size: 120%;
    height: auto;
    vertical-align: middle;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    display: block;
  }
  .selected01 {
    background: url(../images/_.png) no-repeat;
    background-color: #4d9ecc;
    background-position: 98% 50%;
    color: #fff;
  }
  .selected01 + * {
    background: #fff;
    background-position: 8px 50%;
  }
  .accordion_open_01 {
    margin: 0px 0px 15px 0px;
    padding: 1em 2em 0.5em;
    background: #fff;
    border-left: solid 4px #4d9ecc;
    border-right: solid 4px #4d9ecc;
    border-bottom: solid 4px #4d9ecc;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
  }
  .accordion_open_01:before {
    content: "";
  }
  .accordion_field_01 {
    display: block;
    line-height: 1.5;
    text-align: left;
    padding: 0 0 0 0px;
    margin: 0px 0 10px 0;
    color: #000;
    font-size: 100%;
    width: 100%;
  }
  .box_support {
    background-color: #f6f6f6;
    padding: 1em;
  }
  .accordion_field_01 a {
    text-decoration: underline;
    color: #4d9ecc;
  }
  /*-----------------------------------------------------------------------------------------------------
フッター部分
-----------------------------------------------------------------------------------------------------*/
  #footer {
    padding: 0.5em 0;
    text-align: center;
    font-size: 1em;
    color: #fff;
    margin-bottom: 5em;
  }
  #footer a {
    color: #fff;
  }
  /*--------------------------------------------------------
Youtube調整タグ
--------------------------------------------------------*/
  .youtube_size {
    width: 100%;
    height: 300px;
  }
  .sp_br {
    display: block;
  }
}