@charset "utf-8";





/* ==========================================================================
	main
========================================================================== */


#hasei_main .img_area{
   background-image:url(../image/about/main_bg.jpg);
}


/* ==========================================================================
	intro
========================================================================== */
.intro {
    position: relative;
    padding-top:120px;
}
.intro .intro_tit {
    position: relative;
    text-align: center;
    z-index:10;
}
.intro .intro_illust{
    position: absolute;
    width: 710px;
    left: 0;
    right: 0;
    top: 102px;
    margin:auto;    
    opacity:0;
	transform: translateY(30px);
	transition: .4s;
    z-index:10;
}

.intro .intro_illust.move{
    opacity:100;    
	transform: translateY(0px);
}

.intro .intro_tit:before{
    content:"";
    display: block;
    width: 240px;
    height: 49px;
    position: absolute;
    left: 0;
    right: 0;
    top: -72px;
    margin:auto;
    background:url(../image/about/intro_s_tit.png);
    background-size:cover;
}
.intro .intro_tit img {
    width: 100%;
    max-width: 289px;
    margin:0 auto;
}
.intro .intro_box {
    position: relative;
    width: 100%;
    z-index:5;
    margin:150px auto 0;
}
.intro .intro_box:before{
    content:"";
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height:275px;
    background:#ffee9c;
    z-index:1;
}

.intro .intro_bar {
    position: absolute;
    width: 90%;
    max-width:1200px;
    height:60px;
    background:#ffee9c;
    position: absolute;
    left: 0;
    right: 0;
    margin:auto;
    top: -60px;
    border-radius:30px 30px 0 0;
}
.intro .intro_bar:before{
    content:"";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom:0;
    left:-40px;
    background:url(../image/about/intro_lb.png);
    background-size:cover;
}
.intro .intro_bar:after{
    content:"";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    bottom:0;
    right:-40px;
    background:url(../image/about/intro_rb.png);
    background-size:cover;
}
.intro .box_inr {
    position: relative;
    width: 95%;
    max-width:1200px;
    margin:0 auto;
    padding-top: 80px;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    flex-direction: row-reverse;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    z-index:10;
}
.intro .img_area{
    position: relative;
    width: 50%;
    height: 820px;
    overflow: hidden;
    border-radius:10px;
}

.intro .img_area li {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    -webkit-animation: main 24s linear 0s infinite ;
    animation: main 24s linear 0s infinite ;
    
}
.intro .img_area li:nth-child(1) { 
    background-image: url(../image/about/intro_img01.jpg);
}
.intro .img_area li:nth-child(2) {
    background-image: url(../image/about/intro_img02.jpg);
    -webkit-animation-delay: 8s;
    animation-delay: 8s;
}
.intro .img_area li:nth-child(3) {
    background-image: url(../image/about/intro_img03.jpg);
    -webkit-animation-delay: 16s;
    animation-delay: 16s;
}
@-webkit-keyframes main { 
    0% {
        -webkit-animation-timing-function: ease-in;
        -webkit-transform: scale(1);
        opacity: 0;        
    }
    7% {        
        opacity: 1;
    }
    16% {
        opacity: 1;
    }
    33% {
        -webkit-animation-timing-function: ease-out;
        -webkit-transform: scale(1.1);
        opacity: 1;
    }
    40% {
        opacity:1;
    }
    49% {
        opacity: 0;
    }
    66%{
        
        -webkit-transform: scale(1.2);
    }
    
    
    100% { opacity: 0 }
}
@keyframes main { 
    0% {
        animation-timing-function: ease-in;
        transform: scale(1);
        opacity: 0;        
    }
    7% {
        opacity: 1;
    }
    33% {
        animation-timing-function: ease-out;
        transform: scale(1.1);
        opacity: 1;
    }
    40% {
        opacity:1;
    }
    49% {
        opacity: 0;
    }
    66% {
        transform: scale(1.2);
    }
    100% { opacity: 0 }
}





.intro .text_area {
    position: relative;
    width: 50%;
    padding: 30px 0 0 18px;
    box-sizing:border-box;
}
.intro h3 {
    width: 95%;
    max-width:493px;
    transform: rotateZ(0deg);
}
/*
.intro h3 img{
    transform: rotateZ(-0.03deg);
}
*/
.intro .enb {
    display: block;
    font-size: 20px;
    /*
    color:#ea5514;
    */
    margin:37px 0 150px;
    font-weight: 400;
}
.intro .illust {
    display: block;
    position: absolute;
    width: 171px;
    right: 40px;
    top: 107px;
    opacity:0;
	transform: translateX(-30px);
	transition: .6s;
    z-index:10;
}

