@charset "UTF-8";
/**
* Available vars:
* @var --viewport-from: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --viewport-to: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --font-size-from: <number> - Number in pixels without the unit. Required if `--font-size` and `--min-font-size` is not exist.
* @var --font-size-to: <number> - Number in pixels without the unit. Required if `--font-size` and `--max-font-size` is not exist.
* @var --max-font-size: <number> - Number in pixels without the unit. Optional.
* @var --min-font-size: <number> - Number in pixels without the unit. Optional.
* @var --viewport-unit-converter: 1vw | 1vh | 1vmin | 1vmax - Optional. Default: 1vw.
* @var --font-size: <length> | <percentage> | <absolute-size> | <relative-size> | Global values - Optional.
*/
*,
*::before,
*::after {
  --viewport-unit-converter: 1vw;
  --fz-from: var(--font-size-from, var(--min-font-size));
  --fz-to: var(--font-size-to, var(--max-font-size));
  --fz-slope: (var(--fz-to) - var(--fz-from)) / (var(--viewport-to) - var(--viewport-from)) * 100;
  --fz-intercept: (var(--viewport-to) * var(--fz-from) - var(--viewport-from) * var(--fz-to)) / (var(--viewport-to) - var(--viewport-from));
  --font-size: calc(var(--fz-slope) * var(--viewport-unit-converter) + var(--fz-intercept) * 1px);
  --min-fz-px: calc(var(--min-font-size) * 1px);
  --max-fz-px: calc(var(--max-font-size) * 1px);
  --clamp: clamp(var(--min-fz-px), var(--font-size), var(--max-fz-px));
  --max: var(--has-max, var(--min));
  --min: var(--has-min, var(--font-size));
  --has-max: min(var(--max-fz-px), var(--font-size));
  --has-min: max(var(--min-fz-px), var(--font-size));
  font-size: var(--clamp, var(--max));
}

/* -----------------------------------------------------------
  basic
----------------------------------------------------------- */
/* -----------------------------------------------------------
  sec-opn
----------------------------------------------------------- */
.sec-opn_bg {
  padding: 60px 0;
  background: url(../img/common/opn_bg.jpg) no-repeat center;
  background-size: cover;
}

.opn-ttl img {
  max-height: 55px;
}

.waiting-ttl {
  font-size: 2.1rem;
  font-weight: 600;
}

@media (min-width: 769px) {
  .sec-opn_bg {
    padding: 180px 0;
  }
}
@media only screen and (max-width: 768px) {
  .opn-ttl img {
    max-height: 35px;
  }
}
/* -----------------------------------------------------------
  sec01
----------------------------------------------------------- */
.sec01_bg {
  padding: 60px 20px;
  background: url(../img/top/sec04_bg.svg) repeat top center;
  background-size: 1920px;
}

.coming-img {
  text-align: center;
}

.coming-img img {
  display: inline-block;
}

.sec-ttl {
  text-align: center;
}

.txt-width {
  position: relative;
}

.pop-area {
  width: 100%;
  padding: 2rem;
  background: #b33f7f;
  border-radius: 10px;
  position: relative;
}

.pop-txt {
  font-size: 2.4rem;
  font-weight: 600;
  color: #ffd800;
  line-height: 1.6;
  height: 100%;
}

.sec-item_bg08 {
  position: relative;
  left: 0;
  bottom: 0;
  width: 20%;
}

.sec-item_bg08-img {
  display: block;
  height: 0;
  padding-top: 134.72%;
  background: url(../img/top/h_08.png) 0 0 no-repeat;
  background-size: contain;
}

.sub-ttl {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  padding: 0.5rem 1rem;
  background: #8a6f00;
  margin-right: 1.5rem;
}

.sub-ttl-cap {
  font-weight: 600;
  line-height: 1.8;
}

.box-ttl {
  text-align: center;
  font-weight: 600;
  color: #FFF;
  padding: 0.5rem 1rem;
  background: #727171;
}

.box-cap-con {
  padding: 30px;
  background: #FFF;
}

.box-cap {
  font-size: 1.4rem;
  font-weight: bold;
  color: #444;
}

.box-cap02 {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.6;
}

