/*
Theme Name:   GeneratePress Child
Theme URI:    http://generatepress.com
Author:       NoguchiKikaku
Author URI:   http://noguchi-kikaku.com/
Template:     generatepress
Version:      0.1
Unsemantic CSS Framework Documentation http://unsemantic.com/css-documentation

■目次
・フォント設定
・基本設定
・GP & Unsemantic調整
・toolsカスタマイズ
・ヘッダー
・フッター
・ナビゲーション
・パンクズ
・サイドバー
・トップページ
・カテゴリーページ
・投稿・固定ページ
・投稿・固定ページ下CTA
・イメージ
・テーブル Bootstrap
・テーブル レスポンシブ設定
・DL DT DD
・コンタクトフォーム
・WP-PAGENAVI
・メディアクエリ
*/

@import url('css/tools.css');

/* =========================================================
* フォント設定
========================================================= */
/* 電話番号用（ゴシック系） */
@import url('https://fonts.googleapis.com/css?family=Ramabhadra');
/* https://fonts.google.com/?subset=japanese */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900|Noto+Serif+JP:200,300,400,500,600,700,900&subset=japanese');

/* =========================================================
* 基本設定
========================================================= */
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, "MS PGothic", sans-serif;
    line-height: 1.8;
    letter-spacing: 0.05em;
    border-top: solid 1px #daecf3;
}
/* ベースカラー */
.basecolor, i {
    color: #0081cc;
}
/* fontawesomeのカラー */
a i,
.footer-widgets i {
    color: #fff;
}
button, input, select, textarea {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, "MS PGothic", sans-serif;
}
button, html input[type=button], input[type=reset], input[type=submit] {
    border: 0;
    background: #0081cc; /* ボタンの色 */
    color: #fff;
}
button:hover, html input[type=button]:hover, input[type=reset]:hover, input[type=submit]:hover {
    background: #333;
}

