@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*, ::before, ::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, main, aside, figure, figcaption {
  display: block;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  background: #f3efeb;
  overflow-x: hidden;
}

a {
  color: inherit;
}

body.is-fixed {
  overflow: hidden;
}

.c-drawer__icon {
  position: fixed;
  opacity: 0;
  top: 10px;
  right: 10px;
  z-index: 41;
  -webkit-transition: -webkit-transform 0.3s ease-in 0s;
  transition: -webkit-transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
}
.c-drawer__icon.is-show {
  opacity: 1;
  visibility: visible;
}
.c-drawer__icon.is-active .c-drawer__icon__bars1 {
  top: 28.7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #4a4a4a;
}
.c-drawer__icon.is-active .c-drawer__icon__bars2 {
  display: none;
}
.c-drawer__icon.is-active .c-drawer__icon__bars3 {
  top: 28.7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #4a4a4a;
}

.c-drawer__icon__bars {
  width: 60px;
  height: 60px;
  background: #4a4a4a;
  border-radius: 50%;
  display: block;
  position: relative;
}
.c-drawer__icon__bars.is-active {
  background: #fff;
}

.c-drawer__icon__bars1,
.c-drawer__icon__bars2,
.c-drawer__icon__bars3 {
  position: absolute;
  width: 27px;
  height: 2.25px;
  background: #fff;
  top: 0;
  left: 17px;
}

.c-drawer__icon__bars1 {
  top: 20px;
}

.c-drawer__icon__bars2 {
  top: 28.7px;
}

.c-drawer__icon__bars3 {
  top: 37.2px;
}

.c-drawer__content {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: 375px;
  background: #4a4a4a;
  color: #fff;
  height: 100%;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform 0.3s ease-in 0s;
  transition: -webkit-transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s;
  transition: transform 0.3s ease-in 0s, -webkit-transform 0.3s ease-in 0s;
  overflow-y: auto;
  bottom: 0;
}
.c-drawer__content.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.c-drawer__list__img {
  padding-top: 30px;
  padding-left: 14px;
  font-family: "Oswald";
}

.c-drawer__list {
  margin-left: 40px;
  margin-top: 35px;
}
.c-drawer__list:not(:first-child) {
  margin-top: 20px;
}

@media screen and (min-width: 1200px) {
  .c-drawer_img__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .c-drawer_img__link:hover {
    opacity: 0.7;
  }
}
.c-drawer_img__link img {
  width: 120px;
  height: 64px;
}

@media screen and (min-width: 1200px) {
  .c-drawer__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .c-drawer__link:hover {
    opacity: 0.7;
  }
}

.c-drawer__title {
  font-size: 24px;
  letter-spacing: 2.88px;
  font-family: "Oswald";
}

.c-drawer__sub {
  margin-left: 12px;
  font-size: 10px;
}
.c-drawer__sub span {
  padding-right: 12px;
}

.c-drawer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-drawer__sns {
  margin-top: 50px;
}

.c-drawer__sns__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-drawer__sns__list:not(:first-child) {
  margin-left: 32px;
}
.c-drawer__sns__list img {
  width: 40px;
  height: 40px;
}

.c-drawer__bg {
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: opacity 1s, visibility 0s ease 1s;
  transition: opacity 1s, visibility 0s ease 1s;
  opacity: 0;
  visibility: hidden;
}
.c-drawer__bg.is-active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 39;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 1;
  visibility: visible;
}

