@charset "UTF-8";

body{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  color: #fff;
  background: #F2EDE3;
}
*,*::before,*::after{
  box-sizing: border-box;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}

a:hover{
  opacity:0.7;
}

img{
  width: 100%;
}

button{
  outline: none;
  border:none;
}

.u-sp-show{
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-hide{
    display: none;
  }
  .u-sp-show{
    display: block;
  }
}

.l-header {
  display: none !important;
  height: 0 !important;
}
.header-nav{
  display: none;
}



/* header */
.l-nav{
  width: 100%;
  height: 5.429vw;
  background: #1b1b1b;
  border-bottom: #1b1b1b 2px;
}
.l-nav .header-container{
  width: 100%;
  height: 100%;
  padding-left: 4.2%;
  padding-right: 2.8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-nav .header-logo {
  width: 2.857vw;
}
.l-nav .header-sideWrap{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-nav .header-entry{
  margin-left: 1.143vw;
}
.l-nav .header-entry-button{
  display: block;
  padding: 0.714vw 2.857vw;
  background: #CFBB87;
  border-radius: 40px;
  font-size: 1.143vw;
  font-weight: 600;
}
.l-nav .header-translate{
  padding: 0.714vw 3.429vw;
  color: #fff;
  font-size: 1.143vw;
  font-weight: 600;
  background: #1b1b1b;
  border:#fff solid 1px;
  border-radius: 40px;
  position: relative;
  cursor: pointer;
}
.l-nav .header-translate span{
  font-size: 1.143vw;
  font-weight: 600;
}
.l-nav .header-translate::before{
  position: absolute;
  top: 50%;
  left: 0.857vw;
  transform: translateY(-50%);
  content:'';
  width: 0;
  height: 0;
  border-width: 0.643vw 0.357vw 0 0.357vw;
  border-color: #fff transparent transparent transparent;
  border-style: solid;
}

.l-nav .sns-list{
  margin-right: 2.857vw;
  display: flex;
}
.l-nav .sns-list li a{
  display: block;
  width: 2.286vw;
}
.l-nav .sns-list li + li{
  margin-left: 1.714vw;
}
@media screen and (max-width: 768px) {
  .l-nav{
    height:15vw;
  }
  .l-nav .header-container{
    padding-left: 5%;
    padding-right: 5%;
    height:15vw;
  }
  .l-nav .header-logo {
    width: 8vw;
  }
  .l-nav .header-entry{
    margin-left: 3vw;
  }
  .l-nav .header-entry-button{
    width:22vw;
    text-align: center;
    padding: 2vw 0;
    border-radius: 40px;
    font-size:3.083vw;
  }
  .l-nav .header-translate{
    width:22vw;
    padding: 2vw 0;
    font-size:3.083vw;
    font-weight: 600;
    text-align: center;
    border-radius: 40px;
  }
  .l-nav .header-translate span{
    font-size:3.083vw;
  }
  .l-nav .header-translate::before{
    left:2vw;
    border-width: 2.5vw 1.25vw 0 1.25vw;
  }
  .l-nav .sns-list{
    display: none;
  }
}

/* translate */
.header-sideWrap .header-translate{
    cursor: pointer;
}
.header-sideWrap .header-translate:hover{
}
.header-sideWrap .header-translate::before{

}
.header-sideWrap .header-translate .translate-lang{

}
.header-sideWrap .header-translate .translate-lang::after{

}
.header-sideWrap .header-translate .translate-list{
    position: absolute;
    top:calc(100% + 16px);
    left:0;
    background: #fff;
    border-radius: 4px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 20px, 0);
    transition: all .6s ease;
    z-index: 10;
    width: 100%;
}
.header-sideWrap .header-translate .translate-list::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, -100%, 0);
}
.header-sideWrap .translate-lang.is-active + .translate-list{
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}
.header-sideWrap .header-translate .translate-list .translate-item{
    padding: 6px 12px;
    font-size: 14px;
    color: #1b1b1b;
    display: block;
}
.header-sideWrap .header-translate .translate-list .translate-item:hover {
  background: #C5A966;
  color: #fff;
}
.header-sideWrap .header-translate .translate-list .translate-item span {
    display: block;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
    .header-sideWrap .header-translate .translate-list{
        width: 45vw;
        right: 0;
        left: unset;
    }
    .header-sideWrap .header-translate .translate-list::before {
        left: unset;
        right: 0;
    }
    .header-sideWrap .header-translate .translate-list {
        padding: 16px 24px;
    }
    .header-sideWrap .header-translate .translate-item {
        padding: 12px 0;
    }
}


/* common */
h2.section-head{
  font-size: 9.143vw;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  h2.section-head{
    font-size: 40px;
    text-align: center;
  }
}

