@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;
}
.pure-g [class *="pure-u"]{
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: .04rem;
    color: #2c2c2c;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
h1{
    margin: 0;
}
/* ページ全体の枠 */
.sugu-window{
    width: min(80%,1600px);
    margin: 0 auto;
}
.sugu-container {
  padding: 0 2em 2em 2em;
}
/* 
■右寄せ・左寄せ・中央  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 */
.sugu-pager {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 14px;
}
.sugu-pager a{
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .04rem;
    line-height: 1;
    color: #2c2c2c;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    display: block;
    background: #f6f6f6;
    width: fit-content;
    border-radius: 9999px;
    position: relative;
    padding: 19px 24px;
    transition: 0.35s;
    border: solid 1px #EBEBEB;
}
.sugu-pager a:hover{
    background: #EBEBEB;
}
.sugu-pager a.prev_next{
    padding-left: 30px;
    padding-right: 30px;
}
.sugu-pager a .button_text{
    position: relative;
    z-index: 5;
    line-height: 1;
    display: inline-block;
    padding-right: 55px;
}
.sugu-pager a.new .button_text{
    padding-right: 0;
    padding-left: 55px;
}
.sugu-pager a .arrow{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    transition: 0.35s ease-in;
    z-index: 5;
}
.sugu-pager a.new .arrow{
    right: auto;
    left: 5px;
}
.sugu-pager a .arrow::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    background: url(../../../../img/common/arrow_right_pink.svg)center/100% auto no-repeat;
    transition: 0.4s;
}
.sugu-pager a:hover .arrow::before{
    background: url(../../../../img/common/arrow_right_pink.svg)left 28px center/100% auto no-repeat;
}
.sugu-pager a .arrow::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    background: url(../../../../img/common/arrow_right_pink.svg)left -28px center/100% auto no-repeat;
    transition: 0.4s;
}
.sugu-pager a:hover .arrow::after{
    background: url("../../../../img/common/arrow_right_pink.svg")center/100% auto no-repeat;
}
.sugu-pager a.new .arrow::before{
    background: url(../../../../img/common/arrow_left_pink.svg)center/100% auto no-repeat;
}
.sugu-pager a.new:hover .arrow::before{
    background: url(../../../../img/common/arrow_left_pink.svg)left -28px center/100% auto no-repeat;
}
.sugu-pager a.new .arrow::after{
    background: url(../../../../img/common/arrow_left_pink.svg)left 28px center/100% auto no-repeat;
}
.sugu-pager a.new:hover .arrow::after{
    background: url(../../../../img/common/arrow_left_pink.svg)center/100% auto no-repeat;
}








/* 
■全一覧のスタイル  Article list classes */
.sugu-article-list .sugu-entry{
    width: 100%;
    position: relative;
}
.sugu-article-list .sugu-entry::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.sugu-article-list .sugu-entry::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 15%;
    background-color: #F923B2;
}
.sugu-article-list .sugu-entry a{
    display: block;
    width: 100%;
    padding: min(3.2rem,50px) 12% min(3.2rem,50px) 10px;
    position: relative;
    transition: 0.35s;
}
.sugu-article-list .sugu-entry a .arrow{
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(2.2rem,23px);
    height: min(2.2rem,23px);
    border-radius: 50%;
    transition: 0.35s;
    z-index: 5;
    background: url(../../../../img/common/arrow_right_pink.svg)left -3.5rem center/100% auto no-repeat;
}
.sugu-article-list .sugu-entry a:hover .arrow{
    background: url(../../../../img/common/arrow_right_pink.svg)center/100% auto no-repeat;
}
.sugu-article-list .sugu-entry a .date{
    display: inline-block;
    font-size: clamp(14px,1.5rem,16px);
    margin-bottom: 10px;
}
.sugu-article-list .sugu-entry:first-child {
}
.sugu-article-list .sugu-entry .sugu-entry-left {
    width: 100%;
}
.sugu-article-list .sugu-entry a>div{
    transition: 0.3s;
}
.sugu-article-list .sugu-entry a:hover>div{
    opacity: 0.7;
}
.sugu-article-list .sugu-entry .sugu-entry-right {
  padding: 0.8em 0;
}
.sugu-article-list{
    position: relative;
    margin-bottom: 5rem;
}
.sugu-article-list::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.sugu-article-list::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 15%;
    background-color: #F923B2;
}
.sugu-article-list .sugu-entry h3{
    line-height: 1.6;
    font-size: clamp(15px,1.7rem,19px);
}
.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 {
  border-bottom: #dfdfdf solid 1px;
  /* 太さ、線種、色 */
  padding: 0.3em 0.5em;
}
.sugu-ruled-list li:first-child {
  border-top: #dfdfdf solid 1px;
  /* 太さ、線種、色 */
}
/* 文字色・スタイル */
.sugu-listdate {
  color: gray;
  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;
}
/* マウスオーバーでの背景色の設定 ここまで */
/* 
■記事ページ設定  Article page classes */
/* 記事部分 */
.sugu-article{
    padding-bottom: 7rem;
    position: relative;
}
.sugu-article::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.sugu-article::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 15%;
    background-color: #F923B2;
}
.sugu-article .sugu-article-left {
    width: 100%;
}
.sugu-article .sugu-article-right {
    width: 100%;
}
.wrapper.article h3{
    font-size: clamp(16px,2.4rem,28px);
    line-height: 1.6;
    font-weight: 600;
    padding-bottom: 3rem;
}
.wrapper.article .article_date{
    text-align: right;
    font-size: clamp(13px,1.6rem,17px);
    padding-bottom: 3rem;
    margin-bottom: 5rem;
    position: relative;
}
.wrapper.article .article_date::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #DDDDDD;
}
.wrapper.article .article_date::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 15%;
    background-color: #F923B2;
}
#sugu-t-image-comment-example{
    width: min(100%, 1200px);
    margin: 0 auto;
    margin-bottom: 5rem;
}
.article_img_wrap .image-link{
    display: block;
    overflow: hidden;
    border-radius: 25px;
}
.article_img_flex{
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}
.article_img_flex>div{
    width: calc(25% - 1.5%);
    max-height: 180px;
    margin-top: 3rem;
}
.article_img_flex>div a{
    display: block;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.sugu-article img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}
