@charset "UTF-8";
/* CSS Document */


.sp_none {
    display: none;
}

figure img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}


/*---------------------------------

  0.ボタン

---------------------------------*/
.btn_wrap {
    width: 95%;
    text-align: center;
    margin: 0 auto 50px;
}

.btn {
    display: inline-block;
}

.btn a {
    border: 2px solid #141414;
    border-radius: 3px;
    color: #141414;
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.5;
    padding: 15px 10px 15px 50px;
    text-align: right;
    position: relative;
}

.btn a span {
    background: url("../images/arrow_01.svg") no-repeat;
    background-size: contain;
    height: 7px;
    width: 35px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    margin: auto;
    transition: all .3s;
}

.btn a:hover {
    opacity: 1;
    color: #fff;
    background: #D25075;
    border: 2px solid #D25075;
}

.btn a:hover span {
    background: url("../images/arrow_00.svg") no-repeat;
    background-size: contain;
    left: 5px;
}



/*---------------------------------

  header

---------------------------------*/
header {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

header #logo {
    margin: 10px auto;
    max-width: 250px;
    width: 80%;
}

header #logo a {
    display: block;
}

header h1#logo a img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}




/*---------------------------------

	メインタイトル

---------------------------------*/
#content .Read_visual_Block {
    background: none !important;
    height: auto;
}

#content .Read_visual_Block img {
    display: block;
    width: 100%;
}

#content .Read_visual_Block .Read_block {
    background: rgba(242,242,242,1);
    padding: 20px;
    width: 100%;
    margin-left: auto;
}

#content .Read_visual_Block .Read_block h1 {
    font-size: 25px;
    margin-bottom: 20px;
}

#content .Read_visual_Block .Read_block .txt {
    line-height: 2;
    text-align: justify;
}

#content .Read_visual_Block .Read_block .txt p {
    margin: .5em 0;
}



/*---------------------------------

	作品リスト

---------------------------------*/
#mainContainer {
    margin-bottom: 50px;
}

p.aside {
    color: #CF5075;
    text-align: center;
    margin: 50px 0;
}



/*  
  一覧
---------------------------------*/
#mainContainer .opus_list_block {
    width: 95%;
    margin: 0 auto;
}

#mainContainer .opus_list_block .item {
    width: 100%;
    margin-bottom: 4%;
}

#mainContainer .opus_list_block .item .item__box {
    height: 100%;
}

#mainContainer .opus_list_block .item .item__box a {
    border: 1px solid #CF5075;
    display: block;
    height: 100%;
}

#mainContainer .opus_list_block .item .item__box a .img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 230px;
}


#mainContainer .opus_list_block .item .item__box a h2 {
    color: #CF5075;
    font-size: 20px;
    margin: 20px 30px 15px;
}

#mainContainer .opus_list_block .item .item__box a .prof_txt {
    color: #000;
    padding: 0 30px 20px;
}



/*  
  モーダル
---------------------------------*/
/* モーダルを表示させたらスクロールバーを消す */
body.no-scroll {
    overflow: hidden;
}

/* 背景 */
.remodal-wrapper {
    padding: 0 !important;
}

.remodal {
    background: rgba(255,255,255,0.9) !important;
    max-width: 100% !important;
    width: 100%;
    padding: 100px 0 50px !important;
    margin-bottom: 0 !important;
}

.remodal .close {
    width: 10%;
    position: absolute;
    top: 20px;
    left: 20px;
}

.remodal .close a {
    display: block;
}

.remodal .close a img {
    width: 100%;
}

.remodal .wrap {
    max-width: 1120px;
    width: 90%;
    margin: 0 auto;
}

.remodal .wrap figure {
    width: 100%;
}

.remodal .wrap h2 {
    font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
    font-size: 40px;
    font-weight: normal;
    margin: 30px 0 20px;
}

.remodal .wrap .prof_txt {
    font-size: 18px;
    line-height: 2;
}

.remodal .wrap .txt {
    text-align: justify;
    line-height: 2;
    max-width: 700px;
    margin: 20px auto 0;
}

.remodal .wrap .txt p a {
    color: #CF5075;
    text-decoration: underline;
}




/*---------------------------------

	フッター

---------------------------------*/
footer {
    background: #4D4D4D;
    color: #fff;
    padding: 30px;
}

footer p {
    text-align: center;
}

footer p small {
    font-size: 11px;
}




/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
	position: fixed;
    bottom: 20px;
    right: 20px;
}

#page-top a {
    background: #D25075;
    text-decoration: none;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
    border-radius: 50%;
	position: relative;
}

#page-top a .arrow{
    display: block;    
}

#page-top a .arrow::before{
	content: '';
	width: 10px;
	height: 6px;
	background: url("../images/pagetop_arrow.svg") no-repeat;
	position: absolute;
	top: 0;
    bottom: 0;
    left: 0;
	right: 0;
    margin: auto;
	transition: all .3s;
}

#page-top a:hover {
	opacity: 1;
    text-decoration: none;
    background: #BA3057;
}

#page-top a:hover .arrow::before{
	top: -10px;
}

