@charset "UTF-8";
/* お問い合わせ
---------------------*/
/* layout */

img {
  display: inline;
}

.contact--container {
  width: min(1080px, 100% - 40px);

  margin-inline: auto;
}
.contact--container > .contact{
  padding-top:40px;
  padding-bottom:100px;
}
/* 共通 */
.contact--title{
  font-size: clamp(18px, 9.6px + 2.24vw, 32px);
  font-weight: 700;
  text-align: center;
}
h2.contact--title-secondary{
  font-size:clamp(17px, 10.4px + 1.76vw, 28px) !important;
  font-weight: 700;
  text-align: center;
}
.contact--text-sm{
  font-size: 13px;
}
.contact--text-md{
  font-size: 14px;
}
.contact--text-lg {
  font-size: 16px;
}

/* btn */
.contact--btn{
  display: block;
	text-decoration: none;
	width: 100%;
  max-width: 855px;
	margin: auto;
	padding: 10px 0;
	border: 2px solid #6D6D6D;
	background: #6D6D6D;
	color: #fff;
	transition: 0.5s;
  position: relative;
  font-size: clamp(14px, 8px + 1.2vw, 20px);
  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:clamp(15px, 10px + 1vi, 20px);
  margin-top: clamp(24px, 20.4px + 0.96vw, 30px);
  margin-bottom: clamp(36px, 33.6px + 0.64vw, 40px);
}
@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(23px, 18.8px + 1.12vw, 30px);
  padding-bottom:60px;
}
.contactFaq--contents{
  padding-top:clamp(35px, 26px + 2.4vw, 50px);
}
.contactFaq--contents--title {
  padding: 9px 20px;
  font-weight: 700;
  font-size: clamp(16px, 14.8px + .32vw, 18px);
  color: #fff;
  background-color: #ada090;
}
@media (min-width: 768px) {
  .contactFaq--contents--title {
    padding: 8px 40px;
  }
}
.contactFaq--contents--item {
  margin-left: 0.5px;
  padding-top: 30px;
  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: 5px;
}
.contactFaq--contents--item > dd {
  padding-top: 5px;
  line-height: calc(22/14);
}
.contactFaq--contents--item > dd::before {
  content: "A.";
  margin-right: 5px;
  font-weight: 700;
  font-size: 16px;
}

/* Form */
.contactForm--kiyaku{
  margin-bottom:clamp(24px, 27.6px + -0.96vw, 18px);
}
.contactForm--kiyaku > a{
  text-decoration: underline;
}
.contactForm--kiyaku + p{
  margin-bottom:18px;
}
.contactForm--point{
  margin-top: clamp(10px, 8.8px + 0.32vw, 12px);
}
.contactForm--tell{
  margin: 60px auto;
  /* font-size: 13px; */
  text-align: center;
}
.contactForm--tell a[href^="tel:"]{
  font-weight: 700;
  font-size: clamp(30px, 10px + 4vw, 50px);
}
@media(min-width: 768px){
  .contactForm--tell a[href^="tel:"]{
    pointer-events: none;
  }
}
.contactForm--tell--text{
  font-size: clamp(15px, 10px + 1vw, 20px);
  text-align: center;
}
.contactForm--tell--number > img{
  width: clamp(30px, 5px + 5vw, 55px);
  margin-right: 1%;
}
.contactForm--note--title{
  background-color: #AC000C;
  text-align: center;
  color: #fff;
  font-size: clamp(15px, 10px + 1vw, 20px);
  padding: 0.625em;
  margin-bottom: 1em;
}
.contactForm--note--list{
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 1.8em;
  text-indent: -1.5em;
}
.contactForm--note--list > li + li{
  padding-top:0.692em;
}

