@charset "UTF-8";
@import url("global.css");
/* ------------------------------
 Index-Page
------------------------------ */
ul.eventlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(74px,4.5vw);
}
ul.eventlist li {
  display: contents;
}
ul.eventlist li a {
  display: grid;
  position: relative;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 6;
  height: 100%;
  line-height: 1.5;
  margin-bottom: 100px;
}
@media (any-hover: hover) {
  ul.eventlist li a:hover .image img {
    filter: brightness(1.5);
  }
  ul.eventlist li a:hover .image::before {
    opacity: .6;
  }
  ul.eventlist li a:hover .image::after {
    opacity: 1;
    translate: 0;
  }
}
ul.eventlist li a .image {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
ul.eventlist li a .image img {
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
ul.eventlist li a .image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #131313;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  opacity: 0;
}
ul.eventlist li a .image::after {
  content: "詳しく見る";
  color: #fff;
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
  z-index: 2;
  opacity: 0;
  translate: 0 10px;
}
ul.eventlist li a .staff {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin: 35px 0 -54px auto;
}
ul.eventlist li a .staff.nostaff {
  box-sizing: border-box;
  border: #c9c9c9 1px solid;
  background: url("../img/nostaff.jpg") no-repeat center center;
  background-size: contain;
}
ul.eventlist li a .catch {
  font-size: 85%;
  margin-bottom: 5px;
  padding-right: 60px;
}
ul.eventlist li a .posttitle {
  font-size: min(20px,1.8vw);
  font-weight: 500;
  padding-right: 60px;
  margin-bottom: 25px;
}
ul.eventlist li a .eventdate {
  position: relative;
  padding-top: 20px;
  font-size: 85%;
}
ul.eventlist li a .eventdate::before {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #c9c9c9;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
ul.eventlist li a .location {
  font-size: 13px;
  display: flex;
  gap: 5px;
  margin-top: 5px;
}
ul.eventlist li a .location::before {
  content: "\f3c5";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  font-size: 15px;
  line-height: 1.2;
}
ul.eventlist li.end .image {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
ul.eventlist li.end .image img {
  filter: grayscale(0.5) !important;
}
ul.eventlist li.end .image::before {
  opacity: 0.5 !important;
}
ul.eventlist li.end .image::after {
  content: "";
  position: absolute;
  background: url("../img/eventend.png") no-repeat center center;
  background-size: 188px auto;
  translate: 0 !important;
  opacity: 1 !important;
}

/* ------------------------------
 Post-Page
------------------------------ */
@keyframes bganime {
  0% {
    opacity: 0;
    filter: brightness(2);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}
@keyframes titleanime {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
#topbg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  animation: bganime 1.2s ease-in-out .1s 1;
  animation-fill-mode: both;
}
#topbg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .25;
  z-index: 1;
}

#posttop {
  color: #fff;
  position: relative;
  z-index: 2;
}
#posttop .back {
  position: absolute;
  left: min(40px,5vw);
  top: 140px;
}
#posttop .back a {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 12px;
  mix-blend-mode: screen;
}
#posttop .back a::before {
  content: "";
  width: 30px;
  height: 18px;
  border-radius: 2px;
  text-align: center;
  align-content: center;
  background: #4A4234 url("../img/arrow.png") no-repeat center center;
  background-size: 15px auto;
  filter: invert(1) brightness(1.5);
  scale: -1 1;
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
  backface-visibility: hidden;
}
@media (any-hover: hover) {
  #posttop .back a:hover::before {
    translate: -10px 0;
    opacity: .7;
  }
}
#posttop #eventtitle {
  padding-block: 360px 90px;
  line-height: 1.4;
}
#posttop #eventtitle .title {
  display: flex;
  align-items: center;
  letter-spacing: .1em;
  gap: 10px;
  padding-left: 2px;
  margin-bottom: 20px;
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  font-size: 14px;
  animation: titleen 1s var(--ease-out-quart) 1s 1;
  animation-fill-mode: both;
}
#posttop #eventtitle .title::before {
  content: "";
  width: 8px;
  height: 8px;
  display: block;
  background-color: #fff;
  border-radius: 1px;
  rotate: 45deg;
}
#posttop #eventtitle .maincatch {
  font-size: clamp(22px, 4vw, 38px);
  margin-bottom: 25px;
  animation: titleja 0.8s var(--ease-out-quart) 1.2s 1;
  animation-fill-mode: both;
}
#posttop #eventtitle .eventtitle {
  position: relative;
  padding-top: 25px;
  animation: titleanime 0.8s var(--ease-out-quart) 1.2s 1;
  animation-fill-mode: both;
}
#posttop #eventtitle .eventtitle::before {
  content: "";
  width: 45px;
  height: 1px;
  background-color: #fff;
  opacity: .5;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

