@charset "Shift_JIS";
/*

Theme name: uranai

*/

/* phone */
/* 汎用 */
* {
padding: 0;
margin: 0;
}

html {box-sizing: border-box;}

.clear{
	clear:both;
}

body{
	background-color:#ffeeff;
	size:12px;
	margin-bottom:40px;
}

hr {
    border: none;
    border-top: 2px dotted #999999;
    width:90%;
    margin: 10 auto;
}

#page_wrapper{
	width:100%;
	background-color:#ffeeff;
}

#content_wrapper{
	width:100%;
	height:auto;
	margin:0 auto;
}

#header{
	margin:0 0 0 0;
	padding:5px;
	background-image: url("images/tarot_kabocha_logo.png");
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: bottom -3px right 0px;
	height:100px;
	background-color:#fff;
	border-bottom:solid 1px #ffccff;
}

#header_h{
	text-align:left;
	margin:0;
	padding:5px;
}

#header_h a {
  color: #696969;
  text-decoration:none;
}

#header_h h1{
	font-size:14px;
	padding:0px;
	margin:0px;
	color:#696969;
}

#header_mv{
	height:45px;
	padding:5px;
	margin:0px;
	text-align:left;
	font-size:12px;
	color:#696969;
	width:60%;
}

/* ドロワーメニュー */

.header-fixed{
    /* 追従 */
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 10px;
    z-index: 100000;
    background-color: #333;
    box-sizing: border-box;
    display:block;
}

.header-fixed-in{
    position: relative;
    height: 30px; /* ヘッダーの縦幅を指定 */
}

/* チェックボックスは非表示（ラベルで操作するため） */
#header-hamburger{
    display: none;
}

/* ハンバーガーアイコンの位置を指定（左） */
.header-hamburger-icon{
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
/* ハンバーガーアイコンの三本線をCSSで書く（上下の線） */
.header-hamburger-icon span{
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    border-top: solid 4px #FFF;
    border-bottom: solid 4px #FFF;
    box-sizing: border-box;
    cursor: pointer;
}
/* ハンバーガーアイコンの三本線をCSSで書く（中央の線） */
.header-hamburger-icon span:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    top: 4px;
    background-color: #FFF;
}
/* 中央にサイトロゴを表示 */
.header-site-icon{
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    width: max-content;
    margin: 0 5px;
}
.header-site-icon img{
    width: auto;
    height: 100%;
    vertical-align: middle;
}

.header-site-icon a {
	text-decoration:none;
	color:#fff;
}

.fixed-text {
　　position: absolute;
    bottom: -8px;
    left: -2px;
    font-size: 10px;
    color: #fff;
}

/* 背景を暗くする（デフォルトは非表示） */
#header-close{
    display: none;
    position: fixed;
    z-index: 150000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
}

/*スライドで表示させるコンテンツ*/
#header-content{
    z-index: 200000;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    max-width: 300px;
    box-sizing: border-box;
    padding: 5px;
    transition: .3s;
    background: #FFF;
    /* デフォルト非表示（左側の見えないところに位置させる） */
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

#header-content ul {
    width: 100%;
    height: 50px;
    /* background-color: #ffccff; */
    /* padding: 10px; */
    list-style-type: none;
}

#header-content ul li {
	height:25px;
	font-size:14px;
    padding: 10px;
  border-top:1px solid #f1f6fc;
  border-bottom:1px solid #84b2e0;
}

#header-content ul li:first-child {
  border-top:0px;
}

/*
#header-content ul li:last-child {
  border-bottom:0px;
}
*/

/*チェックが入ったらコンテンツを表示*/
#header-hamburger:checked ~ #header-content{
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

/*チェックが入ったらコンテンツ外を暗くする*/
#header-hamburger:checked ~ #header-close{
    display: block;
    opacity: .7;
}

/* ドロワーメニュー */



/* menu */

