@charset "UTF-8";

#breadcrumb {
    margin-bottom: 0;
}

/*--------------------
トップスライダー
--------------------*/

/*---カテゴリー---*/

.cat {
	position: absolute;
	font-size: 12px;
	line-height: 12px;
	min-width: 5em;
	font-weight: bold;
	top: -20px;
	z-index: 1;
	text-align: center;
	padding: .4em 8px .4em 10px;
	box-shadow: 7px 3px 5px rgba(0, 0, 0, 0.1);
	background: #e597a5;
	color: #FFFFFF;
}

.cat:after{
	content:"";
	width: 1.5em;
	height:100%;
	right: -1.5em;
	top: 0;
	position:absolute;
	background: linear-gradient(to top right, #e597a5 50%, transparent 50%) top left/ 100% 100% no-repeat;
}

#recommend {
    padding: 0 0 70px;
    overflow: hidden;
}
#recommend .slider {
    width: 80%;
    max-width: 960px;
    margin:0 auto;
}
#recommend .slider a {
    color: #fff;
    display: block;
    position: relative;
}
#recommend .slider figure {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    margin: 0;
    margin-bottom: 12%;
}
#recommend .slider img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease-out;
}
#recommend .slider a:hover img {
    transform: translate(-50%, -50%) scale(1.01);
}
#recommend .slider a .articleTxt {
	transition: all 300ms ease;
	opacity: 0;
	width: 100%;
	position: absolute;
	bottom: -5em;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	padding: 0.5em 10px;
	line-height: 1.5;
	overflow: hidden;
	height: 5em;
	box-sizing: border-box;
}
#recommend .slider .slick-center a .articleTxt {
	opacity: 1;
}
#recommend .slider a .articleTxt .ttl {
	font-size: 16px;
	font-weight: bold;
}
#recommend .slick-slide .cat {
	transition: all 500ms ease;
	opacity: 0;
	top: 15px;
	font-size: 14px;
	line-height: 14px;
}
#recommend .slick-slide.slick-center .cat {
	opacity: 1;
}
#recommend .slick-slide {
    transition: all 500ms ease;
    opacity: .6;
}
#recommend .slick-slide.slick-center {
    opacity: 1;
}
#recommend .slick-list {
    overflow: visible;
}
#recommend .slick-dots {
    bottom: -30px;
}
#recommend .slick-dots li {
    width: auto;
    height: auto;
    margin: 0 8px;
}
#recommend .slick-dots li button {
    width: 15px;
    height: 15px;
    background: #aaa;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: .2s;
}
#recommend .slick-dots li button:before {
    content: none;
}
#recommend .slick-dots li button:hover,
#recommend .slick-dots li button:focus {
    outline: none;
    opacity: .75;
    background: #fff;
    border: 1px solid #aaa;
}
#recommend .slick-dots li.slick-active button {
    opacity: .75;
    background: #fff;
    border: 1px solid #aaa;
}
#recommend .slick-arrow {
    z-index: 1;
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #cccccc;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    color: #cccccc;
    transition: all 300ms ease;
}
#recommend .slick-arrow:hover {
    color: #a9a9a9;
}
#recommend .slick-arrow:before {
    display: none;
}
#recommend .slick-arrow svg {
    font-size: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#recommend .slick-prev {
    left: -35px;
}
#recommend .slick-next {
    right: -35px;
}


/*--------------------
メインコンテンツ
--------------------*/

#event > .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#event > .container:last-of-type {
    padding-bottom: 50px;
}
#event .column01 > section {
    margin-bottom: 40px;
}
#event .column01 > section:last-of-type {
    margin-bottom: 0;
}
#event .column01 {
    width: 72%;
    max-width: 900px;
}
#event .column02 {
	width: 27%;
	min-width: 300px;
	margin-left: 25px;
	position: sticky;
	top: 15px;
}
#event .column02 > section {
	margin-bottom: 15px;
}

/*------ ボタン ------*/

