/*
Theme Name: AFFINGER Child
Template: affinger
Description: AFFINGER6 対応
Version: 20260225-seed
*/

/* よくある質問 */
.st-faq.st-toggle-visibility.has-st-border {
  padding: 1em 1em;
}
.st-faq__answer-content {
  font-size: 15px;
}
.st-faq.has-st-border {
  border: solid 2px #EEE;
}

/* =========================================================
   目次モーダル：Firefoxのクリックブロック対策
========================================================= */
#ino-toc-overlay{
  touch-action: none;
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(0,0,0,.45);
  opacity: 0;
  visibility: hidden;
  transition: .15s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
}
#ino-toc-overlay.is-open{
  opacity: 1;
  visibility: visible;
}


/* =========================================================
   モーダル本体
========================================================= */
#ino-toc-modal{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: 80vh;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  transform: translateY(12px);
  transition: .15s ease;
}
#ino-toc-overlay.is-open #ino-toc-modal{
  transform: translateY(0);
}

/* モーダルヘッダー */
.ino-toc-modal-head{
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.ino-toc-title{
  font-weight:700;
  font-size:14px;
}
.ino-toc-close{
  border:none;
  background:transparent;
  font-size:22px;
  cursor:pointer;
}

/* スクロール領域（←これが長い目次の解決部分） */
.ino-toc-modal-body{
  flex:1 1 auto;
  overflow-y:auto;
  min-height:0;
  padding:10px 14px 14px;
  -webkit-overflow-scrolling: touch;
}

/* モーダル内目次の余白 */
#st_toc_container_modal ul{
  padding-left:18px;
  line-height:1.6;
}

/* モーダル表示中の背面スクロール停止 */
html.ino-toc-lock{
  overflow:hidden;
}


/* =========================================================
   PC右下：目次ボタン（ページトップボタンの上に配置）
========================================================= */
@media (min-width:1024px){
  #ino-toc-fab{
     position:fixed;
    right:15px;
    bottom:89px; /* #page-top(40px)の上 */
    z-index:99999;
    width:50px;
    height:50px;
    border:1px solid #4682b4;
    background:#fff;
    color:#4682b4;
    font-size:13px;
    line-height:49px;
    text-align:center;
    cursor:pointer;
  }
}

/* =========================================================
   スマホ右下ボタン
========================================================= */
@media (max-width:1023px){
  #ino-toc-fab{
    position: fixed;
    right: 1px;
    bottom: 44px;
    z-index: 99999;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,.2);
    background: #fff;
	color: #4682b4;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
  }
}


/* =========================================================
   PC：サイドバー目次を追従
========================================================= */
@media (min-width:1024px){
  #toc-sidebar-box{
    position: sticky;
    top: 110px; /* ヘッダー高さに応じて調整 */
    z-index:10;
  }
  #ino-toc-overlay{ align-items:center !important; }
}

/* ボタンの中身を縦並びにする */
#ino-toc-fab{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  line-height:1;
}

/* 「目次」文字 */
#ino-toc-fab .toc_back_icon{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-size:12px;
  letter-spacing:0.05em;
}

/* アイコン（stsvg使用） */
#ino-toc-fab .toc_back_icon::before{
  content:"\e91c";
  font-family:"stsvg";
  font-size:12px;
  margin-bottom:6px;
  line-height:1;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ホバー時少し反応 */
#ino-toc-fab:hover{
  transform:translateY(-2px);
  transition:.15s;
}

#ino-toc-fab{
  transition: opacity .18s ease;
}

/* ===== サイドバー・モーダル目次：クリック範囲を li 全体に ===== */

#st_toc_container_sidebar li a,
#st_toc_container_modal li a{
  display:block;
  text-decoration:none;
}

/* ホバー時に分かるように（任意） */
#st_toc_container_sidebar li a:hover,
#st_toc_container_modal li a:hover{
  background:rgba(0,0,0,0.06);
}

/* 行間を少し整える */
#st_toc_container_sidebar ul li {
  margin:0;
  line-height:1.5;
}
 #st_toc_container_modal ul li {
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  line-height: 1.8;
  margin:0;
}

/* ================================
   SWELL風：スマホの目次モーダルUI
================================ */
@media (max-width:1023px){

  /* 背景の暗幕 */
  #ino-toc-overlay{
    background: rgba(0,0,0,.55);
    padding: 10px;
    align-items: center;          /* 中央寄せ */
  }

  /* 白い板（ほぼ全面） */
  #ino-toc-modal{
    width: min(680px, 96vw);
    height: min(78vh, 640px);     /* SWELLっぽい高さ */
    max-height: 78vh;
    border-radius: 2px;           /* 角丸を弱く（0でもOK） */
    transform: none;              /* 下からスライド感を消す */
    transition: none;
    position: relative;
  }

  /* ヘッダー：中央寄せ */
  .ino-toc-modal-head{
    justify-content: center;
    gap: 10px;
    border-bottom: none;
    padding: 18px 16px 10px;
  }

  /* タイトルを大きめに */
  .ino-toc-title{
    font-size: 14px;
    letter-spacing: .08em;
  }

  /* 本文：下の「閉じるバー」分だけ高さを確保してスクロール */
  .ino-toc-modal-body{
    padding: 8px 18px 70px;       /* 下に閉じるバー分の余白 */
    overflow-y: auto;
  }

  /* 下固定の「× 閉じる」バー */
  #ino-toc-closebar{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:52px;
    border:0;
    border-top:1px solid rgba(0,0,0,.12);
    background:#fff;
    font-size:17px;
    letter-spacing:.06em;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
  }

  #ino-toc-closebar:active{
    background:#f3f3f3;
  }

  /* 本文がボタンの裏に隠れないよう余白 */
  .ino-toc-modal-body{
    padding-bottom:70px;
  }
}
html.ino-toc-lock #ino-toc-fab,
html.ino-toc-lock #st-footermenubox{
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width:1023px){

  /* 閉じるバーの高さを1か所で管理 */
  #ino-toc-modal{
    --toc-closebar-h: 52px;
  }

  #ino-toc-closebar{
    height: var(--toc-closebar-h);
  }

  /* 本文側の下余白＝閉じるバー＋余裕分 */
  .ino-toc-modal-body{
    padding-bottom: calc(var(--toc-closebar-h) + 26px) !important;
  }
}

