*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

a {
    text-decoration: none;
    display:block;
    text-align: center;
}
.btn, 
a.btn, 
button.btn {
  /*font-size: 1.6rem;*/
  font-weight: 700;
  line-height: 1.5;
  /*position: relative;*//*バーガーになるとボタン邪魔*/
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/*画像共通*/
img {
    /*width: 400px;*//*関係させたくないimgにかかる*/
    max-width:100%;
    height:auto;
    vertical-align:bottom;
    border:0;
}




/*全体レイアウト*/




body{
    background-image:url(../images/bg.png);
}

#Container {
    width:100%;
    margin:-50px auto 0;
}
.FixContainer {
    max-width:1280px;
}

/*ヘッダー設定*/

.headerLOGO img {
    width: 20%;
    height: auto;
    text-align: left;
    position:fixed;
    display: flex;
    z-index: 8;
    margin-top:4%;
    margin-left: -10%;
}

header .pc-nav, header .pc-nav ul {
    z-index: 8888;
    width:100%;
    position:fixed;
    background: #fff;
    border-radius: 25px;
    width: 820px;
    height: 50px;
    top:70px;
    right: 50px;
}
 header .pc-nav ul {
    display:flex;
    font-size:1.8rem;
    line-height:50px;
    justify-content: space-around;
    border:#f4565c solid;
 }
 header .pc-nav ul li a {
    color:#501900;
    display: block;
    line-height:47px;
    transition: .3s;
  -webkit-transform: scale(1);
  transform: scale(1);
 }
header .pc-nav ul li a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    color: #f4565c;
}
.sp-nav{
    display: none;
}


/*メインコンテンツ*/
/*↓.mainになってたので修正(済み)*/
main{
    width:100%;
}

/*メインビジュアルアニメイト？*/
.aspect-ratio-block {
    width: 100%;
        aspect-ratio: 1280 / 1200;
         text-align: center;
        height: auto;
        margin-top: 90px;
        margin-left: auto;
        margin-right: auto;
      
    }

/*メイン画像*/
.CharactorImg {
    width:100%;
}
.chara{
    width: 50%;
    display: block;
    margin: 0 auto;
}

/*section共通部分*/
.contents {
    width:100%;
    margin:0 auto;
}



/*タイトル*/
h3 {
    display:flex;
    flex-direction:column;
    align-items:center;
    color:#501900;
}

h3 img{
    margin-top: 200px;
    width: 500px;
    height: auto;
    justify-content: center;
}




/*------character.index----------*/
/*ごろうさんずしょうかいページ*/
.caption {
    text-align: center;
    font-size: 2rem;
    line-height: 50px;
    color: #501900;
    margin-top: 50px;
}
/*雲こごろう*/
.illust06 {
    position: absolute;
    left: 30px;
    top:400px;
    text-align: left;
}
.illust06 img{
    height: auto;
    animation: illust06 3s infinite ease-in-out;
}

/*雲こごろうのアニメーション*/
@keyframes illust06 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

/*気球だいごろう*/
.illust07 {
    position: absolute;
    right: 30px;
    top:300px;
    text-align: right;
}
.illust07 img{
    height: auto;
    animation: illust07 5s infinite ease-in-out;
}

/*気球だいごろうのアニメーション*/
@keyframes illust07 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}



.goro-sans-tite{
    margin-bottom: 50px;
}

.goro-sans-tite p{
    font-size: 2.5rem;
    color: #501900;
    text-align: center;
    margin-top: 200px;
}

.goro-sans tr td img{
    width: 70%;
    background-color: #fff;
    border-radius: 50%;
    transition: .3s;
    -webkit-transform: scale(1);
  transform: scale(1);
}
.goro-sans img:hover{
    transform:scale(1.1);
}
/*名前*/
.name{
    display: flex;
    justify-content:center;
    color: #501900;
    font-size: 2rem;
    margin-top: 20px;
}





/*その他キャラクター*/
.others-tite{
    margin-bottom: 50px;
}

.others-tite p{
    font-size: 2.5rem;
    color: #501900;
    text-align: center;
    margin-top: 100px;
}

.others ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 70px;
}
.others li {
    width: calc(100%/4);
}

