.@charset "UTF-8";
/* CSS Document */

/* ▼基本要素スタイル */
/* ----------------------------------------------------- */
html {
	overflow: auto;
}
body {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;	/* center in winIE */
	padding: 0;
	font-size: 62.5%;
	font:14px/1.231 Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	color: #000;
/*	overflow: hidden;*/
}
* {
	font-family: inherit;
	font-size: 100%;
	line-height: 160%;
	/* パディングとボーダーを幅と高さに含める */
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
div, p, ul, ol, li, dl, dt, dd,
h1, h2, h3, h4, h5, h6,
form, input, table, tr, th, td,
object, param, embed {
	margin: 0;
	padding: 0;
	text-align: left;
}

p {
	margin: 0 0 2rem;
}

a {
	outline: none;	/* リンク後の点線を表示させない */
	text-decoration: none;
	transition: 0.3s;
	color: #e6007f;
}
a:hover {
	transition: 0.8s; /* 変化が終わるまでの秒数　*/
	/* Hover時にリンク用画像を透過（70%） */
	opacity: 0.7 ;
	filter: alpha(opacity=70) ;	/* Ie用 */
}

a svg {
	transition: 0.3s;
}
a svg:hover {
	transition: 0.8s; /* 変化が終わるまでの秒数　*/
	/* Hover時にリンク用画像を透過（70%） */
	opacity: 0.7 ;
	filter: alpha(opacity=70) ;	/* Ie用 */
}

li {
	list-style: none;
	list-style-position: inside;
}

img {
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}

.small {
	font-size: 85%;
}
.bold {
	font-weight: bold;
}
.strong {
	font-size: 110%;
	font-weight: bold;
	line-height: 1.8em;
}
.underline {
	text-decoration: underline;
}

.maker_y {
	position: relative;
	z-index: 1;
}
.maker_y:before {
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 1rem;
	top: 0.5rem;
	background-color: #ffff00;
	content: "";
	z-index: -1;
}

.red {
	color: #e6007f;
}
.green {
	color: #419b96;
}

h3 {
	margin: 0 0 1rem;
	padding: 0.3rem 1rem;
	border-left: 10px solid #000;
	font-size: 180%;
}
h3 span {
	display: inline-block;
	margin-left: 0.8rem;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 80%;
	font-weight: normal;
}


/*------------------
リボン風見出し設定
------------------*/
.ribbon {
	position: relative;
	background: #e6007f;
	color: #fff;
	text-align: center;
	padding: 0.2em 0.5em; /* Adjust to suit */
	margin: 0 auto 1.5em; /* Based on 24px vertical rhythm. 48px bottom margin - normally 24 but the ribbon 'graphics' take up 24px themselves so we double it. */
}
.ribbon:before, .ribbon:after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	border: 1em solid #e6007f;
}
.ribbon:before {
	left: -1.3em;
	border-right-width: 0.5em;
	border-left-color: transparent;
}
.ribbon:after {
	right: -1.3em;
	border-left-width: 0.5em;
	border-right-color: transparent;
}

/*------------------
矢印基礎設定
------------------*/
.arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 16px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.arrow:before,
.arrow:after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}

/* > くの字（右）小 */
.doglegS:before{
	left: 3px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* > くの字（右）大 */
.doglegLR:before{
	left: 3px;
	width: 0.5rem;
	height: 0.5rem;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* < くの字（左）大 */
.doglegLL:before{
	left: 8px;
	width: 0.5rem;
	height: 0.5rem;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

/* >> 連続くの字（右）中 */
.DdoglegM:before{
	left: 1rem;
	width: 0.8em;
	height: 0.8em;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 5;
}
.DdoglegM:after{
	left: 1.3rem;
	width: 0.8em;
	height: 0.8em;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 5;
}

/* > くの字の矢印アイコン（正円背景） */
.Cdogleg:before{
	width: 25px;
	height: 25px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: #fff;
}
.Cdogleg:after{
	width: 9px;
	height: 9px;
	left: 7px;
	bottom: 4px;
	border-top: 2px solid #e6007f;
	border-right: 2px solid #e6007f;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}




/*------------------
float設定
------------------*/
.f-left {
	float: left;
}
.f-right {
	float: right;
}

/*------------------
テキストalign設定
------------------*/
.t-left {
	text-align: left;
}
.t-right {
	text-align: right;
}
.t-center {
	text-align: center;
}

/*------------------
フォントサイズ設定
------------------*/
.fs80 {
	font-size: 80%;
}
.fs90 {
	font-size: 90%;
}
.fs100 {
	font-size: 100%;
}
.fs120 {
	font-size: 120%;
}
.fs150 {
	font-size: 150%;
}
.fs180 {
	font-size: 180%;
}
.fs200 {
	font-size: 200%;
}

/*------------------
マージン設定
------------------*/
.mb1em {
	display: inline-block;
	margin-bottom: 1em;
}

/*------------------
PC/SP　表示切り替え
------------------*/
.pcdisplay {
	display: block !important;
}
.spdisplay {
	display: none !important;
}

/*------------------
clearfix
------------------*/
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}


/*------------------
[ボタン]スムーススクロール設定
------------------*/
#dynamic-to-top {
	content: "";
}
#dynamic-to-top span {
	position: relative;
	display: block;
	background: none;
	content: "";
}
#dynamic-to-top:before,
#dynamic-to-top:after{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
	z-index: 91;
}
#dynamic-to-top:before {
	display: inline-block;
	top: -30px !important;
	box-sizing: border-box !important;
	width: 15px !important;
	height: 15px !important;
	border: 15px solid transparent !important;
	border-bottom: 20px solid #fff !important;
}
#dynamic-to-top:after {
	display: inline-block;
	bottom: -15px;
	width: 0;
	height: 12px;
	border-left: 15px solid #fff;
}


