@charset "utf-8";

/* -------------------------------------------------- 
 * page.css
 * 
 * 下層用共通CSS（トップページ(front_page)以外）
 * ※加えて、第1階層フォルダごとに分けて作成しているCSSを読み込ませる
-------------------------------------------------- */

/* -------------------------------- 
	Parts 
-------------------------------- */

/* heading */
.heading01,
.heading02,
.heading03 {
	letter-spacing: -0.01em;
	font-weight: normal;
	line-height: 1.4;
}
@media only screen and (min-width: 992px) {
	.heading01 {
		margin-bottom: 38px;
	}
}
.heading01::after {
    content: "";
    display: block;
    width: 1.3em; height: 0.1em;
    max-width: 50px;
    background: #383b4e;
    margin: 0.6em auto;
}
.inner > .heading01:first-child {
    margin-top: 0;
}



/* header
--------------------*/

.header a:link,
.header a:visited,
.header a:hover,
.header a:active {
    color: #fff;
}

@media only screen and (min-width: 992px) {
	.header {
		border-bottom: 1px solid transparent;
		background: none;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	.hide-nav .header.large {
		background: #fff;
	}
	.header a:link,
	.header a:visited,
	.header a:hover,
	.header a:active {
		color: #353a4e;
	}
	.show-nav .header a:link,
	.show-nav .header a:visited,
	.show-nav .header a:hover,
	.show-nav .header a:active {
		color: #353a4e;
		border-color: 0 none;
	}
	.show-nav .header,
	.header.large {
		border-bottom: 1px solid #eee;
	}
}
.header a:hover {
    color: #fff;
}
.header a.btn-default:hover {
    background-color: rgba( 225, 225, 225, .3);
}


/****** Base Layout Setting ********/


.contents {
		padding-top: 79px;
}
.section:nth-of-type(even) {
	background: #f5f5f5;
}
.section {
    padding: 50px 0;
}

@media only screen and (min-width: 768px) {
	.contents {
		padding-top: 90px;
	}
    .section {
        padding: 80px 0; 
    }
}
@media only screen and (min-width: 992px) {
	section .inner {
		max-width: 954px;
		padding: 0;
	}
    .section {
        padding: 120px 0 100px; 
    }
}
@media only screen and (min-width: 1200px) {
	.section .heading01 br {
		display: block;
	}
}

/* -------------------------------- 
	pageheader area 
-------------------------------- */

section[class$="_pageheader"] {
	background: #f5f5f5;
}
section[class$="_pageheader"] .heading_area {
	min-height: 70px; width: 100%;
	max-width: 954px;
	display: table;
	margin: 6px auto 0;
}
.conversion_flow_layout section[class$="_pageheader"] .heading_area {
    margin-top: 0;
}

section[class$="_pageheader"] .heading_area .hgroup {
	display: table-cell;
	padding: 10px 0;
	vertical-align: middle;
}
section[class$="_pageheader"] .heading_area .category {
	max-width: 954px;
	margin: 0 auto; padding: 0;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
}
section[class$="_pageheader"] .heading_area .title {
	max-width: 954px;
	margin: 0 auto; padding: 0;
	line-height: 1.4;
	font-size: 20px;
	font-size: 2rem;
	letter-spacing: -0.01em;
}
@media only screen and (min-width: 768px) {
	section[class$="_pageheader"] .heading_area {
		height: 100px; width: 100%;
	}
	section[class$="_pageheader"] .heading_area .title {
		font-size: 24px;
		font-size: 2.4rem;
		font-weight: bold;
	}
}
@media only screen and (min-width: 992px) {
	section[class$="_pageheader"] .heading_area .title {
		font-size: 28px;
		font-size: 2.8rem;
		font-weight: bold;
	}
}
section[class$="_pageheader"] .pageheader {
	height: 150px;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #666;
}
section[class$="_pageheader"] .pageheader .text {
	text-align: center;
	position: absolute;
	left: 50%; top: 50%;
	width: 100%;
	-webkit-transform: translate( -50%, -50%);
	transform: translate( -50%, -50%);
}
section[class$="_pageheader"] .pageheader .text .pageheader_title {
	font-family: museo-slab, sans-serif;
    font-style: normal;
    font-weight: 900;
    line-height: 1.1;
	color: #fc0;
	font-size: 30px;
	font-size: 3rem;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.play section[class$="_pageheader"] .pageheader .text .pageheader_title {
    opacity: 1;
}
@media only screen and (min-width: 768px) {
	section[class$="_pageheader"] .pageheader {
		height: 300px;
	}
	section[class$="_pageheader"] .pageheader .text .pageheader_title {
		font-size: 60px;
		font-size: 6rem;
	}
}
@media only screen and (min-width: 992px) {
	section[class$="_pageheader"] .pageheader {
		height: 400px;
	}
	section[class$="_pageheader"] .pageheader .text .pageheader_title {
		font-size: 80px;
		font-size: 8rem;
	}
}


/* -------------------------------- 
	layout
-------------------------------- */


@media only screen and (min-width: 768px) {
	.image_column {
		display: -webkit-box;/*--- Androidブラウザ用 ---*/
		display: -ms-flexbox;/*--- IE10 ---*/
		display: -webkit-flex;/* safari(PC) */
		display: flex;
		-webkit-box-align: center;/* Android < 4.3 */
		-webkit-align-items: center;/* safari(PC) */
		align-items: center;
		-webkit-box-pack: justify;/* Android < 4.3 */
		-webkit-justify-content: space-between;/* safari(PC) */
		justify-content: space-between;
	}
	
}


/* -------------------------------- 
	news_list
-------------------------------- */


.news_list li:not(:first-child) {
	border-top: 1px solid #D9D9D9;
}
.news_list li a {
	display: block;
	padding: 10px 0;
}
.news_list li a:hover .detail {
	text-decoration: underline;
}
.news_list li p {
	margin: 0;
}
.news_list .category {
	width: 7em;
	text-align: center;
	background: #F9F9FB;
	font-style: italic;
	font-weight: bold;
	padding: 3px 8px;
	margin-right: 10px;
	display: inline-block;
}
.news_list .date {
	font-weight: bold;
	font-style: italic;
	margin: 0;
	display: inline-block;
}
.news_list li .detail {
	margin-top: 5px;
}
.cat_news {
	color: #696;
}
.cat_release {
	color: #69c;
}
.cat_event {
	color: #af5146;
}
.cat_event_img {
	padding: 0 !important;
}

@media only screen and (min-width: 768px) {
	.news_list li {
		clear: both;
	}
	.news_list li a {
		padding-bottom: 1px;
	}
	.news_list .category {
		width: 180px;
		padding: 30px 0;
		margin: 0 0 15px;
		display: block;
		float: left;
	}
	.news_list .date {
		padding-left: 30px;
	}
	.news_list .detail {
		margin: 0;
		padding: 0 0 15px 210px;
	}
}
/* community_content*/
.community_content_list li {
	border-bottom: 1px solid #ccc;
}
.community_content_list .date {
    padding-left: 30px;
    font-weight: bold;
	margin-bottom: 0px;
}
.community_content_list .detail {
	padding-left: 30px;
	margin-top: 0px;
}


/* event_list */

.event_list {
    text-align: left;
    padding-top: 10px;
	overflow: hidden;
}
.event_list [class^="list_"] a {
    display: block;
    margin-bottom: 20px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.event_list [class^="list_"] a:hover {
	background: #fafafa;
}
.event_list [class^="list_"] a .img {
	position: relative;
	overflow:  hidden;
	width: 100%;
	display: block;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.event_list [class^="list_"] a .img::before {
	content: "";
	display: block;
	padding-top: 65%;
}
.event_list [class^="list_"] a .img img {
	position: absolute;
	left: 50%; top: 50%;
	transform: translate( -50%, -50%);
	min-height: 100%;
	min-width: 100%;
}
.event_list a strong {
	font-size: 14px;
	font-size: 1.4rem;
    padding: 0 10px 10px;
    display: inline-block;
    font-weight: normal;
}
.event_list a .date {
	font-size: 14px;
	font-size: 1.4rem;
    display: block;
    padding: 10px 10px 0;
    font-weight: bold;
	font-style: italic;
}

@media only screen and (min-width: 768px) {
	.event_list [class^="list_"] {
		overflow: hidden;
	}
    .event_list [class^="list_"]::before,
    .event_list [class^="list_"]::after	{
		content: "";
		display: table;
	}
    .event_list [class^="list_"]::after	{
		clear: both;
	}
    .event_list [class^="list_"] a {
        float: left;
		width: 44%;
		margin : 0 3% 30px;
        position: relative;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
    }

	.event_list a .date {
		font-size: 16px;
		font-size: 1.6rem;
		padding: 14px 0 0;
	}
	.event_list a strong {
		font-size: 16px;
		font-size: 1.6rem;
		padding: 0 0 20px;
	}
	.event_list .list_3column,
	.event_list .list_4column {
		margin: 0 -3%;
	}
}
@media only screen and (min-width: 992px) {
	.event_list .list_3column {
		margin: 0 -2.5%;
	}
	.event_list .list_3column a {
		width: 28.33333%;
		width: -webkit-calc( 85% / 3 );
		width: calc( 85% / 3 );
		margin : 0 2.5% 30px;
	}
	.event_list .list_4column {
		margin: 0 -1.5%;
	}
	.event_list .list_4column a {
		width: 22%;
		margin : 0 1.5% 30px;

	}
}


/* login_area */

.login_area {
    max-width: 450px;
    margin: 0 auto; 
}
.login_area dl dt {
    margin-bottom: 10px;
}
.login_area .button_area,
.login_area .button_area + .note {
   text-align: center;
}
.login_area .button_area .btn {
    min-width: 260px;
}


/* entry_area */

.entry_area .button_area {
   text-align: center;
}
.entry_area .button_area .btn {
    min-width: 260px;
}



/* -------------------------------- 
	hybrid (新デザインを古いページに適用する)
-------------------------------- */

section.hybrid #contentsOther {
    padding: 50px 0;
}
section.hybrid #contentsOther .heading03 {
    margin-bottom: 35px;
}

@media only screen and (min-width: 768px) {
    section.hybrid #contentsOther {
        padding: 80px 0; 
    }
    section.hybrid #contentsOther .heading03 {
        margin-bottom: 50px;
    }
}
@media only screen and (min-width: 992px) {
    section.hybrid #contentsOther {
        padding: 100px 0; 
    }
}