/* ページトップへ戻る  */
#page-top:not(.page-top-img):not(.st-pagetop-text) a {
  width: 50px;
  height: 50px;
}

/*記事上広告表示*/
.kijiue {
  color: #979797;
  font-size: 14px;
  list-style: none;
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 0px;
}
#content .st-post #singlebox_widget-6 > * ,
#content .st-post #singlebox_widget-6 {
	margin-bottom:10px;
}

/* 広告 */
:root .st-catid-ad {
	background: #fafafa;
	color: #333;
	display: inline-flex;
}
.catname {
  line-height: 1.5em;
  padding: 8px 8px;
}
.post .st-catgroup {
  padding: 5px 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/*スライドボックス*/
.st-slidebox-c {
  padding: 7px 0; 
  margin-bottom: 0px;
  border-bottom: 1px dashed #ccc;
}
.post .st-btn-open {
    font-weight: normal;
    font-size: 15px;
}
.post .st-btn-open:before {
  	content: "\f138";
  	font-family: stsvg;
	color: #1450aa;
    margin-right: 8px;
}
.st-slidebox p {
    font-size: 95%;
    line-height: 23px;
}
.st-slidebox {
	padding: 20px 10px 20px 10px;
	background: #eef9fe;
	font-size: 90%;
	line-height: 24px;
}

/*この記事を書いた人*/
#st-tab-menu li.active {
    background: #1450AA;
}
#st-tab-box {
    border: 1px solid #ccc;
}

.page .author a {
  text-decoration: none;
}
.page .author {
  font-size: 12px;
  line-height: 1.3;
  font-style: normal;
  color: #757575;
}

/*PDF等レスポンシブ対応*/
.frame-wrapper__video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  margin-bottom: 35px;
}

.frame-wrapper__video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*ボックスメニュー*/
.st-box-btn li a {
    padding: 20px 15px;
}
.st-box-btn .st-fa {
    color: #6dc1ee;
}
.st-box-btn li a:hover {
    color: #4682b4;
}
.post .st-box-btn .fa-youtube-play,
#side .st-box-btn .fa-youtube-play {
  color: #c4302b;
}
#side .st-box-btn li a {
    padding: 10px 10px;
}

/*コメント*/
.comment-author {
    float: none;
	position: static;
	width: 100%;
    box-sizing: content-box;
    text-align: left;
	padding: 0px;
}
#comments li.comment {
    padding: 5px 5px 5px 10px;
}
.vcard .fn, .comment-author a, .comment-author {
    margin-bottom: 10px;
	line-height: normal;
}
img.avatar {
    border-radius: 50%;
}
.comment-body {
    padding: 10px 5px 10px 0;
}
.comment-author img {
    width: 40px;
	margin-bottom: 10px;
	vertical-align: bottom;
}
.comment-author.vcard .avatar {
	float: left;
	margin-right: 10px;
}
.comment .vcard .fn, .comment-author a, .comment-author {
    color: #333;
}
#comments input[type="submit"] {
    background: #54b278;
	color: #ffffff;
	width: 50%;
    border-radius: 40px;
	border: 1px #397f5a solid;
}
#comments .form-submit {
    text-align: right;
}
/*
#comments input[type="submit"] {
    background: #4ac420;
	color: #ffffff;
    border-bottom: 5px solid #3da21a;
	margin-top: 20px;
}
.comment-reply-title :after {font-size: 14px; font-weight: normal; content: "（承認後に公開されます）";}*/
.post-2923 .comment-reply-title :after,
.post-4889 .comment-reply-title :after {font-size: 14px; font-weight: normal; content: "（ご自身のグラフについて質問される場合、現実と理想を行い、疑問点を具体的にご記載下さい。）";}
#comments #respond {
  line-height: 26px;
}

#comments p a {
    color: #4682b4;
}
#comments .akismet_comment_form_privacy_notice a {
  color: #333;
}
#comments .akismet_comment_form_privacy_notice {
  font-size: 90%;
}
.comment-body .yellowbox,
.comment-body .redbox,
.comment-body .graybox {
    margin-top: 20px;
}

.post .st-marumozi {
    font-size: 85%;
    padding: 2px 15px;
    margin:  0 0 10px;
    display: inline-block;
	background:#2196F3;
    color: #fff;
	border-radius: 4px;
}

.st-marumozi-big {
    padding: 5px 15px;
    margin: 0 10px 0 0;
    display: inline-block;
}

.st-blackboard {
    border: 2px solid #ccc;
}

/* 何でも追従機能 PC(タブレット) */
    .fixed-wrap{
      position:fixed;
      z-index:100;
      max-width:180px; /* 最大横幅 */
      display:none;
      bottom:30px; /* 配置場所(画面下からの距離) */
      right:90px; /* 配置場所(画面右からの距離) */
    }
    .fixed-wrap img{
      width:100%;
      height:auto;
    }
.tuijyuu a { 
    font-size: 12px;
    background: #999 none repeat scroll 0 0;
    padding: 6px;
    color: #fff;
    text-decoration: none;
}
.tuijyuu a:hover {
    background: #ccc none repeat scroll 0 0;
    color: #fff;
    text-decoration: none;
}

/*目次*/
.st-blackboard {
	padding: 10px 10px 15px;
    border: 3px solid #f3f3f3;
    background: #fff;
    margin: 30px 0;
    border-radius: 0;
}
.st-blackboard-title-box {
  text-align: left;
  margin-bottom: 0px;
}
.st-blackboard-title {
  border-bottom: none;
  padding: 5px 8px 5px;
  font-size: 14px;
  font-weight: bold;
  color: #787878;
}
.st-blackboard-title::before {
  content: "\f0f6";
  margin-right: 10px;
  font-size: 13px;
  color: #ccc;
}

#catbox_widget-11 .st-blackboard-title,
#catbox_widget-8  .st-blackboard-title {
  padding-left: 27px;
}
#catbox_widget-8 .st-blackboard ul li a,
#catbox_widget-11 .st-blackboard ul li a {
  color: #4682b4;;
}

