/*========================================================

トップ：メインビジュアル

=========================================================*/
/*
メインビジュアル
---------------------------------------------------------*/
.mv-front {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

/*
メインビジュアル：イメージ
---------------------------------------------------------*/
.mv-front__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: cover;
    animation-name:anime35;
    overflow: hidden;
    /*---------*/
    opacity:0;
    z-index:10;
}
/*style="background-image: url(/aaa/images/mv-1-2.png)"*/
.mv-front__img:nth-child(1) {
    background-position: top center;
    background-image: url(/aaa/images/mv-1-2.png);
}
.mv-front__img:nth-child(2) {
    background-position: center center;
    background-image: url(/aaa/images/mv-2-2.png);
}
.mv-front__img:nth-child(3) {
    background-position: center center;
    background-image: url(/aaa/images/mv-3-2.png);
}

/*
アニメーション：キーフレーム
---------------------------------------------------------*/
@keyframes anime35 {
    0% {opacity: 0;}
    /*2秒かけてフェードイン*/
    6.66% {opacity: 1;}
    /*10秒後まで表示*/
    33.33% {opacity: 1;}
    /*2秒かけてフェードアウト；12秒かけて拡大；12秒後に一つ奥に下げる*/
    40% {opacity: 0;transform: scale(1.25);z-index:9;}
    100% {opacity: 0;}
}

/*
アニメーションプロパティの値
---------------------------------------------------------*/
.mv-front__img  {
    animation-duration:30s;/*時間：*/
    animation-timing-function:linear;/*変化：一定*/
    animation-delay: 0s;/*開始時期：*/
    animation-iteration-count:infinite;/*繰返し：無限*/
    animation-direction:normal;/*再生方向：毎回順方向*/
    animation-fill-mode:both;/*開始時＆終了時のスタイル：両方適用*/
    animation-play-state:running;/*再生か停止：再生*/
}
.mv-front__img:nth-of-type(2){
    animation-delay: 10s;
}
.mv-front__img:nth-of-type(3){
    animation-delay: 20s;
}

/*
オーバーレイ
---------------------------------------------------------*/
.mv-front__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    /*---------*/
    z-index:10;
}

/*
キャッチコピー
---------------------------------------------------------*/
.mv-front__h1{
    color: #fff;
}
.mv-front__catch-copy {
    color: #fff;
}
.mv-front__catch-copy span{
    margin-left: -.4em;
}
.mv-front__sub-copy {
    color: #fff;
}
.mv-front__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
@media print,screen and (min-width: 679px) {
    .mv-front__text-box {
        width: 100%;
        padding: 0 5px 15px 5px;
        text-align: center;
        /*---------*/
        z-index:10;
    }
    .mv-front__h1{
        font-size: 2.2rem;
    }
    .mv-front__catch-copy {
        font-size: 4.2rem;
        margin: .4em 0 .4em -0.6em;
    }
    .mv-front__sub-copy {
        font-size: 1.5rem;
        line-height: 1.7;
    }
}
@media print,screen and (min-width: 501px) and (max-width: 678px) {
    .mv-front__text-box {
        width: 100%;
        padding: 0 5px 15px 5px;
        text-align: center;
        /*---------*/
        z-index:10;
    }
    .mv-front__h1 {
        font-size: 2.0rem;
    }
    .mv-front__catch-copy {
        font-size: 3.4rem;
        margin: .4em 0 .4em -0.6em;
    }
    .mv-front__sub-copy {
        font-size: 1.5rem;
        line-height: 1.7;
    }
}
@media print,screen and (max-width: 500px) {
    .mv-front__text-box {
        width: 320px;
        height: 430px;
        /*---------*/
        z-index:10;
    }
    .mv-front__h1{
        font-size: 1.8rem;
        margin:0;
        position: absolute;
        top: 10%;
        right: 14%;
        transform: translate(-0%,00%);
    }
    .mv-front__catch-copy {
        font-size: 3rem;
        margin:0;
        position: absolute;
        top: -.7em;
        left: 50%;
        transform: translate(-50%,-0%);
    }
    .mv-front__catch-copy span{
        margin-left: 0;
        margin-top: -.4em;
    }
    .mv-front__sub-copy {
        font-size: 1.4rem;
        line-height: 1.7;
        position: absolute;
        top: 10%;
        left: 10%;
        transform: translate(-0%,00%);
    }

    /*縦書き設定*/
    .mv-front__text-box {
        writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
    }
    .mv-front__h1,
    .mv-front__catch-copy,
    .mv-front__sub-copy{
        -webkit-text-orientation: mixed;
        -ms-text-orientation: mixed;
        text-orientation: mixed;
    }
    .mv-front__h1 span{
        -webkit-text-orientation: upright;
        -ms-text-orientation: upright;
        text-orientation: upright;
    }
}


/*========================================================

サブページ：メインビジュアル

=========================================================*/

/*
パンくずリスト
---------------------------------------------------------*/
.breadcrumb01 {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content:flex-start;
    margin:0 .2em .3em;
}
.breadcrumb01 li{
    position: relative;
    padding-right: .8em;
    margin-right: .4em;
}
.breadcrumb01 li:last-child{
    padding-right: 0em;
    margin-right: 0em;
}
.breadcrumb01 li:last-child::before{
    display: none;
}
.breadcrumb01 li::before{
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    content: "\f105";
    color: #959595;
    top:2px;
    right: 0;
    font-size: 13px;
}
.breadcrumb01 a {
    display: block;
    font-size: 14px;
    color: #5f5f5f;
    line-height: 1.3;
    position: relative;
    transition: .3s ease-out;
}

.breadcrumb01 a::after{
    position: absolute;
    content: '';
    bottom:1px;
    left: 0;
    height: 1px;
    width: 100%;
    transition: .3s ease-out;
}
.breadcrumb01 a:hover{
    color: #e62c00;
}
.breadcrumb01 a:hover::after{
    background-color: #e62c00;
}


/*
サブページ：背景
---------------------------------------------------------*/
.mv-sub {
    position: relative;
    height: 230px;
    background-color: #eee;
    overflow: hidden;
}
.mv-sub__img {
    position: absolute;
    width: 100%;
    height: 230px;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    background-position: top 70% left 0;
    background-position: center;
    background-image: url(/aaa/images/mv-sub.png);
    /*---------*/
    opacity:1;
}
.mv-sub__img::before{
    content: '';
    background: inherit;
    position: absolute;
    top: -0px;
    left: -0px;
    right: -0px;
    bottom: -0px;
    filter: hue-rotate(345deg)blur(0px);
    -webkit-filter: hue-rotate(345deg);
}
.mv-sub__overlay {
    position: relative;
    width: 100%;
    height: 230px;
    background-color: rgba(226, 191, 151, 0.3);
    overflow: hidden;
    z-index: 1;
}

.mv-sub__text-box {
    height: 230px;
    /*背景より手前にくるように*/
    position: relative;
    overflow: hidden;
}
.mv-sub__h1{
    position: absolute;
    width: 100%;
    text-align: center;
    top:25%;
}