/* 一般的な感じにする */

.normalstyle p {
    margin: 1.2em 0;
    line-height: 1.6;
}
.normalstyle p.first_paragraph {
    margin-top: 0;
}
.normalstyle ul {
    list-style: circle;
    margin-bottom: 1.2em;
}
.normalstyle ul li {
    line-height: 1.6;
}
.normalstyle ul li:not(:last-child) {
    margin-bottom: 0.8em;;   
}
.normalstyle .heading03:not(:first-child) {
    margin-top: 50px;
}
@media only screen and (min-width: 992px) {
    .normalstyle .heading03:not(:first-child) {
        margin-top: 80px;
    }
}


/* -------------------------------- 
	ストア用
-------------------------------- */


/*  button
    ★ストアの一覧＆詳細に共通で使用する新header用
    ★メインコンテンツのリニューアルが入れば不要になる。
---------------------------------*/


/* button */

[class^="store_"] .btn {
    font-size: 13px;
    font-size: 1.3rem;
	font-weight: bold;
	padding: 7px 15px;
	border-radius: 2px;
	border: 0 none;
	box-shadow: 0 none;
	cursor: pointer;
	line-height: 1.2;
	-webkit-appearance: none;
	display: inline-block;
}
[class^="store_"] a.btn:link,
[class^="store_"] a.btn:visited,
[class^="store_"] a.btn:hover,
[class^="store_"] a.btn:active {
	text-decoration:  none;
}
[class^="store_"] .btn-default {
	color: #fff;
	background: #427BB3;
}