.intro .illust.move{
    opacity:100;    
	transform: translateX(0px);
}

.intro p{
    font-size: 17px;
    line-height: 38px;
    color:#643e2f;
    font-weight: 600;
    margin-bottom: 40px;
    width: 95%;
    max-width:525px;
}

@media screen and (max-width :1400px ){
    
    .intro .img_area{height: auto;}
}
@media screen and (max-width :1080px ){
    
    .intro .illust{top: 125px;}
}

@media screen and (max-width :800px ){
    
    .intro {
        padding-top:85px;
    }
    
    .intro .intro_bar {
        width: 90%;
        height:30px;
        background:#ffee9c;
        top: 55px;
        border-radius:15px 15px 0 0;
    }
    .intro .intro_bar:before{
        width: 20px;
        height: 20px;
        left:-20px;
    }
    .intro .intro_bar:after{
        width: 20px;
        height: 20px;
        right:-20px;
    }
    
    .intro .intro_tit {
        margin:0 auto;
        padding:10px 0 40px;
        background:#ffee9c;
        
    }
    .intro .intro_illust{display:none;}


    .intro .intro_tit:before{
        width: 218px;
        height: 48px;
        top: -65px;
        background-image:url(../image/about/intro_s_tit_sp.png);
    }
    .intro .intro_tit img {
        max-width: 197px;
    }
    .intro .intro_box {
        margin:0 auto 0;
    }
    .intro .intro_box:before{
        height:210px;
    }

    .intro .box_inr {
        width: 90%;
        padding-top: 0;
        display: block;
    }
    .intro .img_area{
        width: 100%;
        height: 340px;
    }

    .intro .text_area {
        width: 100%;
        padding: 70px 10px 0;
    }
    .intro h3 {
        width: 95%;
        max-width:235px;
        margin:0 auto;
    }
    .intro .enb {
        font-size: 14px;
        margin:25px 0 40px;
        display: block;
        text-align: center;
    }
    .intro .illust {
        left: 0;
        right: 0;
        margin:auto;
        top: -95px;
    }
    .intro p{
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
        width: 100%;
    }

}
/* ==========================================================================
	promise
========================================================================== */

.specialist {
    position: relative;
    margin:100px auto 80px;
}
.specialist .tit_area {
    position: relative;
    width: 95%;
    max-width:1000px;
    margin: 0 auto 145px;
}
.specialist .tit_area:before{
    content:"";
    display: block;
    width: 1000px;
    height: 440px;
    background:#fff6cc;
    border-radius:10px;
    position: absolute;
    top: 190px;
    right: calc(50% - 100px);
    z-index:1;
}
.specialist .tit {
    position: relative;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    width: 192px;
    margin-left: calc(100% - 192px);
    z-index:50;
}
.specialist .en {    
    writing-mode: vertical-rl;
    font-feature-settings: normal;
    vertical-align: top;
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: 18px;
    line-height: 40px;
    color:#643e2f;
}
.specialist h2 {
    width: 89px;
}
.specialist .img02 {
    position: absolute;
    top: 120px;
    right: calc(50% + 332px);
    width: 380px;
    z-index:5;
}
.specialist .img02 img {
    position: relative;
    border-radius:10px;
    z-index:5;
}

.specialist .img02 .inview{
    position: absolute;
    opacity:0;
	transform: translateY(30px);
	transition: .4s;
    z-index:10;
    left: 20px;
    top: -75px;
    width: 108px;
    z-index:1;
}

.specialist .img02 .inview.move{
    opacity:100;   
	transform: translateY(0);
	transition: .4s;
}
.specialist .img01 {
    position: absolute;
    top: 40px;
    right: calc(50% - 180px);
    width: 460px;
    z-index:5;
}
.specialist .img01 img {
    border-radius:10px;
}




.specialist .text_area {
    position: relative;
    width: 95%;
    max-width:1200px;
    margin: 0 auto 80px;
    padding-top: 60px;
    z-index:50;
}

.specialist .text_area p {
    position: relative;
    font-size: 17px;
    line-height: 38px;
    font-weight: 600;
    color:#643e2f;
    margin-bottom: 30px;
    width: 65%;
    max-width:750px;
    z-index:10;
}