/* 見出し（基本はカスタマイザーで設定） */
h1, h2, h3, h4, h5, h6 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, "MS PGothic", sans-serif;
    line-height: 1.2;
    padding: 0;
    margin: 0 0 0.5em 0;
    border: none;
}
h1 a, h1 a:visited,
h2 a, h2 a:visited,
h3 a, h3 a:visited,
h4 a, h4 a:visited,
h5 a, h5 a:visited,
h6 a, h6 a:visited,
.info1column a, .info1column a:visited,
.info2column a, .info2column a:visited,
.show-thumbnail-title a, .show-thumbnail-title a:visited,
.show4column-thumbnails a, .show4column-thumbnails a:visited {
    color: #222222;
    text-decoration: none;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.info1column a:hover,
.info2column a:hover,
.show-thumbnail-title a:hover,
.show4column-thumbnails a:hover {
    color: #0081cc;
}


/* =========================================================
* GP & Unsemantic調整
========================================================= */
/* フルワイドのセクション */
.generate-sections-fullwide .generate-sections-inside-container {
    padding-left: 0;
    padding-right: 0;
}
.grid-container-800 .grid-container {
    max-width: 800px;
}
.grid-container-900 .grid-container {
    max-width: 900px;
}
.grid-container-1000 .grid-container {
    max-width: 1000px;
}
.grid-container-1100 .grid-container {
    max-width: 1100px;
}
.grid-container-1200 .grid-container {
    max-width: 1200px;
}
.grid-container-1300 .grid-container {
    max-width: 1300px;
}
.grid-container-1400 .grid-container {
    max-width: 1400px;
}
.grid-container-1500 .grid-container {
    max-width: 1500px;
}
.grid-container-1600 .grid-container {
    max-width: 1600px;
}
.grid-container-1700 .grid-container {
    max-width: 1700px;
}

/* 固定幅　※grid-containerはカスタマイザーの「Layout＞Container＞Container Width」設定値（ベーステーマでは1200px）となるため、それ以外の横幅を利用したい場合に利用 */
.grid-400  {max-width: 400px; margin-left:auto;margin-right:auto;} .grid-400::after {clear: both;}
.grid-500  {max-width: 500px; margin-left:auto;margin-right:auto;} .grid-500::after {clear: both;}
.grid-600  {max-width: 600px; margin-left:auto;margin-right:auto;} .grid-600::after {clear: both;}
.grid-700  {max-width: 700px; margin-left:auto;margin-right:auto;} .grid-700::after {clear: both;}
.grid-800  {max-width: 800px; margin-left:auto;margin-right:auto;} .grid-800::after {clear: both;}
.grid-900  {max-width: 900px; margin-left:auto;margin-right:auto;} .grid-900::after {clear: both;}
.grid-1000 {max-width: 1000px;margin-left:auto;margin-right:auto;} .grid-1000::after {clear: both;}
.grid-1100 {max-width: 1100px;margin-left:auto;margin-right:auto;} .grid-1100::after {clear: both;}
/* カスタマイザーの設定値（Container Width）を超える場合は該当セクションの「Inner Box Type」を「Full Width」に変更してから利用する */
.grid-1200 {max-width: 1200px;margin-left:auto;margin-right:auto;} .grid-1200::after {clear: both;}
.grid-1300 {max-width: 1300px;margin-left:auto;margin-right:auto;} .grid-1300::after {clear: both;}
.grid-1400 {max-width: 1400px;margin-left:auto;margin-right:auto;} .grid-1400::after {clear: both;}
.grid-1500 {max-width: 1500px;margin-left:auto;margin-right:auto;} .grid-1500::after {clear: both;}
.grid-1600 {max-width: 1600px;margin-left:auto;margin-right:auto;} .grid-1600::after {clear: both;}
.grid-1700 {max-width: 1700px;margin-left:auto;margin-right:auto;} .grid-1700::after {clear: both;}
.grid-1800 {max-width: 1800px;margin-left:auto;margin-right:auto;} .grid-1800::after {clear: both;}
/* clear:both */
.grid-400::after, .grid-500::after, .grid-600::after, .grid-700::after, .grid-800::after, .grid-900::after, .grid-1000::after, 
.grid-1100::after, .grid-1200::after, .grid-1300::after, .grid-1400::after, .grid-1500::after, .grid-1600::after, .grid-1700::after, .grid-1800::after {
  content: ".";
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

/* トップに戻るボタン(rgbaに変換：http://www.color-hex.com/) */
.generate-back-to-top,
.generate-back-to-top:visited {
    background: rgba( 0,160,210, 1);
}
.generate-back-to-top:hover,
.generate-back-to-top:active,
.generate-back-to-top:focus {
    background: rgba( 0,160,210, 0.8);
}
.generate-back-to-top i {
    color: #fff;
}

/* 固定ページ･投稿ページヘッダーのアイキャッチ画像非表示 */
.page .page-header-image,
.page-header-image-single {
    display: none;
}

/* 見出しクラス：GPのカスタマイザーの設定に合わせる */
.h1 {
    font-size: 30px !important;
    font-weight: 500 !important;
}
.h2 {
    font-size: 26px !important;
    font-weight: 500 !important;
}
.h3 {
    font-size: 22px !important;
    font-weight: 500 !important;
}
/* GPのカスタマイザーはh3までの設定しかないため必要なら設定 */
h4, .h4 {
    font-size: 20px !important;
    font-weight: 500 !important;
}
@media only screen and (max-width: 768px) {
    .h1 {
        font-size: 26px !important;
    }
    .h2 {
        font-size: 24px !important;
    }
}


/* =========================================================
* toolsカスタマイズ
========================================================= */
/* カテゴリの背景色 */
.info1column li a .cat,
.info2column .info-meta .info-cat {
    color: #fff;
    font-weight: 400;
    background: #0081cc;
}
.info1column .date{
    font-weight: 500;
    font-size: 14px!important;
    color: #0081cc!important;
}
.info1column li {
    border-bottom: 1px dotted #c8c8c8;
}
.info1column li a:hover, .info1column li a:focus, .info1column li a:active {
    background-color: #fcfcfa;
}
/*.info1column li a .cat {
position: absolute;
padding: 0;
top: 12px;
left: 10px;
font-size: 80%;
width: 100px;
text-align: center;
}*/

/* ボタンの背景色 */
.button.yellow,
.button.yellow:visited {
    background: #fcc02f;
    color: #0069a6;
    border: solid 1px #f9c340;
}
.button.yellow:hover {
    background: #ffc948;
}
.button.yellow i{
    color: #0069a6;
}
.button.yellow i.left{
    border-right: 1px solid rgba(0, 129, 204, 0.2);
    margin-right: 5px;
    padding-right: 10px;
}

.button.white,
.button.white:visited {
    background: #FFF;
    color: #0081cc;
    border: none;
    border: solid 3px #0081cc;
}
.button.white:hover {
    background: #d8f4ff;
    color: #0081cc;
    border: none;
    border: solid 3px #0081cc;
}
.button.white i{
    color: #0081cc;
}
.button.white i.left {
    border-right: 1px solid rgba(0, 129, 204, 0.2);
    margin-right: 5px;
    padding-right: 10px;
}

hr.hcenter-line {
    padding: 0;
    border: 0;
    margin: 20px auto;
    border-top: 4px solid #0081cc;
    height: 0;
    width: 200px;
}

/*文字色*/
.txt-blue{
    color: #0081cc;
}
.txt-red{
    color: #ff5252;
}
.txt-gray{
    color: #777777;
}

/* テキスト装飾 */

/* 蛍光ペン http://itbenricho.com/highlighter-marker-css.html */
.marker-orange {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ffd58b));
    background: linear-gradient(transparent 60%, #ffd58b 60%);
}
.marker-green {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #d6f99e));
    background: linear-gradient(transparent 60%, #d6f99e 60%);
}

/*背景色*/
.bg-white{
    background: #fff;
}

/*背景パターン*/
.bg-illust01{
    background: url(images/bg_01.png);
}
.bg-dot{
    background-image: url(images/bg_dot.png);
}


.button-line {
    background: #fff!important;
    border: 4px solid #0081cc;
    color: #0081cc;
    display: block !important;
    font-weight: 400;
    padding: 10px 8px;
    width: 400px;
    margin: 0 auto;
    font-size: 24px;
    text-align: center;
    line-height: 1.2;
}
.button-line i{
    color: #0081cc;
}
.button-line:hover i{
    color: #fff;
}


.box-border{
    padding: 6px;
    background: #fff;
    border: solid 1px #D6D2D2;
    border-radius: 2px;
}


@media only screen and (max-width: 768px) {
    .button-line {
        width: 86%;
        font-size: 20px;
    }
}

/* =========================================================
* ヘッダー
========================================================= */
.site-header img.header-image {
    max-height: 44px;
    width: auto;
}
.catchcopy {
    background: #e7f8fb;
    border-bottom: solid 1px #daecf3;
}
.catchcopy h1 {
    font-size: 12px;
    line-height: 22px;
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: #3bb1d8;
}

/* header widget */
.header-widget {
    width: 550px; /* ヘッダー右のCTAエリア横幅設定 */
    max-width: 60%;
}
.header-widget .button {
    font-size: 16px;
    text-align: center;
    margin-bottom: 0;
    padding: 8px 18px;
    vertical-align: middle;
    display: block;
}
.header-tel {
    font-family: 'Ramabhadra', sans-serif;
    font-size: 26px;
    line-height: 0.4;
    letter-spacing: 1px;
    vertical-align: middle;
    font-weight: 500;
    margin: 10px 0 0 0;
    text-align: right;
}
.header-txt {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0;
    color: #808080;
    text-align: right;
}
.header-tel-icon{
    float: left;
}



/* =========================================================
* フッター
========================================================= */
.footer-widget-logo img.footer-logo {
    max-height: 44px;
    width: auto;
}
.inside-footer-widgets .inner-padding {
    padding: 0;
}

.footer-widget-menu-title {
    font-size: 120%;
    line-height: 2em;
}
.footer-widget-menu ul,
.footer-widget-menu ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 90%;
    line-height: 1.6em;
}
.footer-widgeapt-menu li {
    margin: 0;
    padding: 0;
}
.footer-widget-menu li.footer-widget-menu-child {
    margin-left: 18px;
}
.footer-widget-logo {
    margin-bottom: 10px;
}
.footer-widget-info .fa {
    width: 26px;
    text-align: center;
}

.footer-widget-info > div{
    border-left: dotted 1px #35a9ed;
    border-right: dotted 1px #35a9ed;
    margin: 0 20px;
}

/* コピーライト */
footer.site-info .copy1 {
    text-align: left;
}
footer.site-info .copy2 {
    text-align: right;
}

@media only screen and (max-width:  768px) {
    .footer-widget-info > div{
        border-left: none;
        border-right: none;
        margin: 0;
    }
}



/* =========================================================
* ナビゲーション
========================================================= */
/* モバイル表示の電話番号 */
.main-navigation.slideout-navigation .main-nav ul li.menu-tel a {
    line-height: 1.5em !important;
}
.main-navigation.slideout-navigation .main-nav ul li.menu-tel a i {
    color: #0081cc;
}

ul.menu > li {
    width: 16.6%; /* 5=>19.9 6=>16.6 7=>14 */
    letter-spacing: 0.1em !important;
}
/* スクロールした際に横幅指定解除 */
.navigation-stick ul.menu > li {
    width: auto;
}
@media (max-width:992px) {
    ul.menu > li {
        width: auto;
    }
}
/* ナビゲーション間の仕切り線 */
ul.menu > li:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 22px; /* 線の縦幅 */
    top: 18px; /* 高さに応じて要調整 */
    left: 0px;
    background: rgba(160,160,160,0.4); /* 線の色 */
    z-index: 1;
}
ul.menu > li:nth-last-child(2)::after,
ul.menu > li:last-child::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 22px; /* 線の縦幅 */
    top: 18px; /* 高さに応じて要調整 */
    right: 0px;
    background: rgba(160,160,160,0.4); /* 線の色 */
    z-index: 1;
}
/* スクロールした際に仕切り線解除 */
.navigation-stick ul.menu > li::before,
.navigation-stick ul.menu > li:nth-last-child(2)::after,
.navigation-stick ul.menu > li:last-child::after {
    content: none;
}