.others ul li img{
    width: 60%;
    height: auto;
    background-color: #fff;
    border-radius: 50%;
    transition: .3s;
    -webkit-transform: scale(1);
  transform: scale(1);
}
.others img:hover{
    transform:scale(1.1);
}


/*キャラクターデザインについて*/
.design_info{
    display: flex;
    margin: 0px 100px;
    margin-top: 100px;
}
.design_info img{
    width:50%;
    height: auto;
}
.design_text{
    font-size: 1.5rem;
    line-height: 20px;
    color: #501900;
    margin-left: 30px;
}
.design_text a{
    font-size: 2rem;
    color: #e48954;
}





/*------book.index----------*/
/*本の詳細ページ*/
.books-area {
    display: flex;
    margin: 0px 150px;
    margin-top: 100px;
}
.books-area img{
    width:50%;
    height: auto;
    border: solid #656565;
}
.books-area .text-area {
    margin: 0 0 0 27px;
    padding: 0;
}
.title-book {
    font-size: 3rem;
    color: #501900;
}
.books-text {
    font-size: 1.7rem;
    line-height: 25px;
    color: #501900;
    margin-left: 2px;
    margin-top: 30px;
}
.web2 a{
    font-size: 2rem;
    color: #e98351; 
    margin-top: 20px;
    text-align: left;
    transition: .3s;
 }

.web2 a:hover {
    color: #f4565c;
}


/*ボタンデザイン*/
.Btn {
    margin:0 auto;
    margin-top: 30px;
}
a.btn--red.btn--cubic {
    background-image: url(../images/btn@2x.png);
    background-size:100%;
    background-repeat:no-repeat;
    width: 230px;
    height: 67px;
    border-bottom: 8px solid #9f000c;
    color:#fff;
    line-height:10px;
  }
  
  a.btn--red.btn--cubic:hover {
    margin-top: 3px;
    border-bottom: 7px solid #9f000c;
  }
  
  a.btn--radius {
    border-radius: 100vh;
  }
  
  .btn-text{
    font-size: 14px;
    margin-top: 15px;
    color: #fff;
  }





/*------news.index----------*/
/*NEWS-info1*/
#Info {
    width:1000px;
    margin:0 auto;
    display:flex;
    flex-wrap: wrap;
    margin-top:100px;
    gap:40px;
    column-gap: 20px;
    justify-content: center;
}
#Info dl {
    width:297px;
    height:296px;
    background:white;
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:20px 0 0;
    border-radius: 14px;
}
#Info dl dt {
    width:250px;
    height:140px;
    background:lightgrey;
}
#Info dl dt img {
    width:250px;
    height:140px;
    background:lightgrey;
}
#Info dl dd {
    width:250px;
    height:25px;
    font-size:1,3rem;
    color:#501900;
    line-height:25px;
}
#Info dl dd:nth-child(3) {
    height:auto;
    font-size:1.6rem;
}
#Info dl dd:last-child {
    font-size: 1.4rem;
    text-align: right;
    margin-top: 20px;
}
#Info dl dd:last-child a{
    transition: .3s;
    color:#501900;
    text-align: right;
}
#Info dl dd:last-child a:hover{
    
    color: #f4565c;
}

.tit_lineup {
    width:100%;
}





.tit_lineup {
    width:100%;
}



/*------news00.index----------*/
/*NEWSの中身*/
.news-area {
    width: 60%;
    height: auto;
    margin: 0 auto;
    margin-top: 100px;
}
.news-area .thumbnail img{
    border: solid #ffffff;
}
.article-titl {
    font-size: 3rem;
    line-height: 40px;
    color: #501900; 
    margin-top: 10px;
}
.article-day {
    font-size: 1.6rem;
    color: #5e3c2c; 
    margin-top: 10px;
}
.article-text {
    font-size: 1.7rem;
    line-height: 25px;
    color: #501900;
    margin-left: 2px;
    margin-top: 30px;
}
.booklink a{
    font-size: 2rem;
    color: #501900; 
    margin-top: 50px;
    text-align: right;
    transition: .3s;
}
.booklink a:hover {
    color: #f4565c;
}
.web a{
    font-size: 2rem;
    color: #e98351; 
    margin-top: 20px;
    text-align: right;
    transition: .3s;
 }


.QRimg{
    display: flex;
    width: 25%;
    height: auto;
}
.QRimg img{
    margin-right: 100px;
    margin-top: 70px;
}
.kabegami-area {
    display: none;
}