nav ul{
display: table;
margin: 0 auto;
padding: 0 ;
width: 90%;
text-align: center;
}
nav li{
display: table-cell;
min-width: 50px;
}
nav a{
display: block;
width: 100%;
    padding: 10px;
    background-color: #fff;
}
nav li.current{
border-bottom: 3px solid #92D050;
padding:0;
}


nav li.current a {
  color: #696969 !important;
  text-decoration:none;

}
nav li:hover{
color: #E7DA66;
border-bottom: 3px solid #F0E475;
padding: 0;
}

.headmenu {
	width:100%;
	height:47px;
	background-color:#fff;
	margin-bottom:10px;
	border-bottom:1px solid #dfdfdf;
}

#header_nav {
	width: 100%;
	height: 40px;
}

#header_sns {
	width:100%;
	position:relative;
}

.h_sns {
	position:absolute;
    bottom: -20px;
    right: 100px;
}

.h_sns img {
	width:30px;
	height:30px;
	padding:3px;
}

.dropmenu{
  *zoom: 1;
  list-style-type: none;
  width: 100%;
  margin: 5px auto 30px;
  padding: 0;
  display: flex;
}
.dropmenu:before, .dropmenu:after{
  content: "";
  display: table;
}
.dropmenu:after{
  clear: both;
}
.dropmenu li{
  position: relative;
  width: 19.8%;
  float: left;
  margin: 0 1px;
  padding: 0 ;
  text-align: center;
  
}
.dropmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  border-bottom:1px solid #000;
color:#000;

}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li{
  width: 100%;
}
.dropmenu li ul li a{
  padding: 13px 15px;
  text-align: left;

}
.dropmenu li:hover > a{
}
.dropmenu li a:hover{

}

#dropmenu li ul li{
  overflow: hidden;
  height: 0;
  transition: .2s;
}
#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
}

#content-body {
	flex-direction: column;
    padding: 0 5px
}

#content{
	box-sizing: border-box;
	padding: 0px 5px;
	margin:5px 0 0 0;
	width:100%;
	border:1px solid #ffccff;

}

#sidebar_wrapper {
	width:100%;
	padding:0px;
}

.cont_text_f{
	background-color:#ffeeff;
	border-radius:10px;
	padding:15px;
	font-size:12px;
	margin:10px 15px 10px 15px;
}

.cont_text_dot{
	margin:10px auto 10px auto;
	  box-sizing    : border-box;           /* 罫線も含む長さ       */
	  padding       : 10px;                 /* 文字の位置合わせ     */
	  font-size     : 12px;                 /* 文字サイズ           */
	  background    : #ffeeff;              /* BOXの背景色          */
	  border        : 3px dashed #ffccff;   /* 枠線の指定           */
          box-shadow    : 0 0 0 10px #ffeeff;   /* 影を利用した外余白   */
	width:85%;
}

.cont_text{
	padding:15px;
	font-size:12px;
	margin:10px 15px 10px 15px;
}


#content p {
	margin:0px;
	padding:10px 20px 10px 20px;
	font-size:12px;

}

#content h1 {
	padding: 0.2em 0.5em;
	border-left: double 5px #696969;
	margin:10px 10px 20px 10px;
	font-size:16px !important;
}

#page {
}

#page h2 {
	padding:10px;
	margin:10px;
	font-size:14px;
	font-style:bold;
	border-left:double 5px #ffccff;
}

#page h3  {
	font-size:14px;
	padding:10px 0 5px 15px;
	margin:10px 10px 10px 20px;
	border-bottom:5px double #ffccff;
}

.roll {
	width:90%;
	margin:0 auto;
	border:solid 1px #333333;

}


.top_news_wrapper{
	width:100%;
	clear:left;
}

.top_news_inner{
	width:47%;
	margin:0 auto;
	padding:10px;
	display: inline-flex;
}

.top_news_inner a{
	text-decoration:none;
	color:#fff;
}

.top_news_inner img{
	width:100%;
	height: auto;
	margin:10px;
}

.top_news_inner_p{
	color:#fff !important;
	width:97.5%;
	margin:-120px 10px 10px 10px;
		background-color:#000;
		filter:alpha(opacity=60);
		-moz-opacity: 0.6;
		opacity: 0.6;
	padding:5px;
	height:100px;
}

