@charset "utf-8";
/*========================================================

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

=========================================================*/
/*
メインビジュアル
---------------------------------------------------------*/
.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: center center;
    background-image: url(/aaa/images/mv-1.png);
}
.mv-front__img:nth-child(2) {
    background-position: center center;
    background-image: url(/aaa/images/mv-2.png);
}
.mv-front__img:nth-child(3) {
    background-position: center center;
    background-image: url(/aaa/images/mv-3.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,0.3);
    z-index:10;
}

/*
キャッチコピー
---------------------------------------------------------*/
.mv-front__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    padding: 0px 15px;
    text-align: center;
    color: #fff;
    z-index:10;
}
.mv-front__h1{
    font-size: 2.6rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.mv-front__catch-copy {
    font-size: 4.8rem;
    margin: .2em 0 .2em 0em;
/*    font-weight: bold;*/
    
}
.mv-front__sub-copy {
    font-size: 2.5rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: bold;
}
@media print,screen and (min-width: 501px) and (max-width: 678px) {
    .mv-front__h1 {
        font-size: 2.5rem;
    }
    .mv-front__catch-copy {
        font-size: 3.4rem;
    }
    .mv-front__sub-copy {
        font-size: 1.8rem;
    }
}
@media print,screen and (max-width: 500px) {
    .mv-front__h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5em;
    }
    .mv-front__catch-copy {
        font-size: 2.4rem;
        margin-bottom: 0.3em;
    }
    .mv-front__sub-copy {
        font-size: 1.6rem;
    }
}
}


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

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

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

/*
サブページ：背景
---------------------------------------------------------*/
.mv-sub {
    position: relative;
    height: 230px;
    background-color: #ffffff;
    overflow: hidden;
}
.mv-sub__img {
    position: absolute;
    width: 100%;
    height: 230px;
    background-repeat:no-repeat;
    background-size:cover;
    overflow: hidden;
    background-position: center;
    background-image: url(/aaa/images/mv-sub.png);
    /*---------*/
    opacity:.4;
}
.mv-sub__img::before{
    content: '';
    background: inherit;
    position: absolute;
    top: -0px;
    left: -0px;
    right: -0px;
    bottom: -43px;
    filter: hue-rotate(190deg)blur(0px);
    -webkit-filter: hue-rotate(190deg)blur(0px);
}

.mv-sub__overlay {
    position: relative;
    width: 100%;
    height: 230px;
    background-color: rgba(255, 255, 255, 0);
    overflow: hidden;
    z-index: 1;
}

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

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

シングルページ：メインビジュアル

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

/*
パンくずリスト
---------------------------------------------------------*/
.breadcrumb01 {
    display: flex;
    flex-flow: wrap;
    align-items: center;
    justify-content:flex-start;
    margin-bottom:.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: #6d6d6d;
    top:0px;
    right: 0;
    font-size: 11px;
}
.breadcrumb01 a {
    display: block;
    font-size: 11px;
    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: #ff31df;
}
.breadcrumb01 a:hover::after{
    background-color: #ff31df;
}


/*
ページヘッド
------------------------------------------*/
/*背景*/
.page-head {
    height: 25rem;
    background-color: #ecf4fa;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0) 50%, #cce9ff );
    z-index: 0;
    overflow:hidden;
    position: relative;
    z-index: -1;
}

.bcg-pattern37 {
    height: 25rem;
    background-image:url(/aaa/images/pattern19.png);
    background-size:45px auto;
}

@media screen and (max-width: 1200px) {
    .page-head{
        height: 22rem;
    }
    .bcg-pattern37 {
        height: 22rem;
    }
}


/*中身--------------------------------*/
.page-head_inner{
    margin: 0 auto;
    max-width: 120rem;
    padding: 0 0 0;
    position: relative;
    height: 22rem;
    box-sizing: border-box;
}
.page-head_inner::before{
    content: "";
    position: absolute;
    top: -2rem;
    right: 2.5rem;
    background-image:url(/aaa/images/logo-shiro.png);
    background-repeat: no-repeat;
    background-size: 25rem;
    width: 25rem;
    height: 25rem;
    opacity: .6;
}

@media screen and (max-width: 1200px) {
    .page-head_inner{
        /*        height: 19rem;*/
        max-width: 74rem;
    }
    .page-head_inner::before{
        top: 1rem;
        right: 0rem;
        background-size: 20rem;
        width: 20rem;
        height: 20rem;
        opacity: .6;
    }
}
