/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 09 2026 | 10:52:14 */
/*==========================================================
	新規登録
==========================================================*/
#ship-to-different-address label{
	padding-left:10px;
}


/*==========================================================
	テーブル
==========================================================*/
table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #dcdcdc;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
  line-height: 1.7; /* ← 行間を広げる */
}
.tb01 th {
  width: 30%;
  background: #f0f0f0;
  text-align: center;
}
.tb01 td {
  text-align: left;
}

.tb_bold{
  font-weight: bold;
}

/* スマホ：2列 → 1列（縦並び） */
@media screen and (max-width: 640px) {
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  /* 行の区切り線はtr側につける（見た目が崩れにくい） */
  .tb01 tr {
    border-bottom: solid 1px #dcdcdc;
  }
}

/*==========================================================
	reCAPTCHAのバッジの非表示
==========================================================*/
.grecaptcha-badge { visibility: hidden; }

/*==========================================================
	お問い合わせフォームの入力
==========================================================*/
#cf-tbl{
width: 100%;
}

#cf-tbl table{
width: 100%;
border-collapse: collapse;
border: solid #CCC;
border-width: 1px;
color: #444;
}
#cf-tbl table tr th,
#cf-tbl table tr td{
padding: 0.5em;
text-align: left;
vertical-align: top;
border: solid #CCC;
border-width: 1px;
vertical-align: middle;
}
#cf-tbl table tr th{
width: 30%;
background: #eee;
}

.check_send{
    margin-top:20px;
	padding-left:10px;
	
}

/*-- チェックボックスボックス --*/
input[type=checkbox] {
	transform: scale(1.5);
	margin: 0 6px 0 0;
}

@media screen and (max-width:768px){
#cf-tbl{
width: 100%;
}

#cf-tbl table,
#cf-tbl table tbody,
#cf-tbl table tr,
#cf-tbl table tr th,
#cf-tbl table tr td{
display: block;
}

#cf-tbl table{
width: 100%;
border-width: 0 0 1px 0;
}

#cf-tbl table tr th,
#cf-tbl table tr td{
width: 100%;
padding: 3% 5%;
}

#cf-tbl table tr td{
border-width: 0px 1px 0px 1px;
}
}
/*「必須」文字デザイン*/
.form-required{
font-size:.8em;
padding: 5px;
background: #DD0000;
color: #fff;
border-radius: 3px;
margin-right: 5px;
}

/*「任意」文字デザイン*/
.optional{
font-size:.8em;
padding: 5px;
background: #000080;
color: #fff;
border-radius: 3px;
margin-right: 5px;
}

/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
	width: 100%;
	padding: 8px 15px;
	margin-right: 10px;
	margin-top: 10px;
	border: 1px solid #d0d5d8;
	border-radius: 3px;
	background-color: #eff1f5;
}
textarea.wpcf7-form-control.wpcf7-textarea {
	height: 200px;
}

/* 「送信する」ボタン */
input.wpcf7-submit {
    display: block;
    padding: 5px;
    width: 80%;
    background: #DD0000;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    border-radius: 0px;
    margin: 15px auto 0
}
@media screen and (max-width:768px){
input.wpcf7-submit {
width: 100%;
}
}

input.wpcf7-submit:hover {
	box-shadow: 0 15px 30px -5px rgba(0,0,0,.15), 0 0 5px rgba(0,0,0,.1);
	transform: translateY(-4px);
	opacity:0.7;
}
/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
	color: red;
	font-weight: 600;
}