#postmain {
  position: relative;
  z-index: 1;
  background: #F8F7F4;
  border-radius: 40px;
  padding-block: 65px 120px;
  margin: 0 min(60px,4vw) 110px;
}
#postmain #introduction {
  display: flex;
  align-items: flex-start;
  gap: min(55px,4vw);
}
#postmain #introduction .mainimage {
  flex-shrink: 0;
  max-width: 46%;
  width: 700px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
}
#postmain #introduction .main {
  flex-grow: 1;
  margin-inline: 25px;
  line-height: 1.5;
  container-type: inline-size;
}
#postmain #introduction .main .end {
  background-color: #fff;
  border: #c9c9c9 1px solid;
  padding: 30px;
  text-align: center;
  border-radius: 4px;
  margin-bottom: 45px;
}
#postmain #introduction .main .posttitle {
  margin-top: 40px;
}
#postmain #introduction .main .posttitle .reserve {
  display: block;
  width: fit-content;
  background-color: #F0EDDF;
  padding: 6px 15px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
#postmain #introduction .main .posttitle .title {
  display: block;
  font-size: min(30px,2.2vw);
  margin-bottom: 35px;
}
#postmain #introduction .main .data {
  width: 100%;
  border-collapse: collapse;
  border-top: #c9c9c9 1px solid;
  margin-bottom: 40px;
}
#postmain #introduction .main .data tr {
  border-bottom: #c9c9c9 1px solid;
}
#postmain #introduction .main .data th {
  padding: 18px 15px;
  font-weight: 500;
  white-space: nowrap;
  vertical-align: top;
}
#postmain #introduction .main .data th .icon {
  width: 16px;
  display: inline-block;
  line-height: 1;
  vertical-align: 1px;
  margin-right: 6px;
}
#postmain #introduction .main .data td {
  padding: 18px 10px 18px 30px;
}
#postmain #introduction .main .data td a {
  text-decoration-color: rgba(74, 66, 52, 0.2);
  text-decoration-line: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 0;
  text-decoration-skip-ink: none;
}
#postmain #introduction .main .data .location li {
  padding-left: 13px;
  text-indent: -13px;
}
#postmain #introduction .main .data .location li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  display: inline-block;
  text-indent: 0;
  background-color: #c9c9c9;
  border-radius: 50%;
  vertical-align: 3px;
}
#postmain #introduction .main .data .location li + li {
  margin-top: 4px;
}
#postmain #introduction .main ul.button {
  display: flex;
  gap: min(36px,2vw);
}
#postmain #introduction .main ul.button li {
  flex: 1;
}
#postmain #introduction .main ul.button li a {
  display: block;
  align-content: center;
  height: 68px;
  padding-inline: 25px 40px;
  color: #fff;
  font-size: 17px;
  border-radius: 3px;
  background-color: #4A4234;
  position: relative;
  word-break: keep-all;
}
#postmain #introduction .main ul.button li a img {
  width: 24px;
  display: inline-block;
  margin-right: 8px;
  line-height: 1;
  vertical-align: top;
}
#postmain #introduction .main ul.button li a::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -12px;
}
@media (any-hover: hover) {
  #postmain #introduction .main ul.button li a:hover {
    text-shadow: 0 0 5px white;
  }
}
#postmain #introduction .main ul.button li.toform a::after {
  background: url("../img/event/icon-down.png") no-repeat center center;
  background-size: contain;
}
#postmain #introduction .main ul.button li.line a {
  background-color: #5DA55F;
}
#postmain #introduction .main ul.button li.line a::after {
  background: url("../img/event/icon-out.png") no-repeat center center;
  background-size: contain;
}
@container (max-width: 500px) {
  #postmain #introduction .main .data {
    font-size: 15px;
  }
  #postmain #introduction .main .data th {
    padding: 18px 5px;
  }
  #postmain #introduction .main .data td {
    padding: 18px 5px 18px 25px;
  }
  #postmain #introduction .main ul.button {
    display: block;
  }
  #postmain #introduction .main ul.button li + li {
    margin-top: 15px;
  }
  #postmain #introduction .main ul.button li a {
    height: 60px;
  }
}
#postbody {
  max-width: 860px;
  margin: 150px auto 0;
}

#bodyarea {
  position: relative;
  z-index: 1;
  background: #F8F7F4;
  margin-bottom: -150px;
  padding-block: 10px 150px;
}

#breadcrumbs {
  position: relative;
  z-index: 2;
}

#footer {
  position: relative;
  z-index: 2;
}