.article_main_text{
    width: min(100%,1200px);
    margin: 0 auto;
    line-height: 1.8;
    font-size: clamp(14px,1.7rem,18px);
}
.article_main_text p{
    padding-bottom: 2rem;
}
.article_main_text p:last-of-type{
    padding-bottom: 0;
}
.article_main_text p a{
    transition: .35s;
    display: inline-block;
    color: #F923B2;
    border-bottom: solid 1px #F923B2;
    padding-bottom: 2px;
}
.article_main_text p a:hover{
    opacity: 0.6;
}
/* 記事ページのフッタリンク調整 */
.sugu-page-link {
  display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 5rem;
}
.sugu-page-link a{
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .04rem;
    line-height: 1;
    color: #2c2c2c;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    display: block;
    background: #f6f6f6;
    width: fit-content;
    border-radius: 9999px;
    position: relative;
    padding: 19px 24px;
    transition: 0.35s;
    border: solid 1px #EBEBEB;
}
.sugu-page-link a:hover{
    background: #EBEBEB;
    background-image: none;
}
.sugu-page-link a.prev{
    text-align: right;
}
.sugu-page-link a.sugu-t-to_index{
    padding-left: 30px;
    padding-right: 30px;
}
.sugu-page-link a .button_text{
    position: relative;
    z-index: 5;
    line-height: 1;
    display: inline-block;
    padding-right: 55px;
}
.sugu-page-link a.prev .button_text{
    padding-right: 0;
    padding-left: 55px;
}
.sugu-page-link a .arrow{
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    transition: 0.35s ease-in;
    z-index: 5;
}
.sugu-page-link a.prev .arrow{
    right: auto;
    left: 5px;
}
.sugu-page-link a .arrow::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    background: url(../../../../img/common/arrow_right_pink.svg)center/100% auto no-repeat;
    transition: 0.4s;
}
.sugu-page-link a:hover .arrow::before{
    background: url(../../../../img/common/arrow_right_pink.svg)left 28px center/100% auto no-repeat;
}
.sugu-page-link a .arrow::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 20px;
    height: 20px;
    display: block;
    overflow: hidden;
    background: url(../../../../img/common/arrow_right_pink.svg)left -28px center/100% auto no-repeat;
    transition: 0.4s;
}
.sugu-page-link a:hover .arrow::after{
    background: url("../../../../img/common/arrow_right_pink.svg")center/100% auto no-repeat;
}
.sugu-page-link a.prev .arrow::before{
    background: url(../../../../img/common/arrow_left_pink.svg)center/100% auto no-repeat;
}
.sugu-page-link a.prev:hover .arrow::before{
    background: url(../../../../img/common/arrow_left_pink.svg)left -28px center/100% auto no-repeat;
}
.sugu-page-link a.prev .arrow::after{
    background: url(../../../../img/common/arrow_left_pink.svg)left 28px center/100% auto no-repeat;
}
.sugu-page-link a.prev:hover .arrow::after{
    background: url(../../../../img/common/arrow_left_pink.svg)center/100% auto no-repeat;
}


