@charset "UTF-8";
@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideIn {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.split-text,
.split-text-hover,
.split-hover,
.split-target {
  display: inline-block;
  overflow: hidden;
  /* 文字が下から出てくる際に見切れるのを防ぐ */
}

.split-text .char,
.split-text-hover .char,
.split-hover .char,
.split-target .char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(1em);
          transform: translateY(1em);
  /* 下から */
  will-change: transform, opacity;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  will-change: opacity, transform;
}

.delay-1 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.delay-2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-3 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay-4 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay-5 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.fade-up-connected {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  will-change: transform, opacity;
}

.fade-mask {
  position: relative;
  overflow: hidden;
}

.fade-mask .fade-mask-img,
.fade-mask .fade-mask-content,
.fade-mask {
  width: 100%;
  display: block;
  opacity: 0;
  mask-image: url("../images/common/mask-grad.webp");
  -webkit-mask-image: url("../images/common/mask-grad.webp");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: auto 200%;
  -webkit-mask-size: auto 200%;
  mask-position: left bottom;
  -webkit-mask-position: left bottom;
}

/* is-visible が付いたら発火 */
.fade-mask.is-visible .fade-mask-img,
.fade-mask.is-visible .fade-mask-content,
.fade-mask.is-visible {
  -webkit-animation: mask-animation 3s cubic-bezier(0.115, 0.405, 0.24, 1) forwards;
          animation: mask-animation 3s cubic-bezier(0.115, 0.405, 0.24, 1) forwards;
}

@-webkit-keyframes mask-animation {
  0% {
    mask-position: left bottom;
    -webkit-mask-position: left bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    mask-position: left 0%;
    -webkit-mask-position: left 0%;
    mask-size: auto 500%;
    -webkit-mask-size: auto 500%;
    opacity: 1;
  }
}

