@charset "UTF-8";
/* ---------------------------------------------------------
    font
--------------------------------------------------------- */
/* ---------------------------------------------------------
    fade
--------------------------------------------------------- */
.fadeIn_up {
  opacity: 0;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn_up.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

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

.fadeIn {
  opacity: 0;
  -webkit-transition: 2s;
  transition: 2s;
}

.fadeIn.is-show {
  opacity: 1;
}

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

.oneTxt {
  visibility: hidden;
}

.oneTxt.is-ready {
  visibility: visible;
}

.oneTxt span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}

/* ---------------------------------------------------------
    variable
--------------------------------------------------------- */
body {
  overflow-x: hidden;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  color: #000;
}

img {
  width: 100%;
  vertical-align: top;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: auto;
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  width: 100%;
  padding: 25px 80px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
  transition: opacity .3s ease, transform .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  will-change: opacity, transform;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.header.is-hidden {
  opacity: 0;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  pointer-events: none;
}

.header.is-solid {
  background: #c1ad54;
}

.header .logo {
  width: 315px;
  position: relative;
}

.header .logo .link {
  position: absolute;
  inset: 0;
}

.header .sp_menu {
  display: none;
}

.header .navigation_pc nav .navi {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .navigation_pc nav .navi .navi_item {
  margin-right: 40px;
}

.header .navigation_pc nav .navi .navi_item:nth-child(3) {
  margin-right: 0;
}

.header .navigation_pc nav .navi .navi_item:last-child {
  margin-right: 0;
  margin-left: 60px;
  position: relative;
}

.header .navigation_pc nav .navi .navi_item:last-child::before {
  content: '';
  width: 1px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header .navigation_pc nav .navi .navi_item .link {
  text-decoration: none;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #fff;
}

.header .navigation_pc nav .navi .navi_item .link.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.header .navigation_pc nav .navi .navi_item .link.contact .icon {
  width: 20px;
}

.header .navigation_sp {
  display: none;
}

@media (max-width: 767px) {
  .header {
    padding: 20px 20px 10px;
  }
  .header .logo {
    width: 210px;
  }
  .header .sp_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  .header .sp_menu .icon {
    width: 30px;
    position: relative;
  }
  .header .sp_menu .icon .link {
    position: absolute;
    inset: 0;
  }
  .header .sp_menu .hamburger_menu {
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    width: 30px;
    height: 20px;
    padding: 0;
    background: transparent;
    border: 0;
    position: relative;
    cursor: pointer;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .sp_menu .hamburger_menu.active .bar:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar {
    width: 30px;
    height: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(1) {
    top: 0;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(2) {
    top: 10px;
  }
  .header .sp_menu .hamburger_menu .bar:nth-child(3) {
    top: 20px;
  }
  .header .navigation_pc {
    display: none;
  }
  .header .navigation_sp {
    width: 100%;
    padding: 100px 20px 60px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #c1ad54;
    display: block;
    position: fixed;
    top: -800%;
    left: 0;
    z-index: -1;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .header .navigation_sp.panelactive {
    top: 0;
  }
  .header .navigation_sp nav {
    width: 100%;
  }
  .header .navigation_sp nav .navi {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .header .navigation_sp nav .navi .navi_item .link {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
  }
  .header .navigation_sp nav .contact {
    margin: 100px auto 0;
    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;
    gap: 12px;
    position: relative;
  }
  .header .navigation_sp nav .contact::before {
    content: '';
    width: 300px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header .navigation_sp nav .contact .link {
    position: absolute;
    inset: 0;
  }
  .header .navigation_sp nav .contact .icon {
    width: 25px;
  }
  .header .navigation_sp nav .contact span {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 20px;
    color: #fff;
  }
  .header .navigation_sp nav .tel_link {
    display: block;
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin: 15px auto 0;
    text-align: center;
  }
  .header .navigation_sp nav .tel_link span {
    font-size: 28px;
  }
}

/* ---------------------------------------------------------
    footer
--------------------------------------------------------- */
.footer {
  background: #c1ad54;
  padding: 50px 0 20px;
}

.footer .logo {
  max-width: 315px;
  margin: auto;
}

.footer .icons {
  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;
  gap: 20px;
  margin-top: 10px;
}

.footer .icons .icon {
  width: 30px;
  position: relative;
}

.footer .icons .icon .link {
  position: absolute;
  inset: 0;
}

.footer .copy {
  margin-top: 55px;
}

.footer .copy .copyRight {
  display: block;
  text-align: center;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .copy .copyRight {
    font-size: 10px;
  }
}

/* ---------------------------------------------------------
    header
--------------------------------------------------------- */
.header {
  background: #c1ad54;
}

/* ---------------------------------------------------------
    pagevisual
--------------------------------------------------------- */
.page_visual {
  width: 100%;
  height: 220px;
  margin-top: 100px;
  position: relative;
  background: url(../images/contact/pageVisual.jpg) no-repeat center/cover;
}

.page_visual::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.page_visual .page_title {
  font-size: 32px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}

.page_visual .page_title .en {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
}

.page_visual .notes {
  width: 230px;
  height: 45px;
  background: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 20px;
  right: 40px;
}

.page_visual .notes span {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 767px) {
  .page_visual {
    height: 180px;
    margin-top: 70px;
  }
  .page_visual .page_title {
    font-size: 26px;
    gap: 5px;
  }
  .page_visual .page_title .en {
    font-size: 18px;
  }
  .page_visual .notes {
    width: 200px;
    height: 35px;
    bottom: 10px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page_visual .notes span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
  }
}

/* ---------------------------------------------------------
    tel
--------------------------------------------------------- */
.area_tel {
  margin-top: 80px;
}

.area_tel .text {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

.area_tel .link {
  display: block;
  text-decoration: none;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 40px;
  font-weight: 500;
  color: #c1ad54;
  margin: 30px auto 0;
  text-align: center;
}

.area_tel .link span {
  font-size: 65px;
}

.area_tel .others {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 28px;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .area_tel {
    margin-top: 60px;
  }
  .area_tel .text {
    font-size: 16px;
  }
  .area_tel .link {
    font-size: 24px;
    margin: 20px auto 0;
  }
  .area_tel .link span {
    font-size: 32px;
  }
  .area_tel .others {
    font-size: 18px;
    margin-top: 15px;
  }
}

/* ---------------------------------------------------------
    form
--------------------------------------------------------- */
.sect_form {
  margin: 100px 0;
}

.sect_form .form_area .sect_title {
  font-size: 24px;
  text-align: center;
  font-weight: 500;
}

.sect_form .form_area .form {
  margin: 30px auto 0;
  max-width: 865px;
}

.sect_form .form_area .form .form_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 185px 1fr;
      grid-template-columns: 185px 1fr;
  gap: 30px;
  margin-bottom: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.sect_form .form_area .form .form_item:last-child {
  margin-bottom: 0;
}

.sect_form .form_area .form .form_item p {
  display: contents;
}

.sect_form .form_area .form .form_item p .lbl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-top: 12px;
}

.sect_form .form_area .form .form_item p .lbl .req {
  font-size: 14px;
  color: #fff;
  background: #ef2828;
  padding: 1px 5px 2px;
}

.sect_form .form_area .form .form_item p br {
  display: none;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap {
  width: 100%;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_text {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  border: 0;
  background: #ede7cf;
  font-size: 16px;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_text::-webkit-input-placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_text:-ms-input-placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_text::-ms-input-placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_text::placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_textarea {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 290px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  border: 0;
  background: #ede7cf;
  font-size: 16px;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_textarea::-webkit-input-placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_textarea:-ms-input-placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_textarea::-ms-input-placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item p .wpcf7-form-control-wrap .cf_textarea::placeholder {
  color: #b2a674;
}

.sect_form .form_area .form .form_item .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
}

.sect_form .form_area .form .form_item .wrap::before {
  content: '〒';
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 10px;
  color: #000;
}

.sect_form .form_area .form .form_item .wrap p {
  display: contents;
}

.sect_form .form_area .form .form_item .wrap p .wpcf7-form-control-wrap .cf_text.post_code {
  max-width: 190px;
  margin-left: 25px;
}

.sect_form .form_area .form .form_item .wrap p br {
  display: none;
}

.sect_form .form_area .form .box {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 850px;
  height: 150px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1.5px solid #d8d2c2;
  overflow-y: scroll;
  margin: 40px auto 0;
}

.sect_form .form_area .form .box .text br {
  display: none;
}

.sect_form .form_area .form .box .text span {
  font-size: 14px;
  font-weight: 600;
}

.sect_form .form_area .form .box p {
  font-size: 14px;
  line-height: 1.7;
}

.sect_form .form_area .form .consent {
  text-align: center;
  margin-top: 15px;
}

.sect_form .form_area .form .consent p {
  display: contents;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  margin: 0;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label input[type="checkbox"] {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label input[type="checkbox"]:focus-visible + .wpcf7-list-item-label::before {
  outline: 2px solid #ef2828;
  outline-offset: 2px;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  border-color: #ef2828;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label {
  position: relative;
  padding-left: 28px;
  line-height: 1;
  font-size: 15px;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 18px;
  height: 18px;
  border: 1.5px solid #ef2828;
  background: #fff;
}

.sect_form .form_area .form .consent p .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  translate: 0 -60%;
  width: 6px;
  height: 10px;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  rotate: 45deg;
  -webkit-transition: border-color .15s ease;
  transition: border-color .15s ease;
}

.sect_form .form_area .form .cf_btn .btn {
  display: block;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 400px;
  height: 70px;
  background: #000;
  color: #fff;
  border-radius: 100px;
  font-size: 24px;
  font-weight: 500;
  margin: 50px auto 0;
  cursor: pointer;
}

.sect_form .form_area .form .cf_btn br {
  display: none;
}

.sect_form .form_area .form .cf_btn .wpcf7-spinner {
  display: none;
}

@media (max-width: 767px) {
  .sect_form {
    margin: 80px 0;
  }
  .sect_form .form_area .sect_title {
    font-size: 18px;
  }
  .sect_form .form_area .form .form_item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
  }
  .sect_form .form_area .form .cf_btn .btn {
    width: 280px;
    height: 50px;
    font-size: 18px;
    margin: 40px auto 0;
  }
}
/*# sourceMappingURL=contact.css.map */