@charset "utf-8";
/* 「すぐ使えるCGI」記事ページテンプレート CSS */
/* Sugutsukaeru CGI Article pages CSS (Please see the admin CSS file for English explanation) */
/*
■スタイルの分類

「すぐ使えるCGI」の記事ページで使っているスタイル定義は、以下の2つに分類できます。

A. Pure
pure-* というクラス名のスタイル定義は、フレームワーク pure を使用しているものです。レスポンシブWebの仕組みの実装に利用しています。
Pure のレスポンシブWebデザインの設定の仕組みについては、管理画面側のCSSファイル内にコメントで説明があります。

B. 「すぐ使えるCGI」で定義したスタイル
sugu-* というクラス名のスタイル定義は、「すぐ使えるCGI」で定義し表示調整に使用しています。

これらのスタイルは不要であれば削除、変更して使って下さい。

*/
/* 
■フレームワーク pure をベースにした、表示調整のためのスタイル  Pure-based layout adjustment */
.pure-g > div {
  /* マージンまで含んだ幅がボックスのサイズ */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* 
■背景色と基本の枠組み  Background and container */
body {
  background-color: transparent;
  font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	font-weight: 300;
	font-size: 15px;
	color: #383838;
	letter-spacing: 0.08em;
}

/* ページ全体の枠 */
.sugu-window {
  max-width: 1024px;
  margin: 0 auto;
}
.sugu-container {
  padding: 0 2em 2em 2em;
}
@media screen and (max-width: 35.499em) {
  .sugu-container {
    padding: 0 2.5em 1em 1em;
  }
}
/* 
■文字サイズ  Font */
h1,
h2,
h3 {
  line-height: 35px;
}
h1 {
  font-size: 26px;
}
h2 {
  font-size: 24.5px;
}
h3 {
  font-size: 17.5px;
}
h4 {
  font-size: 14px;
}
h5 {
  font-size: 11.9px;
}
h6 {
  font-size: 10.5px;
}
h1 small {
  font-size: 17.5px;
}
h2 small {
  font-size: 14px;
}
h3 small {
  font-size: 11.9px;
}
h4 small {
  font-size: 11.9px;
}
h1 small,
h2 small {
  white-space: nowrap;
}
/* 
■右寄せ・左寄せ・中央  Alignment and Centering */
.sugu-clearfix:before,
.sugu-clearfix:after {
  content: " ";
  display: table;
}
.sugu-clearfix:after {
  clear: both;
}
.sugu-center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sugu-pull-right {
  float: right;
	margin-right: 15px;
}
.sugu-pull-left {
  float: left;
}
.sugu-text-center {
  text-align: center;
}
.sugu-text-right {
  text-align: right;
}
/* 
■ページネーション  Pagination */
/* （※管理画面と同じクラス名ですが、定義が異なります） */
ul.sugu-pagination {
  margin: 50px 0;
  padding: 0;
	display: flex;
	justify-content: center;
	padding-bottom: 50px;
}
ul.sugu-pagination li {
  list-style: none;
  display: inline-block;
  min-height: 0.8;
  margin: 0 10px;
}
ul.sugu-pagination li a {
  padding: 8px 14px 8px 14px;
  vertical-align: middle;
  border: #C32C71 1px solid;
  margin-left: -1px;
  text-decoration: none;
  color: #C32C71;
	webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
	border-radius: 4px;
}
ul.sugu-pagination li a:active,
ul.sugu-pagination li a:hover {
  background-color: #C32C71;
  color: #fff;
}
ul.sugu-pagination li:first-child a {

}
ul.sugu-pagination li:last-child a {

}
ul.sugu-pagination .sugu-active a,
ul.sugu-pagination .pagethis a {
  font-weight: normal;
  color: #C32C71;
}
/* 
■前後リンク  Pager link */
ul.sugu-pager {
  margin: 2em 0 0.3em 0;
  padding: 0;
  height: 3em;
}
ul.sugu-pager li {
  list-style: none;
  display: inline-block;
}
ul.sugu-pager li a {
  padding: 0.4em 1em;
  vertical-align: middle;
  height: 2em;
  border: #cbcbcb 1px solid;
  border-radius: 1.2em;
  /* height + padding の 50% */
  text-decoration: none;
  color: gray;
}
ul.sugu-pager li a:active,
ul.sugu-pager li a:hover {
  background-color: #dfdfdf;
  color: black;
}
/* 
■全一覧のスタイル  Article list classes */
.sugu-article-list .sugu-entry {
  border-bottom: #dfdfdf solid 1px;
	border-top: solid 1px #dfdfdf;
}
.sugu-article-list .sugu-entry:first-child {
  border-top: #dfdfdf solid 1px;
}
.sugu-article-list .sugu-entry .sugu-entry-left {
}
.sugu-article-list .sugu-entry .sugu-entry-right {
  padding: 0.8em 0;
}
@media screen and (min-width: 35.5em) {
  .sugu-article-list .sugu-entry .sugu-entry-right {
    padding: 20px 15px 20px 15px;
	  display: flex;
  }
}
.sugu-article-list .sugu-entry h3,
.sugu-article-list .sugu-entry h2 {
  margin-top: 20px;
  margin-bottom: 0.3em;
  line-height: 1em;
  font-weight: normal;
}
.sugu-article-list .sugu-entry p {
  margin: 0.8em auto;
}
.sugu-article-list .sugu-entry p:last-child {
  margin-bottom: 0;
}
/* 
■短い一覧のスタイル  Short list classes */
/* 罫線 */
ul.sugu-ruled-list {
  list-style: none outside none;
  padding-left: 0;
  margin-top: 0;
  margin-left: 0;
}
.sugu-ruled-list li {
  /* 太さ、線種、色 */
  padding: 15px 0;
	display: flex;
}

.sugu-ruled-list li:first-child {
	display: flex;
}
/* 文字色・スタイル */
.sugu-listdate {
  color: #585858;
  padding-right: 60px;
}
.sugu-listlink a,
.sugu-listlink a:link {
  padding-left: 60px;
  color: #585858;
  text-decoration: none;
			-webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all  0.35s ease;
}
.sugu-listlink a:hover,
.sugu-listlink a:active {
  text-decoration: none;
	color: #585858;
	opacity: 0.6;
}
.sugu-listlink a:visited {
  color: #585858;
}
/* 文字色・スタイル ここまで */
/* マウスオーバーでの背景色の設定 ここから */
.sugu-interactive-list li:hover {
}
/* マウスオーバーで背景色を変更する時は、リンク文字の変更を止めておく
   （この措置が不要なら設定を削除して下さい。） */
.sugu-interactive-list .sugu-listlink a:hover,
.sugu-interactive-list .sugu-listlink a:active {
  text-decoration: none;
}
/* マウスオーバーでの背景色の設定 ここまで */
/* 
■記事ページ設定  Article page classes */
/* 記事部分 */
.sugu-article {
  /* 記事ページの画像
	   pure-img クラスの付いているものは枠幅いっぱいに表示される設定になっている
	 */
}
.sugu-article .sugu-article-left {
  padding: 0.8em 0;
}
.sugu-article .sugu-article-right {
  padding: 0.8em 0;
}
@media screen and (min-width: 35.5em) {
  .sugu-article .sugu-article-right {
    padding: 0.8em 0 0.8em 2em;
  }
}
.sugu-article img {
	margin: 0 auto;
  margin-bottom: 30px;
}
/* 記事ページのフッタリンク調整 */
.sugu-page-link {
  margin: 2em 0 160px 0;
}
.sugu-page-link a {
  margin-right: 0.8em;
  margin-bottom: 0.8em;
}
/* 
■ファイル一覧の形式（ul） Files */
.sugu-file-list {
  list-style-position: outside;
  padding-left: 1.35em;
}
.sugu-file-list li {
  line-height: 1.4;
}
/* ファイルをアップロードしたときのアイコン表示  Icons for uploaded files */
.filelink {
  padding-left: 22px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: 0.06em 50%;
  background-image: url(../../icons/general.gif);
}
.doc {
  background-image: url(../../icons/doc.gif);
}
.pdf {
  background-image: url(../../icons/pdf.gif);
}
.ppt {
  background-image: url(../../icons/ppt.gif);
}
.img {
  background-image: url(../../icons/img.gif);
}
.txt {
  background-image: url(../../icons/txt.gif);
}
.xls {
  background-image: url(../../icons/xls.gif);
}
.zip {
  background-image: url(../../icons/zip.gif);
}
.pure-g [class *="pure-u"] {
  font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	font-weight: 300;
	font-size: 14px;
	padding: 0;
}
.pure-g{
  font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
	display: block;
}
.pure-u-1, .pure-u-1-1, .pure-u-5-5, .pure-u-24-24 {
    width: auto;
}
.pure-g [class *="pure-u"] {
  font-family: 'lato', 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    font-weight: 300;
    font-size: 14px;
	display: block;
}
.sugu-article-list{
	width: 700px;
	border-bottom: solid 1px #eeeeee;
    padding: 15px;
	margin: 0 auto;
}
.list_link{
	color: #C32C71;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	padding: 15px 0;
	display: inline-block;
	line-height: 1.5em;
	transition: .3s;
}
.list_link:hover{
	color: #C32C71;
	opacity: .7;
}
.list_link:visited{
	color: #C32C71;
}
.sugu-article-list .sugu-entry p{
	display: inline-block;
	margin: 5px 15px 0 15px;
	font-size: 14px;
	line-height: 1.6;
}
.sugu-file-list{
	display: none;
}
.sugu-pager{
	display: none;
}
.add_container{
	margin-bottom: 160px;
	margin-top: 100px;
}
.list_h2{
	padding-left: 15px;
    padding-bottom: 30px;
    font-weight: 500;
	padding-top: 200px;
	width: 700px;
    margin: 0 auto;
}
.article_next{
	float: none;
}
.article_title{
	margin-top: 0;
	margin-left: 15px;
	font-weight: 600;
	padding-top: 40px;
	color: #585858;
}
h1{
	margin-top: 0;
}
.article_border{
	border-bottom: solid 2px #C32C71;
	margin-bottom: 30px;
	padding-bottom: 10px;
}
.article_page_btn{
	margin-top: 50px;
}
.pure-button{
	background-color: #fff;
	color: #C32C71;
	border: solid 1px #C32C71;
	border-radius: 4px;
}
.pure-button:hover{
	background: #C32C71;
	color: #fff;
	-webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.sugu-window {
    margin: 0 auto;
}
.pure-img{
	margin-bottom: 15px;
    display: block;
	max-width: 600px;
	margin-right: 15px;
	padding-top: 20px;
}
.sugu-entry{
	display: block;
}
.sugu-entry:first-child{
	border-top:  solid 1px #eeeeee;
}
.thumbnail{
	width: 300px;
	height: auto;
}
.article_pager{
	display: flex;
}
.article_text{
	padding: 0 15px 30px;
    font-size: 15px;
    letter-spacing: 0.08em;
    line-height: 1.6em;
}
.pc_display_none{
	display: none;
}
.list_container{
	padding-top: 200px;
}
.list_pagination{
	padding-bottom: 80px;
}
.privacy_header h2{
	font-size: 34px;
	margin-top: 150px;
	color: #C32C71;
	text-align: center;
}
.privacy_header h2 span{
	font-size: 14px;
}
.article_container{
	margin-top: 200px;
}
.short_list_title{
	font-weight: 400!important;
	color: #585858;
}






@media screen and (max-width : 800px){
.sugu-window {
    max-width: 600px;
    margin: 0 auto;
}
	.pc_display_none{
		display: block;
	}	
	.list_container{
		margin: 0 20px;
	}	
.sugu-article-list .sugu-entry h3, .sugu-article-list .sugu-entry h2 {
    margin-top: 5px;
}	
.sugu-article-list .sugu-entry p {
    display: inline-block;
    margin: 0px 15px 0 15px;
}	
.sugu-article-list .sugu-entry .sugu-entry-right {
    padding: 1em 0;
}	
.list_h2 {
    font-size: 20px;
	padding-top: 100px;
	width: auto;
	max-width: 600px;	
}	
.thumbnail {
    max-width: 300px;
    height: auto;
	width: -webkit-fill-available;
}
.article_container{
	margin: 0 20px;
}	
.article_title {
	margin-top: 0px;
	margin-left: 5px;
	font-size: 20px;
	font-weight: 600;
	padding-top: 100px;
}
.sugu-article img {
    width: -webkit-fill-available;
}
.sugu-page-link {
    margin: 2em 0 80px 0;
}	
.sugu-article-list{
	padding-right: 20px;
	padding-left: 20px;
	width: auto;
	max-width: 600px;
}	
.list_h3{
	padding: 0;
}
.article_page_btn {
    margin-top: 10px;
}
.privacy_header h2 {
    margin-top: 100px;
}	
.list_link {
    padding: 0 0 15px 0;
}	
	
}

@media screen and (max-width : 400px){
.sugu-listlink a, .sugu-listlink a:link{
	padding-left: 0;
}
.sugu-ruled-list li {
	display: block !important;
	padding: 5px 0;
}





}