.l-container{
  background: #1b1b1b;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}


/* hero */
#hero.l-hero{
  padding-top: 9.429vw;
  width: 100%;
  position: relative;
  background: #1b1b1b;
}
#hero span.hero-bg{
  display: block;
  position: absolute;
  top: 5.429vw;
  right: 0;
  content:'';
  width:36.214vw;
  height:19.286vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_flower.png) no-repeat;
  background-size: 100% auto;

}
#hero .hero-container{
  display: flex;
  justify-content: space-between;
  padding-left:11.786vw;
  padding-right:2.857vw;
}
#hero .hero-body{
  width:51.214vw;
}
#hero .hero-side{
  width: 21.357vw;
}
#hero .menu-list{
  margin-top: 15vw;
  text-align: right;
  margin-bottom: 4.786vw;
}
#hero .menu-list li a{
  color: #fff;
  font-size: 1.429vw;
  font-weight: 600;
  line-height: 2;
}
#hero .bnr{
  width: 100%;
}
@media screen and (max-width: 768px) {
  #hero.l-hero{
    padding-top: 21vw;
  }
  #hero::after{
    position: absolute;
    top: 16.429vw;
    right: 0;
    content:'';
    width:36.214vw;
    height:19.286vw;
    background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_flower.png) no-repeat;
    background-size: 100% auto;

  }
  #hero .hero-container{
    flex-direction: column;
    padding-left:5%;
    padding-right:5%;
  }
  #hero .hero-body{
    width:100%;
    margin-bottom: 40px;
  }
  #hero .hero-side{
    width:100%;
  }
  #hero .menu-list{
    margin-top:7.813vw;
    text-align: center;
    margin-top:7.813vw;
  }
  #hero .menu-list li a{
    font-size: 18px;
  }
  #hero .bnr{
    max-width: 300px;
    margin: 0 auto;
  }
  #hero .sns-list{
    margin-top: 20px;
    display: flex;
    justify-content: center;
  }
  #hero .sns-list li a{
    display: block;
    width: 40px;
  }
  #hero .sns-list li + li{
    margin-left: 15px;
  }
}

/* #thankyou */
#thankyou.l-thankyou {
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_flower2.png) no-repeat left top / 21.29% auto;
  padding-right: 7.643vw;
}
#thankyou.l-thankyou .thankyou-container {
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_thankyou.svg) no-repeat left 5% top 60% / contain;
  padding-top: 150px;
}
#thankyou.l-thankyou .thankyou-lead {
  text-align: right;
}
#thankyou.l-thankyou .thankyou-lead p {
  font-size: 26px;
  line-height: 2.857vw;
}
#thankyou.l-thankyou .thankyou-lead span {
  font-size: 64px;
  font-weight: 600;
  line-height: 5.2vw;
}
#thankyou.l-thankyou .thankyou-lead span.date {
  position: relative;
}
#thankyou.l-thankyou .thankyou-lead span.date::before {
  content: '';
  position: absolute;
  bottom: -0.05em;
  left: 0;
  width: 100%;
  height: 14px;
  background: #C5A966;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #thankyou.l-thankyou {
    background-size: 65% auto;
    padding-right: 5%;
  }
  #thankyou.l-thankyou .thankyou-container {
    background-position: left 2.5% top 30%;
    background-size: 80% auto;
    padding-top: 120px;
  }
  #thankyou.l-thankyou .thankyou-lead p {
    font-size: 16px;
    line-height: 1.6;
  }
  #thankyou.l-thankyou .thankyou-lead span {
    font-size: 28px;
    line-height: 1.8;
  }
}

/* #concept */
#concept.l-concept{
  margin-top: 18.643vw;
}
#concept .concept-container{
  padding-left: 9.643vw;
  padding-right: 7.643vw;
}
#concept h2{
  margin-bottom: 6.857vw;
  display: inline-block;
}
#concept h2.section-head::after{
  position: absolute;
  top: 5vw;
  right: -2.357vw;
  content:'';
  width: 14.286vw;
  height: 7.143vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/concept_title_bg.png) no-repeat;
  background-size: contain;
  z-index: -1;
}
#concept .concept-lead p{
  width: 67.786vw;
  margin: 0 0 0 auto;
  /*font-size: 2.286vw;*/
  font-size: 26px;
  font-weight: 400;
  line-height: 2.857vw;
}
@media screen and (max-width: 768px) {
  #concept.l-concept{
    margin-top: 80px;
  }
  #concept .concept-container{
    padding-left: 5%;
    padding-right:5%;
  }
  #concept h2{
    margin-bottom: 40px;
    display: inline-block;
  }
  #concept h2.section-head::after{
    position: absolute;
    top: 20px;
    right: -30px;
    content:'';
    width: 80px;
    height:40px;
    background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/concept_title_bg.png) no-repeat;
    background-size: contain;
  }
  #concept .concept-lead p{
    width: 100%;
    margin: 0 0 0 auto;
    font-size: 16px;
    line-height: 1.6;
  }
}

/* #information */
#information.l-information{
  margin-top: 16.714vw;
  position: relative;
}
#information.l-information::before{
  position: absolute;
  top: -8vw;
  right: 0;
  content:'';
  width: 29vw;
  height: 53.571vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_circle_01.png) no-repeat;
  background-size: contain;
}
#information .information-container{
  padding-right:5vw;
  padding-left: 14.714vw;
}
#information h2.section-head{
  text-align: right;
  margin-bottom: 8.786vw;
}
#information .information-list{
  display: flex;
  justify-content: flex-start;
}