.main-navigation{
    border-top: solid 1px #e6e6e6;
    border-bottom: solid 7px #0081cc;
}


.menu-tel a{
    padding: 10px 0;
    display: block;
}


/* =========================================================
* パンクズ
========================================================= */
.breadcrumbs {
    background: #fff;
    font-size: 80%;
    line-height: 1.2em;
    padding: 15px 0;
    overflow: hidden;
    border-bottom: 1px solid #e6e6e6;
}
/* 改行させずに…表示 */
.breadcrumbs .grid-container {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
* サイドバー
========================================================= */
/* サイドバーウィジェットのタイトル設定 */
.sidebar .widget .widget-title {
    font-size: 18px;
    color: #fff;
    background-color: #0081cc;
    text-align: center;
    line-height: 1;
    padding: 12px 0;
    margin: 0 0 20px 0; /* .sidebar .widgetのpadding打ち消し */
}
/* セレクトボックスデザイン調整 */
.sidebar .widget select {
    width: 100%;
    padding: 3px;
}
/* ウィジェット用CTA */
.side-cta {
    border: 1px solid #e3e3e3;
    background: #fff;
    padding: 0;
    text-align: center;
}
.side-img {
    padding: 0;
}
.side-tel{
    font-size: 26px;
    line-height: 1.2;
    margin: 5px 10px;
    padding: 3px 0;
    font-weight: 500!important;
}
.side-tel a:visited,
.side-tel a {
    color: #474747!important;
}
.side-tel .tel-icon{
    width: 30px;
    vertical-align: middle;
}
.side-button {
    padding: 10px 5px;
    background: #eee;
}

/* wp show posts関係 */
.sidebar .wp-show-posts-entry-meta {
    text-align: right;
}
.sidebar .wp-show-posts-image.wpsp-image-left {
    margin-right: 15px;
}
.sidebar .wp-show-posts .wp-show-posts-entry-title {
    font-size: 15px;
    line-height: 1.65;
    font-weight: 300;
}
.sidebar .widget ul li {
    border-bottom: dotted 1px #AEC2D5;
}
.sidebar .widget ul li:last-child {
    border-bottom: none;
}


/* =========================================================
* トップページ
========================================================= */
/* meta slider */
.metaslider .flexslider {
    margin: 0 !important;
}
.metaslider .flex-control-nav {
    bottom: 20px !important;
    z-index: 5;
}
.metaslider .flex-control-paging li a {
    background: rgba(0,129,204,0.5);
    -webkit-box-shadow: none;
            box-shadow: none;
}
.metaslider .flex-control-paging li a.flex-active {
    background: rgba(0,129,204,0.9);
}

.mainslider{
    background: url(images/slide_bg.png);
}
.top-title{
    position: relative;
    background: url(images/bg_01.png);
    background-position: 0 bottom;
}

.top-title:after {
    content: url(images/ar_blue.png);
    position: relative;
    bottom: 2px;
    text-align: center;
    background-size: 0 0;
}

.top-title h2{
    background: #0081cc;
    width: 100%;
    text-align: center;
    margin: 0;
}
.top-passrate h3{
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 0.5em 0;
}
.top-taiken h3{
    font-size: 33px;
    font-weight: 700;
    margin: 0 0 0.5em 0;
}
.top-passrate h3 span{
    font-size: 17px;
    font-weight: 300;
    display: block;
    margin: -5px 0 0 0;
}
.top-passrate > div{
    text-align: left;
    font-size: 24px;
    width: 80%;
    margin: 0 auto;
    color: #515151;
    line-height: 1.2;
}
.top-passrate .cat{
    font-size: 33px;
    text-align: left;
    font-weight: 500;
    padding: 20px;
}
.top-passrate .cat + div{
    border-left: dotted 3px #C7C0B7;
}
.top-passrate .cat img{
    max-width: 60px;
    vertical-align: middle;
}
.top-passrate .num{
    color: #ff5252;
    font-weight: 700;
    font-size: 38px;
    line-height: 0.2;
}
.top-passrate .numL{
    color: #ff5252;
    font-weight: 700;
    font-size: 50px;
    line-height: 0.5;
}
.top-passrate .numL span,
.top-passrate .num span{
    font-weight: normal;
    font-size: 24px;
}

.top-passrate .medical,
.top-passrate .public,
.top-passrate .private{
    padding: 10px 0;
    margin-bottom: 10px;
    background: #f5f4ec;
    border-radius: 2px;
    background-color: rgba(245,244,236,0.6);
}

.top-passrate .medical{border-left: solid 15px #6dbc39;}
.top-passrate .public{border-left: solid 15px #02b7e4;}
.top-passrate .private{border-left: solid 15px #fcc338;}
.top-passrate div p{
    line-height: 1.5;
    margin: 10px;
}
.top-taiken .name img{
    padding: 4px;
    margin-bottom: 10px;
    border: solid 1px #D6D2D2;
    background: #fff;
}
.top-taiken .name{
    font-size: 15px;
    line-height: 1.2;
}

.top-taiken .txt strong span{
    display: block;
    margin-top: -0.4em;
}
.top-taiken .txt strong img{
    float: left;
    padding: 5px 5px 5px 10px;
    max-width: 50px;
}
.top-taiken .txt p{
    clear: both;
    padding: 0 0 0 10px;
}
.top-taiken .student01, .top-taiken .student02, .top-taiken .student03, .top-taiken .student04{
    background-image: url(images/bg_bluel.png);
    background-position: 0 0;
    background-repeat: no-repeat
}
.top-taiken .student02{
    background-color: #dbf4f8;
    background-color: #f5f4ec;
}
.top-taiken .student03{
    background-color: #fdf9e6;
    background-color: #f5f4ec;
}

.top-point .grid-container div div{
    padding: 6px;
    background: #fff;
    border: solid 1px #D6D2D2;
    border-radius: 2px;
}
.top-point span.num{
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    display: block;
    padding: 0 10px;
    background: #0081cc;
    position: relative;
    top: 25px;
    left: 20px;
    z-index: 1;
    width: 50px;
    text-align: center;
    border-radius: 3px;
}
.top-point p{
    margin: 10px 0;
}
.top-point p strong{
    font-size: 20px;
}
.top-point h4{
    font-size: 30px!important;
    font-weight: 700!important;
}



@media only screen and (max-width:  992px) {
    .top-passrate > div{
        width: 96%;
    }
    .top-passrate .cat{
        font-size: 28px;
        font-weight: bold;
    }

    .top-taiken .name img{
        max-width: 100px;
    }
    .top-taiken .student01, .top-taiken .student02, .top-taiken .student03, .top-taiken .student04{
        background-color: #fff;
    }
    .top-taiken .student02, .top-taiken .student04{
        background-color: #f5f4ec;
    }

}

@media only screen and (max-width:  768px) {
    .top-passrate h3{
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 0.5em 0;
        line-height: 1.4;
    }
    .top-taiken h3{
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 0.5em 0;
        line-height: 1.4;
    }
    .top-passrate h3 span{
        font-size: 15px;
        margin: 0;
    }
    .top-passrate > div{
        text-align: left;
        font-size: 18px;
        width: 98%;
        margin: 0 auto;
        color: #515151;
        line-height: 1.4;
    }
    .top-passrate .cat {
        text-align: center;
        padding: 5px 0;
        color: #fff;
    }
    .top-passrate .cat + div{
        border-left: none;
    }
    .top-passrate .cat img{
        max-width: 60px;
        vertical-align: middle;
        padding: 5px;
    }
    .top-passrate .num{
        color: #ff5252;
        font-weight: 700;
        font-size: 20px;
        line-height: 1;
    }
    .top-passrate .numL{
        color: #ff5252;
        font-weight: 700;
        font-size: 30px;
        line-height: 1;
    }
    .top-passrate .numL span,
    .top-passrate .num span{
        font-weight: normal;
        font-size: 16px;
    }

    .top-passrate .medical,
    .top-passrate .public,
    .top-passrate .private{
        padding: 10px 0;
        margin-bottom: 10px;
        background: #f5f4ec;
        border-radius: 2px;
        background-color: rgba(245,244,236,0.6);
        border: none;
    }

    .top-passrate .medical .cat{background: #6dbc39;}
    .top-passrate .public .cat{background: #02b7e4;}
    .top-passrate .private .cat{background: #fcc338;}
    .top-passrate div p{
        line-height: 1.5;
        margin: 10px;
    }
    .top-point h4{
        font-size: 20px!important;
        font-weight: bold!important;
    }

}


/* 以下、不要なものは削除　ここから */
.white-box {
    background: #ffffff;
    box-shadow: 0px 0px 1px #aaa;
    -moz-box-shadow: 0px 0px 1px #aaa;
    -webkit-box-shadow: 0px 0px 1px #aaa;
}
.inner-box {
    padding: 15px;
}
.white-box h2 {
    font-size: 22px;
}
.s1-box {
    border: 5px solid #dddddd;
    padding: 20px;
}
.s1-title {
    font-size: 30px;
    color: #005f9c;
    border: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-weight: bold;
}
.s2-box {
    background: #ffffff;
    padding: 20px;
    border-top: 5px solid #005f9c;
}
.s2-title {
    font-size: 24px;
    color: #005f9c;
    text-align: center;
    border: none;
    padding: 0;
    margin: 40px 0 20px 0;
    font-weight: bold;
}
.site-main .wp-show-posts .wp-show-posts-entry-title {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}
/* 不要なものは削除　ここまで */


/* =========================================================
* カテゴリーページ
========================================================= */
/* カテゴリータイトル */
.page-header h1 {
    font-size: 30px;
    background-image: url(images/bg_dot_lblue.png);
}

/* =========================================================
* 投稿・固定ページ
========================================================= */
/* 固定ページ・投稿タイトル */

.entry-header h1 {
    line-height: 1.4;
    padding: 5px 0 5px 10px;
    border-left: 5px solid #0081cc;
    background: #fff;
}
.page-header h1{
    line-height: 1.4;
    padding: 5px 0 5px 10px;
    border-left: none;
    background-color: none;
    text-align: center;
}


.entry-header h2,
.entry-content h2 {
    line-height: 1.4;
    padding: 0 0 0 10px;
    border-left: 5px solid #0081cc;
}

.page-ttl{
    font-size: 40px;
    font-weight: 400;
    margin: 0 0 0.5em 0;
    line-height: 1;
}
hr.ttl-line {
    padding: 0;
    border: 0;
    margin: 20px auto 40px auto;
    height: 10px;
    width: 260px;
    background-image: url(images/bg_dot.png);
}

.container-box{
    max-width: 1100px;
    margin: 0 auto;
}

h2.page-img{
    margin: 0!important;
    padding: 0!important;
    border: none!important;
    position: relative;
    text-align: center;
}
h2.page-img span{
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 1;
    color: #fff;
    padding: 40px 0;
    display: block;
    font-size: 120%;
    width: 50%;
    text-align: center;
    background: rgba(0, 129, 204, 0.9);
}
h2.page-img span.right{
    right: 0;
    left: auto;
}
h2.page-img span.center{
    right: auto;
    left: 50%;
    margin-left: -25%;
}

.page-bg{
    background: url(images/bg_pagettl.png) 0 0 repeat-x #f0f5fb;
    padding-bottom: 40px;
}


/*当塾について*/
#highschool, #graduate{
    padding-top: 40px;
    margin-top: -40px;
}
#graduate{
    padding-top: 100px;
}
.about table.point{
    margin: 0;
}
.about table.point tr td{
    padding: 20px!important;
    vertical-align: top;
    width: 50%;
}
.about table.point tr:nth-child(odd) td:nth-child(odd) {
    background: #f5f4ec;
}
.about table.point tr:nth-child(even) td:nth-child(even) {
    background: #f5f4ec;
}

.about h3 {
    color: #0081cc;
    font-size: 24px;
    line-height: 1.4;
}
.about span.num {
    background: #0081cc;
    border-radius: 3px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 0 10px;
}

.about .schedule{
    margin: 0 auto;
    padding-top: 20px;
    width: 98%;
    background: #f5f4ec;
}
.about .schedule th{
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    background: #dff7fe;
}



/*合格実績*/
#select-year{
    text-align: center;
    width: 100%;
    position: relative;
    top: -30px;
    z-index: 1;
    margin: 0 0 -30px 0;
}
#select-year li{
    list-style: none;
    display: inline-block;
    width: 10%;
    padding: 0 0 5px 0;
}
#select-year li a{
    list-style: none;
    display: inline-block;
    padding: 3px;
    text-align: center;
    background: #fff;
    color: #0081cc;
    border: solid 2px #0081cc;
    font-size: 14px;
    line-height: 1.2;
    width: 100%;
    vertical-align: top;
}
#select-year li a.selected{
    display: inline-block;
    padding: 3px;
    text-align: center;
    background: #0081cc;
    color: #fff;
    border: solid 2px #0081cc;
}
#select-year li a:hover{
    color: #fff;
}