/*------------------
[ボタン] 「今すぐ参加表明する」ボタン設定
------------------*/
.btnParticipation {
	float: right;
	margin: 0 0 1rem 0.2rem;
}
.btnParticipation span {
	position: relative;
	display: inline-block;
	padding: 0.2rem 0.5rem 0.2rem 2.3rem;
	background: #e6007f !important;
	color: #fff;
}
.btnParticipation span svg {
	position: absolute;
	width: 25px;
	height: 18px;
	left: 0.5rem;
	top: 0;
	bottom: 0;
	margin: auto 0;
}



/* ▼追加フォントスタイル */
/* ----------------------------------------------------- */
@font-face {
    font-family: 'icomoon';
    src:    url('./assets/fonts/icomoon.eot?o7hxo6');
    src:    url('./assets/fonts/icomoon.eot?o7hxo6#iefix') format('embedded-opentype'),
        url('./assets/fonts/icomoon.ttf?o7hxo6') format('truetype'),
        url('./assets/fonts/icomoon.woff?o7hxo6') format('woff'),
        url('./assets/fonts/icomoon.svg?o7hxo6#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-ticket:before {
    content: "\e900";
}
.icon-event07:before {
    content: "\e908";
}
.icon-event06:before {
    content: "\e901";
}
.icon-event05:before {
    content: "\e902";
}
.icon-event04:before {
    content: "\e903";
}
.icon-event03:before {
    content: "\e904";
}
.icon-event02:before {
    content: "\e905";
}
.icon-event01:before {
    content: "\e907";
}
.icon-menu:before {
    content: "\e906";
}





/*==================

*wrap
*[レイアウト]

==================*/
#wrap {
	width: 100%;
}


/*==================

*header
*[レイアウト]

==================*/
header {
	width: 100%;
	margin: 0 0 1.5rem;
}
header #headInfo {
	position: relative;
	width: 960px;
	margin: 1rem auto;
}
header #headInfo div#headBtnArea,
header #headInfo h1 {
	float: right;
}

/*------------------
 ヘッダーボタンエリア設定（右）
------------------*/
header #headInfo div#headBtnArea {
}
header #headInfo div#headBtnArea a {
	float: right;
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0.1rem 0.5rem;
	background-color: #979797;
	color: #fff;
        font-size: small;
}
header #headInfo div#headBtnArea a svg {
	display: block;
	width: 27px;
	height: 23px;
        margin: auto;

}
header #headInfo div#headBtnArea a:first-child {
	padding: 0;
	background-color: transparent;
}
/* ヘッダー チケットセンター ボタン */
header #headInfo div#headBtnArea a.btn_ticket_head {
	position: relative;
	width: 245px;
	padding: 0 1rem 0 0.5rem;
	background: #ffff00;
	color: #000;
	font-size: 120%;
	font-weight: bold;
	text-align: center;
}
header #headInfo div#headBtnArea a.btn_ticket_head:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	top: 0;
	bottom: 0;
	right: 0.5rem;
	margin: auto 0;
	border-style: solid;
	border-width: 5.5px 0 5.5px 6px;
	border-color: transparent transparent transparent #000000;
	content: "";
}
.icon-ticket {
	padding: 0 0.5rem 0 0;
	line-height: 3rem;
	font-size: 100%;
}

/*------------------
H1 サイトロゴ設定
------------------*/
header #headInfo h1 svg {
	position: absolute;
	width: 185px;
	height: 50px;
	left: 0;
}

