@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.0.8
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* CSS Document */

/*ポイントぼっくす*/
.point-box {
    margin: 2em 0;
    background: #F8F3F3;
	border-radius: 10px;
    padding: 5px;
    box-shadow: 2px 3px 5px #b9b5b5;
    color: #0a5865eb;
    font-weight: bold;
}
.point-box .box-title {
    font-size: 1.2em;
    background: #D5C989;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
	letter-spacing: 0.05em;}
/*ここまで*/
/*ひし形リスト/*/
.hisi li {
  position: relative;
	list-style: none;
	font-weight: bold;
}
.hisi li::after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #3498db;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/*ここまで*/
/*リンクボタン*/
.appeal-button {
    color: #fff;
    text-decoration: none;
    background-color: #dd4b39;
    font-weight: bold;
    text-align: center;
    display: block;
    max-width: 80%;
    margin: auto;
    padding: 10px 2em;
    border-radius: 4px;
	box-shadow: 2px 3px #942517;
}
/*ここまで*/
/*フローチャート*/
ul.flow_list{
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: bold;
}
ul.flow_list li{
	border: 5px solid #ccc;
    border-radius: 10px;
    margin-bottom: 35px;
    padding: 4px 10px;
    position: relative;
}
ul.flow_list li::after{bottom: -34px;
    color:#ccc;
    content: "▼";
    font-size: 24px !important;
    left: 48%;
    position: absolute;}
ul.flow_list li.last::after{/*最後の▼を外す*/
    content: "";
}
ul.flow_list li h3::first-letter{/*1文字めを大きく*/
    font-family: garamond,times;
    font-size: 2rem;
    font-style: italic;
    letter-spacing: 0.15em;
}
/*Q&A*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa .cp_actab {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0 0 1em 0;
	color: #1b2538;
}
.cp_qa .cp_actab input {
	position: absolute;
	opacity: 0;
}
/* 質問 */
.cp_qa .cp_actab label {
	font-weight: bold;
	line-height: 1.6em;
	position: relative;
	display: block;
	margin: 0 0 0 0;
	padding: 1em 2em 1em 2.5em;
	cursor: pointer;
	text-indent: 1em;
	border-radius: 0.5em;
	background: rgba(27,37,56,0.1);
}
.cp_qa .cp_actab label::before {
	font-family: serif;
	font-size: 1.5em;
	margin-left: -2em;
	padding-right: 0.5em;
	content: 'Q';
}
.cp_qa .cp_actab label:hover {
	transition: all 0.3s;
	color: #00838f;
}
/* --質問の＋アイコン */
.cp_qa .cp_actab label::after {
	font-size: 1.7em;
	font-weight: bold;
	line-height: 2em;
	position: absolute;
	top: 0;
	right: 0;
	content: 'b';
	display: inline-block;
	width: 2em;
	height: 2em;
	-webkit-transition: transform 0.4s;
	        transition: transform 0.4s;
}
/* 答え */
.cp_qa .cp_actab .cp_actab-content {
	position: relative;
	overflow: hidden;
	max-height: 0;
	padding: 0 0 0 2.5em;
	-webkit-transition: max-height 0.2s;
	        transition: max-height 0.2s;
	border-radius: 0 0 0.5em 0.5em;
}
.cp_qa .cp_actab .cp_actab-content::before {
	font-family: serif;
	font-size: 1.5em;
	position: absolute;
	margin: 0.4em 0 0 -1em;
	padding: 0;
	content: 'A';
}
.cp_qa .cp_actab .cp_actab-content p {
	margin: 1em 1em 1em 0;
}
/* 質問を開いた時の仕様 */
/* --答えの高さ */
.cp_qa .cp_actab input:checked ~ .cp_actab-content {
	max-height: 40em;
	border: 10px solid rgba(27,37,56,0.1);
}
/* 質問をクリックした時のアイコンの動き */
.cp_qa .cp_actab input:checked ~ label {
	color: #00838f;
	border-radius: 0.5em 0.5em 0 0;
}
/* 質問をクリックした時の+の動き */
.cp_qa .cp_actab input[type=checkbox]:checked + label::after {
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}
/*ここまで*/
/*目次のリストＣＳＳ*/
ul.cp_list {
	padding:0.5em;
	list-style-type:none;
}
ul.cp_list li {
	position:relative;
	padding: 0em 0.3em 0em 1.3em;
}
ul.cp_list li::before,ul.cp_list li::after {
	position: absolute;
	content: '';
	display: inline-block;
}
ul.cp_list li::after {
	top: .35em;
	left: 0em;
	width: 14px;
	height: 14px;
	background-color: #EC407A;
	border-radius: 100%;
}
ul.cp_list li::before {
	z-index: 2;
    top: 0.55em;
    left: 0.1em;
	width: 5px;
	height: 5px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
}

