@charset "utf-8";

/* 電話発信の無効 */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

	PC

=============================================================================================================================================
===========================================================================================================================================*/
@media print, screen and (max-width: 1300px) {
  .top-news__scroll {
    height: 333px;
    overflow: auto;
    margin-left: -15px;
    margin-right: -15px;
  }

  .top-news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    width: -webkit-calc((100% / 2) - 30px);
    width: calc((100% / 2) - 30px);
  }

  .top-news__item__txt {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .top-about__cont {
    height: 400px;
    padding: 0px 40px 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center bottom;
  }

  .top-citizen__cont {
    padding: 0 30px;
  }

  .top-mgt__cont {
    padding: 0 30px;
  }

  .top-town__cont {
    padding: 0 40px;
  }

  .top-project__cont {
    padding: 0 40px;
  }

  .top-related__cont {
    padding: 0 30px;
  }

  .top-partners__cont {
    padding: 0 30px;
  }

  .footer__body {
    max-width: 1280px;
    margin: 35px auto 20px auto;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

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

	タブレット

=============================================================================================================================================
===========================================================================================================================================*/
@media print, screen and (max-width: 1023px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .br-pc {
    display: none;
  }

  .br-tb {
    display: block;
  }

  .br-sp {
    display: none;
  }

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

	スマホメニュー

===============================================*/
  .toggle-btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 65px;
    height: 65px;
    background-color: #f3ece4;
    border: 1px solid #333;
    border-radius: 50px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.2);
    z-index: 1000;
  }

  .toggle-btn__line {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    margin: -1px 0 0 -10px;
    background-color: #594c4c;
    transition: 0.4s;
  }

  .toggle-btn__line:before,
  .toggle-btn__line:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #594c4c;
    transition: 0.4s;
  }

  .toggle-btn__line:before {
    margin-top: -8px;
  }

  .toggle-btn__line:after {
    margin-top: 6px;
  }

  .header.is-open .toggle-btn__line {
    background: transparent;
  }

  .header.is-open .toggle-btn__line:before,
  .header.is-open .toggle-btn__line:after {
    margin-top: 0;
  }

  .header.is-open .toggle-btn__line:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }

  .header.is-open .toggle-btn__line:after {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
  }

  .header__nav.fixed {
    width: 100%;
    position: static;
    top: 0;
    z-index: 10;
  }

  .gnav {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: #f3ece4;
    width: 280px;
    height: 100vh;
    z-index: 100;
    margin: 0;
    padding: 0;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
  }

  .header.is-open .gnav {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .gnav__inner {
    padding: 70px 15px;
  }

  .gnav__list {
    display: block;
    margin-bottom: 15px;
  }

  .gnav__item {
    text-align: left;
    padding: 0;
    position: relative;
  }

  .gnav__item:first-child a.gnav__link {
    padding-top: 0;
  }

  .gnav__item:not(:last-child):after {
    content: none;
  }

  a.gnav__link {
    display: block;
    height: auto;
    position: relative;
    padding: 15px 10px;
    color: #594c4c;
    font-size: 1.7rem;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  a.gnav__link:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background-color: #333;
    opacity: 0.3;
    position: absolute;
    left: 0;
    bottom: 0;
  }

  .gnav__list-lv2 {
    display: none;
    width: 100%;
    opacity: 1;
    position: static;
    padding: 0 0 0 25px;
    background-color: #f8f2ed;
  }

  .gnav__item-lv2 {
    margin-bottom: 0;
  }

  .gnav__item-lv2:last-child {
    border-bottom: none;
  }

  a.gnav__link-lv2 {
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
    line-height: 1.2;
    color: #594c4c;
    padding: 13px 40px 13px 5px;
    background-color: #f8f2ed;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    position: relative;
  }

  .gnav__item-lv2:last-child a.gnav__link-lv2 {
    border-bottom: none;
  }

  a.gnav__link-lv2:after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(74, 150, 84, 0.7);
    border-right: 1px solid rgba(74, 150, 84, 0.7);
    -webkit-transform: translatey(-50%) rotate(45deg);
    transform: translatey(-50%) rotate(45deg);
  }

  a.gnav__link-lv2:hover {
    background-color: #fafafa;
  }

  a.gnav__link-lv2:hover {
    opacity: 1;
  }

  .header__sub-nav {
    display: block;
  }

  .header__sub-nav {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
  }

  .header__sub-nav li.arrow {
    position: relative;
    padding: 0 0 0 25px;
  }

  .header__sub-nav li.arrow:before {
    content: url(../img/arrow_s.png);
    display: inline-block;
    position: absolute;
    top: 55%;
    transform: translatey(-50%);
    left: 0;
  }

  .header__sub-nav li:not(:last-child) {
    margin: 0 0 20px 0;
  }

  .parent-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.6;
  }

  .child-trigger {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
  }

  .child-trigger:after,
  .child-trigger:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #333;
  }

  .child-trigger:before {
    width: 100%;
    height: 1px;
  }

  .child-trigger:after {
    width: 1px;
    height: 100%;
  }

  .parent-trigger.is-open .child-trigger:after {
    height: 0;
  }

  .mask {
    display: none;
    transition: all 0.5s;
  }

  .is-open .mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
    cursor: pointer;
  }

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

	ヘッダー

