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

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

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

p,
h2 {
    /* font-family: 'Noto Sans JP', sans-serif; */
    font-family: heisei-maru-gothic-std, sans-serif;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.1rem;
}

img {
    max-width: 100%;
}

/* ハンバーガーメニュー */
.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: #67A5DA;
    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: #3584bb;
    transition: all 0.5s;
    /*アニメーション設定*/
}

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

/*  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 60px;
    /* text-align: center; */
    font-size: 1rem;
}


/*　フェードイン　*/
/*左から右にフェードイン*/
.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;
    background: #67A5DA;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu li {
    z-index: 70;
    position: relative;
    width: 20%;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#menu li > a {
    display: inline-block;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

#menu li ul {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0px;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #0065B2;
}

#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.85rem;
    font-weight: normal;
}

#menu li:hover>a {
    background: #0065B2;
}

#menu li:hover ul li {
    overflow: visible;
    height: 40px;
    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;
}

/* ページのトップへ移動 */
.pagetop {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: #67A5DA;
    /* border: solid 2px #000; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 90;
    opacity: 0.8;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

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

.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: 45px;
    margin-left: 190px;
    color: #595959;
    text-align: left;
}

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

.rensai-box a {
    text-decoration: underline;
    font-weight: bold;
}

.rensai-here {
    font-weight: bold;
    font-size: 1.12rem;
    margin-left: 50px;
}


.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;
    padding-top: 10px;
}

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


.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: flex-start;
    align-items: center;
    text-align: left; 
    flex: 1;
    margin: 0;
    padding-top : 3px;
    font-size: 1rem;
    line-height: 1;
    height: 50px;
}

.rensai-btn-container {
    margin-left: auto;
    font-size: 0.9rem;
}

a.btn_03 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #0065B2;
    border: 1px solid #0065B2;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 2px 45px 0 40px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-align: center;
    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: 15px;
    margin-top: -5px;
}

a.btn_03:hover {
    background: #fff;
    color: #0065B2;
}

a.btn_03:hover:before {
    border-top: 2px solid #0065B2;
    border-right: 2px solid #0065B2;
}

.sentence-and-btn {
    font-size: 1rem;
    margin-left: 40px;
    color: #595959;
}

.footer-content p {
    font-size: 1rem;
    color: #595959;
}


.each-rensai {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 5px;
    border-bottom: 1px dashed;
}

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

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

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

.balloon5 .chatting {
    width: 100%;
}

.name {
    font-size: 0.8rem;
    text-align: center;
    margin-top: -30px;
}

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

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

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

hr {
    border-top: 1px dashed #595959;
    /* 破線 */
    margin: 50px;
}

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

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

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

/* 過去の履歴 */

.history-p {
    font-size: 1.5rem !important;
    font-weight: bold;
    height: 38px;
    margin-bottom: 10px;
    color: #FFF !important;
    background-color: #67A5DA !important;
    margin: 40px 60px 10px 60px;
    padding-left: 25px;
}

.histories {
    margin: 60px 60px;
}

.history {
    display: flex;
}

.ogp-link {
    text-decoration: none !important;
    display: flex;
}

.ogp-body {
    width: 40%;
    border: 1px solid #e5e5e5;
    background-color: #FFFFFF;
    box-sizing: border-box;
    line-height: 1.3em;
    margin: 0px 50px 10px 50px;
    display: flex;
    flex-direction: row;
}

.ogp-image {
    width: 70px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.ogp-box {
    padding: 15px;
    -webkit-flex: 1;
    flex: 1;
    overflow: hidden;
    color: #595959;
}

/* スマホ表示 */
@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;
    }

    .rensai-here {
        margin-left: 10px;
    }

    .histories {
        margin: 30px
    }

    .history {
        display: block;
    }

    .history-p {
        margin: 40px 0px 10px 0px;
    }

    .ogp-body {
        width: 100%;
        margin: 0px 0px 10px 0px;
    }

    .op-sentence {
        margin: 10px 20px;
    }

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

    .menu-content {
        width: 50%;
    }

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

    #menu li ul li {
        width: 250%;
    }

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

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

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

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

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

    .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 {
        font-size: 0.9rem;
        margin: 0 5px 0 5px;
        flex: 1;
    }

    a.btn_03 {
        height: 40px;
        font-size: 0.75rem;
        padding: 0 10px 0 3px;
        width: 100px;
        height: 40px;
        white-space: nowrap;
    }

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

    .blog-title {
        font-size: 1.5rem;
        margin-top: 15px;
        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;
    }

    .balloon5 {
        margin: 1.5em 0;
    }

    .name {
        margin: 0px;
    }

    .each-rensai {
        display: flex;
        flex-direction: row;
        /* ← 横並びを維持 */
        align-items: center;
        /* ← 上下中央揃え */
        justify-content: space-between;
        /* ← 左右に分ける */
        padding: 5px 0;
    }

    .rensai-btn-container {
        margin-left: auto;
        padding-right: 10px;
    }
    
}


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

    .history-p {
        margin: 40px 0px 10px 0px;
    }

}