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

@media screen and (min-width: 0px) and (max-width: 960px) {

.pc-no {
    display: inline;
}

.sp-no {
    display: none;
}

.header {
    width: 100%;
    height: 70px;
    margin: 0 auto;
    padding: 0;
    position: fixed;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.9);
    top: 0;
    left: 0;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);
}

.header .hdr-wrap {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/***TOP HEADER***/
.header .hdr-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 1%;
}

.header .hdr-logo {
    width: 50%;
    max-width: 220px;
    margin: 0;
}

.header .hdr-r {
    display: none;
}

/***MENU FOR SP ONLY***/

.header .sp-top-nav {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.header ul.top-nav {
    margin: 0 0 30px;
    padding: 0;
    overflow: visible;
    list-style: none;
    display: flex;
    justify-content: space-around;
}

.header ul.top-nav li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 110%;
    font-weight: 700;
}

.header ul.top-nav a {
    text-decoration: none;
    color: #000;
}
.header ul.top-nav li.tn-topics a { color: #EA5099;}
.header ul.top-nav li.tn-events a  { color: #006EBD;}

.header .top-btn {
    width: 70%;
    max-width: unset;
    margin: 0 auto 10px;
    font-size: 100%;
    border-radius: 2px;
}

.header .top-btn a {
    width: 100%;
    height: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #FFF;
    transition: all 0.3s;
    background-color: #000;
    border-radius: 2px;
}
.header .top-btn#digital-map a {
    background-color: #01A040;
}
.header .top-btn#guide-book a {
    background-color: #EA5099;
}
.header .top-btn a:hover {
    opacity: 0.5;
}

.header .top-btn a:before {
    content: "";
    width: 35px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}
.header .top-btn#digital-map a:before {
    background-image: url("../img/common/hdr/icon_map.svg");
} 
.header .top-btn#guide-book a:before {
    background-image: url("../img/common/hdr/icon_guidebook.svg");
} 


/**SP NAV: BUTTONS***/

.sub-nav {
    width: 10%;
    display: flex;
    justify-content: flex-end;
}
.sub-btn {
    width: 50px;
    height: 50px;
    margin: 0;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn a {
    width: 100%;
    height: 100%;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn .sb-flex {
    width: 100%;
    height: 100%;
    color: #333333;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    align-content:center;
    text-align: center;
}
.sub-btn .sb-icon {
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    display: block;
}
.sub-btn .ham-icon {
    width: 100%;
}

#menu-wrapper {
    cursor: pointer;
    z-index: 100;
}

#hamburger-menu {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

#hamburger-menu span {
    opacity: 1;
    right: 0;
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    color: black;
    background-color: #0D6EB8;
    position: absolute;
    transform: rotate(0deg);
    transition: .3s all;
}

#hamburger-menu span:nth-child(1) {
    top: 0;
    background-color: #EA5099;
}
#hamburger-menu span:nth-child(2) {
    top: 10px;
    background-color: #01A040;
}
#hamburger-menu span:nth-child(3) {
    top: 20px;
    background-color: #059FE3;
}

#hamburger-menu.open span:nth-child(1) {
    transform: translateY(10px) rotate(135deg);
}
#hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-60px);
}
#hamburger-menu.open span:nth-child(3) {
    transform: translateY(-10px) rotate(-135deg);
}


/***BOTTOM HEADER***/

.header .menu-nav {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    float: none;
    position: fixed;
    top: -100%;
/* Start off the screen */
/* top: 70px;*/
    left: 0;
    z-index: 100;
    
    overflow-y: scroll;
    background-color: rgba(255,255,255,0.9);
    transition: top 0.3s all; /* Change the property to 'top' */
    display: block;  
}

