@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	共通css

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

/* ================================================================================

	Google Fonts FOUT対策

================================================================================ */

html {
	opacity: 0;
	transition-property: opacity;
	transition-duration: 0.3s;
	transition-timing-function: ease-in;
	transition-delay: 0s;
}
html.wf-active {
	opacity: 1;
}





/* ================================================================================

	サイトスタイル

================================================================================ */
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	 -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	color: #333333;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.7;
	word-wrap: break-word;
	/* ゴシック */ font-family: 'Noto Sans JP',-apple-system, BlinkMacSystemFont, 'Helvetica Neue', YuGothic, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, Arial, 'メイリオ', Meiryo, sans-serif;
	/* 明朝 */ font-family: 'Noto Serif JP','游明朝',YuMincho,'ヒラギノ明朝 ProN W2','Hiragino Mincho ProN','HG明朝B',serif;
}

	/* ドロップアニメーション */
	body::before {
		position: absolute;
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		background-image: url(../img/maru.png),url(../img/maru2.png),url(../img/maru3.png);
		-webkit-animation: drop 25s linear infinite;
		-moz-animation: drop 25s linear infinite;
		animation: drop 25s linear infinite;
		z-index: 100000;
		pointer-events: none;
	}
	/* ドロップアニメーション動きの設定 */
	@keyframes drop {
		0%   { background-position: 0 0, 0 0, 0 0; }
		100% { background-position: 500px 1000px, -400px 800px, 0 600px; }
	}
	@-moz-keyframes drop {
		0%   { background-position: 0 0, 0 0, 0 0; }
		100% { background-position: 500px 1000px, -400px 800px, 0 600px; }
	}
	@-webkit-keyframes drop {
		0%   { background-position: 0 0, 0 0, 0 0; }
		100% { background-position: 500px 1000px, -400px 800px, 0 600px; }
	}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: none;
		text-size-adjust: none;
	}

	/* Elementor：フレックスアイテムを単一行に配置 */
	.elementor-row {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
}

/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		-moz-text-size-adjust: none;
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}


#wrapper {
	position: relative;
	max-width: none;
	/* max-width: 1920px; 固定幅レイアウト時 */
	width: 100%;
	margin: 0 auto;
	min-height: 100vh;
	display: block;
	overflow: hidden;
}

h1{
	margin: 0;
	font-weight: 300;
}
h2, h3, h4 {
	margin: 0;
	font-weight: 700;
}

img {
	vertical-align: bottom;
	image-rendering: -webkit-optimize-contrast;
}
/* Safariハック */
_:lang(x)+_:-webkit-full-screen-document, img {
	image-rendering: auto;
}

li,dt,dd {
	vertical-align: top;
}

iframe {
	vertical-align: bottom;
}


/* リンク：透過アクション付 */
a {
	color: #fb4ba4;
	opacity: 1;
	transition-property: opacity,color,background-color,filter;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
	transition-delay: 0s;
}
a:hover {
	opacity: 0.6;
}





/* ================================================================================

	404.php

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.not-found {
		position: relative;
		width: 1000px;
		margin: 0 auto;
	}
}





/* ================================================================================

	display:none

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	/* SP改行消し */
	.br-pc {
		display: none;
	}
	/* SPコンテンツ消し */
	.pc_none {
		display: none;
	}

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {

	/* PC改行消し */
	.br-sp {
		display: none;
	}
	/* PCコンテンツ消し */
	.sp_none {
		display: none;
	}

}





/* ================================================================================

	pointer-events: none;

================================================================================ */

/* FAX */
.fax_num {
	pointer-events: none;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

	.pointer-events {
		pointer-events: none;
	}

}





/* ================================================================================

	フロート回り込み解除 clearfix

================================================================================ */

.clearfix:after {
	display: block;
	clear: both;
	height: 0px;
	line-height: 0px;
	visibility: hidden;
	content: "";
	overflow: hidden;
	float: none;
}
.clearfix {
	display: block; /* for IE8 */
}





/* ================================================================================

	エディター共通設定

================================================================================ */

p + * {
	margin-top: 0.8em;
}
p:not(:first-child) {
	margin-top: 0.8em;
}