===============================================*/
  .header {
  }

  .header__bg-color {
    background-color: #fff;
  }

  .header__title {
    max-width: 1500px;
    margin: 0 auto;
    padding: 44px 0 20px 0px;
    background-image: url(../img/header_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
  }

  .header__rss {
    position: absolute;
    top: 10px;
    right: 100px;

    display: none;
  }

  .header__logo {
    text-align: center;
  }

  .header__line {
    width: 100%;
    height: 6px;
    background-image: url(../img/header_line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
  }

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

	メインコンテンツ

===============================================*/
  .main-outer {
    padding: 0 2px;
  }

  .main-slide {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0 0 0;
  }

  .main-slide img {
    width: 100%;
    height: auto;
  }

  .one-line_comment {
    max-width: 900px;
    width: 100%;
    margin: 15px auto 25px auto;
    padding: 4px 0 2px 0;
    border: 1px solid #333;
    background-color: #fff;
  }

  .one-line_comment p {
    text-align: center;
    font-size: 1.8rem;
  }

  .main-cont {
    max-width: 1300px;
    width: 100%;
    margin: 15px auto 0 auto;
    display: block;
  }

  .main-cont__body {
    width: 100%;
  }

  .main-cont__side {
    width: 100%;
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .main-cont__body__item {
    margin-bottom: 45px;
  }

  .main-cont__body__item--mb-l {
    margin-bottom: 73px;
  }

  .top-heading_bg {
    height: 80px;
    line-height: 80px;
    margin: 0 0 5px 0;
    background-image: url(../img/top-heading_bg.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
  }

  .top-heading_bg--citizen {
    margin-bottom: 25px;
  }

  .top-heading_bg--mgt {
    margin-bottom: 20px;
  }

  .top-heading_bg--town {
    margin-bottom: 30px;
  }

  .top-heading {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    padding: 0px 0 0 75px;
    background-repeat: no-repeat;
    background-position: left 13px center;
    font-family: "M PLUS Rounded 1c", sans-serif;
  }

  .top-heading--news {
    background-image: url(../img/icon_news.png);
  }

  .top-heading--event {
    background-image: url(../img/icon_event.png);
  }

  .top-heading--citizen {
    background-image: url(../img/icon_citizen.png);
  }

  .top-heading--mgt {
    background-image: url(../img/icon_management.png);
  }

  .top-heading--town {
    background-image: url(../img/icon_town.png);
  }

  .top-news__cont {
    padding: 33px;
    background-color: #fff;
    border: 1px dashed rgba(51, 51, 51, 0.7);
  }

  .top-news__scroll {
    height: 333px;
    overflow: auto;
    margin-left: -15px;
    margin-right: -15px;
  }

  .top-news__list {
    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;
  }

  .top-news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    width: -webkit-calc((100% / 2) - 30px);
    width: calc((100% / 2) - 30px);
  }

  .top-news__item__img {
    margin: 0 25px 0 0;
  }

  .top-news__item__txt {
    max-width: 100%;
    font-size: 1.5rem;
  }

  .top-news__btn {
    width: 250px;
    margin: 20px 0 0 auto;
    line-height: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-family: "M PLUS Rounded 1c", sans-serif;
  }

  .top-news__btn a {
    display: block;
    color: #fff;
    background-color: #28a6b0;
  }

  .top-event__cont {
    padding: 33px 53px;
    background-color: #fff;
    border: 1px dashed rgba(51, 51, 51, 0.7);
  }

  /* .top-event__scroll {
    height: 147px;
    overflow: auto;
  } */

  .top-event__list {
  }

  .top-event__list li {
    /* position: relative; */
    /* padding: 0 0 0 15px; */
  }

  .top-event__list li:not(:last-child) {
    margin: 0 0 15px 0;
  }

  /* .top-event__list li:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #594c4c;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
  } */

  /* .top-event__list li a {
    font-size: 1.7rem;
    color: #ff3300;
    text-decoration: underline;
  } */

  .top-event__btn {
    width: 250px;
    margin: 20px 0 0 auto;
    line-height: 50px;
    height: 50px;
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
  }

  /* .top-event__btn a {
    display: block;
    color: #fff;
    padding: 0 0 0 10px;
    background-image: url(../img/calendar_bg.png);
    background-repeat: no-repeat;
    position: relative;
  }

  .top-event__btn a:before,
  .top-event__btn a:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 20px;
    height: 4px;
    background-color: #fff;
  }

  .top-event__btn a:before {
    transition: 0.3s;
  }

  .top-event__btn a:after {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transition: 0.2s;
  }

  .top-event__btn.open a:before {
    background: transparent;
  }

  .top-event__btn.open a:after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  } */

  .top-event__calendar {
    display: none;
    position: absolute;
    top: 100%;
    left: 2px;
  }

  .top-about__heading {
    margin: 0 0 -20px 0;
  }

  .top-about__cont {
    height: 400px;
    padding: 0px 40px 0;
    background-color: #fff;
    background-image: url(../img/about_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
  }

  .top-about__main-txt {
    font-size: 3.74rem;
    letter-spacing: 0.18em;
    margin: 0 0 7px 0;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff,
      2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff,
      2px 0 0 #fff;
    font-family: "M PLUS Rounded 1c", sans-serif;
  }

  .top-about__sub-txt {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    line-height: 1.5;
    padding: 0 45px 0 5px;
    text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff,
      2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff,
      2px 0 0 #fff;
  }

  .top-citizen__cont {
    padding: 0 40px;
  }

  .top-citizen__search {
    max-width: 400px;
    margin: 0 auto 20px auto;
  }

  .top-citizen__search img {
    width: 100%;
  }

  .top-citizen__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
  }

  .top-citizen__list li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    width: -webkit-calc((100% / 2) - 20px);
    width: calc((100% / 2) - 20px);
  }

  .top-citizen__list li img {
    width: 100%;
  }

  .top-mgt__cont {
    padding: 0 40px;
  }

  .top-mgt__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -20px;
  }

  .top-mgt__list li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    width: -webkit-calc((100% / 3) - 20px);
    width: calc((100% / 3) - 20px);
  }

  .top-mgt__list li img {
    width: 100%;
  }

  .top-town__cont {
    padding: 0 50px;
  }

  .top-town__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: -32px;
  }

  .top-town__list li {
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 32px;
    width: -webkit-calc((100% / 3) - 50px);
    width: calc((100% / 3) - 50px);
  }

  .top-town__list li img {
    width: 100%;
  }

  .top-heading-side_bg {
    margin: 0 0 12px 0;
    width: 100%;
    height: 60px;
    background-image: url(../img/side_heading_bg.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% 100%;
  }

  .top-heading-side {
    font-size: 2.3rem;
    letter-spacing: 0.05em;
    background-repeat: no-repeat;
    background-position: left 22px center;
    font-family: "M PLUS Rounded 1c", sans-serif;
    /* 上下左右中央寄せ */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-heading-side--project {
    background-image: url(../img/icon_project.png);
  }

  .top-heading-side--related {
    background-image: url(../img/icon_related.png);
  }

  .top-heading-side--partners {
    background-image: url(../img/icon_partners.png);
  }

  .top-project__cont {
    padding: 0 50px;
  }

  .top-related__cont {
    padding: 0 40px;
  }

  .top-partners__cont {
    padding: 0 40px;
  }

  .side-banner-list li:not(:last-child) {
    margin-bottom: 12px;
  }

  .top-project__list img {
    width: 100%;
  }

  .top-related__list img {
    width: 100%;
  }

  .top-partners__list img {
    width: 100%;
  }

  .contact-btn {
    max-width: 100%;
    margin: 0;
  }

  .contact-btn img {
    width: 100%;
  }

  .contact-btn__access {
    margin-bottom: 10px;
  }

  .top-side-menu {
    margin-right: 30px;
    margin-bottom: 30px;
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px);
  }

  .top-side-menu:nth-child(even) {
    margin-right: 0;
  }

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

	フッター

===============================================*/
  .footer {
  }

  .f-menu_bg-color {
    background-color: #f3ece4;
    padding: 10px 0;
    display: none;
  }

  .f-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "M PLUS Rounded 1c", sans-serif;
  }

  .f-menu li {
    text-align: center;
    border-right: 1px solid #4c3d3a;
  }

  .f-menu li:last-child {
    border-right: none;
  }

  .f-menu__item--home {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 122px;
    flex: 0 1 122px;
  }

  .f-menu__item--about {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 186px;
    flex: 0 1 186px;
  }

  .f-menu__item--news {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 186px;
    flex: 0 1 152px;
  }

  .f-menu__item--citizen {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 186px;
    flex: 0 1 186px;
  }

  .f-menu__item--mgt {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 150px;
    flex: 0 1 150px;
  }

  .f-menu__item--town {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 169px;
    flex: 0 1 169px;
  }

  .f-menu__item--project {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 186px;
    flex: 0 1 186px;
  }

  .f-menu__item--sitemap {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 186px;
    flex: 0 1 186px;
  }

  .f-menu li a {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 0.05em;
  }

  .f-menu li a:hover {
    text-decoration: underline;
  }

  .footer__body_outer {
    padding: 0 15px;
  }

  .footer__body {
    max-width: 1280px;
    margin: 35px auto 20px auto;
    padding: 0;
    display: block;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .f-address {
    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;
  }

  .f-address__name {
    margin: 0 40px 0 0;
  }

  .f-address__name img {
    width: 280px;
  }

  .f-address__box {
    font-size: 1.7rem;
    font-weight: bold;
    font-family: "M PLUS Rounded 1c", sans-serif;
  }

  .f-address__num_gp {
    padding: 2px 0 0 0px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
  }

  .f-address__num {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .f-address__num dt {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .footer__body__list {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    margin: 30px 0;
    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;
  }

  .footer__body__list li {
    margin: 0 15px;
  }

  .footer__body__list li.arrow {
    position: relative;
    padding-left: 25px;
  }

  .footer__body__list li.arrow:before {
    content: url(../img/arrow_s.png);
    display: inline-block;
    position: absolute;
    top: 55%;
    transform: translatey(-50%);
    left: 0;
  }

  .footer__body__list li:not(:last-child) {
    margin: 0 15px;
  }

  .footer__body__list li.txtm {
    font-size: 1.7rem;
    font-weight: normal;
  }

  .footer__body__list a:hover {
    text-decoration: underline;
  }

  .footer__deco {
    height: 145px;
    background-color: #fff;
    background-image: url(../img/footer_bg.png);
    background-repeat: no-repeat;
    background-position: center bottom;
  }

  .copyright {
    font-size: 1.2rem;
    text-align: center;
    padding: 5px 0;
    background-color: #fff;
  }

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

	ページトップへボタン

===============================================*/
  #page-top {
    position: fixed;
    right: 32px;
    bottom: 85px;
  }

  #page-top a {
    display: inline-block;
    font-size: 1.1rem;
    color: #fff;
    width: 75px;
    height: 75px;
    padding-top: 35px;
    text-align: center;
    background-color: rgba(74, 150, 84, 0.7);
    border-radius: 50%;
    position: relative;
  }

  #page-top a:hover {
    opacity: 1;
    background-color: rgba(74, 150, 84, 1);
  }

  #page-top a:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 22px;
    width: 10px;
    height: 10px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: translatex(-50%) rotate(45deg);
  }

  /*==============================================================================
	
	ページネーション

==============================================================================*/
  .pager {
    max-width: 1000px;
    margin: 10px auto;
    display: block;
  }

  .pager ul.pagination {
    text-align: center;
    margin: 0;
    padding: 0;
  }

  .pager .pagination li {
    display: inline;
    margin: 3px 2px;
    padding: 0;
    display: inline-block;
    border-width: 1px;
    border-color: #594c4c;
    border-style: solid;
    background: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    position: relative;
  }

  .pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #594c4c;
    text-decoration: none;
  }

  .pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
  }

  .pager .pagination li a:hover,
  .pager .pagination li a.active {
    color: #000;
    background: #c1b7b7;
  }

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

	ここから中ページ
	
	運営

