/* Contact
-------------------------------------------*/

#main.contact{
  margin-top: 0;
}
#main.contact .page_header__in{
  width: 100%;
  padding: clamp(100px,25vw,280px) 0 0;
  margin-top: 0;
  border-radius: 0;
  color: rgba(var(--black-rgb),.8);
  text-align: center;
}
.contact .sec{
  width: min(800px,92%);
  margin: 0 auto;
}
.contact .sec .read{
  padding: var(--sec-margin) 0;
  text-align: left;
}

/* ----------------------------------------
 terms,privacy,404
---------------------------------------- */

#terms .read,
#terms .terms_list{
  text-align: justify;
}
.terms_list{
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.terms_list dl{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.terms_list dt{
  font-size: 120%;
  font-weight: bold;
}
.terms_list dd{
  font-size: 95%;
}
.terms_list dd ul{
  padding: 1rem 0;
}
.terms_list dd ul li{
  padding-left: 1em;
  text-indent: -1em;
}
.terms_list a{
  color: var(--main-color);
}
.terms_list a:hover{
  text-decoration: underline;
}


/* ----------------------------------------
 form reset
---------------------------------------- */

input,
button,
textarea{
  border: none;
  outline: none;
  border-radius: 0;
}
::placeholder{
  color: #aaa;
}
#form dt p,
#form dd p{
  margin: 0;
}
#form input:focus,
#form textarea:focus{
  border-color: var(--main-color);
}
#form dd label{
  margin: 0;
  padding: 0;
}
#form dd label input{
  width: auto;
  margin: 0;
  padding: 0;
}

/* ----------------------------------------
 form
---------------------------------------- */

#form{
  font-weight: 500;
}
#form dl{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #ccc;
}
#form dt{
  position: relative;
  display: flex;
  align-items: center;
  font-weight: bold;
}
#form .label{
  flex: 1;
  display: flex;
  align-items: center;
}
#form dl dt .title::before{
  content: "●";
  display: inline-block;
  margin-right: .25rem;
  font-size: .55em;
  transform: translateY(-2px);
}
#form dl.required dt .title::before{
  color: var(--orange);
}
#form dl.optional dt .title::before{
  color: #909090;
}
#form dt .small,
#form dt .hissu,
#form dt .any{
  font-size: clamp(11px,1.692vw,14px);
}
#form dt .small{
  padding-left: .75rem;
  font-weight: normal;
}
#form dt .hissu,
#form dt .any{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  min-width: 58px;
  height: 40px;
  padding: 18px;
  letter-spacing: .1em;
  border-radius: 999px;
}
#form dt .hissu{
  color: var(--orange);
  border: 1px solid var(--orange);
}
#form dt .any{
  color: #909090;
  border: 1px solid #909090;
}
#form dd{
  text-align: left;
}
#form .agree{
  margin-bottom: 1.5rem;
}
#form .gtext{
  font-weight: normal;
}
#form .agree,
#form .gtext{
  font-size: clamp(11px,1.692vw,14px);
}
#form a{
  color: var(--main-color);
}
#form a:hover{
  opacity: var(--hover);
}

/* ----------------------------------------
 input
---------------------------------------- */

#form dd input:not([type="radio"]):not([type="checkbox"]),
#form dd textarea{
  width: 100%;
  padding: 1.25rem;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #f6f6f6;
  background: #fff;
}
.wpcf7-not-valid{
  border-color: red !important;
}
.wpcf7-not-valid-tip{
  margin-top: .5rem;
  color: red;
  font-size: .9em;
}

/* ----------------------------------------
 radio / checkbox
---------------------------------------- */

#form .wpcf7-radio,
#form .wpcf7-checkbox{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
#form .wpcf7-list-item{
  margin: 0;
}
#form .wpcf7-list-item label{
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: 1.2rem 2rem;
  border-radius: 10px;
  background: #eee5da;
  cursor: pointer;
}
#form .wpcf7-list-item input{
  width: auto;
}

/* ----------------------------------------
 submit
---------------------------------------- */

#form .send{
  text-align: center;
}
#form .send input{
  display: block;
  width: 100%;
  height: 90px;
  margin: 2rem auto 0;
  border-radius: 10px;
  background: var(--black);
  color: #fff;
  font-size: clamp(15px,2.3vw,18px);
  font-weight: bold;
  transition: filter .2s;
  cursor: pointer;
}
#form .send input:hover{
  filter: brightness(1.1);
}

/* ----------------------------------------
 misc
---------------------------------------- */



/* ----------------------------------------
 SP
---------------------------------------- */

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

}