.post #st_toc_container ul, .post #st_toc_container ol, .post .st_toc_container ul, .post .st_toc_container ol {
  margin-left: 0.5em;
}
.post #st_toc_container ul ul li {
    padding-left: 25px;
	font-weight: normal;
}
.post #st_toc_container ul li {
	font-weight: normal;
	font-size: 85%;
}
#st_toc_container ul a {
    border-bottom: none;
}

#st_toc_container li a:before {
    color: #ccc;
}

.post .post-widgets-bottom .st-blackboard .orick2 ul:not(.toc_list) {
    padding: 15px 10px 0px;
}

.st-blackboard:not(.square-checkbox) ul.st-blackboard-list:not(.st-css-no):before {
  	content: none;
}

#st_toc_container li, .st_toc_container li {
  text-indent: -0.2em;
}
#st_toc_container > ul > li, .st_toc_container > ul > li {
  margin-bottom: 8px;
  line-height: 1.6em !important;
}
.post #st_toc_container li a:not(.migiyose)::before {
  font-family: stsvg;
  content: "\f0da";
  margin-right: 5px;
}
.post #st_toc_container li.migiyose { padding-left: 0.5em !important; font-size: 80%;}
.post #st_toc_container .migiyose a::before {
  font-family: stsvg;
  content: "\f105" !important;
  margin-right: 0px;
  font-size: 12px;
}

/* サイドバー固定目次 */
#side aside .st-blackboard ul li a, .st-blackboard ul li a {
   text-decoration: none;
   color: #505050;
}
#side aside .st-blackboard ul li {
  font-size: 13px;
  padding: 8px 10px !important;
  line-height: 1.4;
  margin-bottom: 0.3em;
}
#side aside .st-blackboard ul li.migiyose {
  padding-left: 15px !important;
}
#toc-sidebar-box .st-blackboard {
  margin: 20px 0 0;
}

/* モーダル目次調整 */
.ino-toc-modal-body .st-blackboard ul li {
  margin-bottom: 0.1em;
  padding-bottom: 0.5em;
  font-size: 14px;
}
.ino-toc-modal-body .st-blackboard ul li.migiyose {
  padding-left: 0.5em !important;
}
#ino-toc-modal .st-blackboard-title-box {
  display: none;
}
#ino-toc-modal .st-blackboard {
  margin: 0px 0;
}
  .ino-toc-modal-head{
    justify-content: center;
  }
  /* 右上の×は使わず、下のバーにするので非表示 */
  .ino-toc-close{
    display: none;
  }

/* 会話ふきだし */
.st-kaiwa-hukidashi,
.st-kaiwa-hukidashi2 {
	background-color: #fff4f7;
}
.st-kaiwa-hukidashi:after {
	border-color: transparent #fff4f7 transparent transparent;
}
.st-kaiwa-hukidashi2:after {
	border-color: transparent transparent transparent #fff4f7;
}
.kaiwaicon2 .st-kaiwa-hukidashi,
.kaiwaicon2 .st-kaiwa-hukidashi2 {
	background-color: #e1f5fe;
}
.kaiwaicon2 .st-kaiwa-hukidashi:after {
	border-color: transparent #e1f5fe transparent transparent;
}
.kaiwaicon2 .st-kaiwa-hukidashi2:after {
	border-color: transparent transparent transparent #e1f5fe;
}

.kaiwaicon4 .st-kaiwa-hukidashi,
.kaiwaicon4 .st-kaiwa-hukidashi2 {
	background-color: #e1f5fe;
}
.kaiwaicon4 .st-kaiwa-hukidashi:after {
	border-color: transparent #e1f5fe transparent transparent;
}
.kaiwaicon4 .st-kaiwa-hukidashi2:after {
	border-color: transparent transparent transparent #e1f5fe;
}

/* 画像 */
.image-waku img {
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 15px !important;
}

img.alignright {
	display: block;
	float: none;
	margin: 0 0 0 auto;
}

img.alignleft {
	display: block;
	float: none;
	margin: 0 auto 0 0;
}

/*画像回り込み*/
.hiro-left,
.hiro-right {
   overflow: hidden;
   height: auto;
   font-size: 15px;
   line-height: 25px;
   margin-bottom: 20px;
}

.hiro-left img {
   float: left;
   margin: 0 15px 0 0;
   padding: 0 !important;
   border: 0 !important;
}
 
.hiro-right img {
   float: right;
   margin: 0 0 10px 15px;
   padding: 0 !important;
   border: 0 !important;
}

.hiro-left p,
.hiro-right p {
   overflow: hidden;
   height: auto;
   font-size: 15px;
   line-height: 25px;
   margin-bottom: 20px;
}

.home .hiro-left, .home .hiro-right {
    margin-bottom: 10px;
}
.home .zerob {
    margin-bottom: 0px;
}

/*--------------------------------
テーブル
---------------------------------*/

.post table tr td {
    font-size: 14px;
    line-height: 25px;
}
.postid-4991 .post table tr td {
  font-size: 13px;
  line-height: 24px;
  padding: 6px 8px;
}
.post table a {text-decoration: none;}
.compact table tr td {
    padding: 8px 8px;
}

@media only screen and (max-width:420px){
    .post-2663 tbody tr{
        display: block;
        border: none;
        margin-bottom: 0.8em;
    }
    .post-2663 tbody th,
    .post-2663 tbody td{
        display: block;
        border: none;
    }
    .wpcf7-textarea {width: 100%; }
    .post-2663 table tr td,
    .post-2663 table {border: none;}
    }

/*-------------------------------------
	コンタクトフォーム関連
-------------------------------------*/
.grecaptcha-badge { visibility: hidden; }