.header nav {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.header nav a {
    color: #0D6EB8;
}

.header ul.nav-list {
    width: 100%;
    margin: 30px auto 60px;
    padding: 0;
    position: relative;
    overflow: visible;
    list-style: none;
    display: block;
    font-size: 100%;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
}

.header ul.nav-list > li {
    width: 90%;
    margin: 0 auto;
    padding: 0;
    line-height: 110%;
    transition: all 0.3s;
    border-bottom: solid 1px #006EBD;
    text-align: left;
}

.header ul.nav-list li:hover {
    opacity: 1.0;
}

.header ul.nav-list li:after {
    display: none;
}
.header ul.nav-list li:hover:after {
    display: none;
}

.header ul.nav-list li a {
    width: 90%;
    margin: 0 auto;
    padding: 15px 5%;
    color: #000;
    display: flex;
    justify-content: flex-start;
    align-items: center;    
}
.header ul.nav-list a:before {
    display: none;
}

.header ul.nav-list li a:after {
    display: none;
}
/****/

ul.nav-list li.dd {
    width: 100%;
    padding: 0;
}

ul.nav-list li.nav-link {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

ul.nav-list li.nav-link a {
    width: 90%;
    display: block;
    padding: 10px 5%;
}
ul.nav-list li.dd > .dd-top,ul.nav-list li.dd > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
ul.nav-list li.dd > .dd-top {
    width: 90%;
    padding: 10px 5%;
}

/***HEART ICON***/
ul.nav-list li.dd > .dd-top:after,ul.nav-list li.dd > a:after {
    content: "";
    width: 15px;
    height: 10px;
    margin: 0 0 0 10px;
    display: block;
    background-image: url("../img/common/hdr_nav-heart.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

ul.nav-list li a {
    color: #000;
    transition: all 0.3s;
}
ul.nav-list li a:hover,
ul.nav-list li.dd > .dd-top:hover {
    color: #000;
}

ul.dropdown {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    background-color: #EA5099;
    min-width: 150px;
    font-size: 80%;
    line-height: 110%;
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0);
-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0);
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0);
    
    transition: all 0.3s;
    display: none;
    opacity: 1.0;
    height: 100%;
}
ul.dropdown:before {
    display: none;
}

ul.nav-list li.dd:hover > ul.dropdown {
    opacity: 1.0;
}

ul.dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
    height: 100%;
    border-bottom: solid 1px #E0E0E0;
}

ul.dropdown li:first-child {
    border-top: solid 1px #E0E0E0;
}

ul.dropdown li:last-child {
    border-bottom: none;
}

ul.dropdown a {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 15px 0 15px 10%;
    transition: all 0.3s;
    background-color: transparent;
}
ul.dropdown a:hover {
    color: #FFF !important;
    background-color: #006EBD;
}



.header .hdr-sns {
    
    width: 60%;
    margin: 0 auto;
    padding: 40px 10%;
    background-color: #FFF;
    border-radius: 10px;
    
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}
.header .hdr-sns a {
    width: 13%;
    transition: all 0.3s;
}
.header .hdr-sns a:hover {
    opacity: 0.3;
}

/****MAIN*****/

.main {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height:600px;
}

.btn {
    width: 70%;
    max-width: 400px;
    margin: 0 auto 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 50px;
    font-size: 100%;
    font-weight: 700;
    line-height: 110%;
    background-color: #FFF;
    transition: all 0.3s;
}
.orange-btn {
    background-color: #E84527;
}
.pink-btn {
    background-color: #EA5099;
}
.blue-btn {
    background-color: #006EBD;
}
.btn:hover {
    background-color: #0090df;
}
.btn a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 20px 0;
    text-align: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s;
}
.orange-btn a,.pink-btn a,.blue-btn a {
    color: #FFF;
}
.btn:hover a {
    letter-spacing: 0.1em;
    color: #FFF;
}

