@charset "utf-8";

/* ==================================================== */
/*  基本
/* ==================================================== */
html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}
main {
    display: block;
    color:#000;
    font-family: "Hiragino Kaku Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Meiryo, sans-serif;
    font-size:1.6rem;
    line-height: 1.5;
    letter-spacing: .05em;
}
main figure {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
img {
    width: 100%;
    height: auto;
}
img[src$=".svg"] {
    /*IEでimgタグのsrcにsvgを指定した時に崩れる防止*/
    width: 100%;
    height: auto;
}
sup.local2025 {
    font-size: 50%;
    vertical-align: top;
    position: relative;
    top: 1em;
}
sub {
    font-size: 50%;
    vertical-align: bottom;
    position: relative;
    bottom: -0.1em;
}

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

/*  全ページ共通（common）クラス
/* ==================================================== */

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    -js-display: flex;
    display: flex;
}
.c-pc-only {
    display: inline-block !important;
}
.c-tab-only {
    display: none !important;
}
.c-sp-only {
    display: none !important;
}
.c-tab-over {
    display: inline-block !important;
}
.c-tab-less {
    display: none !important;
}
.clear {
    clear: both !important;
}
.c-justify {
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}
@media screen and (min-width:769px) and (max-width:1024px) {
    .c-pc-only {
        display: none !important;
    }
    .c-tab-only {
        display: inline-block !important;
    }
    .c-sp-only {
        display: none !important;
    }
    .c-tab-over {
        display: inline-block !important;
    }
    .c-tab-less {
        display: inline-block !important;
    }
}
@media screen and (max-width:768px) {
    .c-pc-only {
        display: none !important;
    }
    .c-tab-only {
        display: none !important;
    }
    .c-sp-only {
        display: inline-block !important;
    }
    .c-tab-over {
        display: none !important;
    }
    .c-tab-less {
        display: inline-block !important;
    }
}

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

/*  全ページ共通レイアウト
/* ==================================================== */

/*header*/


/*footer*/



/*その他*/
.inner {
    max-width: 1060px;
    width:100%;
    margin: 0 auto;
    padding: 0 40px;
}
@media screen and (max-width:768px) {
    .inner{
        padding: 0 30px;
    }
}

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

/*  アニメーション
/* ==================================================== */

/*黄色ボーダー*/
.borderline {
    display: inline-block;
    line-height: 1;
}
.borderline::after {
    display: block;
    content: "";
    width: 0%;
    height: 23px;
    margin-top: -0.3em;
    margin-left: -5px;
    background-color: #FDE073;
}
.borderline.active::after {
    width: calc(100% + 10px);
    transition: width 1s cubic-bezier(1, 0.01, 0.02, 1.03);
}
@media screen and (max-width:768px) {
    .borderline::after {
        height: 13px;
        margin-top: -8px;
    }
}

/*下から上*/
.animation_up {
    opacity: 0;
}
.animation_up.active {
    animation: slide-up 1s cubic-bezier(1, 0.04, 0, 0.99) forwards;
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}
@media screen and (max-width:768px) {
/*    .animation_up {
    opacity: 1;
}
@keyframes slide-up {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}*/

}




/* A4縦でPCレイアウトを印刷させる
==================================================== */
@media print {
    html,
    html body {
        *zoom: 0.65;
    }
    body {
        width: 960px;
    }
}