@charset "UTF-8";

/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
    font-size: 1.6em;
    background: #fff;
    color: #000;
    line-height: 1.8;
}

.wrapper {
    overflow: hidden;
}

a {
    color: #2aa9df;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

a.link-tel {
    pointer-events: none;
}

a.link-blink:hover {
    -webkit-animation: blink .8s ease-in-out;
    animation: blink .8s ease-in-out;
}

a.link-text {
    transition: color .1s ease-out;
}

a.link-text:hover {
    color: #2aa9df;
    transition: color .1s ease-out;
}

a.b-link-text {
    color: #2aa9df;
    text-decoration: underline;
    transition: color .1s ease-out;
}

a.b-link-text:hover {
    transition: color .1s ease-out;
    text-decoration: none;
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.disp-tab {
    display: none;
}

.disp-sp {
    display: none;
}

@media only screen and (max-width: 1024px) {
    /*
  .disp-tab {
    display: block;
  }
*/
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 1.4em;
    }

    a:hover {
        opacity: 1;
    }

    a.link-tel {
        pointer-events: auto;
    }

    .disp-pc {
        display: none;
    }

    .disp-sp {
        display: block;
    }
}

/*------------------------------------------
  parts
------------------------------------------*/
/* ===== flexbox ===== */
.flexbox {
    display: -moz-flex;
    display: flex;
    -ms-flex-pack: justify;
}

.col {
    box-sizing: border-box;
}

.col-w50 {
    width: 50%;
}

@media only screen and (max-width: 768px) {
    .flexbox {
        flex-direction: column;
    }
}


/* ===== layout ===== */
.layout-type01 {
    max-width: 1250px;
    margin: auto;
    padding: 20px;
}

/* ===== title ===== */
.title-type01 {
    font-weight: bold;
    font-size: 2.8rem;
    color: #2f348a;
    border-bottom: 2px solid #2aa9df;
    padding-bottom: 12px;
    margin-bottom: 50px;
}

.title-type01 span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.title-type01 span:last-child {
    margin-right: 0;
}

.title-type02 {
    color: #fff;
    background: #2aa9df;
    border-radius: 5px;
    overflow: hidden;
    font-weight: bold;
    font-size: 2.2rem;
    padding: 12px 30px;
    position: relative;
    line-height: 1.5;
    margin-bottom: 35px;
}

.title-type02 .ttl-txt {
    position: relative;
    z-index: 1;
}

.title-type02 .ttl-icon {
    width: 60%;
    height: 100%;
    background: #2f348a;
    position: absolute;
    right: 0;
    top: 0;
}

.title-type02 .ttl-icon:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 110px 0;
    border-color: transparent #2f348a transparent transparent;
    position: absolute;
    left: -60px;
    top: 0;
}

.title-type03 {
    margin-left: 6%;
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 2px solid #2aa9df;
    margin-bottom: 30px;
    padding-bottom: 4px;
}

/* ===== btn ===== */
.btn-type01 {
    text-align: center;
    display: block;
    max-width: 400px;
    margin: auto;
    color: #fff;
    background: #2f348a;
    border-radius: 25px;
    position: relative;
    padding: .6em 1em;
    text-decoration: none;
}

.btn-type01:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
}

.btn-type01.sht {
    max-width: 300px;
}

.btn-type02 {
    text-align: center;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    margin: auto;
    color: #fff;
    background: #2f348a url(../images/common/ico-link.png) no-repeat right 18px center;
    border-radius: 25px;
    position: relative;
    padding: .6em 1em;
    background-size: 15px;
    text-decoration: none;
}
.btn-type03 {
    text-align: center;
    display: block;
    max-width: 150px;
    margin: auto;
    color: #2aa9df;
    /*background: #2f348a;
  border-radius: 25px;*/
    position: relative;
    padding: .6em 1em;
    text-decoration: none;
}

.btn-type03:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #2aa9df;
    border-left: 2px solid #2aa9df;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -5px;
}

a.btn-type04 {
    position: relative;
    color: #2aa9df;
    font-weight: bold;
    display: block;
    height: 30px;
    border-bottom: 1px solid;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 8px;
    transition: .1s ease-out;
    text-decoration: none;
}

a.btn-type04:after {
    position: absolute;
    content: "＞";
    right: 20px;
    transition: .5s ease-out;
}

a.btn-type04:hover {
    color: #1d7fa9;
    transition: .1s ease-out;
}

a.btn-type04:hover:after {
    right: 10px;
    transition: right .5s ease-out;
}

.btn-type05 {
    display: inline-block;
    max-width: 200px;
    text-align: left;
    border: 3px solid #2f348a;
    font-size: 16px;
    color: #2f348a;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 4px;
    transition: .4s;
}

.btn-type05:hover {
    background-color: #2f348a;
    color: #FFF;
}

.btn-type05:hover:after {
    content: "";
    background-image: url(../images/common/ico-link.png);
    transition: .4s;
}

.btn-type55 {
    display: inline-block;
    max-width: 300px;
    text-align: left;
    border: 3px solid #2f348a;
    font-size: 16px;
    color: #2f348a;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 30px;
    border-radius: 4px;
    transition: .4s;
}

