@charset 'utf-8';

@import url('https://fonts.googleapis.com/css?family=Krona+One|Sofia');

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

html, body {
	min-height: 100%;
}

html { 
	font-size: 62.5%;
} 

a {
    text-decoration:none 
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
}

body {
    font-size: 1.4rem;
	font-family: "Yu Gothic", YuGothic;
	color: 111;
    text-align: center;
    line-height : 1.7 ;

	background-image:
    url(../images/mainbg01.png),
    url(../svg/zags_glow.svg);

    background-repeat:
	repeat-y,
	repeat;

    background-position:
    top center,
	top left;  
    
    background-color: #fff;
}

h1 {
	font-size: 2.4rem;
font-family: 'Sofia', cursive;
	font-weight:800;
	color: #805841;
	text-shadow: 1px 1px 0.5px #aaa;
}

h1 span{
	color: #F89FA1;
}

h2 {
	font-size: 1.6rem;
    font-family:"游明朝体", "Yu Mincho", YuMincho, serif;
	color: #805841;
	padding-bottom: 10px;
}

h3 {
	width:200px;
	margin:auto;
	font-size: 100%;
	padding: 5px 50px;
	border: 1px solid #ccc;
	border-radius: 1px;
	font-weight:600;
}

#wrapper{
	width:1200px;
    margin: 0 auto;
}

#page_header {
    position: relative;
	margin: 0 auto;
	width: 1200px;
	height: 200px;
	background-image:url(../images/pageHeader.png);
    background-repeat: no-repeat;
	padding-bottom: 25px;
}

#header_brand {
    position: absolute;
    top: 5px;
    right: 20px;
}

#nav_header {
	margin: -40px auto 20px;
	width: 1200px;
}

/* ピックアップ */

#pickup_container {
	width:1030px;
	margin:auto;
	padding-bottom: 30px;
}

#pickup_container ul  {
	padding:5px;
}

#pickup_container ul li {
	list-style: none;
	float: left;
	padding: 5px;
}

/* ピックアップ ここまで */

/* トピックス */

#topics_container {
	width:1030px;
	margin:auto;
	padding-bottom: 30px;
}

#topics_container ul  {
	padding:5px;
}

#topics_container ul li {
	list-style: none;
	float: left;
	padding: 5px;
}

.topics{
    width: 230px;
    height: 370px;
    padding: 5px;
    background: #fff;
    border: 1px #ccc solid;
    box-shadow: 0 2px 3px 0 #ddd;
    -moz-box-shadow: 0 2px 3px 0 #ddd;
    -webkit-box-shadow: 0 2px 3px 0 #ddd;
    text-align: left;
}

.topics:hover{
    background-color: #FCE5E8;
}

.topics_day{
    color: #666;
    padding: 0 5px 0 0;
}

.topics_item{
    font-size: 1.5rem;
    color: #330000;
    font-weight: bold;
    line-height: 2rem;
    padding: 0px 0px 0px 0px;
}

.topics_content{
    line-height: 1.8rem;
    color:#333333;
    padding: 0px 2px 0px 0px;
}
/* トピックス ここまで */


/* フッターナビゲーション */

#footer {
    clear:both;
	margin: 0 auto;
	width: 1200px;
	padding-bottom: 30px;
    text-align: center;
}

#foot_nav {
	padding: 20px;
}

#foot_mark {
	padding: 5px;
}

#right {
    font-size: 1.0rem;
}

/* フッターナビゲーション ここまで */

.pagetop {
    display: none;
    position: absolute;
    right: -80px;
    bottom: 0px;
    z-index: 1000;
}
.pagetop a {
    display: block;
    background: url(../images/top_arrow1.png) no-repeat 0 0;
    width:60px;
    height:60px;
}
 
.pagetop a:hover {
    display: block;
    background: url(../images/top_arrow2.png) no-repeat 0 0;
    width:60px;
    height:60px;
}

.frame {
	display: inline-block;
	position: relative;
}

.frame:after {
	position: absolute;
	content: "";
	box-shadow: 0 10px 10px rgba(0,0,0, .5); /* シャドウ */
	transform: rotate(3deg); /* 回転させる */
	right: 5px;
	left: auto;
	top: auto;
	bottom: 15px;
	z-index: -1;
	width: 50%;
	height: 20%;
}

/* ナビゲーション */

nav a {
	position: relative;
	display: inline-block;
    margin: 0 auto;
	outline: none;
	color: #555;
font-family: 'Krona One', sans-serif;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 800;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1em;
}

nav a:hover,
nav a:focus {
	outline: none;
}

.mainnav a {
	padding: 5px;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.mainnav a::before,
.mainnav a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ff3366;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.mainnav a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.mainnav a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.mainnav a:hover,
.mainnav a:focus {
	color: #ff3366;
}

.mainnav a:hover::before,
.mainnav a:focus::before,
.mainnav a:hover::after,
.mainnav a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}