@charset "UTF-8";

/*==============================================================================================
●共通
==============================================================================================*/

* {
    box-sizing: border-box;
}

body {
    background-color: #fff;
    color: #141414;
    position: relative;
    height: 100%;
}

a img:hover {
    opacity: 0.8;
}

#message ul li a img:hover {
    opacity: 1;
}



/*/////////////////////////ヘッダー///////////////////////*/

header {
    padding: 10px;
    position: relative;
    background-color: #141414;
    height: 65px;
    display: flex;
    align-items: center;
}

header a:link,
header a:visited {
    color: #fff;
}

header a:hover {
    color: #003D78;
}

header nav {
    position: absolute;
    top: 0;
    right: 0;
}

header nav ul li {
    display: inline-block;
    margin: 0 10px;
}

header .tfmlogo {
    width: 100px;
    height: auto;
}

header .bmwlogo {
    width: 45px;
    height: auto;
}

header .tfmlogo img,
header .bmwlogo img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

/*/////////////////////////スマホメニュー///////////////////////*/

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 40px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background-color: #999;
    position: absolute;
    box-shadow: 0 0 2px #fff;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
    box-shadow: none;
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #fff;
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #fff;
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 70%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 999;
    background-color: rgba(7, 10, 16, 0.95);
    transition: all 0.5s;
    /*アニメーション設定*/
}

.menu-content ul {
    padding: 70px 20px 0;
}

.menu-content ul li {
    border-bottom: solid 1px #666;
    list-style: none;
}

.menu-content ul li:last-child {
    border-bottom: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
    color: #fff;
    text-decoration: none;
    padding: 15px 15px 15px 0;
    position: relative;
}

.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

#menu-btn-check:checked~.menu-content {
    right: 0;
    /*メニューを画面内へ*/
}


/*/////////////////////////フッター///////////////////////*/
footer {
    width: 100%;
    background-color: #141414;
    padding: 20px 0 10px 0;
    text-align: center;
    color: #fff;
}

footer a:link,
footer a:visited {
    color: #5c63ff;
}

footer p {
    margin: 1em;
}


/*/////////////////////////共通レイアウト///////////////////////*/
h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.3em;
}

h4 {
    font-size: 1.1em;
}

h5 {
    font-size: 1em;
}

h6 {
    font-size: 0.8em;
}

#ground {
    background-image: url(../img/bg.png);
    background-position: center;
    background-repeat: repeat;
    background-attachment: fixed;
}

.scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-align: center;
    width: 40px;
    height: 22px;
    font-size: 0.5em;
    cursor: pointer;
    z-index: 990;
    display: none;
}

.scrollToTop:hover img {
    opacity: 0.7;
}

.scrollToTop img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.scrlnone {
    visibility: hidden;
}

/*/////////////////////////トップページ///////////////////////*/
.onair-date {
    background-color: #141414;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
}

.onair-date span {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0.2em;
}

.bottan-radiko {
    text-align: center;
    letter-spacing: 0.1em;
    border-radius: 5px;
    border: #333 solid 1px;
    display: inline-block;
    color: #00beff;
}

a.bottan-radiko:link,
a.bottan-radiko:visited {
    color: #00beff;
}

a.bottan-radiko:hover {
    color: #008fbf;
}

.maincontents {
    margin: 50px auto;
}

.menutitle,
.menutitle2 {
    background-color: #0066B1;
    width: 100%;
    text-align: center;
    position: relative;
}

.menutitle span,
.menutitle2 span {
    background-color: #141414;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding: 0 20px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) skewX(-10deg);
}

.personality-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 50px 0 100px 0;
}

.personality-photo {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 30px 20px 0;
    overflow: hidden;
    border-radius: 0;
    transform: skew(-10deg);
    box-shadow: 10px 10px #0066B1;
}

.personality-photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    transform: translate(-50%, -50%) skew(10deg);
    z-index: 1;
}

.personality-txt {
    text-align: center;
    margin: 20px 0 10px 0;
    width: 90%;
    font-style: italic;
    line-height: 1em;
}