.specialist .text_area p span{
    position: relative;
    font-size: 17px;
    line-height: 38px;
    font-weight: 600;
    color:#643e2f;    
}
.specialist .text_area p span:before{
    content:"※";
    position: absolute;
    left: 4px;
    top: -21px;
    width: 10px;
    height: 10px;
    font-size: 10px;
    color:#ea5413;
    font-weight: 600;
}
.specialist .text_area p span:after{
    content:"";
    display: block;
    width: 100%;
    height:1px;
    background:#643e2f;
    position: absolute;
    left: 0;
    bottom:-2px;
}
.specialist .text_area .img03 {
    position: absolute;
    top: 0;
    left: calc(50% + 200px);
    width: 500px;
}


.specialist .text_area .img03 .inview{
    position: absolute;
    opacity:0;
	transform: translateX(30px);
	transition: .5s;
    z-index:10;
    right: 100px;
    top: -130px;
    width: 159px;
    z-index:1;
}

.specialist .text_area .img03 .inview.move{
    opacity:100;   
	transform: translateX(0);
	transition: .5s;
}




.specialist .text_area img {
    border-radius:10px;
}


.specialist .annotation {
    position: relative;
    width: 95%;
    max-width: 1300px;
    margin:0 auto;
    border-radius:10px;
    background:url(../image/about/annotation_bg.jpg);
    background-size:6px 6px;
    padding:10px;
    box-sizing:border-box;
    z-index:10;
}



.specialist .annotation_inr{
    position: relative;
    border-radius:10px;
    background:#fff;
    padding:50px 30px 50px 260px;
    box-sizing:border-box;
    
}

.specialist .annotation_inr:before{
    content:"";
    display: block;
    width: 144px;
    height: 147px;
    position: absolute;
    left: 90px;
    top: 0;
    bottom:0;
    margin:auto;
    transform: scale(.3);
    opacity: 0;
    transition: .5s ease;
    background:url(../image/about/annotation_illust.png);
    background-size:cover;
}



.specialist .annotation_inr.move:before{

    transform: scale(1);
    opacity: 100;
    transition: .5s ease;
    
}
.specialist .annotation h3 {
    font-size: 17px;
    font-weight: 600;
    display:inline-block;
    border-bottom:1px solid #272727;
    color:#272727;
    max-width:930px;
}
.specialist .annotation p {
    font-size: 16px;
    line-height: 32px;
    margin-top: 18px;
    color:#272727;
    max-width:930px;
}

@media screen and (max-width :1250px ){
    .specialist .tit{margin-left: calc(100% - 252px);}
}

@media screen and (max-width :1000px ){
    
    .specialist .text_area{padding: 0;}
    .specialist .text_area .img03{right:-200px;left: auto;}
    .specialist .annotation_inr{padding:50px 30px 50px 25vw;}
    .specialist .annotation_inr:before{left: 5vw;}
}


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

    .specialist .text_area p{width: 60%;}
    
}
@media screen and (max-width :800px ){
    .specialist {
        margin:50px auto 0;
        background:#fff6cc;
    }
    .specialist .tit_area {
        width: 100%;
        margin: 0 auto 55px;
    }
    .specialist .tit_area:before{
        height: 21.25vw;
        background:#fff;
        left: 0;
        top: 0;
        width: 100%;
    }
    .specialist .tit {
        width: 110px;
        margin-left: 61.75%;
        margin-top: 45px;
        min-height: 43.75vw;
    }
    .specialist .en {
        font-size: 13px;
        line-height: 30px;
    }
    .specialist h2 {
        width: 65px;
    }
    .specialist .img01 {
        position: relative;
        top: 0;
        right:auto;
        width: 57.5%;
        margin-left: 42.5%;
        z-index:5;
    }
    .specialist .img01 img {
        border-radius:5px;
    }
    .specialist .img02 {
        position: absolute;
        top: calc(35vw + 40px);
        right:auto;
        left: 0;
        width: 47.5%;
        z-index:5;
    }
    .specialist .img02 img {
        border-radius:5px;
    }

    .specialist .img02 .inview{
        left: 10px;
        top: -38px;
        width: 54px;
    }




    .specialist .text_area {
        position: relative;
        width: 86%;
        max-width:1200px;
        margin: 0 auto;
        padding-top: 0px;
        z-index:50;
    }

    .specialist .text_area p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 18px;
        width: 100%;
    }

    .specialist .text_area p span{
        position: relative;
        font-size: 16px;
        line-height: 28px;
        font-weight: 600;
        color:#643e2f;    
    }
    .specialist .text_area p span:before{
        left: 3px;
        top: -16px;
    }

    .specialist .annotation {
        width: 90%;
        margin:40px auto 0;
        border-radius:5px;
        background-size:3px 3px;
        padding:5px;
    }



    .specialist .annotation_inr{
        position: relative;
        border-radius:5px;
        background:#fff;
        padding:212px 7.5vw 40px;
        text-align: center;

    }

    .specialist .annotation_inr:before{
        content:"";
        display: block;
        width: 137px;
        height: 140px;
        position: absolute;
        left: 0;
        right: 0;
        top: 40px;
        bottom:auto;
        margin:auto;
    }
    .specialist .annotation_inr.move:before {
        transform: scale(1) translateX(10px);
    }
    
    
    .specialist .annotation h3 {
        font-size: 18px;
    }
    .specialist .annotation p {
        font-size: 15px;
        line-height: 27px;
        text-align:left;
    }
    .specialist:before{
        content:"";
        display: block;
        width: 100%;
        height: 300px;
        background:#fff;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index:1;

    }

}

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

    
    .specialist .tit_area:after{
        content:"";
        display: block;
        width: 122px;
        height: 100px;
        position: absolute;
        left: 12.5%;
        bottom:-30px;
        background:url(../image/about/specialist_illust02.png);
        background-size:cover;
    }
}


