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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
	font-weight: 500;
    line-height: 210%;
    font-family: "Zen Maru Gothic","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Helvetica", Arial, "メイリオ", Meiryo, sans-serif;
     -moz-font-feature-settings: "palt";
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
    background-color: #FFFFFF;
    color: #231919;
	text-align: left;
}

wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 70%;
    pointer-events: none;
  -webkit-touch-callout: none;
}

a {
    color: #006EBD;
    text-decoration: underline;
    cursor: pointer !important;
}

a:hover {
    cursor: pointer !important;
}

.pc-no {
    display: none;
}

.sp-no {
    display: inline;
}

.fade {
	opacity: 1.0;
	transition: all 0.3s;
}

.fade:hover {
    opacity: 0.5;
}

.header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 10px 0;
    position: fixed;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255,255,255,0.95);
    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: visible;
/*
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
*/
}

/***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: 20%;
    margin: 0;
    padding: 0;
    max-width: 300px;
    transition: all 0.3s;
}
.header .hdr-logo:hover {
    opacity: 0.5;
}
.header .hdr-logo a {
    display: block;
}

.header .hdr-r {
    width: 75%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 1%;
}

.header ul.top-nav {
    margin: 0 10px 0 0;
    padding: 0;
    overflow: visible;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 0 10%;
}

.header ul.top-nav li {
    font-size: 90%;
}

.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: 30%;
    max-width: 150px;
    font-size: 70%;
    border-radius: 2px;
}

.header .top-btn a {
    width: 100%;
    height: 100%;
    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");
} 

.header .sp-top-nav {
    display: none;
}

/**SP NAV: BUTTONS***/
.sub-nav {
    display: none;
}

/***BOTTOM HEADER***/
.header .menu-nav {
    width: 80%;
    margin: 0;
    float: right;
}

@media screen and (min-width: 961px) and (max-width: 1300px) {

.header .menu-nav {
    width: 100%;
}

}

.header nav.hdr-btm {
    width: 100%;
    margin-right: 0;
    overflow: visible;
}

.header ul.nav-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0 20px;
}
.header ul.nav-list > li {
    padding: 0 0 10px;
    position: relative;
    text-align: center;
    font-size: 110%;
    font-weight: 700;

}
.header ul.nav-list a {
    color: #000;
    text-decoration: none;
    transition: all 0.3s;
}
.header ul.nav-list > li > a:before {
    content: "";
    width: 15px;
    height: 10px;
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: 10px;
    left: 45%;
    background-image: url("../img/common/hdr_nav-heart.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s;
    opacity: 0;
}
.header ul.nav-list a:hover {
    color: #EA5099;
}
.header ul.nav-list a:hover:before {
    opacity: 1.0;
    bottom: 40px;    
}

@media screen and (min-width: 961px) and (max-width: 1300px) {

.header ul.nav-list > li {
    font-size: 90%;
}

}

/******/

ul.nav-list li.dd > .dd-top,ul.nav-list li.dd > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    cursor: pointer;
}

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: #EA5099;
}

ul.dropdown {
    width: 100%;
    margin: 0;
    padding: 0;    
    list-style: none;
    position: absolute;
    overflow: visible;
    top: 100%;
    left: 0;
    min-width: 170px;
    font-size: 80%;
    line-height: 110%;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(135,135,135,0.5);
-moz-box-shadow: 0px 0px 5px 0px rgba(135,135,135,0.5);
box-shadow: 0px 0px 5px 0px rgba(135,135,135,0.5);
    
    transition: all 0.3s;
    display: inline-block;
    opacity: 0;
    height: 0%;
}
ul.dropdown:before {
    content: "";
    width:0;
    height:0;
    display: block;
    border-style:solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #EA5099 transparent;
    position: absolute;
    top: -10px;
    left: 5%;
    z-index: 1;
}

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

ul.dropdown li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    font-size: 90%;
    line-height: 110%;
    text-align: left;
    
    transition: all 0.3s;
    height: 0;
    border-bottom: solid 1px #FFF;
}
ul.dropdown li:last-child {
    border-bottom: none;
}

ul.nav-list li.dd:hover > ul.dropdown li {
    height: 100%;
}

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

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

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

.btn {
    width: 70% !important;
    max-width: 380px !important;
    margin: 0 auto 30px !important;
    padding: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    text-align: center !important;
    border-radius: 50px !important;
    font-size: 120% !important;
    line-height: 110% !important;
    background-color: #FFF !important; 
    transition: all 0.3s !important;
    display: block !important;
}
.orange-btn {
    background-color: #E84527 !important;
}
.pink-btn {
    background-color: #EA5099 !important;
}
.blue-btn {
    background-color: #006EBD !important;
}
.btn:hover {
    background-color: #0090df !important;
}
.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: 130px 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: 60px 0;
    position: relative;
    overflow: hidden;
    font-size: 240%;
    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: 98%;
    max-width: 1400px;
    margin: 100px 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;
}

.p-event .page-intro:after {
    background-color: #006EBD;
}
.p-news .page-intro:after {
    background-color: #EE7701;
}

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

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

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

.page-flex .page-l {
    width: 65%;
}

.page-flex .page-l article {
    min-height: 700px;
    padding: 0 0 100px;
    border-bottom: solid 1px #E0E0E0;
}