.wpcf7 input[type="text"], 
.wpcf7 input[type="password"],
.wpcf7 input[type="date"], 
.wpcf7 input[type="datetime"], 
.wpcf7 input[type="datetime-local"], 
.wpcf7 input[type="month"], 
.wpcf7 input[type="week"], 
.wpcf7 input[type="email"], 
.wpcf7 input[type="number"], 
.wpcf7 input[type="tel"], 
.wpcf7 input[type="time"], 
.wpcf7 input[type="url"] {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
    box-sizing: border-box;
    display: block;
    font-size: 15px;
    height: 2.3125em;
    padding: 0.5em;
    transition: box-shadow 0.45s ease 0s, border-color 0.45s ease-in-out 0s;
}
.wpcf7 input[type="text"]:focus, 
.wpcf7 input[type="password"]:focus,
.wpcf7  input[type="date"]:focus, 
.wpcf7 input[type="datetime"]:focus, 
.wpcf7 input[type="datetime-local"]:focus, 
.wpcf7 input[type="month"]:focus, 
.wpcf7 input[type="week"]:focus, 
.wpcf7 input[type="email"]:focus, 
.wpcf7 input[type="number"]:focus, 
.wpcf7 input[type="tel"]:focus, 
.wpcf7 input[type="time"]:focus, 
.wpcf7 input[type="url"]:focus {
    border-color: #A6A6A6;
    box-shadow: 0 0 5px #A6A6A6;
}

.wpcf7 input[type="textarea"], textarea {
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    display: block;
    font-size: 15px;
    padding: 0.5em;
    transition: box-shadow 0.45s ease 0s, border-color 0.45s ease-in-out 0s;
}

.wpcf7 input[type="textarea"]:focus, textarea:focus {
    border-color: #A6A6A6;
    box-shadow: 0 0 5px #999999;
}

.post .wpcf7-form input:not(.st-tab-label):not([type="image"]) {
    padding: 12px 8px;
    margin: 10px 0px 10px;
}
span.wpcf7-list-item {
    margin: 0 0 0 5px !important;
}
wpcf7-not-valid-tip {
  color: #dc3232;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
}

/*-------------------------------------
	本体関連
-------------------------------------*/

.post .commentmetadata { margin-bottom: 10px;}

.post-3097 #comments p a {
    color: #4682b4;
}

#s-navi dt.trigger {
    text-align: right;
}
.wp-caption-text a, .wp-caption-text {
    color: #747474;
}

header .descr {
    color: #666;
    padding-bottom: 5px;
}

.responsive-unit{
  max-width: 336px;
}

#footer .copyr,
#footer .copyr a {
   color : #999;
}

#footer .copyr {
    padding: 20px 10px 0;
}
#footer h3 {
    margin-bottom: 5px;
}
#footer {
    padding: 20px 10px 10px;
}
.kanren:not(.st-cardbox) .clearfix dd p {
    color: #666;
    line-height: 20px;
}

.post ul a,
.post ol a {
    text-decoration: none;
}
.post .maruno ol a {
    text-decoration: none;
}
.embdscl0.embd-active {
    display: none !important;
}

.post .maruno ol li {
    margin-bottom: 3px;
}

#topnews-box div dl dd a:hover {
    color: #4682b4;
}

#st-menuwide .fa {
  margin-right: 6px;
  color: #cccccc;
  font-size: 12px;
}
.footermenust .fa {
    margin-right: 5px;
    color: #cccccc;
}
.footermenust {
    padding: 20px 0px;
}
.cat-itiran p.point .point-in {
    background: #1450aa;
    color: #fff;
}
#topnews-box div.rss-bar {
    margin-top: 10px;
}

#headbox-bg {
    border-top: 8px solid #124898;
}
#footer {
    border-bottom: 8px solid #124898;
}

.home .freebox  {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 20px;
}
.home .freebox .arrow_orange {
    font-size: 15px;
}
.post .freebox {
  background: #f6f6f6;
  border-top: solid 1px #1450aa;
}
.category-correspondence .post .rankst {
    margin-bottom: 5px;
}

.post .maruno ol li::before {
    background: #1450aa;
    color: #fff;
}
#topnews-box {
    padding: 0;
}

.post .mokuji ul {
    margin-bottom: 10px;
    padding: 5px 5px 5px 20px;
}
.moku {
    margin-bottom: 5px;
}

.kanren h3 a:hover, .post .kanren h3 a:hover {
 color: #b22222;
}

.post table tr:nth-child(2n) {
    background-color: rgba(220, 220, 220, 0.2);
}
.post .hyouka table tr:nth-child(2n) {
    background-color: #ffffff;
    text-align:center;
}
.post .hyouka table tr:nth-child(1) {
    background-color: rgba(220, 220, 220, 0.2);
}

.post #comments {
    border-left-color: #E4E5E7;
}

.st-blackboard:not(.square-checkbox) ul.st-blackboard-list:not(.st-css-no) li::before {
    color: #1450aa;
}

main #searchsubmit {
    top: 5px;
}

#breadcrumb, #breadcrumb div a, div#breadcrumb a, .blogbox p, .tagst, #breadcrumb ol li a, #breadcrumb ol li h1, #breadcrumb ol li, .clearfix dd .blog_info p {
    color: #979797 !important;
}
.st-pagelink a {
    color: #4682b4;
}

.error404 .center {
    text-align: left;
}
.catname a {
    text-decoration: none;
    font-size: 13px;
}
.category-154 .catname { margin-right: 5px; }
.category-154 .kanren dl:last-child { padding-bottom: 0px; }

/*-----------------------------
サイドバー
------------------------------*/
#side .kanren dt img,
#side .kanren dt {
    width: 75px;
}

#side .kanren dd {
    padding-left: 90px;
}

#side .st-formbtnlink,
#side .st-originalbtn{
	margin-top: 30px;
}

.kanren.pop-box dd h5:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2), #side .kanren.pop-box dd h5:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2) {
  font-weight: normal;
  line-height: 22px;
}

#content-w #side .p-entry { padding: 5px 15px;}

/*サイドバーその他*/
.rssbox a:hover {
    color: #670514;
}

.cat-item a {
	text-decoration : none ;
}
.cat-item a:hover {
	text-decoration : underline;
}

aside #mybox ul li ul li {
    font-size: 15px;
    line-height: 32px;
}

#side aside h4.menu_underh2 {
    padding-left: 4px;
	margin-top: 20px;
}
#side aside .st-mybtn a {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体" , sans-serif;
}

.post .p-entry, #side .p-entry, .home-post .p-entry,.p-entry-f {
    background: #1450aa;
}
.p-entry::after {
	border-style: solid;
	border-top: 5px solid transparent !important;
	border-right: 5px solid transparent !important;
	border-bottom: 5px solid #5462ab !important;
	border-left: 5px solid #5462ab !important;
}