/* ==========================================================================
	times
========================================================================== */
.times {
    position: relative;
    margin:80px auto 110px;
}
.times .tit_area {
    position: relative;
    width: 95%;
    max-width:1300px;
    margin:0 auto 125px;
    box-sizing:border-box;
}
.times .tit_area:before{
    content:"";
    display: block;
    position: absolute;
    width: 65%;
    height: 580px;
    border-radius:10px;
    background:#ffee9c;
    right: 0;
    top: 80px;
    Z-index:1;
}
.times .tit_area .img_area {
    position: absolute;
    left: 0;
    top: 0;
    z-index:10;
    border-radius:10px;
    background:url(../image/about/times_img.jpg) right center;
    background-size:cover;
    width: 750px;
}
.times .tit_area .img_area:before{
    content:"";
    display: block;
    padding-top: 580px;
}
.times .tit_area .title_area {
    position: relative;
    padding-top: 180px;
    z-index:10;
    width: 95%;
    padding-left: 62%;
    box-sizing:border-box;
    max-width:1300px;
    margin:0 auto;
}
.times h2 {
    width: 384px;
    margin-bottom: 40px;    
}
.times .en {
    font-size: 18px;
    color:#715146;
}

.times .tit_area .title_area .illust{
    display: block;
    width: 292px;
    margin:70px 0 0 60px;
	opacity:0;
	transform: translateX(40px);
	transition: .5s;
}
.times .tit_area .title_area .illust.move{
	opacity:100;   
	transform: translateX(0);
	transition: .5s;
}




.times .bottom_area {
    position: relative;
    width: 95%;
    max-width:1300px;
    padding-top: 35px;
    padding-left: 425px;
    box-sizing:border-box;
    margin:0 auto;
    z-index:30;
}
.times .bottom_area .img_area {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
}
.times .bottom_area .img_area img{
    border-radius:10px;
}
.times p {
    font-size: 17px;
    line-height: 38px;
    font-weight: 600;
    color:#643e2f;
}
.times p:first-child{
    margin-bottom: 35px;    
}



@media screen and (max-width :1400px ){
    .times p {
        padding-right: 67px;
        box-sizing: border-box;
    }

}
@media screen and (max-width :1280px ){
    .times .tit_area .title_area {
        padding-left: calc(100% - 450px);
    }
    .times .tit_area .img_area {
    width: calc(100% - 450px);
    }
}