@keyframes mask-animation {
  0% {
    mask-position: left bottom;
    -webkit-mask-position: left bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    mask-position: left 0%;
    -webkit-mask-position: left 0%;
    mask-size: auto 500%;
    -webkit-mask-size: auto 500%;
    opacity: 1;
  }
}
.p_contact__header {
  position: relative;
  z-index: 1;
}
.p_contact__header__intro {
  padding-block: 0rem 5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_contact__header__intro {
    display: none;
  }
}
.p_contact__header__intro__lead {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(1.1875rem, 1.03125rem + 0.625vw, 1.5rem);
  line-height: 1.4;
}
.p_contact__header__intro__sentence {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 0.875rem;
  margin-top: 1.625rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p_contact__header__intro__sentence {
    text-align: justify;
  }
}
.p_contact__intro-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p_contact__intro-sp {
    position: relative;
    display: block;
    text-align: center;
    padding-block: 3.375rem;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__intro-sp__inner__lead {
    font-family: YakuHanMP, "Noto Serif JP", serif;
    font-weight: 400;
    font-size: clamp(1.1875rem, 1.03125rem + 0.625vw, 1.5rem);
    line-height: 1.45;
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__intro-sp__inner__sentence {
    font-family: YakuHanMP, "Noto Serif JP", serif;
    font-weight: 300;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    line-height: 1.8;
    text-align: justify;
    letter-spacing: 0.07em;
  }
}
.p_contact__content {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p_contact__content .line-any-width {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content__wrap {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p_contact__content__wrap {
    width: 100%;
  }
}
.p_contact__content .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0rem;
  width: 100%;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.875rem;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p_contact__content .contact {
    width: 100%;
  }
}
.p_contact__content .contact .contact-sale {
  padding-block: 4.375rem;
  width: 100%;
  max-width: 40%;
  padding-inline: 3.75rem;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-sale {
    padding-inline: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale {
    padding-block: 2.5rem 0rem;
    margin-inline: auto;
    max-width: 100%;
    border-top: solid 1px rgba(46, 25, 17, 0.1);
    padding-inline: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p_contact__content .contact .contact-sale {
    padding-inline: 1.5rem;
  }
}
.p_contact__content .contact .contact-sale__inner__header {
  border-bottom: #2E1911 solid 1px;
  padding-block: 0.625rem 1rem;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__header {
    padding-block: 0.625rem 0.75rem;
  }
}
.p_contact__content .contact .contact-sale__inner__header__title {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.96875rem + 0.125vw, 1.0625rem);
  line-height: 1.6;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__header__title {
    letter-spacing: 0.07em;
  }
}
.p_contact__content .contact .contact-sale__inner__body__sentence {
  font-family: "Bellefair", serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-block: 2.25rem 3.75rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__body__sentence {
    margin-block: 1.5rem 1.875rem;
    letter-spacing: 0.07em;
  }
}
.p_contact__content .contact .contact-sale__inner__body__notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-sale__inner__body__notice {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-inline: auto;
    margin-bottom: 1.25rem;
  }
}
.p_contact__content .contact .contact-sale__inner__body__notice .notice__line {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-sale__inner__body__notice .notice__line {
    display: block;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    margin-block: 0.3125rem;
  }
}
.p_contact__content .contact .contact-sale__inner__body__notice .notice__line span {
  padding: 0 4px 2px 4px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, rgba(221, 180, 65, 0.3)));
  background: linear-gradient(transparent 60%, rgba(221, 180, 65, 0.3) 0%);
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__body__notice .notice__line span {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(52%, transparent), color-stop(0%, rgba(221, 180, 65, 0.3)));
    background: linear-gradient(transparent 52%, rgba(221, 180, 65, 0.3) 0%);
  }
}
.p_contact__content .contact .contact-sale__inner__body__notice .notice__tx {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin-inline: 0.375rem;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-sale__inner__body__notice .notice__tx {
    display: none;
  }
}
.p_contact__content .contact .contact-sale__inner__body__line {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__body__line {
    text-align: center;
  }
}
.p_contact__content .contact .contact-sale__inner__body__fax {
  margin-block: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__body__fax {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 0.625rem;
    width: 100%;
    margin-inline: auto;
    text-align: center;
    margin-block: 1.375rem 1.5rem;
  }
}
.p_contact__content .contact .contact-sale__inner__body__fax .fax__title {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__body__fax .fax__title {
    font-size: 1.0625rem;
    letter-spacing: 0.07em;
  }
}
.p_contact__content .contact .contact-sale__inner__body__fax .fax__number {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.625rem;
  border-bottom: solid 1px #2E1911;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-sale__inner__body__fax .fax__number {
    letter-spacing: 0.13em;
  }
}
.p_contact__content .contact .contact-sale__inner__body__fax .fax__number span {
  padding-block: 0.25rem;
}
.p_contact__content .contact .contact-form {
  width: 100%;
  max-width: 60%;
  padding-block: 4.375rem;
  padding-inline: 3.75rem;
  border-left: solid 1px rgba(46, 25, 17, 0.1);
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-form {
    padding-inline: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form {
    padding-block: 2.5rem 3.5rem;
    padding-inline: 0rem;
    max-width: 100%;
    border-left: none;
    border-top: solid 1px rgba(46, 25, 17, 0.1);
    padding-inline: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .p_contact__content .contact .contact-form {
    padding-inline: 1.5rem;
  }
}
.p_contact__content .contact .contact-form__inner__header {
  border-bottom: #2E1911 solid 1px;
  padding-block: 0.625rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-form__inner__header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-block: 0.375rem;
  }
}
.p_contact__content .contact .contact-form__inner__header__title {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.96875rem + 0.125vw, 1.0625rem);
  line-height: 1.6;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-form__inner__header__title {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner__header__title {
    letter-spacing: 0.07em;
  }
}
.p_contact__content .contact .contact-form__inner__header__caution {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.8125rem;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-form__inner__header__caution {
    display: block;
    margin-bottom: 0.625rem;
    letter-spacing: 0.07em;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner__header__caution {
    margin-bottom: 0.5rem;
  }
}
.p_contact__content .contact .contact-form__inner__header__caution .required-mark {
  margin-left: 3px;
  color: #DB2424;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner .contact__container {
    margin-top: 1.625rem;
  }
}
.p_contact__content .contact .contact-form__inner .contact__list:first-child {
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner .contact__list:first-child {
    padding-top: 0rem;
  }
}
.p_contact__content .contact .contact-form__inner .contact__list + .contact__list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner .contact__list + .contact__list {
    margin-top: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner .contact__list + .personalinfo {
    margin-top: 1.5rem;
  }
  .p_contact__content .contact .contact-form__inner .contact__list + .personalinfo .pp__tx {
    text-align: left;
  }
  .p_contact__content .contact .contact-form__inner .contact__list + .personalinfo .pp__link {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 3px;
  }
}
.p_contact__content .contact .contact-form__inner .contact__list__title--jp {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner .contact__list__title--jp {
    letter-spacing: 0.07em;
    font-size: 0.9375rem;
  }
}
.p_contact__content .contact .contact-form__inner .contact__list__title--en {
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.6875rem;
  color: #665D5A;
  margin-top: 0.6875rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1040px) {
  .p_contact__content .contact .contact-form__inner .contact__list__title--en {
    margin-top: 0.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner .contact__list__title--en {
    margin-top: 0.25rem;
    letter-spacing: 0.07em;
  }
}
.p_contact__content .contact .contact-form__inner .contact__list__label {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.8125rem;
  padding: 0.25rem 0.375rem;
  background: rgba(46, 25, 17, 0.1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p_contact__content .contact .contact-form__inner .contact__list__label {
    margin-block: 0.375rem;
    letter-spacing: 0.07em;
  }
}
.p_contact__content .contact .contact-form__inner .contact__list__textarea .contact__list__title {
  width: 100%;
}
.p_contact__content .contact .contact-form__inner .contact__list__textarea .input_area {
  width: 100%;
  margin-top: 0.875rem;
}

.p_contact-complete__content {
  position: relative;
}
.p_contact-complete .intro {
  padding-block: 5rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p_contact-complete .intro {
    padding-block: 3.5rem 0;
  }
}
.p_contact-complete .intro__lead {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(1.1875rem, 1.03125rem + 0.625vw, 1.5rem);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p_contact-complete .intro__lead {
    letter-spacing: 0.07em;
  }
}
.p_contact-complete .intro__sentence {
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 0.875rem;
  margin-top: 1.625rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p_contact-complete .intro__sentence {
    text-align: justify;
    letter-spacing: 0.07em;
    margin-top: 1.75rem;
  }
}
.p_contact-complete .intro__sentence + .intro__sentence {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p_contact-complete .intro__sentence + .intro__sentence {
    margin-top: 1.25rem;
  }
}
.p_contact-complete .contact__more {
  margin-inline: auto;
  margin-block: 4.375rem 6.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
@media screen and (max-width: 768px) {
  .p_contact-complete .contact__more {
    margin-block: 3.125rem 4.375rem;
  }
}/*# sourceMappingURL=contact.css.map */