@charset "UTF-8";
@import url("global.css");
/* ---------- Index-Page ---------- */
.index .event_list {
  margin-bottom: 80px; }
  .index .event_list ul li + li {
    margin-top: 50px; }
  .index .event_list ul li.end a .img {
    position: relative; }
    .index .event_list ul li.end a .img::before {
      content: "";
      position: absolute;
      z-index: 1;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: #362929;
      opacity: .6; }
    .index .event_list ul li.end a .img::after {
      content: "終了しました";
      display: inline-block;
      background-color: #FFF;
      position: absolute;
      z-index: 2;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      padding: 5px 20px;
      font-size: .9em;
      white-space: nowrap; }
  .index .event_list ul li a {
    display: flex;
    align-items: flex-start;
    background-color: #FFF;
    width: 100%;
    padding: 20px 50px 20px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    border-radius: 5px; }
    @media (any-hover: hover) {
      .index .event_list ul li a:hover .img figure img {
        transform: scale(1.05); }
      .index .event_list ul li a:hover .text .more {
        background-color: #362929;
        color: #fff; } }
    .index .event_list ul li a .img {
      flex-shrink: 0;
      width: 400px; }
      .index .event_list ul li a .img figure {
        width: 100%;
        height: 0;
        padding-top: 75%;
        background-color: rgba(230, 215, 204, 0.3);
        overflow: hidden;
        position: relative; }
        .index .event_list ul li a .img figure img {
          position: absolute;
          left: 0;
          top: 0;
          transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
          -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
          backface-visibility: hidden;
          -webkit-backface-visibility: hidden; }
    .index .event_list ul li a .text {
      flex-grow: 1;
      padding: 20px 0 10px 40px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .index .event_list ul li a .text .cat {
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 5px; }
        .index .event_list ul li a .text .cat span {
          display: block;
          background-color: #362929;
          color: #FFF;
          padding: 2px 10px;
          font-size: .82em; }
      .index .event_list ul li a .text .posttitle {
        font-size: 1.125em;
        font-weight: 700;
        line-height: 1.6; }
      .index .event_list ul li a .text .opendata {
        margin-top: 20px;
        line-height: 1.4; }
        .index .event_list ul li a .text .opendata dl {
          display: flex; }
          .index .event_list ul li a .text .opendata dl + dl {
            margin-top: 10px; }
          .index .event_list ul li a .text .opendata dl dt {
            width: 110px; }
            .index .event_list ul li a .text .opendata dl dt::before {
              content: "【";
              display: inline-block;
              margin-right: 2px; }
            .index .event_list ul li a .text .opendata dl dt::after {
              content: "】";
              display: inline-block;
              margin-left: 2px; }
          .index .event_list ul li a .text .opendata dl dd {
            flex: 1; }
      .index .event_list ul li a .text .more {
        margin: 15px 0 0 auto;
        width: fit-content;
        padding: 3px 15px;
        white-space: nowrap;
        border-radius: 99px;
        background-color: #E6D7CC;
        font-size: .75em;
        transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
        -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden; }

/* ---------- Entry-Page ---------- */
@keyframes bgimage {
  0% {
    opacity: 0;
    filter: grayscale(1); }
  100% {
    opacity: 1;
    filter: none; } }
.entry {
  position: relative; }
  .entry::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 700px;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../img/bg_texture_lpink.jpg") repeat left top; }
  .entry #header .header_logo a span {
    filter: brightness(0) invert(1); }
  .entry #breadcrumbs ul li a {
    color: #fff; }
  .entry #mvbg {
    position: fixed;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px;
    clip-path: inset(0);
    animation: bgimage 2s ease .1s 1;
    animation-fill-mode: both; }
    .entry #mvbg::before, .entry #mvbg::after {
      content: "";
      top: 0;
      left: 0;
      height: 100%;
      width: 100%; }
    .entry #mvbg::before {
      position: fixed;
      z-index: 1;
      background-repeat: no-repeat;
      background-position: top center;
      background-size: cover;
      filter: blur(2px); }
    .entry #mvbg::after {
      position: absolute;
      z-index: 2;
      opacity: .4;
      background-color: #000; }
  .entry .post_title {
    margin-bottom: 40px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    height: 560px;
    color: #fff; }
    .entry .post_title .catch {
      font-weight: 700;
      font-size: clamp(20px, 2.6vw, 30px);
      line-height: 1.6;
      margin-bottom: 25px; }
    .entry .post_title .catarea {
      display: flex;
      gap: 5px;
      margin-bottom: 20px; }
      .entry .post_title .catarea span {
        display: block;
        background-color: #362929;
        color: #FFF;
        padding: 2px 10px;
        font-size: .82em; }
    .entry .post_title .title {
      font-size: clamp(20px, 2.6vw, 30px);
      line-height: 1.6; }
      .entry .post_title .title.addcatch {
        font-size: clamp(13px, 1.6vw, 20px); }
  .entry #posthead {
    padding: 60px 50px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    background: url("../img/bg_texture_lpink.jpg") repeat left top;
    display: flex;
    flex-direction: row-reverse; }
    .entry #posthead .mainimg {
      flex-shrink: 0;
      margin-left: 60px;
      width: 500px; }
      .entry #posthead .mainimg span {
        display: block;
        width: 100%;
        text-align: center; }
    .entry #posthead .posthead_text {
      width: 100%;
      padding: 30px 0;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .entry #posthead .posthead_text .endtext {
        padding: 25px;
        background-color: #FFF;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        font-size: .95em;
        font-weight: 500;
        text-align: center;
        margin-bottom: 20px; }
        .entry #posthead .posthead_text .endtext > p {
          text-align: center; }
      .entry #posthead .posthead_text .outline > table {
        border-collapse: collapse;
        width: 100%; }
        .entry #posthead .posthead_text .outline > table tr + tr {
          border-top: #362929 dashed 1px; }
        .entry #posthead .posthead_text .outline > table th, .entry #posthead .posthead_text .outline > table td {
          line-height: 1.6;
          padding: 20px 10px; }
        .entry #posthead .posthead_text .outline > table th {
          font-weight: 700;
          font-size: .875em;
          white-space: nowrap; }
        .entry #posthead .posthead_text .outline > table td .maplink {
          display: inline-block;
          margin-left: 15px; }
          .entry #posthead .posthead_text .outline > table td .maplink a {
            display: block;
            letter-spacing: 0;
            font-size: .8em; }
            .entry #posthead .posthead_text .outline > table td .maplink a i {
              display: inline-block;
              margin-left: 5px; }
      .entry #posthead .posthead_text .outline .link_btn {
        margin-top: 20px; }
        .entry #posthead .posthead_text .outline .link_btn a {
          display: flex;
          align-items: center;
          width: fit-content;
          padding: 10px 35px;
          font-size: .9em;
          background-color: #FFF;
          -webkit-border-radius: 66px;
          border-radius: 66px; }
          .entry #posthead .posthead_text .outline .link_btn a::after {
            content: "";
            display: block;
            margin-left: 10px;
            background: url("../img/event/arrow-down.svg") no-repeat center center;
            background-size: contain;
            width: 16px;
            height: 16px; }
  .entry #postbody {
    border-top: #362929 solid 1px;
    border-bottom: #362929 solid 1px;
    padding: 120px 0; }
    .entry #postbody .postbody {
      max-width: 900px;
      margin: 0 auto; }
  .entry #formarea {
    margin-top: 0; }
    .entry #formarea .wrapper {
      padding-top: 90px; }
    .entry #formarea + .wrapper .pageback {
      border-top: #362929 solid 1px; }
  .entry .pageback {
    padding: 60px 0 120px; }