[class^="store_"] .btn-default:hover,
[class^="store_"] .btn-default:focus,
[class^="store_"] .btn-default:active{
	color: #fff;
	background-color: #386ea8;
}
[class^="store_"] .btn-default.disabled,
[class^="store_"] .btn-default[disabled],
[class^="store_"] fieldset[disabled] .btn-default,
[class^="store_"] .btn-default.disabled:hover,
[class^="store_"] .btn-default[disabled]:hover,
[class^="store_"] fieldset[disabled] .btn-default:hover,
[class^="store_"] .btn-default.disabled:focus,
[class^="store_"] .btn-default[disabled]:focus,
[class^="store_"] fieldset[disabled] .btn-default:focus,
[class^="store_"] .btn-default.disabled:active,
[class^="store_"] .btn-default[disabled]:active,
[class^="store_"] fieldset[disabled] .btn-default:active {
    background-color: rgba(66,123,179,0.10);
	color: #fff;
}

[class^="store_"] .btn-info {
    color: #fff;
    background-color: #666;
}
[class^="store_"] .btn-info:hover,
[class^="store_"] .btn-info:focus,
[class^="store_"] .btn-info:active {
	color: #fff;
	background-color: #5a5a5a;
}
[class^="store_"] .btn-info.disabled,
[class^="store_"] .btn-info[disabled],
[class^="store_"] fieldset[disabled] .btn-info,
[class^="store_"] .btn-info.disabled:hover,
[class^="store_"] .btn-info[disabled]:hover,
[class^="store_"] fieldset[disabled] .btn-info:hover,
[class^="store_"] .btn-info.disabled:focus,
[class^="store_"] .btn-info[disabled]:focus,
[class^="store_"] fieldset[disabled] .btn-info:focus,
[class^="store_"] .btn-info.disabled:active,
[class^="store_"] .btn-info[disabled]:active,
[class^="store_"] fieldset[disabled] .btn-info:active {
    border-color: rgba(102,102,102,0.10);
    background-color: rgba(102,102,102,0.10);
	color: #fff;
}

