@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.3
*/

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


/*ブログカードのカスタマイズ*/
.internal-blogcard-footer{/*ブログカードのURLを消す*/
	display: none
}
.blogcard{
	position: relative
}
.internal-blogcard:after{/*続きを読むボタンの追加*/
	position: absolute;
	bottom: 10px;
	right: 20px;
	font-family: 'Font Awesome 5 free';
	content: '続きを読む \f101';
	font-size: 90%;
	font-weight: bold;
	background-color: #3E9CF1;
	color: #FFF; 
	padding: 0.2em 2em;
	border-radius: 2px
}


/*reCaptchaバッジの非表示*/
.grecaptcha-badge { visibility: hidden; }


/*ヘッダーメニューの整形*/
.headmenues{
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.headmenues li{
    display: flex;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
	white-space:pre;/*リストを改行させない*/
}
.headmenues li a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 10px;
}
@media(max-width:500px){
    .headmenues{
        /*追加*/flex-wrap: wrap;
    }
    .headmenues li{
        /*追加*/width: 50%;
    }
}


/*ヘッダーを固定*/
.header-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
z-index:1000;/*メニューが最前面に来るように*/
}

/*固定メニューの時、hoverの時、子メニューを表示させる*/
.fixed-header .navi-in > ul li:hover > ul {
display: block;
}

/*テーブルクラス*/
.tb01 {
	width: 100%;
	border-top: 1px solid #c8c8c8;
	border-left: 1px solid #c8c8c8;
}
.tb01 th,
.tb01 td {
	border-bottom: 1px solid #c8c8c8;
	border-right: 1px solid #c8c8c8;
	padding: 10px 20px;
	text-align: left;
  vertical-align:middle;
   font-size:14px;
   background:#fff;
}
.tb01 th {
	padding: 18px 20px;
	white-space: nowrap;
	width: 25%;
  background:#666666;
  color:#fff;
  font-weight:bold;
  position:relative;
}
.tb01 th span {
  position: absolute;
  right: 7px;
  top: 21px;
  font-weight: normal;
  background: #e50800;
  text-align: center;
  padding: 3px 4px 5px;
  line-height: 1;
}
.tb01.txtl th,
.tb01.txtl td {
	text-align: left;
	padding: 5px 10px;
}
input,
select {
	border:0;
	padding:10px;
	font-size:1.3em;
	font-family:Arial, sans-serif;
	color:#333;
	border:solid 1px #ccc;
	margin:0;
	width:100%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
	-webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
	box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
	box-sizing: border-box;
}
textarea{
	width:100%;
	box-sizing: border-box;
}
.formBtn {
	border:solid 1px #ccc;
	padding:15px 30px;
	margin:20px 0 20px;
	font-size:1.2em;
	text-transform:uppercase;
	font-weight:bold;
	color:#333;
	cursor:pointer;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	width: auto;
	display: inline-block;
  background:#f15b1c;
  color:#fff;
}
.icoSquare {
	position: relative;
    padding-left: 1em;
	line-height: normal;
}
.icoSquare:before {
    content: '■';
    position: absolute;
    left: 0;
    top: -.3em;
	font-size: 1.4em;
}


 /* フォーム買い取り */
.formBox{
  background:#feeee8;
  padding:20px 20px 0;
}


/*ヘッダーと本文の隙間を小さくする*/
.entry-content {
  margin-top: 0;
}
.date-tags {
  margin-bottom: 0;
}
.main {
    padding: 0px 29px;
}


/*ヘッダーのスタイル*/
.header-in {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header-in:after {
  content: none;
}
.logo-text {
  padding: 10px 0;
}
.my-header {
  align-items: center;
  display: flex;
  gap: 10px;
}
.my-header a {
  color: #333;
  text-decoration: none;
}
.my-box > span {
  display: block;
  font-size: 12px;
}
.my-box .my-box2 {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
}
.my-box2 {
	white-space:pre;/*電話番号を改行させない*/
}
.my-box3 {
 	font-size: clamp(16px, 2vw, 24px);
 	font-weight: bold;
	color:#000000;
}
.my-banner a {
  background-color: #333;
  border-radius: 15px;
  color: #fff;
  font-size: clamp(10px, 2vw, 16px);
  padding: 10px;
}
@media (width <=1023px) {
	.header-in {
	flex-direction: column;
  }
}
@media (width > 768px) {
	a[href*="tel:"] {
	pointer-events: none;
  }
}


/*固定ページのみ投稿日非表示*/
.page .date-tags {
display: none;
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
	
 /* ヘッダーメニューと連絡先を非表示にする */
		.my-header {
	display: none;
	}
	
/* metasliderをモバイルで非表示にする */
		#metaslider_960{
		display: none;
	}
}
/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

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