#event .btn {
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
    position: relative;
    display: table;
    box-sizing: border-box;
    color: #e597a5;
    border: solid 2px #e597a5;
    background: rgba(255, 255, 255, 0.4);
    text-align: center;
    text-decoration: none;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-shadow: none;
}
#event .btn:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #e597a5;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#event .btn.prev:before {
    right: 0;
	left: auto;
}
#event .btn:hover:before,
#event .btn:active:before {
    width: 100%;
}
#event .btn span {
    position: relative;
    display: block;
    padding: 12px;
}
#event .btn:hover {
    color: #fff;
}

/*---イベントカテゴリー---*/

.eventNav {
	margin: 20px 0;
}
.eventNav ul {
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #e597a5;
    display: flex;
    max-width: 100%;
    width: 100%;
}
.eventNav li {
    width: 100%;
    height: auto;
    padding: 6px;
    border-left: solid 1px #e597a5;
    color: #e597a5;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
    box-sizing: border-box;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    overflow: hidden;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1024px){
.eventNav li {
    font-size: 1.2vw;
    padding: 0.6vw 0;
}
}
.eventNav li:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    display: block;
    content: '';
    background: #e597a5;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.eventNav li:hover:before,
.eventNav li:active:before,
.eventNav li.current:before {
    height: 100%;
}
.eventNav li span {
    position: relative;
    display: block;
}
.eventNav li:hover,
.eventNav li.current {
    color: #fff;
}
.eventNav li:first-of-type {
    border-left: none;
}


/*---記事レイアウト---*/

section h2.ttl {
    background: #fff;
    background: linear-gradient(
    -45deg, #feeff4 25%, #fff 25%,
    #fff 50%, #feeff4 50%,
    #feeff4 75%, #fff 75%,
    #fff);
    background-size: 15px 15px;
    background-attachment: fixed;
    padding: 10px 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #777;
}
section .empty {
    display: none;
    font-size: 16px;
    text-align: center;
    background: rgba(0, 0, 0, .03);
    padding: 2%;
    margin-bottom: 20px;
}
.catWrap {
    width: 98%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.catWrap li {
    top:20px;
	position: relative;
    width: 48.3%;
    margin-right: 3%;
    margin-bottom: 8%;
}
.catWrap li:nth-child(2n) {
    margin-right: 0;
}
.catWrap a {
    display: flex;
    flex-direction: column;
    height: 100%;
	transition: .3s;
}
.catWrap a:hover {
    opacity:0.8;
}
.catWrap a:hover img {
    transform: translate(-50%, -50%) scale(1.05);
}
.catWrap img {
    /* width:100%; */
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 500ms ease-out;
}
.catWrap figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .01);
}
.catWrap .articleTxt {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.catWrap .ttl {
	line-height: 1.5;
	font-size: 16px;
	font-weight: bold;
	margin-top: 6px;
	color: #e597a5;
}
.catWrap .tag {
    border: 2px solid #e597a5;
    background-color: #e597a5;
    color: #ffffff;
    padding: 2px 10px;
    margin: auto 4px 4px auto;
    font-size: 12px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    display: inline-block;
}
/*---IEでのタイトル突き抜け対策---*/
@media screen\0 {
	.catWrap .articleTxt {
		display: block;
	}
}
/*--------------------------------*/

/*--------------------
公式Twitter・SNS
--------------------*/

#snsWrap {
    background: #feeff4;
    padding: 10px;
}
#snsWrap h3.ttl {
    color: #e597a5;
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 8px;
    padding-bottom: 2px;
    border-bottom: 1px dashed #e597a5;
}

.twitterButton {
    background: #1DA1F2;
    padding: 10px;
    margin-bottom:10px;
}
.twitterButton h3.ttl {
    font-family: "メイリオ";
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
}
/*--------------------
後援イベント
--------------------*/

