
/* プロフィール
---------------------------------------------------------------------------- */
.p-member {
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-color: var(--bg-color);
}
@media screen and (max-width: 767px) {
    .p-member {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}
.p-member .c-secttl {
    margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
    .p-member .c-secttl {
        margin-bottom: 3rem;
    }
}
.p-member .box {
    width: 100%;
    background-color: #fff;
    padding: 8rem 4rem;
    display: flex;
    vertical-align: baseline;
    justify-content: space-between;
    border-radius: 4rem;
}
@media screen and (max-width: 767px) {
    .p-member .box {
        padding:2rem;
        display: block;
		border-radius: 2rem;
    }
}
.member_img {
    width: 40%;
    margin-right: 5rem;
}
@media screen and (max-width: 767px) {
    .member_img{
        width: 100%;
        margin: 0 auto;
    }
}
.member_img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .member_img img {
        margin-bottom: 2rem;
    }
}
.member_profile {
    width: 60%;
    display: flex;
    vertical-align: baseline;
    justify-content: flex-start;
    text-align: left;
    flex-flow: column;
}
@media screen and (max-width: 767px) {
    .member_profile {
        width: 100%;
    }
}
.member_profile .nameSet .post {
    font-size: 2rem;
	line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .member_profile .nameSet .post {
        font-size: 1.8rem;
    }
}
.member_profile .nameSet .name {
    font-size: 3.6rem;
    margin: 1.5rem 0;
    color: var(--main-color);
}
@media screen and (max-width: 767px) {
    .member_profile .nameSet .name {
        font-size: 2.8rem;
        margin: 1rem 0;
    }
}
.member_profile .nameSet .enName {
    font-size: 2rem;
    color: var(--main-color);
}
@media screen and (max-width: 767px) {
    .member_profile .nameSet .enName {
        font-size: 1.8rem;
    }
}
.member_profile .message {
    margin-top: 4rem;
    padding: 4rem 0 4rem;
    border-top: 1px solid #3c3c3c;
}
@media screen and (max-width: 767px) {
    .member_profile .message {
        margin-top: 2rem;
        padding: 2rem 0 2rem;
        }    
}
.member_profile .sns {

}
.sns .list{
    display: flex;
    vertical-align: baseline;
    justify-content: flex-start;
    gap: 2.5rem;
}
.sns .list .list_item img {
    width: auto;
    height: 4rem;
}
@media screen and (max-width: 767px) {
    .sns .list .list_item img {
        height: 3rem;
    }
}

/* 制作実績
---------------------------------------------------------------------------- */
.p-portfolio {
    padding: 10rem 0;
    background-color: var(--bg-color);
}
@media screen and (max-width: 767px) {
.p-portfolio {
    padding: 5rem 0;
}
}
.p-portfolio .l-wrap {
max-width: 110rem;
}
.p-portfolio .content .list {
margin-top: 9rem;
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list {
    margin-top: 2.5rem;
}
}
.p-portfolio .content .list_item {
padding: 4rem 2.2rem 4rem 5rem;
display: flex;
justify-content: center;
align-items: flex-start;
gap: 7rem;
border-bottom: 1px solid #BEBEBE;
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list_item {
    padding: 0;
    border: none;
    flex-direction: column-reverse;
    gap: 1rem;
}
.p-portfolio .content .list_item:nth-child(n+2) {
    margin-top: 4rem;
}
}
.p-portfolio .content .list_item:last-child {
border: none;
}
.p-portfolio .content .list_item_img {
width: 43.4rem;
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list_item_img {
    width: 100%;
}
}
.p-portfolio .content .list_item_txt-box {
flex: 1;
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list_item_txt-box {
    width: 100%;
}
}
.p-portfolio .content .list_item_txt-box dl .item {
display: flex;
align-items: center;
gap: 2rem;
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list_item_txt-box dl .item {
    gap: 1rem;
}
}
.p-portfolio .content .list_item_txt-box dl .item:nth-child(n+2) {
margin-top: 1rem;
}
.p-portfolio .content .list_item_txt-box dl .item dt {
    width: 11.7rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--main-color);
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    line-height: 1;
    font-weight: 600;
    border: 1px solid var(--main-color);
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list_item_txt-box dl .item dt {
    font-size: 1.1rem;
    width: auto;
    padding: 0.6rem 1rem 0.6rem;
    height: auto;
}
}
.p-portfolio .content .list_item_txt-box dl .item dd {
letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list_item_txt-box dl .item dd {
    font-size: 1.2rem;
}
}
.p-portfolio .content .list_item_txt {
margin-top: 2rem;
letter-spacing: 0.08em;
line-height: 2;
}
@media screen and (max-width: 767px) {
.p-portfolio .content .list_item_txt {
    letter-spacing: 0.06em;
}
}


