@charset "UTF-8";
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/**
 * font size
 * ---------------------------
 */
:root {
  --fontSize: 20px;
  --font-2xs: calc(var(--fontSize) * 0.6); /* 12px */
  --font-xs: calc(var(--fontSize) * 0.7); /* 14px */
  --font-s: calc(var(--fontSize) * 0.8); /* 16px */
  --font-m: calc(var(--fontSize) * 0.9); /* 18px */
  --font-l: calc(var(--fontSize) * 1);
  --font-xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-2xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-3xl: calc(var(--fontSize) * 1.25); /* 25px */
  --font-4xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-4_2xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-5xl: calc(var(--fontSize) * 1.5); /* 30px */
}

@media (min-width: 768px) {
  :root {
    --font-2xs: calc(var(--fontSize) * 0.7); /* 14px */
    --font-xs: calc(var(--fontSize) * 0.8); /* 16px */
    --font-s: calc(var(--fontSize) * 0.9); /* 18px */
    --font-m: calc(var(--fontSize) * 1);
    --font-l: calc(var(--fontSize) * 1.1); /* 22px */
    --font-xl: calc(var(--fontSize) * 1.25); /* 25px */
    --font-2xl: calc(var(--fontSize) * 1.5); /* 30px */
    --font-3xl: calc(var(--fontSize) * 1.75); /* 35px */
    --font-4xl: calc(var(--fontSize) * 2); /* 40px */
    --font-4_2xl: calc(var(--fontSize) * 2.1); /* 42px */
    --font-5xl: calc(var(--fontSize) * 2.25); /* 45px */
  }
}
/*
overview
---------------------------*/
#overview {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #FEF8DE), color-stop(70%, #ffffff));
  background: linear-gradient(180deg, #FEF8DE 30%, #ffffff 70%);
}
#overview > .wrap {
  background: #ffffff;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 769px) {
  #overview > .wrap {
    border-radius: 50px 50px 0 0;
  }
}

/*
event
---------------------------*/
#event .wrap {
  margin-bottom: 100px;
}
#event .link .btn {
  width: 100%;
  max-width: 300px;
}
#event .link .btn a {
  position: relative;
  display: block;
  width: 100%;
  padding: 17px 40px 21px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px solid #026934;
  border-radius: 10px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
#event .link .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url("/img/common/icon-arrow-orange.svg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#event .link .btn a:hover {
  background: #C0EDC6;
}
#event .overview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
  padding: 30px 15px;
  background: #FFF9B1;
  border: 1px solid #026934;
  border-radius: 30px;
}
#event .overview .text__wrap .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#event .overview .text__wrap .category p {
  margin-top: 5px;
  padding: 1px 15px;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
  border: 1px solid #026934;
  border-radius: 20px;
}
#event .overview .text__wrap .category p:nth-of-type(1) {
  margin-right: 10px;
  background: #FEF8DE;
}
#event .overview .text__wrap .category p:nth-of-type(2) {
  background: #C0EDC6;
}
#event .overview .text__wrap .name {
  margin-top: 10px;
}
#event .overview .text__wrap .name p {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
#event .overview .img__wrap {
  width: 100%;
  max-width: 450px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 20px auto 0;
  border: 1px solid #026934;
  border-radius: 15px;
  aspect-ratio: 3/2;
}
#event .overview .img__wrap.full {
  position: relative;
}
#event .overview .img__wrap.full .cover__wrap {
  position: absolute;
  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;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(62, 192, 111, 0.9);
  border-radius: 15px;
}
#event .overview .img__wrap.full .cover__wrap p {
  font-size: min(6vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #ffffff;
}
#event .overview .img__wrap img {
  height: 100%;
  border-radius: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 3/2;
}
#event .detail {
  margin-top: 50px;
  border-top: 1px solid #026934;
  border-bottom: 1px solid #026934;
}
#event .detail > dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#event .detail > dl + dl {
  border-top: 1px solid #026934;
}
#event .detail > dl > dt {
  width: 100%;
  padding: 20px;
  background: #D2FAE1;
  border-bottom: 1px solid #026934;
}
#event .detail > dl > dt p {
  font-size: 18px;
  font-weight: 700;
}
#event .detail > dl > dd {
  width: 100%;
  padding: 25px 20px;
}
#event .detail > dl > dd p {
  font-size: 18px;
  font-weight: 500;
}
#event .detail > dl > dd p a {
  margin-left: 5px;
  padding: 0 12px 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  background: #026934;
  border-radius: 18px;
}
#event .detail > dl > dd > dl + dl {
  margin-top: 20px;
}
#event .detail > dl > dd > dl dt {
  position: relative;
}
#event .detail > dl > dd > dl dt p {
  padding-left: 23px;
  font-size: 18px;
  font-weight: 700;
}
#event .detail > dl > dd > dl dt p::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #89D8A7;
  border-radius: 50%;
}
#event .detail > dl > dd > dl dd {
  margin-top: 5px;
}
#event .detail > dl > dd > dl dd p {
  font-size: 18px;
  font-weight: 500;
}
#event .detail > dl > dd > dl dd p.attention {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 769px) {
  #event .wrap {
    margin-bottom: 150px;
  }
  #event .overview {
    padding: 40px;
  }
  #event .overview .text__wrap .name {
    margin-top: 20px;
  }
  #event .overview .text__wrap .name p {
    font-size: min(2.8vw, 24px);
    line-height: 1.6;
  }
  #event .overview .img__wrap {
    border-radius: 30px;
  }
  #event .overview .img__wrap.full .cover__wrap {
    border-radius: 30px;
  }
  #event .overview .img__wrap.full .cover__wrap p {
    font-size: min(3vw, 24px);
  }
  #event .overview .img__wrap img {
    border-radius: 30px;
  }
  #event .detail > dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #event .detail > dl > dt {
    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: 240px;
    padding: 30px 20px;
    border-bottom: none;
    border-right: 1px solid #026934;
  }
  #event .detail > dl > dt p {
    font-size: 20px;
  }
  #event .detail > dl > dd {
    width: calc(100% - 240px);
    padding: 30px 40px;
  }
  #event .detail > dl > dd p {
    font-size: 20px;
  }
  #event .detail > dl > dd > dl + dl {
    margin-top: 20px;
  }
  #event .detail > dl > dd > dl dt p {
    padding-left: 28px;
    font-size: 20px;
  }
  #event .detail > dl > dd > dl dt p::before {
    width: 20px;
    height: 20px;
  }
  #event .detail > dl > dd > dl dd {
    margin-top: 10px;
  }
  #event .detail > dl > dd > dl dd p {
    font-size: 20px;
  }
  #event .detail > dl > dd > dl dd p.attention {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  #event .link .btn {
    max-width: 370px;
  }
  #event .link .btn a {
    padding: 22px 50px 26px;
    font-size: 20px;
  }
  #event .link .btn a::before {
    left: 20px;
    width: 24px;
    height: 24px;
  }
  #event .overview {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #event .overview .text__wrap {
    width: 55%;
    max-width: 610px;
  }
  #event .overview .img__wrap {
    width: 43%;
    max-width: 460px;
    margin: 0;
  }
  #event .overview .img__wrap.full .cover__wrap {
    border-radius: 30px;
  }
  #event .overview .img__wrap.full .cover__wrap p {
    font-size: min(3vw, 24px);
  }
}/*# sourceMappingURL=eventdetails.css.map */