@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%;
	margin:0 auto;
}
    /*--------------------------------------------------
全体レイアウト／背景設定（スマホ）
-----------------------------------------------------*/
/*記事(ボディ)エリア*/
.article {
  background-color: #fff;
  border-left: none;
  border-right: none;
  font-size: 1.6em; /*=16px*/
}
/*記事(ボディ)エリアの行間*/
.article p {
  line-height: 1.6;
}

.article{
	width: 100%;
}

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

/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
/*上部固定ヘッダー全体*/
.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 5000;
  background-color: rgba(96, 96, 96, 0.8);
  
  overflow: auto;
}
/*ヘッダー内部をカラム幅にする*/
.header_inr {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 30%;
  float: left;
  margin: 1.2em;
}
/*ヘッダーの問い合わせボタン*/
.header_form {
  width: 42%;
  float: right;
  margin: 1em;
}

/*ハンバーガーメニュー*/

.menu-btn {
    position: fixed;
    top: 2px;
    right: 5px;
    display: flex;
    height: 55px;
    width: 55px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3817048;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
	
#menu-btn-check {
    display: none;
}
	
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color:rgba(129, 112, 72, 0.8);
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: rgba(129, 112, 72, 0.8);
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/*ハンバーガーメニュー*/

/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.top_image {
  background-image: none;
}
.top_image_in img {
  width: 100%;
}
    .pc_img { display: none !important; }
    .sp_img { display: block !important; }

    
 /*--------------------------------------------------
見出しタグ設定（スマホ）
-----------------------------------------------------*/
h2 {
    position: relative;
    background-color: #000;
    padding: 1em 0em 1em 2.5em;
    color: #fff;
    letter-spacing: 0.05em;
    margin-left: 10px;
      z-index:1;
    font-size:1.2em;
}

h2:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 0px;
  border: none;
  border-left: solid 45px #ffdb00;
  border-bottom: solid 180px transparent;
  z-index:-1
}

h3 {
    position: relative;
    background-color: #50443C;
    padding: 0.5em 1em;
    color: #fff;
    letter-spacing: 0.05em;
    margin-left: 10px;
      z-index:1;
    font-size:1.3em;
}

h4 {
    position: relative;
    background-color: #2d2723;
    padding: 1em 2em 1em 0.3em ;
    color: #fff;
    letter-spacing: 0.05em;
    margin-right: 10px;
      z-index:1;
    font-size: 1.2em;
    line-height: 1.1 ;
}

h4:before {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  border: none;
  border-right: solid 45px #8C7B6C;
  border-bottom: solid 60px transparent;
  z-index:-1
}

h5 {
font-size: 1.3em;
  font-weight: bold;
  margin: 0 0 1em;
border-bottom: 2px solid #000;
    padding-left: 0.5em;

}

h6 {
font-size: 1.3em;
  border-bottom: solid 3px #AAA5A2;
  position: relative;
}
h6:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #8C7B6C;
  bottom: -3px;
  width: 20%;
}
	
h7{
padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 3px #8C7B6C;/*左線*/
}
  
/*--------------------------------------------------
余白の設定
-----------------------------------------------------*/
.cyousei_pc {
    padding: 0 0em;
}

/*--------------------------------------------------
sectionの設定
-----------------------------------------------------*/

.section_01 {
     background: url("../images/bg_concept.jpg")center ;
	background-color:rgba(255,255,255,0.8);
　　　background-blend-mode:lighten;
    background-attachment: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2em 0em 0em;
    margin-bottom: 3em;
}


.section_02 {
  background: url("../images/bg_office_sp.jpg");
	background-position: right 3%;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 2em 0em 0em;
    margin-bottom: 5em;
}

.section_03 {
    background-color: #ffffff;
    padding: 2em 0em;
    overflow: hidden;

}


.section_04 {
      background-color: #E7DDD3;
	background-image: url("../images/illust_idea.png");
	background-repeat: no-repeat;
	background-position: right 5%;
	background-size: 35%;
    padding: 2em 0em 2em;
}



.section_05 {
  position: relative;
  z-index: 0;
  overflow: hidden;
    padding: 3em 0em 4em;


    
}
.section_05::after{
  content: '';
  position: absolute;
  left:0;
  top: 0;
  transform: skewY(2deg);
  transform-origin: top right;
      background-color: #ffdb00;
    background-attachment: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4em 0em 0em ;
    transform:skew(0deg, -4deg);
  z-index: -1;
  width:100%;
  height:100%;
}


.section_06 {
    background-color: #EDECEC;
    background-attachment: top;
    background-size: cover;
    padding: 3em 0em;
}
.section_07 {
      background-color: #fff;
    padding: 0em 0em;
}

.section_08 {
    background: url("../images/bg_section08.jpg") left center;
    background-attachment: scroll;
    background-size: auto;
    padding: 2em 0em;
    
    }
	

.section_09 {
    background: url("../images/illust_study.png") ;
    background-repeat: no-repeat;
	background-size: 40%;
	background-position: right 100%;
    padding: 2em 0em;
}
    