strong,b {
	font-weight: 700;
}
big {
	font-size: larger;
}
small {
	font-size: smaller;
}
em {
	font-style: italic;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {

}



/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	body {
		font-size: 3.5vw;
	}

	/* youtube siteorigin */
	.youtube-player {
		width: 100%;
		height: 36.5vw;
		margin-top: 4vw;
	}

	/* エディターで画像の下に隙間ができるの解除 */
	img + br {
		display: none;
	}
}





/* ================================================================================

	ヘッダー

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {

	header.bs_header {
		position: relative;
	}
	
	#pc_nav.scroll,
	#h_tel.scroll {
		top: 1.5vw;
	}
	#h_keywords.scroll {
		top: 7.5vw;
	}
	#pc_nav,
	#h_tel,
	#h_keywords {
		transition-property: top;
		transition-duration: 0.2s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
　　　　z-index:9998;
	}


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		position: absolute;
		z-index: 1;
		width: 25vw;
		left: 50%;
		margin-left: -12.5vw;
		top: 3vw;
	}
	.h_logo img {
		width: 100%;
	}
	
	
	
	/* お問い合わせ
	----------------------------------------------- */
	body.customize-support #h_contact {
		margin-top: 32px;
	}
	#h_contact {
		position: fixed;
		z-index: 2;
		left: 2vw;
		top: -0.2vw;
	}
	#h_contact ul {
		font-size: 0;
	}
	#h_contact ul li {
		display: inline-block;
		margin-left: 1vw;
	}
	#h_contact ul li:first-of-type {
		margin-left: 0;
	}
	#h_contact ul li:first-of-type a {
		position: relative;
		color: #ffffff;
		font-weight: 700;
		font-size: 1.1vw;
		background-color: #ff73b9;
		border-radius: 0 0 1vw 1vw;
		padding: 0.8vw 1.25vw 0.8vw 4.8vw;
		display: block;
		border: solid 2px #ffffff;
	}
	#h_contact ul li:first-of-type a:before {
		content: '';
		position: absolute;
		background: url(../img/h_mail.png) center top / contain no-repeat;
		width: 2.2135vw;
		height: 1.6665vw;
		top: 50%;
		left: 1.47vw;
		margin-top: -0.7vw;
	}
	
	#h_contact ul li:last-of-type a {
		position: relative;
		color: #ffffff;
		font-weight: 700;
		font-size: 1.1vw;
		background-color: #3fd172;
		border-radius: 0 0 1vw 1vw;
		padding: 0.8vw 1.25vw 0.8vw 4.5vw;
		display: block;
		border: solid 2px #ffffff;
	}
	#h_contact ul li:last-of-type a:before {
		content: '';
		position: absolute;
		background: url(../img/h_line.png) center top / contain no-repeat;
		width: 2.3vw;
		height: 2.35vw;
		top: 50%;
		left: 1.38vw;
		margin-top: -0.9vw;
	}
	
	
	body.customize-support #h_tel {
		margin-top: 32px;
	}
	#h_tel {
		position: fixed;
		z-index: 2;
		text-align: center;
		right: 8vw;
		top: 3vw;
		pointer-events: none;
	}
	#h_tel a {
		position: relative;
		font-weight: 400;
		font-size: 2.8vw;
		color: #f73195;
		display: inline-block;
		padding-left: 2.7vw;
		pointer-events: none;
		text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
	}
	#h_tel span {
		font-size: 1vw;
		font-weight: 700;
		display: block;
		margin-bottom: -1.3vw;
		margin-left: -0.3vw;
	}
	#h_tel a:before {
		content: 'tel:';
		font-size: 1.6vw;
		font-weight: 400;
		color: #f73195;
		bottom: 0.6vw;
		left: 0;
		position: absolute;
	}
	
	
	/* 用語集
	----------------------------------------------- */
	body.customize-support #h_keywords {
		margin-top: 32px;
	}
	
	#h_keywords {
		z-index: 2;
		right: 0.9vw;
		top: 9vw;
		width: 6.5vw;
		position: fixed;
	}
	#h_keywords img {
		width: 100%;
	}
	
	
	/* SNSボタン
	----------------------------------------------- */
	body.customize-support #h_sns {
		margin-top: 32px;
	}
	
	#h_sns {
		z-index: 2;
		left: 2vw;
		top: 10vw;
		width: 4.5vw;
		position: fixed;
	}
	#h_sns img {
		width: 100%;
	}
	#h_sns ul li {
		margin-top: 1vw;
	}
	#h_sns ul li:first-of-type {
		margin-top: 0;
	}


	/* H1
	----------------------------------------------- */
	.sp_h1 {
		display: none;
	}
	.pc_h1 {
		position: absolute;
		top: 0.9vw;
		right: 2.4vw;
		text-align: right;
		z-index: 1;
	}
	.pc_h1 h1 {
		font-size: 0.9vw;
		line-height: 1;
		color: #007eff;
		font-weight: 700;
		text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
	}

	


}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {

	header.bs_header {
		position: relative;
	}


	/* ロゴ
	----------------------------------------------- */
	.h_logo {
		position: absolute;
		z-index: 1;
		width: 45vw;
		left: 50%;
		margin-left: -22.5vw;
		top: 10vw;
	}
	.h_logo img {
		width: 100%;
	}


	/* 用語集
	----------------------------------------------- */
	body.customize-support #h_keywords {
		margin-top: 32px;
	}
	
	#h_keywords {
		z-index: 2;
		right: 0;
		top: 20vw;
		width: 22vw;
		position: fixed;
	}
	#h_keywords img {
		width: 100%;
	}
	
	
	.info_box {
		padding: 4vw 4vw 2vw;
		background-color: #f73195;
	}
	
	/* H1
	----------------------------------------------- */
	.pc_h1 {
		display: none;
	}
	.sp_h1 {
		position: relative;
	}
	.sp_h1 h1 {
		font-size: 3.2vw;
		line-height: 1.5;
		color: #f73195;
		text-align: center;
		padding: 2.7vw 3vw 2vw;
		font-weight: 700;
	}
	.contact_top {
		width:100%!important;
	}
	.contact_top ul li:not(:first-child) {
    margin-top: 0vw!important;
}
	
	
	/* 電話
	------------------------------------------- */
	.h_tel {
		text-align: center;
		margin-top: 1vw;
	}
	.h_tel a {
		position: relative;
		font-weight: 700;
		font-size: 10vw;
		color: #ffffff;
		display: inline-block;
		padding-left: 11vw;
	}
	.h_tel span {
		font-size: 3.5vw;
		font-weight: 700;
		display: block;
		margin-bottom: -3vw;
	}
	.h_tel a:before {
		content: 'tel:';
		font-size: 6vw;
		font-weight: 400;
		color: #ffffff;
		bottom: 2vw;
		left: 0;
		position: absolute;
	}


	/* グローバルナビゲーション
	------------------------------------------- */
	.navi_pc {
		display: none;
	}

}