footer {
    width: 100%;
    height:100%;
    max-width: 100%;
    background:url(../images/footer.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100%;
    position: relative;
}
.aspect-ratio-block2 {
    width: 100%;
    /*aspect-ratio: 1280/ 800;*/
    width:calc(1280vw / 12.8);
    height:calc(900vw / 12.8);
}
.footer-menu {
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 350px;
    height: 150px;
}
.LOGO{
    width: 348px;
    /*height: 110px;*/
    height:135px;
    padding:0 0 20px;
}
.LOGO a {
    width:100%;
    display:block;
}
.contact {
    width:100%;
}
.contact ul{/*横並びにした*/
    /*display: flex;*/
    /*width: 450px;*/
    height: 3rem;
    /*padding-left: 20px;*/
    /*padding-top: 30px;*/
}
.contact ul li {
    display:inline-block;
}
.contact a{
    font-size: 1.8rem;
    line-height: 3rem;
    color: #501900;
    margin-right: 50px;/*横並びの隙間*/
    padding-top: 20px;
    transition: .3s;
}
.contact a:hover{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    color: #f4565c;
}
.copy{
   width: 100%;
   position: absolute;
   bottom: 5%;
}


.copyright {
    width: 100%; 
    color: #501900;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 10px;
  }

  header .sp-nav{
    display: none;
}





/*タブレットのナビがロゴに被らないように調整*/
@media screen and (min-width:0) and (max-width:1200px) {
    header .pc-nav, header .pc-nav ul {
        width: 700px;
        height: 50px;
        top:50px;
        right: 20px;
    }
     header .pc-nav ul {
        font-size:1.5rem;
     }
     .headerLOGO img {
        margin-left: 36px;
        margin-top: 80px;
    }

     /*キャラクターデザインについて*/
    .design_info{
        display: block;
        margin: 0px 70px;
        margin-top: 100px;
    }
    .design_info img{
        width:500%;
    }
    .design_text{
        font-size: 1.7rem;
        margin-top: 20px;
        margin-left: 0px;
    }


     
     
  }




/*------タブレットサイズはスマホサイズの2倍の960p-------*/
  /*for SP-Tab*/
  @media screen and (min-width:0) and (max-width:960px) {
    .headerLOGO img {
        width: 190px;
        height: auto;
        margin-left: 17px;
        margin-top: 80px;
    }

    header .pc-nav{
        display: none;
    }

    header .sp-nav{
        display: block;
        
    }
    .sp-nav{
        width: 100%;
    }

    .menu01{
        margin: 0;
        padding: 0;
        width: 100%;
        height:100vh;
        background-color:rgba(17, 21, 71, 0.9);
        background-image: url(../images/bargar_img.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center bottom;
        position: fixed;
        top:0;
        right: -100%;
        opacity: 0.7;
        transition: 0.5s;
        z-index: 10;
    }
    
    .menu01 li a{
        font-size: 2.3rem;
        color: #ffffff;
        line-height:40px;
        margin-top: 80px;
        font-weight:bold;
        text-align: center;
    }


/*見出しの大きさ*/
.product ul li img {
    width: 300px;
}
    

 
    
   /*バーガー*/
   #menu-btn-check {
    display: none;
}
.menu-btn {/*メヌーの位置*/
    position: fixed;
    top: 40px;
    right: 30px;
    display: flex;
    width: 30px;
    height: 25px;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
}
.menu-btn span,.menu-btn span:before,.menu-btn span:after  {/*棒の長さ高さ色*/
    content: "";
    width: 30px;
    height: 5px;
    display: block;
    background-color: #501900;
    transition: 0.3s;
    position: absolute;
    z-index: 999999;
    border-radius: 3px;
}
.menu-btn span {
    transition: 0.1s;
}
.menu-btn span:before {
    bottom: 10px;
}
.menu-btn span:after {
    top: 10px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color:#ffffff;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #ffffff;
}
#menu-btn-check:checked ~ .menu01 {
    right: 0%;
    opacity: 1;
}
#menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    visibility: hidden;
}
#menu-btn-check:checked ~ #menu-bg {
    visibility: visible;
}
/*バーガー*/
    







