@charset "UTF-8";
/*----------------------------------------
c-color
----------------------------------------*/
.c-standcolor {
  color: #f6aea9;
}

.c-yellowcolor {
  color: #ff9;
}

/*----------------------------------------
c-font weight
----------------------------------------*/
.c-fwb400 {
  font-weight: 400;
}

/*----------------------------------------
c-moveline
----------------------------------------*/
.c-moveline {
  display: inline-block;
  position: relative;
}
.c-moveline::after, .c-moveline::before, .c-moveline--vertical::after, .c-moveline--vertical::before {
  content: '';
  position: absolute;
  z-index: 10;
  background-color: var(--maincolor);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.c-moveline::after {
  width: 0px;
  height: 1px;
  top: -1px;
  left: -1px;
}
.c-moveline--vertical::after {
  width: 1px;
  height: 0px;
  left: -1px;
  bottom: -1px;
}
.c-moveline::before {
  width: 0px;
  height: 1px;
  right: -1px;
  bottom: -1px;
}
.c-moveline--vertical::before {
  width: 1px;
  height: 0px;
  top: -1px;
  right: -1px;
}
.c-moveline:hover::after, .c-moveline:hover::before {
  width: calc(100% + 1px);
}
.c-moveline:hover .c-moveline--vertical::after, .c-moveline:hover .c-moveline--vertical::before {
  height: calc(100% + 1px);
}

/*----------------------------------------
c-animeline
----------------------------------------*/
.c-animeline--horizontal {
  display: inline-block;
  position: relative;
}
.c-animeline--horizontal:hover::before {
  content: '';
  position: absolute;
  z-index: 2;
  background-color: var(--maincolor);
  -webkit-transition: none;
  transition: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  opacity: 0;
  -webkit-animation: animeHorizontal 1.25s cubic-bezier(0.205, 0.01, 0.075, 0.995) forwards;
          animation: animeHorizontal 1.25s cubic-bezier(0.205, 0.01, 0.075, 0.995) forwards;
}

@-webkit-keyframes animeHorizontal {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) scale(1);
            transform: translate3d(-100%, 0, 0) scale(1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  50% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0%, 0) scale(1);
            transform: translate3d(0, 0%, 0) scale(1);
  }
  100% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) scale(1);
            transform: translate3d(100%, 0, 0) scale(1);
  }
}

@keyframes animeHorizontal {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) scale(1);
            transform: translate3d(-100%, 0, 0) scale(1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  50% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0%, 0) scale(1);
            transform: translate3d(0, 0%, 0) scale(1);
  }
  100% {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) scale(1);
            transform: translate3d(100%, 0, 0) scale(1);
  }
}
/*----------------------------------------
c-icon
----------------------------------------*/
.c-icon {
  padding: 12px;
  border-radius: 50%;
  /*----------------------------------------
  c-twitter icon
  ----------------------------------------*/
}
.c-icon::before {
  color: var(--white);
  font-size: 2rem;
}
.c-icon.twitter {
  background-color: var(--twitter);
}

/*----------------------------------------
c-title
----------------------------------------*/
.c-title00 {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 1px;
  line-height: 1.5em;
}

.c-title01 {
  font-size: 2.4rem;
  font-weight: 500;
  border-bottom: 1px dashed var(--maincolor);
  border-left: 5px solid var(--maincolor);
  padding-left: 10px;
  padding-bottom: 5px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.c-title03 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.c-title03::before {
  content: "";
  color: var(--maincolor);
  font-size: 2rem;
  font-weight: 500;
  border-left: 3px solid;
  padding-left: 7px;
}

.c-title04 {
  font-weight: 300;
  letter-spacing: 1px;
}
.c-title04::before {
  content: "− ";
  color: var(--maincolor);
  font-size: 2rem;
  font-weight: 500;
}

/*----------------------------------------
c-baloon{
----------------------------------------*/
.c-baloon01 {
  position: relative;
  background-color: var(--maincolor);
  color: #fff;
  border-radius: 3px;
  padding: 10px;
  font-size: 2rem;
}
.c-baloon01::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 45px;
  z-index: 10;
  margin-left: -20px;
  border-top: 13px solid;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 0;
  border-top-color: var(--maincolor);
}

/*----------------------------------------
c-box
----------------------------------------*/
.c-box01 {
  font-size: 1.6rem;
  font-weight: 300;
  background: var(--black);
  padding: 15px;
  letter-spacing: 1px;
}

/*----------------------------------------
c-clipimg
----------------------------------------*/
.c-clipimg {
  width: 100%;
  display: inline-block;
  -webkit-clip-path: inset(0 0 0 0 round 3px);
          clip-path: inset(0 0 0 0 round 3px);
}

/*----------------------------------------
c-relation
----------------------------------------*/
.c-relation img {
  width: 100%;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-bottom: 10px;
}
.c-relation p {
  color: #fff;
}

/*----------------------------------------
▼ c-scrolltop
----------------------------------------*/
.pagetop {
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  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;
  color: var(--black) !important;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  -webkit-transition: .3s;
  transition: .3s;
}

.show {
  opacity: 1;
}

/*----------------------------------------
c-indexlist
----------------------------------------*/
.c-indexlist {
  background-color: #3c3c3c;
  outline: 2px solid #fff;
  padding: 20px 22px;
  font-weight: 300;
}
.c-indexlist--title {
  margin-bottom: 8px;
}
.c-indexlist--item {
  margin-left: 10px;
}
.c-indexlist--item:not(:last-child) {
  margin-bottom: 5px;
}
.c-indexlist--item a {
  color: var(--maincolor);
  font-weight: 400;
}
.c-indexlist--item a::before {
  content: "▶︎";
  font-size: 1rem;
  display: inline-block;
  margin-right: 7px;
}
.c-indexlist--item a:hover {
  text-decoration: underline;
}

/*----------------------------------------
c-pagenation
----------------------------------------*/
.contents {
  color: var(--white);
}
.contents a {
  width: 100%;
}

.contents > li {
  margin-bottom: 18px;
}

.next,
.prev {
  background: #606060;
}

.next.disable,
.prev.disable {
  pointer-events: none;
  color: #666 !important;
  background: #333;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination > li:not(:nth-child(3)) {
  padding: 2px 10px;
  margin: 0 5px;
  color: #fff;
}

.next:hover,
.prev:hover,
.page_counter li:hover {
  cursor: pointer;
}

.total_counter {
  background: #606060;
  padding: 6px 10px !important;
}

.page_counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0 10px;
}

.page_counter > li {
  border: 1px solid #606060;
  padding: 5px 10px;
}

.page_counter li.current {
  background: var(--maincolor);
  color: #fff;
}

.page_counter li + li {
  margin-left: 5px;
}

/*----------------------------------------
c-hanabi
----------------------------------------*/
.hanabi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

#hanabi {
  pointer-events: none;
}
