@charset "utf-8";
/* CSS Document */
/*--2015.02.26作成。全てのページで使うcssは全てここに記述。--*/


/*reset_css*/
/*要素のフォントサイズやマージン・パディングをリセット*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:18px;
    vertical-align:baseline;
    background:transparent;
}

htnl,body {
	font-family:'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しない*/
nav ul {
    list-style:none;
}

/*ulのマーカー（行頭記号）を表示しない*/
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える*/
a {
    margin:0;
    padding:0;
    vertical-align:baseline;
    background:transparent;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定*/
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/*縦方向の揃え位置を中央揃えに指定*/
input, select {
    vertical-align:middle;
}

img {
	vertical-align: top;
}

a {
	text-decoration: none;
	color: #0332ff;
}

a:hover {
	color: #ff0000;
}

a.hover_op:hover {
	opacity: .8;
}

.cf:before,
.cf:after{
  content:"";
  display: table;
}
.cf:after{
  clear:both;
}


body {
	background: url(../image_cmn/footer/bg_footer_bottom.png) repeat-x center bottom;
}

#wrap {
	min-width: 1084px;
	overflow: hidden;
}
#wrap > header {
  position: relative;
  padding-bottom: 51px;
}

#header{
	border-top: 15px solid #034796;
	min-width: 1084px;
}

#header .inner {
	overflow: hidden;
	width: 1084px;
	margin: auto;
	padding: 0 37px 7px;
	position: relative;
  box-sizing: border-box;
}

.header_logo {
	width: 398px;
  padding: 15px 0 0;
	float: left;
}
.header_logo img {
  width: 304px;
}

.header_anime {
	position: absolute;
	width: 270px;
	top: 46px;
	left: 400px;
}

.header_right {
  position: relative;
	width: 476px;
  padding: 104px 0 0;
	float: right;
}

.header_links {
  position: absolute;
  top: 24px;
  right: 0;
	margin: 0 0 10px;
	overflow: hidden;
}

.header_links .left {
	width: 137px;
  margin: 10px 15px 0 0;
	float: left;
}
.header_links img {
  width: 100%;
}

.header_links .right {
	width: 150px;
	float: left;
}

.header_btns {
	width: 280px;
	margin: 0 -17px 0 0;
	float: left;
}

.header_btns ul {
	overflow: hidden;
}

.header_btns li {
	float: left;
}

.login_name {
	display:block;
	width:169px;
	height:43px;
	font-size:14px!important;
	font-weight:bold;
	text-align:right;
	margin:10px 0 0 0;
}

.header_btns li:first-child {
	margin: 0 5px 0 0;
}

