@charset "UTF-8";
/* CSS Document */
/*基本設定：ページ全体*/
body{
	font-family: "メイリオ", "Hiragino Kaku Gothic Pro","sans-serif";
}

svg {
	display: block;
	margin: 0 auto;
	max-width: 77%;
 red height: auto;
}
.svgLogo path {
	fill: url("#000");
	stroke-width: 0.1em;
	stroke: #000;
	stroke-opacity: 0.5;
	stroke-dasharray: 1200;
	stroke-dashoffset: 1200;
	animation: drawline 4s linear forwards, FillIn 1s 2s linear both;
}
@keyframes drawline {
 to {
 stroke-dashoffset:0;
}
}
@keyframes FillIn {
 from {
 fill-opacity: 0;
}
 to {
 fill-opacity: 1;
}
}

.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: 100px;
	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に変換アレンジ*/

h3 {
	font-size: 12px;
	text-align: center;
	padding-bottom: 30px;
}
p {
	font-size: 10px;
	text-align: center;
}
.p_top{
	padding-bottom: 20px;
}