/*ボタンデザイン*/
.Btn {
    height:85px;
}
a.btn--red.btn--cubic {
    width: 230px;
    height: 67px;
    border-bottom: 8px solid #9f000c;
    line-height:10px;
}
  
.Btn .btn-text{
    font-size: 14px;
}
    

    h2{
    margin-bottom: 10px;
    margin-top: 0;
    }
    h3{
       font-size: 1.5rem; 
    }


/*タイトル*/
h3 img{
    width: 300px;
}




/*------character.index----------*/
/*ごろうさんずしょうかいページ*/
.caption {
    text-align: center;
    font-size: 1.6rem;
    line-height: 30px;
    color: #501900;
    margin-top: 50px;
    padding: 0px 50px 0px 50px;
}
.captiontext{
    position: relative;
}

/*雲こごろう*/
.illust06 {
    position: absolute;
    left: 10px;
    top:270px;
    text-align: left;
}
.illust06 img{
    width: 90px;
    height: auto;
    animation: illust06 3s infinite ease-in-out;
}


/*気球だいごろう*/
.illust07 {
    right: 0px;
    top:350px;
    text-align: right;
}
.illust07 img{
    width: 100px;
    height: auto;
}



.goro-sans-tite{
    margin-bottom: 50px;
}


.goro-sans tr td img{
    width: 80%;
}
    
/*名前*/
.name{
    display: block;
    justify-content:center;
    color: #501900;
    font-size: 2rem;
    margin-top: 20px;
}



    /*その他キャラクター*/
.others-tite{
    margin-bottom: 50px;
}

.others-tite p{
    font-size: 2.5rem;
}

.others ul{
    display: flex;
    flex-wrap: wrap;
    row-gap: 70px;
}
.others li {
    width: calc(100%/2);
}

.others ul li img{
    width: 60%;
    height: auto;
}






/*キャラクターデザインについて*/
.design_info{
    display: block;
    margin: 0px 50px;
    margin-top: 100px;
}
.design_info img{
    width:500%;
}
.design_text{
    font-size: 1.6rem;
    margin-top: 20px;
    margin-left: 0px;
}



/*------book.index----------*/
/*本の詳細ページ*/

.books-area {
    display: block;
    margin: 0px 20px;
    margin-top: 50px;
}
.books-area img{
    width:400px;
    height: auto;
}
.books-area .text-area {
    margin: 0 0 0 0px;
    padding: 0;
}
.title-book {
    font-size: 2.4rem;
    color: #501900;
    margin-top: 20px;
}
.books-text {
    font-size: 1.7rem;
    line-height: 25px;
    color: #501900;
    margin-left: 2px;
    margin-top: 30px;
}



/*------info.index----------*/
/*NEWS*/
#Info {
    display:block;
    flex-wrap: wrap;
    justify-content:space-between;
    margin-top:100px;
    width: 297px;
}

  
#Info dl{
    margin-top: 30px;
}



  



/*------news00.index----------*/
/*NEWSの中身*/
.news-area {
    width: 85%;
    height: auto;
    margin: 0 auto;
    margin-top: 50px;
}
.article-titl {
    font-size: 2rem;
    line-height: 25px;
}
.article-day {
    font-size: 1.4rem;
}
.article-text {
    font-size: 1.5rem;
    line-height: 25px;
}
.QRimg{
    display: none;
}
.kabegami-area {
    display: flex;
    gap: 30px;
}
.kabegamiimg1 {
    width: 40%;
    height: auto;
    margin-top: 20px;
}
.kabegamiimg2 {
    width: 40%;
    height: auto;
    margin-top: 20px;
}
.kabegamiimg1 img{
    border: solid #656565;
}
.kabegamiimg2 img{
    border: solid #656565;
}






.footer-menu {
    /*position: absolute;
    bottom: 30%;
    left: 10%;
    width: 300px;
    height: 100px;*/
}
.LOGO{
    width: 150px;
    /*height: 20px;*/
    margin:0 0 10% calc(30vw / 9.6);
    padding:26.5% 0 0;
}
.contact {
    /*width: 200px;*/
    margin:0 0 0 calc(30vw / 9.6);
}
.contact ul{
    /*width: 300px;*/
    padding-top: 0px;
}
.contact a{
    font-size: 1.6rem;
    letter-spacing: -1px;
    line-height: 2rem;
    padding-top: 0px;
}













}