#supportWrap h3.ttl {
    color: #e597a5;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin-top: 20px;
}
#supportWrap h3.ttl:before,
#supportWrap h3.ttl:after {
    content: "";
    width: 16%;
    height: 2px;
    display: block;
    background: linear-gradient(to left, #e597a5 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
}
#supportWrap .supportCont{
	max-height: 300px;
	overflow: auto;
}
#supportWrap dd {
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
#supportWrap dt {
    padding-top: 8px;
    font-weight: bold;
}
#supportWrap li{
	margin:10px 0;
}
#supportWrap .note {
    font-size: 13px;
	color: #777;
    text-align: center;
}
#supportWrap .note a {
	color: inherit;
	text-decoration: underline;
}
#supportWrap #address {
    padding-bottom: 5px;
    border: 2px solid #e597a5;
    padding: 10px 20px;
    border-radius: 15px;
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}
#supportWrap #address .ttl {
    color: #e597a5;
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    margin-bottom: 8px;
    padding-bottom: 2px;
    border-bottom: 2px solid #e597a5;
}
/*--------------------
イベント詳細
--------------------*/

/*----- ナビゲーション ------*/

#detailNav {
    background: #fff;
}
#detailNav ul {
    display: flex;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
}
#detailNav li {
    min-width: 20%;
    margin-right: 10px;
}
#detailNav li svg {
	margin-right:.3em;
}
#detailNav li:last-child {
	margin-right: 0;
}
#detailNav li span {
	text-align: center;
	padding: 15px;
	min-height: 50px;
	background: #fdf9fa;
	border: 1px solid #e597a5;
	border-bottom: none;
	border-radius: 5px 5px 0 0;
	transform: translateY(2px);
	color: #e597a5;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.3;
	transition: .3s;
	position: relative;
	opacity: .8;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
#detailNav li:first-of-type span {
    transform: translateY(0);
	background: #fff;
    opacity: 1;
    z-index: 1;
}
#detailNav li:first-of-type:before {
	 content: "";
	 display: block;
	 width: 100%;
	 height: 1px;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 background: #e597a5;
	 z-index: 1;
}
#detailNav li a span:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    display: block;
    content: '';
    background: #e597a5;
    transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}
#detailNav li a.prev span:before {
    right: 0;
    left: auto;
}
#detailNav li a:hover span:before,
#detailNav li a:active span:before {
    width: 100%;
}
#detailNav li a:hover span {
    color: #fff;
    transform: translateY(0);
}

/*----- 記事レイアウト ------*/