/*============================
#menu
============================*/
#menu {
  position: absolute;
  top: 175px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  width: 1054px;
  margin: 0 auto;
  z-index: 100;
}
#menu.fixed {
  position: fixed;
  top: 0;
}
#menu dl {
  flex-grow: 1;
  width: 175.5px;
  height: 51px;
  overflow: hidden;
  transition: height 0.3s ease;
}
#menu dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 51px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 0 0.5px rgba(255,255,255,0.7);
  cursor: default;
}
#menu dl dt::after {
  content: "";
  display: inline-block;
  width: 5.5px;
  height: 10px;
  margin-left: 0.8em;
  background: url(/renew/image_cmn/header/icon_arrow1r_w.png) 0 0 / 100% auto no-repeat;
  transition: transform 0.1s linear;
}
#menu dl.open dt::after {
  transform: rotate(90deg);
}
#menu dl dd a {
  position: relative;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 0.5em 0 1.133em;
  font-size: 15px;
  line-height: 1.2;
  color: #000;
  text-shadow: 0 0 0.5px rgba(0,0,0,0.7);
}
#menu dl dd a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
}
#menu dl dd a:hover::after {
  opacity: 0.5;
}
#menu dl dd a::before {
  position: absolute;
  top: 0;
  left: 7px;
  bottom: 0;
  content: "";
  width: 5.5px;
  height: 7px;
  margin: auto 0;
}
#menu dl.genre.open {
  height: 231px;
}
#menu dl.genre dt {
  background: #F39800;
}
#menu dl.genre dd {
  border: 1px solid #F39800;
  border-top: none;
}
#menu dl.genre dd a {
  background: #FFF3DF;
}
#menu dl.genre dd a::before {
  background: url(/renew/image_cmn/header/icon_arrow2_y.png) 0 0 / 100% auto no-repeat;
}
#menu dl.food.open {
  height: 231px;
}
#menu dl.food dt {
  background: #0B75BE;
}
#menu dl.food dd {
  border: 1px solid #0B75BE;
  border-top: none;
}
#menu dl.food dd a {
  background: #EFF9FF;
}
#menu dl.food dd a::before {
  background: url(/renew/image_cmn/header/icon_arrow2_b.png) 0 0 / 100% auto no-repeat;
}
#menu dl.menu.open {
  height: 375px;
}
#menu dl.menu dt {
  background: #EA609E;
}
#menu dl.menu dd {
  border: 1px solid #EA609E;
  border-top: none;
}
#menu dl.menu dd a {
  background: #FFF5F5;
}
#menu dl.menu dd a::before {
  background: url(/renew/image_cmn/header/icon_arrow2_p.png) 0 0 / 100% auto no-repeat;
}
#menu dl.cook.open {
  height: 411px;
}
#menu dl.cook dt {
  background: #00ada9;
}
#menu dl.cook dd {
  border: 1px solid #00ada9;
  border-top: none;
}
#menu dl.cook dd a {
  background: #E9FFFE;
}
#menu dl.cook dd a::before {
  background: url(/renew/image_cmn/header/icon_arrow2_g1.png) 0 0 / 100% auto no-repeat;
}
#menu dl.season.open {
  height: 195px;
}
#menu dl.season dt {
  background: #E94628;
}
#menu dl.season dd {
  border: 1px solid #E94628;
  border-top: none;
}
#menu dl.season dd a {
  background: #FFF0EE;
}
#menu dl.season dd a::before {
  background: url(/renew/image_cmn/header/icon_arrow2_r.png) 0 0 / 100% auto no-repeat;
}
#menu dl.chef {
  width: 176.5px;
}
#menu dl.chef.open {
  height: 411px;
}
#menu dl.chef dt {
  background: #23AC38;
}
#menu dl.chef dd {
  border: 1px solid #23AC38;
  border-top: none;
}
#menu dl.chef dd a {
  background: #E9FFED;
}
#menu dl.chef dd a::before {
  background: url(/renew/image_cmn/header/icon_arrow2_g2.png) 0 0 / 100% auto no-repeat;
}

#contents{
	padding: 0 0 40px;
	min-width: 1084px;
}

#breadcrumb {
	width:1024px;
	margin:0 auto;
	/*border-top:2px solid #eb7986;*/
	padding:10px 15px;
}

#breadcrumb p img {
	vertical-align: baseline;
	padding: 0 15px;
}

#footer{
	border-top: 2px solid #eb7986;
	min-width: 1084px;
}

.attword{
	font-weight:bold;
	text-align: center;
	margin-bottom: 10px;
}
.footer_content_1 {
	width: 910px;
	margin: 0 auto;
	overflow: hidden;
	font-size:14px;
	line-height:20px
}

.footer_content_1 .logo {
	width: 228px;
	float: left;
}

.footer_content_1 .txt {
	width: 598px;
	padding: 22px 0 0;
	float: left;
	/*font-size:14px;*/
}

.footer_content_2 {
	background: #fdeff1;
	padding: 20px;
}

.footer_content_2 h2 {
	text-align: center;
	margin: 0 0 10px;
	font-size: 16px;
}

.word_list {
	width: 880px;
	margin: auto;
	font-size: 14px;
	text-align: justify;
}

.word_list li {
	display: inline;
}

.word_list li:after {
	content: "|";
	display: inline-block;
	margin: 0 10px;
	color: #0332ff;
}

.word_list li:last-child:after {
	content: none;
}

.footer_content_3 {
	background: #eb7986;
	color: #fff;
	padding: 25px;
	font-size:14px;
}

.footer_content_3 a {
	color: #fff;
	font-size:14px;
}

.footer_content_3 nav {
	width: 840px;
	margin: 0 auto 20px;
	text-align: center;
}

.footer_content_3 nav li {
	display: inline-block;
}

.footer_content_3 nav li:first-child:before,
.footer_content_3 nav li:after {
	content: "|";
	display: inline-block;
	margin: 0 10px;
	color: #fff;
}

.footer_content_3 nav li:nth-of-type(4):before {
	content: "|";
	display: inline-block;
	margin: 0 10px;
	color: #fff;
}

