@charset "utf-8";

/* ==========================================================
 zukan
========================================================== */

.zukan_itembox {
    margin: 0 0 calc(40 / 750 * 100%);
    background-color: #EEE;
    padding: calc(100 / 750 * 100%) 0;
}

h3.ttl_h3 {
    background-color: #0D6FB8;
    width: calc(650 / 750 * 100%);
    margin: 0 auto;
    border-radius: 5rem;
    padding: calc(10 / 750 * 100%) calc(20 / 750 * 100%);
    text-align: center;
    color: #FFF;
    border-bottom: none;
    font-size: 1.8rem;
    line-height: 1.6;
}

span.data {
    display: block;
    font-size: 1.6rem;
    color: #6bb5ed;
}

ul.zukan_itemwrap {
    width: 100%;
}

li.zukan_item {
    width: calc(650 / 750 * 100%);
    padding: calc(20 / 750 * 100%);
    background-color: #FFF;
    margin: calc(40 / 750 * 100%) auto calc(40 / 750 * 100%);
}

.zukan_item dl {
    display: flex;
}

dt.zukan_img {
    width: calc(325 / 750 * 100%);
    overflow: hidden;
}

dd.zukan_txt {
    margin: 5rem auto;
    width: calc(325 / 750 * 100%);

}

.zukan_txt p span {
    font-size: 1.2rem;
    color: #888;
    display: block;
    font-weight: bold;
    margin-bottom: calc(10 / 750 * 100%);
}

.zukan_itemwrap li:last-child {
    margin-bottom: calc(100 / 750 * 100%);
}


@media screen and (min-width: 768px){
    .zukan_itembox {
        padding: calc(40 / 750 * 100%) 0;
    }
    
    h3.ttl_h3 {
        width: calc(350 / 750 * 100%);
        padding: calc(5 / 750 * 100%) calc(20 / 750 * 100%);
        font-size: 1.6rem;
    }

    span.data {
        font-size: 1.4rem;
    }
    
    ul.zukan_itemwrap {
        display: flex;
        margin-bottom: calc(70 / 750 * 100%);
        flex-wrap: wrap;
    }

    li.zukan_item {
        width: calc(320 / 750 * 100%);
        padding: calc(15 / 750 * 100%);
        margin: calc(20 / 750 * 100%) auto calc(20 / 750 * 100%);
    }
    
    .zukan_img img {
        overflow: hidden;
        }

    .zukan_img img {
        display: block;
        transition-duration: 0.3s;
    }

    .zukan_item:hover .zukan_img img {
        transform: scale(1.1);
        transition-duration: 0.3s;
    }

    .zukan_itemwrap li:last-child {
        margin-bottom: calc(20 / 750 * 100%);
    }
    


        }

        .story_chapter {
            width: 100%;
        }
        
        .story_chapter ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
        }
        
        .story_chapter li a {
            position: relative;
            display: inline-block;
            font-weight: bold;
            padding: 8px 10px 5px 10px;
            text-decoration: none;
            color: #555;
            background: #EEE;
            border-radius: 15px 15px 0 0;
            transition: .4s;
            width: 120px;
            font-size: 0.9em;
        }
        
        @media screen and (min-width: 768px) {
            .story_chapter li a {
                margin-right: 5px;
            }
        }
        
        @media screen and (max-width: 767px) {
            .story_chapter li a {
                width: 96%;
                font-size: 100%;
                margin-right: 4px;
            }
        }
        
        .story_chapter li a:hover {
            background: #e60039;
            color: #FFF;
        }
        
        .now {
            background-color: #e60039 !important;
            color: #FFF !important;
        }

/* .popup
---------------------------------------------------------- */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: none;
}

.popup::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.8;
    position: absolute;
    top: 0;
    left: 0;
}

.popup_box {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 100;
}

.popup .inner {
    width: 93.75%;
    height: 96%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    margin: 3% auto;
    padding: 0 12% 4%;
    background-color: #fff;
    border-radius: 20px;
    background: url(../zukan/img/bg_image.jpg) repeat;
}

.popup .close_btn a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000000;
    display: block;
    margin: 10% -8% 5% auto;
}
/*ひとりコメント*/
.balloon {
position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 7px 10px;
  min-width: 420px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
  border-radius: 5px;
}