==============================================================================*/
  .mid-inner {
    max-width: 1300px;
    margin: 0 auto;
  }

  .breadcrumbs {
    font-size: 1.5rem;
    line-height: 1;
    margin: 20px 0;
  }

  .breadcrumbs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .breadcrumbs__list li {
    margin-left: 7px;
    padding-left: 17px;
    position: relative;
  }

  .breadcrumbs__list li:first-child {
    margin-left: 0;
    padding-left: 0;
  }

  .breadcrumbs li:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 2px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .breadcrumbs li:first-child:before {
    content: none;
  }

  .breadcrumbs__list li a:hover {
    text-decoration: underline;
  }

  .mid-title_bg {
    height: 180px;
    background-image: url(../img/mid-title_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 45px;
  }

  .mid-title {
    font-size: 4.9rem;
    letter-spacing: 0.05em;
    font-family: "M PLUS Rounded 1c", sans-serif;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0 0;
  }

  .mid-cont {
    padding: 0px 15px;
  }

  .mid-cont__inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .mid-cont__heading {
    font-size: 4rem;
    font-weight: normal;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    background-color: #ff9999;
    border-radius: 10px;
    font-family: "M PLUS Rounded 1c", sans-serif;
  }

  .mid-cont__heading--interview {
    letter-spacing: 0.05em;
  }

  .mid-cont__body {
    padding: 0 15px;
    margin-top: 50px;
  }

  .mgt-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px;
    margin-bottom: 90px;
  }

  .mgt-list li {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 40px;
  }

  .mgt-list a {
    display: block;
    font-size: 2.8rem;
    padding: 29px 0 29px 70px;
    background-color: #fff;
    border-top: 7px solid #594c4c;
    font-family: "M PLUS Rounded 1c", sans-serif;
    position: relative;
  }

  .mgt-list a:hover {
    text-decoration: underline;
    opacity: 1;
  }

  .mgt-list a:before {
    content: url(../management/img/arrow.png);
    display: inline-block;
    position: absolute;
    top: 52%;
    transform: translatey(-50%);
    left: 16px;
  }

  .mid-cont__heading02 {
    font-size: 3rem;
    padding: 0 0 0 25px;
    margin-bottom: 20px;
    position: relative;
  }

  .mid-cont__heading02:before {
    content: "";
    position: absolute;
    left: 0;
    top: -2px;
    width: 8px;
    height: 100%;
    max-height: initial;
    background-color: #594c4c;
  }

  .mid-cont__heading02:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 1px;
    background-color: #594c4c;
  }

  /*==============================================================================
	
	詳細

==============================================================================*/
  .detail_box {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding: 40px 22px;
    background-color: #fff;
  }

  .rule_box__lead {
    margin-bottom: 55px;
    padding-left: 10px;
  }

  .detail_box__sec--mb {
    margin-bottom: 50px;
  }

  .detail_box__heading {
    font-size: 2rem;
    border-bottom: 1px dashed #594c4c;
    padding: 0 15px;
    margin: 0 -10px 15px;
  }

  .detail_box__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .detail_box__pic {
  }

  .detail_box__pic--mr {
    margin-right: 10px;
  }

  .detail_box__pic--ml {
    margin-left: 10px;
  }

  .rule_box .indent {
    text-indent: 1em;
  }

  .rule_box__example {
    padding: 0;
  }

  .rule_box__example__name {
    margin-bottom: 25px;
  }

  .back_btn {
    max-width: 375px;
    margin: 35px auto 60px auto;
    line-height: 45px;
    height: 45px;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    font-family: "M PLUS Rounded 1c", sans-serif;
  }

  .back_btn a {
    display: block;
    color: #594b39;
    background-color: #ffd24d;
    border-radius: 50px;
  }

  .event_section {
    grid-template-columns: minmax(0, auto);
    column-gap: 0px;
  }

  /*==============================================================================
	
	草津インタビュー

==============================================================================*/
  .paging {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 20px 0 0 0;
    padding: 0 15px;
    font-size: 1.5rem;
  }

  .paging__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 15px;
  }

  .paging__list li {
    position: relative;
    margin-left: 3px;
    padding-left: 7px;
  }

  .paging__list li:first-child {
    margin-left: 0;
    padding-left: 0;
  }

  .paging__list li:first-child:before {
    content: none;
  }

  .paging__list li:before {
    content: "/";
    position: absolute;
    left: 0;
    top: 0;
  }

  .paging__list li a:hover {
    text-decoration: underline;
  }

  .interview_item {
    margin-bottom: 35px;
  }

  .interview_item__cont {
    background-color: #fff;
    padding: 30px 16px;
  }

  .interview_item__heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .interview_item__heading span {
    margin-left: 20px;
  }

  .interview_item__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
  }

  .interview_item__pic {
    margin-right: 20px;
  }

  .interview_item__main_txt {
    letter-spacing: 0.05em;
    line-height: 1.6;
  }

  .interview_item__btn {
    width: 70px;
    margin: 0px 0 0px auto;
    line-height: 40px;
    height: 40px;
  }

  .interview_item__btn a {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    padding: 0 0 0 15px;
    /*border: 1px solid #5E504D;
    position: relative;*/
  }

  .interview_item__btn a:hover {
    text-decoration: underline;
  }

  .interview_item__btn a:after {
    content: "";
    position: absolute;
    right: 11px;
    top: 10px;
    border-width: 10px 13px 10px 0px;
    border-color: transparent #594c4c transparent transparent;
    border-style: solid;
  }

  .paging--under {
    margin-top: -10px;
    margin-bottom: 50px;
    padding: 0;
  }

  .interview_box__pic img {
    width: 100%;
    padding: 5px;
    border: 1px solid #cccccc;
  }

  .interview_box__row {
    margin-bottom: 15px;
  }

  .interview_box__spacing {
    letter-spacing: 0.04em;
  }

  /*==============================================================================
	
	交通アクセス

==============================================================================*/
  .map {
    width: 95%;
  }

  /*==============================================================================
	
	サイトマップ

==============================================================================*/
  .sitemap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .sitemap__child {
    width: calc(100% / 3);
    padding: 0 15px;
  }

  .sitemap__title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .sitemap__grand-child {
    font-size: 1.5rem;
    margin-top: 12px;
  }

  .sitemap__grand-child:first-of-type {
    margin-top: 0;
  }

  .sitemap__arrow:before {
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-weight: 900;
    color: #333;
    padding-right: 5px;
  }

  .sitemap__arrow:hover span {
    text-decoration: underline;
  }

  .sitemap__list {
    padding-left: 20px;
  }

  .sitemap__list li {
    margin-top: 5px;
    text-indent: -1em;
    padding-left: 1em;
  }

  .sitemap__list a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-weight: 900;
    color: #333;
    padding-right: 5px;
  }

  .sitemap__list a:hover span {
    text-decoration: underline;
  }

  /*==============================================================================
	
	さくらマップ

==============================================================================*/
  .sakura-map {
    width: 100%;
  }

  .sakura-map iframe {
    width: 100%;
  }

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

	新着情報一覧