/* 特徴
---------------------------------------------------------------------------- */
.p-features {
    padding: 10rem 0 ;
}
@media screen and (max-width: 767px) {
    .p-features {
        padding: 5rem 0 ;
    }
}
.p-features .list {
    margin-top: 9rem;
}
@media screen and (max-width: 767px) {
    .p-features .list {
    margin-top: 5rem;
    }
}
.p-features .list_item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 9rem;
}
.p-features .list_item:last-of-type {
    margin-bottom: 0;
}
@media screen and (max-width: 767px) {
    .p-features .list_item {
    display: block;
    margin-bottom: 5rem;
    }
}
.p-features .list_item:nth-child(2n) {
    flex-direction: row-reverse;
}

.p-features .list_item_img {
    width: 50%;
    text-align: right;
    padding: 0 6rem 0 0;
}
@media screen and (max-width: 767px) {
    .p-features .list_item_img {
        width: 100%;
        padding: 0;
        margin-bottom: 2rem;
    }
}
.p-features .list_item:nth-child(2n) .list_item_img {
    padding: 0 0 0 6rem;
}
@media screen and (max-width: 767px) {
    .p-features .list_item:nth-child(2n) .list_item_img {
        padding: 0;
    }
}
.p-features .list_item_txt-box {
    width: 50%;
}
@media screen and (max-width: 767px) {
    .p-features .list_item_txt-box {
    width: 100%;
    padding: 0;
    }
}
.p-features .list_item_ttl {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.7;
}
@media screen and (max-width: 767px) {
    .p-features .list_item_ttl {
    margin-top: 2rem;
    font-size: 2rem;
    }
    .p-features .list_item_ttl.-sp-letter0 {
    letter-spacing: 0;
    }
}
.p-features .list_item_txt {
    margin-top: 2rem;
    letter-spacing: 0.08em;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    .p-features .list_item_txt {
    line-height: 2;
    letter-spacing: 0.06em;
    }
}



/* 特徴
---------------------------------------------------------------------------- */
.p-point {
    padding: 10rem 0 ;
    background-color: var(--bg-color);
}
@media screen and (max-width: 767px) {
    .p-point {
        padding: 5rem 0 ;
    }
}
.p-point .list {
    margin-top: 9rem;
    display: grid;
    gap: 2rem ;
    grid-template-columns: repeat( 3 ,1fr ) ;
}
@media screen and (max-width: 767px) {
    .p-point .list {
        margin-top: 5rem;
        grid-template-columns: repeat( 1 ,1fr ) ;
    }
}
.p-point .list .list_item{
    width: 100%;
    padding: 6rem 4rem;
    background-color: #fff;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .2);
    border-radius: 1.5rem;
}
@media screen and (max-width: 767px) {
    .p-point .list .list_item {
        padding: 4rem 2rem;
    }
}
.p-point .list .list_item .list_item_ttl {
    text-align: center;
    font-size: 2rem;
}
@media screen and (max-width: 767px) {
    .p-point .list .list_item .list_item_ttl {
        font-size: 1.8rem;
    }
}
.p-point .list .list_item .list_item_txt {
    margin-top: 4rem;
}
@media screen and (max-width: 767px) {
    .p-point .list .list_item .list_item_txt {
        margin-top: 2rem;
    }
}

/* 対応業務
---------------------------------------------------------------------------- */
.p-work {
    padding: 10rem 0 ;
    background-color: var(--bg-color);
}
@media screen and (max-width: 767px) {
    .p-work {
        padding: 5rem 0 ;
    }
}
.p-work .list {
    display:grid ;
    grid-template-columns: repeat( 4 ,1fr ) ;
    margin-top: 9rem;
}
@media screen and (max-width: 767px) {
    .p-work .list {
        margin-top: 5rem;
        grid-template-columns: repeat( 2 ,1fr ) ;
    }
}
.p-work .list .list_item {
    border: 1px solid #ddd;
    padding: 3rem;
    margin: 0 -1px -1px 0;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .p-work .list .list_item {
        padding: 2rem;
    }
}
.p-work .list .list_item .list_item_icon {
    width: 5.5rem;
    margin: 0 auto;
}
.p-work .list .list_item .list_item_icon img {
    width: 100%;
}
.p-work .list .list_item .list_item_ttl {
    text-align: center;
}
.p-work .c-sectxt {
    font-size: 1.8rem;
    margin-top: 4rem;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-work .c-sectxt {
        font-size: 1.6rem;
        margin-top: 4rem;
    }    
}


