@charset "UTF-8";


:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}




/* フォーム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 16px;}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 150px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #0FA0CE;
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 500; }
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


/* リスト
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 0;
  margin-top: 0; }
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }
li {
  margin-bottom: 1rem; }


/* コード
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }


/* テーブル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
	border-collapse: collapse; }
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1; }
th:first-child,
td:first-child {
  padding-left: 0; }
th:last-child,
td:last-child {
  padding-right: 0; }


/* スペース
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 1rem; }


/* 全幅
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.full-width {
  width: 100%;
  box-sizing: border-box; }
.max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.pull-right {
  float: right; }
.pull-left {
  float: left; }


/* 罫線
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1; 
}



/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #000;
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    background:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin:0;
	padding:0;
}

/* グリッド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}
/* ブロックを縦に表示 */
.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

/*.col {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}*/
/* 768px以上の表示 */
@media ( min-width : 768px ) {
.row {
    display: flex;
    flex-direction: row;
    padding: 0;
}
.col {
    margin-left: 4%;
}
	
.col:first-child { 
    margin-left: 0; 
}

.row .col.span-1 {
    flex: 0 0 4.66666666667%;
    max-width: 4.66666666667%;
}
.row .col.span-2 {
    flex: 0 0 13.3333333333%;
    max-width: 13.3333333333%;
}
.row .col.span-3 {
    flex: 0 0 22%;
    max-width: 22%;
}
.row .col.span-4 {
    flex: 0 0 30.6666666667%;
    max-width: 30.6666666667%;
}
.row .col.span-5 {
    flex: 0 0 39.3333333333%;
    max-width: 39.3333333333%;
}
.row .col.span-6 {
    flex: 0 0 48%;
    max-width: 48%;
}
.row .col.span-7 {
    flex: 0 0 56.6666666667%;
    max-width: 56.6666666667%;
}
.row .col.span-8 {
    flex: 0 0 65.3333333333%;
    max-width: 65.3333333333%;
}
.row .col.span-9 {
    flex: 0 0 74.0%;
    max-width: 74.0%;
}
.row .col.span-10 {
    flex: 0 0 82.6666666667%;
    max-width: 82.6666666667%;
}
.row .col.span-11 {
    flex: 0 0 91.3333333333%;
    max-width: 91.3333333333%;
}
.row .col.span-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

/* オフセット */
.row .col.offset-1 {
    margin-left: 8.66666666667%;
}
.row .col.offset-2 {
    margin-left: 17.3333333333%;
}
.row .col.offset-3 {
    margin-left: 26%;
}
.row .col.offset-4 {
    margin-left: 34.6666666667%;
}
.row .col.offset-5 {
    margin-left: 43.333333333%;
}
.row .col.offset-6 {
    margin-left: 52%;
}
.row .col.offset-7 {
    margin-left: 60.6666666667%;
}
.row .col.offset-8 {
    margin-left: 69.3333333333%;
}
.row .col.offset-9 {
    margin-left: 78.0%;
}
.row .col.offset-10 {
    margin-left: 86.6666666667%;
}
.row .col.offset-11 {
    margin-left: 95.3333333333%;
}    
}


/* 見出し
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;}

h2 { font-size: 3.0rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 2.8rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }

/* PC表示 */
@media (min-width: 550px) {
/*h1 { font-size: 3.0rem; }*/
  h2 { font-size: 2.8rem; }
  h3 { font-size: 2.5rem; }
  h4 { font-size: 2.0rem; }
  h5 { font-size: 1.8rem; }
  h6 { font-size: 1.5rem; }
}

p {
  margin-top: 0; }


/* リンク
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #0080ff; }
a:hover {
  color: #0FA0CE; }


/* ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #333;
  border-color: #888;
  outline: 0; }




.siryo_dl_btn,.inquily_btn{
margin:0 auto;
  max-width: 500px;
  width: 50%;
margin-bottom:3em;
}
.siryo_dl_btn a{
margin: 0 auto;
padding:0.3em;
font-size: 18px;
font-weight:bold;
border:3px solid #EC1C24;
background-color: #EC1C24;
color: #FFF;
transition: 0.3s;
text-align:center;
border-radius: 5px;
}
.siryo_dl_btn a::after {
}
.siryo_dl_btn a:hover {
text-decoration: none;
background-color: #FFF;
border:3px solid #EC1C24;
color: #EC1C24;
}

.inquily_btn a {
  margin: 0 auto;
  padding:0.3em;

  color: #fff;
  font-size: 18px;
  font-weight:bold;
  background-color: #EC1C24;
border:3px solid #EC1C24;
  transition: 0.3s;
text-align:center;
border-radius: 5px;
}
.inquily_btn a::after {
}
.inquily_btn a:hover {
  text-decoration: none;
  background-color: #fff;
border:3px solid #EC1C24;
color: #EC1C24;
}



/*ヘッダー
-------------------------------------*/

header {
padding: 10px 0;
}

.header {
display: flex;
justify-content: space-between;
flex-direction: row;
}

