@charset "UTF-8";
@import url("global.css");
/* ------------------------------
 Index
------------------------------ */
.archive #bodyarea {
  margin-bottom: 90px;
}
.archive ul.eventlist {
  border-top: #262626 solid 1px;
  margin-bottom: 35px;
}
.archive ul.eventlist li {
  padding-block: 50px;
  border-bottom: #262626 solid 1px;
}
.archive ul.eventlist li.end a .img {
  position: relative;
}
.archive ul.eventlist li.end a .img::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  opacity: .6;
}
.archive ul.eventlist 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;
}
.archive ul.eventlist li.end a .img figure::before, .archive ul.eventlist li.end a .img figure::after {
  display: none;
}
.archive ul.eventlist li a {
  display: flex;
}
.archive ul.eventlist li a .img {
  flex-shrink: 0;
  margin-right: 60px;
  width: 41%;
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
}
.archive ul.eventlist li a .img figure {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
  overflow: hidden;
}
.archive ul.eventlist li a .img figure img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
.archive ul.eventlist li a .img figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #262626;
  mix-blend-mode: multiply;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
.archive ul.eventlist li a .img figure::after {
  content: "詳しく見る";
  color: #fff;
  position: absolute;
  bottom: 15px;
  right: 40px;
  z-index: 2;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.2s;
  backface-visibility: hidden;
}
.archive ul.eventlist li a .postinfo {
  width: 100%;
}
.archive ul.eventlist li a .postinfo .cat {
  display: block;
  white-space: nowrap;
  width: fit-content;
  padding: 2px 30px;
  background-color: #262626;
  color: #FFF;
  font-size: .875em;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
  margin-bottom: 15px;
}
.archive ul.eventlist li a .postinfo .postcatch {
  font-size: 1.06em;
  line-height: 1.5;
  color: #777777;
  margin-bottom: 10px;
}
.archive ul.eventlist li a .postinfo .posttitle {
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.5;
}
.archive ul.eventlist li a .postinfo .data {
  margin-top: 20px;
  font-size: .875em;
  background-color: #F5F5F5;
  padding: 15px 20px;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
  font-weight: normal;
}
.archive ul.eventlist li a .postinfo .data > p {
  display: flex;
  align-items: flex-start;
}
.archive ul.eventlist li a .postinfo .data > p::before {
  display: block;
  margin-right: 10px;
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
}
.archive ul.eventlist li a .postinfo .data > p.day::before {
  content: "\f073";
}
.archive ul.eventlist li a .postinfo .data > p.place::before {
  content: "\f3c5";
}
@media (any-hover: hover) {
  .archive ul.eventlist li a:hover .img figure img {
    filter: blur(2px);
  }
  .archive ul.eventlist li a:hover .img figure::before {
    opacity: .6;
  }
  .archive ul.eventlist li a:hover .img figure::after {
    opacity: 1;
    translate: 20px 0;
  }
}

