.thumbnail-box {
width:100%;
margin: 0 auto;
}

/* 金額部分の装飾 */
.center {
 text-align:center;
}

.fee {
  font-size: clamp(18px, 4vw, 30px)  !important;
  font-weight:bold;
  display: inline;
  background: linear-gradient(transparent 60%, #ffff66 60%);
}
.yellow {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}


/* リンクボタンの装飾 */
.two-buttons {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  width: 100%;
  box-sizing: border-box;
}

.two-buttons .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 70px;
  padding: 0 16px;
  border-radius: 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 色 */
.tel-btn {
  background: linear-gradient(135deg, #1e90ff, #0074d9);
}
.form-btn {
  background: linear-gradient(135deg, #cc0000, #a00000);
}

.btn:hover {
  opacity: 0.6;
  transform: translateY(-3px);
}

/* スマホ */
@media (max-width: 600px) {
  .two-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .two-buttons .btn {
    height: auto;
    padding: 20px 16px;
    width: 100%;   /* ← これを追加 */
    box-sizing: border-box; /* ← 念のため */
  }
}




/*　メールフォーム全体　*/
#cf7-area {
width:100%;
margin: 0 auto;
}

.cf7-item {
display: flex;
align-items: flex-start;
justify-content: flex-start;
margin: 0 0 1.75em;
}

.cf7-q {
width: 30%;
margin: 0 0 0 10px;
}

.cf7-a {
width: 60%;
}



/*　必須　*/

.required {
font-size:.8em;
padding: 4px 6px;
background: #eb2a2a;
color: #ffffff;
margin-left: 10px;
display:inline-block;
}


/*　送信ボタン　*/

.cf7-submit {
width: 40%;
margin: 0 auto;
text-align: center;
}

#cf7-area input[type="submit"]
{
width: 100%;
background-color: #191970;
color: #ffffff;
border-radius: 5px;
font-size: 1.2em;
padding: 1em 10px;
}

#cf7-area input[type="submit"]:hover
{
background-color:#ffffff;
border: 2px solid #191970;
color:#191970;
}


/* 各項目共通 */
#cf7-area label{
font-weight:bold;
}

#cf7-area input[type="text"],#cf7-area input[type="email"],#cf7-area input[type="tel"],#cf7-area textarea {
background: #F0F8FF;
height:40px;
width:100%;
font-size: 1.0em;
margin-left:10px;
}

#cf7-area input[type="text"]:focus,#cf7-area input[type="email"]:focus,#cf7-area input[type="tel"]:focus,#cf7-area textarea:focus {
background: #FFE4E1;
border: 2px solid #FF1493;
outline: 0;
}

#cf7-area input[type="checkbox"], #cf7-area input[type="radio"]{
appearance: auto;
}

#cf7-area .wpcf7-list-item {
display: block;
}

#cf7-area textarea{
height: 200px;
padding: 0.625em 0.4375em;
}

@media screen and (max-width:768px){
.cf7-item {
display: block;
}

#cf7-area label{
display: block;
margin-bottom: 10px;
}

.cf7-q {
width: 100%;
margin: 0;
}

.cf7-a {
width: 100%;
}

#cf7-area input[type=”text”], #cf7-area input[type=”email”], #cf7-area input[type=”tel”], #cf7-area textarea{
margin-left: 0;
}

.cf7-submit{
width: 90%;
}
}