@charset "utf-8";

/* CSS Document */
.top-sns-btn {
    display: flex;
    justify-content: flex-end;
    margin: 0 15px;
}
.top-sns-btn a {
    margin: 0 15px;
}

.catch-copy {
    margin: 50px 0;
}

/*　メニュー　*/
p.kakaku {
    font-weight: bold;
    margin: 0 0 0.5em;
}
p.menu_txt {
    font-size: 12px;
    line-height: 1.6em;
}
.menu_container {
    margin: 0 0 1em;
}

/*　スクロールすると画像がフェードイン　*/
.invisible {
	transition: opacity 0.5s ease;
	opacity: 0.0;
}

.visible {
	transition: opacity 0.5s ease;
	opacity: 1.0;
}

/*　ローディングアニメーション　*/
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #000;
  z-index: 1;
}
#loader {
  display: none;
  position: fixed;
  top: 60%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 2;
}
#wrap {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .top-sns-btn {
        display: flex;
        justify-content: space-between;
        margin: 15px;
    }
    .col-5 {
        flex: 0 0 80%;
        max-width: 80%;
    }
    .catch-copy {
        margin: 30px 0;
    }
	.header_left img {
		width: 85%;
    }
}