@charset "UTF-8";

@media screen and (max-width:960px) {
  .header-area {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
}

/* エラー表示 */
.error, .error-php, .error-js {
  color: red;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.7px;
}

/*@media screen and (max-width:960px) {
  .error, .error-php, .error-js {
    font-size: 12px;
  }
}*/

/* フォーム要素（Bootstrap4 のスタイルを上書き） */
.form-control {
  border-radius: 6px;
  background-color: #fdfdfd;
  font-size: 16px;

  padding:10px 16px;
  height: 48px;
}


.form-control:focus {
  border-color: #aadbe8;
  outline: 0;
  -webkit-box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
  box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
  background-color:#fff;
}

.form-control::placeholder{
  font-size: 16px;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
  font-size: 13px; 
}
/* Firefox 18- */
:-moz-placeholder {
  font-size: 13px; }
/* Firefox 19+ */
::-moz-placeholder {
  font-size: 13px; }
/* IE 10+ */
:-ms-input-placeholder {
  font-size: 13px; }
::placeholder{ 
  font-size: 13px;
}
textarea.form-control {
  height: 200px;
}

* {
  background: #FFF;
}
#top {
  background: #FFF;
}


/*タイトル*/
.c_title {
  padding-top: 84px;
  text-align: center;
  display: block;
  background: #FFF;
}
  
.c_title h1 {
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 150%;
  padding: 0;
  letter-spacing: 0.7px;
}
  
.c_title h2 {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 200%;
  margin: 8px auto 20px auto;
  letter-spacing: 0.7px;
}
  
@media screen and (max-width:960px) {
 .c_title h1 {
   font-weight: 700;
   font-size: 2.8rem;
   line-height: 150%;
 }
  
  .c_title h2 {
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 170%;
  }
}
  
/*お問い合わせフォーム*/
.contact_form {
  background: #F7F6F5;
  padding: 80px 0;
}

.contact_form_area {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  }

.contact_form_box {
  padding: 80px 0px;
  text-align: center;
  margin: 0 auto;
  color: #605E5E;
  background: #FFF;
   border-radius: 8px;
}

.contact_form_button img{
    display: block;
    margin: 40px auto 0 auto;
    width: 213px;
    height: auto;
}

.form-group{
    margin: 40px 80px;
}

label{
    float: left;
}

.form-name-title label{
  float: none;
}

.form-name {
  display: flex;
  flex-wrap: wrap;
}

.form-name > span {
  width: calc(calc(100% - 24px) / 2);
}

.form-name > span:first-of-type{
  margin-right: 24px;
}

.mannaka{
 text-align: -webkit-center;
 background:  #F7F6F5;
 
}

.button_first {
  margin-top:40px;
 background: #F7F6F5;
}

.button_first img {
  background: #F7F6F5;
  max-width: 225px;
  height: auto;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  outline:none;
}

button:focus {
  outline: none;
}

.button:hover{
  color: #fff; 
  background-color: #BE0B00; 
}

.button:hover .arrow{
  opacity: 0;
}

.button-active{
  border: 1px solid #BE0B00;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 40px;
  gap: 8px;
  text-align: center;
  letter-spacing: 0.7px;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  font-size:16px;
  line-height: 28px;
  color: #fff; 
  background-color: #BE0B00; 
}

.privacy-checkbox-label{
  border:1px solid #dddcdb;
  padding:20px 20px 0px 20px;
  width:100%;
  position: relative;


}

input[type="checkbox"] {
  position: absolute;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  border: 2px solid #BE0B00;
  width: 24px;
  height: 24px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;

  margin-top: 4px;
  margin-bottom:2.56px;

  line-height: 170%;
  
}
input[type="checkbox"]:checked{
  background-color: #BE0B00;
  
}
input[type="checkbox"]:checked::before{
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  display: inline-block;
  width: 14px;
  height: 10px;
  border-left: 3px solid #FFFFFF;
  border-bottom: 3px solid #FFFFFF;
  border-radius: 2px;
  transform: rotate(-54deg);
}

.privacy-checkbox-label:has(input[type="checkbox"]:checked){
  background-color: #F8EFEE;
  border: 1px solid #B94140;
}
.privacy-checkbox-label > span {
  vertical-align: top;
  background: transparent;
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 0.7px;
  color: #242323;
  flex: none;
  order: 1;
}

.privacy-checkbox{
  align-items: center;
}

.label{
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;

  letter-spacing: 0.7px;
  color: #424141;
  flex: none;
  order: 0;
  flex-grow: 0;

  margin-bottom:8px;
}

.privacy-label{
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0.7px;
  color: #424141;
  flex: none;
  order: 0;
  flex-grow: 0;
  align-items: center;
}

.privacy-text{
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.7px;
  color: #242323;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.hissu{
  margin-left:8px;
  padding:2px 8px;
  background: #FFFFFF;
  border: 1px solid #EA5773;
  border-radius: 2px;
  font-family: 'Hiragino Kaku Gothic Pro';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #EA5773;
}

.contact-form-area {
  background: #F7F6F5;
}

.grayarea{
  background-color: #F7F6F5;
  padding:80px 80px 200px 80px;
  max-width: 1280px;
  margin: 0 auto;
}


.whitebox{
  background-color: #fff;
  border-radius: 20px;
  padding:80px 0px 80px ;
  height: auto;
  min-height: 1350px;
}

@media screen and (max-width:960px) {
  .grayarea{
    padding:40px 40px 200px 40px;
  }

  .form-group{
    margin: 20px 20px;
}

.label{
  font-size: 14px;
}

.hissu{
  font-size: 14px;
}

.privacy-label {
  font-size: 16px;
}

.whitebox{
  padding: 40px 0px 40px;
  min-height: 1200px;
}


.privacy-checkbox-label > span {
  font-size: 16px;
}

  
}


.input_name{
  width: 100%;
}

.button_first :active{
  border: none;
}

.button_first{
  cursor: pointer;
}

.countSpanWrapper{
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.7px;
  color: #242323;
}

.privacy-text a{
  font-family: 'Noto Sans JP';
  font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 170%;
/* identical to box height, or 24px */
letter-spacing: 0.7px;
text-decoration: underline !important;
color: #007AFF !important;
flex: none;
order: 1;
}

.privacy-text{
  margin-bottom:16px;
}


.menu-item a:hover {
color: #242323;
}

.list-current:hover {
  color: #BE0B00 !important;
}
