@charset "utf-8";

/* CSS INFORMATION -====================================================
File name : base.css
Description :
===================================================================== */


/* ********************************************************************
	共通・大枠
******************************************************************** */

html {
    font-size: calc(10 / 750 * 100vw);
    overflow-x: hidden;
}

body {
    background-color: #efefef;
    color: #302d28;
    font-family: YakuHanJP, "Noto Sans JP", "メイリオ", "ＭＳ Ｐゴシック", "小塚ゴシック Pro R", "ヒラギノ角ゴ Pro W3", "Meiryo", "MS PGothic", "KozGoPro-Regular", "Hiragino Kaku Gothic Pro", "MS UI Gothic", Osaka, sans-serif;
    font-size: 2.4rem;
    line-height: 2;
}

main {
    z-index: 1;
}

.set1,
.set1 * {
    position: relative;
}

.set1 img {
    width: 100%;
    height: auto;
    display: block;
}

.set1 a {
    color: #302d28;
    display: block;
    text-decoration: none;
}

.inner {
    width: calc(630 / 750 * 100%);
    margin: 0 auto;
}

.btn1 {
    margin: 0 auto;
}

.btn1 img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    display: block;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.btn1:hover img:nth-of-type(2) {
    opacity: 0;
}

.blur {
    -webkit-filter: blur(5px);
    filter: blur(5px);
    -webkit-transition: .3s linear;
    -o-transition: .3s linear;
    transition: .3s linear;
}

.nolink {
    pointer-events: none;
}

a.link_txt {
    display: inline;
    text-decoration: underline;
}


/*お知らせ一覧*/

.news_list {
    border-top: 1px solid #efefef;
}

.news_list a {
    padding: 2em .7em;
    border-bottom: 1px solid #efefef;
}

.news_list dl {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.news .date {
    color: #b5b09c;
    font-family: 'Inter', sans-serif;
    letter-spacing: .1em;
    font-size: 2rem;
    font-weight: 700;
    margin: .3em 3em 0 0;
}

.news .pdf .date::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/common/icon_pdf2.png) no-repeat center/contain;
    width: 1.2em;
    height: 1.35em;
    margin-left: 1em;
}

.news .headline {
    margin-top: .5em;
    line-height: 1.66;
}

.news_list .headline {
    width: 100%;
}


/*カテゴリ―*/

.category span {
    background-color: #efefef;
    padding: 0 1.5em;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 2em;
    white-space: pre;
}

.category .blue {
    color: #00b6e8;
}

.category .green {
    color: #00bf86;
}

.category .purple {
    color: #eb35e9;
}

.category .red {
    color: #fa571b;
}

.category .orange {
    color: #fabe00;
}


/*SDGs*/

.sdgsbar {
    background: url(../images/common/bar_sdgs.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding-bottom: 2rem;
}

@media screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    html {
        font-size: calc(10 / 1600 * 100vw);
        /*		font-size: calc(10 / 1920 * 100vw);*/
    }
    body {
        font-size: 1.6rem;
    }
    .set1 a {
        -webkit-transition: 0.2s ease;
        -o-transition: 0.2s ease;
        transition: 0.2s ease;
    }
    .set1 a:hover {
        color: #f39800;
        -webkit-transition: 0.2s ease;
        -o-transition: 0.2s ease;
        transition: 0.2s ease;
    }
    .outer {
        max-width: 1920px;
        margin: 0 auto;
    }
    .inner {
        width: 100%;
    }
    .sp {
        display: none !important;
    }
    /*お知らせ一覧*/
    .news_list a {
        padding: 1em;
    }
    .news_list a::before {
        width: 1.5em;
        right: 1em;
    }
    .news_list a:hover {
        color: #302d28;
        background-color: #efefef;
    }
    .news .date {
        font-size: 1.2rem;
        margin-right: 3em;
    }
    .news .pdf .date::after {
        width: 1.5em;
        height: 1.75em;
    }
    /*カテゴリ―*/
    .category span {
        padding: .1em 1.5em .2em;
        font-size: 1.2rem;
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
    }
    /*SDGs*/
    .sdgsbar {
        background: url(../images/common/bar_sdgs.png);
        background-repeat: repeat-x;
        background-position: bottom;
        padding-bottom: 2rem;
    }
}

