@charset "UTF-8";
/* CSS Document */



.contact_text {
    text-align: center;
    line-height: 1.8;
    margin-bottom: 1rem;
}





/*ーーーーーーーーーーーーー入力フォームーーーーーーーーーーーーー*/

#mail_form dl dt,
.radio-buttons label {
  font-size: 1rem;
}

form#mail_form dl dd {
  width: 65%;
}




form#mail_form dl dt span .pc {
  display: inline;
  align-items: center;
}

form#mail_form dl dt span .sp {
  display: none;
}





form#mail_form input#phone {
  width: 45%;
}

form#mail_form input#mail_address {
  width: 90%;
}

/*ーーーーーーーーーーーーー入力フォームーーーーーーーーーーーーー*/







/*ーーーーーーーーーーーーーラジオボタンーーーーーーーーーーーーー*/

input[type="radio"] {
	/*display: none;　リセットCSSが打ち消していたらしくこの部分を非適用にする*/
    all: revert; /* デフォルトのブラウザスタイルを再適用 */
}

  /* ラベルのスタイル */
  .radio {
	position: relative;
	display: inline-block;
	padding-left: 10%; /* ラジオボタンの位置調整 */
	font-size: 1.2rem;
	cursor: pointer;
	line-height: 2;
	user-select: none;
  padding: 0 50px 0 0;
  }

  /* ラジオボタンのカスタムデザイン */
  .redio:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border-radius: 50%;
	border: 2px solid #bbb;
	background-color: #fff;
	transition: all 0.3s ease;
  }

input:focus ,
textarea:focus {
  border:solid 1px #45c0e3;
}


  /* ラジオボタンがチェックされたときのスタイル */
  input[type="radio"]:checked + .radio:before {
	background-color: #1464c4; /* チェック時に青色 */
	border-color: #1464c4;
  }

  /* チェックマークを追加 */
  /*input[type="radio"]:checked + .radio:after {
	content: "";
	position: absolute;
	left: 6px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #fff; チェックマーク
  }*/


  /*ーーーーーーーーーーーーーラジオボタンーーーーーーーーーーーーー*/






  /*ーーーーーーーーーーーーー確認ボタンーーーーーーーーーーーーー*/

/*----↓ 薫風美術コピペ　inputは実態がないのでスタイルが当たらない！pやaになら当たる感覚----*/

  #form_submit:hover,
  #form_submit:hover img {
    opacity: 0.75;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
  }

  #form_submitt_button {
    color: #ffffff;
  }

  #form_submit,
  #form_submit img {
    text-decoration: none;
    border: none;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  /*ーーーーーーーーーーーーー確認ボタンーーーーーーーーーーーーー*/








  @media screen and (max-width: 640px) {


    .contact_text {
        text-align: left;
        max-width: 75%;
        font-size: 0.7rem;
        margin: 0 auto;
    }

    #mail_form {
        margin: 0 auto;
    }

    #mail_form dl dt {
        font-size: 0.6rem;
        padding: 0;
        height: 35px;
        display: flex;
        align-items: center;
    }



    form#mail_form dl dt span .sp {
      display: inline;
      align-items: center;
      margin: 0;
    }

    form#mail_form dl dt span .pc {
      display: none;
    }



    form#mail_form dl dd {
      width: 100%;
      padding: 0 0 15px 0;
      display: inherit;
      padding: 0 10px 30px 0;
    }

    form#mail_form dl dt span.required {
        padding: 0;
    }

    .radio-buttons {
        display: flex;
        flex-direction: column;
    }

    .radio-buttons label {
      font-size: 0.7rem;
    }

    .radio {
      padding: 0 25px 0 0;
    }

    form#mail_form textarea {
      margin: 0 auto;
    }

























  }