@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.w100 {font-weight: 100;}
.w200 {font-weight: 200;}
.w300 {font-weight: 300;}
.w400 {font-weight: 400;}
.w500 {font-weight: 500;}
.w700 {font-weight: 700;}
.w900 {font-weight: 900;}

/*--------------------------------------------------------------------
wrapper
--------------------------------------------------------------------*/
#wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------------
header
--------------------------------------------------------------------*/
#header {
	/*
    box-shadow: rgba(0, 0, 0, 0.180392) 0px 0px 2px 1px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.180392) 0px 0px 2px 1px;
    -moz-box-shadow: rgba(0, 0, 0, 0.180392) 0px 0px 2px 1px;
	*/
/*    position: fixed;*/
    width: 100%;
    text-align: left;
    z-index: 1000;
    display: block;
}
.header_inner {
    width: 100%;
    height: 55px;
    margin: 0 auto;
    position: relative;
	/*background: #FFF;*/
    background-color: rgba(255,255,255,0.8);
}
.header_inner .h_logo {
    position: absolute;
    left: 8px;
    top: 11px;
}
.header_inner .h_logo img {
    width: 50%;
    height: auto;
	border: 0;
    vertical-align: top;
}
#cost
,#worries
,#feature
,#example
,#service
,#staff
,#about
,#flow
,#nayami
,#yushi
{
	margin-top:-60px;
	padding-top:60px;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 10px;
  top   : 8px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #0042ad;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#0042ad;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#0042ad;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #333;
  background: rgb(255 255 255 / 100%);
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}

nav.globalMenuSp ul {
    margin: 50px auto;
    padding: 0;
    width: 70%;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    font-size: 1.2em;
	font-weight: bold;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
    display: block;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid;
    font-size: 0.9em;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}


/*--------------------------------------------------------------------
共通
--------------------------------------------------------------------*/
.text01 {
	margin: 0 4%;
	font-weight: 500;
	line-height: 1.8;
}
.title01 {
	font-size: 1.6em;
    font-weight: bold;
	line-height: 1.3;
    text-align: center;
	color: #0042ad;
    position: relative;
}
.title02 {
    font-size: 2em;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    color: #222222;
    letter-spacing: 1.6;
    position: relative;
}
.title01:after,.title02:after {
    content: "";
    display: block;
    position: absolute;
    width: 20%;
    height: 8px;
    border-bottom: 4px solid #0042ad;
    right: 40%;
    left: 40%;
}