/* SP 追尾ボタン */
	.sp_reserve {
		width: 100%;
		position: fixed;
		bottom: 0;
		text-align: center;
		background-color: #f754a7;
		padding: 18px 0 20px;
		opacity: 0.98
		
	}



	.sp_reserve a{
		display: flex;
		display: block;
		color: #ffffff;
		font-size: 3.5vw;
		letter-spacing: 0.2em;
	}



/* ================================================================================

	フッター

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	footer.bs_footer {
		position: relative;
		background-color: #ffffff;
	}

	.f_wrap {
		position: relative;
		padding: 4vw 0 0;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
		width: 18.3vw;
		margin: 0 auto;
	}
	.f_logo img {
		width: 100%;
	}
	
	
	/* 電話
	------------------------------------------- */
	.f_tel {
		text-align: center;
		margin-top: 0.7vw;
	}
	.f_tel a {
		position: relative;
		font-weight: 400;
		font-size: 3.125vw;
		color: #f73195;
		display: inline-block;
		padding-left: 3.2vw;
		pointer-events: none;
	}
	.f_tel span {
		font-size: 1.041vw;
		font-weight: 500;
		display: block;
		margin-bottom: -1.35vw;
	}
	.f_tel a:before {
		content: 'tel:';
		font-size: 1.8229vw;
		font-weight: 400;
		color: #f73195;
		bottom: 0.5vw;
		left: 0;
		position: absolute;
	}
	
	
	/* SNS
	------------------------------------------- */
	.f_sns ul {
		text-align: center;
		font-size: 0;
	}
	.f_sns ul li {
		display: inline-block;
		margin: 0 -0.4vw;
	}
	.f_sns ul li img {
		width: 4.4vw;
	}


	/* フッターリンク
	------------------------------------------- */
	.f_navi {
		text-align: center;
		font-size: 0;
		margin-top: 1.6vw;
	}
	.f_navi > ul {
		display: inline-block;
		text-align: left;
		vertical-align: top;
		margin-right: 2.7vw;
	}
	.f_navi > ul:last-of-type {
		margin-right: 0;
	}
	.f_navi > ul > li {
		position: relative;
		vertical-align: top;
		font-size: 1.041vw;
		font-weight: 500;
		line-height: 1.1;
		color: #f73195;
		margin-top: 1.4vw;
	}
	.f_navi > ul > li:first-of-type {
		margin-top: 0;
	}
	.f_navi > ul > li > ul {
		line-height: 1.6;
	}

	.f_navi > ul > li a {
		color: #f73195;
	}


	/* シェアボタン */
	footer .addtoany_shortcode > div {
		display: none;
	}

	/* 商標登録 */
	.patent_text {
		text-align: center;
		font-size: 0.8vw;
		margin: 2vw 0 0;
		color: #f73195;
		font-weight: 500;
	}

	/* コピーライト */
	.f_copy {
		margin-top: 3vw;
		background-color: #f73195;
		padding: 0.5vw 0;
	}
	.f_copy p {
		font-size: 0.8333vw;
		text-align: center;
		color: #ffffff;
		font-weight: 500;
	}
	
	

	

}



