@charset "UTF-8";
@import url("global.css");
#breadcrumbs {
  padding-top: 130px;
  height: 80px;
  margin: 0;
}
#breadcrumbs ul li {
  font-size: 12px;
}
#breadcrumbs ul li:has(a)::after {
  width: 10px;
}
#breadcrumbs ul li a {
  padding-right: 8px;
}

#eventtitle {
  margin-bottom: 60px;
}
#eventtitle #title {
  line-height: 1.6;
}
#eventtitle #title .en {
  display: flex;
  align-items: center;
  column-gap: 12px;
  letter-spacing: .1em;
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  color: #639A70;
  animation: titleen 1s var(--ease-out-quart) 0.5s 1;
  animation-fill-mode: both;
  margin-bottom: 12px;
}
#eventtitle #title .en::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url("../img/title_event.png") no-repeat center center/contain;
  display: block;
}
#eventtitle #title .ja {
  font-size: clamp(17px, 3.8vw, 36px);
  animation: titleja 1.8s var(--ease-out-quart) 1s 1;
  animation-fill-mode: both;
}
#eventtitle .sub {
  color: #686868;
  font-size: clamp(14px, 2.5vw, 20px);
  margin-top: 5px;
}
#eventtitle .status {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  line-height: 26px;
  font-size: 14px;
}
#eventtitle .status .cat {
  background-color: #fff;
  border: #1D1D1D 1px solid;
  border-radius: 100px;
  text-align: center;
  padding-inline: 18px;
}
#eventtitle .status .yoyaku {
  background-color: #F1F0E7;
  padding-inline: 10px;
  border-radius: 2px;
}

.toparea {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: min(60px,4vw);
  margin-bottom: 110px;
}

.mainimage {
  width: 57%;
  flex-shrink: 0;
  border-top-right-radius: calc(var(--radius) + 2px);
  border-bottom-right-radius: calc(var(--radius) + 2px);
  animation: titlebg 1s ease-in-out .3s 1;
  animation-fill-mode: both;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.eventdata {
  flex-grow: 1;
  background: url("../img/bgmesh.png") repeat top left/1400px auto;
  border-top-left-radius: calc(var(--radius) + 2px);
  border-bottom-left-radius: calc(var(--radius) + 2px);
  padding: 45px max(50px,calc((100vw - 1500px) * .28)) 50px min(60px,3.5vw);
  text-align: left;
}
.eventdata .title {
  font-family: "Manrope", "Zen Kaku Gothic New", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  letter-spacing: .1em;
}
.eventdata .title::before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #639A70;
  margin-right: 10px;
  border-radius: 50%;
}
.eventdata .data {
  font-size: 15px;
}
.eventdata .data div {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.eventdata .data div dt {
  flex-shrink: 0;
  width: 95px;
  display: flex;
  justify-content: space-between;
  color: #686868;
  letter-spacing: .1em;
}
.eventdata .data div dt::after {
  content: "：";
}
.eventdata .data div a.map {
  text-decoration-color: rgba(99, 154, 112, 0.4);
  text-decoration-line: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: -1px;
  text-decoration-skip-ink: none;
}
.eventdata .data div a.map::after {
  content: "\f3c5";
  font-family: 'Font Awesome 6 free','Font Awesome 6 Brands';
  font-weight: 900;
  font-size: 110%;
  line-height: 1;
  display: inline-block;
  color: #639A70;
  padding-left: 3px;
}
.eventdata #formbutton {
  margin-top: 40px;
}
.eventdata #formbutton .linkbutton {
  font-size: inherit;
  max-width: 320px;
  width: auto;
  height: 60px;
}
.eventdata #formbutton .linkbutton::after {
  rotate: 90deg;
}
@media (any-hover: hover) {
  .eventdata #formbutton .linkbutton:hover::after {
    translate: 0 5px;
  }
}

#eventbody {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 120px;
}
#eventbody p {
  margin-top: 30px;
}
#eventbody p:has(img) {
  margin-top: 50px;
}

