@charset "UTF-8";
/* 共通設定 */
.zen-kaku-gothic-new-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.dnp-shuei-nshogomincho-std {
  font-family: "dnp-shuei-nshogomincho-std", sans-serif;
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  background: #f7faff;
  color: #222;
}

h1,
h2,
h3 {
  font-weight: bold;
  margin: 0 0 16px 0;
}

h2 span {
  font-size: 1rem;
}

div,
p,
ul,
li,
a,
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333333;
  list-style: none;
  font-weight: 500;
  text-decoration: none;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sp_only {
  display: none;
}

section,
.section {
  width: 100%;
  padding: 60px 0;
  position: relative;
  z-index: 10;
}
section .wrap_content,
.section .wrap_content {
  display: flex;
  flex-direction: column;
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ヘッダー */
#header.pc_only {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 72px;
  background: #9D833E;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 100;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
#header.pc_only .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1200px;
}
#header.pc_only .menu .logo {
  width: auto;
}
#header.pc_only .menu .logo img {
  height: 36px;
}
#header.pc_only .menu .list_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  border-radius: 30px;
}
#header.pc_only .menu .list_menu .item_menu {
  width: 170px;
  height: 48px;
  line-height: 48px;
  font-weight: 600;
  border-left: solid 1px rgba(255, 255, 255, 0.35);
}
#header.pc_only .menu .list_menu .item_menu a {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
#header.pc_only .menu .list_menu .item_menu:nth-last-child(1) {
  border-right: solid 1px rgba(255, 255, 255, 0.35);
}

/* お問い合わせフォーム */
.main-visual.contact {
  width: 100%;
  height: auto;
  padding: 0;
  overflow: hidden;
}
.main-visual.contact .main-img {
  width: 100%;
  height: auto;
}
.main-visual.contact .main-copy {
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.main-visual.contact::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-header {
  text-align: center;
  margin: 32px 0;
}

.contact-header h1 {
  font-size: 24px;
}

.contact-header ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header ul li {
  background: #9D833E;
  opacity: 0.7;
  border-radius: 20px;
  list-style: none;
  position: relative;
}

.contact-header ul li.active {
  background: #9D833E;
  opacity: 1;
  border-radius: 20px;
  list-style: none;
  position: relative;
}

.contact-header ul li::after {
  content: url(./img/arrow.png);
  position: absolute;
  top: 20px;
  right: -25px;
  width: 20px;
  height: 20px;
}

.contact-header ul li:nth-child(3):after {
  display: none;
}

.contact-header ul li p {
  color: #fff;
  padding: 8px 32px;
}

.contact-form-section {
  background: #fff;
  padding: 24px;
  max-width: 900px;
  margin: 40px auto 40px auto;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 119, 200, 0.07);
}

.contact-form {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 18px;
}

.contact-form th {
  text-align: left;
  font-weight: 600;
  width: 190px;
  vertical-align: top;
  padding-right: 12px;
  font-size: 1rem;
}

.contact-form td {
  width: auto;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #b3e0ff;
  border-radius: 6px;
  font-size: 1rem;
  background: #f7faff;
  box-sizing: border-box;
  transition: border 0.2s;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  border: 1.5px solid #9D833E;
  outline: none;
  background: #eaf6ff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.required {
  color: #fff;
  background: #d32f2f;
  font-size: 0.85em;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.optional {
  color: #fff;
  background: #888;
  font-size: 0.85em;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.privacy-policy {
  margin: 32px 0 16px 0;
  font-size: 1rem;
}

.privacy-policy label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.privacy-policy input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #9D833E;
}

.form-btn-wrap {
  text-align: center;
  margin-top: 24px;
}

.submit-btn {
  background: #9D833E;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 40px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 119, 200, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #9D833E;
}

.confirm-box,
.send-box {
  max-width: 800px;
  margin: 32px auto;
  text-align: center;
}

input[type=submit] {
  margin-top: 24px !important;
  width: 200px;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  background: #9D833E;
  transition: 0.3s;
}
input[type=submit]:hover {
  opacity: 0.8;
}
input[type=submit][name=btn_submit] {
  background: #9D833E;
}
input[type=submit][name=btn_back] {
  background: #ccc;
  color: #333333;
}

.confirm-box button {
  background: #9D833E;
  padding: 24px;
  color: #fff;
  border-radius: 10px;
}

.send-box {
  max-width: 500px;
  background: #E4D271;
  box-shadow: 1px 1px #333;
  padding: 32px;
  border-radius: 10px;
}

.element_wrap {
  display: flex;
  align-items: center;
  padding: 16px;
}

.element_wrap label {
  max-width: 300px;
  width: 100%;
}

.element_wrap input,
.element_wrap textarea {
  width: 100%;
  background: rgba(108, 117, 125, 0.2745098039);
  border-radius: 5px;
  padding: 8px;
}

.element_wrap textarea {
  height: 200px;
}

.element_wrap p {
  display: flex;
  width: 100%;
  text-align: left;
}

.element_wrap p input {
  width: 10%;
}

.element_wrap .link {
  text-decoration: underline;
  display: inline-block;
  color: #d32f2f;
}

.error_list {
  padding: 10px 30px;
  color: #ff2e5a;
  font-size: 86%;
  text-align: left;
  border: 1px solid #ff2e5a;
  border-radius: 5px;
}

.button,
.btn_send,
.btn_back {
  text-align: center;
}
.button input,
.btn_send input,
.btn_back input {
  cursor: pointer;
  transition: 0.3s;
}
.button input:hover,
.btn_send input:hover,
.btn_back input:hover {
  opacity: 0.8;
  transition: 0.3s;
}

form.confirm {
  text-align: center;
}

form.confirm .element_wrap {
  padding: 8px;
}

form.confirm input[type=submit i] {
  margin: 0 16px;
}

.send-box {
  text-align: center;
}
.send-box a {
  display: flex;
  width: 200px;
  height: 36px;
  margin: 12px auto 0;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background: #fff;
  border-radius: 6px;
}

#footer {
  padding: 36px 0;
  box-sizing: border-box;
  background: #333333;
}
#footer .wrap_content {
  gap: 40px;
}
#footer .cont_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .cont_footer .left_footer {
  display: flex;
  align-items: center;
  gap: 8px;
}
#footer .cont_footer .left_footer h1 {
  width: 230px;
}
#footer .cont_footer .left_footer h1 img {
  height: 100%;
}
#footer .cont_footer .left_footer .txt_footer {
  font-family: "dnp-shuei-nshogomincho-std", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}