/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	footer.bs_footer {
		position: relative;
		background-color: #ffffff;
	}

	.f_wrap {
		position: relative;
		padding: 12vw 0 0;
		margin: 0 0 15.7vw;
	}


	/* ロゴ
	------------------------------------------- */
	.f_logo {
		width: 50vw;
		margin: 0 auto;
	}
	.f_logo img {
		width: 100%;
	}
	
	
	/* 電話
	------------------------------------------- */
	.f_tel {
		text-align: center;
		margin-top: 3vw;
	}
	.f_tel a {
		position: relative;
		font-weight: 700;
		font-size: 9vw;
		color: #f73195;
		display: inline-block;
		padding-left: 9vw;
	}
	.f_tel span {
		font-size: 3.2vw;
		font-weight: 700;
		display: block;
		margin-bottom: -3vw;
	}
	.f_tel a:before {
		content: 'tel:';
		font-size: 5vw;
		font-weight: 400;
		color: #f73195;
		bottom: 2vw;
		left: 0;
		position: absolute;
	}
	
	
	/* SNS
	------------------------------------------- */
	.f_sns ul {
		text-align: center;
		font-size: 0;
	}
	.f_sns ul li {
		display: inline-block;
	}
	.f_sns ul li:nth-child(2) {
		margin: 0 -0.8vw;
	}
	.f_sns ul li img {
		width: 14vw;
	}




	/* シェアボタン */
	footer .addtoany_shortcode > div {
		text-align: center;
		display: block;
	}
	
	/* 商標登録 */
	.patent_text {
		text-align: center;
		font-size: 2.8vw;
		margin: 6vw 0 0;
		color: #f73195;
		font-weight: 500;
	}


	/* コピーライト */
	.f_copy {
		margin-top: 8vw;
		background-color: #f73195;
		padding: 2vw 0;
	}
	.f_copy p {
		font-size: 3vw;
		text-align: center;
		color: #ffffff;
		font-weight: 500;
	}
	

}





/* ================================================================================

	ページトップボタン

================================================================================ */

/* PC設定
------------------------------------------- */
@media (min-width: 768px) {
	#page_top {
		position: fixed;
		z-index: 9996;
		bottom: 0px;
		right: 10px;
		opacity: 0;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	/* スクロールして出現後 */
	#page_top.page_top_scroll {
		bottom: 10px;
		opacity: 1;
	}

	#page_top a {
		display: block;
		background: url(../img/page_top.png) center top / contain no-repeat;
		width: 5vw;
		height: 5vw;
		text-indent: -9999px;
	}
}

