@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.2
*/

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


/*ブログカード 説明文(スニペット) 非表示 */
.blogcard-snippet {
display: none;
}

/* リストブロックの項目同士余白 */
li {
margin:3px;
padding:2px;
}

/* h2上の余白 */
h2 {
margin-top:10px;
padding-top:2px;
}


/* h3上の余白 */
h3 {
margin-top:10px;
padding-top:2px;
}

/* 口コミの横スクロール */
.scroll-bar { 
  padding-top: 11px;
  padding-bottom:0;
  padding-right:10px;
  margin: 0;
}

.scroll-bar p{ 
  font-size:13px
}

.h-side ul { /* ウィジェットのリスト改行なし */
margin: 2;
padding:0;
}

.h-side li { /* ウィジェットのリスト改行なし */
display: inline;
}

.h-side li { /* ウィジェットのリスト改行なし */
margin: 0;
padding:0;
}

.h-side dd { /* ウィジェットのリスト改行なし */
display: inline;
margin: 0;
padding:0;
}


.h-footer li { /* フッターのリスト改行なし */
display: inline;
}

.scroll_content { /* リスト全体のスタイル */
  display: flex;
  max-width: 800px;
  margin: auto;
  overflow-x: auto;
}

.scroll_content li { /* 各リストのスタイル */
  width: 90%;
  padding: 0;
  margin:0;
  flex-shrink: 0;
  list-style: none;
  font-size:11px
}

.scroll_content img { /* 画像のスタイル */
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.scroll_content::-webkit-scrollbar {
  height: 12px; /* スクロールバーの高さ */
}

.scroll_content::-webkit-scrollbar-thumb {
  background: #aaa; /* ツマミの色 */
  border-radius: 6px; /* ツマミ両端の丸み */
	  padding: 0;
  margin:0;
}

.scroll_content::-webkit-scrollbar-track {
  background: #ddd; /* トラックの色 */
  border-radius: 6px; /* トラック両端の丸み */
	  padding: 0;
  margin:0;
}

@media screen and (min-width: 450px) {

  .scroll_content li {
    width: 45%;
	    padding: 0;
  margin:0;
  }

}


/* 口コミの横スクロール画像 */
.scroll-image { /* リスト全体のスタイル */
  padding: 0;
  margin: 0;
}



.reputation-woman {
	background-color:#fff0f5;
}

.reputation-man {
	background-color:#e0ffff;
}

/*リンク集のリンク色を変える */
.hapirara-link-unit a{
	text-decoration: none;
}

.hapirara-link-unit a:link{
 color: #696969  ;
}

.hapirara-link-unit a:visited{
 color: #696969  ;
}

.hapirara-link-unit ul a:link{
 color: #808080 ;
}

.hapirara-link-unit ul a:visited{
 color: #808080 ;
}

/* Display post テーブルタグのh2 h3のラインを消す*/
#hapirara h2  {
	   padding-top:0px;
	   margin-top:5px;
       padding-bottom:0px;
	   margin-bottom:5px;
}


#hapirara h3  {
	   padding-top:5px;
	   margin-top:0px;
       padding-bottom:5px;
	   margin-bottom:0px;
}



.cat-label {
display: none;
}

/*768px以下でロゴの大きさ変更*/
@media screen and (max-width: 768px){
img.site-logo-image{
	width: 440px;
	margin: 0px auto 0;
	padding:0px;
}
}


/* 申込用固定ボタン */
.button-wrap-apply {
  z-index:100;
  position: fixed;
  left: 0; /* 画面左端に固定 */
  bottom: 0; /* 画面下に固定 */
  width: 100%;
  padding-top: 0px;
  padding-bottom: 25px;
 margin-bottom:0px;
  background: #fafad2;
}

.button-apply {
  width: 100%;
  max-width: 350px;
  height: 60px;
  margin-right: auto;
  margin-left: auto;
  background: #fafad2;
  border:none;
  display: block;
}


/* キラリと光るボタン */
.btn-5 {
    background-color: #fabb00; /* ボタン背景色 */
    color: #fff; /* ボタン文字色 */
    box-shadow: 0 5px 0 0 #194174; /* ボタン陰色 */
    font-weight: bold;
    border-radius: 4px;
    max-width: 80%;
    margin: 0.5em auto;
    padding: 0;
    text-align: center;
    line-height: 1.4;
    transition: all .2s ease;
}

.btn-5:hover {
    opacity: 0.8;
}

.btn-5 a {
    text-decoration: none !important;
    color: #fff !important;
    display: block;
    margin: 0;
    padding: 0.5em;
    position: relative;
    overflow: hidden;
}

.btn-5 a::before {
    display: block;
    position: absolute;
    z-index: 1;
    left: -100%;
    top: -50vh;
    content: '';
    width: 3rem;
    height: 100vh;
    transform: rotate(5deg);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    animation: highLight 3s ease-in-out 0s infinite;
}

@keyframes highLight {
    from { left: -5%; }
    15%, 100% { left: 105%; }
}

.btn-5 > img { float: left; }
.btn-5::after{ content: ''; clear: left; }


/*カテゴリーのフォルダマークをハートに！*/
.archive-title .fa-folder-open:before {
	content: url(https://hapirara.jp/img/main/category-logo-heart2.png)" ";
}

/*テーブルの男女幅均等　背景色変更*/
#list table{
        width: 100%;
        table-layout: fixed;
}

#list p{
        color:white;
}

#today{
        background-color:#fff8dc;
}


#list h5{
        padding-bottom:0px;
	    margin-bottom:0px;
}


#title{
        background-color:#ffe4e1;
}

