@charset "utf-8";

@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 100;
    src: url('/_common/font/NotoSansCJKjp-Thin.woff') format('woff'), /* Modern Browsers */
    url('/_common/font/NotoSansCJKjp-Thin.woff') format('woff2'); /* Modern Browsers */
}
@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 200;
    src: url('/_common/font/NotoSansCJKjp-Light.woff') format('woff'),
    url('/_common/font/NotoSansCJKjp-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 300;
    src: url('/_common/font/NotoSansCJKjp-DemiLight.woff') format('woff'),
    url('/_common/font/NotoSansCJKjp-DemiLight.woff2') format('woff2');
}
@font-face {
    font-family: 'NotoSansCJKjp';
    font-style: normal;
    font-weight: 400;
    src: url('/_common/font/NotoSansCJKjp-Regular.woff') format('woff'),
    url('/_common/font/NotoSansCJKjp-Regular.woff2') format('woff2');
}

/* 全デバイス共通 */
:root {
    /*--color-site-image: #4a82af;*/
    /*--color-txt-main: #333333;*/
    /*--color-sns-fb: #3b5998;*/
    /*--color-sns-twitter: #55acee;*/
    /*--color-sns-line: #09B701;*/
}

* {
    box-sizing: border-box;
}
html {
    font-size: 100%;
    width: 100%;
    height: 100%;
}
body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Noto Sans", "NotoSansCJKjp", "Microsoft Yahei", "PingHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.5;
    /*color: var(--color-txt-main);*/
    color: #333333;
}

/* text-align */
.txtC {
    text-align: center;
}
.txtL {
    text-align: left;
}
.txtR {
    text-align: right;
}

/* PC・スマートフォン表示切り替え */
.pc { display: block !important; }
.sp { display: none !important; }
/*@media only screen and (max-width: 750px) {*/
    /*.pc { display: none !important; }*/
    /*.sp { display: block !important; }*/
/*}*/

/* PCのみ改行 */
.br-pc {
    display: block;
}
/* SPのみ改行 */
.br-sp {
    display: none;
}

/* フェード */
.fade-up {
    transition: opacity 0.7s;
    -moz-transition: opacity 0.7s;
    -webkit-transition: opacity 0.7s;
    -o-transition: opacity 0.7s;
    transition: transform 0.7s;
    -moz-transition: transform 0.7s;
    -webkit-transition: transform 0.7s;
    -o-transition: transform 0.7s;
}

/* button pagetop */
#pagetop img {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 10001;
}

/* footer */
footer {
    clear: both;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #FFF;	/*文字色*/
    /*background: var(--color-site-image);	!*背景色*!*/
    background: #4a82af;	/*背景色*/
    width: 100%;
}
footer .pr {
    display: block;
    font-size: 60%;
}
footer a {
    text-decoration: none;
    color: #FFF;
}
footer a:hover {
    color: #FFF;
}

/* 解像度低めのPC
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/

@media screen and (max-width:1024px) and (min-width:769px) {
}

/* タブレット
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/

@media screen and (max-width:768px) and (min-width:481px) {
}


/* スマートフォン
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/

@media screen and (max-width:480px) {

    /* PC・スマートフォン表示切り替え */
    .pc { display: none !important; }
    .sp { display: block !important; }

    /* PCのみ改行 */
    .br-pc {
        display: none;
    }
    /* SPのみ改行 */
    .br-sp {
        display: block;
    }

    /* pagetop */
    #pagetop img {
        position: fixed;
        bottom: 40px;
        right: 10px;
        width: 40px;
        height: 40px;
        z-index: 10001;
    }
}