.category .p-entry {
    top: -10px;
}
.category .p-entry::after {
	content: '';
	position: absolute;
	top:0;
	right:-10px;
	border-style: solid;
	border-top: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #5462ab;
	border-left: 5px solid #5462ab;
	z-index:9999;
}
.pop-box {
    border-top: 1px solid #cccccc;
}
#side .pop-box {
    padding: 20px 0px 10px;
}
#side #scrollad {
    padding: 5px 0 20px;
}

#side aside .ta a:before,
#side aside .st-pagelists .arrow :before {
    content: "\f138";
    display: inline;
    font-family: stsvg;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    margin-right: 0.5em;
    color: #1450aa;
}

#side aside .st-pagelists .arrow-s :before {
    content: "\f105";
    display: inline;
    font-family: stsvg;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
	color: #1450aa;
	padding-left: 8px;
	margin-right: 0.4em;
    background: rgba(0, 0, 0, 0) linear-gradient(#fff 0%, #f3f3f3 100%) repeat scroll 0 0;
}

#side aside .st-pagelists ul li a:hover{
    color: #4682b4;
	background: #fff !important;
}
#side aside .st-pagelists ul li:hover{
    background: #fff !important;
}

.category #side .kanren {
    margin-top: 40px;
}

#side .kanren dl {
    border-bottom:1px dotted #ccc;
}

#side aside .st-pagelists ul li {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
#side aside .st-pagelists ul li:not(.sub-menu) {
  border-color: #e0dede !important;
}

#side .st-widgets-title:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no) {
  margin-top: 20px;
}
aside h4:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2), #side aside h4:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2), #side .st-widgets-title:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2) {
  margin-bottom: 10px;
}

/*タグクラウドのデザイン*/
.widget_tag_cloud .tagcloud a {
 display: inline-block;
 background: #60B590;
 line-height: 1em;
 color: #fff;
 text-decoration: none;
 white-space: nowrap;
 padding: 7px 7px;
 margin-top: 3px;
 border-radius: 4px;
 border: 1px solid #60B590;
 font-size: 13px!important;
}

.widget_tag_cloud .tagcloud a:hover {
 background: #fff;
 color: #2b6f51;
 border: 1px solid #60B590;
}
/* SNSボタン */
#singlebox_widget-2 .sns {
  padding: 10px 0 0;
}

/*-------------------------------------
	見出し
-------------------------------------*/

.entry-title:not(.st-css-no2), .post .entry-title:not(.st-css-no2) {
    font-size: 24px;
    margin-bottom: 20px;
}
.home .post .entry-title {
    font-size: 22.5px;
    border-bottom: 3px solid #1450aa !important;
    padding: 0px 0px 8px 5px;
	margin-top: 20px;
}
.post .entry-title {
    margin-top: 10px;
}

.post h2:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2)::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1450aa;
  bottom: -10px;
  content: "";
  left: 30px;
  position: absolute;
}
.post h2:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2)::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1450aa;
  bottom: -10px;
  content: "";
  left: 30px;
  position: absolute;
}

.post h2:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no2) {
	background: #1450aa;
	color: #fff;
	margin-top: 30px;
	font-size: 22px;
}

.post h3:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no):not(.st-matome):not(.rankh3):not(.post-card-title):not(#reply-title):not(#heading1) {
	font-size: 18px;
	margin-bottom: 20px;
	margin-top: 25px;
	border-top: none !important;
    border-left: 4px solid #1450aa !important;
    border-bottom: 2px dotted #1450aa !important;
    line-height: 1.4em;
    padding: 6px 8px 10px 15px;
}

.post h4:not([class^="is-style-st-heading-custom-"]):not([class*=" is-style-st-heading-custom-"]):not(.st-css-no):not(.st-matome):not(.rankh4):not(.point):not(.st-cardbox-t) {
    font-size: 17px;
    background-color: #e5ecf1 !important;
    line-height: 26px;
    margin-top: 30px;
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
}
.post #custom_html-10 h4#self-tusin {
  margin-top: 0px;
}
.post .jinsei {
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
    font-size: 16px;
    line-height: 26px;
    margin-top: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 8px;
}

#comments h3 {
	background-repeat: no-repeat;
	background-position: left center;
}

#comments h3:before {display: none;}

dd h3 a {
    font-size: 17px;
}

.post .cta-post-title:not(.st-css-no2):not(.rankh3):not(.post-card-title):not(#reply-title) {
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
    font-size: 17px;
    line-height: 32px;
    font-weight: bold;
    margin: 20px 0px;
    padding: 10px 0px;
    background-color: #fff;
    border-bottom: 2px solid #1450aa !important;
    border-top: 2px solid #1450aa !important;
    border-left: 0px;
}

.post .cta-post-title2:not(.st-css-no2):not(.rankh3):not(.post-card-title):not(#reply-title) {
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
    font-size: 18px;
    line-height: 32px;
    font-weight: bold;
    margin: 30px 0px 20px;
    padding: 10px 0px 10px 10px;
    background-color: #fff;
    border-bottom: 2px solid #1450aa;
    border-top: 2px solid #1450aa;
    border-left: 0px;
}

.post .pick h4:not(.st-css-no2):not(.point):not(.rankh4), .h4modoki {
  margin: 0;
}

.post .cta-exp {
    background-color: #efefe9;
    color: #666;
    font-size: 15px;
    text-align: center;
    padding: 4px;
    margin-bottom: 0px;
}

.post #heading1:not(.rankh3):not(#reply-title):not(.st-css-no2) {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #fff 0%, #eee 100%) repeat scroll 0 0 !important;
    border-bottom: 1px solid #ddd;
    border-left: 4px solid #1450aa;
    border-radius: 1px;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    clear: both;
    color: #0b0b3b;
    display: block;
    font-size: 20px;
    line-height: 1.6;
    margin: 30px 0 20px;
    overflow: hidden;
    padding: 8px 15px;
}
h3:not(.st-css-no2) a {
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
}
.home .post #heading1:not(.rankh3):not(#reply-title):not(.st-css-no2) {
    font-size: 18px;
    margin: 20px 0px;
    padding: 7px 15px;
}
.category .post #heading1 {
    font-size: 20px;
}
.home .post #heading1 {
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
    font-weight: bold;
}