/* ---------- Event no Nakami ---------- */
#settype {
  counter-reset: pointcount 0;
}
#settype .pointtitle {
  text-align: center;
}
#settype .pointtitle::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #999;
  display: block;
  margin: 20px auto 0;
}
#settype .pointtitle span {
  display: block;
}
#settype .pointtitle .ja {
  font-size: clamp(21px, 4vw, 34px);
}
#settype .pointtitle .en {
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  font-size: 14px;
}
#settype .point {
  margin-block: 100px;
}
#settype .point:has(.sectitle) {
  counter-increment: pointcount 1;
}
#settype .point .sectitle {
  font-family: "Inter", "IBM Plex Sans JP", sans-serif;
  text-align: center;
  line-height: 1.2;
  color: #c9c9c9;
  margin-bottom: 30px;
}
#settype .point .sectitle::after {
  content: counter(pointcount,decimal-leading-zero);
  display: block;
  font-size: 40px;
  font-weight: 200;
  letter-spacing: .08em;
}
#settype .point .catch {
  text-align: center;
  font-size: clamp(16px, 3.4vw, 24px);
  letter-spacing: .08em;
}
#settype .point .image {
  text-align: center;
  margin-block: 40px;
}
#settype .point .text {
  font-size: 90%;
  margin: 40px 2vw 0;
}
#settype .point .text p + p {
  margin-top: 1em;
}

#freetype .postbody .inner {
  max-width: 640px;
  margin-inline: auto;
}
#freetype .postbody .boxcenter {
  width: fit-content;
  margin-inline: auto;
}
#freetype .formbutton {
  margin-top: 60px;
}
#freetype .formbutton a {
  display: block;
  box-sizing: border-box;
  max-width: 400px;
  margin-inline: auto;
  align-content: center;
  height: 68px;
  padding-inline: 25px 40px;
  color: #fff;
  font-size: 17px;
  border-radius: 3px;
  background-color: #4A4234;
  position: relative;
  text-decoration: none;
}
#freetype .formbutton a img {
  width: 24px;
  display: inline-block;
  margin-right: 8px;
  line-height: 1;
  vertical-align: top;
}
#freetype .formbutton a::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -12px;
  background: url("../img/event/icon-down.png") no-repeat center center;
  background-size: contain;
}
@media (any-hover: hover) {
  #freetype .formbutton a:hover {
    text-shadow: 0 0 5px white;
  }
}
#freetype .maplink {
  text-decoration-color: rgba(74, 66, 52, 0.2);
  text-decoration-line: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 0;
  text-decoration-skip-ink: none;
}
#freetype .maplink::after {
  content: "\f3c5";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  display: inline-block;
  margin-left: 5px;
}

/* ------------------------------ */
.staffcomment {
  max-width: 840px;
  margin: 120px auto 0;
}
.staffcomment .title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  line-height: 1;
}
.staffcomment .title::before {
  content: "";
  width: 20px;
  height: 16px;
  display: block;
  background: url("../img/comment.png") no-repeat left center;
  background-size: contain;
}
.staffcomment .title span {
  display: block;
}
.staffcomment .title .en {
  font-family: "Cormorant Garamond", serif;
  font-size: 19px;
  font-weight: 500;
}
.staffcomment .title .ja {
  font-weight: 500;
  padding-top: 2px;
}
.staffcomment .comment {
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  gap: min(40px,5vw);
  align-items: center;
  padding: 45px 50px;
}
.staffcomment .comment .staff {
  width: 140px;
  flex-shrink: 0;
  text-align: center;
}
.staffcomment .comment .staff .photo {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 6px;
}
.staffcomment .comment .staff .photo.nophoto {
  border: #c9c9c9 1px solid;
  background: url("../img/nostaff.jpg") no-repeat center center;
  background-size: contain;
}
.staffcomment .comment .staff .name {
  font-size: 14px;
  font-weight: 500;
}
.staffcomment .comment .text {
  flex-grow: 1;
}

.endtext {
  width: fit-content;
  margin: 100px auto 0;
}

