@charset "utf-8";
/*--- staff-member ---*/
/*tabの形状*/
.tab{
	display: flex;
	flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}
.tab li{
    width: 40%;
    max-width: 200px;
    height: 50px;
}
@media screen and (max-width: 450px) {
    .tab{
        gap: 10px;
    }
}
.tab li a{
	background-color: #197242;
    border: 1px solid #faf2ce;
    color: #faf2ce;
    border-radius: 50px;
    padding:10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-self: center;
    justify-content: center;
    line-height: 1.3;
    margin: 0 auto;
    transition: all .2s;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a,
.tab li a:hover{
	background-color: #faf2ce;
    border: 1px solid #197242;
    color: #197242;
}
/*エリアの表示非表示と形状*/
.area {
	display: none;
	opacity: 0;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.area h2{
    text-align: center;
    text-decoration: underline;
    margin-bottom: 30px;
}
.member-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 95%;
    max-width: 550px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.3;
}
.member-list li{
    background-color: #fff;
    position: relative;
    width: 30%;
}
.member-list li a{
    transition: all .4s;
}
.member-list li a:hover{
    opacity: .7;
}
.staff-tag,
.member-tag{
    position: absolute;
    top: 0;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 75px 75px 0px 0px;
	border-color: #197242 transparent transparent transparent;
}
.staff-tag p,
.member-tag p{
    color: #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: -64px;
    left: 7px;
    z-index: 2;
    line-height: 1;
    font-size: 90%;
}
.member-tag p{
    top: -58px;
    left: 3px;
}
.member-detail{
    padding: 10px;
}
.partition-line{
    border-bottom: 1px dashed #197242;
    margin: 8px auto;
    width: 90%;
}
.member-name{
    font-size: 110%;
}
.member-job{
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.member-job,
.member-en-name{
    font-size: 90%;
}
@media screen and (max-width: 550px) {
    .member-list li{
        width: 45%;
    }
}
/*--- low-footer ---*/
.low-footer{
    padding-bottom: 40px;
}
/*--- single ---*/
#single h2{
    margin-bottom: 0;
}
#article-wrap{
    background: url("../images/closing_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x:center;
    padding: 60px 0;
    margin-top: -20px;
}
.single-member-prof{
    text-align: center;
    color: #145f44;
    line-height: 1.8;
}
.single-member-detail{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 0 auto 30px;
}
.single-member-img{
    aspect-ratio: 4 / 3;
    max-width: 250px;
}
.single-member-job{
    max-width: 250px;
    height: 30px;
    padding: 0 30px;
    background: url("../images/gold_line.png");
    background-size: cover;
    color: #0f3921;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.single-job-title p{
    line-height: 1;
}
.single-member-name{
    font-size: 140%;
    margin-bottom: 5px;
}
.single-company-name{
    opacity: .8;
    margin-bottom: 15px;
    line-height: 1.2;
}
.member-sns-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}
.member-sns-list .icon{
    display: block;
    width: auto;
    height: 25px;
}
@media screen and (max-width: 500px) {
    .single-member-detail{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
.member-information{
    width: 92%;
    max-width: 500px;
    margin: 0 auto 40px;
}
.member-information tr{
    display: flex;
    flex-wrap: wrap;
    line-height: 1.4;
    margin-bottom: 2px;
}
.member-information th{
    background-color: #447E68;
    color: #fff;
    font-weight: 700;
    padding: 20px 10px;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 105%;
}
.member-information td{
    background-color: #fff;
    color: #145f44;
    padding: 20px;
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.member-information a{
    color: #145f44;
}
.member-information a:hover{
    opacity: .7;
}
@media screen and (max-width: 400px) {
    .member-information th{
        padding: 20px 7px;
    }
}
/*--- login ---*/
#member-login{
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url("../images/closing_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
#member-login h2{
    margin-bottom: 20px;
}
.only-text{
    line-height: 1.5;
}
.member-password-form{
    margin: 20px auto;
    width: 100%;
    text-align: center;
    display: block;
}
.input-password{
    background-color: #fff;
    width: 250px;
    margin: 0 auto;
    padding: 0 10px; 
}
/*--- 404 ---*/
#not-found{
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.error-404{
    text-align: center;
}
.error-404 span:first-of-type{
    font-size: 300%;
    margin-right: 1rem;
}
.error-404 span:last-of-type{
    font-size: 150%;
}
#not-found .text-box{
    margin-bottom: 40px;
}
#not-found .text-box p{
    margin-bottom: 0;
}
