@charset "UTF-8";
/* -------------------------------------
コンタクト
------------------------------------- */
article {
  padding-bottom: 0;
}

.section-title {
  margin-bottom: 80px;
}

/* #contact {
  padding-bottom: 175px;
} */
.inner--950 {
  max-width: 950px;
}
.clr--green {
  color: #5c8650;
}

.low #pagettl.under-heading {
  color: #5c8650;
  padding-top: 57px;
  padding-bottom: 104px;
  margin-bottom: 74px;
}
.fv::after {
  display: none;
}
.fv__single {
  height: 20.04vw;
  min-height: 140px;
}
.fv__img--none .pagettl {
  top: 60%;
}

.faq__wrap {
  padding-bottom: 92px;
  margin:0 auto ;
  border-bottom: 1px solid #e5e5e5;
  width: calc(100% - 40px);
  max-width: 720px;
}



.catch_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(18px, 2.43vw, 22px);
  font-weight: 600;

}
.catch_ttl,
.catch_ttl + p {
  text-align: center;
}
.catch_ttl + p {
  font-size: 12px;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0;
  width: 100%;
  max-width: 755px;
  margin: 0 auto 30px;
}
.catch_ttl__faq {
  margin-bottom: 15px;
  font-weight: 600;
}
.catch_ttl__faq + p {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 36px;
  line-height: 2.02;
  letter-spacing: 0.14em;
}
.faq__btn {
  margin: 0 auto;
  display: block;
  width: 184px;
  max-width: 100%;
  padding-left: 14px;
  font-size: 13px;
  position: relative;
  transition: .4s;
  border-bottom: 1px solid #444444;
  line-height: 2;
}
.faq__btn::before{
  content:'';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #444444;
  border:2px solid #444444;
  position: absolute;
  left: 0;
  top:50%;
  transform: translateY(-40%);
	-webkit-transform: translateY(-40%);
	-ms-transform: translateY(-40%);
	-moz-transform: translateY(-40%);
	-o-transform: translateY(-40%);
  transition: all 0.3s;
}
.faq__btn::after{
   content: '';
    display: block;
    width: 10px;
    height: 8px;
    background-image: url(../imgs/common/faq-anc.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right:0;
    top:50%;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);

}
.faq__btn:hover{
  opacity: .7;
}
.faq__btn:hover::before{
  background-color: #fff;
}


.inner--970 {
  max-width: 970px;
  margin: 0 auto;
}
.inner--712 {
  width: calc(100% - 40px);
  max-width: 772px;
  margin: 0 auto;
}
.attension__text {
  font-size: 14px;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0;
  width: 100%;
  max-width: 765px;
}
.attension__text span.indent{
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 12px;
}
.contact__comp .attension__text {
  font-size: 14px;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0;
  width: 100%;
  max-width: 675px;
  margin: 0 auto;
}

.catch_ttl__contact {
  padding-top: 92px;
  margin-bottom: 35px;
  font-family: "Shippori Mincho", serif;
  font-size:clamp(18px,2.43vw,22px) ;
}

