@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
@media screen and (max-width: 1000px) {
  :root {
    --view-size: 750;
  }
}
/* -----------------------------------
common：基本
----------------------------------- */
abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1;
}

b {
  font-weight: normal;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* inner関係 */
.inner {
  max-width: 63rem;
  margin-inline: auto;
}

/* -----------------------------------
common：flex
----------------------------------- */
.row {
  display: flex;
  flex-wrap: wrap;
}

.column {
  flex-direction: column;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* -----------------------------------
common：display
----------------------------------- */
.all_dn {
  display: none;
}

@media (max-width: 1000px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 1000px) {
  .sp_db {
    display: block;
  }
}

/* -----------------------------------
common：position
----------------------------------- */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/* z-index */
.z_-10 {
  z-index: -10;
}

.z_10 {
  z-index: 10;
}

.z_20 {
  z-index: 20;
}

.z_30 {
  z-index: 30;
}

.z_40 {
  z-index: 40;
}

.z_50 {
  z-index: 50;
}

.z_8000 {
  z-index: 8000;
}

.z_9999 {
  z-index: 9999;
}

.shadow {
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1000px) {
  .shadow {
    box-shadow: 0 calc(8 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.25);
  }
}

/* 
ヘッダー：ヘッダー
----------------------------------- */
.header {
  width: 100%;
  position: fixed;
  background-color: #fff;
  padding: 0.5rem 0;
}
@media (max-width: 1000px) {
  .header {
    position: static;
    padding: calc(8 / var(--view-size) * 100vw) 0;
  }
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .header .inner {
    justify-content: center;
  }
}

.header_logo {
  width: 4.5rem;
}
@media (max-width: 1000px) {
  .header_logo {
    width: calc(72 / var(--view-size) * 100vw);
  }
}

@media (max-width: 1000px) {
  .header_nav {
    width: 100%;
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
  }
}

@media (max-width: 1000px) {
  .header_nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.header_nav_list {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media (max-width: 1000px) {
  .header_nav_list {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.header_nav_list li {
  width: 10rem;
  height: 4.5rem;
  text-align: center;
}
@media (max-width: 1000px) {
  .header_nav_list li {
    width: 50%;
    height: calc(100 / var(--view-size) * 100vw);
  }
}

.header_nav_list li a {
  display: block;
  height: 100%;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.25rem;
  transition: background-color 0.6s;
}
@media (max-width: 1000px) {
  .header_nav_list li a {
    position: relative;
    font-size: calc(28 / var(--view-size) * 100vw);
    line-height: 1.2;
    border-radius: 0;
  }
}

.nav_list_link01 a {
  background-color: #7B8B47;
  line-height: 1.1;
  color: #FFFFFF;
  padding-top: 0.625rem;
}
@media (max-width: 1000px) {
  .nav_list_link01 a {
    background-color: #D83006;
    padding-top: calc(18 / var(--view-size) * 100vw);
    padding-right: calc(32 / var(--view-size) * 100vw);
  }
}

.nav_list_link01 a:hover {
  background-color: #AEBB82;
}
@media (max-width: 1000px) {
  .nav_list_link01 a:hover {
    background-color: #EF5757;
  }
}

@media (max-width: 1000px) {
  .nav_list_link01 a span {
    color: #FFE200;
  }
}

.nav_list_link02 a {
  background-color: #fff;
  border: 0.125rem solid #7B8B47;
  line-height: 1.3;
  color: #7B8B47;
  padding-top: 0.8125rem;
  transition: color 0.6s, border-color 0.6s;
}
@media (max-width: 1000px) {
  .nav_list_link02 a {
    border-width: calc(2 / var(--view-size) * 100vw);
    padding-top: calc(14 / var(--view-size) * 100vw);
    padding-right: calc(34 / var(--view-size) * 100vw);
  }
}

.nav_list_link02 a:hover {
  color: #AEBB82;
  border-color: #AEBB82;
}

@media (max-width: 1000px) {
  .nav_list_link01 a::after,
  .nav_list_link02 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(93 / var(--view-size) * 100vw);
    transform: rotate(45deg) translateY(-50%);
    width: calc(11 / var(--view-size) * 100vw);
    aspect-ratio: 1/1;
    border: solid #FFFFFF;
    border-width: calc(3 / var(--view-size) * 100vw) calc(3 / var(--view-size) * 100vw) 0 0;
  }
}

@media (max-width: 1000px) {
  .nav_list_link02 a::after {
    right: calc(104 / var(--view-size) * 100vw);
    border-color: #7B8B47;
  }
}

/* 
フッター：フッター
----------------------------------- */
.footer {
  background-color: #7B8B47;
  padding: 0.9375rem 0 1.0625rem;
}
@media (max-width: 1000px) {
  .footer {
    padding: calc(20 / var(--view-size) * 100vw) 0 calc(120 / var(--view-size) * 100vw);
  }
}

.footer_copy {
  text-align: center;
}

.footer_copy small {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (max-width: 1000px) {
  .footer_copy small {
    font-size: calc(20 / var(--view-size) * 100vw);
    font-weight: 500;
    line-height: 1.4;
  }
}

/* 上からフェードイン */
.topin1 {
  opacity: 0;
  transform: translateY(20px);
}
.topin1.active {
  animation: 0.8s forwards topin;
}

/* 下からフェードイン */
.bottomin1 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin1.active {
  animation: 0.8s forwards bottomin;
}

.bottomin2 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin2.active {
  animation: 0.8s forwards 0.3s bottomin;
}

.bottomin3 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin3.active {
  animation: 0.8s forwards 0.6s bottomin;
}

.bottomin4 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin4.active {
  animation: 0.8s forwards 0.9s bottomin;
}

.bottomin5 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin5.active {
  animation: 0.8s forwards 1.2s bottomin;
}

.bottomin6 {
  opacity: 0;
  transform: translateY(-5%);
}
.bottomin6.active {
  animation: 0.8s forwards 1.5s bottomin;
}

.bounceIn {
  animation-name: bounceIn;
}

/* ペコペコへこむボタン */
.pekopeko {
  animation: pekopeko 2s infinite;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* 上からフェードイン */
@keyframes topin {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 下からフェードイン */
@keyframes bottomin {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 回転 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ふわふわ */
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* バウンス */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
/* ペコペコへこむボタン */
@keyframes pekopeko {
  0% {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    top: 0px;
  }
  10% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
    top: 3px;
  }
  20% {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    top: 0px;
  }
  30% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
    top: 3px;
  }
  40% {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    top: 0px;
  }
}
/* 
フォーム
----------------------------------- */
.contact {
  background-color: #F6F4E6;
  padding: 10.875rem 0 5rem;
}
@media (max-width: 1000px) {
  .contact {
    padding: calc(90 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
  }
}

.contact .inner {
  padding: 0 9.75rem;
}
@media (max-width: 1000px) {
  .contact .inner {
    padding: 0 calc(35 / var(--view-size) * 100vw);
  }
}

.contact_ttl {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1000px) {
  .contact_ttl {
    font-size: calc(48 / var(--view-size) * 100vw);
  }
}

.contact_ttl span {
  display: inline-block;
  padding-bottom: 0.75rem;
  border-bottom: 0.125rem solid #222222;
}
@media (max-width: 1000px) {
  .contact_ttl span {
    padding-bottom: calc(19 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
  }
}

.contact_txt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.4375rem;
}
@media (max-width: 1000px) {
  .contact_txt {
    font-size: calc(28 / var(--view-size) * 100vw);
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.contact_form {
  margin-top: 5.0625rem;
}
@media (max-width: 1000px) {
  .contact_form {
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.contact_form_item:not(:first-of-type) {
  margin-top: 2rem;
}
@media (max-width: 1000px) {
  .contact_form_item:not(:first-of-type) {
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.contact_form_other.contact_form_item {
  margin-top: 2.25rem;
}
@media (max-width: 1000px) {
  .contact_form_other.contact_form_item {
    margin-top: calc(48 / var(--view-size) * 100vw);
  }
}

.contact_form_item .custom-select,
.contact_form_item input,
.contact_form_item textarea {
  width: 100%;
  display: block;
  background-color: #FFFFFF;
  border: 0.0625rem solid #AAAAAA;
  border-radius: 0.5rem;
  padding: 0.6875rem 1rem;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .contact_form_item .custom-select,
  .contact_form_item input,
  .contact_form_item textarea {
    border-width: calc(2 / var(--view-size) * 100vw);
    border-radius: calc(8 / var(--view-size) * 100vw);
    padding: calc(17 / var(--view-size) * 100vw) calc(32 / var(--view-size) * 100vw);
    margin-top: calc(16 / var(--view-size) * 100vw);
    font-size: calc(28 / var(--view-size) * 100vw);
  }
}

.contact_form_item textarea {
  height: 3rem;
}
@media (max-width: 1000px) {
  .contact_form_item textarea {
    height: calc(80 / var(--view-size) * 100vw);
  }
}

/* カスタムセレクト */
.custom-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.0625rem;
  transform: translateY(-50%) rotate(135deg);
  width: 0.625rem;
  height: 0.625rem;
  border: solid #AAAAAA;
  border-width: 0.166875rem 0.166875rem 0 0;
}
@media (max-width: 1000px) {
  .custom-select::after {
    right: calc(35 / var(--view-size) * 100vw);
    width: calc(20 / var(--view-size) * 100vw);
    height: calc(20 / var(--view-size) * 100vw);
    border-width: calc(5.33 / var(--view-size) * 100vw) calc(5.33 / var(--view-size) * 100vw) 0 0;
  }
}

.custom-select.open::after {
  transform: translateY(-50%) rotate(-45deg);
}

.custom-select.open {
  border-radius: 0.5rem 0.5rem 0 0;
}
@media (max-width: 1000px) {
  .custom-select.open {
    border-radius: calc(8 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw) 0 0;
  }
}

.custom-select.open .options {
  display: block;
}

.options {
  display: none;
  position: absolute;
  z-index: 10;
  top: 2.875rem;
  left: 0;
  right: 0;
  margin-left: -0.0625rem;
  width: calc(100% + 0.125rem);
  border: 0.0625rem solid #AAAAAA;
  border-radius: 0 0 0.5rem 0.5rem;
  background: #fff;
}
@media (max-width: 1000px) {
  .options {
    top: calc(77 / var(--view-size) * 100vw);
    margin-left: calc(-2 / var(--view-size) * 100vw);
    width: calc(100% + 4 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
    border-radius: 0 0 calc(8 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
  }
}

.options li {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.6875rem 2.25rem;
}
@media (max-width: 1000px) {
  .options li {
    font-size: calc(28 / var(--view-size) * 100vw);
    font-weight: 500;
    padding: calc(17 / var(--view-size) * 100vw) calc(88 / var(--view-size) * 100vw);
  }
}

.options li:first-of-type {
  border-bottom: 0.0625rem solid #AAAAAA;
}
@media (max-width: 1000px) {
  .options li:first-of-type {
    border-width: calc(2 / var(--view-size) * 100vw);
  }
}

.options li:hover {
  background: #7B8B47;
  color: #FFFFFF;
}

.options li.selected::before {
  content: "✔ ";
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  color: #222222;
}
@media (max-width: 1000px) {
  .options li.selected::before {
    left: calc(32 / var(--view-size) * 100vw);
  }
}

.options li:hover.selected::before {
  color: #FFFFFF;
}

.contact_form_label {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .contact_form_label {
    font-size: calc(28 / var(--view-size) * 100vw);
  }
}

.form_label_req {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #D83006;
  padding: 0.0625rem 0.25rem;
  border-radius: 0.25rem;
  margin-left: 0.5rem;
}
@media (max-width: 1000px) {
  .form_label_req {
    font-size: calc(24 / var(--view-size) * 100vw);
    padding: calc(3 / var(--view-size) * 100vw) calc(8 / var(--view-size) * 100vw);
    border-radius: calc(8 / var(--view-size) * 100vw);
    margin-left: calc(16 / var(--view-size) * 100vw);
  }
}

/* チェックボックス */
.contact_form_checkbox {
  margin-top: 2rem;
}
@media (max-width: 1000px) {
  .contact_form_checkbox {
    margin-top: calc(40 / var(--view-size) * 100vw);
  }
}

.form_checkbox_box {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  margin-top: 0.75rem;
}
@media (max-width: 1000px) {
  .form_checkbox_box {
    -moz-column-gap: calc(32 / var(--view-size) * 100vw);
         column-gap: calc(32 / var(--view-size) * 100vw);
    margin-top: calc(24 / var(--view-size) * 100vw);
  }
}

.form_checkbox_input {
  cursor: pointer;
  display: flex;
  position: relative;
}

.form_checkbox_input input {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form_checkbox_input p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding-right: 2rem;
}
@media (max-width: 1000px) {
  .form_checkbox_input p {
    font-size: calc(32 / var(--view-size) * 100vw);
    padding-right: calc(64 / var(--view-size) * 100vw);
  }
}

.form_checkbox_input input::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.125rem solid #AAAAAA;
  background-color: #FFFFFF;
  border-radius: 0.25rem;
}
@media (max-width: 1000px) {
  .form_checkbox_input input::before {
    width: calc(48 / var(--view-size) * 100vw);
    height: calc(48 / var(--view-size) * 100vw);
    border-width: calc(2 / var(--view-size) * 100vw);
  }
}

.form_checkbox_input input:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  right: 0.125rem;
  transform: translateY(-50%);
  font-size: 1.125rem;
  color: #7B8B47;
}
@media (max-width: 1000px) {
  .form_checkbox_input input:checked::after {
    font-size: calc(36 / var(--view-size) * 100vw);
    right: calc(4 / var(--view-size) * 100vw);
  }
}

.contact_form_submit {
  width: 16rem;
  background-color: #7B8B47;
  border-radius: 6.25rem;
  overflow: hidden;
  transition: background-color 0.6s;
  box-shadow: 0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.15);
  margin-inline: auto;
  margin-top: 5rem;
}
@media (max-width: 1000px) {
  .contact_form_submit {
    width: calc(512 / var(--view-size) * 100vw);
    border-radius: calc(100 / var(--view-size) * 100vw);
    box-shadow: 0 calc(4 / var(--view-size) * 100vw) calc(4 / var(--view-size) * 100vw) 0 rgba(0, 0, 0, 0.15);
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}

.contact_form_submit:hover {
  background-color: #AEBB82;
}

.contact_form_submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  transform: translateY(-50%) rotate(45deg);
  width: 0.4375rem;
  height: 0.4375rem;
  border: solid #FFFFFF;
  border-width: 0.145625rem 0.145625rem 0 0;
}
@media (max-width: 1000px) {
  .contact_form_submit::after {
    right: calc(60 / var(--view-size) * 100vw);
    width: calc(15 / var(--view-size) * 100vw);
    height: calc(15 / var(--view-size) * 100vw);
    border-width: calc(4.66 / var(--view-size) * 100vw) calc(4.66 / var(--view-size) * 100vw) 0 0;
  }
}

.submit-btn {
  width: 100%;
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
  padding: 0.8125rem 0;
  padding-right: 1.1875rem;
}
@media (max-width: 1000px) {
  .submit-btn {
    font-size: calc(32 / var(--view-size) * 100vw);
    padding: calc(24 / var(--view-size) * 100vw) 0;
    padding-right: calc(37 / var(--view-size) * 100vw);
  }
}

.error {
  font-size: 1rem;
  font-weight: 700;
  color: #D83006;
  text-align: center;
  padding: 0.8125rem 0;
  margin: 5rem 0;
}
@media (max-width: 1000px) {
  .error {
    font-size: calc(30 / var(--view-size) * 100vw);
    padding: calc(24 / var(--view-size) * 100vw) 0;
    margin: calc(80 / var(--view-size) * 100vw) 0;
  }
}

/* 
フォーム : サンクス
----------------------------------- */
.thanks {
  background-color: #F6F4E6;
  padding: 10.875rem 0 5rem;
}
@media (max-width: 1000px) {
  .thanks {
    padding: calc(90 / var(--view-size) * 100vw) 0 calc(80 / var(--view-size) * 100vw);
  }
}

.thanks .inner {
  padding: 0 9.75rem;
}
@media (max-width: 1000px) {
  .thanks .inner {
    padding: 0 calc(35 / var(--view-size) * 100vw);
  }
}

.thanks_ttl {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1000px) {
  .thanks_ttl {
    font-size: calc(44 / var(--view-size) * 100vw);
  }
}

.thanks p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 5rem;
}
@media (max-width: 1000px) {
  .thanks p {
    font-size: calc(22 / var(--view-size) * 100vw);
    margin-top: calc(80 / var(--view-size) * 100vw);
  }
}/*# sourceMappingURL=form.css.map */