@charset "UTF-8";

#contentsWrapper .contArea {
    max-width: 100%;
    padding: 0;
    overflow: clip;
}

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@400;500;600&amp;family=Montserrat:wght@600&amp;display=swap');

:root {
    --color_au_orange: #eb5505;
    --color_h_orange: #ff6e21;
    --color_l_orange: #ff6e21;
    --color_m_orange: #ffe2d2;
    --color_s_orange: #f8f0e9;
}

body .page-googleLp {
    font-family: 'Noto Sans JP', sans-serif;
}



body .page-googleLp .font_en {
    font-family: 'M PLUS 1', sans-serif;
    font-family: 'Montserrat', sans-serif;
}

body .page-googleLp .orange {
    color: var(--color_au_orange);
}

body .page-googleLp .blue {
    color: #347FF7;
}


body .relative {
    position: relative;
}



body.stop {
    overflow-y: hidden;
}

body .bold {
    font-weight: bold;
}

.indent {
    text-indent: -2em;
    padding-left: 2em;
}

.mb_1em {
    margin-bottom: 1em
}


/*anime switch---------------*/

.all_anime_off .for_anime_on {
    display: none !important;
}

.all_anime_on .for_anime_off {
    display: none !important;
}

/*read tag*/

.read_tag {
    position: absolute;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
}

.js_hide {
    position: absolute !important;
    opacity: 0;
    z-index: -10;
    transition: 0.5s all;
    pointer-events: none;
}


/* ローディング画面 */
#loading {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 100px;
    height: 100px;
    background-color: var(--color_au_orange);
    border-radius: 100%;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@keyframes sk-scaleout {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1.0);
        opacity: 0;
    }
}

.loaded {
    opacity: 0;
    visibility: hidden;
}



/*YTサムネール*/

.video-container {
    position: relative;
    /*
    margin-bottom: 100px;
    width: 560px;
    height: 315px;
    */
}

img.thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    display: block;
    left: 0;
    cursor: pointer;
    display: none;
    z-index: -2;
    overflow: hidden;
    height: 100%;
    transition: 0.2s all;
}

img.thumbnail.is-view {
    display: block;
    z-index: 1;
}

img.thumbnail ~ .icon_play {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

img.thumbnail.is-view ~ .icon_play {
    content: "";
    background-image: url(https://www.au.com/content/dam/au-com/pr/google-link/images/icon_thumbnail_play_41946fadc0e15c79.svg);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0.8;
    z-index: 2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}


.player {
    width: 100%;
}