#formarea {
  padding-bottom: 120px;
  margin-bottom: 40px;
  border-bottom: #c9c9c9 1px solid;
}

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

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  #postmain #introduction .main {
    margin-inline: 0;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  ul.eventlist {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5vw;
  }
  ul.eventlist li a {
    margin-bottom: 70px;
  }
  ul.eventlist li a .staff {
    width: 50px;
    height: 50px;
    margin: 25px 0 -50px auto;
  }
  ul.eventlist li a .posttitle {
    font-size: min(20px,2.5vw);
    margin-bottom: 20px;
  }
  ul.eventlist li a .eventdate {
    padding-top: 18px;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
  #postmain {
    border-radius: 4vw;
    padding-block: 60px 80px;
    margin: 0 min(60px,4vw) 110px;
  }
  #postmain #introduction {
    display: block;
  }
  #postmain #introduction .mainimage {
    max-width: none;
    width: auto;
    margin-bottom: 40px;
  }
  #postmain #introduction .main .posttitle .title {
    font-size: min(26px,5.3vw);
  }
  #postmain #introduction .main .data .location li::before {
    vertical-align: 2px;
  }
  #postmain #introduction .main ul.button li a {
    height: 60px;
    font-size: 16px;
  }

  #postbody {
    margin: 100px auto 0;
  }

  #bodyarea {
    margin-bottom: -120px;
    padding-block: 1px 120px;
  }

  /* ---------- Event no Nakami ---------- */
  #settype .point {
    margin-block: 70px;
  }

  #freetype .formbutton {
    margin-top: 50px;
  }
  #freetype .formbutton a {
    height: 60px;
    font-size: 16px;
  }

  /* ------------------------------ */
  .staffcomment {
    margin: 70px auto 0;
  }
  .staffcomment .comment {
    padding: 5vw;
  }

  .endtext {
    margin: 80px auto 0;
  }

  #formarea {
    padding-bottom: 80px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  /* ------------------------------
   Index-Page
  ------------------------------ */
  ul.eventlist {
    display: block;
  }
  ul.eventlist li {
    display: block;
    margin-bottom: 70px;
  }
  ul.eventlist li a {
    display: block;
    margin-bottom: 0;
  }
  ul.eventlist li a .staff {
    margin-top: 20px;
  }
  ul.eventlist li a .catch {
    margin-bottom: 8px;
    padding-right: 60px;
  }
  ul.eventlist li a .posttitle {
    font-size: min(21px,5vw);
    margin-bottom: 15px;
    padding-right: 60px;
  }
  ul.eventlist li a .location {
    font-size: 12px;
  }
  ul.eventlist li a .location::before {
    font-size: 14px;
  }
  ul.eventlist li.end .image::after {
    background-size: 180px auto;
  }

  /* ------------------------------
   Post-Page
  ------------------------------ */
  #posttop .back {
    top: 100px;
  }
  #posttop .back a {
    gap: 10px;
  }
  #posttop .back a::before {
    width: 24px;
    height: 15px;
    background-size: 12px auto;
  }
  #posttop #eventtitle {
    padding-block: 300px 80px;
  }
  #posttop #eventtitle .title {
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
  }

  #postmain {
    padding-block: 8vw 12vw;
    margin-bottom: 80px;
  }
  #postmain #introduction .mainimage {
    margin-bottom: 30px;
    border-radius: 5px;
  }
  #postmain #introduction .main .end {
    padding: 20px 0;
    margin-bottom: 30px;
  }
  #postmain #introduction .main .posttitle {
    margin-top: 30px;
  }
  #postmain #introduction .main .posttitle .reserve {
    padding: 5px 12px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  #postmain #introduction .main .posttitle .title {
    margin-bottom: 20px;
  }
  #postmain #introduction .main .data {
    margin-bottom: 30px;
    font-size: 13px;
  }
  #postmain #introduction .main .data th {
    padding: 15px 5px;
  }
  #postmain #introduction .main .data th .icon {
    width: 14px;
    margin-right: 5px;
  }
  #postmain #introduction .main .data td {
    padding: 15px 5px 15px 12px;
  }
  #postmain #introduction .main .data .location li::before {
    vertical-align: 1px;
  }
  #postmain #introduction .main ul.button li + li {
    margin-top: 10px;
  }
  #postmain #introduction .main ul.button li a {
    height: 50px;
    font-size: 15px;
  }

  #postbody {
    margin: 60px auto 0;
  }

  #bodyarea {
    margin-bottom: -130px;
    padding-block: 1px 130px;
  }

  /* ---------- Event no Nakami ---------- */
  #settype .pointtitle::after {
    height: 30px;
    margin: 10px auto 0;
  }
  #settype .pointtitle .en {
    font-size: 13px;
  }
  #settype .point {
    margin-block: 50px;
  }
  #settype .point .sectitle {
    margin-bottom: 30px;
    font-size: 13px;
  }
  #settype .point .sectitle::after {
    font-size: 32px;
  }
  #settype .point .image {
    margin-block: 30px;
  }
  #settype .point .text {
    margin: 30px 2vw 0;
  }

  #freetype .formbutton {
    margin-top: 30px;
  }
  #freetype .formbutton a {
    height: 50px;
    font-size: 15px;
  }

  /* ------------------------------ */
  .staffcomment {
    margin: 50px auto 0;
  }
  .staffcomment .comment {
    border-radius: 10px;
    display: block;
    padding: 30px;
  }
  .staffcomment .comment .staff {
    width: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
  }
  .staffcomment .comment .staff .photo {
    margin-bottom: 0;
    width: 90px;
  }
  .staffcomment .comment .text {
    font-size: 13px;
  }

  .endtext {
    margin: 60px auto 0;
  }

  #formarea {
    padding-bottom: 60px;
    margin-bottom: 30px;
  }
}

/*# sourceMappingURL=event.css.map */