/* フォーム */
.form {
  color: #222;
  width: 100%;
  padding: 30px 0 0;
}
.form__row--mb {
  margin-bottom: 12px;
  padding-bottom: 18px;
}
.form__row {
  display: flex;
  align-items: center;
  line-height: 1;
}
.form__row--type02 {
  margin-bottom: 66px;
  align-items: flex-start;
}
.form__row--type03 {
  margin-bottom: 30px;
}
.form__field-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.form__field--input-txt input {
  font-size: 12px;
  background-color: #fff;
  width: 100%;
  height: 35px;
  padding: 0 15px;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
}
.form__field--txtarea textarea {
  background-color: #fff;
  width: 100%;
  height: 235px;
  padding: 7px 15px;
  border: 1px solid #e5e5e5;
}
::placeholder {
  color: #b2b2b2;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #b2b2b2;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #b2b2b2;
}
.form__field--select {
  position: relative;
}
.form__field--select select {
  color: #222;
  font-size: 14px;
  background-color: #fff;
  width: 100%;
  height: 35px;
  padding-left: 15px;
  cursor: pointer;
  border: 1px solid #e5e5e5;
}
.form__field-wrap--select {
  position: relative;
  z-index: 2;
}
.form__field-wrap--select::after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 11px solid #222;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 10px;
  cursor: pointer;
  pointer-events: none;
  z-index: 0;
}
.mw_wp_form_confirm .form__field-wrap--select::after {
  display: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
.form__label {
  min-width: 204px;
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.form__label--type02 {
  padding-top: 8px;
}
.form__label label {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.12em;
  line-height: 1.75;
}
.form__field {
  width: calc(100% - 204px);
  max-width: 350px;
  box-sizing: border-box;
}
.form__field--type02 {
  max-width: initial;
}
.form__label-req {
  color: #ff0000;
  font-size: 14px;
  margin-left: 8px;
  line-height: 1;
}
.form__field--txtarea textarea {
  color: #222;
  font-size: 12px;
  box-sizing: border-box;
}
.form__label label,
.form__field--input-txt input,
.form__field--txtarea textarea {
  line-height: 1.75;
}

.check__text {
  font-size: 12px;
  text-align: center;
  line-height: 1.75;
}

[type="submit"] {
  width: 100%;
  /*padding: 12px 5px 12px 5px;
  border: none;*/
  cursor: pointer;
}

.form__submits-item{
  width: 100%;
  max-width: 243px;
  height: 51px;
  background: #a58b51;
  border:1px solid #a58b51;
  color:#fff;
  border-radius: 50px;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  position: relative;
  transition: .4s;
}
.form__submitsBtn{
  width: 100%;
  max-width: 243px;
  position: relative;
}
.form__submitsBtn::after{
  content: '';
  display: block;
  width: 4px;
  height: 7px;
  background-image: url(../imgs/common/btn-anc.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top:50%;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

.form__submitsBtn:hover .form__submits-item{
  background-color: #fff;
  color: #a58b51;
}

.form__submitsBtn:hover::after{
  background-image: url(../imgs/common/bon-anc_gold.png);
}
.form__submits-item--back.gr_btn {
  
}
.form__submits-item--submit.gr_btn {

}
[type="reset"] {
  width: 100%;
  padding: 12px 5px 12px 5px;
}
.flex-submits {
  display: flex;
  justify-content: center;
}
.form__submits {
  font-size: 15px;
  width: 100%;
  max-width: 244px;
  margin: 0 auto;
  display: block;
  color: #000;
  text-align: center;
  position: relative;
  transition: 0.3s;
}
.form__submits.reset {
  margin-right: 30px;
}
.form__submits:hover {
}
.mw_wp_form .error {
  color: #ff0000;
  font-size: 11px !important;
  padding-top: 10px;
  width: 100%;
  cursor: auto;
  display: block;
}
.form__conf .mw_wp_form .error {
  padding-top: 0;
}

.decoration__link {
  display: inline;
}

/*確認画面*/
.confirm{
   padding-bottom: 175px;
}

.confirm .attension__text{
  margin-bottom: 50px;
}
.confirm .section-title{
  padding-bottom: 0;
}

.mw_wp_form_confirm .catch_ttl__contact,
.mw_wp_form_confirm .attension__text{
  display: none;
}


.mw_wp_form_confirm .form__field-wrap--select {
  font-size: 14px;
  line-height: 1.75;
}
.mw_wp_form_confirm .form__field--select::after {
  display: none;
}
.mw_wp_form_confirm .form__field-wrap {
  font-size: 14px;
  line-height: 1.75;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.mw_wp_form_confirm .form__label--type02 {
  padding-top: 0;
}
.mw_wp_form_confirm .form__submits {
  width: 100%;
  max-width: 508px;
  display: flex;
  justify-content: space-between;
}

.mw_wp_form_confirm .form__submitsBtn{
  width: 48.5%;
  max-width: 243px;
}
.mw_wp_form_confirm .form__submits-item {
}
.mw_wp_form_confirm .check__textWrap {
  display: none;
}

.contact__confirm .form__submits {
  width: 100%;
  max-width: 528px;
  display: flex;
  justify-content: space-between;
}
.contact__confirm .form__submits-item {
  width: 48.5%;

  max-width: 244px;
}
.contact__confirm .check__textWrap {
  display: none;
}

/* .form__submits-item--back.gr_btn:hover {
  animation: arrow--type02 0.5s;
} */
@keyframes arrow--type02 {
  50% {
    background-position: center left 7%;
  }
  100% {
    background-position: center left 10%;
  }
}
/*完了画面*/
.contact.comp{
     padding-bottom: 175px;
}
.contact_thanks {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-top: 30px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.form__submits.top__back {
  padding: 12px 5px 12px 5px;
  margin: 0 auto;
}
.comp__btnWrap {
  padding-top: 60px;
}
.comp__btn {
  display: block;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
  max-width: 100px;
}
/* フォーム */

@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1260px) {
}

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

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

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

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

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

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

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

@media screen and (max-width: 750px) {
  /* #contact {
    padding-bottom: 26%;
  } */
  .low #pagettl.under-heading {
    padding-top: 27px;
    padding-bottom: 74px;
    margin-bottom: 54px;
  }
  .faq__wrap {
    padding-bottom: 48px;
  }
  .catch_ttl__contact{
    padding-top: 70px;
  }
  .faq__btn {
    font-size: 13px;
    padding: 10px 11px;
    max-width: 212px;
    line-height: 1;
  }


  .section-title{
    margin-bottom: 50px;
  }
  /* .catch_ttl {
    font-size: 18px;
  } */
  .comp__btn {
    font-size: 13px;
  }

  /* .catch_ttl + p {
    font-size: 14px;
  } */



  .form__label label {
    letter-spacing: 0.04em;
  }
  .form__field--input-txt input {
    font-size: 15px;
    padding: 0 10px;
  }
  .form__field--txtarea textarea {
    font-size: 14px;
    padding: 7px 10px;
  }

  .form__field--select select {
    font-size: 14px;
  }

  .confirm{
   padding-bottom: 26%;
}
  .mw_wp_form_confirm .form__field-wrap--select {
    font-size: 14px;
  }
  .mw_wp_form_confirm .form__field-wrap {
    font-size: 14px;
  }
  .form__submits-item {
    font-size: 14px;
  }

  .contact.comp{
     padding-bottom: 26%;
}
}

@media screen and (max-width: 640px) {
  .form__row {
    display: block;
  }
  .form__row--mb.form__row--type02 {
    margin-bottom: 46px;
  }
  .form__row--mb.form__row--type03 {
    margin-bottom: 38px;
  }
  .form__row--mb {
    margin-bottom: 15px;
    padding-bottom: 0;
  }
  .form__field {
    width: 100%;
    max-width: initial;
  }
  .form__label {
    margin-right: 0;
    margin-bottom: 7px;
  }
  .form__label--type02 {
    padding-top: 0;
  }
  .form__submits {
    max-width: 212px;
  }
  [type="submit"] {
    font-size: 13px;
    width: 100%;
    padding: 10px 11px;
    max-width: 212px;
  }
  .form__submitsBtn::after{
    right: 12%;
}
}

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

@media screen and (max-width: 480px) {
  .mw_wp_form_confirm .form__submits {
    max-width: initial;
    display: block;
  }
  .form__submitsBtn{
    width: 100%;
    max-width: 212px;
    margin: 0 auto 15px;   
  }
  .mw_wp_form_confirm .form__submitsBtn{
    width: 100%;
  }
  .form__submitsBtn:last-child{
    margin-bottom: 0;
  }

  .mw_wp_form_confirm .form__submits-item {
    width: 100%;
  }
  
  /* .mw_wp_form_confirm .form__submits-item--back {
    margin-bottom: 15px;
  } */

  .contact__confirm .form__submits {
    max-width: initial;
    display: block;
  }
  .contact__confirm .form__submits-item {
    width: 100%;
    max-width: 212px;
    margin: 0 auto;
  }
  /* .contact__confirm .form__submits-item--back {
    margin-bottom: 15px;
  } */




}

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

@media screen and (min-width: 769px) {
}