.page {
    width: 100%;
    margin: 70px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page-head {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-image: url("../img/common/page_head-bk.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

h1.page-title {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    font-size: 140%;
    line-height: 110%;
    font-weight: 800;
}

.pankuzu {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #F2F2F2;
}
.pankuzu .wrap {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 70%;
    color: #717171;
}
.pankuzu .wrap a {
    color: #717171;
    text-decoration: none;
    border-bottom: solid 1px transparent;
    transition: all 0.3s;
}
.pankuzu .wrap a:hover {
    border-bottom: solid 1px #717171;
}

.page .page-wrap {
    width: 95%;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.page-intro {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.page-intro:after {
    content: "";
    width: 100%;
    height: 5px;
    display: block;
    margin: 30px 0 0;
    background-color: #EA5099;
    border-radius: 10px;
}

h2.page-mds {
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 210%;
    line-height: 110%;
    font-weight: 700;
}

.page-desc {
    font-size: 100%;
}

.page-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.page-flex .page-l {
    width: 100%;
    margin: 0 0 100px;
}

.page-flex .page-r {
    width: 100%;
}

section.post-sec {
    width: 100%;
    margin: 0 0 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
}
section.post-sec:last-child {
    margin: 0;
}

h3.post-mds {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    color: #006EBD;
    font-size: 200%;
    line-height: 110%;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
h3.post-mds span.jp {
    margin: 0 0 0 10px;
    font-size: 50%;
    font-weight: 500;
    color: #656565;
}
h3.post-mds:before {
    content: "";
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0 5px 0 0;
    background-size: contain;
    background-repeat: no-repeat;
}
h3.post-mds.post-cat:before {
    background-image: url("../img/common/articles/icon_category.svg");
}
h3.post-mds.post-tags:before {
    background-image: url("../img/common/articles/icon_tags.svg");
}
h3.post-mds.post-articles:before {
    background-image: url("../img/common/articles/icon_articles.svg");
}

ul.cat-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
}

ul.cat-list li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #E0E0E0;
    font-size: 100%;
}

ul.cat-list li a {
    width: 90%;
    display: block;
    margin: 0 auto;
    padding: 10px 5%;
    text-decoration: none;
    color: #000;
    transition: all 0.3s;
}
ul.cat-list li a:hover {
    color: #006EBD;
}

ul.tags-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

ul.tags-list li {
    width: auto;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 80%;
    line-height: 110%;
    border: solid 1px #707070;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items:center;
    transition: all 0.3s;
}
ul.tags-list li:hover {
    border: solid 1px #006EBD;
}

ul.tags-list li a {
    width: 100%;
    display: inline-block;    
    padding: 10px;
    text-decoration: none;
    color: #707070;
    transition: all 0.3s;
}
ul.tags-list li a:hover {
    color: #006EBD;
}

.pagination-area {
	width: 80%;
	max-width: 300px;
	margin:60px auto;
	padding: 0;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pagination-area .pagination {
	width: 15.5%;
	height: 10%;
	margin: 0 2%;
	text-align: center;
	color: #036EBD;
	border: solid 3px #036EBD;
    border-radius: 5px;
	font-size: 120%;
	line-height: 240%;
    font-weight: bold;
}
.pagination-area .pagination .current {
    width: 100%;
	height: 100%;
    display: block;
    background-color: #036EBD;
    color: #FFF;
}

.pagination-area .pagination a.page-numbers {
	width: 100%;
	height: 100%;
    margin: 0;
	display: flex;
    justify-content: center;
    align-items: center;
	background-color: #FFF;
    color: #036EBD;
    border-radius: 5px;
    text-decoration: none;
}

/***ARTICLE***/

h2.article-title {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 220%;
    line-height: 110%;
    font-weight: 700;
}

.article-info {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 100%;
    line-height: 110%;
}

.article-info .date {
    color: #656565;
    margin: 0 20px 0 0;
}

.article-info .cat {
    width: 50%;
    max-width: 150px;
    padding: 5px 0;
    background-color: #000;
    color: #FFF;
    text-align: center;
    font-size: 90%;
    border-radius: 20px;
    letter-spacing: 0.2em;
}

.art-tags {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 80%;
    line-height: 110%;
    color: #656565;
}
.art-tags li {
    margin: 0 15px 10px 0;
}
.art-tags li:before {
    content: "#";
    display: inline-block;
    margin: 0;
}

.article-btn {
    margin: 200px auto 0;
    
}


/****FOOTER*****/

.pagetop {
    width: 10%;
    max-width: 60px;
    position: fixed;
    right: 0;
/*    bottom:400px;*/
    bottom: 0;
    z-index: 10;
    line-height: 0%;
    opacity: 1.0;
	cursor: pointer;
    transition: all 0.3s;
    
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}

.pagetop:hover {
    opacity: 0.5;
}

.sticky {
	position: fixed;
    bottom: 0;
}

.footer {
    width: 100%;
    margin: 0;
    padding: 0 0 150px;
    position: relative;
    overflow: hidden;
    background-image: url("../img/common/ftr_bk.svg");
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.link-area {
    width: 100%;
    margin: 0;
    padding: 30px 0 20px;
    position: relative;
    overflow: hidden;
    background-color: #F4F4F4;
}

.link-area ul.link-list {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}
.link-area ul.link-list li {
    width: 48%;
    line-height: 70%;
    margin: 0 0 10px;
    transition: all 0.3s;
}
.link-area ul.link-list li:last-child {
    margin: 0 0 10px;
}
.link-area ul.link-list li:hover {
    opacity: 0.5;
}
.link-area ul.link-list li a {
    width: 100%;
    display: block;
}

.footer .ftr-wrap {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.hakuran {
    width: 88%;
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 20px 5%;
    position: relative;
    overflow: hidden;
    border: solid 3px #FFE6F2;
    border-radius: 10px;
    font-size: 90%;
}

.footer .ftr-logo {
    width: 60%;
    max-width: 300px;
    margin: 0 auto 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
}
.footer .ftr-logo a {
    display: block;
    transition: all 0.3s;
}
.footer .ftr-logo a:hover {
    opacity: 0.5;
}

.footer .committee {
    margin: 0 0 30px;
    text-align: center;
    font-size: 100%;
    font-weight: 700;
    color: #EA5099;
}

.footer .ftr-sns {
    width: 60%;
    max-width: 300px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.footer .ftr-sns a {
    transition: all 0.3s;
}
.footer .ftr-sns a:hover {
    opacity: 0.3;
}


.footer .contact-btn {
    width: 70%;
    max-width: 300px;
    margin: 0 auto 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: solid 1px #707070;
    border-radius: 50px;
    font-size: 100%;
    line-height: 110%;
    background-color: #FFF;
    transition: all 0.3s;
}
.footer .contact-btn:hover {
    background-color: #0090df;
}

.footer .contact-btn a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 15px 0;
    text-align: center;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s;
}
.footer .contact-btn:hover a {
    letter-spacing: 0.1em;
    color: #FFF;
}

.footer .privacy {
    width: 50%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footer .privacy a {
    color: #656565;
    text-decoration: none;
    transition: all 0.3s;
}
.footer .privacy a:hover {
    opacity: 0.5;
}

.footer .privacy a:after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("../img/common/ftr_privacy-arr.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.footer .copyright {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    font-size: 80%;
    color: #EA5099;
    text-align: center;
}



/***TOPICS***/

ul.topics-list {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.topics-list li {
    width: 100%;
    margin: 0 0 30px;
    transition: all 0.3s;
}
ul.topics-list li:hover {
    opacity: 0.5;
}
ul.topics-list li a {
    text-decoration: none;
    color: #000;
}
ul.topics-list li .tl-img {
    width: 99%;
    margin: 0 auto 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    line-height: 70%;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
}
ul.topics-list li .tl-img img {
    line-height: 70%;
}
ul.topics-list li .tl-info {
    width: 100%;
    margin: 0 0 10px;
    display: flex;
    justify-content: space-between;
    font-size: 80%;
    line-height: 110%;
}

ul.topics-list li .tl-info .tl-date {
    width: 20%;    
}

ul.topics-list li .tl-info .tl-cat {
    width: 40%;
    padding: 5px 0;
    background-color: #000;
    color: #FFF;
    text-align: center;
    border-radius: 20px;
    letter-spacing: 0.2em;
}
.cat-ippan {/*pink*/
    background-color: #EA5099 !important;
}
.cat-pickup {/*lightblue*/
    background-color: #059FE3 !important;
}
.cat-supporter {/*orange*/
    background-color: #EE7701 !important;
}
.cat-jigyosha {/*darkblue*/
    background-color: #006EBD !important;
}
.cat-anpan {/*red*/
    background-color: #DC000B !important;
}


ul.topics-list li .tl-title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 100%;
    line-height: 160%;
} 

/***TOPICS INDEX***/

section.ind-sec ul.topics-list {
    width: 100%;
    overflow: visible;
}

section.ind-sec ul.topics-list li {
    width: 80%;
    margin: 0 30px;
}

section.ind-sec ul.topics-list li .tl-img {
    height: unset;
}
section.ind-sec ul.topics-list li .tl-img img {
    width: 100%;
}

section.ind-sec ul.topics-list li .tl-title {
    font-size: 100%;
    font-weight: 700;
}

/***EVENTS***/

ul.events-list {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.events-list li {
    width: 100%;
    margin: 0 0 60px;
    transition: all 0.3s;
}
ul.events-list li:last-child {
    margin: 0;
}
ul.events-list li:hover {
    opacity: 0.5;
}
ul.events-list li a {
    text-decoration: none;
    color: #000;
}
ul.events-list li .el-img {
    width: 99%;
    margin: 0 auto 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
}
ul.events-list li .el-img img {
    line-height: 70%;
}

ul.events-list li .el-cat {
    width: 40%;
    margin: -30px 0 0;
    padding: 10px 0;
    z-index: 10;
    position: relative;
    float: right;
    background-color: #000;
    border-radius: 2px;
    color: #FFF;
    text-align: center;
    font-size: 80%;
    line-height: 110%;
    letter-spacing: 0.2em;
}
.el-cat.cat-monobest {
    
}

ul.events-list li .el-date {
    width: 100%;
    font-size: 80%;
    line-height: 110%;
}

/***EVENTS INDEX***/

section.ind-sec ul.events-list {
    width: 100%;
    overflow: visible;
}

section.ind-sec ul.events-list li {
    width: 80%;
    margin: 0 30px;
}

section.ind-sec ul.events-list li:last-child {
    margin: 0 auto;
}

/***OSHIRASE***/

ul.oshirase-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
}

ul.oshirase-list li {
    width: 100%;
    border-bottom: solid 1px #FFEFE0;
}

ul.oshirase-list li a {
    padding: 10px 0;
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 90%;
    transition: all 0.3s;
}
ul.oshirase-list li a:hover {
    opacity: 0.5;
}

ul.oshirase-list li a .info {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

ul.oshirase-list li a .info .date {
    color: #E84527;
    font-weight: 700;
    margin: 0 10px 0 0;
}

ul.oshirase-list li a .info .cat {
    width: 30%;
    max-width: 100px;
    text-align: center;
    background-color: #EE7701;
    padding: 5px 0;
    border-radius: 5px;
    color: #FFF;
    font-size: 80%;
    line-height: 110%;
}

ul.oshirase-list li a .info .cat-media {
    background-color: #EE7701;
}

ul.oshirase-list li a .info .cat-jigyo {
    background-color: #006EBD;
}

ul.oshirase-list li a .title {
    line-height: 160%;
}



/***MODEL COURSE LIST***/

ul.course-list {
    width: 90%;
    margin: 0 auto 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 2%;
}

ul.course-list li {
    width: 48%;
    margin: 0 0 10px;
    transition: all 0.3s;
}
ul.course-list li:hover {
    opacity: 0.5;
}


}