@charset "UTF-8";

/*-----------------------------------------------------
Lingerica+用スタイルシート全体
FileName:	defualt/style.css
Version:	06.11.11
-----------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  color: #333;
  background: #fffafc;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}
.plus {
  color: #e87fa1;
}
.logo a {
  text-decoration: none;
  color: #333;
}

#mainNav{
  display: none;
  flex-direction: column;
  background: #fff;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  border-top: 1px solid #eee;
}
#mainNav a {
  padding: 12px 18px;
  text-decoration: none;
  color: #333;
}
#mainNav.show {
  display: flex;
}

.mobile-menu-button {
  font-size: 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}

h1{ font-size: 22px; }


h2{ font-size: 20px; }

h6 {
  position: relative;
  padding: 0.5em;
  background: #a6d3c8;
  color: white;
  font-size: 1.0em;
}

h6::before {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 15px transparent;
  border-right: solid 15px rgb(149, 158, 155);
}

.left{ float: left;}
.right{ float: right;}


/*パン屑リスト*/

.breadcrumb {
  margin-bottom: 10px;
  padding-left: 10px;
  list-style: none;
  background-color: #fff;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: normal;/*太字*/
}

.breadcrumb li:after {/* ▶を表示*/
  content: '>';
  padding: 0 0.2em;
  color: silver;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #888;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}


 /* スマホ用のCSS */

#container {
	position:relative;
	margin:0 auto;
/*	border-left: 1px solid #808080;
	border-right: 1px solid #808080;*/
	padding-left:10px;
	padding-right:10px;
	width: 90%;
	background:#ffffff;
	text-align: left;
	line-height: 1.5;
	color: #333;
	font-size: 18px;

	}

#head{
	clear:both; 
	width:100%;
	border-bottom: 2px solid #da072d;
	margin-bottom: 5px;
	text-align: center;
	}

#navi{ font-size: 14px; margin-bottom: 10px;}

#main{
	padding:0px;;
	width: 100%;
	word-break: break-all;
	}

#menu{
	width: 90%;
	}

#submenu{
	width: 90%;
	}

	.pcview { display: block; }
	.spview { display: none; }

#foot{
	width:100%;
	clear:both; 
	text-align:center;
	border-top: 1px solid #808080;
	margin-top: 5px;
	font-size: 13px;
	}
#foot a{ color:#333; text-decoration:none; }

.list{ font-size: 18px; line-height: 2.0;}

.prefList{  font-size: 18px; line-height: 2.0; }

#prefList{display: block;}


/*ページング処理用*/

.pager .pagination {
  text-align: center;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#9D50BB;
  width: 33px;
  height: 33px;
  text-align: center;
  position: relative;
  border-radius: 50px;
}


.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #000;
  background: #ccf;
  border-radius: 50px;
}




/*枠線div*/
.waku{
  text-align: center;
  border: 3px dotted #ccf;
  border-radius: 10px;
  display: inline-block;
}


li {
    list-style-position: inside;
	/*line-height: 35px;*/
	margin-bottom: 7px;
}

