@charset "utf-8";

/* basic.css
 * **************************************************
 * ************************************************** */

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1;
}

a {
  position: relative;
  z-index: 2;
}

img {
  height: auto;
  max-width: 100%;
}

header,
main,
footer {
  max-width: 750px;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 1.2%;
  left: 0;
  right: 0;
  max-width: 730px;
  width: 94%;
  z-index: 99999;
}

.header_logo {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 138px;
}

.header_inner {
  background-color: #fff;
  border-radius: 6px;
  margin: 0 auto;
  padding: 13px 0;
}

.header_inner.active {
  background-color: #fff;
  border-radius: 6px 6px 0 0;
}

.header_inner.active::after {
  content: "";
  border-bottom: 1px solid #4d4d4d;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  width: 80%;
}

.humberger {
  background-color: #fff;
  border-radius: 0 0 6px 6px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: .2s;
  transform: translateY(-86px);
  width: 100%;
}

.humberger.active {
  opacity: 1;
  visibility: visible;
  transition: .2s;
  transform: translateY(0);
}

.humberger_inner {
  padding: 20px 0 10px;
  position: relative;
  width: 100%;
}

.humberger_inner::before {
  content: "";
  border-top: 1px solid #4d4d4d;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 1px;
  width: 80%;
}

.humberger_lists {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.humberger_lists::after {
  content: "";
  display: block;
  width: 30%;
}

.humberger_list {
  margin: 0 0 clamp(6px, 1.6vw, 12px);
  text-align: center;
  width: 30%;
}

.humberger_list_link {
  color: #4d4d4d;
  font-size: clamp(10px, 2.667vw, 18px);
  font-weight: bold;
  line-height: 1.3em;
  text-decoration: none;
  transition: .2s;
}

.humberger_list_link:hover {
  color: #a80064;
}

.toggle {
  cursor: pointer;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  z-index: 100;
}

.trigger {
  font-size: 10px;
  height: 25px;
  padding: 42px 0 0 0;
  position: relative;
  text-align: center;
}

.trigger span {
  background-color: #000;
  display: block;
  height: 2px;
  position: absolute;
  left: 19px;
  transition: .35s ease-in-out;
  width: 26px;
}

.toggle span:nth-child(1) {
  top: 20px;
}

.toggle span:nth-child(2) {
  top: 30px;
}

.toggle span:nth-child(3) {
  visibility: visible;
  opacity: 1;
  transition: .4s;
  top: 40px;
}

.toggle.active span:nth-child(1) {
  top: 30px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.toggle.active span:nth-child(2) {
  top: 30px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

.toggle.active span:nth-child(3) {
  top: 30px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

.contact-info {
  font-size: min(3.73vw, 28px);
  text-align: center;
}

.contact-info-txt {
  font-weight: 400;
  line-height: 1.7;
}

.contact-tel {
  font-size: min(7.46vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  margin: 10.41% 0 0 0;
}

.contact-mail {
  letter-spacing: 0;
  margin: 9.58% 0 0 0;
}


footer {
  background-color: #000000;
  border-top: 1px solid #ffffff;
  color: #ffffff;
  padding: 10.66% 0;
}

.footer-txt {
  font-size: min(5.6vw, 42px);
  font-weight: 700;
  margin: 0 0 6.66%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .show_pc {
    display: none;
  }

  .show_sp {
    display: block;
  }

  .header_logo {
    width: 80px;
  }

  .header_inner {
    padding: 10px 0;
  }

  .toggle span:nth-child(1) {
    top: 11px;
  }

  .toggle span:nth-child(2) {
    top: 20px;
  }

  .toggle span:nth-child(3) {
    top: 29px;
  }

  .toggle.active span:nth-child(1),
  .toggle.active span:nth-child(2),
  .toggle.active span:nth-child(3) {
    top: 20px;
  }
}