===============================================*/
  .news-list {
  }

  .news-list dl {
    padding: 0;
    margin: 0 15px;
  }

  .news-list dt {
    float: none;
    padding-left: 0;
  }

  .news-list dd {
    margin: 0 0 5px 0;
    padding: 0.3em 0 0.3em 0;
  }
}

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

	スマホ

=============================================================================================================================================
===========================================================================================================================================*/
@media only screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }

  .br-tb {
    display: none;
  }

  .br-sp {
    display: block;
  }

  .sp_tbl td {
    display: block;
    width: 100%;
  }

  .sp_tbl img {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
  }

  .group_name5,
  .group_name6,
  .group_name7,
  .group_name8,
  .group_name9 {
    flex-flow: column;
  }

  .group_name5 img,
  .group_name6 img,
  .group_name7 img,
  .group_name8 img,
  .group_name9 img {
    max-width: 200px;
  }

  .top-event__list li {
    width:100%;
  }

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

	スマホメニュー

===============================================*/
  .toggle-btn {
    width: 50px;
    height: 50px;
  }

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

	ヘッダー

===============================================*/
  .header__title {
    padding: 20px 10px 15px;
    background-image: none;
  }

  .header__logo {
    text-align: left;
  }

  .header__logo img {
    width: 240px;
  }

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

	メインコンテンツ