.ranking-item-rating {
    color: #f5bc55;
    font-size: 1.2em;
}
.star::before {
    content: '\f005';
}

.star::before, .star-half-o::before, .star-o::before {
    font-family: FontAwesome;
}
.top-cp{
	background-color: #FCD9D9;
	font-weight: bold;
	border-radius: 7px;

}

.point-box-2 {
    margin: 2em 0;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.point-box-2 .box-title2 {
    font-size: 1.2em;
    background: #AAA6A6;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.point-box-2 p {
    padding: 15px 20px;
    margin: 0;
}
/*ワンポイントボックス*/
.one {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
}
.one .one-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.one p {
    margin: 0; 
    padding: 0;
}
/*/////////////////////////////////////////////////
//連番リスト2
/////////////////////////////////////////////////*/

.ranking-1{
  counter-reset: chapter;
	list-style: none;
	font-weight: bold
}

.ranking-1 li:before {
  content: counter(chapter) "";
  counter-increment: chapter;
  width: 50px;
  height: 50px;
  margin: 0 5px 0 0;
  padding:5px 10px;
  border-radius: 3px;
  background: #30b0d8;
  color: #fff;
  text-align: center;
  z-index: 1;
}
.ranking-1 li {
  padding: 10px;
  background: #cde2e8;
}

.ranking-1 li:nth-child(even) {
  background: #eee;
}

/*赤の囲み枠*/
.color-border{
	border: 1px solid #FF8238;
}
.pt-post-main .color-border {
    border: 2px solid #d9333f;
}

.pt-post-main .color-border {
    border: 1px solid #e95464;
    position: relative;
    border-radius: 2px;
}
.down{
overflow: hidden;
width: 100%;
margin: 2em auto;
text-align: center;
}
.down select {
width: 100%;
padding-right: 1em;
cursor: pointer;
text-indent: 0.01px;
text-overflow: ellipsis;
border: none;
outline: none;
background: transparent;
background-image: none;
box-shadow: none;
-webkit-appearance: none;
appearance: none;
}
.down select::-ms-expand {
display: none;
}
.down {
position: relative;
border-radius: 2px;
border-radius: 50px;
background: #ffd5d5;
}
.down::before {
position: absolute;
top: 0.8em;
right: 0.8em;
width: 0;
height: 0;
padding: 0;
content: '';
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 6px solid #ffffff;
pointer-events: none;
}
.down select {
padding: 8px 38px 8px 8px;
color: #000000;
	font-weight: bold;
	font-size: 18px;
}
.fream {
width:100%;
height:250px;
overflow-y:scroll;
-webkit-overflow-scrolling:touch;
}    
.fream iframe   {
width:100%;
height:100%;
display:block;
border:none;
}
.sekyu{
	font-weight: bold;
	font-size: 25px;
	color: #A70077;
	margin: 0 auto;
	text-align: center;
}
.sekyu{
  animation: flash 1s linear infinite;
  margin:20px;
  font-size:30px;
    font-weight: bold;
}
.sns-share-buttons{
	display:none;
}
#toc{
	display:none;
}

