@charset "UTF-8";
@media (min-width: 769px) {
  .sp_show {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp_show {
    display: block;
  }
}
@media (max-width: 480px) {
  .sp_show {
    display: block;
  }
}

.pc_show {
  display: block;
}
@media (max-width: 768px) {
  .pc_show {
    display: none;
  }
}
@media (max-width: 480px) {
  .pc_show {
    display: none !important;
  }
}

body {
  background-color: #F6F6F6;
}

.addjust {
  margin-top: 100px;
}

.commonbtn {
  background-color: #090506 !important;
}

p, h1, h2, div {
  font-family: sans-serif;
}

a {
  text-decoration: none !important;
}

header {
  height: 100px;
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  z-index: 10;
  display: flex;
}
header a {
  text-decoration: none;
  line-height: 100px;
  padding: 0 18.5px;
  font-size: 1.3vw;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
header a img {
  width: 50%;
}
@media (min-width: 769px) {
  header a img {
    margin-top: 20px;
  }
}
header .hoverText:before {
  content: ""; /*疑似要素の中身は空（記述は必須）*/
  position: absolute; /*子要素として疑似要素を固定*/
  left: 0; /*長さはテキストの両端まで*/
  right: 0; /*長さはテキストの両端まで*/
  bottom: -5px; /*線の上下位置*/
  width: 100%; /*線の長さ*/
  height: 2px; /*線の太さ*/
  transform: scale(0, 1); /*横方向に0状態から全体まで線を入れる*/
  transform-origin: center; /*中央を起点にアニメーション*/
  transition: transform 0.2s; /*アニメーションの時間*/
}
header .hoverText:hover:before {
  transform: scale(1); /*ホバー時に等倍へ拡大*/
}
header .logo {
  font-size: 25px;
}
header nav {
  margin: 0 0 0 auto;
}
header ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
header .sm {
  display: none;
}

.nav_sp {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav_btn_sp {
  display: flex;
}

.muryou_btn {
  margin-right: 10px;
}

.sp_soudan_btn {
  width: 80% !important;
}

.top_h2_sp {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  header {
    height: 40px;
    align-items: center;
    padding-left: initial;
  }
  header a {
    line-height: 40px;
    display: block;
    text-align: left;
    padding: initial;
  }
  .logo {
    margin-top: 10px;
    width: 85%;
  }
  .logo img {
    width: 35%;
    margin-top: 20px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .logo img {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  .logo img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  #hamburger {
    background-color: #4b3c2d;
    position: relative;
    cursor: pointer;
    margin: 0 0 0 auto;
    height: 60px;
    width: 60px;
  }
  header .btn-gnavi.hb-open span:nth-child(1) {
    top: 24px;
    width: 24px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  header .btn-gnavi.hb-open span:nth-child(2) {
    opacity: 0;
  }
  header .btn-gnavi.hb-open span:nth-child(3) {
    top: 10px;
    width: 24px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .icon span {
    position: absolute;
    left: 10px;
    width: 27px;
    height: 2px;
    background-color: #4b3c2d;
    border-radius: 8px;
    transition: ease 0.75s;
  }
  .icon span:nth-of-type(1) {
    top: 18px;
  }
  .icon span:nth-of-type(2) {
    top: 26px;
  }
  .icon span:nth-of-type(3) {
    bottom: 24px;
  }
  .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 26px;
  }
  .close span:nth-of-type(2) {
    opacity: 0;
  }
  .close span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
  }
  .sm {
    width: 100%;
    top: 40px;
    left: 0px;
    position: absolute;
    z-index: 10;
    width: 100%;
    background-color: rgba(34, 49, 52, 0.9);
  }
  .sm ul {
    flex-direction: column;
  }
  .sm a {
    color: #4b3c2d;
    text-align: center;
    border-top: solid 0.5px rgba(255, 255, 255, 0.6);
  }
  #sm.open {
    transform: translateX(0); /* right0まで-250px移動 */
  }
  .menu-background {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
    opacity: 0; /* 透明度を0にすることで隠す */
    transition: opacity 0.5s; /* 透明度の0→1になる速度 */
  }
  header nav {
    position: fixed;
    width: 300px;
    top: 0;
    right: -300px;
    background-color: #624c36;
    height: 100%;
    opacity: 0.9;
  }
  header nav ul {
    display: initial;
  }
  header nav ul li {
    width: 100%;
    border-bottom: 1px solid #949494;
  }
  header nav ul li a {
    color: #fff;
    padding-left: 20px;
    font-size: 10px;
  }
  header .btn-gnavi {
    position: relative;
    right: -70px;
    width: 5%;
    height: 24px;
    z-index: 3;
    cursor: pointer;
    transition: all 400ms;
    -webkit-transition: all 400ms;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  header .btn-gnavi {
    right: -10px;
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  header .btn-gnavi span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #4b3c2d;
    border-radius: 10px;
    transition: all 400ms;
  }
  header .btn-gnavi span:nth-child(1) {
    top: 3px;
  }
  header .btn-gnavi span:nth-child(2) {
    top: 13px;
  }
  header .btn-gnavi span:nth-child(3) {
    top: 23px;
  }
  header .btn-gnavi.hb-open {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
  header .btn-gnavi.hb-open span {
    background: #949494;
  }
  header .btn-gnavi.hb-open span:nth-child(1) {
    left: 0px;
    top: 14px;
    width: 21px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  header .btn-gnavi.hb-open span:nth-child(2) {
    opacity: 0;
  }
  header .btn-gnavi.hb-open span:nth-child(3) {
    left: 0px;
    top: 14px;
    width: 21px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  #global-navi p {
    font-size: 20px;
  }
}
.copyright {
  width: 100%;
}
.copyright p {
  color: #000;
  font-size: 12px;
  text-align: center;
  margin: 2px 0px 2px 0;
}/*# sourceMappingURL=common.css.map */