===============================================*/
  .top-heading {
    padding: 0 0 0 65px;
  }

  .top-heading-2lines {
    padding: 6px 0 0 65px;
    line-height: 120%;
  }

  .top-heading--mgt {
    font-size: 1.4em;
  }

  .top-news__cont {
    padding: 15px;
  }

  .top-news__scroll {
    margin-left: 0;
    margin-right: 0;
  }

  .top-news__list {
    display: block;
  }

  .top-news__item {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }

  .top-news__item:last-child {
    margin-bottom: 0;
  }

  .top-news__item__img {
    margin-right: 20px;
  }

  .top-event__cont {
    padding: 15px;
  }

  /* .top-event__scroll {
    height: 167px;
  } */

  .top-event__list li a {
    font-size: 1.6rem;
  }

  .top-about__cont {
    height: auto;
    padding: 0px 15px;
  }

  .top-about__heading img {
    width: 90%;
    max-width: 410px;
  }

  .top-about__main-txt {
    padding: 20px 0 0 0;
    font-size: 2.6rem;
  }

  .top-about__sub-txt {
    padding: 0 0 0 5px;
  }

  .top-citizen__cont {
    padding: 0 15px;
  }

  .top-citizen__list {
    margin-left: 0;
    margin-right: 0;
  }

  .top-citizen__list li {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .top-mgt__list {
    margin-left: 0;
    margin-right: 0;
  }

  .top-mgt__list li {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  /*
.top-town__list {
    margin-left: 0;
    margin-right: 0;
}

.top-town__list li {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
*/

  .top-town__cont {
    padding: 0 15px;
  }

  .top-town__list {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -25px;
  }

  .top-town__list li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 25px;
    width: -webkit-calc((100% / 2) - 20px);
    width: calc((100% / 2) - 20px);
  }

  .main-cont__side {
    display: block;
  }

  .top-side-menu {
    margin-right: 0;
    width: 100%;
  }

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

	フッター

===============================================*/
  .footer {
    margin-top: 70px;
  }

  .f-address {
    display: block;
  }

  .f-address__name {
    margin: 0 0 30px 0;
    text-align: center;
  }

  .f-address__box {
    font-size: 1.6rem;
  }

  .f-address__num_gp {
    font-size: 1.9rem;
  }

  .footer__body__list {
    font-size: 1.5rem;
    margin: 30px 0;
    display: block;
  }

  .footer__body__list li {
    margin: 0;
  }

  .footer__body__list li:not(:last-child) {
    margin: 0px 0px 15px 0px;
  }

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

	ページトップへボタン

===============================================*/
  #page-top {
    right: 15px;
    bottom: 45px;
    z-index: 9999;
  }

  #page-top a {
    font-size: 1rem;
    width: 60px;
    height: 60px;
    padding-top: 27px;
  }

  #page-top a:after {
    top: 15px;
  }

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

	ここから中ページ
	
	運営