/* 対応業務
---------------------------------------------------------------------------- */
.p-plan {
    padding: 10rem 0 ;
}
@media screen and (max-width: 767px) {
    .p-plan {
        padding: 5rem 0 ;
    }
}
.p-plan .list {
    display: grid;
    grid-template-columns: repeat( 3 ,1fr ) ;
    margin-top: 9rem;
}
@media screen and (max-width: 767px) {
    .p-plan .list {
        grid-template-columns: repeat( 1 ,1fr ) ;
        margin-top: 5rem;
    }
    
}
.p-plan .list .list_item {
    border: 1px solid #ddd;
    padding: 2rem;
    margin: 0 -1px -1px 0;
}
@media screen and (max-width: 767px) {
    .p-plan .list .list_item {
        padding: 2rem;
    }
}
.p-plan .list .list_item .list_item_head {
    display: flex;
    justify-content: space-between;
    vertical-align: baseline;
    margin-bottom: 2rem;
    align-items: center;
}

.p-plan .list .list_item .list_item_head .list_item_ttl{
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.2;
    width: 50%;
    font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
    .p-plan .list .list_item .list_item_head .list_item_ttl{
        padding-left: 1.5rem;
    }
}
.p-plan .list .list_item .list_item_head .list_item_ttl::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: .5rem;
    height: 100%;
    background-color: var(--main-color);
}

.p-plan .list .list_item .list_item_head .list_item_price {
    border: 1px solid var(--main-color);
    padding: 0.5rem .5em;
    width: 50%;
    font-size: 1.5rem;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-plan .list .list_item .list_item_head .list_item_price {
        padding: 0rem .5em;
    }
}
.p-plan .list .list_item .list_item_txt {
    margin-bottom: 2rem;
}

/* 価格帯 */
.p-plan .l-wrap.-ss {
    margin-top: 9rem;
}
@media screen and (max-width: 767px) {
    .p-plan .l-wrap.-ss {
        margin-top: 5rem;
    }
}
.p-plan .price_ttl {
    color: var(--main-color);
    font-size: 2.2rem;
    margin-bottom: 6rem;
    text-align: center;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .p-plan .price_ttl {
        margin-bottom: 3rem;
    }    
}
.p-plan .price_table {
    width: 100%;
    border-collapse: collapse;
}
.p-plan .price_table th {
    width: 40%;
    background-color: var(--bg-color);
}

.p-plan .price_table th,
.p-plan .price_table td {
    border: 1px solid #ddd;
    padding: 2rem 1rem;
}
@media screen and (max-width: 767px) {
    .p-plan .price_table th,
    .p-plan .price_table td {
        padding: 1.5rem 1rem;
    }
}


