@charset "UTF-8";
html {
    font-size: 62.5%;
    font-family: helvetica narrow, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #666;
    overflow: auto;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
}

figcaption {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: left;
}

a {
    color: #666;
}

img,
iframe {
    max-width: 100%;
}

hr {
    border: dashed .5px #666;
    margin: 2rem 0;
}

body {
    max-width: 100vw;
    overflow-x: hidden;
    letter-spacing: 1px;
}

body.is_active {
    transition: all 1s;
}

body.is_active::before {
    position: fixed;
    content: "";
    display: block;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
}

a:hover {
    opacity: .9;
}

.header_wrapper {
    background-color: #30bbe2;
    padding: .5rem;
    z-index: 10000;
    position: fixed;
    top: 0;
    width: 100%;
}

.header_wrapper .gnav {
    font-size: 1.6rem;
    top: 5.7rem;
    right: -100vw;
    position: absolute;
    line-height: 3;
    text-align: right;
    width: 100%;
}

.header_wrapper .gnav.is_active {
    right: 0;
    padding: 0 1rem;
    z-index: 9000;
    transition: all .5s;
}

.header_wrapper .gnav .header_menuSP {
    display: block;
}

.header_wrapper .gnav ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    border-bottom: dashed 1px #ccc;
}

.header_wrapper .gnav ul li.sns {
    display: inline-block;
}

.header_wrapper .gnav ul li.sns a {
    border-bottom: none;
    padding-top: 2rem;
    padding-left: 2rem;
}

.header_wrapper .gnav ul li.sns a i {
    color: #30bbe2;
    font-size: 5rem;
}

.header_wrapper .gnav ul li.sns a img {
    max-width: 25%;
}

.header_menuPC {
    display: none;
}

.header_logo_img {
    width: calc(264vw / 375 * 100);
}

.menuSP_wrap {
    width: 50%;
    float: left;
}

.menuSP_wrap:first-child {
    border-right: 1px #ccc solid;
}

.menuSP_wrap a {
    padding: 0 1em;
    font-size: 12px;
}

@media (min-width: 768px) {
    .header_wrapper .gnav .header_menuSP {
        display: none;
    }
    .header_menuPC {
        display: block;
        overflow: hidden;
    }
    .header_menuPC_cv a {
        text-decoration: none;
        display: inline-block;
        background: #ff0;
        border-radius: 100px;
        padding: 0 1em;
        line-height: 2.5;
    }
    .header_wrapper .gnav .header_menuPC .header_menuPC_wrap {
        z-index: 1000;
        border-radius: 10px;
        position: absolute;
        top: 0;
        left: 30px;
        display: flex;
    }
    .header_wrapper .gnav .header_menuPC .header_menuPC_cv {
        float: right;
        font-weight: bold;
    }
    .header_menuPC_monly {
        display: block;
        height: 48px;
    }

    .header_menuPC_monly a {
        display: block;
        font-weight: bold;
        color: #fff;
        text-decoration: none;
        margin-right: 20px;
        float: right;
    }
    .header_wrapper .gnav .header_menuPC .header_menuPC_parent {
        display: block;
        width: 175px;
        text-align: center;
        font-weight: bold;
        color: #fff;
        background: url(../common/images/headerArea-nav-accordion_dt.png) no-repeat;
        background-position: center 90%;
    }
    .header_wrapper .gnav .header_menuPC .header_menuPC_wrap .header_menuPC_inner:hover .header_menuPC_parent {
        color: #666;
        background: #fff;
        border-radius: 4px 4px 0 0;
    }
    .header_wrapper .gnav .header_menuPC .header_menuPC_child {
        width: 100%;
        padding: 1em 1em;
        display: none;
    }
    .header_wrapper .gnav .header_menuPC .header_menuPC_wrap .header_menuPC_inner:hover .header_menuPC_parent+.header_menuPC_child {
        display: block;
        background: #fff;
        border-radius: 0 0 4px 4px;
    }
    .header_wrapper .gnav ul li {
        white-space: nowrap;
        display: block;
    }
    .header_wrapper .gnav ul li a {
        border-bottom: none;
        font-size: 1.3rem;
        background: url(../common/images/icons_link_f0f0f0.svg) no-repeat center right;
        background-size: 16px;
    }
    .header_wrapper .gnav ul li a:hover {
        background: url(../common/images/icons_link_hover.svg) no-repeat center right;
        background-size: 16px;
        color: #2EA4FF;
        font-weight: bold;
    }
    .header_wrapper .gnav ul li.sns a {
        padding: 0;
        background: none;
    }
    .header_wrapper .gnav ul li.sns a i {
        color: rgb(24, 23, 23);
        font-size: 3rem;
        line-height: 1.6rem;
        vertical-align: middle;
    }
    .header_logo_img {
        max-width: 220px;
    }
}