/* SP設定
------------------------------------------- */
@media (max-width: 767px) {
	#page_top {
		position: fixed;
		z-index: 9996;
		bottom: 0vw;
		right: -1vw;
		opacity: 0;
		transition-property: opacity,bottom;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		transition-delay: 0s;
	}
	/* スクロールして出現後 */
	#page_top.page_top_scroll {
		bottom: 16vw;
		right: -1vw;
		opacity: 1;
	}

	#page_top a {
		display: block;
		background: url(../img/page_top.png) center top / contain no-repeat;
		width: 14vw;
		height: 14vw;
		text-indent: -9999px;
	}
}





/* ================================================================================

	パンくずリスト

================================================================================ */

/* 背景色 */
#breadcrumb {
	background-color: transparent;
}


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	#breadcrumb {
		position: absolute;
		max-width: none;
		width: 100%;
		padding: 16px 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		max-width: 1020px;
		width: 100%;
		padding: 0 10px;
		margin: 0 auto;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 14px;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	#breadcrumb {
		position: absolute;
		width: 100%;
		padding: 4vw 0;
		z-index: 1;
	}

	#breadcrumb > ul {
		position: relative;
		width: 100%;
		padding: 0 4vw;
		font-size: 0;
	}
	#breadcrumb > ul > li {
		display: inline-block;
		font-size: 3.5vw;
	}
	#breadcrumb > ul > li + li:before {
		padding: 0 0.6em 0 0.7em;
		content: '>';
	}
}





/* ================================================================================

	Wp Lightbox Bank プラグイン

================================================================================ */
#lightGallery-outer {
	background-color: rgba(0,0,0,0.8) !important;
}





/* ================================================================================

	Elementor Lightbox フッター非表示

================================================================================ */
.elementor-slideshow__footer {
	display: none;
}





/* ================================================================================

	Addtoanyボタン

================================================================================ */

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	.addtoany_shortcode {
		margin: 14px -4px 0;
	}
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	.f_share {
		margin-top: 4vw;
		font-weight: 600;
		text-align: center;
		color: #f73195;
		text-shadow: 0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff,0 0 5px #fff;
	}
	.addtoany_shortcode {
		margin: 2vw -4px 0;
	}
}


/* 翻訳プラグインバグ対策 */
.addtoany_shortcode font {
	display: none;
}





/* ================================================================================

	共通スクロールバーデザイン

================================================================================ */

/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
html {
	scrollbar-color: #fda1bb #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
::-webkit-scrollbar-thumb {
	background-color: #fda1bb;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #fda1bb;
}

/* スクロールバーのトラック */
::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}


/* 幅1366px以上ディスプレイ用 スクロールバーの幅
----------------------------------------------- */
@media (min-width: 1366px) {
	html {
		scrollbar-width: auto; /* auto ブラウザ準拠  thin 狭い */
	}
	::-webkit-scrollbar {
		width: 17px;
	}
}





/* ================================================================================

	指定クラスのスクロールバーデザイン　.scrollbar

================================================================================ */

/* スクロールバーの設定 */
.scrollbar {
	overflow-y: auto;
}


/* 新構文 ※2022現在 Firefoxのみ
------------------------------------------- */
/* スクロールバーのカラー*/
.scrollbar {
	scrollbar-color: #fda1bb #f1f1f1; /* サム(つまみ)カラー トラックカラー */
	scrollbar-width: thin; /* auto ブラウザ準拠  thin 狭い */
}


/* 旧構文
------------------------------------------- */
/* スクロールバーの幅 */
.scrollbar::-webkit-scrollbar {
	width: 8px;
}

/* スクロールバーのサム(つまみ) */
.scrollbar::-webkit-scrollbar-thumb {
	background-color: #fda1bb;
}
.scrollbar::-webkit-scrollbar-thumb:hover {
	background-color: #fda1bb;
}

/* スクロールバーのトラック */
.scrollbar::-webkit-scrollbar-track {
	background-color: #f1f1f1;
}





/* ================================================================================

	IEハック

================================================================================ */

/* IE10以上 */
@media all and (min-width: 768px) and (-ms-high-contrast: none) {
	.elementor-image a {
		display: inline !important;
	}
}



/* reCAPTCHA表示隠し */
.grecaptcha-badge { visibility: hidden; }