.btn-type55:hover {
    background-color: #2f348a;
    color: #FFF;
}

.btn-type55:hover:after {
    content: "";
    background-image: url(../images/common/ico-link.png);
    transition: .4s;
}

/* ===== list ===== */
.list-type01 {
    padding-left: 6%;
    line-height: 1.5;
}

.list-type01 .list-item {
    border-bottom: 1px dotted #000;
}

.list-type01 .list-item:first-child .item-inner {
    padding-top: 0;
}

.list-type01 .item-inner {
    display: table;
    padding: 1em 0;
    width: 100%;
}

.list-type01 p {
    display: table-cell;
    vertical-align: top;
}

.list-type01 .item-label {
    font-weight: bold;
    width: 12em;
}

.list-type02 {
    padding-left: 6%;
}

.list-type02 .list-item {
    border-bottom: 1px dotted #000;
    padding: 1.5em 0;
    align-items: center;
}

.list-type02 .list-item:first-child {
    padding-top: 0;
}

.list-type02 .item-title {
    width: 60%;
}

.list-type02 .item-link {
    width: 30%;
    margin-left: auto;
    box-sizing: border-box;
}

/* ===== textbox ===== */
.textbox-type01 {
    padding-left: 5%;
    margin-bottom: 30px;
}

.textbox-type01:last-child {
    margin-bottom: 0;
}

.textbox-type01 .box-title {
    font-weight: bold;
    font-size: 1.8rem;
    border-bottom: 2px solid #2aa9df;
    margin-bottom: 25px;
    padding-bottom: 10px;
    line-height: 1.5;
}

.textbox-type01 .box-contents.flexbox .text {
    width: 60%;
}

.textbox-type01 .box-contents.flexbox .image {
    width: 36%;
    margin-left: auto;
}

.textbox-type02 .box-image {
    float: right;
    width: 26%;
    padding: 0 0 20px 20px;
}


.works-link {
    /*float: left;*/
    width: 278px;
}
.social {
    float: left;
    margin-left: 50px;
}

.social a:not(:first-child) {
    margin-left: 15px;
}

