/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  .page-eventcalendar {
    padding-bottom: 70px;
    background-color: #F7F5EC;
  }
  .calendar-mv {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
  }
  .calendar-mv h1 img {
    width: 100%;
  }
  .calendar-monthly-wrapper {
    position: relative;
    z-index: 0;
    width: 1800px;
    max-width: 100%;
    margin: 0 auto 100px;
    padding: 0 4vw;
  }
  .calendar-monthly-wrapper::before, .calendar-monthly-wrapper::after {
    content: "";
    position: absolute;
    background-color: #fff;
  }
  .calendar-monthly-wrapper::before {
    z-index: -1;
    inset: 95px 4vw auto;
    height: 60px;
    border-radius: 20px 20px 0 0;
  }
  .calendar-monthly-wrapper::after {
    z-index: -2;
    inset: 140px 4vw 0;
    height: calc(100% - 135px);
    border-radius: 0 0 20px 20px;
  }
  .calendar-monthly-wrapper #calendarPrev,
  .calendar-monthly-wrapper #calendarNext {
    position: absolute;
    top: calc(50% + 15px);
    z-index: 10;
    width: 30px;
    height: 30px;
  }
  .calendar-monthly-wrapper #calendarPrev {
    left: 2px;
  }
  .calendar-monthly-wrapper #calendarNext {
    right: 2px;
  }
  .calendar-monthly {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 65px 50px 0;
    overflow-x: auto;
  }
  .month {
    position: relative;
    width: 400px;
    padding: 80px 10px 10px;
    border-left: 1px solid #C09C62;
  }
  .month-header {
    position: absolute;
    top: 0px;
    left: -25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
  }
  .month-header.spring {
    background-color: #FF93C4;
  }
  .month-header.spring h2 {
    color: #FF93C4;
  }
  .month-header.summer {
    background-color: #47885E;
  }
  .month-header.summer h2 {
    color: #47885E;
  }
  .month-header.autumn {
    background-color: #FF7D59;
  }
  .month-header.autumn h2 {
    color: #FF7D59;
  }
  .month-header.winter {
    background-color: #83CCD2;
  }
  .month-header.winter h2 {
    color: #83CCD2;
  }
  .month-header.nextyear {
    background-color: #BF9C61;
  }
  .month-header.nextyear h2 {
    color: #BF9C61;
  }
  .month-header h2 {
    display: none;
  }
  .month-header b,
  .month-header span {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .month-header b {
    font-size: 28px;
    letter-spacing: -0.06em;
  }
  .month-header span {
    margin-left: 2px;
    padding-top: 10px;
    font-size: 14px;
  }
  .month-events {
    display: grid;
    gap: 10px;
    min-width: 45px;
  }
  .month-events .over-dummy {
    width: 350px;
  }
  .month-events .item {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 350px;
  }
  .month-events .item:last-child {
    margin-bottom: 0;
  }
  .month-events .item.over {
    left: calc(50% + 20px);
  }
  .month-events .item.event a {
    color: #B179D2;
    background-color: #EAD3EC;
  }
  .month-events .item.event a .tag {
    color: #B179D2;
  }
  .month-events .item.activity a {
    color: #01AFEC;
    background-color: #C6EAF7;
  }
  .month-events .item.activity a .tag {
    color: #01AFEC;
  }
  .month-events .item.gourmet a {
    color: #FF9F06;
    background-color: #FFEBCA;
  }
  .month-events .item.gourmet a .tag {
    color: #FF9F06;
  }
  .month-events .item.other a {
    color: #7DA849;
    background-color: #D8E8C6;
  }
  .month-events .item.other a .tag {
    color: #7DA849;
  }
  .month-events .item.soon {
    gap: 0;
    padding: 10px;
    color: #fff;
    background-color: #CBCBCB;
    border-radius: 12px;
  }
  .month-events .item.soon .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #fff;
  }
  .month-events .item.soon .right .memo {
    margin: 0 0 5px;
    font-size: 11px;
    font-weight: 700;
  }
  .month-events .item.soon .right h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
  .month-events .item.soon .tag {
    margin: 0;
    padding: 0;
  }
  .month-events .item.soon .tag li {
    padding: 0.25em 2em;
    font-weight: 700;
    color: #CBCBCB;
  }
  .month-events .item a {
    display: block;
    padding: 15px;
    border-radius: 12px;
  }
  .month-events .item a .img {
    display: none;
  }
  .month-events .item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #fff;
  }
  .month-events .item .cat .icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    padding: 6px;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
  }
  .month-events .item .cat .icon img {
    height: 100%;
  }
  .month-events .item .cat .cat-hover {
    display: none;
  }
  .month-events .item .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .month-events .item .right .date {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
  }
  .month-events .item .right h3 {
    font-size: 17px;
    color: #333333;
  }
  .month-events .item .tag {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px 5px;
  }
  .month-events .item .tag li {
    display: block;
    padding: 0.25em 0.75em;
    font-size: 10px;
    background-color: #fff;
    border-radius: 2em;
  }
  .calendar-nav {
    margin-bottom: 40px;
    padding: 0 4vw;
  }
  .calendar-nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px 5px;
  }
  .calendar-nav ul li {
    min-width: 110px;
    text-align: center;
  }
  .calendar-nav ul li a {
    display: block;
    padding: 8px 10px;
    color: #333333;
    background-color: #fff;
    border-radius: 12px;
  }
  .calendar-nav ul li.yearround b {
    color: #8483d2;
  }
  .calendar-nav ul li .winter b {
    color: #83CCD2;
  }
  .calendar-nav ul li .spring b {
    color: #FF93C4;
  }
  .calendar-nav ul li .summer b {
    color: #47885E;
  }
  .calendar-nav ul li .autumn b {
    color: #FF7D59;
  }
  .calendar-nav ul li .nextyear b {
    color: #BF9C61;
  }
  .calendar-nav ul li span,
  .calendar-nav ul li b {
    display: block;
    margin: 0 auto;
  }
  .calendar-nav ul li span {
    font-family: "Karla", sans-serif;
    font-size: 12px;
    font-weight: 700;
  }
  .calendar-nav ul li b {
    font-size: 16px;
    font-weight: 700;
  }
  .calendar-content {
    width: 1920px;
    max-width: calc(100% - 8vw);
    margin: 0 auto;
    background-color: #fff;
    border-radius: 20px;
  }
  .calendar-content .season {
    padding: 30px 4vw 30px;
  }
  .calendar-content .season hgroup {
    position: relative;
    margin-bottom: 45px;
    padding: 40px;
    text-align: center;
    background-image: radial-gradient(circle, #C0C0C0 2px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 10px 4px;
  }
  .calendar-content .season hgroup h2 {
    font-size: 20px;
    color: #333333;
  }
  .calendar-content .season hgroup h2 b {
    font-size: 24px;
    font-weight: inherit;
  }
  .calendar-content .season hgroup p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-family: "Karla", sans-serif;
    font-size: 50px;
    font-weight: 700;
    white-space: nowrap;
  }
  .calendar-content .season hgroup p.yearround {
    color: rgba(132, 131, 210, 0.2);
  }
  .calendar-content .season hgroup p.winter {
    color: rgba(131, 204, 210, 0.2);
  }
  .calendar-content .season hgroup p.spring {
    color: rgba(255, 147, 196, 0.2);
  }
  .calendar-content .season hgroup p.summer {
    color: rgba(71, 136, 94, 0.2);
  }
  .calendar-content .season hgroup p.autumn {
    color: rgba(255, 125, 89, 0.2);
  }
  .calendar-content .season hgroup p.nextyear {
    color: rgba(191, 156, 97, 0.2);
  }
  .calendar-content .season .item {
    margin-bottom: 40px;
  }
  .calendar-content .season .item:last-child {
    margin-bottom: 0;
  }
  .calendar-content .season .item.event .img .cat {
    background-color: #B179D2;
  }
  .calendar-content .season .item.event .img .cat::before {
    background-image: url(../images/eventcalendar/ico-event.svg);
  }
  .calendar-content .season .item.event h3 {
    background-color: #B179D2;
  }
  .calendar-content .season .item.event .tag {
    color: #B179D2;
  }
  .calendar-content .season .item.event .more a {
    color: #B179D2;
  }
  .calendar-content .season .item.event .more a::after {
    background-color: #B179D2;
  }
  .calendar-content .season .item.activity .img .cat {
    background-color: #01AFEC;
  }
  .calendar-content .season .item.activity .img .cat::before {
    background-image: url(../images/eventcalendar/ico-activity.svg);
  }
  .calendar-content .season .item.activity h3 {
    background-color: #01AFEC;
  }
  .calendar-content .season .item.activity .tag {
    color: #01AFEC;
  }
  .calendar-content .season .item.activity .more a {
    color: #01AFEC;
  }
  .calendar-content .season .item.activity .more a::after {
    background-color: #01AFEC;
  }
  .calendar-content .season .item.gourmet .img .cat {
    background-color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .img .cat::before {
    background-image: url(../images/eventcalendar/ico-gourmet.svg);
  }
  .calendar-content .season .item.gourmet h3 {
    background-color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .tag {
    color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .more a {
    color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .more a::after {
    background-color: #FF9F06;
  }
  .calendar-content .season .item.other .img .cat {
    background-color: #7DA849;
  }
  .calendar-content .season .item.other .img .cat::before {
    background-image: url(../images/eventcalendar/ico-other.svg);
  }
  .calendar-content .season .item.other h3 {
    background-color: #7DA849;
  }
  .calendar-content .season .item.other .tag {
    color: #7DA849;
  }
  .calendar-content .season .item.other .more a {
    color: #7DA849;
  }
  .calendar-content .season .item.other .more a::after {
    background-color: #7DA849;
  }
  .calendar-content .season .item .img {
    position: relative;
    width: 530px;
    max-width: 100%;
    margin: 0 auto 20px;
  }
  .calendar-content .season .item .img img {
    width: 100%;
    border-radius: 13px;
  }
  .calendar-content .season .item .img .cat {
    position: absolute;
    inset: 10px auto auto 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2px 11px 3px 3px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    border-radius: 20px;
  }
  .calendar-content .season .item .img .cat::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 7px;
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: center center;
    background-color: #fff;
    border-radius: 50%;
  }
  .calendar-content .season .item .text h3 {
    margin-bottom: 15px;
    padding: 0.5em;
    font-size: clamp(18px, 1.63vw, 30px);
    font-weight: 700;
    line-height: 1.5em;
    color: #fff;
    border-radius: 6px;
  }
  .calendar-content .season .item .text .tag-wrapper {
    margin-bottom: 20px;
  }
  .calendar-content .season .item .text .tag-wrapper .tag {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
    font-size: 11px;
  }
  .calendar-content .season .item .text .tag-wrapper .tag li {
    padding: 0.25em 0.5em;
    border: 1px solid #DDDDDD;
    border-radius: 2em;
  }
  .calendar-content .season .item .text .tag-wrapper time {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
    color: #C0C0C0;
  }
  .calendar-content .season .item .text p {
    font-size: clamp(14px, 3.7vw, 16px);
    line-height: 2em;
  }
  .calendar-content .season .item .text .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 215px;
    margin: 0 auto;
    padding: 3px 3px 3px 20px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #DDDDDD;
    border-radius: 50px;
  }
  .calendar-content .season .item .text .more a::after {
    content: "";
    display: inline-block;
    width: 44px;
    height: 44px;
    -webkit-mask-image: url(../images/eventcalendar/mask-arrow.svg);
            mask-image: url(../images/eventcalendar/mask-arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 44px;
            mask-size: 44px;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  .page-eventcalendar {
    padding-bottom: 150px;
    background-color: #F7F5EC;
  }
  .calendar-mv {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
  }
  .calendar-mv h1 img {
    width: 100%;
  }
  .calendar-monthly-wrapper {
    position: relative;
    z-index: 0;
    width: 1800px;
    max-width: 100%;
    margin: 0 auto 150px;
    padding: 0 60px;
  }
  .calendar-monthly-wrapper::before, .calendar-monthly-wrapper::after {
    content: "";
    position: absolute;
    background-color: #fff;
  }
  .calendar-monthly-wrapper::before {
    z-index: -1;
    inset: 140px 60px auto;
    height: 60px;
    border-radius: 50px 50px 0 0;
  }
  .calendar-monthly-wrapper::after {
    z-index: -2;
    inset: 200px 60px 0;
    height: calc(100% - 195px);
    border-radius: 0 0 50px 50px;
  }
  .calendar-monthly-wrapper #calendarPrev,
  .calendar-monthly-wrapper #calendarNext {
    position: absolute;
    top: calc(50% + 50px);
    z-index: 10;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
  .calendar-monthly-wrapper #calendarPrev {
    left: 35px;
  }
  .calendar-monthly-wrapper #calendarNext {
    right: 35px;
  }
  .calendar-monthly {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 100px 128px 0;
    overflow-x: auto;
  }
  .month {
    position: relative;
    width: 580px;
    padding: 95px 50px 32px;
    border-left: 1px solid #C09C62;
  }
  .month-header {
    position: absolute;
    top: 0px;
    left: -42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 84px;
    height: 84px;
    color: #fff;
    border-radius: 50%;
  }
  .month-header.spring {
    background-color: #FF93C4;
  }
  .month-header.spring h2 {
    color: #FF93C4;
  }
  .month-header.summer {
    background-color: #47885E;
  }
  .month-header.summer h2 {
    color: #47885E;
  }
  .month-header.autumn {
    background-color: #FF7D59;
  }
  .month-header.autumn h2 {
    color: #FF7D59;
  }
  .month-header.winter {
    background-color: #83CCD2;
  }
  .month-header.winter h2 {
    color: #83CCD2;
  }
  .month-header.nextyear {
    background-color: #BF9C61;
  }
  .month-header.nextyear h2 {
    color: #BF9C61;
  }
  .month-header h2 {
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 11px;
    color: #333333;
    white-space: nowrap;
  }
  .month-header b,
  .month-header span {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .month-header b {
    font-size: 48px;
    letter-spacing: -0.05em;
  }
  .month-header span {
    margin-left: 2px;
    padding-top: 18px;
    font-size: 24px;
  }
  .month-events {
    display: grid;
    gap: 20px;
    min-width: 10px;
  }
  .month-events .over-dummy {
    width: 450px;
  }
  .month-events .item {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 450px;
  }
  .month-events .item:last-child {
    margin-bottom: 0;
  }
  .month-events .item:hover {
    z-index: 3;
  }
  .month-events .item.over {
    left: calc(50% + 50px);
  }
  .month-events .item.event a {
    color: #B179D2;
    background-color: #EAD3EC;
  }
  .month-events .item.event a .tag {
    color: #B179D2;
  }
  .month-events .item.event a:hover {
    background-color: #B179D2;
  }
  .month-events .item.event a:hover .right h3 {
    color: #B179D2;
  }
  .month-events .item.activity a {
    color: #01AFEC;
    background-color: #C6EAF7;
  }
  .month-events .item.activity a .tag {
    color: #01AFEC;
  }
  .month-events .item.activity a:hover {
    background-color: #01AFEC;
  }
  .month-events .item.activity a:hover .right h3 {
    color: #01AFEC;
  }
  .month-events .item.gourmet a {
    color: #FF9F06;
    background-color: #FFEBCA;
  }
  .month-events .item.gourmet a .tag {
    color: #FF9F06;
  }
  .month-events .item.gourmet a:hover {
    background-color: #FF9F06;
  }
  .month-events .item.gourmet a:hover .right h3 {
    color: #FF9F06;
  }
  .month-events .item.other a {
    color: #7DA849;
    background-color: #D8E8C6;
  }
  .month-events .item.other a .tag {
    color: #7DA849;
  }
  .month-events .item.other a:hover {
    background-color: #7DA849;
  }
  .month-events .item.other a:hover .right h3 {
    color: #7DA849;
  }
  .month-events .item.soon {
    gap: 0;
    padding: 18px 20px;
    color: #fff;
    background-color: #CBCBCB;
    border-radius: 12px;
  }
  .month-events .item.soon .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #fff;
  }
  .month-events .item.soon .right .memo {
    margin: 0 0 5px;
    font-size: 13px;
    font-weight: 700;
  }
  .month-events .item.soon .right h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
  }
  .month-events .item.soon .tag {
    margin: 0;
    padding: 0;
  }
  .month-events .item.soon .tag li {
    padding: 0.25em 2em;
    font-weight: 700;
    color: #CBCBCB;
  }
  .month-events .item a {
    display: block;
    padding: 18px 20px;
    border-radius: 12px;
  }
  .month-events .item a:hover {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
    width: 532px;
    color: #fff;
    border-radius: 10px;
  }
  .month-events .item a:hover .img {
    display: block;
    width: 220px;
    max-width: 50%;
  }
  .month-events .item a:hover .img img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  .month-events .item a:hover .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .month-events .item a:hover .text .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: none;
  }
  .month-events .item a:hover .text .title .cat {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 10px;
  }
  .month-events .item a:hover .text .title .cat .icon {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    padding: 0;
    border-radius: 50%;
  }
  .month-events .item a:hover .text .title .cat .icon img {
    width: 60%;
    height: 60%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .month-events .item a:hover .text .title .cat .cat-hover {
    display: inline-block;
    margin: 0;
  }
  .month-events .item a:hover .text .right {
    display: contents;
  }
  .month-events .item a:hover .text .date {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-bottom: 1em;
    padding: 0.5em;
    text-align: center;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .month-events .item a:hover .text h3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 0.25em 0.5em;
    font-size: 20px;
    line-height: 1.75em;
    background-color: #fff;
    border-radius: 4px;
  }
  .month-events .item a .img {
    display: none;
  }
  .month-events .item .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 14px;
    padding-bottom: 9px;
    border-bottom: 1px dashed #fff;
  }
  .month-events .item .cat .icon {
    width: 70px;
    margin-right: 30px;
    padding: 8px;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
  }
  .month-events .item .cat .cat-hover {
    display: none;
  }
  .month-events .item .right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .month-events .item .right .date {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
  }
  .month-events .item .right h3 {
    font-size: 22px;
    color: #333333;
  }
  .month-events .item .tag {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px 5px;
  }
  .month-events .item .tag li {
    display: block;
    padding: 0.25em 0.75em;
    font-size: 13px;
    background-color: #fff;
    border-radius: 2em;
  }
  .calendar-nav {
    margin-bottom: 70px;
  }
  .calendar-nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
  .calendar-nav ul li {
    width: 200px;
    text-align: center;
  }
  .calendar-nav ul li a {
    display: block;
    padding: 15px 5px;
    color: #333333;
    background-color: #fff;
    border-radius: 22px;
  }
  .calendar-nav ul li a:hover {
    color: #fff;
  }
  .calendar-nav ul li a:hover b {
    color: #fff;
  }
  .calendar-nav ul li a:hover.yearround {
    background-color: #8483d2;
  }
  .calendar-nav ul li a:hover.winter {
    background-color: #83CCD2;
  }
  .calendar-nav ul li a:hover.spring {
    background-color: #FF93C4;
  }
  .calendar-nav ul li a:hover.summer {
    background-color: #47885E;
  }
  .calendar-nav ul li a:hover.autumn {
    background-color: #FF7D59;
  }
  .calendar-nav ul li a:hover.nextyear {
    background-color: #BF9C61;
  }
  .calendar-nav ul li .yearround b {
    color: #8483d2;
  }
  .calendar-nav ul li .winter b {
    color: #83CCD2;
  }
  .calendar-nav ul li .spring b {
    color: #FF93C4;
  }
  .calendar-nav ul li .summer b {
    color: #47885E;
  }
  .calendar-nav ul li .autumn b {
    color: #FF7D59;
  }
  .calendar-nav ul li .nextyear b {
    color: #BF9C61;
  }
  .calendar-nav ul li span,
  .calendar-nav ul li b {
    display: block;
    margin: 0 auto;
  }
  .calendar-nav ul li span {
    font-family: "Karla", sans-serif;
    font-size: 16px;
    font-weight: 700;
  }
  .calendar-nav ul li b {
    font-size: 24px;
    font-weight: 700;
  }
  .calendar-content {
    width: 1920px;
    max-width: calc(100% - 120px);
    margin: 0 auto;
    background-color: #fff;
    border-radius: 50px;
  }
  .calendar-content .season {
    padding: 60px clamp(120px, 11vw, 250px);
  }
  .calendar-content .season hgroup {
    position: relative;
    margin-bottom: 45px;
    padding: 40px;
    text-align: center;
    background-image: radial-gradient(circle, #C0C0C0 3px, transparent 3px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 16px 6px;
  }
  .calendar-content .season hgroup h2 {
    font-size: 40px;
    color: #333333;
  }
  .calendar-content .season hgroup h2 b {
    font-size: 54px;
    font-weight: inherit;
  }
  .calendar-content .season hgroup p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-family: "Karla", sans-serif;
    font-size: 128px;
    font-weight: 700;
    white-space: nowrap;
  }
  .calendar-content .season hgroup p.yearround {
    color: rgba(132, 131, 210, 0.2);
  }
  .calendar-content .season hgroup p.winter {
    color: rgba(131, 204, 210, 0.2);
  }
  .calendar-content .season hgroup p.spring {
    color: rgba(255, 147, 196, 0.2);
  }
  .calendar-content .season hgroup p.summer {
    color: rgba(71, 136, 94, 0.2);
  }
  .calendar-content .season hgroup p.autumn {
    color: rgba(255, 125, 89, 0.2);
  }
  .calendar-content .season hgroup p.nextyear {
    color: rgba(191, 156, 97, 0.2);
  }
  .calendar-content .season .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(40px, 3.6vw, 78px);
    margin-bottom: 85px;
  }
  .calendar-content .season .item:last-child {
    margin-bottom: 0;
  }
  .calendar-content .season .item.event .img .cat {
    background-color: #B179D2;
  }
  .calendar-content .season .item.event .img .cat::before {
    background-image: url(../images/eventcalendar/ico-event.svg);
  }
  .calendar-content .season .item.event h3 {
    background-color: #B179D2;
  }
  .calendar-content .season .item.event .tag {
    color: #B179D2;
  }
  .calendar-content .season .item.event .more a {
    color: #B179D2;
  }
  .calendar-content .season .item.event .more a::after {
    background-color: #B179D2;
  }
  .calendar-content .season .item.activity .img .cat {
    background-color: #01AFEC;
  }
  .calendar-content .season .item.activity .img .cat::before {
    background-image: url(../images/eventcalendar/ico-activity.svg);
  }
  .calendar-content .season .item.activity h3 {
    background-color: #01AFEC;
  }
  .calendar-content .season .item.activity .tag {
    color: #01AFEC;
  }
  .calendar-content .season .item.activity .more a {
    color: #01AFEC;
  }
  .calendar-content .season .item.activity .more a::after {
    background-color: #01AFEC;
  }
  .calendar-content .season .item.gourmet .img .cat {
    background-color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .img .cat::before {
    background-image: url(../images/eventcalendar/ico-gourmet.svg);
  }
  .calendar-content .season .item.gourmet h3 {
    background-color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .tag {
    color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .more a {
    color: #FF9F06;
  }
  .calendar-content .season .item.gourmet .more a::after {
    background-color: #FF9F06;
  }
  .calendar-content .season .item.other .img .cat {
    background-color: #7DA849;
  }
  .calendar-content .season .item.other .img .cat::before {
    background-image: url(../images/eventcalendar/ico-other.svg);
  }
  .calendar-content .season .item.other h3 {
    background-color: #7DA849;
  }
  .calendar-content .season .item.other .tag {
    color: #7DA849;
  }
  .calendar-content .season .item.other .more a {
    color: #7DA849;
  }
  .calendar-content .season .item.other .more a::after {
    background-color: #7DA849;
  }
  .calendar-content .season .item .img {
    position: relative;
    width: 530px;
    max-width: 40%;
  }
  .calendar-content .season .item .img img {
    width: 100%;
    border-radius: 27px;
  }
  .calendar-content .season .item .img .cat {
    position: absolute;
    inset: 10px auto auto 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2px 11px 3px 3px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border-radius: 20px;
  }
  .calendar-content .season .item .img .cat::before {
    content: "";
    display: block;
    width: 29px;
    height: 29px;
    margin-right: 7px;
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: center center;
    background-color: #fff;
    border-radius: 50%;
  }
  .calendar-content .season .item .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .calendar-content .season .item .text h3 {
    margin-bottom: 20px;
    padding: 0.5em;
    font-size: clamp(18px, 1.63vw, 30px);
    font-weight: 700;
    color: #fff;
    border-radius: 6px;
  }
  .calendar-content .season .item .text .tag-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
  }
  .calendar-content .season .item .text .tag-wrapper time {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: clamp(70px, 6.3vw, 120px);
    font-size: 17px;
    font-weight: 500;
    color: #A9A9A9;
    letter-spacing: 0.03em;
  }
  .calendar-content .season .item .text .tag-wrapper .tag {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
  }
  .calendar-content .season .item .text .tag-wrapper .tag li {
    padding: 0.25em 0.5em;
    border: 1px solid #DDDDDD;
    border-radius: 2em;
    white-space: nowrap;
  }
  .calendar-content .season .item .text p {
    font-size: clamp(14px, 1.27vw, 16px);
  }
  .calendar-content .season .item .text .more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 215px;
    padding: 3px 3px 3px 20px;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #DDDDDD;
    border-radius: 50px;
  }
  .calendar-content .season .item .text .more a::after {
    content: "";
    display: inline-block;
    width: 44px;
    height: 44px;
    -webkit-mask-image: url(../images/eventcalendar/mask-arrow.svg);
            mask-image: url(../images/eventcalendar/mask-arrow.svg);
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 44px;
            mask-size: 44px;
  }
  .calendar-content .season .item .text .more a:hover {
    opacity: 0.8;
  }
}