@charset "UTF-8";
/* リセット解除 */
.contact-form :where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)),
.contact-form :where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *))::before,
.contact-form :where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *))::after {
  all: revert;
}
/* 新お問い合わせページ */
.g-heading{
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
}
.g-heading::after{
  position: absolute;
  content: "";
  bottom: 0;
  background: currentColor;
  display: block;
  height: 1px;
}
@media screen and (min-width: 768px){
  #contact{
    width: max(73vw, 922px)!important;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .g-heading{
    padding: 84px 0 23px;
    font-size: 23px;
    letter-spacing: 2.4px;
    margin-bottom: 90px;
  }
  .g-heading::after{
    width: 80px;
  }
}
@media screen and (max-width: 767px){
  #contact{
    width: 82.4vw!important;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .g-heading{
    padding: 30px 0 13px;
    font-size: 18px;
    letter-spacing: 1.9px;
    margin-bottom: 50px;
  }
  .g-heading::after{
    width: 50px;
  }
}

/* 個人情報保護ポリシー */
.pri-contents__section{
  margin-inline: auto;
}
.pri-txt{
  line-height: 2;
  margin-bottom: 3em;
}
.pri-contents__container{
  background-color: var(--site-color);
}
.pri-contents__container :is(p, dd){
  margin-bottom: 3em;
}
.pri-contents__data dt{
    color: #A98195;
    font-weight: bold;
    border-left: 6px solid #A98195;
    padding-left: .6em;
    line-height: 1.4;
    font-size: 18px;
    margin-bottom: 1em;
}
.pri-contents__data a{
    color: #A98195;
    text-decoration: underline;
}
@media screen and (min-width: 768px){
  .pri-contents__section{
    max-width: 1100px;
  }
  .pri-contents__container{
    padding: 3em;
  }
}
@media screen and (max-width: 767px){
  .pri-contents__section{
    width: 90%;
  }
  .pri-contents__container{
    padding: 1.5em;
    font-size: 13px;
    line-height: 1.7;
  }
  .pri-contents__data dt{
    font-size: 16px;
  }
}