.kiji_wrapper {
	width:95%;
	height:auto;
	margin:0 auto;
	padding:10px;
}

.kiji_content_wrapper {
	display:flex;
	flex-wrap: wrap;
    margin-left: -10px;

}

.kiji_content {
    padding: 10px;
    position: relative;
    width: 33.33333%;
    width: -webkit-calc(100% / 3);
    /* width: calc(100% / 3); */
    margin-bottom: 10px;
    border: 1px solid #ff99ff;
    width: 100%;
    border-radius: 5px;
}

.kiji_content_cat{
	padding: 5px 10px;
	position:absolute;
	left:0;
	top:0;
	background-color:#ff99ff;
	color:#fff;
	font-size:10px;
	border-radius:5px 0 0 0;
}

.kiji_content img{
	width:30%;
	height:auto;
}

/*
.kiji_content_cover {
	height:50px;
	background-color:#333;
	position:absolute;
	bottom:0;
	font-size:14px;
	padding:5px;
	background:rgba(255,255,255,0.5);
	width:97%;
}
*/

.kiji_title {
font-size: 16px;
    position: absolute;
    top: 0;
    left: 30%;
    padding: 10px;
    font-weight: bold;
    color: #666666;
}

.kiji_honbun {
    font-size: 12px;
    position: absolute;
    top: 25%;
    left: 23%;
    padding: 10px;
    color: #666666;
}


.kiji_date {
    font-size:12px;
    position: absolute;
    bottom: 0px;
    right: 15px;
    color: #666666;
}

.more_wrap {

}

.more_wrap a {
	color:#fff;
	text-decoration:none;
}

.more{
	margin:10px auto;
	padding:10px;
	text-align:center;
	font-size:16px;
	border-radius:5px;
	background-color:#ffccff;
	color:#fff;
	width:80%;
}


.detail{
	margin: 10px 0 -20px 0;
}

.detail h2 {
  font-size:14px;
  width:80%;
  margin:15px auto;
  position: relative;
  background: #ffccff;
  box-shadow: 0px 0px 0px 5px #ffccff;
  border: dashed 2px white;
  padding: 10px 15px;
  color: #454545;
}

.detail h2:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #ff00ff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}


.detail h3 {
  font-size:14px;
  width:80%;
  margin:15px auto;
  position: relative;
  background: #dfefff;
  box-shadow: 0px 0px 0px 5px #dfefff;
  border: dashed 2px white;
  padding: 10px 15px;
  color: #454545;
}

.detail h3:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #a8d4ff;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}


.detail-txt {
	display:block;
	margin:0 auto !important;
	padding:10px;
	width:85%;
	font-size:12px;
}

.detail-txt::first-letter {
	font-size: 20px;
	color:#ff99ff;
}

.mokuji{
	width:90%;
	margin:0 auto;
	font-size:12px;
}

.toc-001 {
    margin:5px;
    padding: 5px;
    border: 1px solid #999;
    background-color: #f7f7f7;
}

.toc-001 div {
    width:80%;
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size:12px;
}

.toc-001 div::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 5px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22%23333%22%3E%3Cpath%20d%3D%22M3.8%2017.2h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.8-.8-.8zm0-15h-3c-.5%200-.8.4-.8.8v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8V3c-.1-.4-.4-.8-.8-.8zm0%207.6h-3c-.5%200-.8.3-.8.7v3c0%20.4.3.8.8.8h3c.4%200%20.8-.3.8-.8v-3c-.1-.4-.4-.7-.8-.7zM23.2%2018h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8zm0-15h-15c-.4%200-.7.3-.7.8v1.5c0%20.4.3.7.7.7h15c.5%200%20.8-.3.8-.8V3.8c0-.5-.3-.8-.8-.8zm0%207.5h-15c-.4%200-.8.3-.8.8v1.5c0%20.4.3.8.8.8h15c.4%200%20.8-.3.8-.8v-1.5c0-.5-.3-.8-.8-.8z%22%2F%3E%3C%2Fsvg%3E');
    content: '';
}

