@charset "utf-8";
:root {
  --main-color: #204b9f;
  --sub-color: #2681bd;
  --side-padding: 20px;
  --min-width: 320px;
}
/* ローディング中 */
.wf-loading #kv,
.wf-loading #bunko80{
  opacity: 0;
}
/* フォント読み込み完了後 */
.wf-active #kv,
.wf-active #bunko80{
  opacity: 1;
  transition: .8s ease;
}
/* フォント読み込み失敗時 */
.wf-inactive #kv,
.wf-inactive #bunko80{
  opacity: 1;
}
/* cmn */
html{
  font-size: 16px;
  scroll-behavior: smooth;
}
body{
  font: 400 1rem/1.6 "Noto Sans JP", Meiryo, "BIZ UDPGothic", "Yu Gothic", sans-serif;
  color: #231815;
  background-color: #3a94cf;
  font-feature-settings: "palt";
  margin: 0;
  height: 100dvh;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a{
  color: var(--main-color);
  transition: .4s;
  text-decoration: none;
  cursor: pointer;
}
a:hover{
  text-decoration: none;
  border: none!important;
}
b, strong{
  font-weight: 500;
}
.forSP,
.forPC{
  display: none;
}
@media(max-width: 480px){
  .forSP{
    display: block;
  }
}
@media(min-width: 801px){
  .forPC{
    display: block;
  }
}
.fade{
  opacity: 0;
  transition: opacity 1s ease;
}
.fade.visible{
  opacity: 1;
}
.fadeIn{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.fadeIn.visible{
  opacity: 1;
  transform: translateY(0);
}
/* menu */
#menu{
  position: fixed;
  z-index : -1;
  top  : 0;
  left : 0;
  background-color: rgba(32,75,169,0.9);
  text-align: center;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  transition: .3s;
}
#menu .menu_inner{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
}
#menu ul{
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
#menu ul a{
  color: #FFFFFF;
  display: block;
  padding: 0.5em;
  position: relative;
}
#menu ul a::before{
  background: #FFFFFF;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
#menu ul a:hover::before{
  transform-origin: center top;
  transform: scale(1, 1);
}
#menu ul li{
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
#menu.active{
  opacity: 1;
  z-index: 10;
}
/* header */
#header{
  margin: 0 auto;
  padding: 0 var(--side-padding);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
#header .site_name{
  margin-top: 20px;
  display: flex;
  align-items: center;
  line-height: 1;
}
#header .site_name a{
  color: #FFFFFF;
}
#header .site_name h1{
  margin: 0;
  font-size: 1rem;
}
#header .site_name h1 img{
  width: 178px;
  transition: .2s;
  filter: drop-shadow(0px 0px 5px rgba(25, 109, 162, 0.8));
}
#header .site_name h2{
  margin: 0;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 400;
  margin-left: 20px;
  text-shadow: 0px 0px 5px rgba(25, 109, 162, 0.8);
}
/* btn_menu */
#header .btn_menu{
  position: absolute;
  cursor: pointer;
  padding: 20px;
  right: 0;
  top: 20px;
}
#header .btn_menu span{
  display: block;
  position: relative;
  background-color: #FFFFFF;
  height: 4px;
  width: 38px;
  text-indent: -99999px;
  filter: drop-shadow(0px 0px 5px rgba(25, 109, 162, 0.8));
  transition: .3s;
}
#header .btn_menu span::before{
  content: '';
  display: block;
  position: absolute;
  background-color: #FFFFFF;
  height: 4px;
  width: 38px;
  top: -10px;
  transition: .3s;
}
#header .btn_menu span::after{
  content: '';
  display: block;
  position: absolute;
  background-color: #FFFFFF;
  height: 4px;
  width: 38px;
  top: 10px;
  transition: .3s;
}
#header .btn_menu.active span{
  background-color: transparent;
  filter: none;
}
#header .btn_menu.active span::before{
  top: 0;
  transform: rotate(-45deg);
}
#header .btn_menu.active span::after{
  top: 0;
  transform: rotate(45deg);
}
@media screen and (max-width:800px) {
  #header .site_name h1 img{
    width: 89px;
  }
  #header .site_name h2{
    font-size: 0.75rem;
    margin-left: 10px;
  }
  /* btn_menu */
  #header .btn_menu{
    top: 10px;
  }
  #header .btn_menu span{
    width: 30px;
  }
  #header .btn_menu span::before{
    width: 30px;
  }
  #header .btn_menu span::after{
    width: 30px;
  }
}
/* container */
#container{
  margin: 0 auto;
  background-image:
url("../../../img/usr/80th/confetti01.svg") ,
url("../../../img/usr/80th/confetti02.png") ,
    linear-gradient(180deg, rgba(80,199,245,1) 0%, rgba(19,97,164,1)1000px);
  background-repeat: no-repeat, repeat, no-repeat;
  background-position: center 20px,center top,top;
  background-attachment: scroll,fixed,fixed;
  position: relative;
  overflow: hidden;
    background-size: auto;
}
@media screen and (max-width:800px) {
  #container{
    background-image:
url("../../../img/usr/80th/confetti01_sp.svg") ,
url("../../../img/usr/80th/confetti02_sp.png") ,
      linear-gradient(180deg, rgba(80,199,245,1) 0%, rgba(19,97,164,1)500px);
  }
}
/* kv */
#kv{
  margin: 0 auto;
}
#kv .kv_inner{
  margin: 0 auto;
  padding-top: 200px;
  max-width: 1400px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#kv .intro{
  width: clamp(17.5rem, 4.583rem + 64.58vw, 36.875rem);
  overflow: hidden;
  position: relative;
}
#kv .intro::before{
  animation: 60s 0s rotate linear infinite;
  background: url("../../../img/usr/80th/circle.svg") center center no-repeat;
  background-size: cover;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
#kv .intro::after{
  content: '';
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  border: solid 3px var(--sub-color);
  border-radius: 100%;
}
@keyframes rotate{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}
#kv .circle{
  position: relative;
  padding-top: 100%;
}
#kv .circle .circle_inner{
  position: absolute;
  top:0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#kv .circle .logo80th img{
  width: clamp(3.125rem, -0.292rem + 17.08vw, 8.25rem);
  filter: invert(20%) sepia(51%) saturate(3146%) hue-rotate(209deg) brightness(94%) contrast(84%);
}
#kv .circle h3{
  margin: clamp(0.438rem, -0.104rem + 2.71vw, 1rem) 0 0 0;
  text-align: center;
  color: var(--sub-color);
  font-size: clamp(0.75rem, 0.25rem + 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
#kv .circle h3 span{
  display: inline-block;
  font-size: clamp(1rem, 0.167rem + 4.17vw, 2.25rem);
  font-weight: 700;
  padding-bottom: 0.3em;
  background: url("../../../img/usr/80th/waveline.svg?01") left bottom repeat-x;
  background-size: auto 6px;
}
#kv .circle h4{
  margin: clamp(0.438rem, -0.104rem + 2.71vw, 1rem) 0 0 0;
  line-height: 1;
}
#kv .circle h4 img{
  width: clamp(7.5rem, 2.125rem + 26.88vw, 15.563rem);
}
#kv .circle p{
  margin: 5px 0 0 0;
  text-align: center;
  line-height: 1.8;
  padding: 0 clamp(3.125rem, 0.208rem + 14.58vw, 7.5rem);
  font-size: clamp(0.3rem, -0.083rem + 1.92vw, 0.875rem);
  letter-spacing: 0.08em;
}
@media screen and (max-width:800px) {
  #kv .kv_inner{
    padding-top: 100px;
  }
  #kv .circle h3 span{
    background-size: auto 3px;
  }
}
/* news */
#news{
  margin: clamp(1.875rem, 0.625rem + 6.25vw, 3.75rem) auto 0;
  padding: 0 var(--side-padding);
  width: 100%;
}
#news dl{
  margin: 0 auto;
  width: 1140px;
  height: clamp(3.75rem, 2.5rem + 6.25vw, 5.625rem); /* 90 - 60 */
  display: flex;
  filter: drop-shadow(0px 0px 5px rgba(25, 109, 162, 0.8));
}
#news dt{
  margin: 0;
  padding: 0 0 0 30px;
  width: clamp(6.25rem, 2.083rem + 20.83vw, 12.5rem);
  background-color: #3da7ca;
  border-radius: 10px 0 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFFFFF;
  font-size: clamp(1rem, 0.667rem + 1.67vw, 1.5rem);
  line-height: 1;
  font-weight: 700;
}
#news dt span{
  margin-top: 5px;
  font-size: clamp(0.5rem, 0.25rem + 1.25vw, 0.875rem);
  font-weight: 400;
}
#news dd{
  margin: 0;
  padding: 10px 10px 10px 20px;
  width: calc(100% - clamp(6.25rem, 2.083rem + 20.83vw, 12.5rem));
  background-color: #FFFFFF;
  border-radius: 0 10px 10px 0;
  display: flex;
  align-items: center;
}
#news dd ul{
  margin: 0;
  padding: 0;
  width: 100%;
  height: 70px;
  overflow-x: hidden;
  overflow-y: auto;
}
#news dd li{   
  margin: 7px 0;
  padding: 0;
  width: 100%;
  list-style: none;
  display: flex;
  font-size: clamp(0.75rem, 0.25rem + 1.25vw, 0.875rem); /* 14 - 12 */
}
#news dd li span{   
  width: 7em;
  color: var(--main-color);
}
#news dd li p{
  margin: 0;
  padding: 0;
  width: calc(100% - 7em);
}
@media screen and (max-width:1200px) {
  #news dl{
    width: 100%;
  }
}
@media screen and (max-width:480px) {
  #news dd{
    padding: 10px;
  }
  #news dd ul{
    height: 50px;
  }
  #news dd li{
    flex-direction: column;
  }
  #news dd li span,
  #news dd li p{
    width: 100%;
  }
}
/* btn_mekurufu */
#btn_mekurufu{
  margin: 0 auto;
  position: absolute;
  top: 60%;
  right: 30px;
  width: calc((440 / 1300)* 100%); /* 親要素に対する比率計算 */
  max-width: 325px; /* 最大幅を指定 */
}
#btn_mekurufu img{
  transition: .5s;
  filter: drop-shadow(10px 10px 0px rgba(25, 109, 162, 0.8));
}
@media screen and (max-width:800px) {
  #btn_mekurufu{
    top: 70%;
    right: 20px;
  }
  #btn_mekurufu img{
    filter: drop-shadow(5px 5px 0px rgba(25, 109, 162, 0.8));
  }
}
/* bunko80 */
#bunko80{
  margin: clamp(1.875rem, -1.042rem + 14.58vw, 6.25rem) auto 0;
}
#bunko80 .bunko80_head{
  width: 100%;
  overflow: hidden;
  position: relative;
}
#bunko80 .bunko80_head::before{
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(62.5rem, 20.833rem + 208.33vw, 125rem);
  height: clamp(62.5rem, 20.833rem + 208.33vw, 125rem);
  background: #ffffff;
  border-radius: 100%;
  z-index: 0;
  transform: translateX(-50%);
}
#bunko80 .bunko80_head .head_inner{
  position: relative;
  text-align: center;
  padding: clamp(3.75rem, 1.25rem + 12.5vw, 7.5rem) var(--side-padding) clamp(2.5rem, 0.833rem + 8.33vw, 5rem);
}
#bunko80 .bunko80_head .sub{
  margin: 0;
  color: var(--main-color);
  font-size: clamp(1rem, 0.917rem + 0.42vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_head .sec_title{
  margin: 0;
  font-size: clamp(1.875rem, 0.625rem + 6.25vw, 3.75rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_head .sec_title span{
  font-size: clamp(1rem, 0.417rem + 2.92vw, 1.875rem);
}
#bunko80 .bunko80_head .sec_title span.em{
  font-size: clamp(1.875rem, 0.625rem + 6.25vw, 3.75rem);
  color: var(--main-color);
}
#bunko80 .bunko80_head .copy{
  margin: clamp(0.625rem, -0.208rem + 4.17vw, 1.875rem) 0 0 0;
  color: var(--sub-color);
  font-size: clamp(1.125rem, 0.375rem + 3.75vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}
#bunko80 .bunko80_head .txt{
  margin: clamp(1.25rem, 0.417rem + 4.17vw, 2.5rem) auto 0;
  display: inline-block;
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  line-height: 2;
  text-align: left;
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_inner{
  background-color: #FFFFFF;
}
#bunko80 .bunko80_tab{
  margin: 0 auto;
  padding: 0 var(--side-padding);
    width: 100%;
  max-width: 1400px;
  list-style: none;
  display: flex;
  justify-content: space-around;
}
#bunko80 .bunko80_tab li{
  padding: 1.25rem 0;
  color: #FFFFFF;
  background-color: var(--sub-color);
  width: 14%;
  line-height: 1;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}
