@charset "utf-8";

/*共通*/
body {
    font-family: "M PLUS Rounded 1c", sans-serif;
    scroll-behavior: smooth;
}

.wrapper {
    width: 768px;
    margin: 0 auto;
}

/*ヘッダー*/
.n-header{
    justify-content: space-between;
    align-items: stretch;
    z-index: 10;
    width: 1100px;
    max-width: 100%;
}

.h-left {
    position: relative;
    background: #fff;
    border-radius: 100px;
    padding: 5px 20px;
}

.h-logo-img {
    width: 100px;
    height: auto;
}

.h-logo-txt {
    font-size: 10px;
    line-height: 1.2;
    margin-left: 6px;
}

#character .hero_block{
    margin-bottom: 0;
    text-align: center;
    background: #C1F4F4;
    overflow: hidden;
}

#character .h2_other{
    color: #004D40;
}

#character .h2_other span{
    position: relative;
    font-size: 24px;
}

#character .h2_other span::before{
    position: absolute;
    content: "";
    background-image: url(../img/recruit/yagiashi.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-45deg);
    width: 45px;
    height: 30px;
    right: -80px;
    top: -30px;
}

#character .h2_other span::after{
    position: absolute;
    content: "";
    background-image: url(../img/recruit/yagiashi.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 45px;
    height: 30px;
    right: -50px;
    bottom: 0;
}

.custom-shape-divider-top-1729078983 {
    position: absolute;
    top: 210px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: -1;
}

.custom-shape-divider-top-1729078983 svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 100px;
}

.custom-shape-divider-top-1729078983 .shape-fill {
    fill: #C1F4F4;
}

/*カード*/
.member_intro{
    margin: 50px 0;
}

.cardContainer{
    position: relative;
    margin-bottom: 50px;
    border: 5px solid #EDB28F;
    border-radius: 10px;
    padding: 25px;
    background: #fff;
}

.cardContainer:nth-child(2n)::after{
    position: absolute;
    content: "";
    background-image: url(../img/recruit/yama04.png);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    width: 245px;
    height: 150px;
    right: 30px;
    bottom: -100px;
}

.cardContainer:nth-child(3n)::before{
    position: absolute;
    content: "";
    background-image: url(../img/recruit/deco08.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 150px;
    height: 128px;
    left: -80px;
}


.cardContainer:last-child::after{
    margin-bottom: 0;
    content: none;
}

.top{
    text-align: center;
    margin-bottom: 25px;
}

.name{
    color: #EDB28F;
    font-size: 30px;
    margin-bottom: 25px;
}

.image{
    width: 250px;
    height: auto;
}

.chara_table{
    border-bottom: 2px dotted #EDB28F;
    align-items: center;
    padding: 15px;
}

.chara_table:last-child{
    border: none;
}

.table_title{
    width: 30%;
    font-weight: bold;
    color: #EDB28F;
}

.table_item{
    width: 70%;
}

.link{
    color: #1a0dab;
    display: block;
}

.otherimg_list{
    width: 100%;
    margin-top: 15px;
    /*justify-content: space-between;*/
    flex-wrap: wrap;
}

.img-wrap{
    margin: 0 10px 10px 0;
    display:block; 
    position:relative;
    overflow:hidden;
}

.otherimg{
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 1px solid #dfdfdf;
    border-radius: 5px;
    padding: 10px;
    transition:0.3s;
}

.otherimg:hover{
    border: 5px solid #dfdfdf;
    box-sizing: border-box;
}


@media screen and (max-width: 640px) {

    .wrapper {
        width: 100%;
        padding: 0 10px;
    }

    .h-left {
        display: inline-block;
    }

    #character .h2_other{
        line-height: 1.2;
    }

    .table_title,
    .table_item{
        width: 100%;
    }

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