/*検索フォーム*/
.search_container{
  box-sizing: border-box;
}
.search_container input[type="text"]{
 background: #fff;
  border:  1px solid #999;
  height: 2.0em;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container input[type="submit"]{
  cursor: pointer;
  border: none;
  background: #3879D9;
  color: #fff;
  outline : none;
  height: 2.5em;
  width: 4.0em;
  margin-left:10px;
text-align: center;
}
.search_container ::-webkit-input-placeholder {
  color: #3879D9;
}


/* ハンバーガーメニュー用 */
/*https://www.asobou.co.jp/blog/web/css-menu*/
.menu-btn {
    position: fixed;
    top: 3px;
    right: 15px;
   cursor: pointer;
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    z-index: 90;
/*    background-color: #3584bb;*/
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #a9a9a9;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

/*
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #fff;
}
*/

.menu-content ul {
    padding: 10px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #000;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 100%;
    height: 100%;
    padding-top: 60px;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
}


#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}


/*ボタン*/

.btn,
a.btn {
  color: #fff;
  background-color: #006400;
   border-radius: 100vh;
padding-left:20px;
padding-right:20px;
padding-top: 10px;
padding-bottom: 10px;
text-decoration: none;
}
.btn:hover,
a.btn:hover {
  color: #fff;
  background: #228b22;
}

.btn-orange,
a.btn-orange {
  color: #fff;
  background-color: #eb6100;
   border-radius: 100vh;
padding-left:20px;
padding-right:20px;
padding-top: 10px;
padding-bottom: 10px;
text-decoration: none;
}
.btn-orange:hover,
a.btn-orange:hover {
  color: #fff;
  background: #f56500;
}

.btn-blue,
a.btn-blue {
  color: #fff;
  background-color: #191970;
   border-radius: 100vh;
padding-left:20px;
padding-right:20px;
padding-top: 10px;
padding-bottom: 10px;
text-decoration: none;
}
.btn-blue:hover,
a.btn-blue:hover {
  color: #fff;
  background: #0000ff;
}


/*ランキング用*/
ol.rank{
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding:0;
}
ol.rank li{
  position:relative;
  padding: 0 0 0 30px;
  margin: 7px 0 7px 0px;
  font-weight: bold;
  font-size:18px;
  line-height: 29px;
  border: dashed 1px transparent;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}
ol.rank li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -10px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height:30px;
/*  background: #F6A38B;*/
  background: #bc8f8f;
  border-radius: 50%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

ol.rank li:nth-child(5n+1):before{
/*  background: #FFA79F;*/
  background: #ffd700;
}
ol.rank li:nth-child(5n+2):before{
/*  background: #fbaf5d;*/
  background: #c0c0c0;
}
ol.rank li:nth-child(5n+3):before{
/*  background: #9FCDFF;*/
  background: #ac6b25;
}
ol.rank li:nth-child(5n+4):before{
/*  background: #AFEBB6;*/
  background: #778899;
}

ol.rank li:nth-child(5n+5):before{
/*  background: #AFEBB6;*/
  background: #778899;
}

/*uLリスト装飾*/
ul.newest{
  counter-reset:list;
  list-style-type:none;
  font: 14px/1.6 'arial narrow', sans-serif;
  padding:0;
}
ul.newest li{
  position:relative;
  padding: 0 0 0 0px;
  margin: 7px 0 7px 0px;
  font-weight: bold;
  font-size:18px;
  line-height: 29px;
  border: dashed 1px transparent;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}


/*ULリスト装飾版*/
ul.rank{
  counter-reset:li;
  padding: 0.5em 0.5em 0.5em 2em;
  font: 14px/1.6 'arial narrow', sans-serif;
  width:90%;
  list-style: none;
}
ul.rank li{
  position: relative;
  padding: 13px 4px 10px 20px;
  margin-top: 0.8em;
  border-bottom: 1px dashed #ccc;
  font-size: 20px;
  color: #333;
}
 
ul.rank li:before{
  counter-increment: li;
  content: counter(li);
  position: absolute;    
  z-index: -1;
  left: -5px;
  top: -3px;
  background: #f5f5f5;
  height: 1.5em;
  width: 1.5em;
  border: .1em solid rgba(0,0,0,.05);
  text-align: center;
  font: italic bold 1em/1.3em Georgia, Serif;
  color: #ccc;
  border-radius: 1.5em;
  transition: all .2s ease-out;
}
 
ul.rank li:hover:before{
  background-color: #ffd797;
  border-color: rgba(0,0,0,.08);
  border-width: .2em;
  color: #444;
  transform: scale(1.5);
}

/*次へボタン*/
a.btn-next{
  color: #fff;
  background: #9D50BB;
   border-radius: 100vh;
padding-left:50px;
padding-right:50px;
padding-top:5px;
padding-bottom:5px;
text-decoration: none;
margin-bottom:20px;
}

a.btn-prev{
  color: #fff;
  background: #9D50BB;
   border-radius: 100vh;
padding-left:50px;
padding-right:50px;
padding-top:5px;
padding-bottom:5px;
text-decoration: none;
margin-top:20px;

}

	.pcview { display: none; }
	.spview { display: block; }

//シェアボタン調整
a.share-x { margin: 10px;}
a.share-line { margin: 10px;}
a.share-copy { margin: 10px;}

 @media screen and (min-width: 768px)  and (max-device-width: 1024px){

#container {
	position:relative;
	margin:0 auto;
	border-left: 1px solid #808080;
	border-right: 1px solid #808080;
	padding-left:10px;
	padding-right:10px;
	width: 760px;
	text-align: left;
	line-height: 1.5;
	color: #333;
	font-size: 16px;
	}


#main{ float:left;
	width: 520px;
	padding-left:5px;
}

#menu{ float:right;
		background: #ffffff;
	width: 220px;
	padding-left:5px;
	font-size: 15px;
	}

#prefList{
	width:100%;
	clear:both; 
	border-top: 1px solid #808080;
	font-size: 15px;
	}




	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}

.menu-btn { right: 30px;}


	.pcview { display: block; }
	.spview { display: none; }


}

 @media only screen and (min-device-width: 1025px){

#container {
	position:relative;
	margin:0 auto;
	border-left: 1px solid #808080;
	border-right: 1px solid #808080;
	padding-left:10px;
	padding-right:10px;
//	width: 780px;
	width: 960px;
	text-align: left;
	line-height: 1.5;
	color: #333;
	font-size: 16px;
	}


#main{ float:left;
	width: 680px;
	padding-left:5px;
}

#menu{ float:right;
		background: #ffffff;
	width: 260px;
	padding-left:5px;
	font-size: 15px;
	}

#prefList{
	width:100%;
	clear:both; 
	border-top: 1px solid #808080;
	font-size: 15px;
	}


	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}

/*ハンバーガーメニュー要素非表示*/
.menu-btn { display: none; }


	.pcview { display: block; }
	.spview { display: none; }


}