#information .information-list + .information-list{
  margin-top: 11.571vw;
}
#information .information-list.theme{
  align-items: flex-end;
}
#information .information-list dt{
  width: 12.857vw;
  font-size: 2.857vw;
  line-height:1;
  font-weight: 600;
}
#information .information-list.theme dt{
  margin-bottom: 0.357vw;
}
#information .information-list dd{
  width: 54vw;
}
#information .information-list.theme dd span{
  display: inline-block;
  font-size: 5.143vw;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(to bottom,#1b1b1b 80%, #CFBB87 81%, #CFBB87);
}
#information .information-list.awards dd .winners{
  /*font-size: 2.286vw;*/
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 1.714vw;
}
#information .information-list.awards dd .detail{
  font-weight: 400;
  font-size: 1.714vw;
  line-height: 2.857vw;
  margin-bottom: 3.571vw;
}
#information .information-list.awards dd .information-awards{
  width: 100%;
  height: 23.857vw;
  background: #fff;
  border-radius: 1.143vw;
  position: relative;
}
#information .information-list.awards dd .information-awards .mark{
  display: block;
  position: absolute;
  top: 2.643vw;
  left: 0;
  width: 10vw;
  height: 2.571vw;
  color: #fff;
  font-size: 1.714vw;
  font-weight: 400;
  line-height: 2.571vw;
  padding-left: 1.857vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/information_bg_01.png)no-repeat;
  background-size: contain;
}
#information .information-list.awards dd .information-awards .image{
  display: block;
  position: absolute;
  top: 4.5vw;
  left: 12.5vw;
  width: 38.429vw;
  height: 17.429vw;
}
#information .information-list dd .caption{
  margin-top: 0.3em;
  font-size: 14px;
  text-align: right;
}