#bunko80 .bunko80_tab li.active{
  color: #333333;
  background-color: #e3e9f6;
}
@media screen and (max-width:800px) {
  #bunko80 .bunko80_tab{
    margin: 0 auto 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #bunko80 .bunko80_tab li{
    padding: 0.75rem 0;
    margin: 0.666%;
    width: 32%;
    font-size: clamp(0.625rem, 0.292rem + 1.67vw, 1.125rem);
    border-radius: 10px;
  }
  #bunko80 .bunko80_tab li.active{
    color: #FFFFFF;
    background-color: #f24c82;
  }
}
/* bunko80_box */
#bunko80 .bunko80_box{
  display: none;
  background-color: #e3e9f6;
  padding: 0 var(--side-padding);
}
#bunko80 .bunko80_box.active{
  display: block;
}
#bunko80 .bunko80_box_inner{
  margin: 0 auto;
  padding: clamp(3.125rem, 1.042rem + 10.42vw, 6.25rem) 0; /* 100 - 50 */
  max-width: 1400px;
  min-height: 300px;
  animation: fade .6s ease-in-out forwards;
}
@keyframes fade{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#bunko80 .bunko80_box_inner .coming{
  margin: 0 auto;
  padding: 0;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  color: var(--main-color);
  min-height: 300px;
}
#bunko80 .bunko80_list{
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#bunko80 .bunko80_list li{
  margin: 0 auto 50px;
  padding: 0 10px;
  width: 50%;
}
#bunko80 .bunko80_list .article{
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-around;
}
#bunko80 .bunko80_list .article .cover{
  width: 40%;
  padding-right: 30px;
}
#bunko80 .bunko80_list .article .cover img{
  filter: drop-shadow(0px 0px 5px rgba(153, 153, 153, 0.5));
}
#bunko80 .bunko80_list .article .wrap{
  width: 60%;
  padding: 0;
}
#bunko80 .bunko80_list .article a{
  color: #231815;
}
#bunko80 .bunko80_list .article .cat{
  display: inline-block;
  padding: 5px 10px;
  background-color: #f24c82;
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1;
}
#bunko80 .bunko80_list .article .booktitle{
  margin: 10px 0 0 0;
  padding: 0;
  font-size: clamp(1.375rem, 1.208rem + 0.83vw, 1.625rem); /* 26 - 22 */
  line-height: 1.4;
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_list .article .author{
  margin: 10px 0 0 0;
  padding: 0;
  font-size: clamp(0.875rem, 0.792rem + 0.42vw, 1rem); /* 16 - 14 */
  line-height: 1.4;
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_list .article .comment_box{
  margin: 40px 0 0 0;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative;
}
#bunko80 .bunko80_list .article .c_title{
  margin: 0;
  padding: 20px 15px;
  border-radius: 100%;
  color: #FFFFFF;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  background-color: var(--main-color);
  position: absolute;
  top: -30px;
  right: 30px;
}
#bunko80 .bunko80_list .article .c_title::after{
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  border-style: solid;
  border-width: 16px 8px 0 8px;
  border-color: var(--main-color) transparent transparent;
  translate: -50% 100%;
  transform: skew(-38deg);
  transform-origin: top;
}
#bunko80 .bunko80_list .article .comment_box dl{
  margin: 0;
  padding: 0;
  display: flex;
}
#bunko80 .bunko80_list .article .comment_box dt{
  margin: 0;
  padding: 0;
  width: 100px;
  border-radius: 50px;
}
#bunko80 .bunko80_list .article .comment_box dt .photo{
}
#bunko80 .bunko80_list .article .comment_box dt .photo img{
  width: 100%;
  border-radius: 50px;
}
#bunko80 .bunko80_list .article .comment_box dt .no-photo{
  background-color: #ffce63;
  border-radius: 50px;
}
#bunko80 .bunko80_list .article .comment_box dt .no-photo img{
  padding: 20px;
}
#bunko80 .bunko80_list .article .comment_box dd{
  margin: 0 0 0 15px;
  padding: 0;
}
#bunko80 .bunko80_list .article .comment_box dd .name{
  margin: 20px 0 0 0;
  padding: 0;
  font-size: clamp(1rem, 0.917rem + 0.42vw, 1.125rem); /* 18 - 16 */
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_list .article .comment_box dd .jobtitle{
  margin: 0 0 0 0;
  padding: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_list .article .comment_box .comment{
  margin: 10px 0 0 0;
  padding: 0;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
#bunko80 .bunko80_list .article .comment_box .movie{
  margin-top: 10px;
}
@media screen and (max-width:1000px) {
  #bunko80 .bunko80_list{
    flex-direction: column;
  }
  #bunko80 .bunko80_list li{
    margin: 0 auto 40px;
    padding: 0 0 40px 0;
    width: 100%;
    border-bottom: solid 1px #FFFFFF;
  }
  #bunko80 .bunko80_list li:last-child,
  #bunko80 .bunko80_list li.adjust{
    padding: 0;
    border-bottom: none;
  }
  #bunko80 .bunko80_list .article .cover{
    width: 35%;
  }
  #bunko80 .bunko80_list .article .wrap{
    width: 65%;
  }
}
@media screen and (max-width:480px) {
  #bunko80 .bunko80_list .article{
    margin: 0 auto;
    width: 100%;
    flex-direction: column;
  }
  #bunko80 .bunko80_list .article .cover{
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  #bunko80 .bunko80_list .article .cover img{
    max-width: 200px;
    margin: auto;
  }
  #bunko80 .bunko80_list .article .wrap{
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
}
/* contents */
#contents{
  margin: 0 auto;
  padding: 0 var(--side-padding);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