@media only screen and (max-width: 1024px) {

    /* ===== layout ===== */
    .layout-type01 {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 768px) {

    /* ===== flexbox ===== */
    .col {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .col:last-child {
        margin-bottom: 0;
    }

    /* ===== layout ===== */
    .layout-type01 {
        padding: 0 15px;
    }

    /* ===== title ===== */
    .title-type01 {
        font-size: 1.8rem;
        padding-bottom: 8px;
        margin-bottom: 30px;
    }

    .title-type02 {
        font-size: 1.6rem;
        padding: 10px 15px;
        margin-bottom: 25px;
    }

    .title-type02 .ttl-icon {
        width: 30%;
    }

    .title-type03 {
        margin-left: 0;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    /* ===== list ===== */
    .list-type01 {
        padding-left: 0;
        font-size: 1.3rem;
    }

    .list-type01 p {
        display: block;
    }

    .list-type01 .item-label {
        width: auto;
        margin-bottom: 5px;
    }

    .list-type02 {
        padding-left: 0;
        font-size: 1.3rem;
    }

    .list-type02 .list-item {
        border-bottom: 1px dotted #000;
        padding: 1.5em 0;
        align-items: center;
    }

    .list-type02 .list-item:first-child {
        padding-top: 0;
    }

    .list-type02 .item-title {
        width: 100%;
    }

    .list-type02 .item-link {
        width: 100%;
        margin-top: 10px;
    }

    /* ===== textbox ===== */
    .textbox-type01 {
        padding-left: 0;
    }

    .textbox-type01 .box-title {
        margin-bottom: 15px;
        padding-bottom: 5px;
        font-size: 1.6rem;
    }

    .textbox-type01 .box-contents {
        font-size: 1.3rem;
    }

    .textbox-type01 .box-contents.flexbox .text {
        width: 100%;
        margin-bottom: 15px;
    }

    .textbox-type01 .box-contents.flexbox .image {
        width: 100%;
    }

    .textbox-type02 {
        display: -moz-flex;
        display: flex;
        -ms-flex-pack: justify;
        flex-wrap: wrap;
    }

    .textbox-type02 .box-text {
        margin-bottom: 15px;
        -ms-order: 1;
        order: 1;
    }

    .textbox-type02 .box-image {
        float: none;
        text-align: center;
        width: 100%;
        padding: 0;
        -ms-order: 2;
        order: 2;
    }

    .textbox-type02 .box-image img {
        max-width: 400px;
    }


    .btn-type01.sht {
        max-width: 100%;
    }

    .works-link {
        float: none;
        width: 100%;
        min-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .social {
        float: none;
        margin: 30px auto;
        width: 112px;
    }

}

/*------------------------------------------
  header
------------------------------------------*/
.site-header {
    padding: 16px 40px;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 10;
    background: #fff;
    line-height: 1.5;
    align-items: center;
}

.gnav {
    margin-left: auto;
    font-size: 1.4rem;
    text-align: center;
    position: relative;
    /*賛同登録バナー設置20200910*/
}

.gnav .list-item:last-child a:after {
    content: none;
}

.gnav a {
    position: relative;
    display: block;
    padding: 4px 5px;
    text-decoration: none;
    color: #000;
}

li:last-child > a {
    border-right: none;
}

.gnav ul {
    margin: 20px 0 4px;
}

.gnav-trigger {
    display: none;
}

ul.gnav-list li:last-child {
    /*border-right: 2px solid #e8e8e8;*/
    /*20200923 gnav修正*/
}

ul.gnav-list li.list-item {
    flex-grow: 1;
    /*border-left: 2px solid #e8e8e8;*/
    /*20200923 gnav修正*/
}

.BD-organization .gnav .list-item01 a {
    color: #2aa9df;
}

.BD-message .gnav .list-item02 a {
    color: #2aa9df;
}

.BD-works .gnav .list-item03 a {
    color: #2aa9df;
}

@media only screen and (min-width: 1089px) {
    .gnav ul {
        font-weight: bold;
        font-size: 15px;
    }
}

@media only screen and (max-width: 1024px) {
    .site-header {
        padding: 16px 20px;
    }

    .gnav {
        font-size: 1.6rem;
    }

    .gnav a {
        color: #fff !important;
        padding: .6em 20px .6em 0;
        text-align: left;
        font-weight: normal;
    }

    .gnav a:before {
        content: "";
        display: block;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        right: 8px;
        top: 50%;
        margin-top: -5px;
    }

    .gnav ul {
        margin: 0;
    }

    .gnav .list-item {
        border-bottom: 1px solid #fff;
        margin-bottom: 1em;
    }

    .gnav-list {
        position: fixed;
        background: #2aa9df;
        display: block;
        width: 44%;
        height: 100vh;
        right: -100%;
        top: 90px;
        padding: 40px;
        z-index: 20;
        box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, .2) inset;
        transition: .6s ease-in;
        font-weight: bold;
    }

    .gnav-list-open {
        right: 0;
        transition: .6s ease-in;
    }

    .gnav-trigger {
        display: block;
        position: absolute;
        width: 26px;
        height: 16px;
        right: 20px;
        top: 50%;
        margin-top: -8px;
        cursor: pointer;
    }

    .gnav-trigger div {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .gnav-trigger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #2f348a;
        position: absolute;
        transition: .4s;
    }

    .gnav-trigger span:nth-of-type(1) {
        top: 0;
    }

    .gnav-trigger span:nth-of-type(2) {
        top: 50%;
        margin-top: -1px;
    }

    .gnav-trigger span:nth-of-type(3) {
        bottom: 0;
    }

    .trigger-open span {
        transition: .4s;
    }

    .trigger-open span:nth-of-type(1) {
        -webkit-transform: translateY(7px) rotate(-45deg);
        transform: translateY(7px) rotate(-45deg);
    }

    .trigger-open span:nth-of-type(2) {
        opacity: 0;
    }

    .trigger-open span:nth-of-type(3) {
        -webkit-transform: translateY(-7px) rotate(45deg);
        transform: translateY(-7px) rotate(45deg);
    }

    ul.gnav-list li.list-item {
        border-left: none;
        border-right: none;
    }
}


@media only screen and (max-width: 768px) {
    .site-header {
        padding: 10px 15px;
    }

    .sitelogo img {
        width: 71px;
    }

    .gnav-trigger {
        right: 15px;
    }

    .gnav-list {
        width: 100%;
        box-sizing: border-box;
        top: 49px;
        padding: 40px 30px;
        transition: .4s ease-in;
    }

    .gnav-list-open {
        transition: .4s ease-in;
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.site-footer {
    text-align: center;
    padding: 50px 0;
}

.btn-pagetop {
    margin-bottom: 35px;
}

.btn-pagetop a {
    display: inline-block;
    position: relative;
    width: 52px;
    height: 52px;
    border: 2px solid #2aa9df;
    background: #fff;
    border-radius: 50%;
    transition: .4s;
}

.btn-pagetop a:after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-top: 2px solid #2aa9df;
    border-left: 2px solid #2aa9df;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -4px;
    transition: .4s;
}

.btn-pagetop a:hover {
    opacity: 1;
    background: #2aa9df;
    transition: .4s;
}

.btn-pagetop a:hover:after {
    border-color: #fff;
    transition: .4s;
}

.copyright {
    font-size: 1.2rem;
}

@media only screen and (max-width: 768px) {
    .site-footer {
        padding: 30px 0;
    }

    .btn-pagetop {
        margin-bottom: 25px;
    }

    .btn-pagetop a {
        width: 40px;
        height: 40px;
    }

    .btn-pagetop a:after {
        width: 14px;
        height: 14px;
        right: 12px;
    }

    .btn-pagetop a:hover {
        background: #fff;
    }

    .btn-pagetop a:hover:after {
        border-color: #2aa9df;
    }

    .copyright {
        font-size: .9rem;
    }
}

/*------------------------------------------
  contents
------------------------------------------*/
.head-section {
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 50px;
}

.head-section:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #bee5f6;
    background: linear-gradient(to right, #bee5f6 0%, #c0c2dc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bee5f6', endColorstr='#c0c2dc', GradientType=1);
}

.breadcrumb {
    padding-top: 1em;
    font-size: 1.4rem;
    color: #878592;
    line-height: 1.5;
}

.breadcrumb li {
    display: inline-block;
    position: relative;
    padding-left: 1em;
}

.breadcrumb li:before {
    content: ">";
    position: absolute;
    left: 0;
    color: #878592;
}

.breadcrumb li:first-child {
    padding-left: 0;
}

.breadcrumb li:first-child:before {
    content: none;
}

.breadcrumb a {
    text-decoration: underline;
    color: #2aa9df;
}

.breadcrumb a:hover {
    opacity: 1;
    color: #2f348a;
    transition: .1s ease-out;
}

.page-title {
    display: table;
    width: 100%;
    height: 150px;
    text-align: center;
}

.page-title .title {
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
    font-size: 3rem;
    color: #2f348a;
    letter-spacing: .15em;
    line-height: 1.5;
}

.cmn-section {
    /*margin-bottom: 60px;*/
}

.cmn-section:last-child {
    margin-bottom: 0;
}

.cmn-section .sec-contents {
    margin-bottom: 50px;
}

.cmn-section .sec-contents:last-child {
    margin-bottom: 0;
}

.page-nav {
    background: #2aa9df;
    margin-bottom: 50px;
}

.page-nav li {
    display: inline-block;
    margin: 0 12px;
    font-size: 1.4rem;
    font-weight: bold;
}

.page-nav a {
    color: #fff;
    text-decoration: underline;
    display: block;
    padding: 1em 0;
}

.page-nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.num {
    margin-left: 25px;
    list-style-type: decimal;
    margin-bottom: 6px;
    line-height: 1.2em;
}

/* ===== home ===== */
.mv-section {
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 35px;
}

.mv-section:after {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #bee5f6;
    background: linear-gradient(to right, #bee5f6 0%, #c0c2dc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bee5f6', endColorstr='#c0c2dc', GradientType=1);
}

.mv-photo {
    width: 71%;
}

.mv-photo:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 85%, #ffffff);
}

.mv-logo {
    padding: 8%;
    width: 35%;
    box-sizing: border-box;
    text-align: center;
    background: #2f348a;
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 5px 0 0 5px / 5px 0 0 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.about-section .sec-title img {
    width: 167px;
}

@media only screen and (max-width: 768px) {
    .mv-photo:after {
        content: "";
        display: none;
    }

    .head-section {
        margin-bottom: 30px;
    }

    .breadcrumb {
        font-size: 1.3rem;
    }

    .page-title {
        height: 120px;
    }

    .page-title .title {
        font-size: 2rem;
    }

    .page-nav {
        text-align: center;
        margin-bottom: 30px;
    }

    .page-nav li {
        margin: 0 8px;
        font-size: 1.3rem;
    }

    .cmn-section {
        margin-bottom: 50px;
    }

    .cmn-section .sec-contents {
        margin-bottom: 40px;
    }

    /* ===== home ===== */
    .mv-section {
        margin-bottom: 42px;
    }

    .mv-photo {
        width: 100%;
    }

    .mv-logo {
        width: 46%;
        padding: 8% 5%;
        top: auto;
        bottom: -20px;
        z-index: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .about-section .sec-title img {
        width: 126px;
    }
}

@media print {
    .gnav {
        display: none;
    }

    .title-type02 .ttl-icon:after {
        content: none;
    }
}

.item-title a {
    color: #2aa9df;
    text-decoration: underline;
    transition: .1s ease-out;
}

/*
.item-title a:visited{
    color: #097fb1;
}
*/
.item-title a:hover {
    color: #2f348a;
    transition: .1s ease-out;
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
    *zoom: 1;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}



/*------------------------------------------
   slick
------------------------------------------*/


.mv-photo {
    opacity: 0;
    transition: 3s;
}

.slick-initialized {
    opacity: 1;
}

/*
.mv-photo-sp{
     opacity: 0;
    transition: 3s;
}
*/
/*------------------------------------------
 orgnization & twitter
------------------------------------------*/
.infos {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 80px;
}

.info-left {
    width: 70%;
}

.info-right {
    width: 28%;
    height: 100%;
    margin: 0 1%;
    text-align: center;
    border: 1px solid #eee;
    padding: 0 1%;
}

@media screen and (max-width: 767px) {
    .infos {
        display: block;
    }

    .info-left {
        width: 100%;
    }

    .info-right {
        width: 95%;
        margin-top: 50px;
    }
}

.cmn-section .sec-contents.sdgs {
    border: #f3f3f3 6px solid;
    border-radius: 28px;
    padding: 30px 28px;
}

.org-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.org-info .org.img-column {
    width: 46%;
}

.org-info .org p {
    margin: 12px 0;
}

.org img {
    width: 100%;
}

.org {
    width: 48%;
}

.org h3 {
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid #2aa9df;
    margin-bottom: 22px;
}

.org h3 .top {
    height: 2em;
}

.org-info3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.SandboxRoot .env-bp-820 .timeline-Tweet-text {
    font-size: 24px !important;
}

@media screen and (max-width: 1231px) and (min-width: 803px) {
    .org h3 {
        height: auto;
    }

    .org h3 .top {
        height: 2em;
    }
}

@media screen and (max-width: 803px) {
    .cmn-section .sec-contents.sdgs {
        padding: 30px 18px;
    }

    .org-info {
        flex-direction: column;
        width: 100%
    }

    .org {
        width: 100% !important;
        margin: auto;
    }

    .org-info .org p {
        margin: 8px 0;
    }

    .org-info .org:last-child {
        margin-bottom: 0px;
    }

    .org-info3 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
/*------------------------------------------
   group背景 20201109追加
------------------------------------------*/
.gry {
    background: #f3f3f3;
    padding: 20px 30px;
}
.gry p{
    display: flex;
}
@media screen and (max-width: 803px) {
    .gry {
        width: auto;
        padding: 20px 18px;
    }
}
/*------------------------------------------
   TOP SDGs icons
------------------------------------------*/
.sdgs3 {
    background: #f3f3f3;
    padding: 20px 30px;
    width: 26.8%;
}

.sdgs3 h3 {
    font-weight: bold;
    font-size: 17px;
    margin-bottom: 15px;
}

.sdgs3 .icons {
    display: flex;
}

.sdgs3 div p {
    font-size: 14px;
}

.sdgs3 div img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 15px;
}

@media screen and (max-width: 803px) {
    .sdgs3 {
        width: auto;
        padding: 20px 18px;
    }

    .sdgs3:not(:last-child) {
        margin-bottom: 20px;
    }

    .sdgs3 img {
        width: 75px;
        height: 75px;
    }
}

/*------------------------------------------
   slick allow
------------------------------------------*/
.slick-dots {
    position: absolute;
    bottom: -25px;
    right: -26%;
    top: 84.5%;
    display: block;
    width: fit-content;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    height: fit-content;
}

/*------------------------------------------
   three column layout
------------------------------------------*/
.img-column {
    width: 32%;
    margin-right: 1%;
    height: auto;
    margin-bottom: 60px;
}

.img-column:nth-child(3) {
    margin-right: 0px;
}

.img-container {
    border: 1px solid #2aa9df;
    border-radius: 29px;
    overflow: hidden;
}

.img-container + p {
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 8px;
}

.imgvertical-container {
    width: 47%;
    margin: 0 auto;
    border: 1px solid #2aa9df;
    border-radius: 29px;
    overflow: hidden;
}

.imgvertical-container + p {
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 8px;
}









.text {
    margin-bottom: 50px;
}

@media screen and (max-width: 757px) {
    .img-column {
        margin-right: 0%;
        width: 100%;
    }

    .col3 .img-column {}

    .img-column {
        margin-right: 0%;
    }


    .text {
        margin-bottom: 30px;
    }
}

/*------------------------------------------
   contribution 
------------------------------------------*/
.companies-container {
    margin: 2%;
    margin-bottom: 6%;
}

ul.company-list {
    list-style: initial;
    margin-left: 2%;
    margin-bottom: 1%;
}

.company-list li span {
    font-weight: bold;
}

.company-list li span {
    margin-left: 2%;
}

/*------------------------------------------
news PDF 別タブアイコン
------------------------------------------*/

a.ico-blank:after {
    content: "";
    background-image: url(../images/common/ico-link-blue.png);
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background-size: contain;
    vertical-align: middle;
    margin-bottom: 4px;
    background-repeat: no-repeat;
}

a.ico-pdf:after {
    content: "";
    background-image: url(../images/common/ico-pdf.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    background-size: contain;
    vertical-align: middle;
    margin-bottom: 4px;
}

a.ico-word:after {
    content: "";
    background-image: url(../images/common/ico-word.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    background-size: contain;
    vertical-align: middle;
    margin-bottom: 4px;
}

a.ico-excel:after {
    content: "";
    background-image: url(../images/common/ico-excel.png);
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    background-size: contain;
    vertical-align: middle;
    margin-bottom: 4px;
}

/*------------------------------------------
   works/001
------------------------------------------*/
.BD-works .flexbox {
    flex-wrap: wrap;
    justify-content: space-between;
}

.BD-works .img-column {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .img-column {
        width: 100%;
    }
}


/*------------------------------------------
   event
------------------------------------------*/
/*----top----*/
.event-top {
    position: relative;

    height: 0;
    /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
    padding-top: 34.545454%;
    background: url("../../assets/images/event/event_top.jpg") 0 0 no-repeat;
    background-size: contain;
}

.event-top-title {
    position: absolute;
    top: 27.63157%;
    left: 10%;
    width: 32.272727%;
    display: block;
}

.event-top-title-sp {
    display: none;
}

.event-top-subtitle {
    position: absolute;
    top: 15.789473%;
    left: 10%;
    width: 47.272727%;
    display: block;
}

.event-top-subtitle-sp {
    display: none;
}

.event-top-day {
    position: absolute;
    top: 59.21%;
    left: 29.54%;
    width: 30.454545%;
    height: auto;
}

.event-top-webinar {
    position: absolute;
    top: 73.15%;
    left: 29.54%;
    width: 21.636364%;
}

.event-top-smile {
    position: absolute;
    top: 57.8947%;
    left: 10%;
    width: 7.272727%;
    height: auto;
}

.event-top-anniversary {
    position: absolute;
    top: 59.21052%;
    left: 18.6363%;
    width: 8.1818181%;
}

@media only screen and (max-width: 768px) {
    .event-top {
        position: relative;
        height: 0;
        /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
        padding-top: 80%;
        background: url("../../assets/images/event/event_top_sp.jpg") 0 0 no-repeat;
        background-size: contain;
    }

    .event-top-title {
        display: none;
    }

    .event-top-title-sp {
        position: absolute;
        top: 35%;
        left: 6.6666666%;
        width: 56.66666%;
        height: auto;
        display: block;
    }

    .event-top-subtitle {
        display: none;
    }

    .event-top-subtitle-sp {
        position: absolute;
        top: 14%;
        left: 6.6666666%;
        width: 58.66666%;
        height: auto;
        display: block;
    }

    .event-top-day {
        position: absolute;
        top: 58.333333%;
        left: 6.6666666%;
        width: 44.666667%;
        height: auto;
    }

    .event-top-webinar {
        position: absolute;
        top: 65.15%;
        left: 6.6666666%;
        width: 31.733333%;
        height: auto;
    }

    .event-top-smile {
        position: absolute;
        top: 76%;
        left: 6.6666666%;
        width: 10%;
        height: auto;
    }

    .event-top-anniversary {
        position: absolute;
        top: 76%;
        left: 19.33333%;
        width: 14%;
    }
}


.event-table {
    width: 100%;
}

.event-table th {
    padding: 10px 20px;
    width: 20%;
    text-align: left;
    color: #fff;
    font-weight: bold;
    background-color: #2aa9df;
    border: solid 1px #f5f5f5;
}

.event-table td {
    padding: 10px 20px;
    width: 80%;
    text-align: left;
    border: solid 1px #ccc;
    vertical-align: top;

}

@media screen and (max-width: 768px) {

    .event-table th {
        padding: 10px;
        border: none;
    }

    .event-table th,
    .event-table td {
        width: auto;
        text-align: center;
        display: block;
    }
}

table.event-table.event-theam td {
    width: 50%;
}

table.event-table.event-theam td span.bold {
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

table.event-table.event-theam tr:nth-child(2n+1) {
    background-color: #d6eef9;
}

.event-table-01 {
    width: 100%;
}

.event-table-01 th {
    padding: 10px 20px;
    text-align: left;
    color: #000;
    font-weight: normal;
}

.event-table-01 td {
    padding: 10px 20px;
    text-align: left;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
}

.event-table-01 td:first-child {
    background: #2da9de7a;
}

@media screen and (max-width: 768px) {

    .event-table-01 th {
        padding: 10px;
        border: none;
    }

    .event-table-01 th,
    .event-table-01 td {
        width: auto;
        text-align: center;
        display: block;
    }
}

table.event-table-01.event-theam td {
    width: 50%;
}

table.event-table-01.event-theam td span.bold {
    font-weight: bold;
    display: inline-block;
}


.attend-btn {
    margin: 35px 0;
    width: 100%;
    text-align: center;
}

@media screen and (max-width: 768px) {

    .event-sp th {
        width: 50%;
        padding: 10px 20px;
        display: table-cell;
        margin: 0;
    }

    .event-sp td {
        display: table-cell;
        vertical-align: middle;
    }
}

.box-contents p {
    margin-bottom: 10px;
}

.box-contents p:last-child {
    margin-bottom: 0;
}

.btn-left,
.btn-right {
    width: 50%;
}

.btn-title {
    font-weight: bold;
    margin-top: 15px;
}

@media screen and (max-width: 768px) {

    .btn-left,
    .btn-right {
        width: 100%;
    }

    .btn-left {
        margin-top: 40px;
    }
}

.kitty-banner {
    margin-left: auto;
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 125px;
}

@media only screen and (max-width: 768px) {
    .kitty-banner {
        max-width: 100px;
        width: 22%;
    }
}

.flexbox1 {
    background-image: url("../../assets/images/eventkitty_back1.png");

}

.flexbox2 img {
    width: 23%;
    margin: 35px;
}

.card {
    background: #ffffff;
    margin: 0 auto;
    border-radius: 20px;
    padding: 35px 50px;
    margin-bottom: 60px;
}

.ceremony-program {
    list-style: initial;
    margin-left: 4%;
    margin-bottom: 1%;
}

.ceremony-title {
    font-weight: bold;
}


@media only screen and (max-width: 768px) {
    .card {
        padding: 30px 20px;
    }
}

/*------------------------------------------
   kitty
------------------------------------------*/
.kitty-type00 .image img {
    width: 40%;
}

.kitty-type01 {
    position: relative;

    height: 0;
    /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
    padding-top: 36%;
    background: url("../../assets/images/event/kitty_back1.png") 0 0 no-repeat;
    background-size: contain;

    margin-bottom: 50px;
}

.kitty-type01-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
}

.kitty-type01 .image {
    width: 36%;
    margin-right: auto;
    position: relative;
}

.kitty-type01 .image img {
    margin-left: auto;
    display: block;
    width: 50%;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translate(-0%, -50%);
}

.kitty-type01 .text {
    width: 60%;
    margin: 0;
}

.kitty-type01 .text img {
    display: block;
    margin-bottom: 35px;
}

.kitty-type02 {
    position: relative;

    height: 0;
    /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
    padding-top: 104.2%;
    background: url("../../assets/images/event/kitty_back2.png") 0 0 no-repeat;
    background-size: contain;
}

.kitty-type02-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.kitty-type02 .title {
    margin-bottom: 50px;
}

.kitty-type02 .title img {
    margin: 0 auto;
    display: block;
}

.kitty-type02 .goods-list {
    margin: 0 8%;
    display: flex;
    flex-wrap: wrap;
}

.kitty-type02 .goods-list img {
    display: block;
    width: 28%;
    margin: 1% 2.5%;
}

@media only screen and (max-width: 768px) {
    .kitty-type00 .image {
        text-align: center;
    }

    .kitty-type01 {
        position: relative;

        height: 0;
        /* 表示画像の高さ ÷ 表示画像の幅 × 100 */
        padding-top: 112.1538%;
        background: url("../../assets/images/event/kitty_back1_sp.png") 0 0 no-repeat;
        background-size: contain;

        margin-bottom: 50px;
    }

    .kitty-type01-content {
        display: block;
        width: 86.153846%;
        position: absolute;
        top: 0%;
        transform: translate(-50%, 0%);
        height: 100%;
    }

    .kitty-type01-content .text {
        position: absolute;
        top: 8.2304%;
        width: 100%;
        font-size: 3.7vw;
    }

    .kitty-type01-content .text img {
        margin: 0 auto 7.5445816%;
    }

    .kitty-type01-content .image {
        position: absolute;
        top: 49.3827%;
        height: 41.8381%;
        width: 100%;
    }

    .kitty-type01-content .image img {
        margin: 0 auto;
        display: block;
        width: auto;
        position: relative;
        top: 0%;
        left: 0%;
        transform: none;
        height: 100%;
    }

    .kitty-type02 {
        position: relative;

        height: 0;
        /*表示画像の高さ ÷ 表示画像の幅 × 100 */
        padding-top: 263.3846%;
        background: url("../../assets/images/event/kitty_back2_sp.png") 0 0 no-repeat;
        background-size: contain;
    }

    .kitty-type02-content {
        display: block;
        width: 86.153846%;
        position: absolute;
        top: 0%;
        transform: translate(-50%, 0%);
        height: 100%;
    }

    .kitty-type02-content .title {
        position: absolute;
        top: 3.5046%;
        left: 50%;
        transform: translateX(-50%);
        width: 60.5263%;
    }

    .kitty-type02-content .goods-list {
        position: absolute;
        top: 11.098%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        margin: 0 1.0714%;
        ;
    }

    .kitty-type02-content .goods-list img {
        width: 46.4285%;
        margin: 0 0 6.33644% 2.678571%;
        height: 15.478971%;
    }

    .kitty-type02-content .goods-list img:nth-child(odd) {
        margin: 0 2.678571% 6.33644% 0;
    }
}

/*temporal properties*/
.margin_bottom {
    margin-bottom: 10px;
    width: auto;
}

.centralize {
    text-align: center;
}

.twitter-btn {
    position: relative;
    display: block;
    width: 300px;
    height: 60px;
    margin: 0 auto;
    background: #2aa9df;
    border-radius: 10px;
    border: solid 2px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 54px;
    outline: none;
}

.twitter-btn,
.twitter-btn::before,
.twitter-btn::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.twitter-btn:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
}

.twitter-btn:hover {
    background-color: #fff;
    border-color: #2aa9df;
    color: #2aa9df;
}

.twitter-btn:hover:after {
    border-top: 2px solid #2aa9df;
    border-right: 2px solid #2aa9df;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.ie-on {
    display: none;
}

@media all and (-ms-high-contrast: none) {
    .ie-on {
        display: block;
    }

    .ie-off {
        display: none;
    }

    .info-left {
        width: 100%;
    }

}

/*賛同登録バナー設置20200910*/

.sitelogo {
    display: inline-block;
}

.gnav .diagonal-btn-container {
    text-align: center;
    display: inline-block;
}

.gnav .gnav-btn-position {
    position: absolute;
    right: 0;
    top: -77px;
}

.gnav .diagonal-btn {
    display: inline-block;
    padding: 0;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.gnav .diagonal-btn-container .btn-joint {
    background-color: #2f348a;
    border: 2px solid #2f348a;
    line-height: 52px;
    width: 300px;
    height: 50px;
    color: #fff;
    font-weight: bold;
    text-indent: 50px;
}



.gnav .btn-joint:before {
    content: '';
    background-image: url("../images/common/joint2.png");
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 40px;
    top: 5px;
}

.gnav .btn-joint:hover:before {
    background-image: url("../images/common/joint1.png");
}

.gnav .diagonal-btn:after {
    width: 100%;
    height: 0;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #FFF;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transition: .2s;
    z-index: -1;
}

.gnav .btn-joint:hover {
    color: #2f348a;
    cursor: pointer;
}

.gnav .diagonal-btn:hover:after {
    height: 350%;
    opacity: 1;
}

.gnav .diagonal-btn:active:after {
    height: 350%;
    opacity: 1;
}

@media screen and (max-width: 1024px) {

    .gnav .li-btn {
        display: inline-block;
        float: left;
    }

    .gnav .gnav-btn-position {
        position: static;
        margin-top: 20px;
    }

    .gnav .diagonal-btn-container .btn-joint {
        background: #2f348a;
        color: #fff;
        border: 2px solid #2f348a;
    }

    .gnav .btn-joint:before {
        border-top: none;
        border-right: none;
        margin-top: 0px;
        transform: rotate(0);
        left: 35px;
    }

    .gnav .btn-joint:hover:before {
        background-image: url("../images/common/joint2.png");
    }

    .gnav .diagonal-btn:hover:after {
        height: 0;
        opacity: 1;
    }

    .gnav .diagonal-btn:active:after {
        height: 0;
        opacity: 1;
    }

    ul.gnav-list li:last-child {
        border-right: none;
    }
}

/*イベントページ修正20200911*/

.br-session {
    max-width: 350px;
    width: 350px;
}


.btn-app {
    float: left;
}

/*プルダウン20200918*/

@media screen and (min-width: 1025px) {

    .gnav .li-campaign {
        position: relative;
        padding-bottom: 16px;
    }

    .gnav .li-campaign .li-pulldown {
        position: absolute;
        width: 100%;
        top: 100%;
    }

    .gnav .li-campaign .li-pulldown .li-pulldown-a {
        width: 75%;
        padding: 0;
        height: 0;
        overflow: hidden;
        background: #2aa9df;
        margin: 0 auto;
        color: white;
        line-height: 40px;
        font-size: 17px;
        transition: .5s;
    }

    .gnav .li-campaign .li-pulldown .li-pulldown-a:hover {
        opacity: 0.5;
        transition: .3s;
    }

    .gnav .li-campaign:hover .li-pulldown .li-pulldown-a {
        height: 40px;
        transition: .5s;
        padding: 5px;
    }

    /*20200923 gnav修正*/

    ul.gnav-list .li-pulldown li {
        border-right: none;
    }

    .site-header {
        padding-bottom: 0;
    }

    ul.gnav-list li.list-item a {
        border-left: 2px solid #e8e8e8;
    }

    ul.gnav-list li:nth-last-child(2) a {
        border-right: 2px solid #e8e8e8;
    }
    
    ul.gnav-list li.list-item .li-pulldown li a {
        border-left: none;
    }
}


@media screen and (max-width: 1024px) {


    .gnav .li-campaign .li-pulldown .pulldown-hidden {
        height: 0;
        overflow: hidden;
        padding: 0;
    }

    .gnav .li-campaign .li-pulldown .pulldown-open {
        height: auto;
    }

    .gnav .pulldown-body {
        padding-left: 35px;
    }

    .gnav .pulldown-bb-none {
        border-bottom: none;
    }

    .gnav .pulldown-bb {
        border-bottom: 1px solid #fff;
        margin-bottom: 0.5em;
    }

    .gnav .li-pulldown {
        margin: 0 0 0 auto;
        width: 80%;
    }

    .gnav .li-campaign {
        position: relative;
    }

    .btn-pulldown {
        width: 20px;
        height: 20px;
        display: inline-block;
        position: absolute;
        background-image: url("../images/common/plus.png");
        background-repeat: no-repeat;
        background-size: contain;
        top: 0.7em;
        left: 5px;
        z-index: 5;
    }
}

@media screen and (max-width: 389px) {

    .btn-pulldown {
        top: 1.5em;
    }
}

/*20200923 イベントページ*/
.song .img-column {
    width: 66%;
    margin-right: 1%;
}
.song .txt {
    margin-right: 3%;
}

@media screen and (max-width: 1024px) {
    .song .img-column {
        width: 100%;
        margin-right: 0%;
        margin-bottom: 20px;
    }
    .song .txt {
        margin-right: 0%;
        margin-bottom: 60px;
    }
    .song .centralize{
        font-size: 14px;
    }
}

/*20200923 動画埋め込み*/
.iframe-box {
    text-align: center;
    margin: 30px 0;
}

.title-type01.video-title {
    margin-top: 50px;
    margin-bottom: 0;
    font-size: 1.6rem;
}

@media screen and (min-width: 1025px) {

.iframe-flex {
    display: flex;
    justify-content: space-between;
}
    
}


@media screen and (max-width: 1024px) {
    .iframe-box {
        position: relative;
        height: 0;
        padding: 30px 0 56.25%;
        overflow: hidden;
    }

    .iframe-box iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
}
/*20200923 マージン*/
.ml00{
    margin-left: 0 !important;
}
.ml5{
    margin-left: 5px !important;
}
.ml10{
    margin-left: 10px !important:
}
.ml15{
    margin-left: 15px !important;
}
.ml20{
    margin-left: 20px !important;
}
.ml25{
    margin-left: 25px !important;
}
.mb00{
    margin-bottom: 0 !important;
}
.mb5{
    margin-bottom: 5px !important;
}
.mb10{
    margin-bottom: 10px !important;
}
.mb15{
    margin-bottom: 15px !important;
}
.mb20{
    margin-bottom: 20px !important:
}
.mb25{
    margin-bottom: 25px !important;
}