#information .information-schedule{
  padding-top: 13.143vw;
  padding-bottom: 19.286vw;
  width: 100%;
  position: relative;
  background:url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_bg_07.png) no-repeat right 0 top 16.786vw/8.857vw 22.643vw,
  url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_bg_06.png) no-repeat right 11.714vw top 31.572vw/14.286vw 22.643vw,
  url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_bg_05.png) no-repeat right 11.714vw top 6.643vw/14.286vw 22.643vw,
   url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_bg_04.png) no-repeat left 11.714vw top 40.286vw/14.286vw 22.643vw,
  url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_bg_03.png) no-repeat left 11.714vw top 15.286vw/14.286vw 22.643vw,
  url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_bg_02.png) no-repeat left 0% top 51.786vw/8.857vw 22.643vw,
  url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_bg_01.png) no-repeat left 0% top 26.857vw/8.857vw 22.643vw;
}
#information .information-schedule::before{
  position: absolute;
  top: 0;
  content:'';
  width: 23.857vw;
  height: 36.571vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_circle_02.png) no-repeat;
  background-size: contain;
}
#information .schedule-wrap{
  width: 37.071vw;
  margin: 0 auto;
}
#information .schedule-content{
  width: 100%;
  background: #fff;
  border-radius: 12px;
 /*padding:4.571vw 4.5vw;*/
  overflow: hidden;
}
#information .schedule-head{
  padding:4.571vw 4.5vw 0 4.5vw;
}
#information .information-schedule h3{
  color: #212121;
  text-align: center;
  font-size: 5.714vw;
  font-weight: 600;
  line-height: 2.857vw;
  padding-bottom: 4.571vw;
  border-bottom:#cacaca solid 2px;
}
#information .schedule-item{
  padding-top: 4.143vw;
  height: 29.071vw;
}
#information .schedule-item._02,
#information .schedule-item._03{
  padding-top: 2.07vw;
}
#information .schedule-item .title{
  color: #212121;
  font-size: 2.857vw;
  font-weight: 600;
  text-align: center;
  padding-bottom: 4.571vw;
}
#information .schedule-item._02 .title,
#information .schedule-item._03 .title{
  padding-bottom: 2.8vw;
}
#information .schedule-item .date{
  text-align: center;
  color:#CFBB87;
  font-size: 2.857vw;
  font-weight: 700;
}
#information .schedule-item .date .start{
  display: block;
  font-size: 2.857vw;
  margin-bottom: 4.571vw;
  position: relative;
}
#information .schedule-item._01 .date .start::after{
  position: absolute;
  bottom: -4.286vw;
  left: 50%;
  transform: translateX(-50%);
  content:'';
  width: 1.929vw;
  height: 2.857vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/schedule_img_01.png) no-repeat;
  background-size: contain;
}
#information .schedule-item .date .end{
  display: block;
  font-size: 2.857vw;
}
#information .slick-prev{
  position: absolute;
  top: 50%;
  left: 1.5vw;
  transform: translateY(-50%);
  width: 1.714vw;
  height: 1.714vw;
  border-left:#212121 solid 1px;
  border-bottom:#212121 solid 1px;
  transform: rotate(45deg);
  z-index: 10;
}
#information .slick-next{
  position: absolute;
  top: 50%;
  right: 1.5vw;
  transform: translateY(-50%);
  content:'';
  width: 1.714vw;
  height: 1.714vw;
  border-top:#212121 solid 1px;
  border-right:#212121 solid 1px;
  transform: rotate(45deg);
  z-index: 10;
}
#information .slick-prev::before,
#information .slick-next::before{
  content:none;
}
#information .information-entry-button{
  margin-top: 33px;
}
#information .information-entry-button a{
  color: #fff;
  text-align: center;
  font-size: 2.286vw;
  font-weight: 700;
  display: block;
  width: 100%;
  height: 5vw;
  line-height: 5vw;
  border-radius: 70px;
  background: #C5A966;
  position: relative;
}
#information .information-entry-button a span{
  display: block;
  position: absolute;
  top: 50%;
  right: 0.429vw;
  transform: translateY(-50%);
  width: 4.143vw;
  height: 4.143vw;
  background: #fff;
  border-radius: 100%;
}
#information .information-entry-button a span::after{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content:'';
  width: 1.357vw;
  height: 1.071vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/icon_arrow.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #information.l-information{
    margin-top:80px;
  }
  #information.l-information::before{
    position: absolute;
    top: -8vw;
    right: 0;
    content:'';
    width: 29vw;
    height: 53.571vw;
    background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_circle_01.png) no-repeat;
    background-size: contain;
  }
  #information .information-container{
    padding-right:5%;
    padding-left: 5%;
  }
  #information h2.section-head{
    text-align: center;
    margin-bottom: 40px;
  }
  #information .information-list{
    flex-direction: column;
  }

  #information .information-list + .information-list{
    margin-top:60px;
  }
  #information .information-list dt{
    width:100%;
    font-size: 20px;
    margin-bottom:20px;
    text-align: center;
  }
  #information .information-list.theme dt{
    margin-bottom:2.604vw;
  }
  #information .information-list dd{
    width: 100%
  }
  #information .information-list.theme dd{
    text-align: center;
  }
  #information .information-list.theme dd span{
    text-align: center;
    font-size: 30px;
  }
  #information .information-list.awards dd .winners{
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }
  #information .information-list.awards dd .detail{
    font-size: 16px;
    line-height: 2;
    text-align: center;
  }
  #information .information-list.awards dd .information-awards{
    width: 300px;
    height:160px;
    border-radius:16px;
    margin: 0 auto;
  }
  #information .information-list.awards dd .information-awards .mark{
    top:15px;
    width: 80px;
    height: 20px;
    font-size: 14px;
    line-height: 20px;
    padding-left: 10px;
  }
  #information .information-list.awards dd .information-awards .image{
    display: block;
    position: absolute;
    top: 45px;
    left: 50px;
    width: 240px;
    height:auto;
  }  
  #information .information-list dd .caption{
    font-size: 12px;
    text-align: center;
  }

  #information .schedule-wrap{
    width: 300px;
    margin: 0 auto;
  }
  #information .schedule-head{
    padding:20px 20px 0 20px;
  }
  #information .information-schedule h3{
    font-size: 30px;
    line-height: 1;
    padding-bottom: 20px;
  }
  #information .schedule-item{
    padding-top: 20px;
    height: auto;
  }
  #information .schedule-item .title{
    font-size: 24px;
    padding-bottom:20px;
  }
  #information .schedule-item .date{
    font-size: 20px;
    padding-bottom: 20px;
  }
  #information .schedule-item .date .start{
    font-size: 20px;
    margin-bottom: 40px;
  }
  #information .schedule-item .date .start::after{
    bottom:-30px;
    width: 22.5px;
    height: 19.5px;
  }
  #information .schedule-item .date .end{
    display: block;
    font-size: 20px;
  }
  #information .slick-prev{
    left: 15px;
    width:15px;
    height:15px;
  }
  #information .slick-next{
    right: 15px;
    width: 15px;
    height: 15px;
  }
  #information .information-entry-button a{
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    height:50px;
    line-height: 50px;
  }
  #information .information-entry-button a span{
    right: 8px;
    width: 34px;
    height: 34px;
  }
  #information .information-entry-button a span::after{
    width: 19px;
    height:15px;
  }
}

/* #guideline */
#guideline.l-guideline{
  width: 100%;
}
#guideline .guideline-container{
  width: 76.571vw;
  margin: 0 auto;
}
#guideline .details{
  color: #1b1b1b;
  background: #fff;
  border-radius:16px;
  padding:0 3.929vw 0 4.286vw;
  margin-bottom: 4.028vw;
}
#guideline .guidelines{
  color: #1b1b1b;
  background: #fff;
  border-radius:16px;
  padding:0 3.929vw 0 4.286vw;
}
#guideline .accordion dt{
  width:100%;
  padding-top:2.286vw;
  color: #1b1b1b;
  font-size: 2.857vw;
  font-weight: 600;
  text-align:left;
  padding-bottom:2.286vw;
  cursor:pointer;
  position: relative;
}
#guideline .accordion dd{
  border-top:#1b1b1b 2px solid;
  display:none;
  padding-bottom: 2.286vw;
}
#guideline .accordion dt:before{
  display: block;
  content: "";
  position: absolute;
  right: 0.286vw;
  top: 50%;
  transform: translateY(-50%);
  width: 2.286vw;
  height: 0.143vw;
  background: #1b1b1b;
  transition: all 0.2s ease-in-out;
}
#guideline .accordion dt:after{
  display: block;
  content: "";
  position: absolute;
  right: 1.357vw;
  top: 50%;
  transform: translateY(-50%);
  width: 0.143vw;
  height: 2.286vw;
  background: #1b1b1b;
  transition: all 0.2s ease-in-out;
}
#guideline .accordion dt.active:after{
  content: none;
  transition: all 0.2s ease-in-out;
}
#guideline h2{
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px;
}
#guideline h3{
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}
#guideline .text{
  padding-left: 20px;
}