#select-year a strong{
    font-size: 20px;
    display: block;
}
.results-list{
    display: none;
}
.results-list:nth-of-type(1){
    display: block;
}

.results-list h3{
    margin-bottom: 1em;
    font-weight: 500;
    font-size: 30px;
}
.results-list{
    padding: 0 10px 20px 10px;
    margin: 0 0 0 10px;
}
.results-list > div{
    padding: 10px 0;
    background: #f5f4ec;
}
.results-list h4{
    font-size: 26px!important;
    color: #fff;
    padding: 5px;
    margin:0;
}
.results-list h4 img{
    width: 60px;
    vertical-align: bottom;
    padding: 0 5px;
}
.results-list .num{
    color: #ff5252;
    font-weight: 700;
    font-size: 28px;
    line-height: 0.2;
}
.results-list .numL{
    color: #ff5252;
    font-weight: 700;
    font-size: 24px;
    line-height: 0.5;
}
.results-list .num span{
    font-weight: normal;
    font-size: 16px;
}

.results-list div p{
    margin: 0;
    padding: 5px;
    border-bottom: dotted 1px #c7c0b7;
}
.results-list div .noline,
.results-list div p:last-child{
    border-bottom: none;
}
.results-list div p strong{
    font-size: 18px;
}

.results-list .public{background: #02b7e4;}
.results-list .private{background: #fcc338;}
.results-list .medical{background: #6dbc39;}


/*塾長・講師紹介*/
.teachers-list{
    padding: 20px;
    text-align: center;
}
.teachers-list > div{
    padding: 10px 20px;
    text-align: left;
}
.teachers-list div img{
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
    padding: 4px;
    border: solid 1px #d6d2d2;
}
.teachers-list strong{
    font-size: 22px;
}
.teachers-list strong span{
    font-size: 16px;
    margin: 10px auto;
    padding: 5px 0;
    font-weight: normal;
    color: #0081cc;
    display: block;
    width: 80%;
    border-top: dotted 1px #57b5ec;
    border-bottom: dotted 1px #57b5ec;
}
.teachers-list p{
    font-size: 16px;
}

.teachers-list .comment div{
    background: #dff7fe;
    padding: 20px;
    margin-left: 30px;
    border-radius: 10px;
    position:relative;
    -webkit-box-sizing:border-box;
            box-sizing:border-box;
}
.teachers-list .comment div:before {
    border: 20px solid transparent;
    border-right-color:#dff7fe;
    position:absolute;
    top:50px;
    left:-40px;
    display:block;
    width:0;
    height:0;
    content:"";
}

.teachers-list .comment div.bg1{
    background: #ebfbee;
}
.teachers-list .comment div.bg1:before{
    border-right-color: #ebfbee;
}
.teachers-list .comment div.bg2{
    background: #fcf8e8;
}
.teachers-list .comment div.bg2:before{
    border-right-color: #fcf8e8;
}
.teachers-list .comment div.bg3{
    background: #ebf1fb;
}
.teachers-list .comment div.bg3:before{
    border-right-color: #ebf1fb;
}


.teachers-list hr{
    border: none;
    height: 0;
    background: none;
}
.teachers-list hr:after{
    background: #0081cc;
    content: "";
    height: 5px;
    width: 90%;
    margin: 0 auto;
    border-radius: 5px;
    display: block; 
}



/*会津学院概要background: #0081cc;*/
.info .info-table{
    background: #fff;
    padding: 20px;
}
.info .info-table table{
    background: #F7F7F7;
    margin-bottom: 0;
}
.info .info-table th{
    text-align: center;
    font-weight: bold;
    background: #dff7fe;
}
.info .info-table th,
.info .info-table td{
    padding: 5px 10px;
}

/* 合格体験記 */
.ex-img img {
    text-align: center;
    padding: 4px;
    border: solid 1px #ccc;
}
.ex-txt .ex-univ {
    font-size: 22px;
    color: #0081cc;
}
.ex-txt .ex-univs {
    font-size: 18px;
    color: #0081cc;
}
.ex-txt .ex-name {
    font-size: 18px;
    display: block;
    margin-top: 10px;
}

@media only screen and (max-width : 768px) {
    .page-ttl{
        font-size: 30px;
        font-weight: bold;
    }
    h2.page-img{
        margin: 0!important;
        padding: 0!important;
        border: none!important;
        position: relative;
    }
    h2.page-img span{
        position: relative;
        top: 0;
        left: 0;
        z-index: 1;
        color: #fff;
        padding: 10px 0;
        display: block;
        font-size: 18px;
        width: 100%;
        text-align: center;
        background: rgba(0, 129, 204, 0.9);
    }
    h2.page-img span.right{
        top: 0;
        left: 0;
    }
    h2.page-img span.center{
        top: 0;
        left: 0;
        margin-left: 0;
    }
    .results-list h3{
        margin-bottom: 0.5em;
        font-weight: bolf;
        font-size: 24px;
    }
    #select-year{
        top: 0;
        margin: 10px 0 0 0;
        padding: 0;
    }
    #select-year li{
        list-style: none;
        display: inline-block;
        width: 20%;
        padding: 0 2px 5px 2px;
    }
    #select-year li a{
        font-size: 12px;
    }
    #select-year a strong{
        font-size: 16px;
        display: block;
    }

    .teachers-list > div{
        padding: 0 0 20px 0;
        max-width: 98%;
        text-align: left;
    }
    .teachers-list strong{
        font-size: 18px;
        display: block;
        text-align: center;
        padding: 5px 0;
    }
    .teachers-list .comment div{
        margin-left: 0px;
    }
    .teachers-list .comment div:before {
        content: "";
        border: none;
        position: relative;
    }

    #graduate{
        padding-top: 0;
    }
    .about table.point tr td{
        width: auto;
    }
    .about table.point td:nth-child(odd){
        background: #fff!important;
    }
    .about table.point td:nth-child(even) {
        background: #f5f4ec!important;
    }


    .about .schedule th{
        font-size: 16px;
    }


    .teachers-list{
        padding: 10px;
        text-align: center;
    }

    .teachers-list div img{
        max-width: 160px;
    }


}



