@charset "UTF-8";
/* CSS Document */

.hero{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50vh;
	min-height: 400px;
	background-image: url(../image/heroimage.jpg);
	background-position: center;
	background-size: cover;
}
.hero img{
	opacity: 0.9;	
}
.p1{
	font-size: 14px;
	text-align: center;
	line-height: 25px;
	padding-top: 30px;
}
.p2{
	font-size:  8px;
	text-align: center;
	line-height: 20px;
	padding-top: 20px;
	padding-bottom: 40px;
}
p{
	font-size: 8px;
	text-align: center;
	padding-bottom: 20px;
}
#masonry{
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0;
	overflow: auto;
}
.m-con{
	max-width: 960px;
	margin: 0 auto;
	padding-bottom: 100px;
}
/*414以下の並び最大3つ*/
@media(max-width: 414px){
	.m-con{
	max-width: 480px;
	margin: 0 auto;
	padding-bottom: 50px;
}
}

.grid {
	width: 150px;
	height: 150px;
	margin: 0 auto;
	padding: 0;
	float: left;
	display: inherit;
	border: 5px solid #fff;
}
.grid img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.grid:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0.75;
}

/*ここからScrollTriggerのCSS記述 GitHubの参考構文をデフォルトでそのまま使用*/
.invisible{
	transition: opacity 0.5s ease;
	opacity: 0.0;
}
.visible{
	transition: opacity 0.5s ease;
	opacity: 1.0;
}
/*ここまでScrollTriggerのCSS記述 GitHubの参考構文をデフォルトでそのまま使用*/
/*非表示(opacity:0;)だった要素がウィンドウ内に入ってから0.5秒かけて表示される の指示*/

/*ここからLightboxに関するCSS記述 DLした構文をアレンジ*/
html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../image/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../image/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../image/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
  padding-bottom: 100px;
}

.lb-data .lb-caption {
  font-size: 8px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 15px;
  height: 15px;
  background: url(../image/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
/*ここまでLightboxに関するCSS記述 DLした構文をアレンジ*/

.menu{
	font-family: 'Anton', sans-serif;
	font-family: 'Teko', sans-serif;
	font-family: 'Lalezar', cursive;
	font-size: 12px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 50px;
	padding-left: 100px;
}
/*ここからmenuのcategoryホバー記述 Scss構文をPreprosでcssに変換アレンジ*/
@-webkit-keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.category {
  flex: 0 0 106px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

.button {
  border-radius: 30em;
  padding-top: 0.05em;
  padding-bottom: 0.05em;
  padding-left: 2em;
  padding-right: 2em;
  line-height: 1.5em;
  overflow: hidden;
  font-family: 'Anton', sans-serif;
  font-family: 'Teko', sans-serif;
  font-family: 'Lalezar', cursive;
  letter-spacing: 0.035em;
  text-decoration: none;
  -webkit-transition: 0.3s cubic-bezier(0.34, 0.01, 0.35, 0.98), opacity 0.5s;
  -o-transition: 0.3s cubic-bezier(0.34, 0.01, 0.35, 0.98), opacity 0.5s;
  transition: 0.3s cubic-bezier(0.34, 0.01, 0.35, 0.98), opacity 0.5s;
  flex: 1;
  position: relative;
  display: inline-block;
  -webkit-box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 0.3);
  color: black;
  font-size: 1.2em;
  overflow: hidden;
}

.button:before {
  -webkit-transition: 1.5s cubic-bezier(0.34, 0.01, 0.35, 0.98);
  -o-transition: 1.5s cubic-bezier(0.34, 0.01, 0.35, 0.98);
  transition: 1.5s cubic-bezier(0.34, 0.01, 0.35, 0.98);
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  background: -webkit-gradient(linear, right top, left top, from(coral), color-stop(#fff446), to(#15f0e5));
  background: -webkit-linear-gradient(right, coral, #fff446, #15f0e5);
  background: -o-linear-gradient(right, coral, #fff446, #15f0e5);
  background: linear-gradient(270deg, coral, #fff446, #15f0e5);
  -webkit-animation: gradient-move 15s ease infinite;
  animation: gradient-move 15s ease infinite;
  background-size: 2000% 2000%;
  content: '';
  border-radius: 50em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.button:after {
  content: attr(data-title);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate3d(0, -250%, 0);
  transform: translate3d(0, -250%, 0);
  -webkit-transition: opacity 0.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.1s, -webkit-transform 0s 0.6s;
  transition: opacity 0.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.1s, -webkit-transform 0s 0.6s;
  -o-transition: opacity 0.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.1s, transform 0s 0.6s;
  transition: opacity 0.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.1s, transform 0s 0.6s;
  transition: opacity 0.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.1s, transform 0s 0.6s, -webkit-transform 0s 0.6s;
  opacity: 0;
  color: rgba(0, 0, 0, 0.4);
}

.button span {
  display: inline-block;
  -webkit-transition: opacity 1.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.5s;
  -o-transition: opacity 1.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.5s;
  transition: opacity 1.5s cubic-bezier(0.34, 0.01, 0.35, 0.98) 0.5s;
  opacity: 1;
}

.button:hover, .button:focus, .button:active {
  -webkit-box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 0);
  box-shadow: inset 0px 0px 0px 2px rgba(0, 0, 0, 0);
  color: rgba(0, 0, 0, 0.4);
}

.button:hover:before, .button:focus:before, .button:active:before {
  opacity: 1;
  -webkit-transition: 0.3s cubic-bezier(0.34, 0.01, 0.35, 0.98);
  -o-transition: 0.3s cubic-bezier(0.34, 0.01, 0.35, 0.98);
  transition: 0.3s cubic-bezier(0.34, 0.01, 0.35, 0.98);
}

.button:hover span, .button:focus span, .button:active span {
  -webkit-transform: translate3d(0, 150%, 0);
  transform: translate3d(0, 150%, 0);
  -webkit-transition: opacity 0s 0.5s, -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1);
  transition: opacity 0s 0.5s, -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1);
  -o-transition: transform 0.5s cubic-bezier(1, 0, 0, 1), opacity 0s 0.5s;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1), opacity 0s 0.5s;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1), opacity 0s 0.5s, -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1);
  opacity: 0;
}

.button:hover:after, .button:focus:after, .button:active:after {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1) 0.1s;
  transition: -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1) 0.1s;
  -o-transition: transform 0.5s cubic-bezier(1, 0, 0, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1) 0.1s;
  transition: transform 0.5s cubic-bezier(1, 0, 0, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(1, 0, 0, 1) 0.1s;
  opacity: 1;
}
/*ここまでmenuのcategoryホバー記述 Scss構文をPreprosでcssに変換アレンジ*/

.p_top{
	margin: 0;
}

/*ここからトップに戻るcss*/
#page_top{
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 100px;
	right: 30px;
	background: #666;
	border-radius: 5px;
	opacity: 0.6;
}
#page_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
#page_top a::before{
	font-family: "Font Awesome 5 Free";
	content: '\f077';
	font-weight: 900;
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: 0;
	bottom: 0px;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
/*ここまでトップに戻るcss*/