.header {
  background-color: #4a4a4a;
  font-family: "Oswald";
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-nav-item + .header-nav-item {
  margin-top: 17px;
}
.header-contents {
  border-top: 1px solid #fff;
  display: none;
}
.header-container {
  position: relative;
}
.header-logo {
  display: inline-block;
  padding: 0px 24px 14px;
  font-size: 20px;
  color: #fff;
}
.header-menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 36px;
  overflow: hidden;
  color: transparent;
  background: url(../../img/bg_menu.png) center center no-repeat;
  background-size: 100% auto;
}
.header-menu-button.is-checked {
  background: url(../../img/bg_menu-close.png) center center no-repeat;
  background-size: 100% auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
.button-bg {
  background-color: #fff;
}
.button-bg .button-text {
  color: #4a4a4a;
}
.button-border {
  border: 1px solid #fff;
}
.button-border .button-text {
  color: #fff;
}
.button-icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button-icon-path {
  fill: #fff;
}
.button-icon-path-contact {
  fill: #4a4a4a;
}
.button-text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 573px;
  }
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
  }
  .header {
    position: relative;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 50px 20px;
  }
  .header-container {
    width: 160px;
    margin: 0 auto;
    top: 50px;
  }
  .header-menu-button {
    display: none;
  }
  .header-logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header-contents {
    display: block;
    border: none;
  }
}
@media screen and (min-width: 1200px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
  }
  .header {
    position: relative;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 50px 20px;
  }
  .header-container {
    width: 160px;
    margin: 0 auto;
    top: 50px;
  }
  .header-menu-button {
    display: none;
  }
  .header-logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header-contents {
    display: block;
    border: none;
  }
  .button {
    -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button-icon-path {
    fill: #4a4a4a;
  }
  .button:hover .button-text {
    color: #4a4a4a;
  }
  .button-bg {
    color: #4a4a4a;
  }
  .button-bg:hover {
    opacity: 0.7;
  }
}
.fv {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .fv {
    padding-top: 60%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fv {
    padding-top: 55%;
  }
}
.fv-img img {
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .fv-img img {
    position: absolute;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fv-img img {
    position: absolute;
    height: 573px;
  }
}
.fv-contents {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 209px;
  background: url(../../img/sp/bg_fv.png) center center no-repeat;
  background-size: 100% auto;
  padding: 32px;
}
@media screen and (max-width: 767px) {
  .fv-contents {
    height: 160px;
    padding: 20px 32px;
  }
}
.fv-heading-main {
  display: block;
  font-size: 40px;
  font-family: "Oswald";
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .fv-heading-main {
    font-size: 32px;
  }
}
.fv-heading-sub {
  margin-top: 12px;
  display: block;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .fv-heading-sub {
    font-size: 12px;
  }
}

.section {
  padding: 48px 0;
}
.section-inner {
  padding: 0 32px;
}
.section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
.section-head-center {
  text-align: center;
}
.section-head-main {
  font-family: "Oswald";
  font-size: 40px;
  letter-spacing: 0.1em;
}
.section-head-sub {
  font-size: 11px;
}
.section-lead-text {
  font-size: 16px;
  line-height: 1.6;
}
.section-contents {
  margin-top: 40px;
}

.service-item + .service-item {
  margin-top: 40px;
}
.service-item-img {
  text-align: center;
  margin-bottom: 14px;
}
.service-item-name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.service-item-text {
  font-size: 14px;
  line-height: 1.6;
}

.works {
  background-color: #fafafa;
}
.works-item + .works-item {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .works-item {
    text-align: center;
  }
}
.works-item-img {
  margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
  .works-item-img {
    text-align: center;
  }
}
.works-item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .works-item-img img {
    width: 480px;
  }
}
.works-item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.works-item-link {
  text-decoration: underline;
  font-size: 14px;
}

.about-container {
  padding-bottom: 27px;
}
.about-img {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .about-img {
    text-align: center;
  }
}
.about-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .about-img img {
    max-height: 480px;
  }
}
.about-text {
  font-size: 16px;
  line-height: 1.6;
}
.about-text + .about-text {
  margin-top: 1em;
}

.flow {
  background-color: #fafafa;
}
.flow-list {
  margin-top: 64px;
}
.flow-item {
  position: relative;
  border: 1px solid #808080;
  padding: 46px 16px 24px;
}
.flow-item + .flow-item {
  margin-top: 46px;
}
.flow-item-num {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #4a4a4a;
  color: #fff;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flow-item-img {
  margin-bottom: 24px;
  text-align: center;
}
.flow-item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.flow-item-text {
  font-size: 14px;
  line-height: 1.6;
}