#guideline ul li{
  font-size: 16px;
}
#guideline ul li ul{
  margin-top: 10px;
}
#guideline .circle-list li{
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
#guideline .circle-list li.is-noCircle{
  padding-left: 0;
}
#guideline .circle-list li::before{
  position: absolute;
  top:0.5em;
  left:0;
  content:'';
  width: 10px;
  height: 10px;
  background: #000;
  border-radius: 50%;
}
#guideline .circle-list li.is-noCircle::before{
  content:none;
}
#guideline .circle-list li ul li::before{
  content:none;
}
#guideline .num-list{
  padding-left: 20px;
}
#guideline .num-list li{
  list-style: decimal;
  line-height: 1.6;
}

#guideline .dot-list li{
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}
#guideline .dot-list li::before{
  position: absolute;
  top:0.6em;
  left:0;
  content:'';
  width: 5px;
  height: 5px;
  background: #000;
  border-radius: 50%;
}
#guideline .circle-list li ul li,
#guideline .dot-list li ul li{
  padding-left: 0;
}
.sample-img{
  text-align: left;
  max-width: 600px;
  margin: 0 auto 0 0 ;
}
#guideline a{
  color: blue;
}
span.text-red{
  color: #cc3939;
}
span.text-bold{
  font-weight: bold;
}

#guideline .guideline-entry-button{
  width: 37.071vw;
  margin: 4.028vw auto 0;
}
#guideline .guideline-entry-button a{
  color: #fff;
  text-align: center;
  font-size: 2.286vw;
  font-weight: 700;
  display: block;
  width: 100%;
  height: 5vw;
  line-height: 5vw;
  border-radius: 70px;
  background: #C5A966;
  position: relative;
}
#guideline .guideline-entry-button a span{
  display: block;
  position: absolute;
  top: 50%;
  right: 0.429vw;
  transform: translateY(-50%);
  width: 4.143vw;
  height: 4.143vw;
  background: #fff;
  border-radius: 100%;
}
#guideline .guideline-entry-button a span::after{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content:'';
  width: 1.357vw;
  height: 1.071vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/icon_arrow.png) no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {

  #guideline .guideline-container{
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }
  #guideline .details{
    padding:0 20px;
    margin-bottom: 30px;
  }
  #guideline .guidelines{
    padding:0 20px;
  }
  #guideline .accordion dt{
      padding-top: 20px;
      font-size: 24px;
      padding-bottom: 20px;
  }
  #guideline .accordion dt:before{
    right:0px;
    width: 15px;
    height: 2px;
  }
  #guideline .accordion dt:after{
    right: 7px;
    width: 2px;
    height: 15px;
  }
  #guideline .accordion dd{
      padding-bottom: 40px;
  }

  #guideline .guideline-entry-button{
    width: 300px;
    margin-top: 30px;
  }
  #guideline .guideline-entry-button a{
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    height:50px;
    line-height: 50px;
  }
  #guideline .guideline-entry-button a span{
    right: 8px;
    width: 34px;
    height: 34px;
  }
  #guideline .guideline-entry-button a span::after{
    width: 19px;
    height:15px;
  }
}

/* onlineMuseum */
#onlineMuseum.l-onlineMuseum{
  margin-top: 16.857vw;
  width: 100%;
  position: relative;
}
#onlineMuseum span.onlineMuseum-bg{
  display: block;
  position: absolute;
  top: -8vw;
  right:0;
  content:'';
  width:34.786vw;
  height:19.214vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bg_flower_02.png) no-repeat;
  background-size: 100% auto;
}
#onlineMuseum .onlineMuseum-container{
  width: 100%;
  padding-left: 8.929vw;
  padding-right: 8.929vw;
}
#onlineMuseum .section-head{
  margin-bottom: 2.143vw;
}
#onlineMuseum .onlineMuseum-lead p{
  padding-left: 2.143vw;
  /*font-size: 2.286vw;*/
  font-size: 26px;
  font-weight: 400;
  line-height: 2.857vw;
  margin-bottom: 2.143vw;
}
#onlineMuseum .onlineMuseum-image{
  margin-bottom: 56px;
}
#onlineMuseum .onlineMuseum-button{
  width: 40.929vw;
  margin: 0 auto;
}
#onlineMuseum .onlineMuseum-button a{
  display: block;
  width: 100%;
  height: 5vw;
  line-height: 5vw;
  text-align: center;
  font-size: 2.286vw;
  font-weight: 600;
  background: #C5A966;
  border-radius: 70px;
}
@media screen and (max-width: 768px) {
  #onlineMuseum.l-onlineMuseum{
    margin-top: 80px;
  }
  #onlineMuseum .onlineMuseum-container{
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
  #onlineMuseum .section-head{
    margin-bottom: 40px;
  }
  #onlineMuseum .onlineMuseum-lead p{
    padding-left:0;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  #onlineMuseum .onlineMuseum-image{
    margin-bottom: 20px;
  }
  #onlineMuseum .onlineMuseum-button{
    width: 100%;
    margin: 0 auto;
  }
  #onlineMuseum .onlineMuseum-button a{
    height: 50px;
    line-height:50px;
    font-size: 20px;
  }
}