.tag .post .entry-title:not(.st-css-no2) {
  margin-bottom: 30px;
}

/*-----------------------------
ブログカード
------------------------------*/
.post .st-cardbox-t:not(.rankh3):not(#reply-title):not(.st-css-no2) {
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
    padding: 5px 5px;
	margin: 0;
}
.st-cardbox .clearfix dd p.cardbox-more, .st-cardbox .clearfix dd p.st-cardbox-site {
  margin-left: 5px;
}
.post p.cardbox-more {
    border: 1px solid #4682b4;
}
.st-cardbox .clearfix dd .cardbox-more {
  color: #4682b4;
}
 .st-cardbox::after:not(.inoama) {
  content: "\f105";
  font-family: stsvg;
  color: #ccc;
  position: absolute;
  top: calc( 50% - .5em );
  right: 10px;
}
.st-cardbox.inoama::after {
  content: "\f270";
  font-family: stsvg;
  color: #ccc;
  position: absolute;
  top: calc( 85% - .5em );
  right: 10px;
}

.ino .st-cardbox::before {
	content: "詳細";
	position: absolute;
	top: -2px;
	left: -2px;
	font-size: 13px;
	color: #fff;
	background: #757575;
	padding: 5px 8px;
	z-index:1;
}
.osusume .st-cardbox::before {
  content: "おすすめ";
  position: absolute;
  top: -2px;
  left: -2px;
  font-size: 14px;
  color: #fff;
  background: #2196F3;
  padding: 6px 16px;
  z-index: 1;
}

/* ふきだしデザインミニ */
.inohuki::before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1450aa;
  bottom: -10px;
  content: "";
  left: 40px;
  position: absolute;
}
.inohuki::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #1450aa;
  bottom: -10px;
  content: "";
  left: 40px;
  position: absolute;
}
 .post  .inohuki {
	font-size: 13px;
}

.post .rankh3:not(.st-css-no) {
    border-left: none;
    text-align: left !important;
}

.postid-3104 .post #heading1 {
    font-size: 21px;
    padding: 10px 15px;
}
#topnews-box div.rss-bar {
    background: rgba(0, 0, 0, 0) linear-gradient(#fff 0%, #f3f3f3 100%) repeat scroll 0 0;
    border: 1px solid #ccc !important;
    padding: 5px 15px;
}

/*-----------------------------
余白
------------------------------*/

hr.yohaku50 {margin:50px 0px 0px; border-style:none;}
hr.yohaku45 {margin:45px 0px 0px; border-style:none;}
hr.yohaku40 {margin:40px 0px 0px; border-style:none; box-sizing: content-box;}
hr.yohaku35 {margin:35px 0px 0px; border-style:none;}
hr.yohaku {margin:30px 0px 0px; border-style:none;}
hr.yohaku25 {margin:25px 0px 0px; border-style:none;}
hr.yohaku20 {margin:20px 0px 0px; border-style:none;}
hr.yohaku10 {margin:10px 0px 0px; border-style:none;}
hr.hrcss { border-style: none;}
hr {height: 0px;}

/* CTA自己肯定感ボタン */
.p-cv-btn a{
	color:#fff;
	text-decoration:none !important;
	background:#90c231;
	border-bottom: solid 4px #61841f;
	padding: 0.4em 1em !important;
	border-radius: 7px;
	margin: 30px auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
        max-width:350px;
}
.p-cv-btn:hover{
	opacity:0.9;
}
.p-cv-btn .p-cv-em{
	font-size:0.9em;
	line-height: 1.3;
	text-align:center;
	font-weight:600;
	display:block;
	color:#90c231;
	background:#fff;
	padding: 5px 10px !important;
	margin: 2px 10px 0px 0 !important;
	border-radius: 30px;
	min-width: 55px;
	max-width: 80px;
}
.p-cv-btn .p-cv-text{
	font-size:0.9em;
	font-weight: 600;
	color:#fff;
	letter-spacing: 1px;
	border-left: 1px solid #fff;
	line-height: 25px;
	margin: 0.6em auto 0.6em 0 !important;
	padding: 0 0.6em 0 1em !important;
}
.p-cv-btn i,.p-cv-btn svg{
	color:#fff;
	min-width:22px;
}