.header_wrapper .gnav ul li a span {
    color: #30bbe2;
    background: #ff0;
    padding: .5rem 1rem;
    border-radius: .4rem;
}

.header_wrapper .hamburg_menu span {
    transition: all .5s;
}

.header_wrapper .hamburg_menu.is_active span:nth-child(1) {
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
}

.header_wrapper .hamburg_menu.is_active span:nth-child(2) {
    display: none;
}

.header_wrapper .hamburg_menu.is_active span:nth-child(3) {
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
}

@media (min-width: 768px) {

    .header_wrapper {
        min-width: 960px;
    }

    .header_wrapper header {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header_wrapper .gnav {
        position: relative;
        top: 0;
        right: 0;
        padding-left: 12rem;
    }
    .header_wrapper .gnav ul {
        font-size: 1.5rem;
        align-items: center;
    }
    .header_wrapper .gnav ul li a {
        text-decoration: none;
        color: #000;
        display: block;
        text-align: left;
        border-bottom: dashed 1px #ccc;
    }
    .header_wrapper .gnav ul li.sns.sdgs {
        width: 30px;
        position: relative;
        top: 10px;
        margin-left: 20px;
    }
    .header_wrapper .gnav ul li.sns a img {
        max-width: 100%;
    }
    .sns {
        width: 30px;
        display: inline-block;
    }
    .sns.sdgs {
        width: 50px;
    }
    .sns img {
        width: 30px;
        vertical-align: middle;
    }
    .sns i {
        font-size: 26px;
        position: relative;
        bottom: -5px;
        z-index: 10000;
    }
}

.header_wrapper .hamburg_menu {
    width: 10%;
    height: 60%;
    position: absolute;
    top: 18%;
    right: 2%;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .header_wrapper .hamburg_menu {
        display: none;
    }
}

.header_wrapper .hamburg_menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
}


/* パンくずリスト */

.breadcrumb {
    display: flex;
    font-size: 1.4rem;
    margin-top: 6.5rem;
}

@media (min-width:768px) {
    .breadcrumb {
        display: flex;
        font-size: 1.4rem;
        margin-top: 9rem;
    }
}

.breadcrumb>li {
    margin-right: 1rem;
}

.breadcrumb>li::after {
    content: ">";
    display: inline-block;
    margin-left: 1rem;
}

.breadcrumb>li:last-child::after {
    display: none;
}

.breadcrumb>li a {
    text-decoration: none;
}

.breadcrumb>li a:hover {
    text-decoration: underline;
}

.breadcrumb>li:not(:last-child) {
    white-space: nowrap;
}


/* フッター */

.footer_wrapper {
    background-color: #30bbe2;
    color: #fff;
    padding: 2rem 0;
    max-width: 100%;
    margin-top: 8rem;
}

.footer_wrapper .footer_contents {
    max-width: 95%;
    margin: 0 auto;
}

.footer_item1 {
    display: none
}

.footer_item2 ul,
.footer_item3 ul {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 2rem;
}

.footer_item2 ul li,
.footer_item3 ul li {
    width: 50%;
    line-height: 3
}

@media (min-width: 768px) {
    .footer_item2 ul,
    .footer_item3 ul {
        display: block;
        text-align: left;
        margin-bottom: 0;
    }
    .footer_item2 ul li,
    .footer_item3 ul li {
        width: 100%;
        line-height: 1;
    }
}

.footer_item4 {
    display: flex
}

.footer_item4 img {
    max-width: 90%
}

.footer_contents li a {
    color: #fff;
    text-decoration: none;
    line-height: 2;
}