@media screen and (min-width: 1920px) {
    html {
        font-size: 12px;
    }
}


/* =====================================================================
*    header
* =================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: #302d28;
}

.logo {
    width: calc(300 / 750 * 100%);
    padding: calc(25 / 750 * 100%);
    z-index: 150;
}

.logo a {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo img {
    width: calc(123 / 300 * 100%);
}

.logo span {
    color: #fff;
    font-size: 2rem;
    margin-left: 1em;
}

.menu_btn,
.menu_btn span {
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.menu_btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    width: calc(50 / 750 * 100%);
    padding-top: calc(35 / 750 * 100%);
    margin: calc(40 / 750 * 100%) calc(40 / 750 * 100%) 0 0;
}

.menu_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0;
    padding-top: calc(5 / 60 * 100%);
    background-color: #fff;
    border-radius: 2px;
}

.menu_btn span:nth-of-type(1) {
    top: 0;
}

.menu_btn span:nth-of-type(2) {
    top: calc(23 / 50 * 100%);
}

.menu_btn span:nth-of-type(3) {
    bottom: 0;
}

.menu_btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(365%) rotate(-35deg);
    -ms-transform: translateY(365%) rotate(-35deg);
    transform: translateY(365%) rotate(-35deg);
}

.menu_btn.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: active-menu-bar02 .8s forwards;
    animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar02 {
    100% {
        height: 0;
    }
}

@keyframes active-menu-bar02 {
    100% {
        height: 0;
    }
}

.menu_btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-365%) rotate(35deg);
    -ms-transform: translateY(-365%) rotate(35deg);
    transform: translateY(-365%) rotate(35deg);
}

.nav {
    display: none;
    position: absolute;
    top: 10.9rem;
    left: 0;
    width: 100vw;
    height: calc(100vh - 10.9rem);
    background: rgba(0, 0, 0, 0.6);
    overflow-y: scroll;
}

.nav_menu {
    margin: 0 auto;
    padding: calc(50 / 750 * 100%) 0;
    width: calc(630 / 750 * 100%);
}

.nav_menu li a,
.nav_open {
    display: block;
    width: 100%;
    color: #fff;
    font-size: 2.8rem;
    padding-left: 3em;
    margin-bottom: calc(70 / 630 * 100%);
}

@media screen and (max-width: 767px) {
    .nav_open::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 3.2em;
        height: 1.8em;
    }
    .nav_info .nav_open::before {
        background: url(../images/top/icon_1.png) no-repeat center/contain;
    }
    .nav_fromytv .nav_open::before {
        background: url(../images/top/icon_2.png) no-repeat center/contain;
    }
    .nav_action .nav_open::before {
        background: url(../images/top/icon_3.png) no-repeat center/contain;
    }
    .nav_recruit a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 3.2em;
        height: 1.8em;
        background: url(../images/top/icon_4.png) no-repeat center/contain;
    }
    .nav_recruit a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 3.2em;
        height: 1.8em;
        background: url(../images/top/icon_4.png) no-repeat center/contain;
    }
    .nav_bangumi a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 3.2em;
        height: 1.8em;
        background: url(../images/top/icon_5.png) no-repeat center/contain;
    }
    .nav_menu>li:not(.bangumishinsa)>a[target="_blank"]::after {
        content: '';
        position: relative;
        top: -0.1em;
        display: inline-block;
        margin-left: 1.1em;
        width: 1.1em;
        height: 1.1em;
        vertical-align: middle;
        background: url(../images/common/icon_newTab.png) no-repeat center/contain;
    }
}

.nav_open span {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: .95em;
    height: .95em;
    margin-right: 2em;
}

.nav_open span:before,
.nav_open span:after {
    display: block;
    content: '';
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.nav_open span:before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.nav_open.active span::before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.nav_menu li.bangumishinsa a {
    background-color: #f39800;
    text-align: center;
    border-radius: 2em;
    width: calc(460 / 630 * 100%);
    margin: 0 auto;
    padding: .8em 1.5em .9em;
}

.nav_menu li.bangumishinsa a::before {
    display: none;
}

.nav_menu2 {
    display: none;
}

.nav_menu2 li a {
    padding-left: 5em;
    margin-bottom: calc(30 / 630 * 100%);
}

.nav_menu2 li:last-child a {
    margin-bottom: calc(70 / 630 * 100%);
}

@media screen and (min-width: 768px) {
    header .outer {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .logo {
        width: calc(400 / 1920 * 100%);
        padding: calc(20 / 1920 * 100%);
    }
    .logo img {
        width: calc(154 / 360 * 100%);
    }
    .logo span {
        font-size: 2rem;
        margin-left: 2em;
        -webkit-transition: 0.3s ease;
        -o-transition: 0.3s ease;
        transition: 0.3s ease;
    }
    .logo a:hover span {
        color: #f39800;
    }
    .nav {
        position: relative;
        display: block !important;
        top: 0;
        width: auto;
        background-color: transparent;
        height: auto;
        overflow: hidden;
    }
    .nav_menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0;
        padding: 0;
        width: 100%;
    }
    .nav_menu li {
        padding-right: 2.5em;
    }
    .nav_menu li:not(:nth-last-child(-n+2))::before {
        content: '／';
        position: absolute;
        top: 50%;
        right: 0;
        color: #fff;
        width: 1.2em;
        margin: 0 1em 0 0;
        font-size: 1.2rem;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .nav_menu li a {
        padding: 0;
        margin: 0;
        font-size: 1.5rem;
        white-space: pre;
    }
    .nav_menu li:not(.bangumishinsa) a::after {
        content: '';
        opacity: 0;
        position: absolute;
        bottom: -.3em;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #f39800;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }
    .nav_menu li a:hover {
        color: #fff;
    }
    .nav_menu li a:hover::after {
        opacity: 1;
    }
    .nav_menu li.bangumishinsa a {
        padding: .2em 1.5em .3em;
        width: 100%;
    }
    .nav_menu li.bangumishinsa a:hover {
        color: #302d28;
        background-color: #efefef;
    }
    .menu_btn {
        display: none;
    }
}


/* =====================================================================
*    下層ページ
* =================================================================== */