/* 幅広緑ボタン */
.jyukou-suru .wp-element-button {
  background: linear-gradient(to bottom, #39bd3e 0%, #2b902f 100%);
  border: 1px solid #309f34;
  filter: drop-shadow(0px 2px 4px #ccc);
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  margin: 20px 0 20px;
  padding: calc(0.6em + 2px) calc(1.333em + 2px);
}
.wp-block-button__link:hover {
    color: #fff;
    opacity: 0.7;
}
 .jyukou-suru .wp-element-button::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 30px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
  font-weight: normal;
}

/* オレンジボタン*/
.button_solid019 { margin: 30px auto; text-align: center;}
.button_solid019 :focus-visible { outline: 1px solid var(--your-color); }
.button_solid019 a {
    position: relative;
    justify-content: space-around;
    text-align: center;
    min-width: 80%;
    padding: calc(0.5em + 2px) calc(1.333em + 2px);
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: linear-gradient(to bottom, #faa04d 0%, #f88c27 100%);
    border: 1px solid #f88c27;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
    text-decoration: none;
    font-weight: normal;
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.button_solid019 ::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 30px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
    font-weight: normal;
}
.button_solid019 a:hover {
    opacity: 0.7;
}

/* 緑バージョンボタン*/
.button_solid019.green { margin: 30px auto; text-align: center;}
.button_solid019.green a {
  background: linear-gradient(to bottom, #39bd3e 0%, #2b902f 100%);
  border: 1px solid #309f34;
  filter: drop-shadow(0px 2px 4px #ccc);
  font-size: 16px;
  font-weight: normal;
  padding: calc(0.5em + 2px) calc(1.333em + 2px);
}

/* 画面右上エゴグラム用ボタン*/
.ego-mybtn {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.ego-mybtn span {
  padding: 8px;
  text-align: center;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.ego-mybtn a {
  color: #ffffff;
}

#side .ego-mybtn span {
   font-size: 14px;
}
#side #scrollad .st-mybtn a {
  padding: 6px;
}

/*-------------------------------------
	文字装飾
-------------------------------------*/
.sankou.green { background-color:#4CAF50; }
.sankou.blue { background-color:#2196F3; }
.sankou.purple { background-color: #9c308d; }
.sankou.ye { background-color: #D7DF01; }
.sankou.gray { background-color: #6E6E6E; }

p.check01 {
	font-size: 16px;
	font-weight: bold;
	margin: 0 20px 20px 10px;
	padding: 5px 0 0 30px;
	border-bottom: 1px dotted #CCC !important;
	background: url(images/check01.png) no-repeat 0;	
}

.modoki {
	font-size: 15px;
    line-height: 24px;
    background-color: #f3f3f3;
    background-image: url("images/quote.png");
    background-position: left top;
    background-repeat: no-repeat;
    border-left: 1px solid #ccc;
    margin-bottom: 20px;
    margin-right: 0;
    margin-top: 20px;
    padding: 50px 20px 20px;
}

.tiisai {
    font-size: 90%;
    line-height: 21px;
}

.fc {
     font-size: 13px !important;
     color: #848484;
}

.fc a{
	color: #848484;
	text-decoration: none;
}

.post blockquote .fc {
     font-size: 12px;
     color: #848484;
}
.post blockquote .fc a{
	color: #848484;
	text-decoration: none;
}

.b {
	font-weight: bold;
}

.kokuritu {
    background-color: #9c308d;
    border-radius: 2px;
    color: #ffffff;
    font-size: 70%;
    margin: 0 5px;
    padding: 2px 3px;
    white-space: nowrap;
}
.teinei {
    background-color: #6db349;
    border-radius: 2px;
    color: #ffffff;
    font-size: 70%;
    margin: 0 5px;
    padding: 2px 3px;
    white-space: nowrap;
}

#kanren .clearfix dd h5 a:hover {
	color: #fa97a7;
}
.sp-primary {
    font-size: 17px;
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
    background-color: #1a69df;
    font-weight: bold;
    border-radius: 4px;
    border-left: none !important;
    color: #ffffff;
    padding: 7px 12px !important;
    margin: 20px 0 !important;
}
.sp-info {
    font-family: Helvetica,"游ゴシック","Yu Gothic",sans-serif;
	border-left: none !important;
    padding: 8px 13px !important;
    margin: 30px 0 20px !important;
}
.arrow_orange {
    font-family: PT Sans Caption,Josefin Sans,"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "ＭＳ Ｐゴシック", sans-serif !important;
    font-size: 17px !important;
    font-weight: bold;
    margin-bottom: 15px !important;
    overflow: hidden;
    padding-left: 2px;
}

.arrow_orange:before {
	content: "\f138";
	font-family: stsvg;
	display: inline-block;
	float: left;
	margin-right: 6px;
	font-size: 90%;
	color: #1450AA;
}

.arrow_orange_s {
    background-position: left center;
    background-repeat: no-repeat;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 20px;
    overflow: hidden;
    font-weight: bold;
}
.arrow_orange_s a {
    text-decoration: underline;
}

.arrow_orange_s:before{
    content: "\f138";
    display: inline;
    font-family: stsvg;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    margin-right: 5px;
    color: #FF802B;
}

.home .arrow_orange_s a {
    font-weight: bold;
    text-decoration: underline;
}

.home .arrow_orange_s:before{
    padding-left: 2px;
    color: #1450aa;
}

.home .ora .arrow_orange_s:before {
    color: #ff802b;
}
.home .ora .arrow_orange_s a {
     font-weight: bold;
     text-decoration: underline;
}

.responsive-unit{
  max-width: 336px;
}

.yellowbox:not(.noborder) {
    border: 1px solid #fff06b;
}

#side #scrollad .arrow_orange_s {
    margin-top: 10px;
}

#side #scrollad .arrow_orange {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 10px;
}

.category-correspondence .post .rankstlink-r2{ margin-top: 25px;}

.st-memobox2 {
    border: solid 1px #ccc;
	margin: 30px 0px;
}
.post .komozi {
  line-height: 1.8 !important;
}
.hiyou {
  color: #766f68;
  font-size: 95%;
}

#comments .graybox {
    margin-top: 20px;
}

/*オリジナルチェックリスト*/
.post .orick { 
	margin-bottom: 20px;
}

.post .orick ul { 
	list-style-type: none !important;
	margin-left: 10px;
	padding: 0 20px 0 30px;
	margin-bottom: 10px;
}

.post .orick ul li {
	padding-top: 2px;
	line-height: 24px;
}

.post .orick ul li:before {
	content: "\f138";
	font-family: stsvg;
	display: inline-block;
	float: left;
	padding: 0 6px;
	font-size: 100%;
	margin-right: 5px;
	color: #1450aa;
	margin-left: -2em;
}

.post .orick2 ul:not(.toc_list):not(.st_toc_list):not(.children):not(.slick-dots):not(.st-pvm-nav-list),
.post .orick3 ul:not(.toc_list):not(.st_toc_list):not(.children):not(.slick-dots):not(.st-pvm-nav-list) {
    list-style-type: disc;
    padding: 5px;
    margin-left: 10px;
    margin-bottom: 20px;
}

.post .maruno, .post .maruck {
  margin-top: 20px;
}
.post .orick2 ul li,
.post .orick3 ul li  {
	border-bottom:dotted 1px #ccc;
  	line-height:1.5;
	padding: 8px 0 8px 8px;
	margin:0;
	list-style:none;
	text-indent:-1.3em;
    padding-left: 1.3em;
	font-size: 90%;
}
.post .orick2 ul li:not(.migiyose):before {
  	content: "\f138";
  	font-family: stsvg;
	color: #1450aa;
    margin-right: 8px;
}

.post .orick2 .migiyose,
.post #st_toc_container .st-blackboard .migiyose {
    padding-left: 2em;
}

.post .orick2 .migiyose:before {
  	content: "\f105";
  	font-family: stsvg;
	color: #1450aa;
    margin-right: 8px;
}
.post .orick3 ul li:not(.migiyose)::before {
  content: "\f058";
  font-family: stsvg;
  color: #68b8ed;
  margin-right: 8px;
  font-size: 100%;
}

.post .st-blackboard .orick2 ul:not(.toc_list) {
    padding: 15px 10px 10px;
}
.kizi-under-box .st-blackboard {
    border: 2px solid #ccc;
	margin: 45px 0 30px;
}
.post .st-blackboard .orick2 ul li:before {
	color: #1450aa;
}
.postid-3097 .post .post-widgets-bottom .orick2 ul li {
    font-size: 13px;
    padding: 7px 0px 7px 8px;
}

/*----------------------------
スマホ専用表示
-----------------------------*/
@media screen and (max-width: 767px) {
  /* phone */
.hiro-right img {
    display: block;
    margin: auto !important;
    margin-bottom: 15px !important;
    float: none;
}
.hiro-left img {
    display: block;
    margin: auto !important;
    margin-bottom: 15px !important;
    float: none;
}
.hiro-left,
.hiro-right {
   overflow: hidden;
   height: auto;
   font-size: 17px;
   line-height: 28px;
}
.hiro-left p,
.hiro-right p {
   font-size: 17px;
   line-height: 28px;
   margin-bottom: 20px;
}
h2 {
	padding: 10px;
}
.post h3 {
    font-size: 17px;
}
.modoki {
    padding-right: 10px;
    margin-right: 0px;
}
.post blockquote {
    padding-right: 10px;
}
.post-cta-btn a {
    width: 90%;
    font-size: 17px;
}
.cta-post-title {
    font-size: 18px;
    line-height: 28px !important;
}

#s-navi dt.trigger .op {
    font-size: 16px;
}

.cta-post-title {
    font-size: 17px;
}
.setumei {
    width:95%;
}
.kanren .clearfix dd p {
    line-height: 18px;
}
header .descr {
    font-size: 12px;
}
.acordion_tree ul.menu li .fa {
    margin-right: 5px;
    color: #cccccc;
}
.acordion_tree ul.menu li .fa-angle-right {
    margin-right: 0px;
    color: #000;
}
.st-mybtn a {
    font-size: 16px;
}
.rankst .rankstlink-l p {
    margin-bottom: 20px;
}
.post #st_toc_container ul {
  padding-right: 10px;
  padding-left: 15px;
}
	.st-blackboard-title {
  padding: 5px 8px 5px 23px;
}

#ino-toc-modal .ino-toc-modal-body {
  padding: 0px 5px 14px;
}
#ino-toc-modal .ino-toc-modal-head {
  border-bottom: none;
}

.ino-toc-modal-body .st-blackboard ul li {
  font-size: 13px;
}
	
	.post .entry-content #st_toc_container:not(.over_toc_content):not(.side_toc_content) > ul > li {
    font-size: 90% !important;
}
	#st-mobile-logo p {
  width: 90%;
}
	
		/* スマホフッター用メニュー */
