@charset "utf-8";

* {
	padding: 0;
	margin: 0;
}

html {
  	height: 100%;
	font-size: 20px;	
}

body {
	word-wrap: break-word;
	height: 100%;
	font-family: sans-serif;
	font-style: normal;
	font-weight: 400;
}


section,
article {
	display: block;
}

img {
	vertical-align: top;
}

h1{
	font-size: 0;
}

a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

li {
	list-style-type: none;
}

a {
	color: #0066CC;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	transition: 0.2s linear;
	text-decoration: none;
}

a:hover {
	color: #0099CC;
	text-decoration: none;
}

footer{
	background-color: #FFFFFF;
	font-size: 0.6rem
}


/* fadeUp */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeUpTrigger{
    opacity: 0;
}

/*　フッター　*/
.footer_p{
	font-size: 0.4rem;
}

#page_top{
  width: 50px;
  height: 50px;
  background: #00ABEB;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 35px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

footer{
	border-bottom: solid #00ABEB 10px;
}

.top{
background: linear-gradient(to bottom, #0066ff, #ffffff);
}

h2{
	font-size: 1.1rem;
	line-height: 1.6rem;
	font-weight: bold;
	text-align: center;
	color: rgb(220, 20, 97);
}

h3{
	font-size: 1.1rem;
	text-align: center;
	  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 100vh;
  background-image: -webkit-gradient(linear, right top, left top, from(#5db1e1), to(#5db1e1));
  background-image: -webkit-linear-gradient(right, #5db1e1 0%, #5db1e1 100%);
  background-image: linear-gradient(to left, #5db1e1 0%, #5db1e1 100%);
}

.text{
  margin-left: auto;
  margin-right: auto;
  max-width: max-content;
}

.name{
	font-size: 0.8rem;
}

/* ボタン */
.button-4 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    margin:0 auto;
    padding: .9em 2em;
    border: none;
    border-bottom: solid 5px #a00061;
    border-radius: 5px;
    background-color: #d02591;
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    transition: .5s ease;
}