.subpage section {
    padding-bottom: calc(160 / 750 * 100%);
}


/* .subpage #main {
    margin-top: 10.8rem;
} */

.submv {
    padding: 15.5rem 0 4rem;
    background-color: #efefef;
}

.submv h2 {
    margin-bottom: 2.5rem;
}

.submv h2 span {
    display: block;
}

.submv .en {
    margin-left: -0.1em;
    font-size: 8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1;
}

.submv .ja {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .2em;
}

.sub_ttl span {
    display: block;
}

.sub_ttl .ja {
    font-size: 3.8rem;
    letter-spacing: .2rem;
    font-weight: 700;
    margin-bottom: .2em;
    line-height: 1.2;
}

.contents {
    padding: calc(90 / 750 * 100%) 0 calc(120 / 750 * 100%);
    background-color: #fff;
}

.contents:not(:last-child) {
    margin-bottom: calc(120 / 750 * 100%);
}

.txt_caption {
    font-size: 2.8rem;
    margin-bottom: calc(65 / 630 * 100%);
}

.ttl_wrap {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    font-weight: 700;
    padding: 3rem 0;
    margin-bottom: calc(60 / 630 * 100%);
}

.ttl_wrap h4 {
    font-size: 3rem;
    letter-spacing: .3rem;
}

.ttl_wrap p {
    font-size: 2rem;
    letter-spacing: .2rem;
}

.ttl_wrap_link a {
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    margin-bottom: calc(60 / 630 * 100%);
    padding: 3rem 0;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: .3rem;
}