#st-footermenubox {
    padding: 5px 0px;
}
#st-footermenubox ul.menu li .fa {
    margin-bottom: 2px;
    font-size: 10px;
}
#st-footermenubox a {
    color: #4682b4 !important;
}
#st-footermenubox ul.menu li {
    font-size: 12px;
}
	
	.post .blogbox p {
    font-size: 12px !important;
    line-height: 18px !important;
}
/*----------------------------
ここまで
-----------------------------*/
}

/*media Queries スマホサイズ（430px以下）
----------------------------------------------------*/
@media screen and (max-width: 430px) {
.post blockquote p {
    font-size: 15px;
    }
.post .freebox .free-inbox {
    padding: 10px;
}
.st-cardbox {
    padding: 10px;
}
.home .post #heading1 {
    margin: 25px 0 20px;
}

.post .responbox50 .lbox ul {
    padding-bottom: 0px;
    margin-bottom: 0px;
}
#st_toc_container {
    padding: 10px 5px !important;
}

.post .jinsei {
    font-size: 17px;
}
.post .kizi-under-box p {
    font-size: 16px;
    line-height: 28px;
}
.footermenust li {
  padding: 0 8px;
}
	/* 右下目次 */
.tomkj {
    bottom: 47px;
}
}

@media only screen and (max-width: 350px) {
/* スマホアドセンス用ボックス */
.kobox {
    margin: 0 -5px;
}
	#st_toc_container:not(.st_toc_contracted):not(.only-toc), #toc_container:not(.contracted) {
    padding: 15px 0px !important;
}
}
/*media Queries タブレットサイズ（600px～959px）のみで適応したいCSS -タブレットのみ
---------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 600px) and (max-width: 959px) {
    .st-cardbox .clearfix dd h3 a,
    .modoki,
    .sp-primary,
    .sp-info,
    .arrow_orange,
    .arrow_orange_s {
        font-size:20px;
    }
    .hiro-left p, .hiro-right {
    font-size: 20px;
    }
    .hiro-left p, .hiro-right p {
    font-size: 20px;
    }
}
@media screen and (max-width: 960px) {
	.post .orick2 ul li  {
	font-size: 16px;
}
	.sitename img { max-width: 300px;}
}

/*media Queries PCサイズ（960px）以上で適応したいCSS - PCのみ
---------------------------------------------------------------------------------------------------*/
@media print, screen and (min-width: 960px) {
	#st-menuwide {
		border-radius: 1px !important;
	}
	.post blockquote p {
    font-size: 15px;
    }
    .home .responbox50 .lbox {
    padding-right: 15px;
    }
    .home .responbox50 .rbox {
    padding-left: 15px;
    }
    .arrow_orange {
    font-size: 17px;
    }
    .st-cardbox .clearfix dd h3, .post .st-cardbox .clearfix dd h3, #side .st-cardbox .clearfix dd h3 {
    border-bottom: none !important;
}

.button_solid019 a {
    width: 75%;
    margin: 10px auto;
}
	  #header-l {
    max-width: 400px;
  }

	.sitename img { max-width: 300px;}
  /* PC用　下固定の「× 閉じる」バー */
  #ino-toc-closebar{
    height:52px;
	padding: 10px;
	margin: 10px;
}
#ino-toc-modal .st-blackboard {
  margin: 10px 0;
}
	
}