/* =========================================================
* 投稿・固定ページ下CTA
========================================================= */

.type-post #cta {
    display: none;
}
#cta {
    font-size: 16px;
}
#cta h2 {
    margin-top: 4em;
}
#cta .cta-container {
    padding: 20px 15px;
    /*border-radius: 5px;*/
    background-position: 0 -20px;
    border-top: solid 1px #e7eef8;
}

#cta .cta-container > div{
    width: 80%;
    margin: 40px auto;
    background-color: rgba(0, 150, 195, 0.7);
    color: #fff;
}
#cta .cta-textarea strong{
    font-size: 25px;
    font-weight: 500;
}
#cta .cta-textarea {
    padding: 20px 10px 0 10px;
    color: #fff;
    text-align: center;
    font-size: 15px;
}
#cta .cta-title {
    position: relative;
    margin: 0 0 20px 0;
    padding: 10px;
    padding-left: 25px;
    font-weight: normal;
    font-size: 22px;
    background-color: #0081cc;
    color: #fff;
    /*border-radius:3px;*/
}
#cta .cta-title:before {
    content: '';
    height: 26px;
    width: 2px;
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #fff;
    border-left: 4px solid #fff;
    /*border-radius:2px;*/
}
#cta .cta-subtitle {
    font-size: 18px;
    color: #fff;
    background-color: #0081cc;
    padding: 10px;
    /*border-radius:3px;*/
}
#cta .cta-tel {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0.1em;
    color: #fff;
    font-weight: 500;
    margin: 10px 0;
}
#cta .cta-txt {
    font-size: 12px;
    line-height: 18px;
}