:is(#fair,#event,#campaign,#goods,#character){
  padding-top: clamp(6.25rem, 3.523rem + 13.64vw, 13.75rem); /* 220 - 100 */
  margin: 0 auto;
  width: 100%;
}
:is(#fair,#event,#campaign,#goods,#character) .box{
  width: 1300px;
  background-color: #FFFFFF;
  border-radius: 10px;
  position: relative;
  margin: 0 auto;
}
:is(#fair,#event,#campaign,#goods,#character) .sec_title{
  margin: 0 auto;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: -58px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}
:is(#fair,#event,#campaign,#goods,#character) .ribon{
  margin: 0 auto;
  background-color: #FFFFFF;
  border: solid 3px var(--main-color);
  position: relative;
  width: 600px;
  height: clamp(2.813rem, 1.354rem + 7.29vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
:is(#fair,#event,#campaign,#goods,#character) .ribon.l2{
   height: clamp(3.75rem, 2.083rem + 8.33vw, 6.25rem);
}
:is(#fair,#event,#campaign,#goods,#character) .ribon::before{
  content: '';
  position: absolute;
  left: -67px;
  bottom: -24px;
  z-index: -1;
  width: 127.5px;
  height: 85px;
  background: url("../../../img/usr/80th/ribon_l.svg") left bottom no-repeat;
  background-size: contain;
}
:is(#fair,#event,#campaign,#goods,#character) .ribon::after{
  content: '';
  position: absolute;
  right: -67px;
  bottom: -24px;
  z-index: -1;
  width: 127.5px;
  height: 85px;
  background: url("../../../img/usr/80th/ribon_r.svg") left bottom no-repeat;
  background-size: contain;
}
:is(#fair,#event,#campaign,#goods,#character) .ribon .main{
  margin: 0;
  color: var(--main-color);
  font-size: clamp(0.875rem, -0.042rem + 4.58vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}
:is(#fair,#event,#campaign,#goods,#character) .ribon .sub{
  margin: 0 0 8px 0;
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}
:is(#fair,#event,#campaign,#goods,#character) .box_inner{
  min-height: 300px;
}
@media screen and (max-width:1340px) {
  :is(#fair,#event,#campaign,#goods,#character) .box{
    width: 100%;
  }
}
@media screen and (max-width:800px) {
  :is(#fair,#event,#campaign,#goods,#character) .sec_title{
    top: -34px;
  }
  :is(#fair,#event,#campaign,#goods,#character) .ribon{
    border: solid 2px var(--main-color);
    width: clamp(11.25rem, -6.25rem + 87.5vw, 37.5rem);
  }
  :is(#fair,#event,#campaign,#goods,#character) .ribon::before{
    left: -38px;
    bottom: -13px;
    width: 75px;
    height: 50px;
  }
  :is(#fair,#event,#campaign,#goods,#character) .ribon::after{
    right: -38px;
    bottom: -13px;
    width: 75px;
    height: 50px;
  }
}
/* fair */
#fair{
}
#fair .coming{
  padding: 0 var(--side-padding);
  width: 100%;
  min-height: 300px;
  font-size: clamp(0.875rem, 0.458rem + 2.08vw, 1.5rem);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* event */
#event .box{
  background-image: url("../../../img/usr/80th/event_bg.png");
  background-position: center top;
  background-repeat: no-repeat;
}
#event .box_inner{
  padding: 80px clamp(1.25rem, 0.833rem + 2.08vw, 1.875rem) clamp(1.875rem, -0.208rem + 10.42vw, 5rem);
}
#event .box_inner h4{
  margin: clamp(1.875rem, -0.208rem + 10.42vw, 5rem) 0 clamp(1.25rem, 6.25vw, 3.125rem) 0;
  text-align: center;
}
#event .box_inner h4 img{
  width: clamp(12.5rem, 5rem + 37.5vw, 23.75rem);
}
#event .overview{
  margin: 10px auto 0;
  width: 700px;
  display: flex;
  align-items: baseline;
}
#event .overview dt{
  margin: 0;
  padding: 5px;
  background-color: var(--main-color);
  color: #FFFFFF;
  width: 6em;
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
#event .overview dd{
  margin: 0 0 0 clamp(0.938rem, 0.313rem + 3.13vw, 1.875rem);
  padding: 5px;
  font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.25rem);
  letter-spacing: 0.08em;
}
#event .overview dd span{
  font-size: clamp(1.25rem, 0.583rem + 3.33vw, 2.25rem);
  font-weight: 500;
}
#event .txt{
  margin: clamp(1.875rem, 0.625rem + 6.25vw, 3.75rem) auto 0;
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  max-width: 1040px;
  line-height: 2;
  letter-spacing: 0.08em;
}
#event .guest{
  margin: clamp(1.875rem, 0.625rem + 6.25vw, 3.75rem) auto 0;
  font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.25rem);
  max-width: 1040px;
  border: solid 3px var(--main-color);
  position: relative;
}
#event .guest dt{
  margin: 0;
  padding: 0 1.5em;
  position: absolute;
  top: -20px;
  left: 30px;
  background-color: #FFFFFF;
  color: var(--main-color);
  font-weight: 500;
  letter-spacing: 0.08em;
}
#event .guest dt span{
  position: relative;
}
#event .guest dt span::before{
  content: '';
  position: absolute;
  left: -15px;
  top: 6px;
  height: 20px;
  width: 1px;
  display: block;
  background-color: var(--main-color);
  transform: rotate(-30deg);
}
#event .guest dt span::after{
  content: '';
  position: absolute;
  right: -12px;
  top: 6px;
  height: 20px;
  width: 1px;
  display: block;
  background-color: var(--main-color);
  transform: rotate(30deg);
}
#event .guest dd{
  margin: 0;
  padding: clamp(0.625rem, 0.208rem + 2.08vw, 1.25rem) clamp(0.938rem, 0.313rem + 3.13vw, 1.875rem);
  color: var(--main-color);
  font-weight: 500;
  letter-spacing: 0.08em;
}
#event .guest dd span{
  margin: 0;
  color: #333333;
  font-size: clamp(0.625rem, 0.375rem + 1.25vw, 1rem);
  font-weight: normal;
}
#event .ticket{
  margin: clamp(1.875rem, 0.625rem + 6.25vw, 3.75rem) auto 0;
  padding: clamp(0.625rem, 0.208rem + 2.08vw, 1.25rem) 0;
  max-width: 1040px;
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  color: #ff3300;
  border-top:solid 3px #ff3300;
  border-bottom:solid 3px #ff3300;
}
@media screen and (max-width:800px) {
#event .box{
  background-image: url("../../../img/usr/80th/event_bg_tab.png");
    background-size: contain;
}
  #event .overview{
    width: 100%;
  }
}
@media screen and (max-width:480px) {
#event .box{
  background-image: url("../../../img/usr/80th/event_bg_sp.png");
    background-size: contain;
}
  #event .overview{
    flex-direction: column;
  }
  #event .overview dd{
    margin: 5px 0 0 0; 
    padding: 5px;
  }
}
/* campaign */
#campaign{
}
#campaign .box_inner{
  padding: 80px clamp(1.25rem, 0.833rem + 2.08vw, 1.875rem) clamp(1.875rem, -0.208rem + 10.42vw, 5rem);
}
#campaign .campaign_img{
  margin: 0 auto;
  max-width: 1085px;
  padding-top: 311px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../../../img/usr/80th/balloon@2x.png") center top no-repeat;
  background-size: contain;
}
#campaign .campaign_img .hayacomi img{
  width: 391px;
}
#campaign .campaign_img .hayakawa img{
  width: 240px;
}
#campaign .campaign_img .times{
  margin: 0 40px;
  display: block;
  flex-shrink: 0;
  width: 50px;
  height: 6px;
  background-color: #333333;
  position: relative;
  transform: rotate(45deg);
}
#campaign .campaign_img .times::after{
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 6px;
  background-color: #333333;
  transform: rotate(-90deg);
}
#campaign .txt{
  margin: clamp(1.875rem, 0.625rem + 6.25vw, 3.75rem) auto;
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  max-width: 1040px;
  line-height: 2.2;
  font-weight: 500;
  letter-spacing: 0.08em;
}
#campaign .txt .em{
  color: var(--main-color);
  font-size: clamp(1rem, 0.667rem + 1.67vw, 1.5rem);
  line-height: 1.8;
}
#campaign .txt .mark{
  padding: 0 0.4em;
  background-color: #feff66;
  font-size: clamp(1rem, 0.667rem + 1.67vw, 1.5rem);
  line-height: 1.8;
}
#campaign .overview{
  margin: 10px auto 0;
  max-width: 1040px;
  display: flex;
  align-items: baseline;
}
#campaign .overview dt{
  margin: 0;
  padding: 5px;
  background-color: var(--main-color);
  color: #FFFFFF;
  width: 8em;
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
#campaign .overview dd{
  margin: 0 0 0 clamp(0.938rem, 0.313rem + 3.13vw, 1.875rem);
  padding: 5px;
  font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.25rem);
  letter-spacing: 0.08em;
}
#campaign .overview dd span{
  font-size: clamp(1.25rem, 0.583rem + 3.33vw, 2.25rem);
  font-weight: 500;
}
@media screen and (max-width:1200px) {
  #campaign .campaign_img{
    padding-top: calc(100% * (311 / 1085));
  }
}
@media screen and (max-width:480px) {
  #campaign .campaign_img{
    padding: 0;
    flex-direction: column;
    background: none;
  }
  #campaign .campaign_img .hayacomi img{
    width: 195.5px;
  }
  #campaign .campaign_img .hayakawa img{
    width: 120px;
  }
  #campaign .campaign_img .times{
    margin: 30px;
    width: 30px;
    height: 3px;
  }
  #campaign .campaign_img .times::after{
    width: 30px;
    height: 3px;
  }
  #campaign .overview{
    flex-direction: column;
  }
  #campaign .overview dd{
    margin: 5px 0 0 0; 
    padding: 5px;
  }
}
/* goods */
#goods{
}
#goods .box_inner{
  padding: clamp(3.125rem, 1.875rem + 6.25vw, 5rem) clamp(1.25rem, 0.833rem + 2.08vw, 1.875rem) 30px;
  min-height: inherit;
}
#goods .banner{
  margin: 0 auto;
  max-width: 1040px;
}
#goods .txt{
  margin: 10px auto 0;
  padding: 0;
  text-align: center;
  color: var(--main-color);
  font-size: clamp(0.75rem, 0.5rem + 1.25vw, 1.125rem);
  letter-spacing: 0.08em;
}
#goods .txt a{
  border-bottom: solid 1px;
  padding-bottom: clamp(0rem, -0.083rem + 0.42vw, 0.125rem); /* 2 - 0 */
}
/* character */
#character .box{
  padding: clamp(5rem, -1.697rem + 13.38vw, 7.5rem) 20px clamp(1.25rem, -15.493rem + 33.44vw, 7.5rem);
}
#character .box_inner{
  margin: 0 auto;
  padding: clamp(0.938rem, 0.313rem + 3.13vw, 1.875rem);
  background-color: #ffce63;
  max-width: 1040px;
  border-radius: 15px;
}
#character h4{
  margin: 20px auto 0;
  text-align: center;
  color: var(--main-color);
  font-size: clamp(0.875rem, 0.042rem + 4.17vw, 2.125rem); /* 34 - 12 */
  letter-spacing: 0.08em;
  position: relative;
}
#character h4 .wrap{
  position: relative;
}
#character h4 .wrap::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: clamp(1.5rem, 7.5vw, 3.75rem); /* 60 -24 */
  width: 2px;
  display: block;
  background-color: var(--main-color);
  transform: translateX(-30px) rotate(-30deg);
}
@media screen and (max-width:480px) {
  #character h4 .wrap::before{
    left: 12px;
  }
}
#character h4 .wrap::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: clamp(1.5rem, 7.5vw, 3.75rem); /* 60 -24 */
  width: 2px;
  display: block;
  background-color: var(--main-color);
  transform: translateX(clamp(0.938rem, 0.313rem + 3.13vw, 1.875rem)) rotate(30deg); /* 30 - 15 */
}
#character h4 span.em{
  margin-right: 0.05em;
  font-size: clamp(1.25rem, -0.417rem + 8.33vw, 3.75rem); /* 60 - 20 */
}
#character .intro{
  margin: clamp(0.625rem, 0.208rem + 2.08vw, 1.25rem) auto clamp(1.25rem, -0.417rem + 8.33vw, 3.75rem); /* 20 - 10 / 60 - 20 */
  max-width: 630px;
  font-size: clamp(0.875rem, 0.708rem + 0.83vw, 1.125rem); /* 14 - 18 */
  line-height: 1.8;
}
#character .intro_area{
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 0;
  padding-bottom: clamp(2.5rem, -12.569rem + 30.1vw, 8.125rem); /* 130 - 40 */
}
#character .intro_area::before{
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: clamp(18.75rem, -1.342rem + 40.13vw, 26.25rem); /* 420 - 300 */
  height: clamp(18.75rem, -1.342rem + 40.13vw, 26.25rem);
  background-color: #FFFFFF;
  border-radius: 100%;
  transform: translateX(-50%);
  z-index: -1;
}
#character .intro_area .profile{
  margin: 0 auto;
  width: 100%;
  min-height: clamp(18.75rem, -1.342rem + 40.13vw, 26.25rem); /* 420 - 300 */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#character .intro_area .profile dt{
  margin: 0 auto;
  padding: 0;
  position: absolute;
  left: clamp(1.25rem, -4.61rem + 11.71vw, 3.438rem); /* 55 - 20 */
  top: 30px;
  width: clamp(12.5rem, -12.113rem + 49.16vw, 21.688rem);/* 347-200 */
}
#character .intro_area .profile dt .sign{
  text-align: center;
  font-size: 0.75rem;
  margin-right: 40px;
}
#character .intro_area .profile dd{
  margin: 0 auto;
  width: clamp(12.5rem, 1.617rem + 21.74vw, 16.563rem); /* 265 - 200 */
}
#character .intro_area .profile dd h5{
  margin: 0;
  padding: 0;
  color: var(--main-color);
  font-size: clamp(1.25rem, -0.425rem + 3.35vw, 1.875rem); /* 30- 20 */
  letter-spacing: 0.08em;
}
#character .intro_area .profile dd .txt{
  margin: 0 auto 1em;
  letter-spacing: 0.08em;
  font-size: clamp(0.75rem, 0.08rem + 1.34vw, 1rem); /* 16- 12 */
}
#character .intro_area .point{
  margin: 0 auto;
  padding: 0;
  width: clamp(14.375rem, -4.378rem + 37.46vw, 21.375rem);/* 342 - 230 */
  list-style: none;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
}
#character .intro_area .point li{
  position: relative;
  display: flex;
}
#character .intro_area .point li img{
  filter: drop-shadow(0px 0px 5px rgba( 51,  51, 51, 0.5));
}
#character .intro_area .point li p{
  margin: 0 auto;
  padding: 0;
  color: var(--main-color);
  font-size: 0.75rem;
}
#character .intro_area .point li.gizagiza{
  padding-right: clamp(7.5rem, 4.151rem + 6.69vw, 8.75rem); /* 140 - 120 */
}
#character .intro_area .point li.gizagiza p{
  position: absolute;
  width: clamp(6.875rem, 5.201rem + 3.34vw, 7.5rem); /* 120 - 110 */
  padding-bottom: clamp(4.375rem, 1.026rem + 6.69vw, 5.625rem); /* 90 - 70 */
  top: 50%;
  right: 0;
  background: url("../../../img/usr/80th/arrow_l.svg") left bottom no-repeat;
  background-size: clamp(2.5rem, 0.156rem + 4.68vw, 3.375rem) auto; /* 54 - 40 */
  transform: translateY(-50%);
}
#character .intro_area .point li.gizagiza p span{
  display: inline-block;
}
#character .intro_area .point li.pocket{
  padding-left: clamp(6.875rem, 3.526rem + 6.69vw, 8.125rem); /* 130 - 110 */
}
#character .intro_area .point li.pocket p{
  position: absolute;
  width: clamp(8.125rem, -10.293rem + 36.79vw, 15rem); /* 240 - 130 */
  bottom: 0;
  left: 0;
  padding: clamp(3.125rem, -0.224rem + 6.69vw, 4.375rem) clamp(1.25rem, -12.145rem + 26.76vw, 6.25rem) clamp(0rem, -3.349rem + 6.69vw, 1.25rem) 0;
  background: url("../../../img/usr/80th/arrow_r.svg") 40px top no-repeat;
  background-size: clamp(3.125rem, -0.224rem + 6.69vw, 4.375rem) auto; /* 70 - 50 */
}
#character .intro_box{
  margin: 0 auto;
  color: #FFFFFF;
  max-width: 900px; /* 240 - 130 */
  padding: 20px;
  background-color: var(--main-color);
  font-size: clamp(0.875rem, 0.708rem + 0.83vw, 1.125rem); /* 14 - 18 */
  border-radius: 20px;
  text-align: center;
}
#character .intro_box span{
	margin: 0 auto;
	display: inline-block;
	text-align: left;
}
@media screen and (max-width:800px) {
  #character .box{
    padding: 80px 20px 20px;
  }
  #character .intro_area{
    flex-direction: column;
  }
  #character .intro_area::before{
    display: none;
  }
  #character .intro_area .profile{
    min-height: auto;
    position: relative;
  }
  #character .intro_area .profile dt{
    margin: 0;
    position: relative;
    top: 0;
    left: 0;
    width: 50%;
    padding-right: 10px;
  }
  #character .intro_area .profile dt .sign{
    font-size: 0.5rem;
    margin-right: 0;
  }
  #character .intro_area .profile dd{
    margin: 0;
    width: 50%; /* 265 - 200 */
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
  }
  #character .intro_area .profile dd .txt{
    margin: 0 auto;
  }
  #character .intro_area .point{
    margin: 20px auto 0;
    width: auto;/* 342 - 230 */
    flex-direction: row-reverse;
    position: inherit;
  }
  #character .intro_area .point li{
    margin: 0 5px;
  }
}
@media screen and (max-width:640px) {
  #character .intro_area .profile{
    flex-direction: column;
  }
  #character .intro_area .profile dt{
    width: auto;
    padding-right: 0;
  }
  #character .intro_area .profile dd{
    width: 100%;
    padding: 20px;
  }
  #character .intro_area .point{
    flex-direction: column;
  }
  #character .intro_area .point li{
    margin: 10px 0;
  }
  #character .intro_area .point li{
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
  }
  #character .intro_area .point li p{
    font-size: 0.75rem;
  }
  #character .intro_area .point li.gizagiza{
    padding-right: 0;
  }
  #character .intro_area .point li.gizagiza p{
    position: inherit;
    width: auto;
    padding-bottom: 0;
    top: 0;
    right: 0;
    background: none;
    transform: none;
  margin-top: 20px;
  }
  #character .intro_area .point li.pocket{
    padding-left: 0;
      flex-direction: column-reverse;
  }
  #character .intro_area .point li.pocket p{
    position: inherit;
    width: auto;
    bottom: 0;
    left: 0;
    background: none;
    transform: none;
    padding: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width:480px) {
  #character .box{
    padding: 60px 20px 20px;
  }
  #character .sec_title .sub{
    letter-spacing: -0.05em;
  }
}
/* footer */
#footer{
  margin: clamp(3.75rem, 2.083rem + 8.33vw, 6.25rem) auto 0; /* 100 - 60 */
  padding: 0 var(--side-padding) 30px;
  text-align: center;
}
#footer a{
  color: #FFFFFF;
}
#footer .sns{
  margin: 0 auto;
  padding: 0 clamp(0.938rem, 0.313rem + 3.13vw, 1.875rem); /* 30 - 15 */
	max-width: clamp(15.625rem, 9.792rem + 29.17vw, 24.375rem); /* 390 - 250 */
	height: clamp(2.5rem, 1.667rem + 4.17vw, 3.75rem); /* 60 - 40 */
  list-style: none;