h1 { 
font-size: 1.8em;
line-height: 1.2;
text-align:left;
}

.header-btn{
max-width: 200px;
width: 30%;
}
.header-btn a {
margin: 0 auto;
padding:0.3em;
color: #fff;
font-size: 18px;
font-weight:bold;
background-color: #1db569;
border:3px solid #1db569;
transition: 0.3s;
text-align:center;
}
.header-btn a::after {
}
.header-btn a:hover {
text-decoration: none;
background-color: #fff;
border:3px solid #1db569;
color: #1db569;
}

/* PC表示 */

    
/*メイン画像
-------------------------------------*/
.mainimg {
height: 500px;
background: url(../images/katuyoshien_researchsociety_img/bg_mainimg.jpg) 0 bottom no-repeat;
background-size: cover;
}
.mainimg .txt {
width: 900px;
margin: 0 auto;
padding-top: 100px;

color: #FFF;
font-weight: bold;
}
.mainimg .txt01 { font-size: 4rem; }
.mainimg .txt02 { font-size: 2rem; }
.mainimg .txt03 a {
width: 200px;
color: #fff;
font-size: 18px;
font-weight:bold;
background-color: #1db569;
border:3px solid #1db569;
transition: 0.3s;
text-align:center;
border-radius: 5px;
padding:0.3em;
margin-top: 3rem;
}
.mainimg .txt03 a:hover {
text-decoration: none;
background-color: #fff;
border:3px solid #1db569;
color: #1db569;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 2rem 0 0 0;
}
section {
	margin: 5rem 0;
	padding: 3rem 0;
}

/*キャッチコピー
-------------------------------------*/
.catch p{
width:60%;
    text-align: center;
font-size:1.2em;
margin:0 auto;
}
.center {
text-align: center;
margin-bottom: 4rem;
}

.mainttl01 {
text-align: center;
font-weight: bold;
margin-bottom: 4rem;
}
.mainttl02 {
text-align: left;
font-weight: bold;
margin-bottom: 8rem;
}
.mainttl02 .under {
background: url(../images/katuyoshien_researchsociety_img/under.png) 0 bottom no-repeat;
padding-bottom: 10px;
}


.chapter01,.chapter02,.chapter03,
.chapter04,.chapter05,.chapter06 {
width: 800px;
}

/* chapter01 : 助成金・補助金活用支援 研究会とは
-------------------------------------*/
.chapter01 {
text-align: left;
}


/* chapter02 : 取組内容
-------------------------------------*/
.chapter02 ul {
display:flex;
list-style: none;
text-align: left;
}
.chapter02 ul.even li:first-child {
order: 2;
}
.chapter02 li {
margin-bottom: 4rem;
}
.chapter02 li.img {
width: 100%;
}
.chapter02 li.img { margin: 0 20px; }
.chapter02 li p:first-child {
font-weight: bold;
}
.chapter02 li p.point04 {
background: url(../images/katuyoshien_researchsociety_img/icon_point01.png) no-repeat;
padding-left: 50px;
}
.chapter02 li p.point01 {
background: url(../images/katuyoshien_researchsociety_img/icon_point02.png) no-repeat;
padding-left: 50px;
}
.chapter02 li p.point02 {
background: url(../images/katuyoshien_researchsociety_img/icon_point03.png) no-repeat;
padding-left: 50px;
}
.chapter02 li p.point03 {
background: url(../images/katuyoshien_researchsociety_img/icon_point04.png) no-repeat;
padding-left: 50px;
}


/* chapter03 : 研究会概要
-------------------------------------*/
.chapter03 table {
width: 100%;
border-collapse: separate;
}
.chapter03 th,.chapter03 td {
border-bottom: 2px solid #e6e6e6;
}
.chapter03 th {
background: #e6e6e6;
text-align: center;
padding: 20px;
}
.chapter03 td {
padding: 20px;
}


/* chapter04 : 代表紹介
-------------------------------------*/
.chapter04 ul {
display:flex;
list-style: none;
text-align: left;
}
.chapter04 li {
margin-bottom: 4rem;
}
.chapter04 li.img {
width: 100%;
}
.chapter04 li.img { margin: 0 20px; }
.chapter04 li p:first-child {
font-weight: bold;
}


/* chapter05 : 書籍
-------------------------------------*/
.chapter05 ul {
display:flex;
list-style: none;
text-align: left;
}
.chapter05 li {
margin-bottom: 4rem;
}
.chapter05 li.item01 {
width: 18%;
margin: 0 40px;
}
.chapter05 li.item02 {
width: 82%;
}
.chapter05 li p:first-child {
font-weight: bold;
}