.personality-txt2 {
    text-align: center;
    width: 90%;
    font-style: italic;
    font-weight: bold;
    line-height: 1.2em;
    color: #444444;
}

.personality-txt2 span {
    font-size: 0.7em;
}

#about {
    margin: 50px 0 200px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.about-photo {
    position: relative;
    border-radius: 0;
}

.about-photo img {
    z-index: 1;
}

.about-txt {
    background-color: rgba(0, 102, 177, 0.2);
}

#message {
    margin: 50px 0 200px 0;
}

.message {
    margin: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.message-photo {
    position: relative;
    border-radius: 0;
}

.message-photo img {
    z-index: 1;
}



.message-txt {
    background-color: rgba(0, 102, 177, 0.2);
}

.message-txt span {
    background: linear-gradient(transparent 60%, #87c3ff 60%);
}

#message ul {
    margin: 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

#message ul li div {
    position: relative;
    margin: 30px 20px 0;
    overflow: hidden;
    transition: .3s ease-out;
    transform: skew(-10deg)scale(100%);
    border: solid 4px rgba(200, 200, 200, 0);
    border-radius: 2px;
    outline-offset: -4px;
}

#message ul li div img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(10deg);
    z-index: 1;
}

#message ul li div:hover {
    transition: .3s ease-out;
    transform: scale(110%)skew(-10deg);
    border: solid 4px rgba(200, 200, 200, 0.8);
    border-radius: 2px;
    outline-offset: -4px;
}

#message ul li p {
    margin-top: 10px;
    margin-bottom: 10px;
}

#message ul li p a:link,
#message ul li p a:visited {
    font-size: 0.8em;
    color: #000054;
}


#voicelist {
    margin: 50px 0 200px 0;
}

ul.voicelist {
    margin: 50px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

ul.voicelist li {
    display: block;
    color: #fff;
    border: 4px solid #141414;
    background-color: #0066B1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

ul.voicelist li h3,
ul.voicelist li p {
    margin: 1em 0;
}

#howtoaudee {
    margin: 50px auto 200px auto;
    text-align: center;
}

.howtoaudee-wrap {
    background-color: #0066B1;
    position: relative;
}

.howtoaudee-wrap2 {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.menutitle3 {
    background-color: #141414;
    color: #fff;
    text-align: center;
    display: inline-block;
    transform: skew(-10deg);
    position: relative;
    z-index: 1;
}

.menutitle3:before {
    content: "";
    width: 32px;
    height: 52px;
    display: block;
    background-image: url(../img/question.png);
    position: absolute;
    top: -20px;
    left: -5px;
}

.howtoaudee-movie {
    width: 100%;
}

.ad {
    margin: 50px auto 100px auto;
    text-align: center;
}

/*==============================================================================================
●PCサイズ
==============================================================================================*/

@media screen and (min-width: 1300px) {
    .sp {
        display: none;
    }

    .sp-menu {
        display: none;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    header {
        justify-content: space-between;
    }

    /*/////////////////////////フッター///////////////////////*/


    /*/////////////////////////共通レイアウト///////////////////////*/
    .scrollToTop2 {
        display: none;
    }

    /*/////////////////////////WAVE///////////////////////*/
    .path-wave {
        stroke-width: 1px;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .mv {
        width: 100%;
        height: 650px;
        position: relative;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../img/kv.jpg);
        background-size: cover;
    }

    .logo {
        position: absolute;
        top: 25%;
        left: 25%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .onair-date {
        padding: 10px;
        height: 65px;
        font-size: 20px;
        line-height: 45px;
    }

    .bottan-radiko {
        font-size: 0.8em;
        float: right;
        padding: 5px 10px;
        line-height: 30px;
    }

    .menutitle,
    .menutitle2 {
        height: 60px;
    }

    .menutitle span,
    .menutitle2 span {
        line-height: 60px;
        height: 60px;
    }

    .menutitle2 span {
        width: 70%;
    }

    #about {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .about-photo {
        width: 700px;
        height: 400px;
        transform: skew(-10deg);
        margin-left: -35px;
        overflow: hidden;
    }

    .about-photo img {
        width: 800px;
        transform: translate(-50%, -50%) skew(10deg);
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .about-txt {
        padding: 40px;
        font-size: 1.4em;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(0, -50%) skew(-10deg);
        -webkit-transform: translate(0, -50%) skew(-10deg);
        -ms-transform: translate(0, -50%) skew(-10deg);
    }

    .message {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .message-photo {
        width: 700px;
        height: 400px;
        transform: skew(-10deg);
        margin-right: -35px;
        overflow: hidden;
    }

    .message-photo img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 800px;
        transform: translate(-50%, -50%) skew(10deg);
    }

    .message-txt {
        padding: 40px;
        font-size: 1.4em;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-100%, -50%) skew(-10deg);
        -webkit-transform: translate(-100%, -50%) skew(-10deg);
        -ms-transform: translate(-100%, -50%) skew(-10deg);
    }

    #message ul li div {
        width: 350px;
        height: 140px;
    }

    #message ul li div img {
        width: 400px;
    }

    #message ul li p {
        width: 350px;
    }

    ul.voicelist {
        margin: 50px auto;
        width: 1050px;
    }

    ul.voicelist li {
        width: 320px;
        margin: 15px;
        padding: 10px;
    }

    ul.voicelist li img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }


    #howtoaudee {
        width: 900px;
    }

    .howtoaudee-wrap {
        padding: 60px 50px 50px 50px;
    }

    .howtoaudee-movie {
        height: auto;
    }

    .menutitle3 {
        padding: 0 20px 0 30px;
    }

}