.ttl_wrap_link a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0.7em;
    height: 0.7em;
    border-top: 0.15em solid #000;
    border-right: 0.15em solid #000;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
    .subpage section {
        padding-bottom: calc(160 / 1920 * 100%);
    }
    .submv {
        padding: 11.5rem 0 4rem;
    }
    .submv .inner {
        margin: 0 auto;
        width: calc(1480 / 1920 * 100%);
    }
    .submv h2 {
        margin-bottom: 1.5rem;
    }
    .submv .en {
        font-size: 8rem;
    }
    .submv .ja {
        font-size: 1.6rem;
    }
    .sub_ttl {
        padding: 0 0 0 calc(700 / 1920 * 100%);
    }
    .sub_ttl .ja {
        font-size: 4rem;
        margin-bottom: 0;
    }
    .contents {
        width: calc(1560 / 1920 * 100%);
        margin-left: auto;
        padding: 0;
    }
    .contents::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background-color: #fff;
    }
    .contents::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: calc(360 / 1920 * 100%);
        height: 100%;
        background-color: #efefef;
        z-index: 1;
        opacity: 0;
    }
    .contents:not(:last-child) {
        margin-bottom: calc(120 / 1920 * 100%);
    }
    .contents .inner {
        padding: calc(90 / 1560 * 100%) calc(300 / 1560 * 100%) calc(110 / 1560 * 100%) calc(320 / 1560 * 100%);
    }
    .side_menu {
        background-color: #302d28;
        position: absolute;
        top: 0;
        left: 0;
        width: calc(305 / 1920 * 100vw);
        min-width: 180px;
        max-height: 70vh;
        margin: calc(300 / 1920 * 100%) 0 0 calc(160 / 1920 * 100%);
        z-index: 3;
        overflow-y: auto;
    }
    .side_menu.fixed {
        position: fixed;
        margin: calc(150 / 1920 * 100%) 0 0 calc(160 / 1920 * 100%);
    }
    .side_menu.fixed2 {
        top: auto;
        bottom: 0;
        margin-top: 0;
        margin-bottom: calc(160 / 1920 * 100%);
    }
    .side_menu::-webkit-scrollbar {
        width: 1em;
    }
    .side_menu::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 1em;
    }
    .side_menu li a {
        color: #fff;
        padding: 1em .5em 1em 2em;
        font-size: 1.5rem;
    }
    .side_menu li:not(:first-child) a {
        border-top: 1px solid #585856;
    }
    .side_menu li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0.5em;
        height: 100%;
        background-color: #f3bb00;
        -webkit-transition: .3s ease;
        -o-transition: .3s ease;
        transition: .3s ease;
        opacity: 0;
    }
    .side_menu li a:hover {
        color: #fff;
    }
    .side_menu li a:hover::before {
        opacity: 1;
    }
    .txt_caption {
        font-size: 1.6rem;
        margin-bottom: calc(65 / 940 * 100%);
    }
    .ttl_wrap {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-align-items: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-bottom: calc(60 / 940 * 100%);
        padding: 2rem 0;
        line-height: 1;
        border-width: 4px;
    }
    .ttl_wrap h4 {
        font-size: 2.4rem;
        margin-right: .5em;
    }
    .ttl_wrap p {
        font-size: 1.6rem;
    }
    .ttl_wrap_link a {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-align-items: flex-end;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        margin-bottom: calc(60 / 940 * 100%);
        margin-right: .5em;
        padding: 2rem 0;
        line-height: 1;
        border-width: 4px;
        font-size: 2.4rem;
    }
    .ttl_wrap_link a:hover::before {
        right: 0.5em;
    }
}

@media screen and (min-width: 1920px) {
    .subpage section {
        padding-bottom: 160px;
    }
    .side_menu {
        margin-top: 300px;
    }
    .side_menu.fixed {
        margin-top: 150px;
    }
}

.bluelink {
    text-decoration: underline!important;
    color: #1075b7!important;
    display: inline!important;
}


/* =====================================================================
*    footer
* =================================================================== */

footer {
    background-color: #302d28;
    padding: calc(100 / 750 * 100%) 0 calc(80 / 1000 * 100%);
    margin-top: calc(0 / 750 * 100%);
}

.pagetop {
    position: absolute;
    top: 0;
    right: 0;
    margin: calc(-100 / 750 * 100%) calc(30 / 750 * 100%) 0 0;
}

.pagetop a {
    width: 8rem;
    padding: 2rem;
    background: rgba(243, 171, 48, 0.8);
    border-radius: 50%;
}

.pagetop.fixed {
    position: fixed;
    top: auto;
    bottom: 0;
    margin-bottom: calc(20 / 750 * 100%);
    z-index: 3;
}