/* ------------------------------
 Entry
------------------------------ */
@keyframes bgimage {
  0% {
    opacity: 0;
    filter: grayscale(1);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
.entry #contents {
  padding-top: 0;
}
.entry #bodyarea {
  position: relative;
}
.entry #bodyarea #mvbg {
  position: fixed;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100lvh;
  animation: bgimage 2s ease .1s 1;
  animation-fill-mode: both;
}
.entry #bodyarea #mvbg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #262626;
  opacity: .38;
}
.entry #bodyarea #mvbg figure {
  width: 100%;
  height: 100%;
}
.entry #post {
  padding-block: 46.3svh 120px;
}
.entry #post #posttop {
  color: #FFF;
  font-weight: 700;
  margin-bottom: 45px;
}
.entry #post #posttop #title a {
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.entry #post #posttop #title a::before {
  content: "";
  display: block;
  margin-right: 10px;
  width: 23px;
  height: 23px;
  background: url(../img/arrow_back.svg) no-repeat center center;
  background-size: contain;
}
.entry #post #posttop .catch {
  margin-top: 20px;
  font-size: clamp(18px, 3.2vw, 44px);
  line-height: 1.6;
}
.entry #post #postouter {
  background-color: #FFF;
  padding: 70px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.entry #post #postouter #postinfo {
  display: flex;
}
.entry #post #postouter #postinfo .infoimg {
  width: 50%;
  flex-shrink: 0;
}
.entry #post #postouter #postinfo .infoimg figure {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  overflow: hidden;
  -webkit-border-radius: var(--radius-normal);
  border-radius: var(--radius-normal);
}
.entry #post #postouter #postinfo .infotext {
  width: 100%;
  padding-left: 50px;
}
.entry #post #postouter #postinfo .infotext .catarea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.entry #post #postouter #postinfo .infotext .catarea > span {
  display: block;
  white-space: nowrap;
  width: fit-content;
  padding: 2px 25px;
  background-color: #262626;
  color: #FFF;
  font-size: .875em;
  font-weight: 700;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
}
.entry #post #postouter #postinfo .infotext .posttitle {
  margin-bottom: 40px;
  line-height: 1.6;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 700;
}
.entry #post #postouter #postinfo .infotext .outline > table {
  border-collapse: collapse;
  border-top: #A9A9A9 solid 1px;
  border-bottom: #A9A9A9 solid 1px;
  width: 100%;
}
.entry #post #postouter #postinfo .infotext .outline > table tr + tr {
  border-top: #A9A9A9 dashed 1px;
}
.entry #post #postouter #postinfo .infotext .outline > table th, .entry #post #postouter #postinfo .infotext .outline > table td {
  line-height: 1.6;
  padding: 20px 10px;
}
.entry #post #postouter #postinfo .infotext .outline > table th {
  font-weight: 700;
  white-space: nowrap;
  padding-right: 50px;
}
.entry #post #postouter #postinfo .infotext .outline > table th::before {
  display: inline-block;
  margin-right: 10px;
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
}
.entry #post #postouter #postinfo .infotext .outline > table th.day::before {
  content: "\f073";
}
.entry #post #postouter #postinfo .infotext .outline > table th.time::before {
  content: "\f017";
}
.entry #post #postouter #postinfo .infotext .outline > table th.place::before {
  content: "\f3c5";
}
.entry #post #postouter #postinfo .infotext .outline > table th.other::before {
  content: "\f06a";
}
.entry #post #postouter #postinfo .infotext .outline > table td .maplink {
  display: block;
  margin-top: 10px;
}
.entry #post #postouter #postinfo .infotext .outline > table td .maplink a {
  display: block;
  width: fit-content;
  background-color: #FFF;
  border: #A9A9A9 solid 1px;
  padding: 3px 10px 4px;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
  font-family: "Barlow Semi Condensed", "LINE Seed JP", sans-serif;
  font-weight: 700;
}
.entry #post #postouter #postinfo .infotext .outline .btn {
  margin-top: 30px;
}
.entry #post #postouter #postinfo .infotext .outline .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 5vw;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 0 2px 3px rgba(38, 38, 38, 0.2);
  font-size: 1.19em;
  font-weight: 700;
  color: #FFF;
  background-color: #262626;
  -webkit-border-radius: var(--radius-small);
  border-radius: var(--radius-small);
}
.entry #post #postouter #postinfo .infotext .outline .btn a::after {
  content: "";
  display: block;
  margin-left: 10px;
  width: 23px;
  height: 23px;
  background: url(../img/event/arrow_down.svg) no-repeat center center;
  background-size: contain;
}
.entry .phgallery {
  max-width: 1000px;
  margin: 100px auto 0;
}
.entry .phgallery .gallery_title {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: clamp(20px, 3.2vw, 36px);
}
.entry .phgallery .gallery_title::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
  background-color: #D5501E;
}
.entry .phgallery .pharea .fotorama__wrap,
.entry .phgallery .pharea .fotorama__stage,
.entry .phgallery .pharea .fotorama__img {
  border-radius: var(--radius-large) !important;
}
.entry .bgwh {
  padding-top: 120px;
  background-color: #FFF;
}
.entry .bgwh #sec_form {
  margin-bottom: 90px;
}
.entry .bgwh .pageback {
  margin: 0;
}
.entry #breadcrumbs {
  background-color: #FFF;
}
.entry #breadcrumbs .wrapper {
  text-align: right;
}
.entry #footer {
  background-color: #FFF;
}
.entry .postbody {
  margin: 110px auto 35px;
  max-width: 760px;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
}
.entry .postbody .wp-block-image {
  max-width: 700px;
  height: auto;
}
.entry .postbody .center {
  text-align: center;
}
.entry .postbody h1:not([class]) {
  line-height: 1.5;
  font-size: 180%;
  margin: 1.8em 0 1.5em;
}
.entry .postbody h1:not([class]) * {
  font-size: inherit;
}
.entry .postbody h2:not([class]) {
  line-height: 1.5;
  font-size: 160%;
  font-weight: bold;
  margin: 2em 0 1.6em;
}
.entry .postbody h2:not([class]) * {
  font-size: inherit;
}
.entry .postbody .bgcolor {
  margin-block: 35px;
  background-color: #F8F5EE;
  padding: 25px 35px 30px;
}
.entry .postbody .bgcolor .h {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.25em;
}
.entry .postbody .bgcolor .h::before {
  content: "";
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background-color: #D5501E;
}
.entry .postbody .bgcolor img {
  display: block;
  text-align: center;
  margin: 25px auto 0;
}
.entry .postbody .point {
  margin-block: 35px;
}
.entry .postbody .point .h {
  background-color: #F5F5F5;
  padding: 8px 20px 6px;
  font-weight: 700;
  font-size: 1.5em;
}
.entry .postbody .point > ul {
  margin-top: 15px;
}
.entry .postbody .point > ul li {
  line-height: 1.5;
  padding-left: 1.5em;
  position: relative;
}
.entry .postbody .point > ul li + li {
  margin-top: 7px;
}
.entry .postbody .point > ul li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #262626;
}

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

 Responsive-Breakpoint-1 ( 1600px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1600px) {
  /* ------------------------------
   Index
  ------------------------------ */
  /* ------------------------------
   Entry
  ------------------------------ */
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 1300px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Index
  ------------------------------ */
  .archive #bodyarea {
    margin-bottom: 90px;
  }
  .archive ul.eventlist {
    margin-bottom: 35px;
  }
  .archive ul.eventlist li {
    padding-block: 35px;
  }
  .archive ul.eventlist li a {
    align-items: flex-start;
  }
  .archive ul.eventlist li a .img {
    width: 36%;
    margin-right: 30px;
  }
  .archive ul.eventlist li a .postinfo .cat {
    padding: 2px 20px;
  }
  .archive ul.eventlist li a .postinfo .postcatch {
    margin-bottom: 15px;
  }
  .archive ul.eventlist li a .postinfo .data {
    margin-top: 20px;
    padding: 15px 20px;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry #post {
    padding-block: 35svh 90px;
  }
  .entry #post #posttop {
    margin-bottom: 35px;
  }
  .entry #post #posttop #title a::before {
    width: 18px;
    height: 18px;
  }
  .entry #post #postouter {
    padding: 60px 50px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
  }
  .entry #post #postouter #postinfo .infoimg {
    width: 43%;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  .entry #post #postouter #postinfo .infoimg {
    width: 40%;
  }
}
@media only screen and (max-width: 1300px) {
  .entry #post #postouter #postinfo .infotext {
    padding-left: 35px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  .entry #post #postouter #postinfo .infotext {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1300px) {
  .entry #post #postouter #postinfo .infotext .catarea {
    margin-bottom: 15px;
  }
  .entry #post #postouter #postinfo .infotext .catarea > span {
    padding: 2px 15px;
    font-size: .8em;
  }
  .entry #post #postouter #postinfo .infotext .posttitle {
    margin-bottom: 30px;
  }
  .entry #post #postouter #postinfo .infotext .outline > table th, .entry #post #postouter #postinfo .infotext .outline > table td {
    padding: 20px 5px;
  }
  .entry #post #postouter #postinfo .infotext .outline > table th {
    padding-right: 30px;
  }
  .entry #post #postouter #postinfo .infotext .outline > table th::before {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 959px) {
  .entry #post #postouter #postinfo .infotext .outline > table th {
    padding-right: 20px;
  }
}
@media only screen and (max-width: 1300px) {
  .entry #post #postouter #postinfo .infotext .outline > table td .maplink {
    margin-top: 8px;
  }
  .entry #post #postouter #postinfo .infotext .outline .btn a {
    font-size: 1.1em;
  }
  .entry #post #postouter #postinfo .infotext .outline .btn a::after {
    width: 20px;
    height: 20px;
  }
  .entry .phgallery {
    margin: 65px auto 0;
  }
  .entry .phgallery .gallery_title {
    column-gap: 8px;
    margin-bottom: 20px;
  }
  .entry .phgallery .gallery_title::before {
    width: 10px;
    height: 10px;
  }
  .entry .bgwh {
    padding-top: 90px;
  }
  .entry .bgwh #sec_form {
    margin-bottom: 65px;
  }
  .entry .postbody {
    margin: 80px auto 30px;
  }
  .entry .postbody .bgcolor {
    margin-block: 30px;
    padding: 25px 30px 30px;
  }
  .entry .postbody .bgcolor .h {
    column-gap: 7px;
    font-size: 1.2em;
  }
  .entry .postbody .bgcolor .h::before {
    width: 8px;
    height: 8px;
  }
  .entry .postbody .bgcolor img {
    margin: 20px auto 0;
  }
  .entry .postbody .point {
    margin-block: 35px;
  }
  .entry .postbody .point .h {
    padding: 8px 20px 6px;
    font-size: 1.5em;
  }
  .entry .postbody .point > ul li + li {
    margin-top: 6px;
  }
  .entry .postbody .point > ul li::before {
    top: 7px;
    width: 6px;
    height: 6px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )

------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Index
  ------------------------------ */
  .archive #bodyarea {
    margin-bottom: 60px;
  }
  .archive ul.eventlist {
    margin-bottom: 20px;
  }
  .archive ul.eventlist li {
    padding-block: 30px;
  }
  .archive ul.eventlist li a {
    display: block;
  }
  .archive ul.eventlist li a .img {
    margin: 0 auto 25px;
    width: auto;
  }
  .archive ul.eventlist li a .img figure::after {
    right: 20px;
  }
  .archive ul.eventlist li a .postinfo .postcatch {
    font-size: 1em;
    margin-bottom: 5px;
  }
  .archive ul.eventlist li a .postinfo .data {
    margin-top: 15px;
  }
  .archive ul.eventlist li a .postinfo .data > p::before {
    margin-right: 8px;
  }

  /* ------------------------------
   Entry
  ------------------------------ */
  .entry #bodyarea {
    position: relative;
    padding-top: 1px;
  }
  .entry #post {
    padding-block: 0 65px;
  }
  .entry #post > .wrapper {
    padding-inline: 3vw;
  }
  .entry #post #posttop {
    height: 100svh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    padding-inline: 5vw;
    padding-bottom: 25svh;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  .entry #post #posttop #title a::before {
    margin-right: 7px;
  }
  .entry #post #posttop .catch {
    font-size: 5.5vw;
    margin-top: 15px;
  }
  .entry #post #postouter {
    margin-top: 80svh;
    padding: 6vw;
    border-radius: 12px;
  }
  .entry #post #postouter #postinfo {
    display: block;
  }
  .entry #post #postouter #postinfo .infoimg {
    width: auto;
    margin: -3vw -3vw 0;
  }
  .entry #post #postouter #postinfo .infotext {
    padding: 30px 0 0;
  }
  .entry #post #postouter #postinfo .infotext .outline > table th, .entry #post #postouter #postinfo .infotext .outline > table td {
    font-size: .9em;
    padding-inline: 0;
  }
  .entry #post #postouter #postinfo .infotext .outline > table th {
    padding-right: 20px;
  }
  .entry #post #postouter #postinfo .infotext .outline > table td .maplink {
    margin-top: 8px;
  }
  .entry #post #postouter #postinfo .infotext .outline .btn {
    margin-top: 25px;
  }
  .entry #post #postouter #postinfo .infotext .outline .btn a {
    padding: 10px 4vw;
    font-size: 1em;
  }
  .entry #post #postouter #postinfo .infotext .outline .btn a::after {
    width: 18px;
    height: 18px;
  }
  .entry .phgallery {
    margin: 50px auto 0;
  }
  .entry .phgallery .gallery_title {
    column-gap: 7px;
    margin-bottom: 20px;
  }
  .entry .phgallery .gallery_title::before {
    width: 8px;
    height: 8px;
  }
  .entry .bgwh {
    padding-top: 50px;
  }
  .entry .bgwh #sec_form {
    margin-bottom: 40px;
  }
  .entry .postbody {
    margin: 50px auto 20px;
  }
  .entry .postbody .center {
    text-align: justify;
  }
  .entry .postbody .center br {
    display: none;
  }
  .entry .postbody .bgcolor {
    margin-block: 30px;
    padding: 20px 20px 25px;
  }
  .entry .postbody .bgcolor .h {
    column-gap: 6px;
    margin-bottom: 10px;
    font-size: 1.2em;
  }
  .entry .postbody .bgcolor .h::before {
    width: 7px;
    height: 7px;
  }
  .entry .postbody .point {
    margin-block: 30px;
  }
  .entry .postbody .point .h {
    padding: 7px 10px 5px;
    font-size: 1.1em;
  }
  .entry .postbody .point > ul {
    margin-top: 10px;
  }
  .entry .postbody .point > ul li {
    padding-left: 1.4em;
  }
  .entry .postbody .point > ul li::before {
    width: 6px;
    height: 6px;
  }
}