.wrap_01{
	display:block;
	background-image: url("../images/ilust_soundproof.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 35%;
	
}



.wrap_02{
	display:block;
	background-image: url("../images/ilust_concentlate.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 35%;
}

.wrap_04{
	display:block;
	background-image: url("../images/illust_move.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 30%;
}

.wrap_05{
	display:block;
	background-image: url("../images/illust_windmill.png");
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 35%;
}
/*	
.wrap_06{
	background-image: url("../images/illust_study.png");
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 40%;
}*/
.f-container{
  display:block; 
}


.f-container-02{
  display:flex; 
}


.f-item{
width:100%;
margin-bottom:5em;	
}
	
.f-item-i{
width:100%;
margin-bottom:5em;	
}
	
	
p.text_indent{
	padding-left: 2em;
	text-indent: -2em;
}
/*--------------------------------------------------
CTAエリア
-----------------------------------------------------*/
.area_cta {
  padding: 1em 0em;
}
.area_cta_btn_inr {
  padding: 1em ;
}

/*--------------------------------------------------
悩み
-----------------------------------------------------*/
.img_nayami {
    padding: 0em 0.5em;
}
.kaiketu {
    margin-top: 2em;
}
/*--------------------------------------------------
創業融資について
-----------------------------------------------------*/

.skew0 {
    transform:skew(0deg, 4deg);
}

.midashi_kabe {
    width: 80%;
    margin: 0 auto;
    background: #000;
    padding: 1em;
}

.kabe {
    padding: 2em 0 ;
}

.kabe_img {
    float: none;
    width: 100%;
    padding-top: 6em;
    padding-right: 2em;
}

.kabe_text {
    float: none;
    width: 100%;
    padding: 1em;
}

.tuukariyu {
    padding: 2em 0.5em 0 ;
}

.img_tuukaritu {
    padding: 1em 0em;
}

/*--------------------------------------------------
満足度
-----------------------------------------------------*/
.brand {
      background: url("../images/bg_brand.jpg") 70% 50% ;
    background-repeat: no-repeat;
    padding: 2em 0em;
}


.manzokudo {
    background-color: #ffdb00;
    padding: 1em 0.5em;
}

.midashi_cyousei {
    padding: 2em 4em;
}


/*--------------------------------------------------
３つの特徴
-----------------------------------------------------*/
.tokucyou_wrap {
    padding: 1em 0em 0em;
        
}

.tokucyou_box01 {
    padding: 2em 0.5em ;
}

.tokucyou_box02 {
    padding: 2em 0.5em ;
}

.tokucyou_img {
    float: none;
    width: 100%;
    padding-top: 0.5em 0 ;
}

.tokucyou_text {
    float: none;
    width: 100%;
    padding-top: 2em;
}

.tokucyou_img02 {
    float: none;
    width: 100%;
    padding: 0.5em 0 ;
}


.tokucyou_text02 {
    float: none;
    width: 100%;
    padding-top: 2em;
}


/*--------------------------------------------------
無料コンサルの説明
-----------------------------------------------------*/
.answer_box {
    padding: 1em 0.5em;
    letter-spacing: 0.05em;
    margin-left: 10px;
      z-index:1;
    font-size:1.1em;
    font-weight: 600;
    }

.box_muryoukonsaru {
    margin: 2em 0.3em -3em;
    padding: 2em 0.2em 1em;
}


/*--------------------------------------------------
サービスの流れ
-----------------------------------------------------*/
.nagare_cyousei {
padding: 1em 0.5em 3em;
}


/*--------------------------------------------------
よくある質問
-----------------------------------------------------*/
.box_qa {
    margin: 3em 0.3em 2em;
    border: 1px solid #1a1a1a;
}

.box_qa_q {
    background-color: #fff;
    padding: 0.5em 0.2em 0em 2.2em;
    font-size: 1.1em;
    font-weight: bold;
    color: #f15a24;
}

.box_qa_a {
    background-color: #fff;
    font-weight: bold;
    padding: 0.5em 0.2em 0.5em 2.5em;
    border-bottom: 1px solid #ccc;
}

.box_qa_q p,
.box_qa_a p {
    text-indent: -2em;
}

/*--------------------------------------------------
テーブル設定
-----------------------------------------------------*/
 table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table th,table td{
  padding: 10px 5px;
  text-align: left;
}

table tr:nth-child(odd){
  background-color: #eee
}




/*--------------------------------------------------
フォーム
-----------------------------------------------------*/
/*テーブルタグ*/
.main-contents_table_01 {
    width: 95%;
    border-collapse: separate;
    border-spacing: 0px 1px;
    margin: 0 auto;
}

.main-contents_table_01 td {
    background-color: #f6f6f6;
    padding: 10px;
    text-align: left;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;


}

.main-contents_th_01 {
    background: #1a1a1a;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
    position: relative;
    color: #fff;
    font-weight: normal;
}




/*フォーム*/
input[type="text"] {
    width: 30%;
    height: 30px;
    text-align: left;
    margin: 0em 1em 0em 0.5em;

}

input[type="text_02"] {
    width: 60%;
    height: 30px;
    text-align: left;
    margin: 0 0em;
}

input[type="text_03"] {
    width: 15%;
    height: 30px;
    text-align: left;
    margin: 0 0.2em;
}

input[type="email"] {
    width: 80%;
    height: 30px;
    text-align: left;
    margin: 0.3em 0em;
}
.textarea_01 {
    width: 95%;
}

.Form-Item-Label-Required {
  border-radius: 6px;
  margin-left: 8px;
  width: 48px;
  line-height: 1.7em;
  display: inline-block;
  text-align: center;
  background: #d9534f;
  color: #fff;
  font-size: 75%;
}
@media screen and (max-width: 768px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}


/*ボタン*/
.btn-form01 {
  width: 80%;
  margin: 0 auto;
  padding: 1em 1em ;
  border: 1px solid #fff;
  font-size: 1.25em;
  background: #D80003;
  background: -moz-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ff3019 0%, #cf0404 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ff3019 0%, #cf0404 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #fff;
  border-radius: 10px;
}
.btn-form01:hover, .btn-form01:active, .btn-form01:focus {
  border: 1px solid #274A7D;
  background: -moz-linear-gradient(top, #ff402b 0%, #ff4530 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ff402b 0%, #ff4530 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ff402b 0%, #ff4530 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}


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