.footer_content_3 .info {
	font-size: 14px;
	text-align: center;
}

.footer_content_4 {
	background: #fff;
	margin: 0 0 25px;
	padding: 10px 0 35px;
}

.copyright,
.copyright small {
	font-size: 12px;
	text-align: center;
}

/*-------------------------------------
 フッター　関連サイトバナー
----------------------------------------*/
#footer .box_group_site {
	background: #fff;
	box-sizing: border-box;
	border-radius: 8px;
	margin: 0 auto 1.5em;
	padding: 1em 1.5em;
	width: 980px;
}

#footer .box_group_site h2 {
	border-bottom: 2px solid #EADBC6;
	color: #CA3B4C;
	font-family: "ヒラギノ明朝 Pro W3","Hiragino Mincho Pro",游明朝,"Yu Mincho",YuMincho,HGS明朝E,serif;
	font-size: 22px;
	letter-spacing: 0.1em;
	line-height: 1em;
	padding-bottom: 0.3em;
	text-align: center;
	position: relative;
	width: 100%;
}

#footer .box_group_site h2:before {
	border-bottom: solid 2px #EC485C;
  bottom: -2px;
  content: " ";
  display: block;
  left: 0;
  position: absolute;
  width: 40%;
  right: 0;
  margin: 0 auto;
}

#footer .box_group_site ul {
	display: flex;
	justify-content: space-between;
	margin-top: 0.7em;
	width: 100%;
}

#footer .box_group_site ul li a {
	display: block;
}

#footer .box_group_site ul li a:hover {
	opacity: .8;
	transition: .5s all;
}




/* ----------------------------

 フォントサイズbutton

------------------------------ */

#control-wrap{
	float:right;
	overflow: hidden;
}

#header #control-wrap a {
	width: 30px;
	text-indent: 0;
}

#control-wrap ul{
	display: block;
	background-image: url(../image_cmn/font/font-bg.gif);
	height: 33px;
	width: 200px;
	float: right;
}

#control-wrap ul li{
	width: 20px;
	padding:0px 10px 0px 3px;
	float:right;
	list-style: none;
}

#control-wrap ul li img{
	cursor: pointer;
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5 !important;
}

#control-wrap img:hover,
#control-wrap .active {
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1 !important;
}


/* --- ▼トップへ戻る▼ --- */
.return_area{
	display:block;
	width:965px;
	margin:0 auto;
	
}

.return a {
	display: inline-block;
	width: 120px;
	height: 11px;
	border: 0;
	padding: 0;
	margin:0 0 0 845px;
	text-indent: -999rem;
	background-image: url(../image/top/btn_top.gif);
	background-repeat: no-repeat;
	background-position: 0px 0px;
}
.return a:hover,.return a:active {
	background-image: url(../image/top/btn_top.gif);
	background-repeat: no-repeat;
	background-position: 0px -11px;
}

/* --- ▲トップへ戻る▲ --- */




.mt10{
    margin-top:10px;	
}
.mt15{
    margin-top:15px;	
}
.mt20{
    margin-top:20px;	
}
.mt25{
    margin-top:25px;	
}
.mt30{
    margin-top:30px;	
}

/* --------------------------------------------------------------------------------------
	共通広告スペース ■2列用css　useful.css内に有り　切り取ってcommonに持ってきてください■
	=======================================================================================
	.ad_area
-------------------------------------------------------------------------------------- */
.ad_area {
	overflow: hidden;
	width: 960px;
	margin: 50px auto 0 auto;
}

[class$="_zone"] {
	width: 300px;
	float: left;
	margin: 0 30px 0 0;
}

[class$="_zone"]:nth-last-of-type(1) {
	margin: 0;
}

[class$="_zone"] a:hover {
	opacity: .8;
}

/* --------------------------------------------------------------------------------------
	SEO文
	=======================================================================================
	.seo_area
-------------------------------------------------------------------------------------- */
.seo_area {
	width: 658px;
	margin: 50px auto 0 auto;
	padding: 20px 30px;
	border-radius: 4px;
	background: #fdeff1;
}

.fs_15{
	font-size:15px;
}

.fs_18{
	font-size:18px;
}

.pdb_10{
	padding-bottom:10px;
}
.pdr_10{
	padding-right:10px;
}
.pdl_10{
	padding-left:10px;
}
mb10{
	margin-bottom: 10px;
}
