@charset "UTF-8";



/*============================
	parts
============================*/
/* btn ▼*/
body {
    background: url(../img/cmn/bg_body.jpg)center center;
}

p,
li,
a {
    font-weight: 500;
}

.font-ja {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
}

.link__btn a {
    display: block;
    text-align: center;
    position: relative;
}

.link__btn01 a:hover {
    opacity: .9;
    background: url(../img/cmn/btn_arw_wh.png)no-repeat center right 3%, linear-gradient(90deg, #BA8B92, #865858);
}

.link__btn01 img {
    position: absolute;
    top: 50%;
    left: 5%;
    object-fit: contain;
    height: 50px;
    width: fit-content;
    vertical-align: middle;
    margin-right: 5%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.link__btn02 {
    display: block;
    font-size: 2rem;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: solid 1px #795252;
    margin: 0 auto;
}

/* btn ▲*/

.section__ttl {
    font-size: 6rem;
}

.section__ttl .font-en {
    font-size: 1.8rem;
    color: #bb9c30;
    display: block;
    letter-spacing: .2em;
    margin: 10px 0 0 10px;
}

/* 吹き出し ▼*/
.section__pop {
    padding: 10px 15px;
    background: #fff;
    color: #00abd9;
    font-weight: bold;
    display: inline-block;
    position: relative;
}

.section__pop::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 20px 20px 0 20px;
    border-color: #fff transparent transparent transparent;
    bottom: -40%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

.section__pop.color02 {
    color: #fff;
    background: -moz-linear-gradient(90deg, #00abd9, #00d9ae);
    background: -webkit-linear-gradient(90deg, #00abd9, #00d9ae);
    background: linear-gradient(90deg, #00abd9, #00d9ae);
}

.section__pop.color02::before {
    border-color: #00c2c4 transparent transparent transparent;
}

/* 吹き出し ▲*/

.marker {
    position: relative;
    z-index: 1;
}

.marker::after {
    position: absolute;
    content: "";
    background: #FFE867;
    width: 115%;
    height: 25px;
    bottom: -5px;
    left: 50%;
    z-index: -1;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

/*伸びる線*/

.stretch_border::after {
    content: "";
    width: 0;
    height: 1px;
    background: #d81626;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .7s;
}

/* hover zoom */
/*　画像の拡大　*/

.zoomIn img {
    transform: scale(1);
    transition: .3s ease-in-out;
    /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn:hover img {
    /*hoverした時の変化*/
    transform: scale(1.05);
    /*拡大の値を変更したい場合はこの数値を変更*/
}

.mask {
    display: block;
    line-height: 0;
    /*行の高さを0にする*/
    overflow: hidden;
    /*拡大してはみ出る要素を隠す*/
}


@media screen and (max-width:768px) {
    .section__ttl {
        font-size: 5rem;
    }

    .section__tit .font-en {
        font-size: 4rem;

    }

    .section__subtit {
        font-size: 3rem;
    }



}

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

    .section__ttl {
        font-size: 3rem;
    }

    .section__ttl .font-en {
        font-size: 1.6rem;
        margin: 5px 0 0 5px;
    }

}

/*============================
	header
============================*/

header {
    z-index: 999;
    width: 100%;
    padding: 20px 2% 0;
    position: absolute;
    top: 0;
    left: 50%;
    transition: .5s;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12); */
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

header.active {
    opacity: 1;
}



.header__left {
    width: 6%;
    position: relative;
}

.header__right {
    width: 70%;
    padding: 0 0 0 1%;
}


.header__logo {
    width: 70px;
    height: auto;
}

/***** g-nav PC ▼*****/
.g-nav__pc {
    text-align: center;
    padding: 40px 0 0 2%;
    margin: 0 0 0 auto;
}

.g-nav__pc--ul li {
    position: relative;
    text-align: center;
    padding: 0 2%;
}

.g-nav__pc--ul li:last-child {
    padding: 0 0 0 2%;
}

.g-nav__pc--ul li a {
    white-space: nowrap;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-weight: bold;
    color: #fff;
}

.g-nav__pc--ul li a:hover {
    opacity: .8;
}

/* g-nav 伸びるボーダー */

.g-nav__pc--ul li a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #e4006f;
    left: 50%;
    bottom: -10px;
    transition: .5s;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.g-nav__pc--ul li a:hover:before {
    width: 80%;
}

/***** g-nav ▲*****/



/***** ハンバーガー ▼*****/

.header__menu {
    font-weight: bold;
    font-size: 1rem;
    z-index: 9999;
    width: 52px;
    /* background: #00528d; */
    transition: .5s;
    margin: 0 0 0 auto;
}

/* .header__menu.active {
    background: #00528d;
} */

.header__hamburger {
    width: 30px;
    height: 8px;
    cursor: pointer;
    margin: 0 auto;
    position: relative;
    z-index: 9999;
}

.header__hamburger span {
    background: #333;
    height: 2px;
    width: 100%;
    left: 0;
}

.header__hamburger.active span {
    background: #333;
}

.header__menu .header__menu--txt {
    font-size: 1rem;
    text-align: center;
    color: #333;
    font-weight: bold;
    transition: .5s;
    margin-top: 5px;
    position: relative;
    z-index: 9999;
}

/* .header__gnav--sp.active .header__menu--txt {

} */

.headerColor-default .header__hamburger span {
    background: #fcac20;
}

.headerColor-default .header__menu--txt {
    color: #fcac20;
    text-align: center;
    transition: .5s;
}

.header__hamburger--top {
    top: 0;
    transition: .5s;
}

.header__hamburger--middle {
    top: 42.5%;
    transition: .5s;
}

.header__hamburger--bottom {
    bottom: 0;
    transition: .5s;
}

.header__hamburger.active .header__hamburger--top {
    transform: translateY(3px) rotate(30deg);
}

.header__hamburger.active .header__hamburger--middle {
    display: none;
}

.header__hamburger.active .header__hamburger--bottom {
    transform: translateY(-3px) rotate(-30deg);
}

/***** sp nav *****/

.g-nav__bg {
    position: fixed;
    top: 0;
    right: -120%;
    height: 100vh;
    width: 50vw;
    transition: all .5s;
    background: rgba(255,255,255,.9);
    padding: 100px 0;
    overflow: auto;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 100px;
    z-index: 999;
}

.g-nav__bg.active {
    right: 0;
}

.g-nav__sp-ul {
    margin: 0 0 0 auto;
    font-size: 1.6rem;
    margin-bottom: 50px;
    padding: 0 10%;
}

.g-nav__sp ul li a {
    font-size: 1.6rem;
    height: 100%;
    display: block;
    margin-bottom: 20px;
}

.g-nav__sp ul span {
    font-size: 2.4rem;
    margin-right: 10px;
}

.g-nav__bg .header__contact--wrap {
    margin: 0 auto 30px;
}

.g-nav__bg .header__tel {
    font-size: 3rem;
    line-height: 50px;
    margin: 0 10% 20px;
    padding-left: 30px;
    background-size: 8%;
}

.g-nav__bg .header__txt {
    font-size: 1.2rem;
    margin: 0 10%;
    line-height: 1.6;
    letter-spacing: normal;
}




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

@media screen and (max-width:768px) {
    .g-nav__pc {
        display: none;
    }
    .header__adress {
        display: none;
    }

    .header__right {
        display: none;
    }

    .g-nav__bg .pc {
        display: block;
    }

    .header__flex--sp {
        display: block;
        width: 50%;
    }

    .header__contact.pc {
        display: none;
    }

    header {
        height: 52px;
        position: fixed;
        width: 100%;
        padding: 5px 2%;

    }

    header.active {
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    }


    .header__left {
        padding: 0;
        background: none;
    }

    .header__logo {
        width: 30px;
        min-width: auto;
        height: auto;
        position: relative;
        z-index: 999;
    }

    .header__flex {
        display: flex;
        align-items: baseline;
    }

    .header__flex-right {
        width: auto;
        text-align: left;
    }

}

@media screen and (max-width:599px) {
    .header__right.pc {
        display: none;
    }

    .g-nav__bg {
        width: 70vw;
        padding: 100px 0;
    }


}

/*============================
	fv
============================*/

.fv__copy {
    position: absolute;
    width: 65%;
    z-index: 99;
    left: 35%;
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.fv__btn {
    width: 15%;
    right: 10%;
    bottom: 5%;
}

.fv__scroll {
    font-size: 1.3rem;
    width: 16px;
    color: #111;
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    bottom: 80px;
    left: 3%;
    z-index: 99;
    position: absolute;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);

}

.fv__scroll::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 120px;
    background: linear-gradient(90deg, #122a88 0%, #122a88 50%, #fff 50%, #fff 100%);
    left: 0;
    top: 40px;
    animation: scrollAnime 2s 0s infinite;
    -webkit-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
}

@keyframes scrollAnime {
    0% {
        height: 120px;
    }

    50% {
        height: 100px;
    }

    100% {
        height: 120px;
    }
}


/* スライド slick fade*/

.slide-animation {
    animation: fadezoom 8s 0s forwards;
}

@keyframes fadezoom {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

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

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

    .fv__copy {
        width: 85%;
        left: 45%;
        top: 60%
    }
    .fv__btn{
        width: 25%;
        bottom: -15%;
    }

}


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



/*============================
	concept
============================*/
.concept {
    padding: 80px 0 100px;
    background: url(../img/top/bg_concept.jpg)no-repeat center center/cover;
}

.concept__ttl {
    text-align: center;
    margin-bottom: 35px;
}
.concept__ttl{
    width: 20%;
    margin: 0 auto 10px;
}
.concept__ttl img {
    width: 254px;
}

.concept__lead {
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 50px;
}

.concept__txt {
    text-align: center;
    font-size: 2rem;
    letter-spacing: .05em;
    line-height: 2;
}



@media screen and (max-width:768px) {
    .concept__lead{
        font-size: 3rem;
    }
    .concept__txt{
        font-size: 1.8rem;
    }
}

@media screen and (max-width:599px) {
    .concept{
        padding: 80px 0 60px;
    }
    .concept__ttl{
        width: 30%;
    }
    .concept__lead{
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .concept__txt{
        font-size: 1.6rem;
        text-align: left;
    }
}

/*============================
	point
============================*/
.point__ttl {
    line-height: 110px;
    background: #e4006f;
    color: #fff;
    font-size: 4rem;
    text-align: center;
}

.point__ttl span {
    font-size: 9rem;
    vertical-align: bottom;
    padding: 0 .2em;
}

.point__main {
    padding: 80px 0 100px;
    background: #ffe9dd;
}

.point__art {
    margin-bottom: 70px;
}

.point__art--img {
    max-width: 660px;
    width: 39%;
}

.point___txtwrap {
    width: 61%;
    padding-left: 5%;
}

.point__art--num {
    font-size: 2rem;
    line-height: 35px;
    font-weight: bold;
    padding: 0 5%;
    color: #fff;
    background: #14bdeb;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 20px;
}

.point__art--lead {
    font-size: min(3.4rem, 2.4vw);
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 30px;
}

.point__art--lead .color-ma {
    font-weight: bold;
}

.point__art--txt {
    line-height: 2;
    font-size: 1.8rem;
    max-width: 630px;
}

.art02 .point___txtwrap {
    margin: 0 5% 0 auto;
    max-width: 700px;

}

@media screen and (max-width:768px) {
    .point__ttl{
        font-size: 3rem;
    }
    .point__ttl span{
        font-size: 7rem;
    }
}

@media screen and (max-width:599px) {
    .point__ttl{
        font-size: 2rem;
        line-height: 80px;
    }
    .point__ttl span{
        font-size: 5rem;
    }
    .point__main{
        padding: 60px 0;
    }
    .point__art{
        margin-bottom: 60px;
    }
    .point__art.art03{
        margin: 0;
    }
    .point__art.art01,
    .point__art.art03{
        display: flex;
        flex-direction: column-reverse;
    }
    .point__art--img{
        width: 100%;
    }
    .point___txtwrap{
        width: 100%;
        margin:0 0 30px;
        padding: 0;
    }
    .art02 .point___txtwrap{
        margin: 0 0 30px 0;
        max-width: none;
    }
    .point__art--num{
        font-size: 1.6rem;
    }
    .point__art--lead{
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .point__art--txt{
        font-size: 1.6rem;
    }
}

/*============================
	cv
============================*/
.cv {
    height: 220px;
    /* background: url(../img/top/bg_cv.jpg)repeat-x center center; */
    background: linear-gradient(#a27527 0%,#fff9c9 30%,#fff9c9 50%,#a27527 100%);
    padding: 50px 0 0;
}

.cv__btn a {
    display: block;
    width: 80%;
    max-width: 920px;
    margin: 0 auto;
}


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

@media screen and (max-width:768px) {
    .cv{
        height: 180px;
    }
}

@media screen and (max-width:599px) {
    .cv{
        height: 100px;
        padding: 30px 0 0;
    }
}

/*============================
	voice
============================*/
.voice {
    padding: 100px 0 90px;
}

.voice__ttl {
    font-size: 4.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

.voice__ttl .font-en {
    display: block;
    font-size: 3.6rem;
    margin-top: 20px;
    font-weight: bold;
}

.voice__left {
    width: 25%;
}

.voice__right {
    width: 75%;
    padding-left: 5%;
}

.voice__art:not(:last-child) {
    margin-bottom: 60px;
}

.voice__img {
    margin-bottom: 16px;
}

.voice__num {
    font-size: 2.4rem;
}

.voice__name {
    display: block;
    margin-top: 5px;
}

.voice__lead {
    font-weight: bold;
    font-size: min(3rem, 2.4vw);
    border-bottom: solid 1px #333;
    padding-bottom: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.voice__txt {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.voice__right--info {
    max-width: 700px;
}

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

@media screen and (max-width:768px) {
    .voice__ttl{
        font-size: 3.8rem;
    }
}

@media screen and (max-width:599px) {
    .voice{
        padding: 60px 0;
    }
    .voice__ttl{
        font-size: 2.6rem;
        margin-bottom: 30px;
    }
    .voice__ttl .font-en{
        font-size: 2rem;
        margin-top: 10px;
    }
    .voice__left{
        width: 100%;
        min-height: 100px;
        margin-bottom: 30px;
    }
    .voice__right{
        width: 100%;
       
        padding: 0;
    }
    .voice__img{
        float: left;
        clear: both;
        width: 30%;
    }
    .voice__infowrap{
        margin-left: 35%;
    }
    .voice__num{
        font-size: 1.8rem;
    }
    .voice__lead{
        font-size: 1.6rem;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .voice__txt{
        font-size: 1.6rem;
    }
}


/*============================
	index
============================*/
.index {
    padding: 70px 0;
    background: #f596ab;
}

.index .inner__large {
    background: #fff;
    padding: 10px
}

.index__border {
    border: solid 5px #f596ab;
    padding: 50px 5% 70px;
}

.index .inner {
    max-width: 1440px;
    padding: 0;
}

.index__ttl {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;

}

.index__ttl span {
    margin-left: 1em;
    font-size: 1.6rem;
}

.index__center {
    margin: 0 5%;
}

.index__h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.index__li {
    font-size: 1.5rem;
    line-height: 2;
}

.index__ul.ul03 {
    margin-bottom: 80px;
}

@media screen and (max-width:768px) {
    .index__border{
        padding: 50px 5%;
    }
    .index__h3{
        font-size: 1.8rem;
    }
}

@media screen and (max-width:599px) {
    .index{
        padding: 40px 0;
    }
    .index__border{
        border-width: 2px;
        padding: 40px 5%;
    }
    .index__ttl{
        font-size: 2rem;
        margin-bottom: 30px;
    }
    .index__ttl span{
        font-size: 1.4rem;
    }
    .index__left,
    .index__center{
        margin:0 0 30px;
    }
    .index__ul.ul03{
        margin-bottom: 30px;
    }
    .index__h3{
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .index__li{
        font-size: 1.4rem;
    }
}

/*============================
	profile
============================*/
.profile {
    padding: 80px 0 100px;
}

.profile__ttl {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}

.profile__ttl span {
    font-weight: bold;
    display: block;
    font-size: 1.6rem;
    margin-top: 10px;
}

.profile__left {
    width: 50%;
}

.profile__name {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.profile__txt {
    margin-bottom: 30px;
}

.profile__link {
    margin-bottom: 30px;
}

.profile .link--icon {
    width: 15px;
    margin-left: 10px;
    vertical-align: middle;
}

.prifile__ig {
    margin: 0 5%;
}

.profile__img {
    width: 50%;
    margin: 0 auto;
    padding: 0 5%;
}


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

@media screen and (max-width:599px) {
    .profile{
        padding: 60px 0;
    }
    .profile__ttl{
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    .profile__ttl .font-en{
        font-size: 1.4rem;
    }
    .profile__flex{
        display: flex;
        flex-direction: column-reverse;
    }
    .profile__img{
        width: 70%;
        margin: 0 auto 30px;
    }
    .profile__left{
        width: 100%;
    }
    .profile__name{
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .profile__txt{
        margin-bottom: 20px;
    }
    .profile__link{
        margin-bottom: 20px;
    }
    .prifile__sns{
        display: flex;
    }
}

/*============================
	info
============================*/
.info {
    background: -moz-linear-gradient(#fff 0%, #fff 15%, #e6606f 15%, #e6606f 100%);
    background: -webkit-linear-gradient(#fff 0%, #fff 15%, #e6606f 15%, #e6606f 100%);
    background: linear-gradient(#fff 0%, #fff 15%, #e6606f 15%, #e6606f 100%);
}
.info__img{
    width: 25%;
}
.info__info {
    padding: 120px 2% 0;

}

.info__ttl span {
    font-size: 3rem;
    display: block;
    font-weight: bold;
}

.info__ttl {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 45px;
}

.info__dl {
    color: #fff;
}

.info__dt {
    float: left;
}

.info__dd {
    margin: 0 0 15px 80px;

}

.info__link {
    width: 21%;
    max-width: 260px;
    min-width: 200px;
    margin-top: 120px;
}

@media screen and (max-width:768px) {
    .info__ttl{
        margin-bottom: 20px;
    }.info__ttl span{
        font-size: 2rem;
    }
    .info__info{
        padding: 50px 2% 0;
    }
    .info__link{
        margin-top: 50px;
    }
}

@media screen and (max-width:599px) {
    .info{
        padding: 0 0 60px;
    }.info__img{
        width: 60%;
        margin: 0 auto 30px;
    }
    .info__info{
        width: fit-content;
        padding: 0;
        margin:0 auto 30px;

    }
    .info__link{
        margin: 0 auto;
        min-width: 160px;
    }
    .info__ttl{
        text-align: center;
        margin-bottom: 30px;
    }
   
}

/*============================
	footer
============================*/
footer .inner {
    padding: 50px 2% 40px;
}

.ft__logo {
    width: 280px;
    margin: 0 auto;
}

.ft__copyright {
    line-height: 30px;
    background: #f8f8f8;
    font-size: 1.1rem;
    text-align: center;
}

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

@media screen and (max-width:599px) {
    footer .inner{
        padding: 40px 5%;
    }
    .ft__logo{
        width: 180px;
    }
    .ft__copyright {
        padding-left: 5%;
        font-size: 1rem;
    }
}

/*============================
	page top
============================*/
#page-top a {
    position: fixed;
    white-space: nowrap;
    text-align: center;
    width: 50px;
    height: auto;
    display: block;
    margin: 0 auto;
    right: 20px;
    bottom: 20px;
    z-index: 99;
}

#page-top {
    opacity: 0;
    transition: .5s;
}

#page-top.active {
    opacity: 1;
}

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

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

    #page-top a {
        width: 40px;
        right: 10px;
        bottom: 10px;
    }
}


/*============================
	tablet / sp
============================*/

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

/*============================
	sp only
============================*/

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