@media screen and (max-width :1100px ){
    .times .tit_area:before{top: 20px; height: 60vw;}
    .times .tit_area .img_area {height: 53vw;}

    .times .tit_area .title_area {padding-top: 10vw;}
    .times .tit_area{margin-bottom: 17vw;}    
    .times .bottom_area{padding-left: 38%;padding-top: 0;}
    .times .bottom_area .img_area {width: 38%;}
}





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

    .times {
        margin:50px auto 40px;
    }
    .times .tit_area {
        width: 90%;
        margin:0 auto;
    }
    .times .tit_area:before{display: none;    }
    .times .tit_area .img_area {
        position: relative;
        border-radius:5px;
        background-position:center center;
        width: 100%;
        height:278px;
    }
    .times .tit_area .img_area:before{
        padding-top: 0;
    }
    .times .tit_area .title_area {
        padding-top: 40px;
        width: 100%;
        padding-left:0;
    }
    .times h2 {
        width: 282px;
        margin:0 auto 25px;    
    }
    .times .en {
        display: block;
        font-size: 14px;
        text-align: center;
    }

    .times .tit_area .title_area .illust{
        display: block;
        width: 210px;
        margin:35px auto;
    }




    .times .bottom_area {
        width: 85%;
        padding: 0;
    }
    .times .bottom_area .img_area {
        display:none;
    }
    .times p {
        font-size: 16px;
        line-height: 28px;
        padding-right: 0;
    }
    .times p:first-child{
        margin-bottom: 20px;    
    }




}
/* ==========================================================================
	meet
========================================================================== */
.meet {
    position: relative;
    background:#fcca0d;
    padding:50px 0 100px;
}
.meet .box_inr {
    position: relative;
    width:95%;
    max-width:1300px;
    background:#fff;
    border-radius:10px;
    margin:0 auto;
    padding-bottom:60px;
    
}
.meet .img_area {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    border-radius:0 10px 0 10px;
    height:840px;
    background:url(../image/about/meet_img.jpg);
    background-size:cover;
    background-position:center center;
}
.meet .illust01 {
    display: block;
    position: absolute;
    width: 145px;
    top: 333px;
    left: 70px;
	opacity:0;
	transform: translateY(40px);
	transition: .5s;
}
.meet .illust01.move{
	opacity:100;   
	transform: translateY(0);
	transition: .5s;
}
.meet .illust02 {
    display: block;
    position: absolute;
    width: 234px;
    bottom:0;
    right: 45px;
	opacity:0;
	transform: translateX(50px);
	transition: .6s;
    transition-delay: .2s;
}
.meet .illust02.move{
	opacity:100;   
	transform: translateX(0);
	transition: .6s;
}
.meet .text_area {
    position: relative;
    width: 48%;
    padding-left: 85px;
    padding-top: 100px;
    box-sizing:border-box;
}
.meet h2 {
    /*
    width: 283px;
    */
    width: 320px;
}
.meet .text_area .enb {
    font-size: 20px;
    margin:25px 0 80px;
    text-align:left;
}
.meet h3 {
    font-size: 22px;
    line-height: 42px;
}
.meet .text_area p {
    font-size: 16px;
    line-height: 38px;
    font-weight: 600;
    color:#643e2f;
    max-width:475px;
    margin:37px 0 50px;
}
.meet .name .enb {
    font-size: 14px;
    color:#643e2f;
}
.meet .name h4 {
    display:inline-block;
    width:174px;
    margin-right: 37px;
}

.meet .carer {
    position: relative;
    width: 95%;
    max-width:1160px;
    margin:115px auto 0;
    background:url(../image/about/carer_bg.jpg);
    background-size:4px 4px;
    border:5px solid #fcca0d;
    border-radius:5px;
    box-sizing:border-box;
    padding:77px 0 60px;
}
.meet .carer:before{
    content:"";
    display: block;
    position: absolute;
    width: 500px;
    height: 20px;
    background:#fcca0d;
    border-radius:0 0 10px 10px;
    left: 0;
    right: 0;
    top: 0;
    margin:auto;
}


.meet .carer .box_wrap {
    position: relative;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
    width: 95%;
    max-width:1020px;
    margin:0 auto;
}
.meet .carer .box {
    position: relative;
    width: 48%;
    
}
.meet .carer h5 {
    display: inline-block;
    position: relative;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 600;
    vertical-align: middle;
    margin-right: 20px;
    margin-bottom: 18px;
}

.meet .carer h5:before{
    content:"▼";
    font-size: 14px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 20px;
    color:#fcca0d;
    
}
/*
.meet .carer .enb {
    display:inline-block;
    font-size: 14px;
    vertical-align: middle;
    margin-bottom: 18px;
}
*/