.toc-001 label::after {
    margin-left: 5px;
    font-size: .8em;
    color: #166c9d;
    content: "[open]";
    cursor: pointer;
}

.toc-001:has(:checked) label::after {
    content: "[close]";
}

.toc-001 input {
    display: none;
}

.toc-001 ol {
    list-style-type: disc;
    margin: 0;
    padding: 0 1.2em;
    overflow: hidden;
}

.toc-001 > ol {
    height: 0;
}

.toc-001:has(:checked) > ol {
    height: auto;
}

.toc-001 ol ol {
    margin-top: 5px;
}

.toc-001 li {
    padding: 5px 0;
	list-style:none;
}

.toc-001 a {
    color: #166c9d;
}

.toc-001 p {
	padding:0 !important;
	margin:0 !important;
}

.fukidashi{
	display:block;
	width:85%;
	margin: 15px auto 10px auto;
}

.point_wrapper {
	width:90%;
	margin:40px auto 20px auto;
}

.box27 {
    position: relative;
    margin: 0;
    border: solid 3px #ffbbff;
    background:#ffffff;
}
.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    background: #ffbbff;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box27 p {
    margin: 0; 
    padding: 10px;
}

.box27 p::first-letter {
    font-size: 24px; 
    color: #ffccff;
}

/*/////////////////////////////////////////////////
//吹き出しのパターン色々
/////////////////////////////////////////////////*/
.balloon__contener {
  clear: both;
  width: 100%;
  padding: 0;
  margin: 0;
}

.balloon__contener:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.balloon__contener figure {
  width: 60px;
  position: absolute;
  padding: 0;
  margin: 0;
  top: 0;
  /* 正方形を用意 */
}

.balloon__contener figure img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  border: solid 1px #ffad90;
  margin-top:-15px;
}

.balloon__contener figure figcaption {
    color: #000000;
    width: 100px;
    position: absolute;
    top: 40px;
    left: -23px;
    text-align: center;
    font-size: 70%;
    line-height: 100%;
}

.balloon__contener .balloon__left {
  width: 100%;
  position: relative;
  display: block;
  max-width: 90%;
  clear: both;

}

.balloon__contener .balloon__left figure {
  left: 0;
}

.balloon__contener .balloon__left .balloon_thinking {
  margin-left: 100px;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #F2EDD0;
}

.balloon__contener .balloon__left .balloon_thinking:before {
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 12px;
  top: 10px;
  background: #F2EDD0;
  border-radius: 50%;
}

.balloon__contener .balloon__left .balloon_thinking:after {
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  top: 13px;
  background: #F2EDD0;
  border-radius: 50%;
}

.balloon__contener .balloon__left .balloon__text {
  margin-left: 75px;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  background-color: #FFAD90;
  overflow-wrap: anywhere;
	font-size:12px;
}

.balloon__contener .balloon__left .balloon__text::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -10px;
  top: 4px;
  border-right: 15px solid #FFAD90;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.balloon__contener .balloon__right {
  width: 100%;
  position: relative;
  display: block;
  float: right;
  max-width: 80%;
  clear: both;
	margin:25px 0;
}

.balloon__contener .balloon__right figure {
  right: 0;
}

.balloon__contener .balloon__right .balloon_thinking {
  margin-right: 100px;
  position: relative;
  padding: 20px;
  border-radius: 10px;
  background-color: #eeeeee;
}

.balloon__contener .balloon__right .balloon_thinking:before {
  content: "";
  position: absolute;
  right: -38px;
  width: 13px;
  height: 12px;
  top: 10px;
  background: #eeeeee;
  border-radius: 50%;
}

.balloon__contener .balloon__right .balloon_thinking:after {
  content: "";
  position: absolute;
  right: -24px;
  width: 20px;
  height: 18px;
  top: 13px;
  background: #eeeeee;
  border-radius: 50%;
}