/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-1 ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ---------- Index-Page ---------- */
  .index .event_list {
    margin-bottom: 70px; }
    .index .event_list ul li a {
      padding: 20px 45px 20px 20px; }
      .index .event_list ul li a .img {
        width: 360px; }
      .index .event_list ul li a .text {
        padding: 20px 0 10px 30px; }

  /* ---------- Entry-Page ---------- */
  .entry #posthead {
    padding: 50px 35px; }
    .entry #posthead .mainimg {
      margin-left: 30px;
      width: 50%; }
    .entry #posthead .posthead_text {
      padding: 0; }
  .entry #postbody {
    padding: 65px 0; }
  .entry #formarea .wrapper {
    padding-top: 80px; }
  .entry .pageback {
    padding: 50px 0 90px; } }
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ---------- Index-Page ---------- */
  .index .event_list ul li + li {
    margin-top: 40px; }
  .index .event_list ul li.end a .img::after {
    padding: 5px 15px; }
  .index .event_list ul li a {
    align-items: stretch;
    padding: 20px; }
    .index .event_list ul li a .img {
      width: 40%; }
      .index .event_list ul li a .img figure {
        height: 100%;
        padding-top: 0;
        position: static; }
        .index .event_list ul li a .img figure img {
          position: static; }
    .index .event_list ul li a .text {
      padding: 0 0 0 20px; }
      .index .event_list ul li a .text .cat {
        margin-bottom: 10px;
        gap: 4px; }
        .index .event_list ul li a .text .cat span {
          padding: 2px 8px; }
      .index .event_list ul li a .text .opendata {
        margin-top: 15px; }
        .index .event_list ul li a .text .opendata dl + dl {
          margin-top: 8px; }
        .index .event_list ul li a .text .opendata dl dt {
          width: 90px; }
      .index .event_list ul li a .text .more {
        padding: 3px 13px; }

  /* ---------- Entry-Page ---------- */
  .entry .post_title {
    margin-bottom: 30px; }
    .entry .post_title .catch {
      line-height: 1.5;
      margin-bottom: 20px; }
    .entry .post_title .catarea {
      gap: 4px; }
      .entry .post_title .catarea span {
        padding: 2px 8px; }
    .entry .post_title .title {
      line-height: 1.5; }
  .entry #posthead {
    padding: 40px 25px; }
    .entry #posthead .mainimg {
      margin-left: 25px;
      width: 45%; }
    .entry #posthead .posthead_text .endtext {
      padding: 15px 20px;
      margin-bottom: 10px; }
    .entry #posthead .posthead_text .outline > table th, .entry #posthead .posthead_text .outline > table td {
      display: block; }
    .entry #posthead .posthead_text .outline > table th {
      padding: 15px 0 5px;
      white-space: normal;
      opacity: .8; }
    .entry #posthead .posthead_text .outline > table td {
      padding: 0 0 15px; }
      .entry #posthead .posthead_text .outline > table td .maplink {
        margin-left: 10px; }
        .entry #posthead .posthead_text .outline > table td .maplink a i {
          margin-left: 4px; }
    .entry #posthead .posthead_text .outline .link_btn {
      margin-top: 5px; }
      .entry #posthead .posthead_text .outline .link_btn a {
        padding: 8px 30px; }
        .entry #posthead .posthead_text .outline .link_btn a::after {
          margin-left: 8px; }
  .entry #postbody {
    padding: 50px 0; }
  .entry #formarea .wrapper {
    padding-top: 60px; }
  .entry .pageback {
    padding: 35px 0 70px; } }
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ---------- Index-Page ---------- */
  .index .event_list {
    margin-bottom: 50px; }
    .index .event_list ul li + li {
      margin-top: 30px; }
    .index .event_list ul li.end a .img::after {
      padding: 4px 12px; }
    .index .event_list ul li a {
      flex-direction: column;
      padding: 20px 20px 30px; }
      .index .event_list ul li a .img {
        width: 100%; }
        .index .event_list ul li a .img figure {
          height: 0;
          padding-top: 75%;
          position: relative; }
          .index .event_list ul li a .img figure img {
            position: absolute; }
      .index .event_list ul li a .text {
        padding: 20px 5px 0; }
        .index .event_list ul li a .text .more {
          margin: 9px 0 0 auto; }

  /* ---------- Entry-Page ---------- */
  .entry::before {
    top: 70svh; }
  .entry #mvbg {
    height: 70svh; }
  .entry .post_title {
    height: 35svh; }
    .entry .post_title .catch {
      margin-bottom: 15px; }
    .entry .post_title .catarea {
      margin-bottom: 15px; }
  .entry #posthead {
    padding: 6vw 5vw 7vw;
    -webkit-border-top-right-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 5px;
    display: block; }
    .entry #posthead .mainimg {
      margin: 0 auto 20px;
      width: auto; }
    .entry #posthead .posthead_text .outline > table th {
      padding: 10px 0 2px; }
    .entry #posthead .posthead_text .outline > table td {
      padding: 0 0 10px; }
    .entry #posthead .posthead_text .outline .link_btn a {
      margin: 0 auto; }
  .entry #postbody {
    padding: 45px 0; }
  .entry #formarea .wrapper {
    padding-top: 45px; }
  .entry .pageback {
    padding: 35px 0 50px; } }
