     /*ページ全体の構成*/
        body{
            background: #fff;
            color: #000000;
            font-size: 16px;
            font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Helvetica, Arial, 'ＭＳゴシック', sans-serif;
            line-height: 1.42857;
            margin: 0;
        }
        a:link {
            color: #00f; /
            text-decoration: none;
        }
        a:hover {
            color: #000;
            text-decoration: none;
        }
        a:visited {
            color: #f90; /* 最上段帯とスライダーの中の文字色 */
            text-decoration: none;
        }
           /*brの目印*/
        .brstyle {
            color: #fff;
        }
           /* ヘッダー */
        .header {
            z-index: 100;
            padding: 24px 0;
            width: 100%;
            border-bottom: #ccd1d9 solid 1px;
            background: #34badb;
            color: #333;
        }
        .header-group{
            max-width: 960px;
            height: auto;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
        }
        .header-groupTitle {
            color:#fff;
            margin: 0;
            font-size: 1.4em;
            padding-right: 20px;
        }
        .header-groupDescription {
            color: #fff;
        }
        /*画面サイズ1024px以下のヘッダースタイル*/
        @media screen and (max-width : 1024px){
            .header{
                padding: 15px 0px;
            }
            .header-groupTitle,
            .header-groupDescription{
                margin-left: 18px;
            }
        }
        /* ナビゲーション */
        .section-nav {
            max-width: 1024px;
            height: auto;
            margin: 0 auto;
            padding: 21px 0 0;
            background: #fff;
            text-align: center;
        }
        .section-navGroup {
            display: flex;
            justify-content: space-around;
            padding: 0;
        }
        .section-navGroup > li {
            list-style-type: none;
        }
        .section-navGroup > li a {
            display: block;
            padding: 6px 12px;
            color: #333;
            border: 1px solid #ccc;
            text-decoration: none;
            border: 1px solid #ccc;
        }
        .section-navGroup > li a:hover {
            color: #999;
        }
        .section-navGroup > li a.active {
            border-bottom: #333 solid 2px;
            color: #333;
        }
        /*画面サイズ600px以下のナビスタイル*/
        @media screen and (max-width :960px){
            .section-navGroup{
                margin: 0 auto;
                padding: 0 0px;
                display: flex;
                flex-wrap: wrap;
                flex-direction: row;
                text-align: center;
            }
            .section-navGroup > li{
                border: 1px solid #ccc;
                margin-bottom: 5px;
                min-width: 48%;
                list-style-type: none;
            }
        }
        /*　スライドイメージ横　*/
        .mainImg{
            margin: 10 auto 10 auto;/*スライダーのマージン上、右、下、左、の順*/
        }
        /*スライドイメージ横 > スライダーの設定*/
        .slider{
            margin: auto auto auto auto;
            padding: 0;
            max-width: 1028px;/* スライダーイメージの画面最大幅 */
            height: auto;
            font-size: 20px;
            text-align: center;
        }
        .slider img{
            max-height: auto;
            width: auto;
            object-fit: cover;
            text-align: center;
            font-family: 'object-fit: cover;'; /*IE対策*/
        }
        .slick-initialized,
        .slick-slide{
            max-height: 820px !important;/* スライダーイメージ横の画面最大高さ */
        }
        .slick-next,
        .slick-prev{
            display: none !important;
        }
        /*スライダー両サイドの矢印*/
        .slick-prev:before,
        .slick-next:before {
            color: #64646c;
        }
        /*画面サイズ960px以下のスライダースタイル横*/
        @media screen and (max-width : 960px){
            .section{
                display: flex;
                flex-direction: column-reverse;
            }
            .mainImg{
                margin-bottom:0 ;
            }
            .slider img{
                height: auto;
                width:  95%;
                object-fit: cover;
                margin: 0px auto;
                font-family: 'object-fit: cover;'; /*IE対策*/
            }
        }
        /*　スライドイメージ縦　*/
        .mainImg{
            margin: 10px auto 10px auto;/*スライダーのマージン上、右、下、左、の順*/
        }
        /*スライドイメージ縦 > スライダーの設定*/
        .sliderv{
            margin: auto auto auto auto;
            padding: 0;
            max-width: 1028px;/* スライダーイメージ縦の画面最大幅 */
            height: auto;
            font-size: 20px;
            text-align: center;
        }
        .sliderv img{
            height: auto;
            max-height: auto;/*数字を変えても影響しなかった*/
            width: auto;/*画像表示エリアの横幅*/
            object-fit: cover;
            font-family: 'object-fit: cover;'; /*IE対策*/
            /*text-align: center;*/
        }
        .slick-initialized,
        .slick-slidev{
            max-height: 150px !important;/* スライダーイメージ縦の画面最大高さ */
        }
        .slick-next,
        .slick-prevv{
            display: none !important;
        }
        /*スライダー両サイドの矢印*/
        .slick-prev:before,
        .slick-next:before {
            color: #64646c;
        }
        /*画面サイズ960px以下のスライダースタイル縦*/
        @media screen and (max-width : 960px){
            .section{
                display: flex;
                flex-direction: column-reverse;
            }
            .mainImg{
                margin-bottom:0 ;
            }
            .sliderv img{
                height: auto;
                width:  60%;
                object-fit: cover;
                margin: 0px auto;
                font-family: 'object-fit: cover;'; /*IE対策*/
            }
        }
        /*メインコンテンツ*/
        .article {
            max-width: 1024px;
            height: auto;
            margin: auto auto; /*マージン上下、左右、の順*/
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .article-group {
            width: 22%;
            margin: auto auto; /*マージン上下、左右、の順*/
            height: auto;
        }
        .article-group > a{
            color: #333333;
        }
        .article-group > a :hover{
            color: #999;
        }
        /*メインコンテンツのイメージ*/
        .article-groupImg{
            margin: 0 0 0 0; /*マージン上下、左右、の順*/
            width: 100%;
            text-align: center;
        }
        /*メインコンテンツのタイトル部分*/
        .article-groupTitle {
            margin: 0 0; /*マージン上下、左右、の順*/
            padding: 0 0 0 0;
            border-bottom: 1px dotted #444;
            text-align: center;
            font-weight: bold;
        }
        /*1024px以下のメインコンテンツ画像の中間概要部分のスタイル*/
        @media screen and (max-width :1024px){
            .article{
                margin: 0 auto; /*マージン上下、左右、の順*/
                padding: 0 10px;
                text-align: center;
            }
            .article-group{
                width: 45%;
                height:auto;
            }
            .article-groupDiscription{
                text-align: left;
            }
        }
        /*目次情報*/
        .news {
            max-width: 1024px;
            margin: 0 auto 0 auto; /*目次部分のマージン上、右、下、左、の順*/
        }
        .news-list {
            list-style: none;
            padding: 0;
        }
        .news-list > li {
            margin: 5px 0 5px 0;
            padding: 5px 0;
            border-bottom: 1px dotted #444;
        }
        .news-list > li > a{
            color: #113333;
        }
        /*1024px以下の画面の中間概要部分のスタイル*/
        @media(max-width: 1024px){
            .news{
                padding: 10px;
            }
        }
        /*更新年月日*/
        .news-listDate {
            color: #555555;
            margin-right: 20px;
        }
        /*自己紹介*/
        .profile{
            background: #f2f2f2;
            padding-bottom: 5px;/*自己紹介下の空白*/
            border-bottom: 1px solid #919191;/*自己紹介下のライン*/
        }
        .profile-wrap{
            max-width:1024px;
            margin: 0px auto 0px auto; /*自己紹介マージン上、右、下、左、の順*/
        }
        .profile-wrapGroup{
            width: 95%;
            margin: 0 auto;
            padding: 50px 10px 10px 10px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            border: 2px solid #000000; /*自己紹介全体の枠*/
        }
        /*自己紹介－画像部分*/
        .profile-wrapGroupImg{
            /*border: 1px solid #000000;自己紹介写真の枠*/
            width: 100%;/*自己紹介写真の枠*/
            margin: 0 auto 0px 10px;/*自己紹介写真のマージン上、右、下、左、の順*/
        }
        .profile-wrapGroupImg > img{
            border-radius: 50%;/*自己紹介写真の表示円の枠*/
            width: 140px;
            height: 160px;
            object-fit: cover;
            margin: 0 10px 0px 10px;
            font-family: 'object-fit: cover;'; /*IE対策*/
        }
        /*自己紹介-本文*/
        .profile-wrapGroupBody{
            /*border: 1px solid #000000;自己紹介本文の枠*/
            background: #fff;
            border-radius: 15px;
            max-width: 70%;
            margin: 0px 10px 0px 10px;/*自己紹介本文のマージン上、右、下、左、の順*/
        }
        /*自己紹介-名前profileの部分*/
       .profile-wrapGroupBody-name{
            font-size: 1.2rem;
            font-weight: bold;
            /* border-bottom: 1px solid #f2f2f2; */
            padding-bottom: 0px;
        }
        /*画面が730pxより狭くなったら*/
        @media(max-width: 730px){
            .profile{
                padding-bottom: 0;
            }
            .profile-wrapGroup{
                display: block
            }
            .profile-wrapGroupImg{
                width: 50%;
                margin: 0 auto 20px;
                text-align: center;
            }
            .profile-wrapGroupBody{
                width: 90%;
                margin: 0 auto 20px;
            }
        }
        /*SNSボタン*/
        .profile-wrapGroupSNSicon{
            max-width: 1024px;
            /*margin-left: auto;*/
            margin: 0 auto 0 auto;
            justify-content: center; /* テスト挿入 */
            /* border: 3px solid #ff0000; 赤枠　SNSボタン全体の枠 */
        }
        .profile-wrapGroupSNSicon-group{
            list-style: none;
            display: flex;
            justify-content: center
            margin: auto auto 0 auto;
            padding: 0; /* autoにすると緑枠内で右端に移動 */
            /* border: 3px solid #00ff00; 緑枠　SNSボタンの枠 */
        }
        /*SNSボタン-色サイズ*/
        .snsIcon{
            width: 48px;
            margin: auto 100px 0 100px;
        }
        @media(max-width: 1024px){
            .profile-wrapGroupSNSicon{
                margin: 0 auto;
                padding: 0;
            }
            .profile-wrapGroupSNSicon-group{
                justify-content: center;
            }
        }
        /*注釈権利*/
        .footer{
            background: #eeeeee;
            text-align: center;
            padding: 20px 0;
            font-size: 12px;
        }
        /*960px以下の画面の中間概要部分のスタイル*/
        @media(max-width: 960px){
            .news{
                padding: 20px;
            }
        }
        /*main部分の設定*/
        .main {
            max-width: 1028px;
            margin: 0 auto;
        }
        /*topページgalleryの設定*/
        .mainGallery {
            margin: 20px 0 60px 0; /*上、右、下60、左 */
        }
        .mainGallery_title {
            margin: auto 10px auto 10px;
            font-size: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        .mainGallery_title:after {
            border-top: 3px solid; /* タイトルの後ろの線 */
            content: "";
            margin: 0px 0 0px 20px;
            width: 40%;
        }
        ul.mainGallery_list {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 0 0 20px; /*上、左右、下*/
        }
        .mainGallery_listItem {
            border: 2px solid #db7093; /* hilingmessageのリストの枠 */
            width: 300px;
            height: 245px;
            margin: auto auto 5px auto;
            padding: 3px;
        }
        .mainGallery_listItemtext {
            border: 2px solid #4169e1; /* スキル部分のリストの枠 */
            width: 300px;
            height: 110px;
            margin: auto auto 10px auto;
            padding: 5px;
        }
        .mainGallery_listItem img {
            width: 298px;
            height: 150px;
        }
        @media screen and (max-width :600px){
            .mainGallery_title {
                text-align: center;
                font-size: 20px;
                display: block;
            }
            .mainGallery_title:after {
                border-top:none;
                content: none;
                margin: 0 ;
                width: 100%;
            }
            ul.mainGallery_list {
                justify-content: space-around;
            }
            .mainGallery_listItem {
            border: 2px solid #db7093; /* 600px以下リストの枠 */
                max-width: 300px;
                max-height: 300px;
                width: 100%;
                height: 100%;
                margin: 5px 5px 20px 5px; /*上、右、下、左 */
                padding: 5px;
            }
            .mainGallery_listItemtext {
            border: 2px solid #4169e1; /* 600px以下リストの枠 */
                max-width: 300px;
                max-height: 200px;
                width: 100%;
                height: 100%;
                margin: 5px 5px 20px 5px;
                padding: 5px;
            }
        }
        /*menu領域の設定*/
        .mainMenu_title {
            font-weight: bold;
            font-size: 16px;
            display: flex;
            align-items: center;
        }
        .mainMenu_title:after {
            border-top: 1px solid;
            content: "";
            margin: 0 0 0 20px;
            width: 80%;
        }
        /*menuの下層部分の設定*/
        .mainMenu_list {
            padding: 20px;
        }
        .mainMenu_listwrap {
            margin: 0 0 20px 0;
        }
        .mainMenu_listwrap_item {
            padding: 0 0 10px 0;
            display: flex;
            align-items: left;
            border-bottom: 1px solid #ccc;
        }
        .mainMenu_listwrap_itemTitle {
            width: 410px;
            margin: 0 20px 0 10px;/*電子bookリスト部分のマージン上、右、下、左、の順*/
        }
        .mainMenu_listwrap_item:hover {
            opacity: 0.5;
        }
        /*サイトのmain部分の750px以下の設定*/
        @media screen and (max-width :750px){
            .mainMenu_title {
                text-align: center;
                font-size: 20px;
                display: block;
            }
            .mainMenu_title:after {
                border-top:none;
                content: none;
                margin: 0 ;
                width: 100%;
            }
        }