/* chapter06 : お問い合わせ
-------------------------------------*/
.chapter06bg {
background-size: cover;
background: url(../images/katuyoshien_researchsociety_img/bg_form.png) top center no-repeat;
color: #FFF;
}
.chapter06 {
padding-top: 50px;
}
.chapter06 ul {
list-style: none;
text-align: left;
}
.chapter06 form {
width: 500px;
margin: 0 auto;
}
.chapter06 form input {
width: 100%;
border-radius: 5px;
padding: 10px;
}
.chapter06 form input,.chapter06 form textarea {
width: 100%;
border-radius: 5px;
padding: 10px;
}
.chapter06 form .btn-submit {
width: 200px;
color: #fff;
font-size: 18px;
font-weight:bold;
background-color: #1db569;
border:3px solid #1db569;
transition: 0.3s;
text-align:center;
border-radius: 5px;
padding: 0 !important;
}
.chapter06 form .btn-submit:hover {
text-decoration: none;
background-color: #fff;
border:3px solid #1db569;
color: #1db569;
}











/*よくあるご質問
-------------------------------------*/

.faq{
width:80%;
margin:0 auto;
}
.qanda{
margin:3em;
}
span.qanda_q {
color:#F6921E;
font-weight:bold;
}
span.qanda_a {
color:#0071BB;
font-weight:bold;
}

/*問い合わせボタン
-------------------------------------*/
.pc_tel{
margin:0 auto;
text-align:center;
}


/*フッター
-------------------------------------*/
footer {
background-color: #FFF; 
padding: 2rem 0;
color:#000;
}
footer .footer_wrap li {
	padding: 0 10px;
	list-style: none;
	font-size: 12px;
}

footer .footer_flx {
	display: flex;
	justify-content: center;
	align-items: center;
}
footer img {
	width: 70%;
}

#footer_text a:link {
	color: #fff;
	text-decoration: none;
}
#footer_text a:visited {
	color: #fff;
	text-decoration: none;
}
#footer_text a:hover {
	color: #fff;
	text-decoration: underline;
}
#footer_text a:active {
	color: #fff;
	text-decoration: none;
}



#lp_pankuzu {

display:flex;
justify-content: center;
  text-align: center;
  font-size: 0.8em;
  margin: 20px auto;
}

#lp_com_info{
text-align:center;
}

.copyright {
    text-align: center;
    padding: 1rem 0;
}



/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: var(--base-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background-color: var(--link-color);
}


@media all and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;

background-color:#f7f7f7;
}
#navi ul li{
width:50px;
padding:0.5em;
margin:0;
}
#navi ul li a{
color:#555;
}

.sp_tel{
    display: none !important;
}

}
/* スマホ表示 */
@media all and (max-width: 768px){
.header {
	flex-direction: column;
    margin:10px 0 10px;
padding:0;
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}

h2{
font-size:1.6em!important;
}
h3,h4{
font-size:1em!important;
}
#header_title{
width:100px!important;
}
.pc_header_tel{
display:none;
}
.header-btn{
width:80%!important;
margin:10px auto;
}


/*スマホ版ナビボタン
-------------------------------------*/
nav ul {
	flex-direction: column;
}
#navi ul li{
font-size:1em;
}
#navi ul li a{
color:#555;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}

.catch p{
width:90%!important;
font-size:1em!important;
}
section{
margin: 2rem 0!important;
}
.nayami img{
display: none;
}
p.siryo_box{
width:90%!important;
font-size:0.8em!important;
}
.siryo_dl_btn{
width:90%!important;
}


/*メイン画像
-------------------------------------*/
.mainimg {
height: 400px;
padding: 0 20px;
}
.mainimg .txt {
width: 100%;
margin: 0 auto;
}
.mainimg .txt01 { font-size: 3.2rem; }
.mainimg .txt02 { font-size: 1.6rem; }

/* chapter
-------------------------------------*/
.chapter01,.chapter02,.chapter03,
.chapter04,.chapter05,.chapter06 {
width: 100%;
}



/* chapter01 : 助成金・補助金活用支援 研究会とは */
.chapter01 {
text-align: left;
}


/* chapter02 : 取組内容 */
.chapter02 ul {
display: block;
}
.chapter02 li {
padding-bottom: 2rem;
}
.chapter02 li.img {
text-align: center;
}

/* chapter04 : 代表紹介 */
.chapter04 ul {
display: block;
}
.chapter04 li.img {
text-align: center;
}

/* chapter05 : 書籍 */
.chapter05 ul {
display: block;
}
.chapter05 li.item01 {
width: 100%;
text-align: center;
margin: 0;
}
.chapter05 li.item02 {
width: 100%;
}

/* chapter06 : お問い合わせ */
.chapter06 form {
width: 100%;
}
.footer_flx{
flex-flow: column;
}




/* --------- chapter end */





.inquily_btn{
width:90%!important;
}
.pc_tel{
display: none;
}
section#8 container{
margin:0 auto!important;
padding:0!important;
}
.copyright{
font-size:0.8em;
}
.sp_tel{
    margin:0 auto;
text-align:center;
}
.sp_tel img{
width:70%;

}
/* footer ----- */
footer .blc { display: block; text-align: center; }

}/*スマホ版ここまで
-------------------------------------*/





/* 幅768px以下の表示
-------------------------------------*/
@media all and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}












