@charset "utf-8";

/* ---------------------------------------------------------------------------------------*/
/* 日本国内のお問い合わせ先 （2024.4.3） */
/* ---------------------------------------------------------------------------------------*/
#mainSec04{
    max-width: 960px;
    margin: 0 auto 20rem;
    xborder-bottom: 1px solid #000;
}

.distributor H2{
font-size:1.25rem; /* 20px */
font-weight: 500;
line-height: 1;
margin-bottom: 5px;
text-align: left;
}

.distributor p{font-size:1.1875rem; /* 19px */}




/* お問い合わせフォーム */
#mainSec05{
    max-width: 960px;
    margin: 0 auto 2rem;
}


.tbl_form01 {
font-size: 1.125rem;
border-collapse: collapse;
text-align: left;
line-height: 1.5;
margin-bottom: 2rem;
width: 100%;
}


.tbl_form01 th {
	width: 40%;
	text-align: center;
	padding: 1rem 0.5rem;
	font-weight: bold;
	vertical-align: middle;
	border-bottom: 1px dotted #999;
}

.tbl_form01 td {
width: 60%;
padding: 1rem;
vertical-align: middle;
border-bottom: 1px dotted #999;
}

textarea{font-size:  1.125rem;
width: 100% !important; 
height: 8rem !important;
border: 1px dotted #999;
background: #fafafa !important;
color: #000;}

input[type="text"]{
font-size:  1.125rem;
width: 60%;
height: 2rem;
border: 1px dotted #999;
background: #fafafa!important;
color: #000;}


 /* 送信ボタンをゆっくり透過 */
form xinput[type="image"]:hover{
opacity: 0.7;
filter: alpha(opacity=70);
-moz-opacity: 0.7;
-webkit-transition: 0.3s ease-in-out; /* 以下、hover時ゆっくり透過 */
-moz-transition: 0.3s ease-in-out;
-o-transition: 0.3s ease-in-out;
transition: 0.3s ease-in-out;
text-decoration: none;
}

.small{font-size:0.8125rem; /* 13px */ }


.select {
border: 1px dotted #999;
  background: #fafafa;
  height: 40px;
  max-width: 360px;
  xborder-radius: 5px;
  position: relative;
  z-index: 1;
}

.select::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #666;
  border-right: 2px solid #666;
  z-index: -1;
}

select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #666;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}






/* ラジオボタンを装飾 */
label ~ label {
  margin-left: 15px;
}

input[type=radio] {
  margin-right: 8px;
}

/* ラジオボタン */
.radio-btns input[type=radio] {
  display: none;
}

.radio-btns label {
  position: relative;
  padding-left: 25px;
}

.radio-btns input[type=radio] + label::before {
  position: absolute;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  left: 0;
  top: 5px; /* 位置調整 */
}

.radio-btns input[type=radio] + label::after {
  position: absolute;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #35476A;
  left: 2px;
  top: 7px; /* 位置調整 */
  opacity: 0;
  transition: .3s;
}

.radio-btns input[type=radio]:checked + label::after {
 opacity: 1;
}
