﻿@charset "UTF-8";

/* ************************************************
 * 
 * Component2
 * 
************************************************* */

#keyVisual {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px; 
}

.buttonContents {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    height: 50px;
    background: #fff;
}

.buttonContents::before {
    content: "";
    display: block;
    position: absolute;
    top: -48px;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(255, 255, 255,0) 0%, rgb(255, 255, 255,1) 70%);
    background: -ms-linear-gradient(top,hsla(180,50%,50%,0.0) 0,#fff 56%);
}

.buttonContents::after {
    content: "";
    display: block;
    width: 100%;
    z-index: 2;
    padding-bottom: 60px;
    background: #fff;
}

.buttonContents button {
    position: relative;
    display: block;
    width: 70%;
    margin: 0 auto;
    height: 50px;
    font-size: 1.4rem;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    color: #fff;
    background-color: #f7931e;
}

.buttonContents button::after {
    position: absolute;
    content: "";
    width: .67em;
    height: .67em;
    right: 25px;
    bottom: 50%;
    border: 1px solid #fff;
    border-left: transparent;
    border-bottom: transparent;
    margin-top: -.2em;
    transform: translateY(50%) rotate(134deg);
}



/* ************************************************
* 767px以上
************************************************* */
@media screen and (min-width: 767px){
    .buttonContents {
        height: 83px;
    }
    .buttonContents::before {
        top: -83px;
    }
    .buttonContents button {
        height: 80px;
        font-size: 17px;
        cursor: pointer;
    }
}