.balloon:before {
 content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #FFF;
  z-index: 2;
}
.balloon:after {
 content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #555;
  z-index: 1;
}
.balloon p {
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.comment_box{
	display: flex;
	align-items: flex-end;
	width: 560px;
    margin: 0 auto;
}
.comment_box img{
	vertical-align:middle;
	width: 100px;
}

.photobox{
	display: flex;
	    align-items: flex-end;
        justify-content: center;
}
.photobox_image {
    background-color: #f4f4f4;
    padding: 1.5%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin-right: 10px;
/*    width: 100%;
    max-width: 488px;
*/
}

.caption-02 {
    margin: 3vh auto;
	text-align: center;
}

.title {
    font-weight: bold;
    color: #000 !important;
    line-height: 1.3;
    font-size: 16px;
    display: block;
}

.title span {
    font-size: 0.8rem;
    color: #999;
}

.caption-02 .title {
    font-size: 1.4em;
}

.caption-02 .title span {
    font-size: 1.6rem;
}

/*ひとりコメント*/
@media screen and (min-width:768px) {
    .popup_box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .popup .inner {
        width: 93.75%;
        max-width: 800px;
        height: auto;
        max-height: 90%;
        overflow-y: auto;
        -ms-flex-item-align: start;
        align-self: flex-start;
        padding: 3% 9.09%;
        margin: auto;
		background: url("../zukan/img/bg_image.jpg") repeat;
		background-size: cover;
    }

    .popup .close_btn a {
        margin: 0 -7% 0 auto;
        -webkit-transition: 0.2s ease;
        transition: 0.2s ease;
    }

    .popup .close_btn a:hover {
        opacity: 0.7;
        -webkit-transition: 0.2s ease;
        transition: 0.2s ease;
    }
	    .flex {
        display: flex;
        flex-wrap: wrap;
        flex-flow: row-reverse;
    }

    .omeza h3 {
        width: 100%;
    }

    .flex_left,
    .flex_right {
        width: 49%;
    }

    .omeza dl {
        line-height: 2;
    }    

    .omeza dt {
    /* width: 20%; */
    padding-bottom: 0.5rem;
    /* border-bottom: 1px solid; */
    border-radius: 10px;
    background: #000;
    display: inline;
    color: #fff;
    padding: 5px;
}
    .omeza dd {
    /* width: 71%; */
    margin-right: 2%;
padding-bottom: 2rem;
		font-weight: bold;
	}

    .omeza img {
        /* margin-top: 3rem; */
    }

    .omeza p {
        margin: 0 2rem;
    }

    .bnrCatchup,.bnr {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        width: 80%;
    }

    .bnrCatchup a {
        width: 250px;
    }

    .bnrCatchup img {
        margin-bottom: 0px;
    }
	


}
@media screen and (max-width: 767px) {
.omeza dl {
    display: block;
/*    flex-wrap: wrap;
*/	}
.omeza dt {
    /* width: 20%; */
    padding-bottom: 0.5rem;
    /* border-bottom: 1px solid; */
    border-radius: 10px;
    background: #000;
    display: inline;
    color: #fff;
    padding: 5px;
}
.omeza dd {
/*    width: 71%;
*/    margin-right: 2%;
    padding-bottom: 0.5rem;
	    word-wrap: break-word;
			font-weight: bold;
}

	.comment_box {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}
.balloon {
    min-width: 130px;
}
.popup .inner {
    padding: 0 6% 4%;
}
	.photobox{
	display: block;
}
.photobox_image {
	margin-top: 10px;
/*    width: 100%;
    max-width: 488px;
*/
}
	.nigaoe{
		width: 60%;
		margin: 0 auto;
	}
	
	}


@media screen and (min-width:1100px) {
    .popup .close_btn a {
        margin: 0 0 1rem auto;
        -webkit-transition: 0.2s ease;
        transition: 0.2s ease;
    }

    .popup .inner {
        padding: 50px;
    }
}

.popup ::-webkit-scrollbar {
    width: 20px;
}

.popup ::-webkit-scrollbar-track {
    border-radius: 0 20px 20px 0;
    background: #eee;
}

.popup ::-webkit-scrollbar-thumb {
    background-color: #000000;
    border-radius: 20px;
}

.popup_img {
    margin: 0 auto;
    width: 71.765%;
}

@media screen and (max-width:768px) {
    .popup_img {
        width: 100%;
    }
}


.popup_img img {
    width: 100%;
    margin-bottom: 2%;
}

.ttl-cmn-section {
    margin-bottom: 0px!important;
}

