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

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

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

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

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

*/
/* 
■フレームワーク 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 */
.pure-g [class *="pure-u"]{
    font-family: YakuHanJP_Noto, 'Noto Sans JP', Hiragino Sans, "ヒラギノ角ゴ ProN W3", Yu Gothic Medium, "游ゴシック", "ヒラギノ角ゴ ProN W3", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    line-height: 1.8em;
    letter-spacing: .01rem;
    color: #111;
    -webkit-font-smoothing: antialiased;
}
/* ページ全体の枠 */
.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: 31.5px;
}
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;
}
.sugu-pull-left {
  float: left;
}
.sugu-text-center {
  text-align: center;
}
.sugu-text-right {
  text-align: right;
}
/* 
■ページネーション  Pagination */
/* （※管理画面と同じクラス名ですが、定義が異なります） */
ul.sugu-pagination {
  margin: 1em 0;
  padding: 0;
}
ul.sugu-pagination li {
  list-style: none;
  display: inline-block;
  min-height: 0.8;
}
ul.sugu-pagination li a {
  padding: 4px 10px 4px 10px;
  vertical-align: middle;
  border: #cbcbcb 1px solid;
  margin-left: -1px;
  text-decoration: none;
  color: gray;
}
ul.sugu-pagination li a:active,
ul.sugu-pagination li a:hover {
  background-color: #dfdfdf;
  color: black;
}
ul.sugu-pagination li:first-child a {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
ul.sugu-pagination li:last-child a {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
ul.sugu-pagination .sugu-active a,
ul.sugu-pagination .pagethis a {
  font-weight: bold;
  color: black;
}
/* 
■前後リンク  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;
}
.sugu-article-list .sugu-entry:first-child {
  border-top: #dfdfdf solid 1px;
}
.sugu-article-list .sugu-entry .sugu-entry-left {
  padding: 0.8em 0;
}
.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: 0.8em 0 0.8em 2em;
  }
}
.sugu-article-list .sugu-entry h3 {
  margin-top: 0;
    line-height: 1.5em;
}
.sugu-article-list .sugu-entry p {
  margin: 0 0 5px 0;
}
.sugu-article-list .sugu-entry p:last-child {
  margin-bottom: 0;
}
.article_list_window{
    width: 80%;
    max-width: 800px;
    padding-bottom: 100px;
}
.article_list_window .sugu-container{
    padding: 0;
}
.article_list_file{
    display: none;
}
.sugu-article-list .sugu-entry .sugu-entry-left {
    padding: 20px 0;
    width: 100%;
}
.article_list_box{
    width: 100%;
    padding: 0 15px;
    transition: .35s;
}
.article_list_box:hover{
    background-color: #f8f8f8;
}
ul.sugu-pager {
    margin: 40px 0 0.3em 0;
    padding: 0;
    height: 3em;
    display: flex;
    justify-content: center;
}
ul.sugu-pager li {
    list-style: none;
    display: inline-block;
}
ul.sugu-pager li a {
    padding: 8px 18px;
    margin: 0 10px;
    vertical-align: middle;
    height: 2em;
    border: #3ccb9c 1px solid;
    border-radius: 4px;
    text-decoration: none;
    color: #3ccb9c;
    font-weight: 500;
    transition: .35s;
}
ul.sugu-pager li a:hover{
    background-color: #3ccb9c;
    color: #fff;
}
.sentou {
    padding: 8px 18px 8px 38px!important;
    position: relative;
}
.saigo {
    padding: 8px 38px 8px 18px!important;
    position: relative;
}
.sentou::before, .saigo::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    right: 18px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #3ccb9c;
    border-right: 1px solid #3ccb9c;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    transition: .35s;
    z-index: 5;
}
.sentou::before {
    left: 18px;
    border-bottom: 1px solid #3ccb9c;
    border-left: 1px solid #3ccb9c;
    border-top: 0;
    border-right: 0;
}
.sentou:hover::before{
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
}
.saigo:hover::before{
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.category_title{
    text-align: center;
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 35px;
}
.category_wrapper{
    margin-bottom: 60px;
}
.category_inner{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
}
.category_inner a{
    background-color: #f8f8f8;
    display: block;
    width: 33.333%;
    text-align: center;
    padding: 18px 0;
    position: relative;
    transition: .35s;
}
.category_inner a:hover{
    background-color: #f2f2f2;
}
.category_inner a::before{
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background-color: #dadada;
}
.category_inner a:last-of-type::before{
    display: none;
}
.category_inner a:nth-of-type(2),.category_inner a:nth-of-type(3){
    font-size: 15px;
}
.category_inner a span{
    position: relative;
    display: inline-block;
    padding-right: 25px;
}
.category_inner a span::before{
    content: '';
    position: absolute;
    right: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    background: url(../../../../img/business/arrow_01.png) center / 10px 6px no-repeat;
    transition: .35s;
}
.category_inner a:hover span::before{
    top: 15px;
}
.here{
    border-bottom: solid 2px #1dc765;
}
.here:hover span::before{
    top: 11px;
}







/* 
■短い一覧のスタイル  Short list classes */
/* 罫線 */
ul.sugu-ruled-list {
  list-style: none outside none;
  padding-left: 0;
  margin-top: 0;
  margin-left: 0;
  margin-bottom: 0;
}
.sugu-ruled-list li {
  /* 太さ、線種、色 */
}
.sugu-ruled-list li:first-child {
  /* 太さ、線種、色 */
}
/* 文字色・スタイル */
.sugu-listdate {
  padding-right: 1em;
}
.sugu-listlink a,
.sugu-listlink a:link {
  color: #389ABE;
  text-decoration: none;
}
.sugu-listlink a:hover,
.sugu-listlink a:active {
  text-decoration: underline;
}
.sugu-listlink a:visited {
  color: #9A38BE;
}
/* 文字色・スタイル ここまで */
/* マウスオーバーでの背景色の設定 ここから */
.sugu-interactive-list li:hover {
  background-color: #f0f0f0;
}
/* マウスオーバーで背景色を変更する時は、リンク文字の変更を止めておく
   （この措置が不要なら設定を削除して下さい。） */
.sugu-interactive-list .sugu-listlink a:hover,
.sugu-interactive-list .sugu-listlink a:active {
  text-decoration: none;
}
/* マウスオーバーでの背景色の設定 ここまで */
.short_list_a{
    display: flex;
    width: 100%;
    font-size: 15px!important;
    padding: 18px 20px;
    transition: .35s;
    border-bottom: solid 1px #DBDBDB;
    color: transparent;
}
.short_list_a:hover{
    opacity: .9;
    background-color: #F4F2ED;
}
.short_list_contents:first-of-type .short_list_a{
    border-top: solid 1px #DBDBDB;
}
.short_list_container{
    padding: 0;
}
.article_title {
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
    margin-right: 20px;
}


/* 
■記事ページ設定  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-bottom: 20px;
    max-height: 800px;
}
/* 記事ページのフッタリンク調整 */
.sugu-page-link {
  margin: 2em 0;
}
.sugu-page-link a {
  margin-right: 0.8em;
  margin-bottom: 0.8em;
}
.article_window{
   padding: 100px 0;
    width: 80%;
    max-width: 800px;
}
.article_window .article_date{
    margin-bottom: 5px;
}
.article_window .sugu-container{
    padding: 0;
}
.article_h3{
    border-bottom: solid 1px #3ccb9c;
    padding-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
}
.sugu-article .sugu-article-left {
    padding: 15px 0;
    width: 100%;
}
.sugu-article .sugu-article-right {
    padding: 0;
}
.article_img {
    width: 100%;
}
.article_img_flex {
    display: flex;
    position: relative;
    margin-bottom: 5px;
}
.article_img_flex>div {
    width: calc(25% - 2%);
    margin: 0 1%;
}
.article_main_text p{
    padding-bottom: 10px;
    word-break: break-all;
}
.article_main_text p a{
    color: #3ccb9c;
}
.sugu-page-link {
    margin: 2em 0;
}
.article_pager {
    display: flex;
    justify-content: center;
    width: 100%;
}
.sugu-page-link a {
    margin-right: 0.8em;
    margin-bottom: 0.8em;
}
.article_pager a {
    padding: 8px 20px;
    margin: 0 10px;
    vertical-align: middle;
    border: #3ccb9c 1px solid;
    border-radius: 4px;
    text-decoration: none;
    color: #3ccb9c;
    font-weight: 500;
    transition: .35s;
    background-color: #fff;
    display: block;
}
.article_pager a:hover{
    background: none;
    background-color: #3ccb9c;
    color: #fff;
}






/* 
■ファイル一覧の形式（ul） Files */
.sugu-file-list {
  list-style-position: outside;
    padding-top: 10px;
}
.sugu-file-list li {
  line-height: 1.4;
}
/* ファイルをアップロードしたときのアイコン表示  Icons for uploaded files */
.filelink {
    display: inline-block;
    color: #222;
    padding: 10px 15px 10px 44px;
    margin-right: 10px;
    background-repeat: no-repeat;
    background-position: 14px 50%;
    background-image: url(../../icons/general.gif);
    letter-spacing: 0.05em;
    box-sizing: border-box;
    background-color: #f2f2f2;
    border-radius: 4px;
    transition: opacity .4s;
}
.filelink:hover{
    opacity: .7;
}
.doc {
  background-image: url(../../icons/word.svg);
  background-size: 20px;
}
.pdf {
  background-image: url(../../icons/pdf.svg);
  background-size: 20px;
}
.ppt {
  background-image: url(../../icons/ppt.gif);
}
.img {
  background-image: url(../../icons/img.svg);
  background-size: 20px;
}
.txt {
  background-image: url(../../icons/txt.gif);
}
.xls {
  background-image: url("../../icons/xlsx.svg");
    background-size: 20px;
}
.zip {
  background-image: url("../../icons/zip.svg");
    background-size: 20px;
}
/* 管理画面 */
.icon{
    display: inline-block;
    width: 100%; /* アイコン画像ファイルのサイズに合わせて指定 */
    height: 20px; /* アイコン画像ファイルのサイズに合わせて指定 */
    margin-top: 0.35em;
    background-repeat: no-repeat;
    background-position: right center;
}
 
/* 記事画面 */
.article_title {
    background-repeat: no-repeat;
    background-position: left center;
    display: inline-block;
}
.icon01 {
    padding-right: 115px!important; /* 表示するアイコンの幅＋余白 */
    position: relative;
}
.icon01::before{
    content: 'お知らせ';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 95px;
    padding: 0 0 1px;
    font-size: 12px;
    text-align: center;
    background-color: #3ccb9c;
    border-radius: 4px;
    box-sizing: border-box;
    color: #fff;
    font-family: YakuHanJP_Noto, 'Noto Sans JP', Hiragino Sans, "ヒラギノ角ゴ ProN W3", Yu Gothic Medium, "游ゴシック", "ヒラギノ角ゴ ProN W3", "ＭＳ Ｐゴシック", sans-serif;
    font-weight: 400;
    line-height: 20px;
}
.short_list_a .icon01::before{
    top: 5px;
    transform: none;
}


@media print, screen and (max-width: 750px) {
    .short_subject{
        display: block;
        line-height: 1.6em!important;
    }
    .article_window {
        padding: 35px 20px 50px;
        width: 100%;
        max-width: 500px;
    }
    .article_h3 {
        margin-bottom: 5px;
        padding-bottom: 12px;
        font-size: 16px;
        line-height: 1.5em;
    }
    .sugu-article .sugu-article-left {
        padding: 0;
    }
    .article_img_wrap{
        margin-top: 10px;
    }
    .sugu-article img {
        margin-bottom: 10px;
        max-height: 600px;
    }
    .category_wrapper {
        margin-bottom: 35px;
    }
    .category_inner {
        width: 96%;
    }    
    .category_inner a span {
        padding-right: 17px;
        line-height: 1.4em;
    }
    .category_inner a {
        padding: 12px 10px;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .category_inner a span::before {
        top: 50%;
        transform: translateY(-50%);
    }
    .category_inner a:nth-of-type(2), .category_inner a:nth-of-type(3) {
        font-size: 13px;
    }
    .category_title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .article_list_window {
        width: 100%;
        padding: 0 20px;
        max-width: 500px;
        padding-bottom: 60px;
    }
    .article_list_box {
        padding: 0;
    }
    .sugu-article-list .sugu-entry .sugu-entry-left {
        padding: 15px 0;
    }
    .sugu-article-list .sugu-entry p{
        margin: 0;
    }
    ul.sugu-pager li a {
        padding: 8px 10px;
        margin: 0 4px;
        font-size: 14px;
    }
    .sentou {
        padding: 8px 10px 8px 20px!important;
    }
    .sentou::before, .saigo::before {
        right: 10px;
    }
    .sentou::before {
        left: 10px;
    }
    .saigo {
        padding: 8px 20px 8px 10px!important;
    }
    ul.sugu-pager {
        margin: 30px 0 0.3em 0;
    }
    .article_img_flex>div {
        width: calc(50% - 2%);
        margin: 0 2% 0 0;
    }



}


@media print, screen and (max-width: 500px) {
    .short_list_a {
        display: block;
        padding: 15px 0;
    }
    .icon01 {
        padding-right: 105px!important;
    }
    
    
    
    
    
    
}