@media screen and (max-width: 1200px) {
    #cta .cta-container > div{
        width: 90%;
    }
}


/* =========================================================
* イメージ ※一部Bootstrap利用
========================================================= */
img {
    vertical-align: middle;
}
a:hover img {
    opacity:0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha( opacity=80 )";
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.img-rounded {
    border-radius: 6px;
}
.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}
.img-circle {
    border-radius: 50%;
}


/* =========================================================
* テーブル Bootstrap利用
========================================================= */
table, td, th {
    border: none;
    font-weight: 300; /* GPのカスタマイザーに合わせて調整 */
}
/* CSSリセットここまで */

table {
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    table-layout: fixed; /* 2016.1.10追加 */
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 10px;
    line-height: 1.42857143;
    vertical-align: middle;
    border-top: 1px solid #dddddd;
}
.table > thead > tr > th {
    vertical-align: middle;
    border-bottom: 2px solid #dddddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}
.table > tbody + tbody {
    border-top: 2px solid #dddddd;
}
.table .table {
    background-color: #ffffff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}
.table-bordered {
    border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #dddddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}
table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}
.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}
@media screen and (max-width: 768px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #dddddd;
    }
    .table-responsive > .table {
        margin-bottom: 0;
    }
    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }
    .table-responsive > .table-bordered {
        border: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }
    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }
    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}