/* #archives */
#archives.l-archives{
  margin-top: 19.286vw;
}
#archives .section-head{
  margin-bottom: 7.5vw;
  text-align: center;
}
#archives .archives-list .item{
  margin: 0 1.429vw;
}
#archives .archives-list .item .image{
  aspect-ratio: 80 / 45;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.143vw;
}
#archives .archives-list .item .image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#archives .archives-list .item p{
  font-size: 1.429vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #archives.l-archives{
    margin-top: 80px;
  }
  #archives .section-head{
    margin-bottom: 40px;
    text-align: center;
  }
  #archives .archives-list .item{
    margin: 0 10px;
  }
  #archives .archives-list .item .image{
    margin-bottom: 10px;
  }
  #archives .archives-list .item p{
    font-size: 14px;
  }
}

/* #links */
#links.l-links{
  padding-top: 18.714vw;
  padding-bottom: 14.571vw;
}
#links .links-container{
  width: 94.286vw;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#links .links-bnr{
  width: 45.714vw;
}
#links .links-bnr a{
  display: block;
  width: 100%;
  padding: 5vw 0;
  border-radius: 16px;
  overflow: hidden;
}
#links .links-bnr a span{
  font-size: 2.857vw;
  font-weight: 700;
}
#links .links-bnr.pigma a{
  padding-left: 3.857vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bnr_img_01.png) no-repeat;
  background-size: cover;
}
#links .links-bnr.Anniversary a{
  padding-left: 2.857vw;
  color: #4B4843;
  background: #fff;
  position: relative;
}
#links .links-bnr.Anniversary a::after{
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: translateY(-50%);
  content:'';
  width: 10.357vw;
  height: 6.929vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bnr_img_02.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #links.l-links{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #links .links-container{
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    flex-direction: column;
  }
  #links .links-bnr{
    width: 100%;
  }
  #links .links-bnr a{
    display: block;
    width: 100%;
    padding: 40px 0;
  }
  #links .links-bnr a span{
    font-size:5.208vw;
  }
  #links .links-bnr.pigma a{
    padding-left: 3.857vw;
    background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bnr_img_01.png) no-repeat;
    background-size: cover;
  }
  #links .links-bnr.Anniversary{
    margin-top: 20px;
  }
  #links .links-bnr.Anniversary a{
    padding-left: 2.857vw;
    color: #4B4843;
    background: #fff;
    position: relative;
  }
  #links .links-bnr.Anniversary a::after{
    position: absolute;
    top: 50%;
    right: 3vw;
    transform: translateY(-50%);
    content:'';
    width:26.364vw;
    height:17.636vw;
    background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/bnr_img_02.png) no-repeat;
    background-size: contain;
  }
}

