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

h2 {
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 800;
    font-style: normal;
}

p {
    font-family: heisei-maru-gothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
}

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

/* ページトップ */
#page_top {
  width: 100px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #F7BB02;
  opacity: 0.6;
  z-index:100;
}
#page_top a {
  position: relative;
  display: block;
  width: 100px;
  height: 45px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: 'TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/* ハンバーガーメニュー */
.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: #feda00;
    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 10px;
}
.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: #ff5967;
    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: #67A5DA;
}
#menu li {
    z-index: 70;
    position: relative;
    width: 20%;
    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: #0065B2;
  text-align: left;
  font-size: 0.7rem;
  font-weight: normal;
}
#menu li:hover > a{
  background: #0065B2;
}
#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;
}

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

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

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

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

.heading08 {
	font-size: 26px;
}

.heading08 span {
	display: flex;
	align-items: center;
	color: #fea597;
	font-size: 18px;
	/* text-transform: uppercase; */
}

.heading08 span::before {
	content: '';
	display: inline-block;
	margin-right: 20px;
	width: 40px;
	height: 1px;
	background-color: #fea597;
}

.blog-title {
    padding: 1rem 1.5rem;
    border-left: 7px solid #ff5967;
}

.blog-name{
    font-size: 0.5rem;
     font-weight: bold; /* 太字に */
  font-style: italic; /* 斜体に */
}

.blog-title a {
    color:#fea597;
}

.story-content{
    display: flex;
/*    background-color: #F9E2DE; */
}

.story-ex{
    padding: 30px;
}

.author-title{
    padding: 50px;
}
.author {
    display: flex;
    align-items: center;
    /* margin-bottom: 16px; */
    padding-left: 10px;
}

.author-icons{
    padding: 0 50px;
    
}

.author-icons a{
    color: #595959;
}

.author img{
    width: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgb(0 0 0 / 24%);
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    background-color: #fff;
        margin-right: 10px;
}

.fa {
    padding: 10px;
}

.author-space img{
    width: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgb(0 0 0 / 24%);
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
    background-color: #fff;
        margin-right: 10px;
}

.author-space {
    display: flex;
}

.author-name {
    padding: 5px;
    font-size: 15px;
    flex: 1;
    color: #595959;
}

p {
    font-size: 1rem;
}

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


.blog-eyecatch{
    width: 900px;
    padding: 1rem 2rem;
/*    padding: 10px 60px 10px 60px; */
    filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.6));
}

.content {
    margin-top:50px;
    padding:5px;
    display: flex;
}

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


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

.content-header{
    margin-bottom:10px;
}

/* 第一話リンク */
.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 20px;
}

a.btn_03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  height: 50px;
  position: relative;
  background: #fea597;
  border: 1px solid ;
  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: #feda00;
}
a.btn_03:hover:before {
  border-top: 2px solid #feda00;
  border-right: 2px solid #feda00;
}

.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;
}



/* ボタン */

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

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

.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 {
    text-align: center;
    padding: 26px;
    margin-top: 50px;
}

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



@media screen and (max-width: 480px){
    .header-content p {
        font-size: 0.8rem;
    }
   

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

    .menu-content ul li a {
        font-size: 1rem;
    }
    #menu li a {
        font-size: 1rem;
    }

    .story-content {
    display: block;
    }

    .blog-eyecatch{
        width: 800px;
        padding: 0 20px;
    }

    .story-content{
        padding: 5px 5px 10px 5px;
    }

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

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

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

    .blog-title {
        font-size: 1.2rem;
    }

    .story-ex{
        padding: 10px 15px 5px 15px;
        font-size: 0.9rem;
    }

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

    .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) */
}
                        