.meet .carer p {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    padding:18px 10px;
    box-sizing:border-box; 
    border-top:1px solid #fcca0d;
}

.meet .carer .box p:last-child{    
    border-bottom:1px solid #fcca0d;
}






@media screen and (max-width :1400px ){
    .meet .text_area {
        padding-left: 6vw;
        padding-right: 2.5vw;
        box-sizing:border-box;
    }
}

@media screen and (max-width :1200px ){
    .meet .text_area {padding-top: 5vw;}
    .meet .text_area .enb{margin-bottom: 4vw;}
    .meet .text_area p{margin-top: 2vw;}
    .meet .illust01{left: 2vw;}
}
@media screen and (max-width :1000px ){
    .meet .text_area{padding-left: 3vw;}
    .meet .carer {margin-top: 10vw};    
}



@media screen and (max-width :850px ){
    .meet .name .enb {display: block;margin-top: 10px;}   
}
@media screen and (max-width :800px ){
    .meet {
        background:#fff;
        padding:75px 0 50px;
    }
    .meet:before{
        content:"";
        display: block;
        width: 100%;
        height: 90px;
        background:#fcca0d;
        position: absolute;
        left: 0;
        top: 0;
        z-index:1;
        
    }
    .meet .box_inr {
        width:90%;
        border-radius:0;
        padding-bottom:0px;
        z-index:10;
    }
    .meet .box_inr:before{
        content:"";
        display: block;
        width: 100%;
        height: 75px;
        background:#fff;
        position: absolute;
        left: 0;
        right: 0;
        top: -50px;
        margin:auto;
        border-radius:5px 5px 0 0;
        z-index:1;
    }
    .meet .sp_tit_area{
        position: relative;
        /*width: 178px;*/
        width: 193px;
        margin:0 auto 48px;
        z-index:10;
    }
    .meet .sp_tit_area h2{
        width: 100%;
    }
    .meet .sp_tit_area .enb{
         margin:20px auto 0;   
    }
    
    .meet .img_area {
        position: relative;
        width: 94.4%;
        border-radius:5px;
        height:67.5vw;
        margin:0 auto;
        background-image: url(../image/about/meet_img_sp.jpg);
    }
    .meet .illust01 {
        width: 80px;
        top: 33vw;
        left: 4.5vw;
    }
    .meet .illust02 {
        width: 130px;
        bottom:-6;
        right: 4.5vw;
    }
    .meet .text_area {
        width: 94.4%;
        padding:50px 0 0;
        margin:0 auto;
        padding-top: 45px;
    }
    .meet .text_area h2,
    .meet .text_area .enb {display:none;}
    .meet h3 {
        font-size: 18px;
        line-height: 30px;
        text-align: center;

    }
    .meet .text_area p {
        font-size: 16px;
        line-height: 28px;
        max-width:800px;
        margin:25px 0 35px;
    }
    .meet .name .enb {
        display: block;
        font-size: 15px;
        text-align: center;
    }
    .meet .name h4 {
        display:block;
        width:155px;
        margin:0 auto;
    }

    .meet .carer {
        width: 100%;
        margin:46px auto 0;
        background-size:2px 2px;
        padding:50px 0 40px;
    }
    .meet .carer:before{
        width: 70%;
        height: 10px;
        border-radius:0 0 5px 5px;
    }


    .meet .carer .box_wrap {
        display: block;
        width: 86%;
    }
    .meet .carer .box {
        width: 100%;
    }
    
    .meet .carer .box:first-child{margin-bottom: 40px;}
    .meet .carer h5 {
        font-size: 17px;
        margin-right: 14px;
        margin-bottom: 18px;
    }

    .meet .carer h5:before{
        font-size: 12px;
        line-height: 17px;
    }
    /*
    .meet .carer .enb {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 17px;
    }
    */

    .meet .carer p {
        font-size: 14px;
        line-height: 26px;
        padding:14px 9px 13px;
    }

    
}
/* ==========================================================================
	gallery
========================================================================== */

.gallery {
    position: relative;
    z-index:50;
    padding:35px 0 60px;
}