.endtext {
  max-width: 800px;
  margin: 0 auto;
  background-color: #F1F0E7;
  padding: 50px 20px;
  text-align: center;
  border-radius: var(--radius);
}
.endtext::before {
  content: "";
  width: 200px;
  height: 182px;
  height: 12px;
  background: url("../img/end.png") no-repeat center center/contain;
  filter: invert(1);
  display: block;
  margin: 0 auto 15px;
  opacity: .6;
}

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

 Responsive-Breakpoint ( 1300px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 1300px) {
  .mainimage {
    width: 50%;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-2 ( 959px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 959px) {
  #fixbutton {
    display: none;
  }

  #breadcrumbs {
    padding-top: 140px;
    height: 70px;
  }

  #eventtitle {
    margin-bottom: 60px;
  }
  #eventtitle #title .en {
    font-size: 14px;
  }
  #eventtitle .status {
    font-size: 13px;
  }

  .toparea {
    display: block;
    margin-bottom: 80px;
  }

  .mainimage {
    width: 90%;
  }

  .eventdata {
    margin: -50px 0 0 10%;
    padding: 100px 5vw 40px;
  }
  .eventdata .data {
    font-size: 14px;
  }
  .eventdata #formbutton {
    position: fixed;
    z-index: 90;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0s;
    backface-visibility: hidden;
    opacity: 0;
    translate: 0 50px;
    box-shadow: 0 -4px rgba(255, 255, 255, 0.8);
  }
  .eventdata #formbutton .linkbutton {
    justify-content: center;
    gap: 5px;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    max-width: none;
    height: 45px;
    width: auto;
  }
  .is-scroll .eventdata #formbutton {
    opacity: 1;
    translate: 0;
  }

  #eventbody {
    margin-bottom: 100px;
  }
}
/* ------------------------------------------------------------------------------------------------------------------------

 Responsive-Breakpoint-3 ( 644px )
 
------------------------------------------------------------------------------------------------------------------------ */
@media only screen and (max-width: 644px) {
  #breadcrumbs {
    padding-top: 110px;
    height: 60px;
  }
  #breadcrumbs ul li {
    font-size: 10px;
  }
  #breadcrumbs ul li:has(a)::after {
    width: 8px;
  }
  #breadcrumbs ul li a {
    padding-right: 4px;
  }

  #eventtitle {
    margin-bottom: 40px;
  }
  #eventtitle #title .en {
    column-gap: 8px;
    font-size: 12px;
    margin-bottom: 10px;
  }
  #eventtitle #title .en::before {
    width: 14px;
    height: 14px;
  }
  #eventtitle #title .ja br {
    display: none;
  }
  #eventtitle .sub {
    margin-top: 5px;
  }
  #eventtitle .status {
    gap: 10px;
    margin-top: 20px;
    line-height: 22px;
    font-size: 11px;
  }
  #eventtitle .status .cat {
    padding-inline: 12px;
  }

  .toparea {
    margin-bottom: 60px;
  }

  .mainimage {
    width: auto;
    border-radius: var(--radius);
    margin-inline: 4vw;
  }

  .eventdata {
    border-radius: var(--radius);
    margin: -60px 0 0 0;
    padding: 90px 5vw 40px;
    text-align: left;
  }
  .eventdata .title {
    margin-bottom: 12px;
  }
  .eventdata .title::before {
    margin-right: 8px;
  }
  .eventdata .data {
    font-size: 13px;
  }
  .eventdata .data div {
    margin-top: 5px;
    line-height: 1.8;
    gap: 8px;
  }
  .eventdata .data div dt {
    width: 78px;
  }
  .eventdata #formbutton {
    translate: 0 40px;
  }
  .eventdata #formbutton .linkbutton {
    height: 40px;
  }

  #eventbody {
    margin-bottom: 50px;
  }
  #eventbody p {
    margin-top: 20px;
  }
  #eventbody p:has(img) {
    margin-top: 30px;
  }

  .endtext {
    padding: 40px 20px;
  }
  .endtext::before {
    margin-bottom: 10px;
  }
}

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