#footer .cont_footer .right_footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#footer .cont_footer .right_footer .list_ft_main {
  display: flex;
  justify-content: end;
  gap: 36px;
}
#footer .cont_footer .right_footer .list_ft_main .item_ft_main {
  font-size: 16px;
  font-weight: 500;
}
#footer .cont_footer .right_footer .list_ft_main .item_ft_main a {
  color: #fff;
  font-weight: 500;
}
#footer .cont_footer .right_footer .list_ft_sub {
  display: flex;
  justify-content: end;
  gap: 24px;
}
#footer .cont_footer .right_footer .list_ft_sub .item_ft_sub a {
  color: #fff;
}
#footer .copyright {
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

@media screen and (max-width: 1079px) {
  .sp_only {
    display: block;
  }
  .pc_only {
    display: none;
  }
  .wrap_content {
    width: 100vw;
  }
  .main-visual.contact {
    width: 100%;
    height: auto;
    padding: 0;
    overflow: hidden;
  }
  .main-visual.contact .main-img {
    width: 100%;
    height: auto;
  }
  .main-visual.contact .main-copy {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .main-visual.contact::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.5;
    position: absolute;
    top: 0;
    left: 0;
  }
  .contact-header ul {
    padding: 0 18px;
    gap: 14px;
  }
  .contact-header ul li p {
    color: #fff;
    padding: 4px 8px;
  }
  .contact-form table {
    padding: 16px;
    border-spacing: 0 8px;
  }
  .contact-form-section {
    padding: 24px 0 16px 0;
    border-radius: 0;
    box-shadow: none;
  }
  .contact-form {
    width: 98%;
    padding: 0 2px;
  }
  .contact-form th {
    /* width: 100px; */
    font-size: 0.95rem;
    padding-right: 4px;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form input[type=tel],
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 10px 8px;
  }
  .form-btn-wrap {
    margin-top: 16px;
  }
  .privacy-policy {
    margin: 16px 0 16px 0;
  }
  .element_wrap p,
  .element_wrap label {
    display: flex;
    gap: 1.6vw;
    width: 100%;
    text-align: left;
    font-size: 14px;
    vertical-align: middle;
    text-wrap: nowrap;
  }
  .element_wrap p input {
    margin: 0;
  }
  .required {
    display: inline-block;
    width: 6.4vw;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    color: #fff;
    background: #d32f2f;
    font-size: 0.85em;
    margin: 0;
    margin-left: 6px;
    border-radius: 10px;
    vertical-align: middle;
  }
  .optional {
    display: inline-block;
    width: 6.4vw;
    height: 1.5em;
    line-height: 1.5em;
    text-align: center;
    color: #fff;
    background: #888;
    font-size: 0.85em;
    margin: 0;
    margin-left: 6px;
    border-radius: 10px;
    vertical-align: middle;
  }
  .element_wrap .link {
    text-decoration: underline;
    display: block;
    color: #d32f2f;
  }
  .send-box {
    width: 90vw;
  }
  #footer {
    padding: 8vw 3.2vw 14.4vw;
    box-sizing: border-box;
    background: #333333;
  }
  #footer .wrap_content {
    width: 100vw;
    gap: 8vw;
  }
  #footer .wrap_content .cont_footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 6.4vw;
    width: 90%;
  }
  #footer .wrap_content .cont_footer .left_footer {
    display: flex;
    flex-direction: column;
  }
  #footer .wrap_content .cont_footer .left_footer h1 {
    width: 31.2vw;
  }
  #footer .wrap_content .cont_footer .left_footer h1 img {
    height: 100%;
  }
  #footer .wrap_content .cont_footer .left_footer .txt_footer {
    font-size: 4vw;
    line-height: 1;
    color: #fff;
  }
  #footer .wrap_content .cont_footer .right_footer {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  #footer .wrap_content .cont_footer .right_footer .list_ft_main {
    display: flex;
    flex-direction: column;
    gap: 3.2vw;
  }
  #footer .wrap_content .cont_footer .right_footer .list_ft_main .item_ft_main {
    font-size: 3.2vw;
    font-weight: 500;
  }
  #footer .wrap_content .cont_footer .right_footer .list_ft_main .item_ft_main a {
    display: block;
    width: 100%;
    text-align: right;
    color: #fff;
  }
  #footer .wrap_content .cont_footer .right_footer .list_ft_sub {
    display: flex;
    flex-direction: column;
    gap: 1.8666666667vw;
  }
  #footer .wrap_content .cont_footer .right_footer .list_ft_sub .item_ft_sub {
    font-size: 1.8666666667vw;
  }
  #footer .wrap_content .cont_footer .right_footer .list_ft_sub .item_ft_sub a {
    display: block;
    width: 100%;
    color: #fff;
  }
  #footer .wrap_content .copyright {
    width: 100%;
    text-align: center;
    font-size: 2.4vw;
    color: #fff;
  }
}/*# sourceMappingURL=style_contact.css.map */