.balloon__contener .balloon__right .balloon__text {
  margin-right: 80px;
  position: relative;
  padding: 10px;
  border-radius: 10px;
  background-color: #ffddff;
  overflow-wrap: anywhere;
	font-size:12px;
}

.balloon__contener .balloon__right .balloon__text::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -10px;
  top: 4px;
  border-left: 15px solid #ffddff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}

.balloon__contener.bg__purple .balloon_thinking,
.balloon__contener.bg__purple .balloon__text,
.balloon__contener.bg__purple figure img {
  background: #513961;
}

.balloon__contener.bg__purple .balloon_thinking:before {
  background: #513961;
}

.balloon__contener.bg__purple .balloon_thinking:after {
  background: #513961;
}

.balloon__contener.bg__purple .balloon__right .balloon__text:after {
  border-left: 15px solid #513961;
}

.balloon__contener.bg__purple .balloon__left .balloon__text:after {
  border-right: 15px solid #513961;
}

.balloon__contener.bg__pink .balloon_thinking,
.balloon__contener.bg__pink .balloon__text,
.balloon__contener.bg__pink figure img {
  background: #F52F6C;
}

.balloon__contener.bg__pink .balloon_thinking:before {
  background: #F52F6C;
}

.balloon__contener.bg__pink .balloon_thinking:after {
  background: #F52F6C;
}

.balloon__contener.bg__pink .balloon__right .balloon__text:after {
  border-left: 15px solid #F52F6C;
}

.balloon__contener.bg__pink .balloon__left .balloon__text:after {
  border-right: 15px solid #F52F6C;
}

.balloon__contener.bg__green .balloon_thinking,
.balloon__contener.bg__green .balloon__text,
.balloon__contener.bg__green figure img {
  background: #11C2BA;
}

.balloon__contener.bg__green .balloon_thinking:before {
  background: #11C2BA;
}

.balloon__contener.bg__green .balloon_thinking:after {
  background: #11C2BA;
}

.balloon__contener.bg__green .balloon__right .balloon__text:after {
  border-left: 15px solid #11C2BA;
}

.balloon__contener.bg__green .balloon__left .balloon__text:after {
  border-right: 15px solid #11C2BA;
}

.balloon__contener.bg__orenge .balloon_thinking,
.balloon__contener.bg__orenge .balloon__text,
.balloon__contener.bg__orenge figure img {
  background: #F5594E;
}

.balloon__contener.bg__orenge .balloon_thinking:before {
  background: #F5594E;
}

.balloon__contener.bg__orenge .balloon_thinking:after {
  background: #F5594E;
}

.balloon__contener.bg__orenge .balloon__right .balloon__text:after {
  border-left: 15px solid #F5594E;
}

.balloon__contener.bg__orenge .balloon__left .balloon__text:after {
  border-right: 15px solid #F5594E;
}

.balloon__contener.color__purple .balloon_thinking,
.balloon__contener.color__purple .balloon__text {
  color: #513961;
}

.balloon__contener.color__pink .balloon_thinking,
.balloon__contener.color__pink .balloon__text {
  color: #F52F6C;
}

.balloon__contener.color__orenge .balloon_thinking,
.balloon__contener.color__orenge .balloon__text {
  color: #F5594E;
}

.balloon__contener.color__green .balloon_thinking,
.balloon__contener.color__green .balloon__text {
  color: #11C2BA;
}

.balloon__contener.color__white .balloon_thinking,
.balloon__contener.color__white .balloon__text {
  color: white;
}

@media only screen and (max-width: 767px) {
  .balloon__contener .balloon__left,
  .balloon__contener .balloon__right {
    max-width: 100%;
  }
}

/* quote */
blockquote {
    font-size:12px;
    position: relative;
    padding: 15px;
    padding-bottom: 20px;
    border: 1px solid #ffccff;
    width: 80%;
    margin: 0 auto;
}

blockquote::before, blockquote::after {
//    font-family: ＸＸＸＸＸ;
    font-size: 30px;
    position: absolute;
    opacity: .1;
}

