/* ------------------------------

           photo

----------------------------------*/

.trademark_img{
  margin: 64px auto;
  text-align: center;
}
@media screen and (max-width:650px){
  .trademark_img{
    max-width: 70%;
    height: auto;
  }
  .trademark_img img{
    width: 100%;
    height: auto;
  }
}


/* アルバムギャラリー */
.cost_contents_attension{
  font-size: 1.6rem;
  line-height: 2;
}
.album_content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 64px auto;
}
.album_content figure{
  height: auto;
  margin-bottom: 24px;
}
@media screen and (max-width:650px){
  .album_content figure{
    width: 150px;
  }
}
.album_content figure img{
  max-width: 100%;
  height: auto;
}
/* プロフィール */
.profile_box{
  width: 100%;
  /* position: relative; */
  display: flex;
  margin-bottom: 48px;
  /* justify-content: flex-start; */
}
@media screen and (max-width:650px){
  .profile_box{
    display: block;
  }
}
.profile_box figure{
  width: 40%;
}
@media screen and (max-width:650px){
  .profile_box figure{
    width: 60%;
  }
}
.profile_box figure img{
  max-width: 400px;
  width: 100%;
  height: auto;
}
.profile_name_box{
  width: 60%;
  /* padding-left: 48px; */
  position: relative;
}
.profile_box .profile_eg_name{
  font-size: 1.8rem;
  padding-left: 48px;
  letter-spacing: 0.13em;
  color:#00B900;
  position: absolute;
  bottom:73px;
}
@media screen and (max-width:650px){
  .profile_box .profile_eg_name{
    /* font-size: 1.6rem; */
    padding-top: 8px;
    padding-left:0;
    position: static;
  }

}
.profile_box .profile_ja_name{
  width: 100%;
  padding-left: 48px;
  font-size: 3.0rem;
  letter-spacing: 0.13em;
  position: absolute;
  bottom: 40px;
}
@media screen and (max-width:650px){
  .profile_box .profile_ja_name{
    /* padding-left: 24px; */
    padding-left: 0;
    /* font-size: 2.0rem; */
    position: static;
  }

}
.profile_tit{
  font-size: 3.0rem;
  color:#00B900;
  padding-bottom: 16px;
  border-bottom: 3px solid #00B900;
  margin-bottom: 32px;
  margin-top: 48px;
}
@media screen and (max-width:650px){
  .profile_tit{
    font-size: 2.0rem;
    margin-bottom: 24px;
  }
}
.profile_sen{
  font-size: 2.0rem;
  line-height: 2;
  margin-bottom: 32px;

}
@media screen and (max-width:650px){
  .profile_sen{
    font-size: 1.6rem;
    margin-bottom: 24px;
  }
}
.media_box{
  margin: 64px auto;
}
@media screen and (max-width:650px){
  .media_box{
    margin: 32px auto 64px;
  }
}
.media_box dl{
  font-size: 2.0rem;
  display: flex;
  border-bottom: 1px solid #D7CCCC;
}
@media screen and (max-width:650px){
  .media_box dl{
    font-size: 1.6rem;
  }
}
.media_box dl dt{
  text-align: center;
  padding: 15px 0;
  width: 200px;
  background: #F5EBEB;
}
@media screen and (max-width:650px){
  .media_box dl dt{
    width: 150px;
  }
}
.media_box dl dd{
  padding-left: 24px;
  padding: 15px 0 15px 24px;
}

/*--------------------------

        contact

----------------------------*/


.contact_form{
  max-width: 100%;
  margin: 64px auto 0;
}
.contact_form_tit{
  text-align: center;
  font-size: 3.0rem;
  font-weight: bold;
  padding-bottom: 16px;
  color:#00B900;
  border-bottom: 3px solid #00B900;
  margin-bottom: 80px;
}
@media screen and (max-width:767px){
  .contact_form_tit{
    font-size: 2.0rem;
    margin-bottom: 24px;
  }
}





form{
  width: 95%;
  margin: auto;
}
form dl{
  display: flex;
  border-bottom: 1px solid #807F7F;
  border-right: 1px solid #807F7F;
  border-left: 1px solid #807F7F;
}
@media screen and (max-width:767px){
  form dl{
    border: none;
  }
}
@media screen and (max-width:767px){
  form dl{
    display: block;
    margin-bottom: 24px;
  }
}
/* wordpressではfirst-childが効かない */
form dl:first-of-type{
  border-top: 1px solid #807F7F;
}
@media screen and (max-width:767px){
  form dl:first-of-type{
    border: none;
  }
}
form dl dt{
  width: 30%;
  text-align: center;
  line-height: 100px;
  border-right: 1px solid #807F7F;
}
@media screen and (max-width:767px){
  form dl dt{
    width: 100%;
    border: none;
    text-align: left;
    line-height: 2;
  }
}
.last_dt{
  line-height: 150px;
}
@media screen and (max-width:767px){
  .last_dt{
    line-height: 2;
  }
}
form dl dd{
  width: 70%;
  padding: 25px;
}
@media screen and (max-width:767px){
  form dl dd{
    width: 100%;
    padding: 0;
  }
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="checkbox"],
input[type="submit"],
textarea{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

}
select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0.5px solid #707070;
  outline: none;
  color:#434343;
}
select::-ms-expand {
	display: none;
}
input[type="text"],
input[type="email"],
input[type="tel"]{
  width: 85%;
  height: 50px;
  font-size: 100%;
  outline: none;
  border: 0.5px solid #707070;
  color:#434343;
  padding-left: 15px;
}
@media screen and (max-width:767px){
  input[type="text"],
  input[type="email"],
  input[type="tel"]{
    width: 100%;
    height: 40px;
  }
}
textarea{
  width: 85%;
  font-size: 100%;
  height: 120px;
  padding:15px;
  outline: none;
}
@media screen and (max-width:767px){
  textarea{
    width: 100%;
    height: 80px;
  }
}