footer{
  color: #000;
  background: #F2EDE3;
  width: 100%;
  padding-top: 5.857vw;
  padding-left: 7.143vw;
  padding-right: 7.143vw;
}
.footer-main{
    display: flex;
    justify-content: space-between;
}
.footer-column:nth-child(1){
  width: 17.857vw;
}
.footer-column:nth-child(2){
  width: 20.286vw;
}
.footer-column:nth-child(3){
  width: 21.429vw;
}
.footer-column:nth-child(4){
  width: 17.571vw;
}
.footer-column:nth-child(5){
  width: 8.571vw;
}
.footer-logo{
  padding-top: 1.4vw;
  width: 2.857vw;
}
.l-footer .footer-main .footer-column .footer-item > a {
  font-size: 1.429vw;
  font-weight: 700;
  line-height: 4.286vw;
}
.l-footer .footer-main .footer-column .footer-subItem a {
  font-size: 1.429vw;
  font-weight: 400;
  line-height: 2;
  padding-left: 0.714vw;
}
.footer-foot-copyright{
  text-align: center;
  padding: 3.357vw 0 1.143vw;
}
.footer-foot-copyright small{
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  footer{
    padding-top: 40px;
    padding-left: 12%;
    padding-right: 12%;
  }
  .footer-main{
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-column:nth-child(1){
    width: 100%;
  }
  .footer-column:nth-child(2){
    width: 100%;
  }
  .footer-column:nth-child(3){
    width: 100%;
  }
  .footer-column:nth-child(4){
    width: 100%;
  }
  .footer-column:nth-child(5){
    width: 100%;
  }
  .footer-logo{
    padding-top:0;
    width: 40px;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .l-footer .footer-main .footer-column .footer-item > a {
    font-size: 16px;
    line-height: 2.5;
  }
  .l-footer .footer-main .footer-column .footer-subList {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .l-footer .footer-main .footer-column .footer-subItem{
    width: 50%;
  }
  .l-footer .footer-main .footer-column .footer-subItem a {
    display: block;
    font-size: 14px;
    text-align: left;
    line-height: 2;
    padding-left: 20px;
    white-space: nowrap;
  }
  .footer-foot-copyright{
    text-align: center;
    padding: 20px 0;
  }
  .footer-foot-copyright small{
    font-size: 12px;
  }
}

.f_btn{
  position: fixed;
  bottom: 50px;
  right:30px;
  width: 10.714vw;
  z-index: 100;
}
.f_btn a{
  color: #fff;
  text-align: left;
  padding-left: 2.1vw;
  font-size: 1.5vw;
  font-weight: 700;
  display: block;
  width: 100%;
  height: 4vw;
  line-height: 4vw;
  border-radius: 70px;
  background: #C5A966;
  position: relative;
}
.f_btn a span{
  display: block;
  position: absolute;
  top: 50%;
  right: 0.429vw;
  transform: translateY(-50%);
  width: 3.142vw;
  height: 3.142vw;
  background: #fff;
  border-radius: 100%;
}
.f_btn a span::after{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content:'';
  width: 1.357vw;
  height: 1.071vw;
  background: url(https://craypas-global.g.kuroco-img.app/files/user/pigma-award/assets/images/icon_arrow.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .f_btn{
    width: 120px;
  }
  .f_btn a{
    padding-left: 20px;
    font-size: 18px;
    width: 100%;
    height:40px;
    line-height: 40px;
  }
  .f_btn a span{
    right: 8px;
    width: 24px;
    height: 24px;
  }
  .f_btn a span::after{
    width: 9.5px;
    height:7.5px;
  }
}

/* fadeIn */
.js-fade_up {
	opacity: 0;
	transform: translate(0, 30px);
	transition-duration: 1000ms;
	transition-property: opacity, transform;
}
.js-fade_up.is-active{
	opacity: 1;
	transform: translate(0, 0);
}
.js-fade_show {
	opacity: 0;
	transform: translate(0, 30px);
	transition-duration: 1500ms;
	transition-property: opacity, transform;
}
.js-fade_show.is-active {
	opacity: 1;
	transform: translate(0, 0);
}
.delay{
  transition-delay: 1s;
}
.bg-delay{
  transition-duration: 3000ms;
  transition-delay: 0.5s;
}



/* --------------------------- */
/* results                     */
/* --------------------------- */
.l-results {
  width: 92%;
  max-width: 1166px;
  margin:10.357vw auto 15.571vw;
}
@media screen and (max-width: 767px) {
  .l-results {
    width: 92%;
    margin: 40px auto 80px;
  }
}
.l-results .results-block{
  margin-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .l-results .results-block{
    margin-bottom: 80px;
  }
}
.l-results .results-block .results-block-head {
  width: 100%;
  max-width: 880px;
  margin: 0 auto 80px;
  background: #D2CBBC;
  background: radial-gradient(circle, #D2CBBC 0%, #B4A37E 100%);
  border:#000 solid 1px;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .l-results .results-block .results-block-head {
    margin-bottom: 24px;
  }
}
.l-results .results-block .results-block-head .title {
  color: #967C42;
  font-size: 48px;
  font-weight: 700;
  padding: 0.1em 0;
  text-align: center;
  line-height: 1.2;
}
.l-results .results-block .results-block-head .title span{
  font-size: 24px;
  font-weight: 700;
}
.l-results .results-block.silver .results-block-head {
  background: #D2D2D2;
  background: radial-gradient(circle, #D2D2D2 0%, #9e9e9e 100%);
}
.l-results .results-block.silver .results-block-head .title {
  color: #9c9c9c;
}
.l-results .results-block.bronze .results-block-head {
  background: #C39F90;
  background: radial-gradient(circle, #C39F90 0%, #815f50 100%);
}
.l-results .results-block.bronze .results-block-head .title {
  color: #915F43;
}
.l-results .results-block.manga .results-block-head,
.l-results .results-block.color .results-block-head,
.l-results .results-block.kid .results-block-head,
.l-results .results-block.online .results-block-head{
  background: #D2D2D2;
  background: radial-gradient(circle, #D2D2D2 0%, #9e9e9e 100%);
}
.l-results .results-block.manga .results-block-head .title,
.l-results .results-block.color .results-block-head .title,
.l-results .results-block.kid .results-block-head .title,
.l-results .results-block.online .results-block-head .title {
  color: #9c9c9c;
}

.l-results .results-block .results-block-body {
  display: grid;
  gap: 5.286vw;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-results .results-block .results-block-head .title {
    font-size: 26px;
    padding: .25em 0;
  }
  .l-results .results-block .results-block-head .title span{
    font-size: 18px;
  }
  .l-results .results-block .results-block-body {
    margin-bottom: 60px;
    display: block;
    gap: 0;
  }
}
@media screen and (max-width: 500px) {  
  .l-results .results-block .results-block-head .title span{
    display: block;
  }
}

.l-results .results-block .figure-images {
  width: 100%;
  max-width:39.643vw;
  margin: 0 0 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-results .results-block .figure-images {
    width: 100%;
    max-width:100%;
    margin: 0 auto;
    overflow: hidden;
  }
}
.l-results .results-block .figure-images .swiper-button-next:after,
.l-results .results-block .figure-images .swiper-button-prev:after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .l-results .results-block .figure-images .swiper-button-next:after,
.l-results .results-block .figure-images .swiper-button-prev:after {
    width: 16px;
    height: 16px;
  }
}
.l-results .results-block .figure-images .swiper-button-next:after {
  transform: rotate(45deg);
}
.l-results .results-block .figure-images .swiper-button-prev:after {
  transform: rotate(-135deg);
}
.l-results .results-block .contents {
  margin-top: 6.357vw;
}
#silver-prize.results-block .contents {
  margin-top: 4vw;
}
#bronze-prize.results-block .results-block-body._01 .contents {
  margin-top: 3vw;
}
#bronze-prize.results-block .results-block-body._02 .contents {
  margin-top: 7.429vw;
}
#bronze-prize.results-block .results-block-body._03 .contents {
  margin-top: 6.357vw;
}
#manga-prize.results-block .contents {
 margin-top: 0.571vw;
}
#color-prize.results-block .contents {
  margin-top: 5.571vw;
}
#kid-prize.results-block .results-block-body._01 .contents {
  margin-top: 0.571vw;
}
#kid-prize.results-block .results-block-body._02 .contents {
  margin-top: 3.929vw;
}
@media screen and (max-width: 767px) {  
  .l-results .results-block .contents,
  #silver-prize.results-block .contents, 
  #bronze-prize.results-block .results-block-body._01 .contents,
  #bronze-prize.results-block .results-block-body._02 .contents,
  #bronze-prize.results-block .results-block-body._03 .contents,
  #manga-prize.results-block .contents, 
  #color-prize.results-block .contents,
  #kid-prize.results-block .results-block-body._01 .contents,
  #kid-prize.results-block .results-block-body._02 .contents {
    margin-top: 10px;
  }
}
.l-results .results-block .contents h3{
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 2.286vw;
}
.l-results .results-block .contents dl{
  line-height: 1.77;
  overflow: hidden;
  margin-bottom: 0.5em;
}
.l-results .results-block .contents dl dt {
  display: block;
  font-size: 18px;
  font-weight: 400;
  padding-right: 0.5em;
  white-space: nowrap;
}
.l-results .results-block .contents dl.insta dt{
  float: left;
}
@media screen and (max-width: 767px) {
  .l-results .results-block .contents dl dt {
    font-size: 16px;
  }
}
.l-results .results-block .contents dl dt::after {
  content: " : ";
  display: inline-block;
  padding-left: 0.5em;
}
.l-results .results-block .contents dl dd {
    font-size: 18px;
    font-weight: 400;
}
.l-results .results-block .contents dl dd  span.nw{
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-results .results-block .contents dl dd {
    font-size: 16px;
  }  
  .l-results .results-block .contents dl dd  span.nw{
    white-space: nowrap;
    font-size: 16px;
  }
}