.message {
  background: #fafafa;
}
.message-img {
  margin-bottom: 32px;
  text-align: center;
}
.message-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .message-img img {
    max-height: 480px;
  }
}
.message-text {
  font-size: 16px;
  line-height: 1.6;
}

.page-bottom {
  color: #fff;
}
.page-bottom-item {
  padding: 40px;
}
.page-bottom-item-contact {
  background-color: #6f6f6f;
}
.page-bottom-item-twitter {
  background-color: #4a4a4a;
}

.footer {
  text-align: center;
  padding: 7px;
}
.footer-copy {
  font-size: 11px;
  font-family: "Noto Sans JP";
}

@media screen and (min-width: 1200px) {
  .section-inner {
    max-width: 944px;
    margin: 0 auto;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .section-head-main {
    font-size: 60px;
  }
  .fv-contents {
    background: url(../../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 94px;
  }
  .service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .service-item + .service-item {
    margin-top: 0;
  }
  .works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
    row-gap: 30px;
  }
  .works-item + .works-item {
    margin-top: 0;
  }
  .about-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
  .about-img img {
    width: 328px;
  }
  .flow-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .flow-item + .flow-item {
    margin-top: 0;
  }
  .message-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bottom-item {
    padding: 54px 10px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section-head-main {
    font-size: 54px;
  }
  .fv-contents {
    top: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
  .service-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .service-item + .service-item {
    margin-top: 0;
  }
  .flow-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
  .flow-item + .flow-item {
    margin-top: 0;
  }
  .about-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
  .about-img img {
    width: 328px;
  }
  .message-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
  .page-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page-bottom-item {
    padding: 54px 10px;
  }
  .works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
    row-gap: 30px;
  }
  .works-item + .works-item {
    margin-top: 0;
  }
}
.c-to-top__img {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 44px;
  height: 44px;
  bottom: 20px;
  right: 0px;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .c-to-top__img {
    bottom: 8px;
    right: 0px;
  }
}
@media screen and (min-width: 1200px) {
  .c-to-top__img:hover {
    opacity: 0.7 !important;
  }
}
.c-to-top__img.is-show {
  opacity: 1;
  visibility: visible;
}

.p-contact {
  max-width: 688px;
  margin: 0 auto;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact textarea {
  width: 100%;
  border: 1px solid #382620;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 16px;
}
.p-contact input[type=text]::-webkit-input-placeholder, .p-contact input[type=email]::-webkit-input-placeholder, .p-contact input[type=tel]::-webkit-input-placeholder, .p-contact textarea::-webkit-input-placeholder {
  color: rgb(204, 204, 204);
}
.p-contact input[type=text]::-moz-placeholder, .p-contact input[type=email]::-moz-placeholder, .p-contact input[type=tel]::-moz-placeholder, .p-contact textarea::-moz-placeholder {
  color: rgb(204, 204, 204);
}
.p-contact input[type=text]:-ms-input-placeholder, .p-contact input[type=email]:-ms-input-placeholder, .p-contact input[type=tel]:-ms-input-placeholder, .p-contact textarea:-ms-input-placeholder {
  color: rgb(204, 204, 204);
}
.p-contact input[type=text]::-ms-input-placeholder, .p-contact input[type=email]::-ms-input-placeholder, .p-contact input[type=tel]::-ms-input-placeholder, .p-contact textarea::-ms-input-placeholder {
  color: rgb(204, 204, 204);
}
.p-contact input[type=text]::placeholder,
.p-contact input[type=email]::placeholder,
.p-contact input[type=tel]::placeholder,
.p-contact textarea::placeholder {
  color: rgb(204, 204, 204);
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel] {
  height: 48px;
}
.p-contact textarea {
  height: 240px;
  resize: none;
}

.p-contact__top {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact__top {
    padding-bottom: 40px;
  }
}

.p-contact__top__title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__top__title {
    font-size: 20px;
  }
}

.p-contact__top__text {
  margin-top: 28px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-contact__top__text {
    font-size: 14px;
  }
}

.p-contact__form__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-contact__form__list__item:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact__form__list__item {
    display: block;
  }
}

.p-contact__form__list__item__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 170px;
          flex: 0 0 170px;
  padding-top: 13px;
  font-weight: 600;
  position: relative;
}
.p-contact__form__list__item__title::after {
  position: absolute;
  content: "必須";
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  padding: 1px 6px;
  background-color: #a98c5f;
  color: #fff;
  margin-left: 8px;
  margin-top: 3px;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .p-contact__form__list__item__title {
    padding-top: 0;
  }
}