.gallery:before{
    content:"";
    display: block;
    width: 95%;
    height: 50px;
    background:#fff;
    border-radius:10px 10px 0 0;
    position: absolute;
    left: 0;
    right: 0;
    top: -49px;
    margin:auto;
    max-width:1300px;
}
.gallery .b_img_area {
    position: relative;
    width: 95%;
    max-width:1200px;
    margin:0 auto;
	-js-display: flex;
	display:-webkit-box;
	display: -webkit-flex;
	display:-moz-box;
	display:-ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
			flex-wrap: wrap;
}
.gallery .tit_area {
    position: relative;
    width: 300px;
    background:#fff;
    padding:60px 0 0;
    display: flex;
    /*
    align-items: center;
    */
    justify-content: center; 
}
.gallery .tit_area .s_tit{
    text-shadow: 1px 1px 0px #643e2f, -1px 1px 0px #643e2f, 1px -1px 0px #643e2f, -1px -1px 0px #643e2f, 1px 0px 0px #643e2f, 0px 1px 0px #643e2f, -1px 0px 0px #643e2f, 0px -1px 0px #643e2f;
}
.gallery .tit_area .illust {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin:auto;
    width: 257px;
}


.gallery .tit_area div{
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-direction: row-reverse;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100px;
}
.gallery h2 {
    width: 41px;
}
.gallery .enb {
    font-feature-settings: normal;
    vertical-align: top;
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    font-size: 20px;
    color:#ffffff;
    text-align:left;
    margin:0;
}
.gallery .b_img_area .img_area {
    position: relative;
    width: 66%;
    margin-right: 40px;
   height: 532px;
}
.gallery .b_img_area .img_area:before{
    content:"";
    display: block;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    z-index:1;
    border-radius:10px;
    overflow: hidden;
    background:url(../image/about/gallery_img01.jpg) right center;
    background-size:cover;
}
.gallery .b_img_area .img_area .illust {
    width: 166px;
    position: absolute;
    right: -35px;
    bottom:-10px;
    z-index:10;
}
.gallery .b_img_area p {
    display: block;
    font-size: 17px;
    width: 20px;
    position: absolute;
    right: 0;
    top:10px;
    font-feature-settings: normal;
    vertical-align: top;
    display: inline-block;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}

.gallery ul{
    -js-display: flex;
    display:-webkit-box;
    display: -webkit-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 95%;
    max-width:1200px;
    margin:80px auto 0;
}
.gallery ul li{
     width: 31.25%; 
    margin-bottom: 35px;
}
.gallery ul li img{
     border-radius:10px;
}

.gallery ul li p{
    font-size: 15px;
    line-height: 1.5;
    margin-top: 27px;
}


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

    .gallery .tit_area {
        width: 30%;
    }
    .gallery .b_img_area .img_area {
        width: calc(66% - 40px);
    }
}


@media screen and (max-width :1000px ){
    .gallery .b_img_area .img_area {
        width: calc(68% - 40px);
    }
    
}



@media screen and (max-width :800px ){
    
    .gallery {
        padding:0 0 50px;
    }

    .gallery:before{
        display: none;
    }
    .gallery .b_img_area {
        position: relative;
        width: 90%;
        display: block;
    }
    .gallery .tit_area {
        width: 127px;
        padding:0;
        display: block;
        margin:0 auto;
    }
    
    .gallery .tit_area .illust {display: none;}


    .gallery .tit_area div{
        display: block;
        width: 100%;
    }
    .gallery h2 {
        width: 127px;
    }
    .gallery .enb {
        display: block;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        font-size: 15px;
        text-align:center;
        margin:18px auto 39px;
    }
    .gallery .b_img_area .img_area {
        position: relative;
        width: 100%;
        margin-right:0;
        height:auto;
    }
    .gallery .b_img_area .img_area:before{
        border-radius:5px;
    }
    .gallery .b_img_area .img_area:after{
        content:"";
        display: block;
        padding-top: 66.38%;
    }
    .gallery .b_img_area .img_area .illust {
        width: 105px;
        position: absolute;
        right: -15px;
        bottom:-31px;
    }
    .gallery .b_img_area p {
        font-size: 14px;
        width: auto;
        position:relative;
        right: 0;
        top:auto;
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        margin-top: 15px;
    }

    .gallery ul{
        display: block;
        width: 90%;
        max-width:1200px;
        margin:25px auto 0;
    }
    .gallery ul li{
         width: 100%; 
        margin-bottom: 25px;
    }
    .gallery ul li img{
         border-radius:5px;
    }

    .gallery ul li p{
        font-size: 14px;
        line-height: 1.5;
        margin-top: 10px;
    }
    
}