/*------------------
ナビゲーター設定
------------------*/
header nav {
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
	background-color: #000 !important;
}
header nav ul {
	display: table;
	width: 960px;
	margin: 0 auto;
	padding: 0;
}
header nav ul li {
	position: relative;
	display: table-cell;
}
header nav ul li:first-child:before {
	position: absolute;
	top: 0.5rem;
	left: 0;
	content: "|";
	color: #fff;
}
header nav ul li:after {
	position: absolute;
	top: 0.5rem;
	content: "|";
	right: 0;
	color: #fff;
}
header nav ul li a {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0.5rem 0;
	text-align: center;
	color: #fff;
}


/*------------------
ヘッダー画像エリア設定（index）
------------------*/
header #headH2Home {
	width: 100%;
	background-color: #e6007f;
	margin: -6px 0 0;
	padding: 0;
	line-height: 0 !important;
	font-size: 0px;
}
header #headH2Home h2 {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	padding: 0;
	line-height: 0 !important;
	font-size: 0px;
}
header #headH2Home h2 img {
	margin: 0;
	padding: 0;
}

/*------------------
ヘッダー画像エリア設定（index以外）
------------------*/
header #headH2Under {
	display: block;
	width: 100%;
	background-color: #e6007f;
	margin: -6px 0 0;
	padding: 0;
}
header #headH2Under h2 {
	width: 960px;
	height: 110px;
	margin: 0 auto;
	padding: 0;
	line-height: 7rem;
	background: url(./assets/images/h2_img01_n.png) left top no-repeat;
	background-size: contain;
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 220%;
	font-weight: normal;
	color: #fff;
}
header #headH2Under h2 span {
	margin-left: 1rem;
	font-size: 60%;
	font-weight: bold;
}
header #headH2Under h2 .icon-event07 {
	margin-left: 0;
	margin-right: 0.5rem;
	font-size: 100%;
	font-weight: normal;
}

.bannerAreaUnder {
	width: 100%;
	margin: 0 0 1.5rem;
}
.bannerAreaUnder div {
	margin: 0 0 1rem;
}


/*==================

*contentWrap
*[レイアウト]

==================*/
#contentWrap {
	width: 960px;
	margin: 0 auto;
	background-color: #fff;
}

#contentWrap #mainContentWrap {
	float: left;
	width: 710px;
	padding-bottom: 0.1rem;
}
#contentWrap aside {
	float: right;
	width: 210px;
	padding-bottom: 5rem;
}


/*==================

*mainContentWrap
*[レイアウト]

==================*/
/*------------------
メインコンテンツエリア 下部 バナーエリア設定
------------------*/
#bannerAreaFooter {
	width: 100%;
	margin: 0 0 1.5rem;
}

.bannerAreaUnder {
	width: 100%;
	margin: 0 0 1.5rem;
}
.bannerAreaUnder .bnrAttention {
}


/*==================

*aside
*[レイアウト]

==================*/
/*------------------
sysArea設定
------------------*/
aside ul {
	width: 100%;
}
aside ul li {
	margin: 0 0 0.5rem;
}
aside ul li a {
}






/*==================

*footer
*[レイアウト]

==================*/
footer {
	width: 100%;
	background-color: #000;
	color: #fff;
}
footer div {
	width: 960px;
	margin: 0 auto;
	padding: 1rem 0 2rem;
}
footer div svg.acost_footer_logo {
	float: right;
	width: 150px;
	height: 40px;
}
/* svg画像の色を変更 */
footer div svg.acost_footer_logo path {
	background: #fff;
	fill: currentColor;
}
footer div ul {
}
footer div ul li {
	float: left;
	margin-left: 1.5rem;
}
footer div ul li:first-child {
	margin: 0;
}
footer div ul li a {
	color: #fff;
}
footer div p {
	color: #fff;
}
footer div > div {
}
footer div > div a {
	display: inline-block;
	float: left;
	margin-left: 0.75rem;
}
footer div > div a:first-child {
	margin: 0;
}

/*==================

*終了しましたボックス
*[レイアウト]

==================*/


.msr_box02 {
  background-color:#e5007e;
}
.msr_box02 a{
  box-sizing: border-box;
  display:block;
  position: relative;
  transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
}
.msr_box02 p {
  color: #FFFFFF;
  font-size: 13px;
  line-height: 1.6;
  padding: 0 20px 8px 8px;
}
.msr_box02 .ttl {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  padding: 8px 20px 4px 8px;
}
.msr_box02 a:after {
  background-image: url(/stylerecipe_img/flat_white_box01.png);
  background-repeat: no-repeat;
  bottom: 5px;
  content: " ";
  display: inline-block;
  *display:inline;
  *zoom:1;
  height: 20px;
  position: absolute;
  right: 5px;
  width: 20px;
}
.msr_box02 a:hover{
  opacity: 0.8;
}


