/*
Theme Name: AFFINGER Child
Template: affinger
Description: AFFINGER6 対応
Version: 20240601
*/
/* トップページのアイキャッチを非表示にする*/
.front-page .st-eyecatch, .front-page .st-eyecatch-under {
display:none;
}
/* リンクに下線をつけない */
a {
	text-decoration:none; 
}
/* マイボックスタイトルサイズ */
.st-mybox-title{
	font-size: 16px;
}
/* sp サイト下ロゴ削除 */
@media screen and (max-width: 959px) {
footer .footerlogo img{
 display:none;!important
	}
}
/* カバーブロックiOS対応 */
.wp-block-cover.has-parallax{
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
.wp-block-cover__image-background.has-parallax{
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
/* リチャプチャロゴ消去 */
.grecaptcha-badge { 
	visibility: hidden; 
}
/*デフォルトのマウスカーソルを非表示にする*/
html,body,a {
  cursor: none;
}
#cursor {
	position: fixed;
	top: -4px;
	left: -4px;
	width: 8px;
	height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
   transition: width .3s, height .3s, top .3s, left .3s;
	transform: translate(0, 0);
	pointer-events: none;
}
/*aタグにホバーした時に見た目変化*/
#cursor.cursor--hover {
  top: -30px;
  left: -30px;
  width: 60px;
  height: 60px;
  background: rgba(230, 180, 34, 0.75);
}
@media screen and (max-width:768px){
    #cursor {
        display: none;
    }
}
/* スクロールバーカスタマイズ */
::-webkit-scrollbar{
	width: 10px;
}
::-webkit-scrollbar-track{
	background: #000;
	border-left: solid 1px #000;
}
::-webkit-scrollbar-thumb{
	background: #91b2d2;
	border-radius: 10px;
	box-shadow: inset 0 0 0 2px 688fb4;
}

/* ===============================
   Google風 検索ボックス（確実版）
================================ */

/* 全体 */
#searchform {
  max-width: 640px;
  margin: 40px auto;
  position: relative;
}

/* 入力欄 */
#searchform input[type="text"] {
  width: 100%;
  height: 54px;
  padding: 0 50px 0 24px;
  font-size: 16px;
  border-radius: 999px !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  outline: none;
  transition: all .25s ease;
  box-shadow: 0 1px 6px rgba(32,33,36,.15);
}

/* ホバー */
#searchform input[type="text"]:hover {
  box-shadow: 0 2px 8px rgba(32,33,36,.25);
}

/* フォーカス */
#searchform input[type="text"]:focus {
  border-color: transparent !important;
  box-shadow: 0 2px 10px rgba(32,33,36,.35);
}

/* 検索ボタン（シンプル版） */
#searchform input[type="submit"] {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: none !important;
  background: transparent !important;
  cursor: pointer;
  opacity: .6;
}

/* スマホ */
@media (max-width:768px){
  #searchform input[type="text"] {
    height: 48px;
    font-size: 15px;
  }
}
/* 外側の四角枠を消す */
#searchform,
.searchform,
.search-custom-d,
.wp-block-search,
.wp-block-search__inside-wrapper {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
#searchform form {
  border: none !important;
}
#searchform input[type="text"] {
  background: #f8f9fa !important;
}