/* Selected */
.l-results .results-block.selected .results-block-head {
  background: linear-gradient(to right, #4e4e4e 0%, #cdcdcd 50%, #4e4e4e 100%);
  border-bottom: 4px solid #4e4e4e;
}
.l-results .results-block.selected .results-block-head .title {
  color: #4e4e4e;
}
.l-results .results-block.selected .result-comment .text {
    font-size: 24px;
    line-height: 2;
    text-align: center;
}
.l-results .results-block.selected .results-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 40px 10px;
    justify-content: center;
}
.l-results .results-block.selected .results-list .results-item {
    transition: all 0.6s ease-in-out;
}
.l-results .results-block.selected .results-list .results-item a {
    display: flex;
    flex-direction: column-reverse;
}
.l-results .results-block.selected .results-list .results-item .name {
    padding: 0.5em 0 0;
    font-size: 16px;
    font-weight: bold;
}
.l-results .results-block.selected .results-list .results-item .country {
    font-size: 12px;
    color: #4e4e4e;
}
.l-results .results-block.selected .results-list .results-item .snsLink {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    margin-top: 0.5em;
}
.l-results .results-block.selected .results-list .results-item .snsLink img {
    width: 100%;
    height: auto;
}
.l-results .results-block.selected .results-list .results-item .figure {
    aspect-ratio: 1;
    overflow: hidden;
}
.l-results .results-block.selected .results-list .results-item .figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.l-results .results-block.selected .resultsListMore-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
.resultsListMore-button {
    background: #F2EDE3;
    color: #000;
    border: none;
    padding: 16px 10px;
    font: inherit;
    cursor: pointer;
    outline: inherit;
    width: 75%;
    text-align: center;
    border-radius: 8px;
    position: relative;
    letter-spacing: .1em;
}


@media screen and (max-width: 767px) {
    .l-results .results-block.selected .results-list {
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 40px 10px;
        justify-content: center;
    }
    .l-results .results-block.selected .results-list .results-item .name {
        font-size: 12px;
    }
    .l-results .results-block.selected .results-list .results-item .country {
        font-size: 10px;
    }
    .l-results .results-block.selected .result-comment .text {
        font-size: 18px;
    }
}


@media screen and (max-height: 800px) and (orientation: landscape) {

}

@media screen and (max-height: 640px) {

}