/* お客様の声
---------------------------------------------------------------------------- */
.p-voice {
    padding: 10rem 0 ;
}
@media screen and (max-width: 767px) {
    .p-voice {
        padding: 5rem 0 ;
    }
}
.p-voice .list {
    margin-top: 9rem;
}
@media screen and (max-width: 767px) {
    .p-voice .list {
        margin-top: 5rem;
    }
}
.p-voice .list .list_item {
    display: flex;
    vertical-align: baseline;
    align-items: center;
    margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
    .p-voice .list .list_item {
        display: block;
        margin-bottom: 4rem;
    }
}
.p-voice .list .list_item:last-of-type {
    margin-bottom: 0;
}
.p-voice .list .list_item:nth-child(2n) {
    flex-direction: row-reverse;
}
.p-voice .list .list_item .list_item_profile {
    width: 20%;
}
@media screen and (max-width: 767px) {
    .p-voice .list .list_item .list_item_profile {
        width: 100%;
    }
}
.p-voice .list .list_item .list_item_profile .list_item_icon {
    width: 6rem;
    margin: 0 auto;
}
.p-voice .list .list_item .list_item_profile .list_item_profile_txt {
    font-size: 1.4rem;
    text-align: center;
}
.p-voice .list .list_item .list_item_message {
    width: 80%;
    border: 2px solid #ddd;
    border-radius: 2rem;
    padding: 2rem 2rem;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-voice .list .list_item .list_item_message {
        width: 100%;
        margin-top: 1.5rem;
    }    
}
.p-voice .list .list_item .list_item_message::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    border: 13px solid transparent;
    border-right: 13px solid #FFF;
    z-index: 2;
    transform: translateY(-50%);
}
.p-voice .list .list_item .list_item_message::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -28px;
    border: 14px solid transparent;
    border-right: 14px solid #ddd;
    z-index: 1;
    transform: translateY(-50%);
}
.p-voice .list .list_item:nth-child(2n) .list_item_message::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    left: unset;
    border: 13px solid transparent;
    border-left: 13px solid #FFF;
    z-index: 2;
    transform: translateY(-50%);
}
.p-voice .list .list_item:nth-child(2n) .list_item_message::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -28px;
    left: unset;
    border: 14px solid transparent;
    border-left: 14px solid #ddd;
    z-index: 1;
    transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .p-voice .list .list_item:nth-child(2n) .list_item_message::before,
    .p-voice .list .list_item .list_item_message::before {
        top: -24px;
        right: unset;
        left: 50%;
        border: 13px solid transparent;
        border-bottom: 13px solid #FFF;
        z-index: 2;
        transform: translateX(-50%) translateY(0%);
    }
}
@media screen and (max-width: 767px) {
    .p-voice .list .list_item:nth-child(2n) .list_item_message::after,
    .p-voice .list .list_item .list_item_message::after {
        top: -28px;
        left: 50%;
        right: unset;
        border: 14px solid transparent;
        border-bottom: 14px solid #ddd;
        z-index: 1;
        transform: translateX(-50%) translateY(0%);
    }    
}
.p-voice .list .list_item .list_item_message .list_item_message_heading {
    font-size: 2rem;
}
@media screen and (max-width: 767px) {
    .p-voice .list .list_item .list_item_message .list_item_message_heading {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
}
.p-voice .list .list_item .list_item_message .list_item_message_txt {
    font-size: 1.4rem;
    font-weight: 400;
}


/* よくあるご質問
---------------------------------------------------------------------------- */
.p-faq {
    padding: 10rem 0 ;
}
@media screen and (max-width: 767px) {
    .p-faq {
        padding: 5rem 0 ;
    }
}
.p-faq .faq_list {
    margin-top: 9rem;
}
@media screen and (max-width: 767px) {
    .p-faq .faq_list {
        margin-top: 5rem;
    }
}
.p-faq .item {
    padding: 2rem;
    border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
    .p-faq .item {
        padding: 1.5rem;
    }
}
.p-faq .item dt {
    font-size: 2rem;
}
@media screen and (max-width: 767px) {
    .p-faq .item dt {
        font-size: 1.6rem;
    }
}
.p-faq .item dt span {
    color: var(--main-color);
}
.p-faq .item dd{
    display: none;
    margin-top: 0.5rem;
}
.p-faq .item dt span,
.p-faq .item dd span {
    padding-right: 1rem;
}

/* 店舗情報
---------------------------------------------------------------------------- */
.p-shop {
    padding: 10rem 0 ;
}
@media screen and (max-width: 767px) {
    .p-shop {
        padding: 5rem 0 ;
    }
}
.p-shop .list {
    margin-top: 9rem;
}
@media screen and (max-width: 767px) {
    .p-shop .list {
        margin-top: 5rem;
    }
}
.p-shop .list .list_item {
    display: flex;
    vertical-align: baseline;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 767px) {
    .p-shop .list .list_item {
        display: block;
    }
}
.p-shop .list .list_item .list_item_left {
    width: 40%;
}
@media screen and (max-width: 767px) {
    .p-shop .list .list_item .list_item_left {
        width: 100%;
    }
}
.p-shop .list .list_item .list_item_left iframe {
    width: 100%;
    height: 35rem;
}
@media screen and (max-width: 767px) {
    .p-shop .list .list_item .list_item_left iframe {
        height: 20rem;
    }
}
.p-shop .list .list_item .list_item_right {
    width: 60%;
    padding-left: 3rem;
}
@media screen and (max-width: 767px) {
    .p-shop .list .list_item .list_item_right {
        width: 100%;
        padding-left: 0;
    }    
}
.p-shop .list .list_item .list_item_right .list_item_right_heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .p-shop .list .list_item .list_item_right .list_item_right_heading {
        font-size: 1.8rem;
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }
}
.p-shop .list .list_item .list_item_right table {
    border-collapse: collapse;
    width: 100%;
}
.p-shop .list .list_item .list_item_right tr {
    border-bottom: 1px solid #ddd;
}
.p-shop .list .list_item .list_item_right th,
.p-shop .list .list_item .list_item_right td {
    padding: 1rem 0;
}
.p-shop .list .list_item .list_item_right th {
    font-weight: 600;
    width: 35%;
}


/* 概要
---------------------------------------------------------------------------- */
.p-about {
    padding: 20rem 0 10rem;
}
@media screen and (max-width: 767px) {
    .p-about {
        padding: 5rem 0 ;
    }
}
.p-about .c-secttl {
    color: var(--main-color);
    margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
    .p-about .c-secttl {
        margin-bottom: 3rem;
    }
}
.p-about .c-about_ttl {
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 3rem;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-about .c-about_ttl {
        font-size: 2.8rem;
    }
}
.p-about .c-about_txt {
    margin-bottom: 3rem;
    font-size: 1.8rem;
    text-align: center;
    line-height: 3;
}
@media screen and (max-width: 767px) {
    .p-about .c-about_txt {
        font-size: 1.4rem;
    }
}