/* zoombtn */

.zoom_postion{
  position: relative;
}

.zoom_btn{
  padding: 5px 20px;
  background: #00B900;
  border-radius: 17px;
  box-shadow: 0 3px 6px #00000029;
  cursor: pointer;
  border: none;
  position: absolute;
  right: 15px;
  top:30px;
}
@media screen and (max-width:850px){
  .zoom_btn{
    right: 0;
  }
}
@media screen and (max-width:767px){
  .zoom_btn{
    padding: 5px 8px;
    top:8px;
  }
}
@media screen and (max-width:450px){
  .zoom_btn{
    top:35px;
  }
}
.zoom_btn a{
  font-size: 1.6rem;
  color:#FFFFFF;
  /* text-decoration: none; */
}
@media screen and (max-width:450px){
  .zoom_btn a{
    font-size: 1.2rem;
  }
}



/* input[type="text"].wpcf7-free-text{
    width: 180px;
    border: 1px solid #e2e2e2;
    height: 30px;
    font-size: 80%;
    padding-left: 5px;

} */

/*---------------------------------

    contactform7での設定関連

-----------------------------------*/

/* wordpressでinput要素などの中央配置する場合に設定する場所 */
.wpcf7-form-control-wrap {
  display: block;
}
/*問い合わせフォームの上部に表示される */
/* エラーメッセージの非表示設定 */
.screen-reader-response{
  display: none;
}
/*メールフォームrecaptcha中央配置*/
.wpcf7-recaptcha > div {
  margin: 32px auto;
}

/* 「入力内容に問題があります」の設定 */
.wpcf7-response-output{
  font-size: 2.0rem;
  margin-bottom: 40px;
  text-align: center;
}

/* エラーメッセージの非表示 */
span.wpcf7-not-valid-tip{
  display: none !important;
}

/* 必須項目欄が未入力時に背景色を変更 */
.wpcf7 .wpcf7-not-valid {
  background: pink;
  border-radius: 0;
}

/* 承諾ボタンカスタマイズ */
.wpcf7-acceptance{
  text-align: center;
  display: block;
}

.wpcf7-acceptance  .wpcf7-list-item-label:before {
  content: '';
  border: 1px solid #454545;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  border-radius:0;
}