.page-all .page-l {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    
}

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

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: 240%;
    line-height: 110%;
    font-weight: 700;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
h3.post-mds span.jp {
    margin: 0 0 0 10px;
    font-size: 50%;
    font-weight: 500;
    color: #656565;
}
h3.post-mds:before {
    content: "";
    width: 40px;
    height: 40px;
    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: 110%;
}

ul.cat-list li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    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;
}


/****BASIC CSS FOR SUB PAGES****/

.sub-page h2 {
    font-size: 1.8em;
    color: #006EBD;
}

.sub-page h3 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.4em;
    color: #006EBD;
}

.sub-page h3:before {
    content: "";
    width: 10px;
    height: 30px;
    display: inline-block;
    margin: 0 10px 0 0;
    background-color: #006EBD;
    border-radius: 2px;
}


/***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 10px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
    font-size: 100%;
    line-height: 110%;
}

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

.article-info .cat {
    width: 20%;
    max-width: 180px;
    margin: 0 0 10px;
    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;
    
}

article table {
    width: 98%;
    margin: 10px auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #A5A5A5;
    border-collapse: unset !important;
    border-spacing: 1px;
    color: #333333;
    font-size: 90%;
}

article table th,article table td {
    padding: 20px 15px;
}

article table th {
    background-color: #E2E2E2;
    font-weight: bold;
    text-align: left;
}

article table td {
    background-color: #FFF;
}

.art-img {
    width: 60%;
    margin: 0 auto 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    line-height: 70%;
}

.art-ev-img {
    width: 60%;
}

.art-img img {
    line-height: 70%;
}

ul.snsList {
    width: 100%;
    margin: 20px 0 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0 20px;
}

ul.snsList li {
    width: 10%;
    max-width: 30px;
}

ul.snsList li a {
    width: 100%;
    height: 100%;
    display: block;
}



/***RELATED***/

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

ul.kanren-list li {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: solid 1px #E0E0E0;
    transition: all 0.3s;
}
ul.kanren-list li:hover {
    opacity: 0.5;
}

ul.kanren-list li a {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-decoration: none;
}

ul.kanren-list li .kan-img {
    width: 20%;
    overflow: visible;
    border-radius: 5px;
    border: solid 1px #e8e8e8;
    line-height: 70%;
}
ul.kanren-list li .kan-img img {
    width: 100%;
    border-radius: 5px;
    
}

ul.kanren-list li .kan-info {
    width: 75%;
}

ul.kanren-list li .kan-info .date {
    width: 100%;
    margin: 0 0 10px;;
    color: #656565;
    font-size: 90%;
    line-height: 110%;
}
ul.kanren-list li .kan-info .title {
    width: 100%;
    color: #000;
    line-height: 160%;
}


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

.pagetop {
    width: 5%;
    max-width: 60px;
    position: fixed;
    right: 0;
    bottom: 400px;
    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: 100px 0 0;
    position: relative;
    overflow: hidden;
    background-image: url("../img/common/ftr_bk.svg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.link-area {
    width: 100%;
    margin: 0;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.link-area ul.link-list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 2%;
}
.link-area ul.link-list li {
    width: 23%;
    line-height: 70%;
    margin: 0 0 20px;
    transition: all 0.3s;
}
.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: 30px auto 60px;
    padding: 0 0 150px;
    position: relative;
    overflow: hidden;
}

.hakuran {
    width: 80%;
    max-width: 700px;
    margin: 0 auto 60px;
    padding: 20px 5%;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    border: solid 3px #FFE6F2;
    border-radius: 10px;
    font-size: 90%;
}

.footer .ftr-logo {
    width: 60%;
    max-width: 300px;
    margin: 0 auto 30px;
    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: 160%;
    font-weight: 700;
    color: #EA5099;
}

.footer .ftr-sns {
    width: 25%;
    max-width: 200px;
    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 img {
    max-width: 30px;
}

.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: 100%;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:0 1%;
}

ul.topics-list li {
    width: 30%;
    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;
    
    background-color: #f3f3f3;
    display: block;
}
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 {
    overflow: visible;
    gap: 0;
}

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

section.ind-sec ul.topics-list li .tl-img {
    height: 330px;
}
*/
section.ind-sec ul.topics-list li .tl-img img {
    width: 100%;
}

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

/***EVENTS***/

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

ul.events-list li {
    width: 28%;
    
    transition: all 0.3s;
}
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;
    line-height: 70%;
}
ul.events-list li .el-img img {
    line-height: 70%;
}

ul.events-list li .el-cat {
    width: 50%;
    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;
}
.cat-monobest {
    background-color: #EA5099 !important;
}
.cat-city {
    background-color: #059FE3 !important;
}
/*
.cat-yanase {
    background-color: #DC000B !important;
}
*/
.cat-yanase {
    background-color: #fff500 !important;
    color: #000 !important;
}

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


/***EVENTS INDEX***/

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

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

/***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: 30%;
    margin: 0 0 30px;
    transition: all 0.3s;
}
ul.course-list li:hover {
    opacity: 0.5;
}


ul.course-list li a {
    width: 100%;
    height: 100%;
    display: block;
}




/***BASIC***/

.wp-block-embed-youtube iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: unset !important;
}