.table-borderbottom {
    border-bottom: 1px solid #dddddd;
}

/* th調整 */
th {
    text-align: left;
    background: #fff;
}
/* モバイル時のフォント */
table.hide-on-desktop,
table.hide-on-tablet {
    font-size: 80%;
}






/* =========================================================
* テーブル レスポンシブ設定（2列の場合に効果的）
========================================================= */
/* XSサイズ : Extra Small Devices, Phones */
@media only screen and (max-width : 768px) {
    table.table-small {
        font-size: 80%;
        letter-spacing: 0;
    }
    table.table-small tr th,
    table.table-small tr td {
        padding: 5px;
    }
    .table,
    .table-bordered {
        border: none !important;
    }
    /* tableのレスポンシブ対応（table-pcを除く） */
    table:not(.table-pc) th,
    table:not(.table-pc) td {
        width: 100%;
        display: block;
    }
    table:not(.table-pc) th {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        background: rgba(0, 0, 0, 0.05);
        padding: 5px !important;
    }
    table:not(.table-pc) td {
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        padding: 10px 5px 20px 5px !important;
        border: none !important;
    }
    table:not(.table-pc) input,
    table:not(.table-pc) select,
    table:not(.table-pc) textarea {
        width: 100%;
    }
    /* checkboxのレスポンシブ対応 */
    table:not(.table-pc) span.wpcf7-list-item input {
        width: auto;
    }
}
/* カスタム, iPhone Retinaディスプレイ */
@media only screen and (max-width : 320px) {
    table.table-small {
        font-size: 70%;
        letter-spacing: 0;
    }
    table.table-small tr th,
    table.table-small tr td {
        padding: 5px;
    }
}

/* =========================================================
* DL DT DD ※Bootstrap利用
========================================================= */
dl {
    margin-top: 0;
    margin-bottom: 20px;
}
dt,
dd {
    line-height: 1.42857143;
}
dt {
    font-weight: bold;
}
dd {
    margin-left: 0;
}
@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .dl-horizontal dd {
        margin-left: 180px;
    }
}
.dl-horizontal dd:before,
.dl-horizontal dd:after {
    display: table;
    content: " ";
}
.dl-horizontal dd:after {
    clear: both;
}

