@charset "UTF-8";
h1 {
  font-size: 2.3em !important;
  font-weight: 900 !important;
}

@media screen and (max-width: 959px) {
  h1 {
    font-size: 2em !important;
    font-weight: 900 !important;
  }
}
.mb50 {
  margin-bottom: 50px !important;
}

.dp_flex {
  display: flex;
  justify-content: space-evenly;
}
.dp_flex .flex_div {
  width: calc(50% - 10px);
  text-align: center;
}
.dp_flex .flex_div p {
  text-align: center;
}

img {
  width: 100%;
  height: fit-content;
}

@media screen and (min-width: 536px) {
  .contact_sp {
    display: none !important;
  }
}
@media screen and (max-width: 535px) {
  .contact_pc {
    display: none !important;
  }
}
.contact_top .contact_box {
  margin-top: 50px;
  margin-bottom: 50px;
}
.contact_top .contact_box p {
  color: #a371a6;
  font-weight: bold;
  font-size: 20px;
}
.contact_top .contact_box p .zipcode {
  font-size: 20px;
}
.contact_top .contact_box .map_link {
  color: #666;
  font-size: 20px;
  text-align: end;
}
.contact_top .contact_box .map_link a {
  color: #666;
  font-size: 20px;
}
.contact_top .contact_box iframe {
  width: 100%;
}

/*ボックス全体*/
.accbox {
  margin: 2em 0;
  padding: 20px;
  max-width: 100%;
  border: 1px solid #777;
  background-color: #FFF;
  /*ラベル*/
  /*ラベルホバー時*/
  /*チェックは隠す*/
  /*中身を非表示にしておく*/
}
.accbox label {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #777;
  background: #f2f2f2;
  border-bottom: solid 2px #999;
  border-radius: 4px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  width: 100%;
  line-height: 50px;
  margin-bottom: 5px;
}
.accbox label:hover {
  border-bottom: solid 2px rgba(255, 85, 85, 0.3333333333);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}
.accbox input {
  display: none;
}
.accbox .accshow {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.8s;
}
.accbox .accshow table {
  width: 100%;
}
.accbox .accshow table tr th {
  width: 25%;
  font-size: 14px;
  background-color: #777;
  color: #FFF;
  padding: 7px;
  border-bottom: #FFF solid 1px;
  vertical-align: middle;
}
.accbox .accshow table tr .dashd_b {
  border-bottom: dashed 1px #999;
}
.accbox .accshow table tr .none_b {
  border-bottom: none;
}
.accbox .accshow table tr td {
  width: 75%;
  font-size: 14px;
  background-color: #fff;
  padding: 7px;
  text-align: center;
  border-bottom: #777 solid 1px;
}
.accbox .accshow table tr td .annotation {
  font-size: 12px;
  font-weight: normal;
  color: #666;
}
.accbox .accshow table tr:last-child th {
  border-bottom: none;
}
.accbox .accshow table tr:last-child td {
  border-bottom: none;
}

@media screen and (max-width: 643px) {
  .accshow table tr {
    display: grid;
  }
  .accshow table th {
    width: 100% !important;
  }
  .accshow table td {
    width: 100% !important;
  }
}
/*クリックで中身表示*/
.cssacc:checked + .accshow {
  height: auto;
  padding: 20px;
  background: #eaeaea;
  opacity: 1;
}

/*ハンバーガーmenu*/
#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 43px;
  height: 70px;
  background-image: url(../img/yoyakubt.webp);
  vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
  background-image: url(../img/yoyakubt.webp);
  display: block;
  content: "";
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none; /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0; /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 90%;
  max-width: 330px;
  height: 100%;
  background: #333;
  transition: 0.3s ease-in-out; /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%); /*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block; /*カバーを表示*/
  opacity: 0.5;
}/*# sourceMappingURL=contact.css.map */