@charset "utf-8";
body {
    font-family: Arial, Helvetica, sans-serif;
}

#wrapper {
}

h1 {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: small;
	margin-left: auto;
    margin-right: auto;
    width: 80%;
}
h2 {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    font-size: x-small;
}
article {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
header {
    height: 360px;
    width: 960px;
    display: flex;
}

article header .logo {
    float: left;
    width: 120px;
    height: 120px;
}
article header .top_image {
    float: right;
    border-bottom-left-radius: 30px;
    background-color: #b2dffb;
    animation-name: bgChange;
    animation-duration: 360s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    width: 800px;
    height: 340px;
}
article header .top_left {
    display: flex;
    flex-flow: column;
    width: 130px;
    margin-right: 20px;
}

#menu ul{
    padding: 0;
    list-style-type: none;
    margin-top: 25px;
}
#menu li{ 
    display: inline; 
    padding: 0; 
    margin: 0; 
}
#menu li a{
    display: block; 
    border-left: 12px solid #4e6a6a;
    border-top: 1px solid #474655;
    border-right: 1px solid #474655;
    border-bottom: 1px solid #474655;
    background-color: #fff;
    padding: 4px 10px;
    text-decoration: none;
    color: #333;
    width: 100px; 
    margin: 20px 0px;
    text-align: left;
    font-size: 14px;
}

#menu li a:hover{
    border-left: 8px solid #0b7e7f;
    border-top: 1px solid #474655;
    border-right: 1px solid #474655;
    border-bottom: 1px solid #474655;
    background-color: #d7e9e6;
    color: #FFFFFF;
}

@keyframes bgChange {
      0%   {background:#b2dffb;}/*変化させたい色*/
      40%  {background:#b2dffb;}
      45%  {background:#ff7f50;}
      50%  {background:#da70d6;}
      55%  {background:#000000;}
      90%  {background:#ffe4c4;}
      100% {background:#b2dffb;}
}
.news {
	margin-top: 20px;
    margin-bottom: 40px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-top-width: 1px;
    border-top-style: dotted;
    padding-top: 10px;
    padding-bottom: 10px;
}
h3 {
    display: block;
    position: relative;
    padding: 10px 10px;
    width: 200px;
    color: #d7e9e6;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background-color: #4e6a6a;
    margin-top: 50px;
}
h3::before{
	content: '';
	position: absolute;
	top: -8px;
	left: -8px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background-color: rgba(0 0 0 / 0);
	border: 2px solid #2b393b;
}
.wrap {
    display: flex;
	justify-content: space-between;
}

.game_info {
    width: 40%;
    background-color: #d7e9e6;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    border-top-right-radius: 30px;
    border-bottom-left-radius: 30px;
}
.heading {
    position: relative;
    font-size: 22px;
    border-bottom: 2px solid #d5b1c8;
    margin-top: 5px;
    padding-top: 1.5em;
    padding-left: 1.5em;
    padding-bottom: 0.4em;
}
.heading span {
    position: relative;
    z-index: 2;
    color: #4e6a6a;
}
.heading::before {
    content: attr(data-number);
    position: absolute;
    top: 0;
    left: 0;
    color: #d5b1c8;
    font-size: 54px;
    font-weight: 800;
    z-index: 1;
    opacity: 0.5;
}

.wrap .game_info .game_img {
    max-width: 100%;
	box-shadow: 6px 6px 0 #4e6a6a;
}
.wrap .game_info .game_link {
    padding: 10px 30px;
    width: 100px;
    color: #4e6a6a;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 40px;
    background-color: #D5B1C8;
    float: right;
    text-align: center;
}
.wrap .game_info .game_link:hover{
    background-color: #fff;
    color: #9CBB89;
}

#wrapper article .prof_box {
    display: flex;
	background-color: #9CBB89;
	padding: 4px;
    border: 2px dotted #fff;
}

#wrapper article .prof_img {
    width: 140px;
    height: 140px;
    margin: 10px;
}

a.btn_07 {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width:120px;
    padding: 0.4rem 1.5rem;
    font-weight: bold;
    color: #d5b1c8;
    border-bottom: 2px solid #d5b1c8;
    border-radius: 100vh;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    transition: 0.5s;
    margin-left: 6px;
}
a.btn_07:hover {
	color: #fff;
	background: #d5b1c8;
	border-bottom: 2px solid #fff;
	transform: translateY(3px);
}

body footer {
    height: 160px;
    background-color: #474655;
    margin-top: 30px;
}
.copyright {
    color: #FFFFFF;
    text-align: center;
    padding-top: 50px;
}