/* =========================================================
* コンタクトフォーム
========================================================= */
/* チェックボックス縦並び */
span.wpcf7-list-item {
    display: block;
}
/* チェックボックス装飾 */
.acceptance-0 input[type="checkbox"] {
    -webkit-transform: scale(1.6, 1.6);
    transform: scale(1.6, 1.6);
    margin-right: 5px;
}


/* =========================================================
* WP-PAGENAVI
========================================================= */
/*
* generatepressのページャーを非表示
* https://generatepress.com/forums/topic/blog-paging-pagenavi-styles/
*/

.page-numbers {
    display: none;
}

.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
    text-decoration: none;
    padding: 5px 8px;
    margin: 2px;
    font-size: 15px;
    line-height: 15px;
    float: left;
}

.wp-pagenavi a,
.wp-pagenavi a:link,
.wp-pagenavi a:active,
.wp-pagenavi a:focus {
    color: #0081cc;
    border: 1px solid #fff;
    background: none;
}

.wp-pagenavi span.current {
    font-weight: bold;
    color: #fff;
    background: #0081cc;
    border: 1px solid #fff;
    padding: 5px 8px;
}

.wp-pagenavi a:hover {
    color: #ffffff;
    background: #0081cc;
    border: 1px solid #fff;
    padding: 5px 8px;
}

.wp-pagenavi span.pages {
    color: #0081cc;
    background: none;
    padding: 5px 8px 5px 0;
}

.wp-pagenavi span.extend {
    background: transparent;
    color: #0081cc;
    background: none;
}


/* =========================================================
* メディアクエリ
========================================================= */


/*==========  モバイル・ファーストの場合  ==========*/


/* カスタム, iPhone Retinaディスプレイ */

@media only screen and (min-width: 320px) {}


/* XSサイズ : Extra Small Devices, Phones */

@media only screen and (min-width: 480px) {}


/* Sサイズ、タブレット : Small Devices, Tablets */

@media only screen and (min-width: 768px) {}


/* Mサイズ、デスクトップ : Medium Devices, Desktops */

@media only screen and (min-width: 992px) {}


/* Lサイズ、ワイドスクリーン : Large Devices, Wide Screens */

@media only screen and (min-width: 1200px) {}


/*==========  非モバイル・ファーストの場合  ==========*/

/* Lサイズ、ワイドスクリーン : Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {}

/* カスタマイザーのContainer Width */
@media only screen and (max-width: 1100px) {
    .site-content {
        padding: 0 0px;
    }
}

/* Mサイズ、デスクトップ : Medium Devices, Desktops */
@media only screen and (max-width: 992px) {}


/* Sサイズ、タブレット : Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    /* モバイル時にはシステム標準フォントに */
    body {
        font-family: sans-serif;
        line-height: 1.7;
        letter-spacing: 0;
        font-weight: 400;
    }
    button, input, select, textarea {
        font-family: sans-serif;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: sans-serif;
    }
    .site-content {
        padding: 0;
    }
    .separate-containers .inside-article,
    .generate-sections-inside-container,
    .sidebar {
        padding-left: 0px;
        padding-right: 0px;
    }
    body.page .mobile-grid-100 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    body.archive .mobile-grid-100,
    body.single .mobile-grid-100,
    body.blog .mobile-grid-100 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    footer.site-info .copy1 {
        text-align: center;
    }
    footer.site-info .copy2 {
        text-align: center;
    }
}


/* XSサイズ : Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
    .separate-containers .inside-article,
    .generate-sections-inside-container,
    .sidebar {
        padding-left: 0px;
        padding-right: 0px;
    }
}


/* カスタム, iPhone Retinaディスプレイ */
@media only screen and (max-width: 320px) {}

/* 2018.4.23追加 */
.not-noto {
	font-family: "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, Meiryo, "MS PGothic", sans-serif !important;
}
/* 2019.2.13追加 */
.ttl-news {
    position: relative;
    padding: 40px 0;
}
.ttl-news h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
}
@media (max-width: 768px) {
    .ttl-news {
        padding: 15px 0;
    }
    .ttl-news h2 {
        font-size: 22px;
    }
}
.ttl-news::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 17px 0 17px;
    border-color: #0081cc transparent transparent transparent;
    
    position: absolute;
    content: "";
    display: block;
    left: calc( 50% - 17px );
    bottom: -15px;
}
.bg-illust01 .infoarea {
    padding: 15px;
    background: #fff !important;
}
@media (max-width: 768px) {
    .bg-illust01 .infoarea {
        padding: 5px;
    }
}
/* 2023.3.7 */
.mathematics-content {
    padding: 20px;
}
.mathematics-list {
    border: 3px solid #208DD1;
    background-color: #fff;
    padding: 30px;
}
.mathematics-list ul {
    margin: 0 0 0 30px;
}
.math-box-a {
    background-color: #ffffff;
    padding: 20px;
}
.math-box-b {
    background-color: #F5F4EB;
    padding: 20px;
}
/* 画面サイズが768px未満の場合のスタイルを指定 */
@media (max-width: 768px) {
    .mathematics-content {
        padding: 10px;
    }
    .mathematics-list {
        border: 2px solid #208DD1;
        padding: 10px;
    }
    .mathematics-list ul {
        margin: 0 0 0 25px;
    }
    .math-box-a {
        padding: 10px;
    }
    .math-box-b {
        padding: 10px;
    }
}
.wpcf7 table p:last-child { margin-bottom: 0; }