/*==============================================================================================
●タブレットサイズ
==============================================================================================*/

@media screen and (min-width: 768px) and (max-width: 1299px) {
    .sp {
        display: none;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    header nav {
        display: none;
    }

    header .bmwlogo {
        margin-left: 10px;
    }

    /*/////////////////////////スマホメニュー///////////////////////*/
    .sp-menu {
        display: block;
    }

    /*/////////////////////////フッター///////////////////////*/


    /*/////////////////////////共通レイアウト///////////////////////*/
    .scrollToTop2 {
        display: none;
    }

    /*/////////////////////////WAVE///////////////////////*/
    .path-wave {
        stroke-width: 2px;
    }


    /*/////////////////////////トップページ///////////////////////*/

    .mv {
        width: 100%;
        height: 80vh;
        position: relative;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../img/kv-sp.jpg);
        background-size: cover;
    }

    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .onair-date {
        padding: 10px;
        height: 65px;
        font-size: 16px;
    }

    .bottan-radiko {
        font-size: 1em;
        float: right;
        padding: 5px 10px;
        line-height: 30px;
    }



    .menutitle,
    .menutitle2 {
        height: 60px;
    }

    .menutitle span,
    .menutitle2 span {
        line-height: 60px;
        height: 60px;
        font-size: 0.8em;
    }

    .menutitle2 span {
        width: 80%;
    }

    #about {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .about-photo {
        width: 700px;
        height: 400px;
        transform: skew(-10deg);
        margin-left: -35px;
        margin-bottom: 50px;
        overflow: hidden;
    }

    .about-photo img {
        width: 800px;
        transform: translate(-50%, -50%) skew(10deg);
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .about-txt {
        transform: skew(-10deg);
        padding: 30px;
        font-size: 1.2em;
    }



    .message {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .message-photo {
        width: 700px;
        height: 400px;
        transform: skew(-10deg);
        margin-right: -35px;
        margin-bottom: 50px;
        overflow: hidden;
    }

    .message-photo img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 800px;
        transform: translate(-50%, -50%) skew(10deg);
    }

    .message-txt {
        transform: skew(-10deg);
        padding: 30px;
        font-size: 1.2em;
    }

    #message ul li div {
        width: 350px;
        height: 140px;
    }

    #message ul li div img {
        width: 400px;
    }

    ul.voicelist {
        margin: 50px auto;
        width: 990px;
    }

    ul.voicelist li {
        width: 45%;
        margin: 15px;
        padding: 10px;
    }

    ul.voicelist li img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    #message ul li p {
        width: 350px;
    }

    #howtoaudee {
        width: 80%;
    }

    .howtoaudee-wrap {
        padding: 50px 30px 30px 30px;
    }

    .howtoaudee-movie {
        height: auto;
    }

    .menutitle3 {
        padding: 0 20px 0 30px;
    }

}