[class^="store_"] .btn-primary {
    color: #000;
    background-color: #fc0;
}
[class^="store_"] .btn-primary:hover,
[class^="store_"] .btn-primary:focus,
[class^="store_"] .btn-primary:active {
	color: #000;
	background-color: #ffb700;
}
[class^="store_"] .btn-primary.disabled,
[class^="store_"] .btn-primary[disabled],
[class^="store_"] fieldset[disabled] .btn-primary,
[class^="store_"] .btn-primary.disabled:hover,
[class^="store_"] .btn-primary[disabled]:hover,
[class^="store_"] fieldset[disabled] .btn-primary:hover,
[class^="store_"] .btn-primary.disabled:focus,
[class^="store_"] .btn-primary[disabled]:focus,
[class^="store_"] fieldset[disabled] .btn-info:focus,
[class^="store_"] .btn-info.disabled:active,
[class^="store_"] .btn-info[disabled]:active,
[class^="store_"] fieldset[disabled] .btn-info:active {
    border-color: rgba(255,204,0,0.10);
    background-color: rgba(255,204,0,0.10);
	color: #000;
}




/* Header
-------------------------------- */

.store_header {
    width: 100%;
    min-width: 768px;
    background: #fff;
}
.store_header .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    min-width: 768px;
    max-width: 100%;
}
.store_header a {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.store_header .store_nav_small {
    font-size: 14px;
    font-size: 1.4rem;
}
.store_header .store_nav_small li {
    padding: 0 10px;
}
.store_header .store_nav_small li a:link,
.store_header .store_nav_small li a:visited,
.store_header .store_nav_small li a:hover,
.store_header .store_nav_small li a:active {
    color: #333;
    text-decoration: none;
}
.store_header .store_nav_small li a:hover {
    color: #000;
    text-decoration: underline;
}
.store_header .store_header_login li {
    padding-left: 15px;
}
.store_header a.btn-info,
.store_header a.btn-primary {
    font-weight:bold;
}
.store_header a.btn-link:hover{
    color: #999;
    text-decoration: none;
}

.store_header .store_header_nav_area ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;/* Android < 4.3 */
    -webkit-justify-content: flex-end;/* safari(PC) */
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media only screen and (min-width: 992px) {

    .store_header .store_header_nav_area {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .store_header .store_header_nav_area ul {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    
}

.store_header .main_logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.store_header .main_logo a:not(.store_title) {
    padding-right: 20px;
    padding-left: 3px;
}

.store_header .main_logo .store_title {
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 1;
    font-weight: bold;
    color: #000;
    display: inline-block;
    padding: 0;
    text-decoration: none;
}
.store_header .main_logo .store_title:link,
.store_header .main_logo .store_title:visited,
.store_header .main_logo .store_title:hover,
.store_header .main_logo .store_title:active {
    color: #000;
    text-decoration: none;
}
.store_header .main_logo .store_title:hover {
    color: #333;
}


/* store_information
--------------------------- */

.store_header .store_information p {
    margin: 0; padding: 0;
}
.store_header .store_information a {
    display: block;
    background: #FEE9E9;
    text-align: center;
    padding: 1em;
}
.store_header .store_information a strong {
    color: #c00;
    font-weight: normal;
}
.store_header .store_information a:link,
.store_header .store_information a:visited,
.store_header .store_information a:active {
    background: #FEE9E9;
    text-decoration: underline;
}
.store_header .store_information a:hover {
    background: #fee3e3;
    text-decoration: none;
}

.store_header .p-header__news{
margin-left: 20px;
text-decoration: underline;
}
.store_header .p-header__news:hover{
text-decoration: none;
}

/*  navigation
--------------------------- */

.store_subnav {
    width: 100%;
    min-width: 768px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background: #fff;
}
.store_subnav .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    min-width: 768px;
    max-width: 100%;
    min-height: 80px;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* sub_nav */

.store_subnav ul {
    text-align: left;
    border: 0 none;
    padding: 0;
}
.store_subnav ul li a {
    padding: 0; 
}
.store_subnav ul li a:link, 
.store_subnav ul li a:visited, 
.store_subnav ul li a:hover, 
.store_subnav ul li a:active {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: normal;
    color: #000;
}
.store_subnav .category_list li {
    display: inline-block;
    border: 0 none !important;
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0;
    padding: 0.3em;
}
.store_subnav .category_list a {
    text-decoration: none;
}
.store_subnav .category_list a:link,
.store_subnav .category_list a:visited,
.store_subnav .category_list a:active, {
    text-decoration: none;
}

.store_subnav .category_list a:hover {
    text-decoration: underline; 
}

/* store_search */

.store_subnav .store_search {
    width: 300px;
    margin-left: 10px;
}
.store_subnav .store_search input[type="text"],
.store_subnav .store_search button {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    font-size: 1.6rem;
    vertical-align: middle;
    border-radius: 2px;
    padding: 0 10px;
}
.store_subnav .store_search input[type="text"] {
    border: 1px solid #ccc;
    float: left;
    width: 75%;
}
.store_subnav .store_search button {
    letter-spacing: 0.3em;
    padding: 0 18px 0 20px;
}
.store_subnav .searchBtn {
    float: left;
    width: 25%;
}

.store_subnav + .contents {
    padding-top: 0 !important;

}
/* navigation fixed */

.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

/* Footer
-------------------------------- */

.store_footer {
    position: relative;
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid #ccc;
    background: #ebeced;
    line-height: 1.2;
}
.store_footer .inner {
    max-width: 100%;
    padding: 0 30px;
}
.store_footer ul {
    text-align: left;
}
.store_footer ul li {
    line-height: 2;
    display: inline-block;
    font-size: 14px;
    font-size: 1.4rem;
    margin-right: 20px;
}
.store_footer a {
    color: #666;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
.store_footer a:link,
.store_footer a:visited,
.store_footer a:hover,
.store_footer a:active {
    color: #666;
    text-decoration: none;
}
.store_footer a:hover {
    color: #000;
}
.store_footer .copyright {
    color:#666;
    margin: 0;
    padding: 5px 0 10px;
    text-align: center;
    line-height: 1.2;
}