.p-contact__form__list__item__title1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 170px;
          flex: 0 0 170px;
  font-weight: 600;
  padding-top: 13px;
}

.p-contact__form__list__item__input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-left: 28px;
}
@media screen and (max-width: 767px) {
  .p-contact__form__list__item__input {
    margin-left: 0px;
    margin-top: 8px;
  }
}

.p-contact__form__list__item__input__wrap {
  margin-top: 13px;
}

.p-contact__form__list__item__input__wrap__radio {
  display: block;
  position: relative;
}
.p-contact__form__list__item__input__wrap__radio:not(:first-child) {
  margin-top: 16px;
}

.p-contact__form__list__item__input__wrap__radio__input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-contact__form__list__item__input__wrap__radio__input:checked + .p-contact__form__list__item__input__wrap__radio__part::after {
  display: block;
}
.p-contact__form__list__item__input__wrap__radio__input:checked + .p-contact__form__list__item__input__wrap__radio__part::before {
  outline: none;
}
.p-contact__form__list__item__input__wrap__radio__input:focus + .p-contact__form__list__item__input__wrap__radio__part::before {
  outline: -webkit-focus-ring-color auto 1px;
}
.p-contact__form__list__item__input__wrap__radio__input:hover + .p-contact__form__list__item__input__wrap__radio__part::before {
  outline: -webkit-focus-ring-color auto 1px;
}

.p-contact__form__list__item__input__wrap__radio__part {
  margin-left: 35px;
}
.p-contact__form__list__item__input__wrap__radio__part::before {
  position: absolute;
  content: "";
  display: block;
  background: #fff;
  width: 24px;
  height: 24px;
  border: 1px solid #382620;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.p-contact__form__list__item__input__wrap__radio__part::after {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  background: #a98c5f;
  border-radius: 50%;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 6px;
  display: none;
}

.p-contact__form__text {
  margin-top: 40px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-contact__form__text {
    margin-top: 20px;
  }
}

.p-contact__form__submit {
  text-align: center;
  margin-top: 40px;
}

.p-contact__form__submit__button {
  font-weight: 600;
  text-align: center;
  display: inline-block;
  padding: 24px 118px;
  background-color: #222222;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
}
.p-contact__form__submit__button:before {
  content: "";
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #222222;
}
.p-contact__form__submit__button:after {
  content: "";
  position: absolute;
  top: 7px;
  right: -7px;
  width: 1px;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #222222;
}
.p-contact__form__submit__button:hover {
  background-color: #222222;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
  -webkit-transform: translate(6px, 6px);
          transform: translate(6px, 6px);
}
.p-contact__form__submit__button:hover:before {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}
.p-contact__form__submit__button:hover::after {
  -webkit-transform: translate(-6px, -6px);
          transform: translate(-6px, -6px);
}

.p-contact-message {
  display: none;
}

.p-contact-message__top {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-message__top {
    font-size: 20px;
  }
}

.p-contact-message__sub {
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-contact-message__sub {
    font-size: 14px;
  }
}

.above-link {
  text-decoration: underline;
  font-size: 22px;
}

.above-img {
  margin-top: 40px;
}