/*==============================================================================================
●スマホサイズ
==============================================================================================*/

@media screen and (max-width: 767px) {
    img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    /*/////////////////////////ヘッダー///////////////////////*/
    header nav {
        display: none;
    }

    header .bmwlogo {
        margin-left: 10px;
    }

    /*/////////////////////////スマホメニュー///////////////////////*/
    .sp-menu {
        display: block;
    }

    /*/////////////////////////フッター///////////////////////*/


    /*/////////////////////////共通レイアウト///////////////////////*/
    .scrollToTop {
        visibility: hidden;
    }

    .scrollToTop2 {
        text-align: center;
        width: 40px;
        height: auto;
        font-size: 0.5em;
        cursor: pointer;
        margin: 100px auto 100px auto;
        display: block;
    }

    .scrollToTop2:hover img {
        opacity: 0.7;
    }

    .scrollToTop2 img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }

    #ground {
        background-size: contain;
    }

    /*/////////////////////////WAVE///////////////////////*/
    .path-wave {
        stroke-width: 4px;
    }

    /*/////////////////////////トップページ///////////////////////*/
    .mv {
        width: 100%;
        height: 80vh;
        position: relative;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../img/kv-sp.jpg);
        background-size: cover;
    }

    .logo {
        width: 90%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .onair-date {
        padding: 20px 0;
        font-size: 16px;
    }

    .bottan-radiko {
        font-size: 1.2em;
        margin: 20px auto;
        padding: 15px 20px;
    }

    .personality-photo img {
        max-width: 300px;
    }



    .menutitle {
        height: 60px;
    }

    .menutitle2 {
        height: 100px;
    }

    .menutitle span {
        width: 60%;
        height: 60px;
        line-height: 60px;
        font-size: 0.7em;
    }

    .menutitle2 span {
        width: 90%;
        height: 100px;
        font-size: 0.6em;
        line-height: 1.7em;
        padding: 10px 0;
    }

    #about {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .about-photo,
    .message-photo {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .about-photo img,
    .message-photo img {
        max-width: 100%;
        height: auto;
    }

    .about-txt {
        transform: skew(-5deg)scale(0.9);
        padding: 30px;
        font-size: 1.3em;
    }



    .message {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .message-txt {
        transform: skew(-5deg)scale(0.9);
        padding: 30px;
        font-size: 1.3em;
    }

    #message ul li {
        width: 90%;
        margin: 0 2% 0 8%;
    }

    #message ul li div {
        width: 80%;
        height: 150px;
    }

    #message ul li div img {
        width: 110%;
        max-width: 110%;
    }

    #message ul li p {
        width: 95%;
    }

    ul.voicelist {
        margin: 50px auto;
        width: 90%;
    }

    ul.voicelist li {
        width: 100%;
        min-height: 200px;
        margin: 15px 0;
        padding: 10px;
    }

    ul.voicelist li img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    #howtoaudee {
        width: 90%;
    }

    .howtoaudee-wrap {
        padding: 100px 20px 20px 20px;
    }

    .howtoaudee-movie {
        height: auto;
    }

    .ad {
        width: 90%;
    }

    .menutitle3 {
        padding: 5px 10px 5px 25px;
    }

}


/*==============================================================================================
●スマホサイズ最小
==============================================================================================*/

@media screen and (max-width: 320px) {
    .pcmenu {
        display: none;
    }
}