@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  font-family: "Toppan Bunkyu Midashi Mincho", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button {
  width: 300px;
  height: 70px;
  margin: 48px auto;
  padding: 14px 0 16px 0;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  text-decoration: none;
  color: #fff;
  background: #836D6D;
  border-radius: 30px;
  -webkit-box-shadow: 2px 2px 5px #b9b9b9;
          box-shadow: 2px 2px 5px #b9b9b9;
}

button:hover {
  opacity: 0.7;
}

p {
  text-align: justify;
}

li {
  list-style: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}

header {
  width: 100%;
  max-width: 100vw;
  height: 100px;
  background-image: url(../img/24073734_m.jpg);
  position: fixed;
  z-index: 999;
}

.heading {
  padding: 0 20px;
}

.footer-text p {
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  font-weight: bold;
}

/* =========================
      nav menu
=========================== */
nav {
  height: 100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

nav > :first-child {
  margin-right: auto;
  font-size: 24px;
  width: 100%;
}

.nav-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: auto;
}

.nav-list-item {
  list-style: none;
  padding: 10px 30px;
  text-align: center;
  color: #333;
}

.nav-list-item a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  position: relative;
}

#drawer_input {
  display: none;
}

.drawer_open {
  display: none;
}

.nav-list {
  display: block;
}

.nav-list-item a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-perspective-origin: 50% 50%;
          perspective-origin: 50% 50%;
  vertical-align: bottom;
  overflow: hidden;
}

.nav-list-item a {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 0px 30px;
  display: inline-block;
}

.nav-list-item a:hover {
  background-color: #836D6D;
  color: #fff;
}

.nav-list-item:last-child {
  background-color: #836D6D;
  margin: 0;
}

.nav-list-item:last-child a:hover {
  background-color: #fff;
  color: #836D6D;
}

.nav-list-item:last-child a {
  color: #fff;
}

a:hover {
  color: #836D6D;
}

footer {
  background-color: #836D6D;
}

footer p {
  font-size: 12px;
  color: #fff;
}

/* =========================
      pc版
=========================== */
@media screen and (min-width: 768px) {
  .pc-logo {
    display: block;
  }
  .sm-logo {
    display: none;
  }
  .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pc-logo {
    margin: auto 0;
  }
  .main-visual {
    width: 100%;
  }
  .main-visual {
    background-position: top;
    margin-top: 0;
    padding-top: 100px;
    height: 600px;
    position: inherit;
  }
  .nav-list-item a {
    padding: 0 10px;
    width: 100%;
  }
  .nav-list-item {
    padding: 0px;
    line-height: 100px;
  }
  .nav-list-item:last-child {
    height: 100%;
  }
  .nav-list-item:last-child a {
    line-height: 100px;
    width: 100%;
  }
}

/* =========================
      sp版
=========================== */
@media screen and (max-width: 768px) {
  html, body, header, nav, main, footer {
    width: 100%;
  }
  .pc-logo {
    display: none;
  }
  .sm-logo {
    display: block;
    font-size: 20px;
    line-height: 70px;
  }
  /* =========================
      header
  =========================== */
  header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
  }
  .nav-list .sp-nav {
    padding: 0;
  }
  /* =========================
        hamburger menu
  =========================== */
  .sp-nav {
    padding: 0;
    display: block;
  }
  .drawer_hidden {
    display: none;
  }
  .drawer_open {
    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;
    z-index: 999;
    cursor: pointer;
    top: 18px;
    right: 26px;
    width: 40px;
    height: 40px;
  }
  .drawer_open span, .drawer_open span:before, .drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background: #333;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: absolute;
  }
  .drawer_open span:before {
    bottom: 10px;
  }
  .drawer_open span:after {
    top: 10px;
  }
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  nav {
    height: 100%;
    position: fixed;
    left: -100%;
    background: #836D6D;
    color: #fff;
    -webkit-transition: .5s;
    transition: .5s;
    text-align: center;
  }
  .nav-list-item {
    margin: 0 auto;
    padding: 10px 30px;
  }
  .nav-list-item a {
    font-size: 18px;
    color: #fff;
  }
  .nav-list-item:last-child a {
    background-color: #fff;
    color: #836D6D;
    border-radius: 20px;
    padding: 10px 30px;
  }
  #drawer_input:checked ~ nav {
    left: 0;
  }
  .nav-list-item:last-child {
    width: 100vw;
  }
}

@media screen and (min-width: 769px) and (max-width: 1000px) {
  .nav-list-item a {
    font-size: 0.7em;
  }
}

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

.pankuzu-list {
  font-size: 14px;
  padding: 10px 0;
}

data {
  font-family: 'Roboto', sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto 0;
}

.pd10 {
  padding: 0 10px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-title {
  font-size: 24px;
  margin: 0px auto;
  text-align: center;
}

.page-text {
  margin: 36px 0;
  text-align: center;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}

.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.Form-Item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 15px;
  }
}

.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}

.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 410px;
  background: #f7f7f7;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 15px;
  }
}

.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 410px;
  background: #f7f7f7;
  font-size: 18px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    font-size: 15px;
  }
}

.Form-Btn {
  border: #836D6D;
  border-radius: 30px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #836D6D;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.Form-Btn:hover {
  display: block;
  opacity: 0.8;
  cursor: pointer;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}

@media screen and (min-width: 769px) {
  .container {
    padding: 184px 20px 84px 20px;
  }
}

.radio-pdl {
  padding-left: 40px;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: 1px #e09142 solid;
}

.radio-pdl {
  accent-color: #e09142;
}

input:focus {
  outline: none;
}
/*# sourceMappingURL=contact.css.map */