/* 
■ファイル一覧の形式（ul） Files */
.sugu-file-list {
  list-style-position: outside;
    width: min(100%, 1200px);
    margin: 0 auto;
    margin-top: 3rem;
}
.sugu-file-list li {
  line-height: 1.4;
    margin-bottom: 10px;
}
.sugu-file-list li:last-of-type{
    margin-bottom: 0;
}
/* ファイルをアップロードしたときのアイコン表示  Icons for uploaded files */
.filelink {
    display: inline-block;
    color: #222;
    padding: 15px 20px 15px 40px;
    background-repeat: no-repeat;
    background-position: 10px 50%;
    background-image: url(../../icons/general.gif);
    letter-spacing: 0.05em;
    box-sizing: border-box;
    background-color: #f6f6f6;
    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;
    position: relative;
}
.icon::before{
    position: absolute;
    right: 0;
    top: 50%;
    display: inline-block;
    transform: translateY(-50%);
    background: linear-gradient(105deg, #FA80B4 1%, #FF00A4 90%, #FF0095);
    color: #fff;
    line-height: 1;
    padding: 4px 1em;
    border-radius: 9999px;
    font-size: 0.9em;
}
.icon.category_01{
    padding-right: 6.2em;
}
.icon.category_01::before{
    content: '黒川商事';
}
.icon.category_02{
    padding-right: 8.2em;
}
.icon.category_02::before{
    content: 'ミナトヤ運輸';
}
.icon.category_03{
    padding-right: 9.2em;
}
.icon.category_03::before{
    content: 'テクノロジテム';
}
.icon.category_04{
    padding-right: 11.2em;
}
.icon.category_04::before{
    content: '陵北トランスポート';
}
.icon.category_05{
    padding-right: 11.2em;
}
.icon.category_05::before{
    content: 'トゥクトゥクテクノ';
}
.icon.category_06{
    padding-right: 6.2em;
}
.icon.category_06::before{
    content: '西尾交通';
}
.icon.category_07{
    padding-right: 7.2em;
}
.icon.category_07::before{
    content: 'K&Tリース';
}
.icon.category_08{
    padding-right: 8.2em;
}
.icon.category_08::before{
    content: '大河内不動産';
}
.icon.category_09{
    padding-right: 8.2em;
}
.icon.category_09::before{
    content: '黒川グループ';
}


@media print, screen and (max-width: 750px) {
    .sugu-window{
        width: 100%;
        padding: 0 6rem;
    }
    .sugu-container{
        padding: 0;
    }
    .sugu-article-list .sugu-entry a{
        padding: min(5.5rem,40px) 0;
    }
    .sugu-article-list .sugu-entry a .date{
        font-size: clamp(13px,2.8rem,15px);
        margin-bottom: 2.3rem;
    }
    .sugu-article-list .sugu-entry h3{
        font-size: clamp(15px,3rem,18px);
    }
    .icon.category_02{
        padding-right: 8.1em;
    }
    .icon.category_03{
        padding-right: 9em;
    }
    .icon.category_04{
        padding-right: 11em;
    }
    .icon.category_05{
        padding-right: 11em;
    }
    .icon.category_07{
        padding-right: 7.1em;
    }
    .icon.category_09{
        padding-right: 8.1em;
    }
    .sugu-pager {
        margin-top: 7rem;
        gap: 10px;
    }
    .sugu-pager a{
        padding: 18px 15px;
        border-radius: 10px;
    }
    .sugu-pager a.prev_next {
        padding-left: 20px;
        padding-right: 20px;
    }
    .sugu-pager a .arrow{
        display: none;
    }
    .sugu-pager a.new .button_text{
        padding-left: 0;
    }
    .sugu-pager a .button_text{
        padding-right: 0;
    }
    .wrapper.article h3 {
        font-size: clamp(16px,3.4rem,22px);
        line-height: 1.8;
        padding-bottom: 4rem;
    }
    .wrapper.article .article_date{
        font-size: clamp(13px,2.8rem,15px);
        padding-bottom: 5rem;
        margin-bottom: 5rem;
    }
    .article_img_wrap .image-link {
        border-radius: 10px;
    }
    .article_img_flex{
        gap: 3rem;
    }
    .article_img_flex>div a{
        border-radius: 5px;
        height: 100px;
    }
    .article_img_flex>div{
        width: calc(50% - 1.5rem);
        max-height: 180px;
        margin-top: 0;
    }
    .article_img_flex>div:first-child,
    .article_img_flex>div:nth-child(2){
        margin-top: 3rem;
    }
    .article_main_text {
        font-size: clamp(15px,3rem,18px);
        line-height: 1.8;
    }
    .sugu-page-link{
        margin-top: 7rem;
    }
    .sugu-page-link a .arrow{
        display: none;
    }
    .sugu-page-link a.prev .button_text{
        padding-left: 0;
    }
    .sugu-page-link a .button_text{
        padding-right: 0;
    }
    .sugu-page-link a{
        padding: 18px;
        border-radius: 10px;
    }    
}