.sitemap {
    color: #fafaf8;
    margin: auto;
    width: calc(210 / 630 * 100%);
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    line-height: 1;
    font-size: 3rem;
    letter-spacing: .3rem;
    margin-bottom: calc(40 / 630 * 100%);
}

.sitemap::before {
    content: "";
    display: block;
    width: .45em;
    height: .45em;
    position: absolute;
    top: .1em;
    right: 0;
    border-top: 1px solid #fafaf8;
    border-right: 1px solid #fafaf8;
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.sitemap.active::before {
    top: .3em;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.footer_nav {
    display: none;
    margin: 0 0 calc(100 / 630 * 100%);
}

.footer_nav li a {
    color: #fafaf8;
    font-size: 2.8rem;
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.footer_nav li a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: .5em;
    height: 1px;
    background-color: #fafaf8;
}

.footer_sns {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: calc(70 / 630 * 100%) 0;
    border-top: 1px solid #585856;
}

.footer_sns li {
    width: calc(43 / 630 * 100%);
    margin: 0 calc(20 / 630 * 100%);
}

.footer_sns li img:first-child {
    opacity: 0;
}

.copy {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
}

@media screen and (min-width: 768px) {
    footer {
        padding: calc(94 / 1920 * 100%) 0 calc(66 / 1920 * 100%);
        margin-top: calc(0 / 1920 * 100%);
    }
    .pagetop {
        margin: calc(-120 / 1920 * 100%) calc(30 / 1920 * 100%) 0 0;
    }
    .pagetop.fixed {
        margin-bottom: calc(20 / 1920 * 100%);
    }
    .pagetop a {
        width: 5rem;
        padding: 1.3rem;
    }
    .pagetop a:hover {
        background: rgba(104, 104, 104, 0.8);
    }
    .sitemap {
        display: none;
    }
    .footer_nav {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-align-items: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: calc(1400 / 1920 * 100%);
        max-width: 1400px;
        min-width: 600px;
        height: calc(300 / 1920 * 100vw);
        margin: 0 auto;
    }
    .footer_nav li {
        width: auto;
        margin: 0 calc(50 / 1100 * 100%);
    }
    .footer_nav li a {
        font-size: 1.4rem;
    }
    .footer_nav li a::before {
        -webkit-transition: .2s;
        -o-transition: .2s;
        transition: .2s;
    }
    .footer_nav li a:hover {
        color: #f3bb00;
        /*		padding-left: 2em;*/
    }
    .footer_nav li a:hover::before {
        background-color: #f3bb00;
        /*		width: 1.5em;*/
    }
    .footer_sns {
        padding: calc(120 / 1920 * 100%) 0 calc(70 / 1920 * 100%);
        border-top: 0;
    }
    .footer_sns li {
        width: calc(30 / 1920 * 100%);
        margin: 0 calc(17 / 1920 * 100%);
    }
    .footer_sns li img:first-child {
        opacity: 1;
    }
    .copy {
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 1200px) {
    .footer_nav {
        height: calc(200 / 1920 * 100vw);
    }
}

@media screen and (min-width: 1920px) {
    footer {
        padding: 94px 0 66px;
        margin-top: 0px;
    }
    footer::before {
        padding-top: 300px;
        margin-top: -300px;
    }
    .pagetop {
        /* width: 50px; */
        /* padding: 12px; */
        margin: -120px 30px 0 0;
    }
    .pagetop.fixed {
        margin-bottom: 20px;
    }
    .footer_nav {
        height: 200px;
    }
}


/* ********************************************************************
	2021.04 ナビ変更対応
******************************************************************** */

.pdfI::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 0.5em;
    background: url(../images/common/icon_pdf2.png) no-repeat center/contain;
    width: 1em;
    height: 1.15em;
    margin-left: .5em;
}

.subNaviColorS a {
    color: #f39800!important;
}

@media screen and (min-width: 768px) {
    .pdfI::after {
        bottom: 1.4em;
    }
    .subNaviColor {
        background-color: #585856;
    }
    .subNaviColor a {
        border-top: 1px solid #000!important;
    }
}