==============================================================================*/
  .breadcrumbs {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .breadcrumbs li:before {
    top: 5px;
  }

  .mid-title_bg {
    height: 135px;
    background-image: url(../img/mid-title_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    margin-bottom: 35px;
  }

  .mid-title {
    font-size: 3.8rem;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-family: "M PLUS Rounded 1c", sans-serif;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .mid-cont {
    padding: 0;
  }

  .mid-cont__heading {
    font-size: 3.5rem;
    line-height: 1.2;
    padding: 12px 0;
  }

  .mid-cont__heading02 {
    line-height: 1.2;
  }

  .mid-cont__body {
    padding: 0 5px;
    margin-top: 35px;
  }

  .mgt-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    margin-bottom: 70px;
  }

  .mgt-list li {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
  }

  .mgt-list a {
    display: block;
    font-size: 2.5rem;
    padding: 20px 10px 20px 55px;
    background-color: #fff;
    border-top: 5px solid #594c4c;
    font-family: "M PLUS Rounded 1c", sans-serif;
    position: relative;
  }

  .mgt-item-list > li {
      width: 100%;
      padding: 0;
  }

  .mid-subtitle {
      margin-left: 16px;
      margin-right: 16px;
  }


  /*==============================================================================
	
	詳細

==============================================================================*/
  .detail_box {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding: 20px 15px;
    background-color: #fff;
  }

  .detail_box__heading {
    padding: 0;
    margin: 0 0px 15px;
  }

  .rule_box__lead {
    margin-bottom: 20px;
    padding-left: 0;
    display: block;
  }

  .detail_box__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .detail_box__pic {
    margin: 0 0 10px 0;
    width: 100%;
    flex: 0 0 auto;
  }

  .detail_box__pic img {
    width: 100%;
  }

  .detail_box__row__text {
    order: 2;
  }

  .event_section2 {
    flex-wrap: nowrap;
    flex-flow: column;
    align-items: center;
  }

  .event_section2 .img_box {
    width: 100%;
  }

  .event_section2 .info_box {
    width: 100%;
    order: 2;
  }

  .pdf_link {
    order: 2;
  }

  /*==============================================================================
	
	草津インタビュー

==============================================================================*/
  .paging {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 1.5rem;
  }

  .paging p {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .paging__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 0;
  }

  .interview_item__heading span {
    margin-left: 0;
    display: block;
  }

  .interview_item__row {
    display: block;
  }

  .interview_item__pic {
    margin: 0 0 10px 0;
    min-width: auto;
  }

  .interview_item__pic img {
    width: 100%;
  }

  /*==============================================================================
	
	団体運営コンテンツ管理

==============================================================================*/
  .cont-pic {
  }

  .cont-pic img {
    width: 100%;
    height: auto;
  }

  /*==============================================================================
	
	団体をさがす

==============================================================================*/
  .search-list-btn-box {
    margin: 10px auto 15px auto;
    display: block;
  }

  .search-list-btn {
    margin: 5px 5px 0 5px;
  }

  .search-list-btn a:link {
    width: 100%;
    text-align: center;
  }

  .dantai-syosai-pic {
    margin: 0px auto 10px auto;
  }

  .dantai-syosai-pic img {
    width: 100%;
  }

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

	保険・お金の管理

==============================================================================*/
  .text_box2 img {
    width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
  }

  .sp_tbl_td_block {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin: 0 auto;
  }

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

	助成金・補助金・節約術

==============================================================================*/
  .qa_text {
    font-weight: bold;
    line-height: 120%;
    margin: 0px;
    padding: 15px 0px 15px 15px;
    background: #cce7f3;
  }

  .qa li {
    margin: 5px 0px 0px 10px;
    padding: 0px;
    list-style: none;
  }

  .sp_tbl_border_scroll {
    max-width: 940px;
    margin: 0 auto;
  }

  .sp_tbl_border_scroll table,
  .sp_tbl_border_scroll td,
  .sp_tbl_border_scroll th {
    padding: 10px;
    border-collapse: collapse;
    border: 1px solid #594c4c;
  }

  .sp_tbl_border_scroll th {
    background: #e8e2dd;
  }

  .table-scroll {
    overflow: auto; /*スクロールさせる*/
    white-space: nowrap; /*文字の折り返しを禁止*/
    width: 255px; /*今回の設置を分かりやすくするためワザと狭い幅を指定。本来は不必要な指定です。*/
  }

  /* 以下、tableの指定 */
  .table-scroll table {
    border-collapse: collapse;
    border-spacing: 0;
    border-top: #ccc solid 1px;
    border-left: #ccc solid 1px;
  }
  .table-scroll table th,
  .table-scroll table td {
    padding: 10px 15px;
    font-weight: normal;
    border-right: #ccc solid 1px;
    border-bottom: #ccc solid 1px;
    font-size: 12px;
  }
  .table-scroll table th {
    background: #eee;
    width: 80px;
  }

  .sp_tbl_border th {
    background: #e8e2dd;
    display: block;
    width: 100%;
  }

  /*　イキイキ活動助成　*/
  .ikiki_tbl_box {
    width: 100%;
  }

  .ikiki_bnr_left_box img {
  }

  .ikiki_bnr_right_box img {
  }

  /*==============================================================================
	
	交通アクセス

==============================================================================*/
  .map {
    border: 2px solid #ccc;
    max-width: 95%;
  }

  /*==============================================================================
	
	サイトマップ

==============================================================================*/
  .sitemap__child {
    width: 100%;
    padding: 0 5px;
    margin-bottom: 20px;
  }

  /*==============================================================================
	
	くさつ市民活動　虫めがね

==============================================================================*/
  .musinegane_list li {
    font-size: 1em;
    margin: 10px 0 0 20px;
    list-style: disc;
    max-width: 420px;
  }

  /*==============================================================================
	
	さくらマップ

==============================================================================*/
  .sakura-map {
    width: 100%;
  }

  .sakura-map iframe {
    width: 100%;
  }

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

	新着情報一覧

===============================================*/
  .news-list {
  }

  .news-list dl {
    padding: 0;
    margin: 0 3px 5px 0;
  }

  .news-list dt {
    float: none;
    padding-left: 0;
  }

  .news-list dd {
    margin: 0;
    padding: 0.2em 0 0.2em 0;
  }

  .news_main_2 {
    margin: 10px 0px 0px 0px;
    padding: 0px;
    float: left;
    width: 100%;
  }

  a .page_p {
    text-align: center;
    margin: 0px1;
    padding: 5px 0px 0px;
    border-width: 1px;
    border-color: #cccccc;
    border-style: solid;
    float: left;
    height: 35px;
    width: 100px;
  }

  a .page_n {
    text-align: center;
    margin: 0px;
    padding: 5px 0px 5px 0px;
    border-width: 1px;
    border-color: #cccccc;
    border-style: solid;
    float: left;
    height: 35px;
    width: 100px;
  }

  .page_p_n {
    text-align: center;
    margin: 0px;
    padding: 0px;
    float: left;
    height: 35px;
    width: 285px;
  }

  .page_n_n {
    text-align: center;
    margin: 0px;
    padding: 0px;
    float: left;
    height: 35px;
    width: 285px;
  }

  a .page_p:visited {
    text-align: center;
    text-decoration: underline;
    margin: 0px;
    padding: 5px 0px 5px 0px;
    border-width: 1px;
    border-color: #aaaaaa;
    border-style: solid;
    float: left;
    height: 35px;
    width: 100px;
  }

  a .page_n:visited {
    text-align: center;
    text-decoration: underline;
    margin: 0px;
    padding: 5px 0px 5px 0px;
    border-width: 1px;
    border-color: #aaaaaa;
    border-style: solid;
    float: left;
    height: 35px;
    width: 100px;
  }

  a .page_p:hover {
    text-align: center;
    text-decoration: underline;
    margin: 0px;
    padding: 5px 0px 5px 0px;
    border-width: 1px;
    border-color: #aaaaaa;
    border-style: solid;
    float: left;
    height: 35px;
    width: 100px;
  }

  a .page_n:hover {
    text-align: center;
    text-decoration: underline;
    margin: 0px;
    padding: 5px 0px 5px 0px;
    border-width: 1px;
    border-color: #aaaaaa;
    border-style: solid;
    float: left;
    height: 35px;
    width: 100px;
  }
}

@media only screen and (max-width: 550px) {
  .event_box {
    max-height: max-content;
    flex-flow: column;
    align-items: center;
  }
  .event_box a {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  .event_box img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 444px) {
  .pdf_link,
  .social_btn {
    flex-wrap: wrap;
    row-gap: 0.5em;
  }
}