@keyframes flash {
  0%,35%,60%,100%{
    opacity: 0;
  }

  25%{
    opacity: 1;
    color:#7fff00;
  }
  
  50%{
    opacity: 1;
    color:#0091EA;
  }
  
  75%{
    opacity: 1;
    color:#ff1493;
  }
  

.blog-card {
  background: rgba(251, 140, 0, 0.02);
  border: 1px solid #fb8c00;
  word-wrap: break-word;
  max-width: 100%;
  border-radius: 5px;
  margin: 0px 10px 15px 10px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .2);
  -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:hover {
  cursor: pointer;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .2);
  -moz-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

.blog-card:before {
  font-family: FontAwesome;
  position: absolute;
  padding: 2px 6px;
  content: "\f02e 詳細を見る";
  background-color: #fb8c00;
  color: #fff;
  font-size: .8em;
  z-index: 1;
}

.blog-card a {
  text-decoration: none;
}

.blog-card-thumbnail {
  width: 35%;
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0 10px 10px;
}

.blog-card-thumbnail img {
  padding: 0;
}

.blog-card-content {
  display: table-cell;
  vertical-align: middle;
}

.blog-card-title {
  font-size: 1em;
  margin: 5px 10px 5px 0px;
  font-weight: bold;
  line-height: 1.4;
}

.blog-card-title:hover {
  text-decoration: underline;
}

.blog-card-excerpt {
  font-size: .74em;
  color: #4c4c4c;
  margin: 0 10px 5px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-card .clear {
  clear: both;
}

@media screen and (max-width: 500px) {
  .blog-card:before {
    font-size: .56em;
  }
  .blog-card-title {
    font-size: .70em;
  }
  .blog-card-excerpt {
    font-size: .60em;
  }
}
	/* アピールエリア */
@media screen and (max-width: 769px) {
	div.appeal-in {
		display: none;
	}
}
	
/* 女の子一覧ページ専用のスタイル */
.girl-profile-container {
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 15px;
}
.girl-profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.girl-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-decoration: none;
    background: #fff;
    display: block;
}
.girl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.girl-card__image-wrapper {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    background-color: #f5f5f5;
}
.girl-card__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.girl-card__name {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding: 15px 10px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
	/* 女の子プロフィール詳細ページ専用のスタイル */
.girl-detail-container {
    max-width: 1000px;
    margin: 2em auto;
    padding: 0 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.girl-detail-content {
    display: flex;
    flex-wrap: wrap;
    padding: 2em;
    gap: 40px;
}
.profile-image-column {
    flex: 1;
    min-width: 300px;
}
.profile-image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}
.profile-details-column {
    flex: 2;
    min-width: 300px;
}
.profile-title {
    font-size: 2.5em;
    margin-top: 0;
    margin-bottom: 0.2em;
    line-height: 1.2;
}
.profile-oneword {
    font-size: 1.3em;
    font-weight: bold;
    color: #e65596;
    margin-bottom: 1.5em;
    padding: 0.5em;
    background: #fdf5f9;
    border-left: 5px solid #e65596;
}
.profile-cta-button {
    display: inline-block;
    background-color: #ff69b4;
    color: #fff;
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-bottom: 2em;
}
.profile-cta-button:hover {
    background-color: #ff85c1;
    color: #fff;
}
.profile-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
}
.profile-details-table th,
.profile-details-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}
.profile-details-table th {
    background-color: #f9f9f9;
    width: 120px;
    font-weight: bold;
}
.profile-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.profile-genre-tag {
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9em;
}
/* レスポンシブ */
@media (max-width: 768px) {
    .girl-detail-content {
        flex-direction: column;
        padding: 1em;
    }
    .profile-title {
        font-size: 2em;
    }
}
/* 女の子プロフィール一覧ショートコード用のスタイル */
.girl-profile-list-wrapper {
    margin: 2em auto;
}
.girl-profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.girl-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,.05);
    transition: transform .2s ease-in-out,box-shadow .2s ease-in-out;
    text-decoration: none;
    background: #fff;
    display: block;
}
.girl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.girl-card__image-wrapper {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    background-color: #f5f5f5;
}
.girl-card__image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.girl-card__name {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    text-align: center;
    padding: 15px 10px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* もっと見るボタン */
.girl-profile-load-more-container {
    text-align: center;
    margin-top: 40px;
}
#girl-profile-load-more {
    background-color: #ff69b4;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}
#girl-profile-load-more:hover {
    background-color: #ff85c1;
}
#girl-profile-load-more:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1240px以下*/
@media screen and (max-width: 1240px){
  /*必要ならばここにコードを書く*/
}

/*1030px以下*/
@media screen and (max-width: 1030px){
  /*必要ならばここにコードを書く*/
}

/*768px以下*/
@media screen and (max-width: 768px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