.entry {
  width: 100%;
  display: block;
  padding: 1.5rem;
  background: #008839;
  border: 3px solid #252525;
  color: #FFF;
  font-weight: 600;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.entry.--none {
  opacity: 0.3;
  pointer-events: none;
}

.entry:hover {
  color: #FFF;
  opacity: 0.5;
}

@media (min-width: 769px) {
  .sec01_bg {
    padding: 80px 0;
  }
  .sec01-contents {
    width: 65%;
    margin: 0 auto;
  }
  .finish-ttl img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .txt-width {
    position: relative;
  }
  .pop-area:before {
    content: "";
    position: absolute;
    border-top: 10px solid transparent;
    border-right: 30px solid #b33f7f;
    border-bottom: 10px solid transparent;
    top: 40%;
    left: -20px;
  }
  .sub-ttl {
    width: 13%;
    max-height: 35px;
    margin-right: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .coming-img img {
    width: 60%;
    display: block;
    margin: 0 auto;
  }
  .sec-ttl img {
    max-width: 240px;
  }
  .sub-ttl {
    margin-right: 0;
  }
  .img-item {
    max-height: 50px;
  }
  .sec-item_bg08 {
    left: 40%;
    bottom: -15px;
    width: 40%;
    z-index: 2;
  }
  .sec-item_bg08-img {
    padding-top: 104.72%;
  }
  .pop-txt {
    font-size: 1.8rem;
  }
  .sub-ttl {
    margin-bottom: 1.5rem;
  }
  .box-cap-con {
    padding: 20px;
  }
  .box-cap02 {
    font-size: 1.6rem;
  }
}
/* -----------------------------------------------------------
  sec02
----------------------------------------------------------- */
.sec02 {
  padding-top: 150px;
}

.sec02_bg {
  padding: 0 20px 60px 20px;
  background: url(../img/top/sec04_bg.svg) no-repeat center;
  background-size: cover;
}

.pop-area02 {
  width: 100%;
  padding: 3rem 4rem;
  background: #b33f7f;
  border-radius: 20px;
}

.pop-txt-cap {
  color: #FFF;
}

.p-ttl {
  font-size: 1.5rem;
  font-weight: 600;
  color: #b33f7f;
}

@media (min-width: 769px) {
  .sec02_bg {
    padding: 0 0 80px 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec02 {
    padding-top: 60px;
  }
  .pop-area02 {
    padding: 2rem;
  }
}
/* -----------------------------------------------------------
  add
----------------------------------------------------------- */
.sec-cap {
  font-size: 16px;
  font-weight: bold;
}
.sec-cap.indent {
  text-indent: -1rem;
}

.sec-ttl {
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
.sec-ttl.--h80 {
  height: 80px;
}
.sec-ttl img {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.sub-ttl-atn {
  font-weight: bold;
  padding: 15px;
  background: #FAEE14;
  color: #ca1315;
}

@media only screen and (max-width: 768px) {
  .sec-ttl {
    height: 40px;
  }
  .sec-ticket-use {
    padding-top: 60px;
  }
}
/* -----------------------------------------------------------
  「チケット利用可能店」募集について
----------------------------------------------------------- */
.sec-ticket-use {
  padding-top: 150px;
}

.ticket-sub-ttl {
  text-align: center;
  margin-right: 1.5rem;
}
.ticket-sub-ttl span {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #FFF;
  padding: 1rem 2rem;
  background: #8a6f00;
}

.ticket-sub-ttl-cap {
  font-weight: 600;
  line-height: 1.8;
  font-size: 13px;
}
@media (min-width: 768px) {
  .ticket-sub-ttl-cap {
    font-size: initial;
  }
}

.ticket-flow__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding: 1.5rem;
  background: #FFF;
  border: 2px solid #8a6f00;
}
.ticket-flow__item:not(:last-of-type) {
  margin-bottom: 4rem;
}
.ticket-flow__item:not(:last-of-type)::before {
  content: "";
}
.ticket-flow__item::before {
  content: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(30px);
          transform: translateX(-50%) translateY(30px);
  width: 20px;
  height: 15px;
  background: url(../img/volunteer/ticket-flow-triangle.svg) no-repeat center;
  background-size: contain;
}
.ticket-flow__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.ticket-flow__info.--w100 {
  width: 100%;
  margin-bottom: 30px;
}
.ticket-flow__ttl {
  min-width: 70px;
  font-size: 16px;
  font-weight: bold;
  color: #8a6f00;
  margin-right: 15px;
}
.ticket-flow__cap {
  font-size: 16px;
  font-weight: bold;
}
.ticket-flow__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 15%;
}
.ticket-flow__img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.ticket-flow__img img:not(:last-child) {
  margin-right: 20px;
}
.ticket-flow__pdf {
  width: 100%;
  display: block;
  padding: 10px 15px;
  background: #008839;
  border: 3px solid #252525;
  color: #FFF;
  font-weight: 600;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ticket-flow__pdf:not(:last-child) {
  margin-bottom: 20px;
}
.ticket-flow__pdf:hover {
  opacity: 0.5;
}

@media (min-width: 769px) {
  .character-txt {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .character-img {
    width: 10%;
  }
  .character-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .ticket-txt {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .ticket-cap {
    width: 60%;
  }
  .ticket-img {
    width: 40%;
  }
  .ticket-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .ticket-sub-info {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .sec-ticket-use {
    padding-top: 60px;
  }
  .character-img {
    position: relative;
    bottom: -15px;
    width: 20%;
    margin: 0 auto;
    z-index: 1;
  }
  .ticket-cap {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .ticket-img {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 1.5rem;
  }
  .ticket-sub-ttl {
    text-align: left;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .ticket-sub-ttl span {
    padding: 1rem;
  }
  .ticket-flow__item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 2rem 1.5rem;
    border: 1px solid #8a6f00;
  }
  .ticket-flow__item:not(:last-of-type) {
    margin-bottom: 3rem;
  }
  .ticket-flow__item::before {
    -webkit-transform: translateX(-50%) translateY(22px);
            transform: translateX(-50%) translateY(22px);
    width: 15px;
    height: 12px;
  }
  .ticket-flow__info {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
    margin-bottom: 2rem;
  }
  .ticket-flow__ttl {
    width: 100%;
    margin-right: 0;
  }
  .ticket-flow__cap {
    font-size: 16px;
    font-weight: bold;
  }
  .ticket-flow__img {
    width: 35%;
    margin: 0 auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ticket-flow__img.--w50 {
    width: 50%;
  }
  .ticket-flow__img img {
    width: 100%;
    max-width: 100%;
    height: auto;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}/*# sourceMappingURL=volunteer.css.map */