.wpcf7-acceptance  .wpcf7-list-item-label:after{
  content: '';
  display: none;
  width: 23px;
  height: 23px;
  background: transparent;
  background-image: url(../image/check.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top:0;
  left:1px;
}
@media screen and (max-width:650px){
  .wpcf7-acceptance  .wpcf7-list-item-label:after{
    top:-5px;
  }

}

input[type="checkbox"]:checked+ .wpcf7-acceptance  .wpcf7-list-item-label:after{
  display: inline-block;
}
/*---------------------------------

              住所
        自動入力カスタマイズ

---------------------------------*/

.address_dt{
  line-height: 292px;
}
@media screen and (max-width:767px){
  .address_dt{
    line-height: 2;
  }
}

span.wpcf7-form-control-wrap.zip,
span.wpcf7-form-control-wrap.pref{
  width: 50%;
}
span.wpcf7-form-control-wrap.zip,
span.wpcf7-form-control-wrap.pref,
span.wpcf7-form-control-wrap.city{
  margin-top: 4px;
}


/*-----------------------------

   年齢/職業/お住まいの地域
    共通設定部分

-------------------------------*/

.select_age_wrapper{
  width: 120px;
  height: 100%;
  position: relative;
}
@media screen and (max-width:650px){
  .select_age_wrapper{
    width: 100%;
  }
}

.select_profession_wrapper,
.select_todouhuken_wrapper{
  width: 85%;
  height: 100%;
  position: relative;
}
@media screen and (max-width:767px){
  .select_profession_wrapper,
  .select_todouhuken_wrapper{
    width: 100%;
  }

}
.select_profession_wrapper .profession,
.select_todouhuken_wrapper .todouhuken,
.select_age_wrapper .age{
  font-size: 100%;
  width: 100%;
  height: 50px;
  padding-left: 15px;
}
@media screen and (max-width:767px){
  .select_profession_wrapper .profession,
  .select_todouhuken_wrapper .todouhuken,
  .select_age_wrapper .age{
    font-size: 70%;
    height: 40px
  }

}
.select_age_wrapper::after,
.select_profession_wrapper::after,
.select_todouhuken_wrapper::after{
 content:"";
 border: 8px solid #00B900;
 border-bottom: 5px solid transparent;
 border-right: 5px solid transparent;
 border-left: 5px solid transparent;
 position: absolute;
 right: 5px;
 top:40%;
 pointer-events: none;
 z-index: 2;

}

/*------------------------

       希望日程

-------------------------*/

.schedule_adjustment{
  display: flex;
}
.select_adjustment_wrapper{
  width: 90px;
  height: 100%;
  position: relative;
  margin-right: 12px;
}
@media screen and (max-width:650px){
  .select_adjustment_wrapper{
    width: 20%;
  }
}
.select_adjustment_wrapper .schedule_month,
.select_adjustment_wrapper .schedule_day,
.select_adjustment_wrapper .schedule_timezone{
  font-size: 100%;
  width: 100%;
  height: 45px;
  padding-left: 15px;

}



.select_adjustment_wrapper .schedule_month .wpcf7-not-valid-tip,
.select_adjustment_wrapper .schedule_day .wpcf7-not-valid-tip,
.select_adjustment_wrapper .schedule_timezone .wpcf7-not-valid-tip{
  display: none;
}

@media screen and (max-width:650px){
  .select_adjustment_wrapper .schedule_month,
  .select_adjustment_wrapper .schedule_day,
  .select_adjustment_wrapper .schedule_timezone{
    font-size: 65%;
  }

}

.select_adjustment_wrapper:last-child{
  width: 350px;
}
@media screen and (max-width:650px){
  .select_adjustment_wrapper:last-child{
    width: 60%;
  }

}

 .select_adjustment_wrapper::after{
  content:"";
  border: 8px solid #00B900;
  border-bottom: 5px solid transparent;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  right: 5px;
  top:40%;
  pointer-events: none;
  z-index: 2;

}

/*------------------------

         ラジオボタン

------------------------------*/

/* 初期段階のチェックボックスを消す */
input[type="radio"] {
  display: none;
}
.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-wrap: wrap;

  height: 50px;
  align-items: center;
}

input[type="radio"]:checked+ .wpcf7-list-item-label:after{
  display: inline-block;
}


/* ---------------------

   チェックボックス

-------------------------------*/
/* チェックボックスとラベルのセットを表示・設定 */


.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;

  height: 50px;
  align-items: center;
}
span.wpcf7-list-item {
  position: relative;
  margin: 0 25px 0 0 !important;
}


/* 初期段階のチェックボックスを消す */
input[type="checkbox"] {
  display: none;
}
/* チェックボックスの疑似要素 */
.wpcf7-list-item-label{
  color:#434343;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
}


/* ラジオボタン 外側 */
.wpcf7-list-item-label:before {
  content: '';
  border: 1px solid #e2e2e2;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: middle;
  border-radius: 50%;
}

/*--------------------------------

leftの数値
外側 width/2 - 内側 width/2 で産出

----------------------------*/

/* ラジオボタン内側 */
.wpcf7-list-item-label:after {
  content: '';
  display: inline-block;
  display: none;
  width: 14px;
  height: 14px;
  background: #00B900;
  vertical-align: middle;
  border-radius: 50%;
  position: absolute;
  left:3px;
}


input[type="checkbox"]:checked+ .wpcf7-list-item-label:after{
  display: inline-block;
}


/* 提出ボタン */

input[type="submit"]{
  display: block;
  margin: 32px auto 0;
  font-size: 2.0rem;
  color: #FFFFFF;
  transition:  all 0.6s;
  width: 35%;
  padding: 15px;
  background: #00B900;
  border: none;
  outline: none;
  border-radius: 15px;
  box-shadow: 0 3px 6px #00000029;
}
@media screen and (max-width:767px){
  input[type="submit"]{
    width: 100%;
    border-radius: 0;
    padding: 8px 15px;
  }
}
input[type="submit"]:hover{
  opacity: 0.5;
}




/*------------------------

   プライバシーポリシー

-------------------------------*/
#privacy{
  background: #F1F4EC;
}
.privacy_wrapper{
  padding: 60px 0;
}
.privacy_tit{
  font-size: 3.0rem;
  color:#191818;
  text-align: center;
  margin-bottom: 120px;
}
@media screen and (max-width:650px){
  .privacy_tit{
    font-size: 2.0rem;
    margin-bottom: 40px;
  }
}
.privacy_content{
  font-family: 'Noto Serif JP', serif;
  font-size: 2.0rem;
}
.privacy_content_tit{
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width:650px){
  .privacy_content_tit{
    font-size: 1.6rem;
  }
}
.privacy_content_sen{
  line-height: 1.5;
  margin-bottom: 32px;
}
@media screen and (max-width:650px){
  .privacy_content_sen{
    font-size: 1.6rem;
  }
}