/* 黄色マーカーアニメーション前のスタイル */
.js-marker {
  display: inline;
  position: relative;
  background-image: linear-gradient(90deg, #ffe763, #ffe763); /* 単色の場合は同じ色、グラデーションさせる場合は別々の色 */
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 40%; /* '30%'の部分にマーカーの太さを記入 */
  transition: all 1s ease-in-out; /* マーカーを引く速度を調整 */
  font-weight: bold; /* ついでに太字にしたい場合 */
  /* padding-left: 30px; */
}

/* 黄色マーカーアニメーション発火時 */
.js-marker.inview {
  background-size: 100% 40%; /* '30%'の部分は上で設定した太さに合わせる */
  /* padding-left: 30px; */
}

/*--------------------------------------------------------------------
 footer
--------------------------------------------------------------------*/
footer {
    padding: 2em 4% 3em;
    line-height: 1.8;
    display: block;
    border: 0;
    outline: 0;
    vertical-align: baseline;
}
footer .contacts .company {
    font-weight: bolder;
    vertical-align: middle;
    font-size: 1.2em;
}
footer .contacts .company img {
    vertical-align: middle;
    margin-right: 12px;
    max-width: 20%;
}
footer .contacts .telicon {
    float: left;
	float: left;
    max-width: 10%;
}
footer .contacts .tel {
    vertical-align: middle;
    font-size: 1.1em;
    font-weight: 700;
}

.copy {
    padding: 0.8em 0;
    font-size: 11rem;
}
.pagetop {
    position: fixed;
    right: 1px;
    bottom: 80px;
	z-index: 100;
}
.cp_text01{
	margin: 10px 0 0 0;
	line-height: 1.4em;
	font-size: 0.8em;
}
.cp_text02{
	text-align: left;
	padding: 0.5 4% 1em 4%;
	line-height: 1.4em;
}

/*--------------------------------------------------------------------
content
--------------------------------------------------------------------*/
content {
/*	padding-top: 55px;*/
	display: block;
}

/*--------------------------------------------------------------------
 List
--------------------------------------------------------------------*/
.num_list li {
    padding: 10px 0 10px 45px;
    border-bottom: dotted 2px #cacaca;
    margin-bottom: 5px;
}
.num_list .num01 {
    background: url(../images/common/list/num01.png) no-repeat;
}
.num_list .num02 {
    background: url(../images/common/list/num02.png) no-repeat;
}
.num_list .num03 {
    background: url(../images/common/list/num03.png) no-repeat;
}
.num_list .num04 {
    background: url(../images/common/list/num04.png) no-repeat;
}
.num_list .num05 {
    background: url(../images/common/list/num05.png) no-repeat;
}
.num_list .num06 {
    background: url(../images/common/list/num06.png) no-repeat;
}
.num_list .num07 {
    background: url(../images/common/list/num07.png) no-repeat;
}

.check_list li {
    padding: 0 0 10px 30px;
    border-bottom: dotted 2px #cacaca;
    margin-bottom: 5px;
	margin-top: 15px;
    background: url(../images/common/list/check01.png) no-repeat;
}

.diamond_list li {
    padding: 5px 0 10px 25px;
    line-height: 1.0;
    background: url(../images/common/list/diamond01.png) no-repeat;
}


.top_sec_b {
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 18rem;
	text-shadow: -1px -1px 0px #fff, 1px -1px 0px #fff, 1px 1px 0px #fff, -1px 1px 0px #fff, 1px 2px 3px rgba(0, 0, 0, 0.6);
}

.top_sec_c {
	font-weight: bold;
    font-size: 24rem;
    color: #c32d02;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 50px;
}


/*--------------------------------------------------------------------
 table
--------------------------------------------------------------------*/

.bg_gray {
    background: #e5e5e5 !important;
}
.bg_yellow {
    background: #ffffe2 !important;
}
.bg_green {
    background: #3dccaa !important;
}
.bg_blue {
    background: #0042ad !important;
}
.bg_white {
    background: #FFFFFF !important;
}


/*--------------------------------------------------------------------
 box
--------------------------------------------------------------------*/
.box01 {
    padding: 0.8em 0.5em;
    border: solid 1px #cacaca;
}

.title_box01 {
    padding: 0.5em 0;
    background: #005bad;
    border-top: solid 6px #7dacf3;
    color: #ffffff;
	font-weight: bold;
	font-size: 20rem;
    vertical-align: middle;
	text-align: center;
	line-height: 130%;
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/*--------------------------------------------------------------------
 透過白背景
--------------------------------------------------------------------*/
.area_frame{
	width:100%;
	margin : 0px auto;
	/*padding : 10px 0;*/
    background-color: rgba(255,255,255,0.7);
}
.area_in{
	margin : 0 auto;
	width:100%;
}
/*--------------------------------------------------------------------
　top
--------------------------------------------------------------------*/
.main_wrapper{
  background-color: #eef4fe;
}

.top_main {
	width: 100%;
	height: auto;
	position: relative;
}
.top_main img {
  width: 100%; /* divの幅に対する割合 */
}
.top_point{
  background: url(../images/top_waku.png) no-repeat;
  position: absolute;
  top: 53%;
  left: 0;
  background-size: 100% 100%;
  margin-left: 4%;
  padding: 20px 10px;
  width: calc(96% - 20px);
  /* min-height: 332px; */
  }
.top_main p {
    /* position: absolute; */
    /* width: 90%; */
    /* transform: translate(0,20%); */
    font-size: 23rem;
    font-weight: bold;
    line-height: 1.6;
    color: #000000;
    text-align: left;
    letter-spacing: -0.05em;
    left: 5%;
    margin-bottom: 8px;
}
.top_main p:before {
    content: '';
    width: 26px;
    height: 26px;
    background: url(../images/check01.png) no-repeat;
    margin-right: 10px;
    display: inline-block;
    transform: translateY(5px);
    background-size: contain;
}
.top_main p.top_text1 {
	/* top: 75%; */
}
.top_main p.top_text2 {
	/* top: 82%; */
}
.top_main p.top_text3 {
	/* top: 89%; */
}
.top_main p span.bg-wrap{
	color: #000000;
	background-image: linear-gradient(to right, #619cff, #619cff 2px, transparent 2px, transparent 6px);
	background-size: 6px 2px;
	background-position: left bottom;
	background-repeat: repeat-x;
	padding-bottom: 4px;
}
.top_main p span {
	font-weight: bold;
    color: #0042ad;
}
.top_main p span.text_s {
	font-size: 14rem;
}

.top_main .js-marker2{
    position: relative;
    padding: 0px 10px 0px 15px;
    z-index: 1;
    color: #0043ae;
    background-size: 0 90%;
    background-color: #ffe763;
}
.top_main .js-marker2:before {
	position: absolute;
	content: '';
	left: 0px;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 14px #fff;
	border-bottom: solid 37px transparent;
	z-index: 2;
}
.top_main .js-marker2:after {
	position: absolute;
	content: '';
	right: 0px;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 14px transparent;
	border-bottom: solid 37px #ffffff;
	z-index: 2;
}

@media (max-width: 375px) {
	.top_main p {
		font-size: 21rem;
	}
	.top_main .js-marker2:before {
    border-bottom: solid 33px transparent;
}
	.top_main .js-marker2:after {
    border-bottom: solid 33px #fff;
}
}


/*--------------------------------------------------------------------
 無料相談で疑問を解決
--------------------------------------------------------------------*/
.message_area {
    background-color: #eef4fe;
    padding: 0 0 40px 0;
    margin-top: -32%;
}
.message_area_in{
	width:94%;
	margin : 0 auto;
}

.message_area img.lien,
.message_area img.mail {
	width: 46%;
    padding: 0 5px;
}

/*--------------------------------------------------------------------
 設立費用
--------------------------------------------------------------------*/

.cost_tit {
    margin: 0 4%;
}




/*--------------------------------------------------------------------
 起業後にあるよるあるお悩み
--------------------------------------------------------------------*/
.worries_area {
    background-size: auto 100%;
	padding : 10px 0;
}
.worries_area .jijitsu {
	max-width: 25%;
	margin: 0 auto;
}
.worries_area .support {
	font-size: 1.6em;
    font-weight: bold;
	color: #0042ad;
}
.w_text01 {
    position: relative;
}
.w_text01 p {
    position: absolute;
    left: 30%;
    top: 46%;
    transform: translate(0%,50%);
    font-size: 20rem;
    font-weight: bold;
    line-height: 1.3;
    color: #0042ad;
}
.w_text01 img {
    width: 100%;
}
.w_text02 {
    font-size: 26rem;
}
@media (max-width: 375px) {
	.w_text01 p {
    left: 28%;
    top: 45%;
    font-size: 19rem;
}
	.w_text02 {
    font-size: 24rem;
	}
}

/*--------------------------------------------------------------------
 会社設立の特徴
--------------------------------------------------------------------*/
.feature_area {
    background-size: auto 100%;
	padding : 10px 0;
}
.point {
	display: flex;
	margin: 0 4%;
	font-weight: 500;
	line-height: 1.8;
}
.point_img {
	width: 22%;
	min-width: 76px;
}
.point .title {
	text-align: left;
	font-weight: bold;
	font-size: 2em;
	padding-left: 4%;
	line-height: 1.2;
	color: #000;
	letter-spacing: 1.1px;
}
.point .title_02 {
    text-align: left;
    font-weight: bold;
    font-size: 1.6em;
    padding-left: 4%;
    line-height: 1.2;
    color: #000;
    /* letter-spacing: 1.1px; */
    /* letter-spacing: -0.05em; */
}
.point .title span,
.point .title_02 span{
	color: #0042ad;
    font-size: 0.6em;
}
span.linear_y {
    background: linear-gradient(transparent 60%, #ffe763 0%);
}
/* タブ　*/
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
}
.tab-label {
    width: 42%;
    color: #333333;
    background: #fff;
    font-weight: bold;
    white-space: nowrap;
    text-align: center;
    border: 2px solid #0042ad;
    border-radius: 4px 4px 0 0;
    margin: 5px 1% -2px 1%;
    padding: 10px 0.5em 10px;
    order: -1;
    position: relative;
    z-index: 1;
    cursor: pointer;
    float: left;
    font-size: 1.1em;
	box-sizing: border-box;
	transition: all 0.5s 0s ease;
}
.tab_t01 {
	margin-left: 7%;
}
.tab_t02 {
	margin-right: 7%;
}
.tab-content {
  display:none;
}
.godo_title1 {
	color: #0042ad;
    font-size: 0.66em;
    line-height: 2em;
}
.godo_title2 {
    line-height: 0.9em;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    color: #0042ad;
    background: #eef4fe;
    border-bottom-color: #eef4fe;
}
.tab-switch:checked+.tab-label+.tab-content {
    width: 100%;
    padding: 25px 0 0 0;
    border-top: 2px solid #0042ad;
    display: block;
    background: #eef4fe;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

/*料金表*/
.cost_tbl01 {
    border: 1px solid #cacaca;
    border-collapse: collapse;
    background: #FFF;
    margin: 0 auto;
    font-size: 12px;
	width: 92%;
}
.cost_tbl01 .th00 {
    width: 15%;
    border: 1px solid #cacaca;
}
.cost_tbl01 .th01, .cost_tbl01 .th02, .cost_tbl01 .th03 {
    width: 20%;
    padding: 0;
    vertical-align: middle;
    border: 1px solid #cacaca;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: normal;
}
.cost_tbl01 .th01 {
	width: 18%;
}
.cost_tbl01 .th03 {
	color: #fff;
    letter-spacing: -0.1em;
}
.cost_tbl01 .th_col_tit {
    padding: 0;
    background: #e5e5e5;
    border: 1px solid #cacaca;
    font-weight: normal;
	line-height: 1.2em;
}
.cost_tbl01 .th_col_tit02 {
    padding: 0;
    background: #e5e5e5;
    border: 1px solid #cacaca;
    font-weight: bold;
	color: #024eae;
	font-size: 1.3em;
}
.cost_tbl01 td {
    padding: 0 2px 0 0;
    border: 1px solid #cacaca;
    text-align: center;
    background: #FFF;
    height: 40px;
    font-size: 1.3em;
}
.txt_sml {
    font-size: 11px;
}
.col_blue {
  border: solid 3px #0042ad;
}
.txt_0 {
	color: #024eae;
	line-height: 1.1em;
}
.text_cost {
	padding-bottom: 5px;
    background-color: #fff;
}
.text_cost1 {
	background: #fff;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 1.3;
    color: #0042ad;
}
.text_cost2 {
    font-size: 1.4em;
}
.text_cost3 {
	font-size: 0.9em;
}
.text_cost4 {
	background: #fff;
	padding-top: 10px;
}
.text_cost4 img {
	width: 16%;
}

.ribon_tit{
  background: #0042ad;
  padding: 10px 0;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  font-size: 1.6em;
  position: relative;
}
.ribon_tit::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 20px rgb(215, 224, 240);
}
.ribon_tit::after {
  position: absolute;
  content: '';
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-left: solid 20px rgb(215, 224, 240);
}
.koushi_box{
  background-image: url(../images/koushi_bg.gif);
  border-left: 2px solid #0042ad;
  position: relative;
  padding: 40px 3% 40px 3%;
  margin: 0 4%;
  border-right: 2px solid #0042ad;
  border-bottom: 2px solid #0042ad;
  /* z-index: -1; */
}
.koushi_box ul li{
  margin-bottom: 10px;
  background: url(../images/check01.png) left 5px no-repeat;
  background-size: 20px;
  padding-left: 25px;
}
.koushi_01 {
  padding: 20px 3% 50px 3%;
}
/*創業融資サポート*/
.yushi_wrapper{
  position: relative;
  margin-bottom: 140px;
}
.yushi_img01{
  position: absolute;
  bottom: -115px;
  left:0;
  width: 219px;
  margin-top: -30px;
  /* z-index: 100; */
}


/*日本最大級の士業グループ*/
.g_text01 {
  position: relative;
}
.g_text01 img {
  width: 100%; /* divの幅に対する割合 */
}
.g_text01 p {
    position: absolute;
    left: 33%;
    top: 36%;
    transform: translate(-50%,-50%);
    font-size: 25rem;
    font-weight: bold;
    line-height: 1.3;
    color: #0042ad;
}

/*--------------------------------------------------------------------
 会社設立の流れ
--------------------------------------------------------------------*/
.flow_area .area_in{
  position: relative;
}
.flow_chart {
  background: url(../images/flow_img02.png)left top no-repeat;
  background-size: contain;
  margin: 30px 0 0 0;
}
.flow_titimg{
  width: 30%;
  position: absolute;
  top: -6%;
  left: 2%;
  z-index: 100;
  display: block;
}
.flow_tit{
  padding-left: 24%;
}

.flow_arrow {
    width: 12%;
}
.flow_step {
    width: 20%;
}
.flow_txt {
  width: 76%;
  margin-left: 24%;
}
.flow_txt dl{
  /* padding: 0 0 0 20px; */
  border-left:4px solid #0042ad;
  position: relative;
  margin: 0;
}
.flow_txt dl:last-child{
  border: none;
  margin-left: 4px !important;
}
.flow_step01::before,.flow_step02::before,.flow_step03::before,.flow_step04::before{
  content: "";
  display: block;
  width: 53px;
  height: 54px;
  position: absolute;
  left: -26px;
}
.flow_step01::before{
  background: url(../images/flow_step01.png)left top no-repeat;
    background-size: 53px;

}
.flow_step02::before{
  background: url(../images/flow_step02.png) left top no-repeat;
    background-size: 53px;

}
.flow_step03::before{
  background: url(../images/flow_step03.png) left top no-repeat;
    background-size: 53px;

}

.flow_step04::before{
  background: url(../images/flow_step04.png) left top no-repeat;
    background-size: 53px;

}

.flow_txt dd{
    margin: 0;
    font-size: 0.85em;
    padding-bottom: 30px;
    padding-left: 40px;
}
.flow_txt dd:last-child{
    /* padding-bottom: 0; */
}
.flow_txt dt{
      margin-left: 40px;
}
.flow_bil {
    width: 35%;
}

.flow_text {
	font-size: 1.2em;
    font-weight: bold;
    color: #0042ad;
}
/*--------------------------------------------------------------------
 オンライン会社設立はなぜ難しいの？
--------------------------------------------------------------------*/
.nayami_box{
  margin: 0 4%;
}
.nayami_box_in{
  background: url(../images/nayami_bg.png)no-repeat;
  margin: -20px 0 40px 0;
  background-size: 100% 100%;
  padding: 30px;
}
.nayami_txt01{
  font-size: 19rem;
  color: #0042ad;
  font-weight: bold;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------------
 クラウド会社設立とベンチャーサポート設立の比較		
--------------------------------------------------------------------*/
.llc_tbl01 {
    border: 1px solid #cacaca;
    border-collapse: collapse;
    background: #FFF;
    margin: 0 auto;
    font-size: 14px;
	width: 92%;
}
.llc_tbl01 .th00 {
    width: 20%;
    border: 1px solid #cacaca;
}
.llc_tbl01 .th01 {
	width: 40%;
    border: 1px solid #cacaca;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}
.bg_blue {
    background: #0042ad !important;
}
.llc_tbl01 td {
    padding: 2px;
    border: 1px solid #cacaca;
    text-align: center;
    height: 80px;
}
.bg_gray {
    background: #e5e5e5 !important;
}
.bg_triangle {
    background: url(../images/common/icon/table_triangle.gif) no-repeat center center;
    background-size: 50px 50px;
}
.bg_circle {
    background: url(../images/common/icon/table_circle.gif) no-repeat center center;
    background-size: 50px 50px;
}
.bg_doble {
    background: url(../images/common/icon/table_doble.gif) no-repeat center center;
    background-size: 50px 50px;
}
.bg_batu {
    background: url(../images/common/icon/table_batu.gif) no-repeat center center;
    background-size: 50px 50px;
}

/*--------------------------------------------------------------------
 こんなご相談にも対応いたします
--------------------------------------------------------------------*/
.example_area {
    background: url(../images/differences/differences_bg.jpg);
    background-size: auto 100%;
	padding : 10px 0;
}

/*--------------------------------------------------------------------
 税務顧問サービス
--------------------------------------------------------------------*/
.service_area {
    background: url(../images/financing/financing_bg.jpg);
    background-size: auto 100%;
	padding : 10px 0;
}
.seminar_contact_box {
    border: #0042ad 2px solid;
    margin-bottom: 2em;
    margin-top: 2em;
}
.seminar_contact_title {
    background: #0042ad;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.3em;
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
}
.seminar_contact_title p {
    line-height: 1.4;
    text-align: center;
}
.seminar_contact_title p span {
	font-size: 0.8em;
    font-weight: 400;
}
img.size-full {
    max-width: 97.5%;
    width: auto;
    height: auto;
}
.seminar_contact_in {
    background: url(../images/seminar_box_bg.gif);
    padding: 20px 5%;
}
.seminar_contact_in p {
    font-weight: 700;
    line-height: 1.5;
}
.osusume {
	position: absolute;
    width: 100%;
    max-width: 20%;
    margin-top: -20px;
    left: 13%;
}

/*--------------------------------------------------------------------
 口コミ
--------------------------------------------------------------------*/
.kuchikomi_area {
  margin: 0 4%;
}
.sanbiru,.hankyuumeda,.nanba {
  position: relative;
}
.kuchikomi_area a {
    position: absolute;
    bottom: 2px;
    right: 2px;
    display: inline-block;
    background: #90bce3;
    color: #FFF;
    padding: 0.6em 1.5em;
    font-size: .6em;
    text-decoration: underline;
}
.kuchikomi_txt01 {
    font-size: 16rem;
    color: #0042ad;
    font-weight: bold;
    margin-bottom: 5px;
}

/*--------------------------------------------------------------------
 スタッフ紹介
--------------------------------------------------------------------*/
.staff_area {
  background-size: auto 100%;
  padding : 10px 0;
}
/*==================================================
スライダーのためのcss
===================================*/
.staff_m {
	display: flex;
    align-items: flex-end;
    justify-content: flex-end;
	margin: 0 4%;
}
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:0 auto;
}
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}
/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
    margin:0 5px;
	height: auto;
}
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    top: 40%;
    position: absolute;
    cursor: pointer;
    width: 40px;
    height: 40px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #0042ab;
}
.slick-prev:before, 
.slick-next:before {
	content:'';
	position:absolute;
	width:10px;
	height:10px;
	border-left: 3px solid white;
    border-bottom: 3px solid white;
}
.slick-prev {/*戻る矢印の位置と形状*/
    left: -3%;
    z-index: 100;
}
.slick-prev:before {
	top: calc(50% - 7px);
    left: calc(50% - 4px);
    transform: rotate(45deg);
}
.slick-next {/*次へ矢印の位置と形状*/
    right: -3%;
    z-index: 100;
}
.slick-next:before {
	top:calc(50% - 7px);
	right:calc(50% - 6px);
	transform:rotate(-135deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
    text-align: center;
    margin: 10px 0 0 0;
}
.slick-dots li {
    display:inline-block;
	margin:0 5px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
	padding: 0;
	border: 1px #ccc solid;
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}
/*--------------------------------------------------------------------
 会社概要
--------------------------------------------------------------------*/
.about_area {
    background-color: #eef4fe;
    background-size: auto 100%;
	padding : 40px 0;
}
.about_us {
    padding: 0 4%;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.6;
}
.font_B {
	color: #0042ad;
}
hr.about_line {
	border-top: 1px solid #8c8b8b;
	margin: 20px 0;
}
.about_list {
	margin: 20px 0;
}
.about_area p.googlemap {
	background: url("../images/map.png");
	background-size: contain;
	background-repeat: no-repeat;
	padding-left: 20px;
}
.about_area p.googlemap span {
	border-bottom: 1px solid;
}
.about_area p.googlemap a:visited {
	color: cornflowerblue;
}

/*--------------------------------------------------------------------
 レスポンシブ下部固定
--------------------------------------------------------------------*/
.ft_contact {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 10000;
    border-top: 1px solid #bfbfbf;
	background: #eef4fe;
}
.ft_contact .ft_con {
    display: flex;
}
.ft_contact .ft_con a {
    width: 100%;
    padding: 1px 0;
    margin: 0 auto;
    display: block;
    text-align: center;
    min-height: 1px;
}
.ft_contact .ft_con img {
    max-width: 85%;
    max-height: 50px;
    height: auto;
    margin: 5px 0;
    vertical-align: middle;
}

/*LINEあり*/
.ft_text {
    padding: 15px 0 0 0;
    width: 28%;
    background: #eef4fe;
    height: 30px;
}
.ft_line {
    width: 26%;
    background: #06c755;
    padding: 5px 0 3px 0;
}
.ft_mail {
	width: 26%;
    background: #46cbc8;
    padding: 10px 0 0 0;
}
.ft_tel {
	width: 26%;
    background-color: #0042ad;
    padding: 4px 0 0 0;
}
.ft_line img {
    width: 32%;
}
.ft_mail img {
	width: 30%;
}
.ft_tel img {
	width: 25%;
}


/*　LINEなし
.ft_text {
    padding: 12px 0 0 0;
    width: 40%;
    background: #eef4fe;
    height: 30px;
}
.ft_mail {
	width: 30%;
    background: #46cbc8;
    padding: 10px 0 0 0;
}
.ft_tel {
	width: 30%;
    background-color: #0042ad;
    padding: 5px 0 3px 0;
}
.ft_mail img {
	width: 25%;
}
.ft_tel img {
	width: 20%;
}
*/

/*--------------------------------------------------------------------
 お問い合わせ
--------------------------------------------------------------------*/
.form_area {
	padding : 10px 0;
}

#form .form {
	line-height: 220%;
	width: 96%;
	margin: 1em auto 0 auto;
}
/*#form form input{
	width: 100%;
	height: 3em;
	margin-bottom: 1em;
}*/
	
#form form input[type="text"], #form form input[type="tel"] {
	width: 100%;
	height: 3em;
	margin-bottom: 1em;
}
.must {
	padding: 3px;
	background: #024eae;
	color: #FFF;
	border-radius: 4px;
	margin-right: 6px;
	font-size: 12rem;
}
.nini {
	padding: 3px;
	background: #626262;
	color: #FFF;
	border-radius: 4px;
	margin-right: 6px;
	font-size: 12rem;
}
#form form textarea {
	width: 100%;
	height: 12em;
}
#form hr {
	height: 1px;
	background-color: #d9d9d9;
	border: none;
	color: #d9d9d9;
}
.form_sec01 {
	width: 96%;
	margin: 1em auto;
	text-align: center;
	font-size: 18rem;
	color: #024eae;
}
.form_sec01 ul {
	width: 300px;
	margin: 0 auto 0.5em auto;
	padding-left: 10px;
}
.form_sec01 ul li {
	list-style: none;
	float: left;
	padding-right: 10px;
}
#form form input.submit_button {
	font-size: 22px !important;
	width: 100%;
	height: 60px !important;
	color: #024eae;
	font-weight: bold;
	background: #ffffff;
	background: url(../images/common/icon/arrow02.gif) no-repeat 90% center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, #f1f1f1), color-stop(51%, #e1e1e1), color-stop(100%, #f6f6f6));
	background: url(../images/common/icon/arrow02.gif) no-repeat 90% center, -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	border: #dadbdd 1px solid;
	border-radius: 10px;
	-webkit-box-shadow: #ccc 0px 3px 4px;
	box-shadow: #ccc 0px 3px 4px;
}
#form form input.correct_button {
	width: 100%;
	font-size: 22px !important;
	height: 60px !important;
	color: #333;
	font-weight: bold;
	background: #ffffff;
	background: url(../images/common/icon/arrow02.gif) no-repeat 90% center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(50%, #f1f1f1), color-stop(51%, #e1e1e1), color-stop(100%, #f6f6f6));
	background: url(../images/common/icon/arrow02.gif) no-repeat 90% center, -webkit-linear-gradient(top, #ffffff 0%, #f1f1f1 50%, #e1e1e1 51%, #f6f6f6 100%);
	border: #dadbdd 1px solid;
	border-radius: 10px;
	-webkit-box-shadow: #ccc 0px 3px 4px;
	box-shadow: #ccc 0px 3px 4px;
}
#form form h4 {
	font-size: 16rem;
	font-weight: bold;
	margin-bottom: 10px;
}
#footer_nav {
    background-image: url(../images/common/icon/bg01.gif);
    background-size: auto 8px;
    background-repeat: repeat-x;
    padding-top: 8px;
    font-size: 14rem;
    margin-bottom: 1.5em;
}
#footer_nav a {
    display: block;
    color: #024eae;
    padding: 1em 4%;
    background: #fbfdfe;
    background: url(../images/common/icon/arrow02.gif) no-repeat 96% center, -webkit-gradient(linear, 0 0, 0 bottom, from(#fbfdfe), to(#E2ECF5));
    background: url(../images/common/icon/arrow02.gif) no-repeat 96% center, -webkit-linear-gradient(#fbfdfe, #E2ECF5);
    background-size: 8px 12px, 100% 100%;
}

.form_area_frame {
    width: 92%;
    margin: 0px 4%;
    padding: 10px 0;
    background-color: #eef4fea6;
}

.form_area {
    background: url(../images/seminar_box_bg.gif);
    /* background-size: auto 100%; */
    padding: 10px 0;
    background-repeat: inherit;
}
.form_sec01 {
    width: 310px;
    margin: 10px auto;
	vertical-align: middle;
}
.form_l{
    float: left;
}
.form_r{
    float: left;
	padding: 10px 0 0 7px;
}
/*--------------------------------------------------------------------
　アコーディオン
--------------------------------------------------------------------*/

.acd_wapper *, .acd_wapper *:before, .acd_wapper *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.acd_wapper {
	position: relative;
	/* margin: 0 -20px; */
	margin-bottom: 100px;
}
.acd_wapper label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 150px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgb(250 252 252 / 0%) 0%, rgb(255 255 255 / 95%) 90%);
}
.acd_wapper input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.acd_wapper label:after {
	/* line-height: 2.5rem; */
	position: absolute;
	z-index: 2;
	bottom: -40px;
	left: 50%;
	width: 60%;
	display: block;
	padding: 10px;
	font-family: "Font Awesome 5 Free";
	content: "\f13a"" 続きを読む";
	transform: translate(-50%, 0);
	/* letter-spacing: 0.05em; */
	color: #0042ad;
	border: 2px solid #0042ad;
	border-radius: 40px;
	background-color: #eef4fe;
	font-style: normal;
	font-weight: 900;
	font-variant: normal;
	text-rendering: auto;
}
.acd_wapper input {
	display: none;
}
.acd_wapper .acd_area {
	overflow: hidden;
	height: 150px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s 0s ease;
}
.acd_wapper input:checked + label:after {
	font-family: "Font Awesome 5 Free";
  content:"\f139"" 閉じる";
}
.acd_wapper input:checked ~ .acd_area {
	height: auto;
	/* padding-bottom: 80px; */ /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s 0s ease;
}


/*--------------------------------------------------------------------
　特定創業支援
--------------------------------------------------------------------*/
.tokuso {
	background-color: #eef4fe;
  padding: 20px 0;
}
.tokuso_list li {
  border-bottom: 1px dashed #0042ad;
  position: relative;
  padding-left: 20px;
}
.tokuso_list li:before {
  content: "";
  position: absolute;
  top: .5em;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #f4cd1e;
  border-radius: 50%;
}