.footer_wrapper small {
    display: block;
    margin-top: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer_wrapper .footer_contents {
        width: 100vw;
        max-width: 1000px;
        margin: 0 auto;
        color: #fff;
        font-size: 1.2rem;
    }
    .footer_items {
        display: flex;
        justify-content: space-around;
    }
    .footer_item1 {
        order: 2;
        display: block;
    }
    .footer_item2 {
        order: 3;
        display: block;
    }
    .footer_item3 {
        order: 4;
        display: block;
    }
    .footer_item4 {
        order: 1;
        display: block;
    }
}

.footer_logo {
    flex-shrink: 0;
    width: calc(79vw / 375 * 100);
    margin-right: 10px;
}
.footer_logo img {
    max-width: 100%;
}
@media (min-width: 768px) {
    .footer_logo {
        max-width: 129px;
    }
}

/* メインサイト幅 */

.main_contents_wrapper {
    width: 95%;
    margin: 0 auto;
}

.main_contents_wrapper .fb {
    display: none;
}

.main_contents_wrapper .fb a {
    color: #fff;
}

@media (min-width:768px) {
    .main_contents_wrapper {
        width: 100vw;
        max-width: 1000px;
        margin: 0 auto;
        margin-top: 65px
    }
    .main_contents_wrapper .fb {
        display: block;
    }
}


/* サブページ */

.key_wrapper {
    max-width: 95%;
    margin: 0 auto;
}

.key p {
    font-size: 1.4rem;
}

@media (min-width: 768px) {
    .key_wrapper {
        background-color: #dbecf6;
        font-size: 1.6rem;
        height: 18.5rem;
        position: relative;
        max-width: 100vw;
    }
    .key {
        max-width: 1000px;
        margin: 0 auto;
    }
    .key p {
        position: relative;
        padding-top: 10rem;
        margin-left: 6rem;
    }
}

.sub_contents_wrapper {
    margin: 2rem auto 0;
    font-size: 1.4rem;
}

@media (min-width:768px) {
    .sub_contents_wrapper {
        margin: 2rem auto 0;
        max-width: 95%;
    }
}

.site_title_wrapper {
    max-width: 95%;
    ;
    margin: 2rem auto 0;
}

.site_title {
    font-size: 2rem;
    font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.site_title h1 {
    font-size: 3rem;
}

@media (min-width:768px) {
    .site_title_wrapper {
        width: 100vw;
        max-width: 1000px;
        margin: 2rem auto 0;
    }
    .site_title h1 {
        font-size: 4.2rem;
        font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    }
}

.title_txt {
    font-size: 2rem;
    background: url(../common/images/bd_greeting.jpg) no-repeat bottom left;
}

@media (min-width:768px) {
    .title_txt {
        font-size: 2.7rem;
        background: url(../common/images/bd_greeting.jpg) no-repeat bottom left;
    }
}

.msg {
    padding: 1rem;
}

@media (min-width:768px) {
    .msg {
        padding: 3rem;
    }
}

.btn_wrapper {
    text-align: center;
    margin-top: 2rem;
}

@media (min-width:768px) {
    .btn_wrapper {
        margin-top: 4rem;
        text-align: right;
    }
}
.pdf {
    color: #0000aa;
}
.pdf::after {
    content: "";
    background: url(../images/icon_download.png) no-repeat;
    display: inline-block;
    position: relative;
    width: 22px;
    height: 29px;
    bottom: -10px;
    right: 0;
    margin: 0 5px;
}

.pageTop {
    margin-top: 4.6rem;
    text-align: right;
    position: fixed;
    bottom: 0;
    right: 5%;
}

@media (min-width:768px) {
    .pageTop {
        margin-top: 13.6rem;
        bottom: 5%;
        right: 10%;
    }
}

.banner_wrapper {
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .banner_wrapper {
        width: 100vw;
        max-width: 1000px;
        margin: 40px auto;
    }
    .banner_wrapper .banner_contents {
        display: flex;
        justify-content: space-around;
    }
    .banner_wrapper .banner_contents div {
        flex-basis: calc(100% / 3.1);
    }
}

.bx-wrapper {
    box-shadow: none;
}

.bx-wrapper .bx-controls-direction a {
    top: auto;
    bottom: -43px;
}
