@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&display=swap');

p,h2{
    font-family: 'Noto Sans JP', sans-serif;
}

html { 
    font-size: 100%;
    max-width: 1200px;
  margin: 0 auto;
  background: #FFF; /* Fills the page */
  position: relative; /* Fix for absolute positioning */
}

/* ハンバーガーメニュー */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #C73C3F;
    border-radius: 50%;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#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);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

/* ハンバーガーメニューのメニュー */
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content {
    width: 30%;
    height: auto%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #e87475;
    transition: all 0.5s;/*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
    left: 70%;/*メニューを画面内へ*/
}


body{
    font-family: "Yu Gothic Medium","游ゴシック Medium","YuGothic","游ゴシック体","ヒラギノ角ゴ Pro W3",sans-serif;
    line-height: 1.7; 
    color: #432;
}

a{
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*  header  */

.logo {
    width: 100px;
    margin-top: 14px;
    margin-left: 10px;
}

.page-header{
    display:flex;
    /*　両端の設定の指定 */
    justify-content: space-between;
}

.wrapper {
    margin: 0 auto;
    padding: 0 4%;
}




/*　冒頭文 */

.op-sentence {
    margin:10px 50px 30px 50px;
    text-align: center;
}


/*　フェードイン　*/
/*左から右にフェードイン*/

.fade{ 
  font-size:40px;
  opacity:0;
  animation-name: fadeIn; /*←@keyframesにも同じ名前を記述*/
  animation-duration: 2s; 
  animation-fill-mode: forwards; 
}
@keyframes fadeIn {  /*←animation-nameにも同じ名前を記述*/
0% {
  opacity: 0;
  transform: translateX(-20px);
}
 100% {
  opacity: 1;
} 
}


.left-to-right {
  opacity: 0.1;
  transform: translateX(-20px);
  transition: all 2s;
}
.left-to-right.scrollin {
  opacity: 1;
  transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0.1;
  transform: translateY(20px);
  transition: all 1s;
}
.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/* ナビゲーション */
#menu{
  list-style-type: none;
  height: 40px;
  margin-bottom: 10px;
  padding: 0;
  background: #C73C3F;
}
#menu li{
    z-index: 70;
  position: relative;
  width: 25%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#menu li a{
  display: block;
  margin: 0;
  padding: 15px 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  /* text-shadow: 3px 3px 5px #aaa;*/
}
#menu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
#menu li:last-child ul{
  left: -100%;
  width: 100%
}
#menu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#menu li ul li a{
  padding: 13px 15px;
  background: #D1A045;
  text-align: left;
  font-size: 0.7rem;
  font-weight: normal;
}
#menu li:hover > a{
  background: #D1A045;
}
#menu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-bottom: 1px solid #fff;
}
#menu li:hover ul li:first-child{
  border-top: 0;
}
#menu li:hover ul li:last-child{
  border-bottom: 0;
}

/*  全体  */

.home-content {
    background-color: #FFF;
}


.header-img {
    background-size: cover;
    background-repeat: no-repeat;
}

/*  各賞のコンテンツ内容  */

.award-contents {
    font-size: 4rem;
    font-weight: normal;
}

/*  メダルとタイトル  */

.award-content-header{
    position: relative;
    padding-top: 4px;
    margin-bottom: 40px;
}

.award-wrapper {
    padding-top: 10px;
    background-color:white;
}

.award-wrapper h1 {
    padding:30px;
    text-align: center;
}

.blog-title{
    font-size: 2.5rem;
    margin-top: 30px;
    margin-left: 150px;
    color:#595959;
    text-align: left;
}

.blog-title a {
color:#595959;
text-decoration:underline;
}

.rensai-box a {
color:#595959;
text-decoration:underline;
font-weight: bold;
    font-size: 1.1rem;
}

p {
    font-size: 1.1rem;
}

.rensai-here {
    font-weight: bold;
}


.blog-eyecatch{
    padding: 10px 60px 10px 60px;
}
.award-content {
    margin-top:50px;
    padding:5px;
    display: flex;
}

.award-title img {
    width: 70%;
    height: auto;
    margin-top: 30px;
    margin-left: 150px;
    text-align: left;
    object-fit: contain;
}

.award-title h2 {
    text-align: left;
    padding-left: 30px;
}

.medal {
/*    transform: rotate(20deg);*/
    width: 180px;
    height: 180px;
    position: absolute;
    display: flex;
    padding: 10px;
}

.award-content-header{
    margin-bottom:80px;
}

/* 第一話リンク */
.rensai-box{
    margin: 10px 60px 10px 60px;
 padding: 30px;
/* width: 90%;
 border: 1px solid #ccc; /* 枠線 */
 background-color: #fff; /* 背景色 */
 box-shadow: 1px 1px 10px #ccc;

}


.rensai-title{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
}

.rensai-btn-container {
    margin: 0 0 0 auto;
}

a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  background: #D1A045;
  border: 1px solid #D1A045;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 45px 0 25px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
}
a.btn_03:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
}
a.btn_03:hover {
  background: #fff;
  color: #D1A045;
}
a.btn_03:hover:before {
  border-top: 2px solid #D1A045;
  border-right: 2px solid #D1A045;
}

.rensai-btn-container{
    font-size: 0.9rem;
}
.sentence-and-btn,.footer-content p {
    font-size:1rem;
    margin-left:40px;
    color:#595959;
}