blockquote::before {
    color:#000;
    content: '"';
    top: 0px;
    left: 5px;
}

blockquote::after {
    color:#000;
    content: '"';
    line-height: 0em;
    bottom: 0px;
    right: 5px;
}

blockquote p {
	size:12px;
    font-style: oblique;
    font-family: Times New Roman, "ＭＳ Ｐゴシック";
}


cite {
    font-size:12px;
    position: absolute;
    bottom: 5px;
    right: 20px;
}

/* SNSしぇあ */
.sns__container {
    display: flex;
    margin-bottom:15px;
}

.sns__container a {
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 0.5rem 0;
}

.sns__container a:hover {
    opacity: 0.6;
}

.sns__twitter {
    background: #55acee;
}

.sns__facebook {
    background: #3b5998;
}

.sns__pocket {
    background: #ef3f56;
}

.sns__line {
    background: #1dcd00;
}

.sns__hatena {
    background: #00a5de;
}

/* ブログカード */
.blog-card {
  border:2px solid #68c9e8;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  word-wrap:break-word;
  max-width:90%;
  margin:50px auto 45px auto;
  display: flow-root;
  a {
    color: #38383e;
    background: #fff;
    display: block;
    text-decoration: none;
    -webkit-transition: box-shadow 0.2s ease-in-out;
    -moz-transition: box-shadow 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    &:hover {
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }
  }
}
.blog-card-thumbnail{
  float:left;
  padding:10px;
  img {
    display: block;
    padding: 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.blog-card-content{
  line-height:120%;
  margin-top:-30px;
}
.blog-card-title{
  padding:10px 10px 10px 0;
  font-size:14px;
  line-height:1.2;
 &:before{
	content:"『";
}
 &:after{
	content:"』";
}
}

.blog-card:before {
    content: '合わせて読みたい';
    width: 42px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #68c9e8;
    width: 145px;
    display: inline-block;
    padding: 0.2em;
    position: relative;
    top: -30px;
    left: -112px;
    text-align: center;
//    margin: 50px 0 0 0 ;
    /* -webkit-border-radius: 2px; */
    -moz-border-radius: 2px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }

.blog-card-date{
  color: lighten(#38383e, 10%);
  font-size:75%;
  margin-right:10px;
  margin-top:45px;
  text-align:right;
  
}


/* snsシェア */

.btn-twitter {
  display: inline-block;
  padding: .6em 1em .6em 2.5em;
  margin: 0 5px;
  background-color: #55acee;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.btn-twitter::after {
  position: absolute;
  content: '\f099';
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.btn-facebook {
  display: inline-block;
  padding: .6em .8em .6em 2.5em;
  margin: 0 5px;
  background-color: #315096;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.btn-facebook::after {
  position: absolute;
  content: '\f09a';
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.btn-line {
  display: inline-block;
  padding: .6em 1em .6em 2.5em;
  margin: 0 5px;
  background-color: #1dcd00;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.btn-line::after {
  position: absolute;
  content: "\f3c0";
  font-family: 'Font Awesome 5 Brands';
  top: 50%;
  left: .5em;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: 400;
}

.sideber_box {
	padding:10px;
/*	background-color:#ffeeff; */
	margin:5px 0;
	border:1px solid #ffccff;
}

.sideber_box_inner {
	position:relative;
}

.sideber_box h3  {
	size:14px;
	border-bottom:5px double #ffccff;
}

.sideber_box ul {
	padding-left:15px;
}

.sideber_box li {
	list-style:none;
	padding:5px 0;
}

.sideber_box li a {
	size:12px;
}

.sideber_box img {
	display:block;
	height:auto;
	width:50%;
	margin:0 auto;
}

.sideber_txt {
    font-size: 12px;
    margin-bottom: 10px;
    padding: 5px;
    margin-left: 165px;
}

.single-date {
	padding:10px;
	text-align:right;
	font-size:12px;
}

.post-ratings{
	padding:10px;
	text-align:right;
	width:auto !important;
}

.bread {
box-sizing: border-box;
    padding: 5px;
    margin: 5px 0 10px 0;
    width: 100%;
    border: 1px solid #ffccff;
	font-size:12px;
}

.bread a {
  color: #696969;
  text-decoration:none;
}


#copyright {
	display: flex; /* flexbox */
	justify-content: center; /* 中央揃え */
	align-items: center; /* 中央揃え */
	margin-top: 4px;
	padding: 10px;
}

.category {
	padding:0;
	margin:0;
	font-size:18px;
}

.category h2 {
	padding:10px;
	margin:15px;
	font-size:14px;
	font-style:bold;
	border-left:double 5px #ffccff;
}

.category_wrapper {
	padding: 2px;
}

.category_body {
    marign: 5px;
    border: 1px solid #ffccff;
}

.category_body_inner {
	position: relative;
    border-bottom: 1px solid #ffccff;
    padding-bottom: 5px;
	min-height:100px;
}

.category_body_inner a {
 	text-decoration:none;
	color:#000;
}

.category_body_inner img {
    width: 30%;
    height: auto;
    margin: 0 5px 0 5px;
}

.category_body_title h2 {
    font-size: 16px;
    margin: 5px 0 5px 5px;
    /* padding: 10px; */
    border-bottom: 3px double #ffccff;
    /* width: 100%; */
}

.category_body_title h3 {

}

.category_body_title {

}

.category_body_content {
    position: absolute;
    top: 0;
    margin-left: 33%;
    font-size: 12px;
}

.category_body_cat {
    padding: 5px;
    font-size: 12px;
}

.category_body_date {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
    padding-right: 10px;
}

.test-search-box {
	position: relative;
	height: 25px;
}

#keyword-search-wrap {
    position: absolute;
    left: 10px;
    width: 30%;
    margin: 5px;
}

#submit-btn-wrap {
    position: absolute;
    left: 46%;
    margin: 5px;
}

.searchform {
    margin: 0 auto;
    padding: 5px 5px 5px 40px;
}

#footer_wrapper{
	margin:0 auto 69px auto;
	padding:5px;
    font-size: 12px;
}

/* footer用にレイアウト調整 */
body {
  margin: 0px;
  padding: 0;
  list-style: none;
  background: #eee;
  color: #333;
}

.main-title{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ------------------ */
/* フッター */
/* ------------------ */
/* メニューをページ下部に固定 */
#fixed-footer-menu {
  position: fixed;
  width: 100%;
  bottom: 0px;
  opacity: 1;
  z-index: 100;
}

/* メニューを横並びにする */
#fixed-footer-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}

/* メニューの要素 */
#fixed-footer-menu li {
  justify-content: center;
  align-items: center;
  width: 20%; /* 要素が5つの場合（100/5） */
  padding: 0;
  margin: 0;
}

/* メニューのボタン */
#fixed-footer-menu li a {
  color: #333;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 0px 0px;
  font-size: 8px;
  text-decoration: none;
}

/* メニュータイトル */
#fixed-footer-menu li p {
  font-size: 11px; /* メニュータイトルのフォントサイズ */
}

/* アイコン */
#fixed-footer-menu li img{
  width:50%;
}

/* アイコンのサイズを調整 */
.footer-icon img {
  width:50%;
}

/*関連記事リンク*/
.kanren{
	padding: 5px;
	margin: 5px auto;
	border: 1px #e5e5e5 solid;
    width: 80%;
}
.kanren img{
	width:95%;
	height:95%;
}

.kanren:after {
	content: "";
	display: block;
	clear: both;
}
.kanren-image{
	float: left;
	margin-right: 10px;
	max-width: 100px;
}
.kanren-title{
	font-size: 18px;
	font-weight: bold;
}
.kanren-title a:after {
	content: "\f08e";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	text-decoration: none;
	margin: 0 3px;
}
.kanren-description{
	font-size: 12px;
}

#s-btn{
	padding: 5px;
}

#s-box {
        width: 50%;
        padding: 5px;
        height: 15px;
}

#s-btn-area {
	width:20%;
	height:30px;
}