﻿@charset "UTF-8";

body {
	font-family: Meiryo;
	text-align: center;
	
	background-image: url(images/bg_top.png);
	background-size: cover;
}

.maintitle{
	margin-top: 3%;
}

.menu {
	display:flex;
	flex-flow: column;
	height:300px;
	margin:0 0 1em;
}

.menu * {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin: 0.8em auto;
	padding: 1.2em 2em;
	width: 300px;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	background-color: #f8e6f2;
	transition: 0.3s;
	text-decoration:none;
}

.menu a::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid #3d9ec8;
	transition: 0.2s;
}

.menu a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  transform: rotate(45deg);
}

.menu a:hover::before {
  top: 0;
  left: 0;
}

.menu a:hover {
  text-decoration: none;
  background-color: #b4daeb;
}