display: flex;
	justify-content: space-around;
	align-items: center;
	background-color: #1f7ab6;
	border-radius: 30px;
}
#footer .sns li{
  margin: 10px;
  padding: 0;
}
#footer .sns li a{
  display: flex;
  align-items: center;
}
#footer .footer_logo{
  margin: clamp(1.875rem, 1.042rem + 4.17vw, 3.125rem) auto 0; /* 50 - 30 */
}
#footer .footer_logo img{
  width: clamp(6.875rem, 4.042rem + 14.17vw, 11.125rem); /* 178 - 110 */
}
#footer .contact{
  margin: 20px auto 0;
  font-size: 0.75rem;
  color: #FFFFFF;
}
#footer .contact a{
  border-bottom: solid 1px;
  padding-bottom: clamp(0rem, -0.083rem + 0.42vw, 0.125rem); /* 2 - 0 */
}
#footer .copyright{
  margin: 10px auto 0;
  font-size: clamp(0.625rem, 0.542rem + 0.42vw, 0.75rem); /* 12- 10 */
  color: #FFFFFF;
  display: block;
}
/* pagetop */
#pagetop{
  position: fixed;
  right: 30px;
  bottom: 30px;
  margin: 0;
  z-index: 2;
  opacity: 0.9;
}
#pagetop a{
  position: relative;
  display: inline-block;
  padding: 20px;
  border-radius: 50%;
  background: var(--main-color);
  border: solid 1px #FFFFFF;
  top: 5px;
}
#pagetop a::before{
  content: '';
  width: 12px;
  height: 12px;
  border-top: solid 3px #FFFFFF;
  border-right: solid 3px #FFFFFF;
  position: absolute;
  left: 14px;
  transform: rotate(-45deg);
  top: 15px;
}
@media screen and (max-width:800px) {
  #pagetop{
    right: 20px;
    bottom: 20px;
  }
}