#lady{
        background-color:#fff0f5;
	  　font:#fff0f5;
}

#gentle{
        background-color:#e0ffff;
}

#content{
        background-color:#fffff0;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

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

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

/*カテゴリーの色をピンクの帯に！*/
.archive-title {
	color: #9A9191;
	background: #fff3f3;
	padding: 1em;
	margin: 0 0 1em;
	border-left: 8px solid #ffd7d7;
	border-radius: 0 3px 3px 0;
}
@media screen and (max-width: 500px) {
	.archive-title {
		font-size: 15px;
	}
}



/* 日本地図DOM */
.japan_map{
    position: relative;
    box-sizing: border-box;
    margin: 0 auto;
   padding:0 auto;
    display: table;
    background-color: #red;
}
/* 日本地図画像（スマホ対応用） */
.japan_map img{
    max-width: 100%;
    height: auto;
    border: 0;
    -webkit-backface-visibility: hidden;
}
/* 日本地図ボタン */
.japan_map .area_btn{
    position: absolute;
    z-index: 1;
    box-sizing: border-box;
    cursor: pointer;
    border: 3px solid #red;
    border-radius: 5px;
    background-color: orange;
    padding: 0.2em auto;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
}

/* ボタン配置（使用する日本地図画像により微調整） */
.japan_map .area_btn.area1{
    top: 17%;
    right: 13%;
    width: 25%;
}
.japan_map .area_btn.area2{
    top: 55%;
    right: 13%;
    width: 15%;
}
.japan_map .area_btn.area3{
    top: 60%;
    right: 30%;
    width: 13%;
}
.japan_map .area_btn.area4{
    top: 68%;
    right: 41%;
    width: 13%;
}
.japan_map .area_btn.area5{
    top: 70%;
    left: 25%;
    width: 17%;
}
.japan_map .area_btn.area6{
    top: 80%;
    left: 10%;
    width: 17%;
}
/* オーバーレイ */
.japan_map .area_overlay{
    display: none;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    background-color: #orange;
    opacity: 0.5;
    cursor: pointer;
}

/* 選択前は表示を隠す */
.japan_map .pref_area{
    display: none;
}

/* 地域毎の都道府県リスト */
.japan_map .pref_list{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 3;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 90%;
    background-color: #ff1493;
    color: #ffffe0;
}
.japan_map .pref_list > div{
    box-sizing: border-box;
    width: 50%;
    border: 1px solid #CCC;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
    cursor: pointer;
}

@media screen and (max-width: 480px){
    /* スマホユーザー向けにボタン文字サイズを調整 */
    .japan_map .area_btn{
        font-size: 3vw;
    }
}

/* ブログカードのタイトルとマーク削除 */
.internal-blogcard-footer{
	display: none
}

.blogcard{
	position: relative;
	border: 3px;
}

.internal-blogcard:after{
	position: absolute;
	bottom: 10px;
	right: 20px;
	font-family: 'Font Awesome 5 free';
	content: "続きを読む \f138"; /*表示文字＆アイコン*/
	font-size: 90%;
	font-weight: bold;
	background-color: #3E9CF1;
	color: #FFF; 
	padding: 0.2em 2em;
	border-radius: 2px
}

.blogcard-title{
	font-size: 14px;
}

/************************************
**　ヘッダーメニュー
************************************/



.navi-in>ul li {
line-height: 50px;
height: 50px;
}
.navi-in a{
font-size:10px;
}
#navi .navi-in a:hover {
transform: none!important;
}
.navi-in > ul .sub-menu a {
padding: 0;
}
.sub-menu{
box-shadow: 0px 2px 5px 0 rgba(0,0,0,.26);
}
.sub-menu .caption-wrap {
color:#333;
border-top: dotted #dddddd;
background:#fff;
padding:0 0 0 2em;
margin:0;
}
.navi-in > ul .sub-menu a:hover {
transform: none!important;
}
div#header-container {
box-shadow: none;
}
div.item-label{
font-weight:bold;
}




/* サムネイルテーブルの文字等調整 */

.thunmbanail-table{
	bottom: 0px;
	right: opx;
	font-family: 'Font Awesome 5 free';
	font-size: 15px;
	padding:0px
    mergin;0px
}

.eye-catch{
	padding:0px
    mergin;0px
}


/*タイトルの文字をカスタマイズ タイトルを中央寄せにして、上下余白*/
main h1.entry-title{
  font-weight: 600;
  font-size: 20px;
  color: #7B7B7B;
}
main .article-header.entry-header{
  margin-top: 0em;
  margin-bottom: 0em;
  text-align: left;
}
@media screen and (max-width: 480px){
  main h1.entry-title{
    font-size: 20px;
    padding: .0em .0em;
  }
}

/*記事一覧 サムネイルのタイトルサイズ変更 テーマみるらいとは小さな画像しか表示されないため*/
h2.entry-card-title{
  font-weight: 600;
  font-size: 20px;
  color: #7B7B7B;
}
@media screen and (max-width: 480px){
  h2.entry-card-title{
    font-size: 16px;
    padding: .0em .0em;
  }
}



/*記事一覧 display-posts イメージを表示させて中央配置 アンカーリンクは text-align : initialにて左寄せ */
.display-posts-listing.image-top .listing-item {
	margin-bottom: 32px;
	text-align:center;
}

.display-posts-listing.image-top a {
text-align : initial;
text-decoration:none;
	color: #4d4d4d;
}

.display-posts-listing.image-top .listing-item {
	margin-bottom: 32px;
}

.display-posts-listing.image-top .listing-item .title {
	display: block;
}

.display-posts-listing.image-top .listing-item .excerpt-dash {
	display: none;
}