article {
    position: relative;
    padding-bottom: 40px;
    border: 1px solid #e597a5;
    border-top: none;
    padding: 0 15px;
}
article .entryHeader{
    margin-bottom: 30px;
    padding: 15px 10px;
    position: relative;
}
article .entryHeader:after {
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: linear-gradient(to left, #e597a5 25%,transparent 25%) repeat-x;
    background-size: 10px 100%;
    position: absolute;
}
article .entryHeader:before {
    top: 0;
}
article:after,
article .entryHeader:after {
    bottom: 0;
}
article .entryHeader h1.entryTtl {
	font-size: 26px;
	color: #666666;
	font-weight: bold;
}
article .entryHeader .entryMeta {
	font-size: 13px;
	color: #888;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
article .entryHeader .entryMeta > div {
    margin-right: 15px;
    margin-top: 5px;
}
article .entryHeader .entryMeta > div:last-of-type {
    margin-right: 0;
}
article .entryHeader .entryMeta > div > svg {
	margin-right: .3em;
}

/*--- タグ ---*/

article .entryHeader .tag{
    padding-left: 1.3em;
    text-indent: -1.3em;
}
article .entryHeader .tag > *{
	display: inline;
}
article .entryHeader .tag li{
	display: inline-block;
	text-indent: initial;
}
article .entryHeader .tag li:after{
	content:" , ";
}
article .entryHeader .tag li:last-of-type:after{
	content: "";
}
article .entryHeader .tag a {
	color: inherit;
}
article .entryHeader .tag a:hover {
	color: #705d92;
}

/*--- シェアボタン ---*/

article .entryHeader .share {
    display: flex;
    align-items: center;
}
article .entryHeader .share .shareTtl {
	margin-right: 0.5em;
}
article .entryHeader .share .shareTtl svg {
	margin-right: 0.3em;
}
article .entryHeader .share ul {
    display: flex;
    justify-content: center;
}
article .entryHeader .share li {
    margin-right: 5px;
}
article .entryHeader .share li:last-of-type {
    margin-right: 0;
}
article .entryHeader .share a {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    font-size: 18px;
    border-radius: 50%;
    background: #ccc;
    color: #fff;
    transition: all 300ms ease-out;
}
article .entryHeader .share svg {
    transition: all 300ms ease-out;
}
article .entryHeader .share a:hover {
	opacity: .9;
}
article .entryHeader .share a:hover svg {
	transform:scale(1.1);
}
article .entryHeader .share a.facebook {
    background: #1877f2;
}
article .entryHeader .share a.twitter {
    background: #1DA1F2;
    background: #000;
}
article .entryHeader .share a.line {
    background: #00b900;
}
article .entryContent {
    font-size: 14px;
    line-height: 1.6;
}
article .entryContent .block {
    max-width: 800px;
    margin: 0 auto 4em auto;
}
article#detailWrap .entryContent .block > *:last-child {
	margin-bottom: 0;
}
article .entryContent .block:after {
    clear: both;
    height: 0;
    font-size: 0;
    visibility: hidden;
    display: block;
    content: ".";
}
article .entryContent h2 {
	font-size: 20px;
	color: #666666;
	font-weight: bold;
	padding: 6px 10px;
	margin-bottom: 20px;
	position: relative;
	border-bottom: 2px solid #e597a5;
	border-left: 10px solid #e597a5;
}
article .entryContent figure {
    max-width: 640px;
    margin: 0 auto 2em auto;
    position: relative;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}
article .entryContent figure.jstream {
    height:360px;
}
article .entryContent figure.fl {
    float: left;
    margin: 0 2em 2em 0;
    width: 40%;
}
article .entryContent figure.fr {
    float: right;
    margin: 0 0 2em 2em;
    width: 40%;
}
article .entryContent figure img {
    width: 100%;
}
article .entryContent figure figcaption {
    background: rgba(255, 255, 255, .9);
    padding: 5px 10px;
    position: absolute;
    max-width: 80%;
    right: -10px;
    bottom: -10px;
    font-size: 13px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
article#detailWrap .entryContent .btn {
    max-width: 500px;
    margin: 2em auto;
}
article .entryContent table {
    margin: 2em 0;
    border-top: 1px solid #ccc;
}
article .entryContent table tr {
    border-bottom: 1px solid #ccc;
}
article .entryContent table th,
article .entryContent table td {
    padding: 1em 0.5em;
    min-width: 12em;
    box-sizing: border-box;
    font-weight: normal;
}

/*------ ページング ------*/

.pagination {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 20px;
}
.pagination li {
    width: 48%;
}
.pagination a {
    display: flex;
    align-items: center;
    transition: .3s;
}
.pagination a:hover {
    color: #705d92;
}
.pagination .prev a {
	justify-content: flex-start;
}
.pagination .next a {
	justify-content: flex-end;
}
.pagination .prev svg {
    margin-right: 0.5em;
}
.pagination .next svg {
    margin-left: 0.5em;
}
.pagination svg {
    opacity: .8;
}
.pagination .disabled {
    visibility: hidden;
}


/*--------------------
広告
--------------------*/

.ad {
	background: linear-gradient(
	-45deg, #F6F6F6 25%, #fff 25%,
	#fff 50%, #F6F6F6 50%,
	#F6F6F6 75%, #fff 75%,
	#fff);
	background-size: 15px 15px;
	background-attachment: fixed;
	padding: 14px 0;
}
#ad3_wrap {
	margin-bottom: 15px;
	text-align: center;
}
#ad4_wrap {
	text-align: center;
}
@media screen and (min-width: 1025px){
#ad1_2_wrap {
	display:flex;
	justify-content: center;
}
#ad1 {
	margin-right: 90px;
}
}
@media screen and (min-width: 967px) and (max-width: 1024px){
#ad1_2_wrap {
	display:flex;
	justify-content: center;
}
#ad1 {
	margin-right: 40px;
}
}
@media screen and (max-width: 967px){
#ad1_2_wrap {
	display:block;
	text-align: center;
}
#ad1 {
	margin-bottom: 15px;
}
}