@charset "UTF-8";


/******** フォームカスタマイズ ********/
.row {
	align-items: center;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.col-form-label {
	font-weight: bold;
}
.must {
	color: red;
	margin-left: 0.3rem;
}
input::placeholder{
	font-size: 12px;
}
.intro-attention{
	margin: 24px auto;
}
.intro-attention h2{
    font-family: 'Noto Serif JP', serif!important;
	margin-bottom: 20px;
	text-align: center;
}
input,textarea{
	border: solid 1px #777;
	border-radius: 3px;
}
input,textarea{
	font-size: 16px;/*iOSで入力時枠が拡大されるのを防ぐ*/
}
.w50{
	width: 100%;
}
.w100{
	width: 100%;
}

.copy {
	margin-top: 15px!important;
    font-size: 0.8rem!important;
    color: #666;
    text-align: center!important;
}
.copy a {
    color: #007bff!important;
    text-decoration: none;
    background-color: transparent;
}

.btn{
    font-size: 14px;
    width: 150px;
    padding: 8px 4px;
    margin: 28px auto 36px auto;
    display: block;
    box-sizing: border-box;
    border: solid 1px #000;
    border-radius: 2px;
    background: #000;
    text-align: center;
    text-decoration: none;
    color: #fff;
    position: relative;
    transition: all 0.5s 
	ease-out;
}
.thanks_img {
	text-align: center;
	margin-bottom: 25px;
}
.thanks_img img {
	width: 85%!important;
}
@media screen and (min-width:784px){
	.w50{
		width: 50%;
	}
	input::placeholder{
		font-size: 16px;
	}
	.thanks_img img {
		width: 40%!important;
	}
	.thanks_text {
		text-align: center;
	}
}


/****** container-shopTop-link ******/
.container-shopTop-link{
	text-align: center;
	margin-bottom: 20px;
}
.container-shopTop-link a.btn-shopTop{
	display: block;
	width: 200px;
	margin: auto;
	color: #666;
	font-size: 13px;
	position: relative;
}
.container-shopTop-link a.btn-shopTop::before{
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #666;
  border-left: solid 2px #666;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: -0.8rem;
  margin-top: -2px;
}



/* デフォルト（スマホ向け）のスタイル */
.radio_btn label {
  display: block; /* 行全体をタップ可能に */
  padding: 12px 15px; /* 上下左右に余白を作ってヒットエリアを拡大 */
  margin-bottom: 8px;
  background-color: #f9f9f9; /* 軽く背景色をつけてボタン感を出します */
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* タップした時の反応（フィードバック） */
.form-group .col-sm-9 > div label:active {
  background-color: #eee;
}

/* ラジオボタンと文字の間隔 */
.form-group .col-sm-9 > div label input[type="radio"] {
  margin-right: 10px;
  transform: scale(1.2); /* ラジオボタン自体も少し大きく */
  vertical-align: middle;
}

/* PC向け設定（画面幅が広いとき） */
@media screen and (min-width: 768px) {
  .form-group screen .col-sm-9 > div label {
    display: inline-block; /* 横並びに戻す、もしくは背景を消すなど調整 */
    background-color: transparent;
    border: none;
    padding: 5px 10px;
    margin-bottom: 0;
  }
  
  .form-group .col-sm-9 > div {
    display: inline-block;
    margin-right: 15px;
  }
}