.each-rensai{
    display: flex;
    padding:5px;
    border-bottom: 1px dashed;
}

/* 受賞コメント */
.comment-box{
    padding: 0em 0.3em 0.3em 0.3em;
    margin: 0.5em 0.8em;
    color: #D1A045;
    background: #C73C3F;
    border-bottom: solid 6px #D1A045;
    border-radius: 9px;
}
.comment-box p {
    margin: 10px; 
    padding: 10px;
    color:white;
    overflow-wrap: break-word;
}

.comment-box h2 {
    font-style: italic;
    border-bottom: solid 2px #D1A045;
    display: inline-block;
    margin-bottom: 5px;
}

.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px #f7dea0;
  border-radius: 50%;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #f7dea0;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #f7dea0;
}

.says p {
  margin: 0.4rem;
  padding: 0;
  font-size: 1rem;
}

/* ボタン */

a.btn--goblog {
  color: #fff;
  background-color: #F9E2DE;
  border-bottom: 5px solid #E5778C;
}

a.btn--goblog:hover {
  margin-top: 3px;
  color: #fff;
  background: #F9E2DE;
  border-bottom: 2px solid #E5778C;
}

.btn,
a.btn,
button.btn {
    float:right;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    margin:1rem;
    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;
}


/* サイド */
.aside-content {
        position: relative;
}

footer {
    background: #595959;
    text-align: center;
    padding: 26px;
    margin-top: 50px;
}

footer p {
    color:#fff;
    font-size: 0.875rem;

}








@media screen and (max-width: 480px){
    .header-content p {
        font-size: 0.8rem;
    }
    .award-title img {
        width: 80%;
        height: auto;
        margin-top: 30px;
        margin-left: 30px;
        text-align: left;
        object-fit: contain;
    }

    #menu-btn-check:checked ~ .menu-content {
        left: 50%;/*メニューを画面内へ*/
    }
    .menu-content {
        width: 50%;
    }
    
    .menu-content ul li a {
        font-size: 1rem;
    }
    #menu li a {
        font-size: 1rem;
    }


    .medal {
        width: 100px;
        height: 100px;
    }

    .award-title h2 {
        padding-left: 20px;
        padding-right: 5px;
    }

    .award-contents {
        font-size: 1rem;
    }

    .award-content {
    margin-top:10px;
}

    .blog-eyecatch{
        padding: 20px;
    }

    .sentence-and-btn {
    margin-left:5px;
}

 

    .rensai-box {
        margin:5px;
        padding:3px;
    }

    .each-rensai p {
        font-size: 0.9rem;
    }

    .rensai-title{
        margin-right: 5px;
        margin-left: 5px;
    }

    a.btn_03 {
        font-size: 0.7rem;
        padding: 0 3px 0 3px;
        width: 100px;
        height: 40px;
    }

    a.btn_03:before {
        right: 12px;
        margin-top: -4px;
    }

    .blog-title {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-left: 80px;
    }

    .award-content-header{
        margin-bottom:30px;
    }

    .sentence-and-btn p {
        font-size: 1rem;
    }

    .btn, a.btn, button.btn {
        font-size: 1.2rem;
    }
}


@media screen and (min-width:760px) {
    /*　画面サイズが1024pxからはここを読み込む　*/
  .content-wrapper {
          max-width: 1024px;
          margin-left: auto;
          margin-right: auto;
        }

    .sentence-and-btn p {
        font-size:1.1rem;
    }

    .btn,a.btn,button.btn {
        font-size: 1.2rem;
    }

    .comment-box p {
        font-size: 1.2rem;
    }

    .comment-box h2 {
        font-size: 1.5rem;
    }

    #menu li a{
/*        font-size: 1.2rem;*/
        padding:10px;
}


} 



 
.hana{
	position:absolute;
	height:0;
	width:0;
    border: 10px solid pink;
     transform:
      skew(
        calc((90deg - 70deg) / 2),
        calc((90deg - 30deg) / 2)
      ); /* calc((90deg - 欲しい角度) / 2) */
}
                        

summary{
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Noto Sans JP', sans-serif;
}

summary {
  position: relative;
  display: block; /* 矢印を消す */
  padding: 10px 10px 10px 30px; /* アイコンの余白を開ける */
  cursor: pointer; /* カーソルをポインターに */
  font-weight: bold;
  background-color: #F7E1AA;
  transition: 0.2s;
}
summary:hover {
  background-color: #F7E1AA;
}
summary::-webkit-details-marker {
  display: none;/* 矢印を消す */
}

/* 疑似要素でアイコンを表示 */
summary:before,
summary:after {
  content: "";
  margin: auto 0 auto 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
summary:before {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: #C0282E;
}
summary:after {
  left: 6px;
  width: 5px;
  height: 5px;
  border: 4px solid transparent;
  border-left: 5px solid #fff;
  box-sizing: border-box;
  transition: .1s;
}

/* オープン時のスタイル */
details[open] summary {
  background-color: #F8CD5E;
}
details[open] summary:after {
  transform: rotate(90deg); /* アイコンを回転 */
  left: 4px; /* 位置を調整 */
  top: 5px; /* 位置を調整 */
}

/* アニメーション */
details[open] .details-content {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}