@charset "UTF-8";
/* お問い合わせ
---------------------*/
/* layout */
.contact--container {
  width: min(1080px, 100% - 40px);

  margin-inline: auto;
}
.contact--container > .contact{
  padding-top:4rem;
  padding-bottom:10rem;
}
/* 共通 */
.contact--title{
  font-size: clamp(1.8rem, 0.96rem + 2.24vw, 3.2rem);
  font-weight: 700;
  text-align: center;
}
h2.contact--title-secondary{
  font-size:clamp(1.7rem, 1.04rem + 1.76vw, 2.8rem) !important;
  font-weight: 500;
  text-align: center;
}
.contact--text-sm{
  font-size: 1.3rem;
}
.contact--text-md{
  font-size: 1.4rem;
}
.contact--text-lg {
  font-size: 1.6rem;
}

/* btn */
.contact--btn{
  display: block;
	text-decoration: none;
	width: 100%;
  max-width: 855px;
	margin: auto;
	padding: 1rem 0;
	border: 2px solid #000;
	background: #000;
	color: #fff;
	transition: 0.5s;
  position: relative;
  font-size: clamp(1.3rem, 1.24rem + 0.16vw, 1.4rem);
  border-radius: 10px;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;

  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact--btn:after {
  position: absolute;
  content: '';
  display: block;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 7px;
  height: 7px;
  border-top: 1px solid ;
  border-right: 1px solid ;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}
.contact--btn + .contact--btn{
  margin-top: 18px;
}
@media (min-width: 768px){
  .contact--btn{
    min-height: fit-content;
  }
  .contact--btn:after{
    right: 25px;
  }
}
.contact--btn-shop{
  background-color: #F46A2D;
  border: 2px solid #F46A2D;
  min-height: 74px;
  max-width: 440px;
  font-size:16px;
  margin-top: clamp(2.4rem, 2.04rem + 0.96vw, 3rem);
  margin-bottom: clamp(3.6rem, 3.36rem + 0.64vw, 4rem);
}
@media (hover: hover){
  .contact--btn:hover {
    color: #000;
    background: #fff;
  }
  .contact--btn:hover:after {
    right: 18px
  }
  .contact--btn-shop:hover {
    color: #F46A2D;
  }
}

/* FAQ */
.contactFaq{
  padding-top:clamp(2.3rem, 1.88rem + 1.12vw, 3rem);
  padding-bottom:6rem;
}
.contactFaq--contents{
  padding-top:clamp(3.5rem, 2.6rem + 2.4vw, 5rem);
}
.contactFaq--contents--title {
  padding: .9rem 2rem;
  font-weight: 700;
  font-size: clamp(1.6rem, 1.48rem + .32vw, 1.8rem);
  color: #fff;
  background-color: #ada090;
}
@media (min-width: 768px) {
  .contactFaq--contents--title {
    padding: .8rem 4rem;
  }
}
.contactFaq--contents--item {
  margin-left: .5rem;
  padding-top: 3rem;
  padding-left: 1.5em;
  text-indent: -1.5em;
}

.contactFaq--contents--item > dt {
  line-height: calc(22/16);
  color: #cc3434;
}
.contactFaq--contents--item > dt::before {
  content: "Q.";
  margin-right: .5rem;
}
.contactFaq--contents--item > dd {
  padding-top: .5rem;
  line-height: calc(22/14);
}
.contactFaq--contents--item > dd::before {
  content: "A.";
  margin-right: .5rem;
  font-weight: 700;
  font-size: 1.6rem;
}

/* Form */
.contactForm--kiyaku{
  margin-bottom:clamp(2.4rem, 2.76rem + -0.96vw, 1.8rem);
}
.contactForm--kiyaku > a{
  text-decoration: underline;
}
.contactForm--kiyaku + p{
  margin-bottom:1.8rem;
}
.contactForm--point{
  margin-top: clamp(1rem, 0.88rem + 0.32vw, 1.2rem);
}
.contactForm--tell{
  margin: 6rem auto;
  font-size: 13px;
  text-align: center;
}
.contactForm--tell > a[href^="tel:"]{
  font-weight: 700;
  font-size: 2.8rem;
}
@media(min-width: 768px){
  .contactForm--tell > a[href^="tel:"]{
    pointer-events: none;
  }
}
.contactForm--note--title{
  background-color: #cc3333;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.625em;
  margin-bottom: 0.8em;
}
.contactForm--note--list{
  font-size: 13px;
  list-style-position: inside;
  padding-left: 1.8em;
    text-indent: -1.5em;
}
.contactForm--note--list > li + li{
  padding-top:0.692em;
}

