@charset "UTF-8";

section.page_title {
    padding: 130px 0 80px;
	background-image: url("../img/member/cover_member.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
    text-align: center;
    border-bottom: 1px solid #333;
}

.page_title_inner h2 {
    font-size: 4rem;
    font-family: "Libre Caslon Display", serif;
}

.page_title_inner h2 span {
    display: block;
    margin-top: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
}

.page_title_inner h2 span:before {
    display: block;
    content: "";
    width: 50px;
    height: 1px;
    background: #fff;
    margin: 0 auto 20px;
}

section.contents_wrapper {
    padding: 0;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

ul.members_list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    border-left: 1px solid #333;
}

ul.members_list li {
    width: 33%;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
	position: relative;
}

ul.members_list li:after {
    content: "";
    display: block;
    height: 1px;
    background: #333;
    width: 200%;
    bottom: -1px;
    right: -400%;
    position: absolute;
}

ul.members_list li:before {
    content: "";
    display: block;
    height: 1px;
    background: #333;
    width: 200%;
    bottom: -1px;
    left: -400%;
    position: absolute;
}

ul.members_list li a {
    display: block;
    color: #fff;
    padding: 16%;
    transition: all 1s ease-in-out 0s;
}

.members_image img {
    width: 100%;
    height: auto;
}

ul.members_list li a:hover {
    background: rgba(255,255,255,0.05);
}

a.more_link {
    display: block;
    width: 48%;
	max-width: 400px;
    padding: 12px 30px;
    border: 1px solid #fff;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    font-weight: 300;
	position: relative;
    transition: all 0.5s ease-in-out 0s;
}

.more_link:after {
    display: block;
    content: "";
    position: absolute;
    width: 24px;
    height: 1px;
    background: #fff;
    right: 0;
    top: 50%;
    transition: all 0.5s ease-in-out 0s;
}

.more_link:hover:after {
    width: 0;
}

.more_link:hover {
    background: #fff;
    color: #101010;
}


.members_image {
    width: 100%;
    background: #222;
    filter: grayscale(0.5);
    position: relative;
    transition: all 1s ease-in-out 0s;
}

ul.members_list li a:hover .members_image {
    filter: grayscale(0);
}
/*
.members_image:after {
    content: "";
    display: block;
    width: 100%;
    bottom: 0;
    position: absolute;
    height: 50%;
    background: linear-gradient(0deg, rgba(16,16,16,0.3) 0%, rgba(0,0,0,0) 100%);
    left: 0;
}*/

.members_image:before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    position: absolute;
    display: block;
    content: "";
    width: 70px;
    height: 70px;
    left: 0;
    top: 0;
    transition: all 1s ease-in-out 0s;
}

.members_image:after {
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    display: block;
    content: "";
    width: 70px;
    height: 70px;
    right: 0;
    bottom: 0;
    transition: all 1s ease-in-out 0s;
}

ul.members_list li a:hover .members_image:before,
ul.members_list li a:hover .members_image:after {
    width: 100%;
    height: 100%;
}


.members_name h3 {
    text-align: center;
    font-size: 2.4rem;
    font-family: "Libre Caslon Display", serif;
    letter-spacing: 1px;
    margin-top: 15%;
}

.members_name h3 span {
    font-family: "Noto Sans JP", sans-serif;
    display: block;
    font-size: 1.3rem;
    font-weight: 300;
    margin-top: 5px;
}

.members_part {
    position: absolute;
    font-size: 5rem;
    right: -8%;
    text-shadow: 7px 7px 18px rgba(0,0,0,0.25);
    color: #fff;
    top: -9%;
    font-family: "Libre Caslon Display", serif;
}

span.more_icon {
    position: absolute;
    background: #fff;
    color: #000;
    border-radius: 100%;
    z-index: 99;
    left: -5%;
    font-family: "Libre Caslon Display", serif;
    bottom: -5%;
    padding: 0;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
    text-align: center;
    font-size: 50px;
    width: 50px;
    line-height: 50px;
    height: 50px;
    transition: all 1s ease-in-out 0s;
}

ul.members_list li a:hover .more_icon {
    transform: scale(1.1);
}

.modal_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.member_thumb_modal img {
    width: 100%;
    height: auto;
}

.member_info_modal {
    width: 65%;
}

.member_thumb_modal {
    width: 30%;
}

p.text_modal {
    font-size: 1.25rem;
    line-height: 23px;
    text-align: left;
    font-weight: 300;
}

.member_part_modal {
    text-align: left;
    font-size: 3rem;
    font-family: "Libre Caslon Display", serif;
    margin-bottom: 5px;
}

h3.member_name_modal {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 30px;
}

section.wanted {
    padding: 100px 0 0;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
    border-top: 1px solid #fff;
}

.wanted_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.wanted_cap {text-align: center;}

.wanted_cap h3 {
    font-size: 1.8rem;
    font-weight: 300;
}

.wanted_cap h3 span {
    display: block;
    font-size: 5rem;
    font-family: "Libre Caslon Display", serif;
    line-height: 54px;
    margin: 25px 0 50px;
    text-shadow: 0 0 40px #fff, 0 0 3px #fff;
}

footer {
    padding-top: 100px!important;
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

.page_title_inner h2 {
    font-size: 2.8rem;
}

.page_title_inner h2 span {
    font-size: 1.5rem;
}

section.page_title {
    padding: 100px 0 50px;
}

ul.members_list li {
    width: 50%;
}

ul.members_list li a {
    padding: 9%;
}

.members_part {
    font-size: 3rem;
    right: -6%;
    top: -6%;
}

span.more_icon {
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 31px;
}

.members_name h3 {
    font-size: 1.8rem;
    margin-top: 8%;
}

.members_name h3 span {
    font-size: 1.2rem;
    margin-top: 3%;
}
section.wanted {
    padding: 50px 5% 0;
}

.wanted_cap h3 span {
    font-size: 3rem;
    line-height: 35px;
    margin: 20px 0 30px;
}

a.more_link {
    width: 90%;
}

.wanted_cap h3 {
    font-size: 1.5rem;
}
	
.modal_inner {
    display: block;
}

.member_thumb_modal {
    margin: 0 auto 20px;
}

.member_info_modal {
    width: 100%;
}

h3.member_name_modal {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.member_part_modal {
    text-align: center;
    font-size: 2rem;
}

p.text_modal {
    font-size: 1.2rem;
    line-height: 22px;
}

footer {
    padding-top: 0px!important;
}
}