@charset "UTF-8";
/*==================
Setting
==================*/
/*responsive*/
/*==================
reset
==================*/
html, body {
    margin: 0;
    padding: 0;
}

body {
    position: relative;
}

ul {
    margin: 0;
    padding: 0;
}
ul li {
    list-style: none;
}

a {
    cursor: pointer;
    word-wrap: break-word; /* 2024/1/17追加*/
}

/*==================
Common
==================*/
html {
    font-size: 62.5%;
    color: #282828;
    overflow-x: hidden;
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    letter-spacing: 0.025em;
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    margin: 0;
    overflow: hidden;
}

img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
    line-height: 0;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid transparent;
}

h2 {
    font-size: 5.0rem;
    font-weight: normal;
}

h3 {
    font-size: 1.5em;
}

#wrapper {
    /*max-width: 1500px;*/
    width: 100%;
    margin: auto;
}

.fullwidth {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    padding-left: calc(50vw - 50%);
}
/* スマホサイズでテキストを改行する */
.sp-br {
    display: none;
}
/* ※の2行目以降をインデントする */
.indent {
    padding-left: 0.7em;
    text-indent: -0.7em;
}


@media print, screen and (max-width: 750px) {
    h2 {
        font-size: 2.8rem;
    }
}

@media print, screen and (max-width: 414px) {
    h2 {
        font-size: 2.8rem;
    }
    .sp-br {
        display: block;
    }
}

/*==================
Header
==================*/
#header {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.inner {
    display: flex;
    margin: 0 auto;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
}
.header-mainlogo {
    margin-left: 20px;
}
.header-mainlogo:hover {
    opacity: 0.7;
}

.header-nav {
    display: flex;
    flex-direction: column;
}
.upper-nav {
    /*display: flex;*/
    /*margin: 20px auto 0;*/
    height: 40px;
}
.upper-nav .header-col {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    height: 40px;
    margin: 10px auto 0;
}
.upper-nav .header-col .text {
    padding: 8px 0;
}
.upper-nav .header-col li {
    margin-right: 30px;
}
.upper-nav .header-col li a {
    display: block;
    line-height: 1;
}
.upper-nav .header-col li a:hover {
    color: #47216d;
    filter: brightness(0) saturate(100%) invert(15%) sepia(48%) saturate(2354%) hue-rotate(249deg) brightness(93%) contrast(99%);
}
.upper-nav .header-col li a img {
    max-width: 25px;
}
.header-search img {
    display: inline-block;
    width: 24px;
    height: 24px;
    /*background: url("../images/icon-search-black01.png") 50% 50% no-repeat;*/
    background-size: contain;
    vertical-align: middle;
}
.header-search input {
    display: none;
    width: 0;
    padding: 6px;
    border: 1px solid #999999;
    border-radius: 0;
    font-size: 1.4rem;
    vertical-align: middle;
    -webkit-appearance: none;
}

.lower-nav {
    display: flex;
    height: 80px;
}
.header-col {
    display: flex;
}
.header-col .header-uni-logo:hover {
    opacity: 0.7;
}
.header-nav-list {
    margin-right: 30px;
    font-weight: 600;
    padding: 28px 0;
    box-sizing: border-box;
    max-width: 120px;
    text-align: center;
}
.header-nav-list:last-child {
    margin-right: 0;
}
.header-nav-list a {
    text-decoration: none;
}
.header-nav-list > a:hover {
    border-bottom: solid 1px #9bc3d1;
    padding-bottom: 10px;
    opacity: 0.7;
}
.header-nav-list a span {
    display: inline-block;
}
.header-donate-btn {
    margin: auto 30px;
}
.header-donate {
    background: linear-gradient(25deg, #fcd736, #ff7e00);
    border-radius: 8px;
    color: #FFF;
    max-height: 20px;
    padding: 16px 16px;
    text-align: center;
    margin: 0;
}
.header-donate:hover {
    opacity: 0.7;
}
.header-sublogo {
    margin: auto;
}
.header-sublogo:hover {
    opacity: 0.7;
}
.flex {
    display: flex;
}
#global-nav {
    align-items: center;
}
#global-nav-sp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
#global-nav-sp ul{
    height:80%;
    overflow: auto;
    margin-bottom:50px;
}
/*hover sub nav*/
.header-nav-list-hover {
    background-color: #e9f2f4;
    box-sizing: border-box;
    color: #000;
    display: none;
    font-weight: normal;
    /*max-width: 1500px;*/
    /*padding: 70px 280px;*/
    padding: 70px 180px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.header-col li:hover .header-nav-list-hover {
    display: inline-block;
}
.header-nav-list-hover ul li a {
    /*padding: 0 0 0 20px;*/
    /*background: url("../img/arrow_news_right.png") 0 .35em no-repeat;*/
    /*background-size: 6px auto;*/
}
.header-nav-list-hover ul li a:hover {
    /*text-decoration: underline;*/
}
.header-nav-list-hover-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    line-height: 3.0rem;
    max-width: 1200px;
    margin: 30px auto 0;
}
.header-nav-list-hover-flex li {
    width: calc(100% / 3);
    height: 60px;
    margin-bottom: 20px;
    line-height: 2rem;
}
.header-nav-list-hover-flex li a {
    display: block;
    /*background: url("../img/arrow_news_right.png") no-repeat;*/
    /*background-size: 8px auto;*/
    /*background-position: right;*/
    /*font-size: 1.4rem;*/
    max-width: 600px;
    margin: 0 40px 0 0;
    /*padding: 10px 20px 10px 5px;*/
    padding: 10px 20px 0 5px;
    position: relative;
}
.header-nav-list-hover-flex li a::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    position: absolute;
    top: 16px;
    right: 0;
}
.header-nav-list-hover-flex li a:hover {
    border-bottom: solid 1px #9bc3d1;
    padding-bottom: 10px;
    opacity: 0.7;
}
.header-nav-list-hover h3 {
    text-align: center;
    margin: 30px auto ;
}
#global-nav-sp {
    display: none;
}

/* ハンバーガーの検索ボックス */
.search-form-003 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 1px solid #65acbf;
    border-radius: 10px;
}
.global-nav-sp-search {
    max-width: 800px;
    /*display: flex;*/
    /*border-bottom: none;*/
    margin: 0 auto;
    padding: 10px 20px;
}
.search-form-003 label {
    width: 100%;
}
.search-form-003 input {
    width: 100%;
    height: 45px;
    padding: 5px 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
}

.search-form-003 input::placeholder{
    color: #767d83;
}

.search-form-003 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    border: none;
    background-color: #fff;
    cursor: pointer;
}

.search-form-003 button::after {
    width: 20px;
    height: 20px;
    background-image: url('img/icon-search.png');
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
}

/* ハンバーガーのsnsアイコン */
.header-nav-sns {
    max-width: 800px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    padding: 10px 0;
}
.header-nav-sns a {
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}
.header-nav-sns a:last-of-type {
    margin-right: 0;
}
.header-gronav-icon {
    filter: brightness(0) saturate(100%) invert(42%) sepia(18%) saturate(195%) hue-rotate(143deg) brightness(93%) contrast(81%);
}



@media print, screen and (min-width: 1161px) {
    #header {
        position: relative;
        width: 100%;
        background: #ffffff;
    }
    #header.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        /*z-index: 2000;*/
        z-index: 1000;
    }
    #header > .inner {
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }

}

@media print, screen and (max-width: 1160px) {
    #header .inner .header-nav .header-col ,#global-nav-sp {
        display: none;
        position: relative;
        z-index:9998;
    }
    .upper-nav {
        margin: 0;
        height: 0;
    }
    #header .inner .col .header-nav-btn .btn .btn-icon {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50px;
        height: 3px;
        background: #0a2044;
        transition: .2s;
        transform: translate(-50%, -50%);
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before,
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        display: block;
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 50px;
        height: 3px;
        background: #0a2044;
        transition: .3s;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before {
        margin-top: -16px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        margin-top: 12px;
    }
    #header > .inner > .col .header-nav-btn .btn {
        display: inline-block;
        position: relative;
        width: 46px;
        height: 50px;
        margin: 0 20px;
    }
    .header-donate-btn {
        margin: auto;
    }
    #header > .inner > .header-col:first-of-type {
        margin: 0 auto 0 0;
    }
    #header > .inner > .col > .header-nav-btn .btn .is-open {
        background: transparent;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:before,
    #header > .inner > .col .header-nav-btn .btn .is-open:after {
        margin-top: 0;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:before {
        transform: rotate(-45deg);
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:after {
        transform: rotate(-135deg);
    }
    #header > #global-nav-sp > ul > li > ul {
        display: none;
    }
    #header > #global-nav-sp > ul > li > ul .nav-list-title {
        display: block;
        font-size: 16px;
        max-width: 650px;
        margin: 0 auto;
        padding: 10px 10px;
    }
    #header > #global-nav-sp > ul {
        background-color: #e3f0f3;
        color: #000;
        padding: 20px 0;
        position: absolute;
        width: 100%;
    }
    #header > #global-nav-sp > ul > li .title {
        max-width: 800px;
        display: flex;
        justify-content: space-between;
        border-bottom: none;
        margin: 0 auto;
        padding: 20px 30px;
        cursor: pointer;
    }
    #header > #global-nav-sp > ul ul li a {
        position: relative;
        display: block;
        /*background: url("../img/icon-arrow-right01-white01.png") no-repeat;*/
        /*background-size: 6px auto;*/
        /*background-position: left;*/
        font-size: 1.4rem;
        max-width: 600px;
        margin: 0 auto;
        padding: 10px 40px 10px 20px;
    }
    #header > #global-nav-sp > ul ul li a::after {
        content: '';
        width: 8px;
        height: 8px;
        border: 0;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        right: 25px;
        margin-top: -6px;
    }
    #header > #global-nav-sp > ul > li .title .btn {
        flex: 0 0 40px;
        position: relative;
        cursor: pointer;
    }
    #header > #global-nav-sp > ul > li .title .btn:before,
    #header > #global-nav-sp > ul > li .title .btn:after {
        position: absolute;
        top: 30%;
        left: 50%;
        width: 2px;
        height: 16px;
        /*background: url("../img/plus-white.png") 50% 50% no-repeat;*/
        /*background-size: contain;*/
        content: "";
        background-color: #000;
        /*transform: rotate(90deg);*/
        /*transform: translateY(-50%);*/
        /*transition: opacity 0.3s;*/
    }
    #header > #global-nav-sp > ul > li .title .btn:after {
        transform: rotate(90deg);
        /*transform: translateY(-50%) rotate(90deg);*/
        /*transition: transform 0.3s;*/
    }
    #header > #global-nav-sp > ul > li .title a {
        -webkit-flex: 1 1 1px;
        flex: 1 1 1px;
        /*padding: 10px 30px;*/
    }
    #header > #global-nav-sp > ul > li .title .btn.is-open:before {
        /*background-image: url("../img/close-white.png");*/
        /*position: absolute;*/
        /*top: 30%;*/
        /*left: 50%;*/
        /*width: 2px;*/
        /*height: 20px;*/
        /*content: "";*/
        /*background-color: #000;*/
        /*transform: rotate(90deg);*/
        opacity: 0;
    }
    #header > #global-nav-sp > ul > li .title .btn.is-open:before {
        /*transform: translateY(-50%) rotate(180deg);*/
    }
    #header > #global-nav-sp > ul > li .title .arrow {
        flex: 0 0 40px;
        position: relative;
        cursor: pointer;
    }
    #header > #global-nav-sp > ul > li .title .arrow:before {
        content: '';
        width: 10px;
        height: 10px;
        border: 0;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        transform: rotate(45deg);
        position: absolute;
        top: 50%;
        right: 40%;
        margin-top: -6px;
    }

    #header {
        position: relative;
        width: 100%;
        background: #ffffff;
    }
    #header.is-sticky {
        position: fixed;
        top: 0;
        left: 0;
        /*z-index: 2000;*/
        z-index: 1000;
    }
    #header > .inner {
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        align-items: center;
    }
    .header-uni-logo {
        display: none;
    }
}

@media print, screen and (max-width: 750px) {
    #header > .inner > .header-col .header-donate {
        font-size: 0.8rem;
        padding: 12px 12px;
    }
    #header .inner .col .header-nav-btn .btn .btn-icon {
        width: 30px;
        height: 2px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before,
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        width: 30px;
        height: 2px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:before {
        margin-top: -12px;
    }
    #header > .inner > .col .header-nav-btn .btn .btn-icon:after {
        margin-top: 10px;
    }
    #header .inner .col .header-nav-btn .btn {
        margin-left: 10px;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:before {
        top: 11px;
    }
    #header > .inner > .col .header-nav-btn .btn .is-open:after {
        top: -11px;
    }
    .header-mainlogo {
        width: 150px;
    }
    .header-nav-btn {
        margin: 0;
    }
    #header > #global-nav-sp > ul ul li a {
        /*margin-left: 80px;*/
        margin: 0 50px;
    }
    #header > #global-nav-sp > ul > li > ul .nav-list-title {
        margin: 0 20px 0 50px;
    }
}
@media print, screen and (max-width: 414px) {
    .header-mainlogo {
        width: 100px;
        margin: 20px 0 20px 20px;
    }
    .header-donate {
        font-size: 1.2rem;
        padding: 12px 12px;
    }
}

/*==================
footer
==================*/
#footer {
    font-size: 1.4rem;
    position: relative;
}
.footer-nav {
    background-color: #47216d;
    padding: 40px 20px 80px;
    /*max-width: 1500px;*/
    margin: 0 auto;
    box-sizing: border-box;
    color: white;
}
.footer-nav-inner-wrap {
    max-width: 1200px;
    margin: 0 auto;
    /*width: 75%;*/
}
.footer-nav-inner {
    display: flex;
    justify-content: left;
}
.title {
    font-size: 1.6rem;
    font-weight: 600;
    border-bottom: solid 1px white;
    /*margin-right: 20px;*/
    padding-bottom: 10px;
    /*max-width: 14vw;*/
}
.title-02 {
    /*max-width: 32vw;*/
}


.footer-col {
    width: calc((100% / 5) * 1);
}
.footer-col02 {
    width: calc((100% / 5) * 2);
}
.footer-col-wrap {
    padding: 0 14px;
}


.footer-col-list {
    display: flex;
    /*justify-content: center;*/
}
.footer-col-list02 {
    padding-left: 0 !important;
}
/*.footer-col-wrap {*/
/*    background-color: #4e7d37;*/
/*    color: #FFF;*/
/*    max-width: 1500px;*/
/*    margin: 0 auto;*/
/*    padding: 30px 40px 50px;*/
/*    box-sizing: border-box;*/
/*}*/
/*.footer-col-inner {*/
/*    margin: 0 auto;*/
/*    max-width: 1200px;*/
/*}*/
/*.footer-col-inner p {*/
/*    margin-bottom: 30px;*/
/*}*/
.footer-list {
    list-style-position: inside;
}
.footer-col ul {
    /*margin-right: 50px;*/
    /*max-width: 14vw;*/

}
.footer-col ul li{
    /*min-width: 236px;*/
    /*width: 100%;*/
    padding-left: 1.5em;
    text-indent: -1.5em;
    /*position: relative;*/
    margin-bottom: 6px;
}
.footer-col ul li a {
    position: relative;
    max-width: 12vw;
    margin-left: 20px;
}
.footer-col ul li a:hover {
    /*text-decoration: underline;*/
    color: #dabbf6;
}
.footer-col ul li a:before {
    background: url("img/arrow_white_right.png") no-repeat;
    background-size: contain;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 3px;
    left: -20px;
}
.footer-sub-nav-wrap {
    padding: 50px 0 20px 0;
}
.footer-sub-nav {
    font-size: 1.4rem;
    padding-bottom: 20px;
}
.footer-sub-nav ul {
    display: flex;
    justify-content: center;
}
.footer-sub-nav li a {
    position: relative;
    display: inline-block;
    padding: 0 25px 0 0;
}
.footer-sub-nav li:last-of-type a {
    padding: 0;
}
.footer-sub-nav li a:after {
    position: absolute;
    background-color: darkgray;
    content: "";
    height: 14px;
    vertical-align: middle;
    width: 2px;
    top: 2px;
    right: 10px;
}
.footer-sub-nav li:last-of-type a::after {
    display: none;
}
.footer-sub-nav li a:hover {
    text-decoration: underline;
}
.footer-sub-nav li:last-of-type a {
    margin-right: 0;
}
.footer-nav-sns {
    margin: 50px 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}
.footer-nav-sns a {
    margin: 0 20px 0 0;
    width: 32px;
}
.footer-nav-sns a:hover {
    opacity: 0.7;
}
.footer-nav-sns a:last-of-type {
    margin-right: 0;
}
.footer-address {
    padding-bottom: 30px;
}
.footer-address-inner {
    display: flex;
    justify-content: center;
}
.footer-address-inner .footer-mainlogo a:hover {
    opacity: 0.7;
}
.footer-address-inner p {
    line-height: 1.8;
    margin-left: 270px;
}
#copyright {
    text-align: center;
}
#copyright small {
    font-size: 1.2rem;
}
.footer-nav-sp {
    display: none;
}

/* page top btn */
.footer-pagetop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
}
/*.footer-pagetop {*/
/*    display: none;*/
/*    position: fixed;*/
/*    z-index: 900;*/
/*}*/
.footer-pagetop a {
    bottom: 10px;
    display: block;
    width: 46px;
    height: 46px;
    overflow: hidden;
    background: url("img/goto_top.png") 0 0 no-repeat;
    background-size: contain;
    text-indent: 100%;
    white-space: nowrap;
    margin: 0 0 0 auto;
}

/* 2024/1/12 変な動きしているから一旦コメントアウト */
/*@media print, screen and (min-width: 1100px) {*/
/*    .footer-pagetop {*/
/*        bottom: 50px;*/
/*        right: 42%;*/
/*        transform: translateX(500px);*/
/*    }*/
/*}*/
/*@media print, screen and (min-width: 765px) and (max-width: 1100px) {*/
/*    .footer-pagetop {*/
/*        bottom: 50px;*/
/*        right: 20px;*/
/*    }*/
/*}*/
/*@media print, screen and (max-width: 764px) {*/
/*    .footer-pagetop {*/
/*        bottom: 20px;*/
/*        right: 20px;*/
/*    }*/
/*}*/

@media print, screen and (max-width: 1160px) {
    #footer .footer-nav {
        display: none;
    }
    .footer-nav-sp {
        display: block;
        background-color: #47216d;
        padding: 50px 20px 60px;
        box-sizing: border-box;
        /*max-width: 1000px;*/
        margin: 0 auto;
        color: white;
    }
    #footer .footer-nav-sp > ul > li {
        max-width: 800px;
        margin: 0 auto;
    }
    #footer .footer-nav-sp > ul > li > ul {
        display: none;
        margin-left: 30px;
    }
    #footer .footer-nav-sp > ul > li .title .btn {
        flex: 0 0 40px;
        position: relative;
        cursor: pointer;
    }
    #footer .footer-nav-sp > ul > li .title {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        /*font-size: 1.4rem;*/
        margin: 0;
        /*padding-bottom: 0;*/
        padding: 20px;
        border-style: none;
        cursor: pointer;
    }
    #footer .footer-nav-sp > ul > li .title a {
        -webkit-flex: 1 1 1px;
        flex: 1 1 1px;
        padding: 20px 0;
    }
    #footer .footer-nav-sp > ul > li .title .btn:before {
        position: absolute;
        top: 30%;
        left: 30%;
        width: 20px;
        height: 20px;
        background: url("img/plus.png") 50% 50% no-repeat;
        background-size: contain;
        content: "";
    }
    #footer .footer-nav-sp > ul > li .open .btn:before {
        background-image: url("img/minus.png");
    }
    #footer .footer-nav-sp > ul ul .nav-list-title {
        font-size: 16px;
        padding: 10px 0;
    }
    #footer .footer-nav-sp > ul ul li a {
        display: block;
        padding: 10px 10px 10px 20px;
        background: url("img/arrow_white_right.png") no-repeat;
        background-size: 6px auto;
        background-position: left;
    }
    .footer-col-wrap {
        max-width: 1000px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media print, screen and (max-width: 750px) {
    #footer .footer-address-inner{
        display: block;
    }
    #footer .footer-address-inner p {
        margin: 0;
        text-align: center;
    }
    #footer .footer-mainlogo {
        text-align: center;
        margin-bottom: 30px;
    }
    #footer .footer-nav-sp {
        padding: 20px 20px 40px;
    }
    #footer .footer-sub-nav-wrap {
        padding: 50px 20px 20px;
    }
}


/*==================
パンくずリスト
==================*/
#breadcrumbs {
    background-color: #f5f5f5;
    padding: 18px 18px 18px 18px;
}
#breadcrumbs ul {
    /*display: flex;*/
    /*align-items: center;*/
    max-width: 1100px;
    margin: 0 auto;
}
#breadcrumbs ul li {
    font-size: 1.4rem;
    display: inline;
    position: relative;
    /*margin: 0 11px 0 0;*/
}
#breadcrumbs ul li:before {
    display: inline-block;
    width: 6px;
    height: 1em;
    margin: 0 12px 3px;
    background: url("img/arrow_black_right.png") 50% 50% no-repeat;
    background-size: contain;
    vertical-align: middle;
    content: "";
}
#breadcrumbs ul li:first-of-type:before {
    display: none;
}

/*==================
button
==================*/
.btn-purple {
    max-width: 420px;
    margin: 30px auto 0;
}
a.btn_purple {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #fff;
    border: 1px solid #47216d;
    box-sizing: border-box;
    padding: 0 40px 0 25px;
    color: #47216d;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
    transition-duration: 0.3s;
    border-radius: 5px;
    box-shadow: 0px 3px 10px 0px rgba(101, 17, 186, 0.5);
}
a.btn_purple:after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 2px solid #47216d;
    border-right: 2px solid #47216d;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -6px;
}
a.btn_purple:hover {
    background: #f2e5fe;
}
/*a.btn_purple:hover:after {*/
/*    border-top: 2px solid #fff;*/
/*    border-right: 2px solid #fff;*/
/*}*/



/*==================
サイトマップ
==================*/
.site-map-sub-title01 {
    margin: 60px 0 35px;
    font-size: 3.4rem;
    text-align: left;
    line-height: 1.5;
    border-bottom: 1px solid #9bc3d1;
    padding-bottom: 10px;
}
.site-map-sub-title01 > a {
    padding-right: 35px;
    background: #ffffff url("img/icon-arrow-right01-black01.png") calc(100% - 10px) 50% no-repeat;
    background-size: 10px auto;
}
.site-map-sub-title01 > a:hover {
    border-bottom: 1px solid #9bc3d1;
}
.site-map-list {
    margin-left: 10px;
    margin-bottom: 0;
}
.site-map-list li {
    background: url("img/icon-arrow-right01-black01.png") 0 .3em no-repeat;
    background-size: 8px auto;
    background-position-y: .4em;
    margin-top: 10px;
    padding-left: 1em;
}
.site-map-list li > a {
    font-size: 115%;
    /*border-bottom: 1px dashed #f8bd01;*/
}
.site-map-list li > a:hover {
    border-bottom: 1px solid #9bc3d1;
}
.site-map-list {
    display: inline-block;
    vertical-align: top;
    width: 24%;
}
@media print, screen and (max-width: 1016px) {
    .site-map-list {
        width: 47%;
    }
}
@media print, screen and (max-width: 750px) {
    .site-map-sub-title01 {
        font-size: 2.5rem;
    }
}
@media print, screen and (max-width: 414px) {
    .site-map-list {
        width: 95%;
    }
}




/* Uncomment and set these variables to customize the grid. */

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* margin-right: -1rem;
    margin-left: -1rem; */
  }

  .row.reverse {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }

  .col.reverse {
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
  }

  .col-xs,
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
    padding-bottom: 1em;
  }

  .col-xs {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-xs-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }

  .col-xs-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }

  .col-xs-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-xs-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }

  .col-xs-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }

  .col-xs-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-xs-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }

  .col-xs-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }

  .col-xs-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-xs-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }

  .col-xs-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }

  .col-xs-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-xs-offset-1 {
    margin-left: 8.333%;
  }

  .col-xs-offset-2 {
    margin-left: 16.667%;
  }

  .col-xs-offset-3 {
    margin-left: 25%;
  }

  .col-xs-offset-4 {
    margin-left: 33.333%;
  }

  .col-xs-offset-5 {
    margin-left: 41.667%;
  }

  .col-xs-offset-6 {
    margin-left: 50%;
  }

  .col-xs-offset-7 {
    margin-left: 58.333%;
  }

  .col-xs-offset-8 {
    margin-left: 66.667%;
  }

  .col-xs-offset-9 {
    margin-left: 75%;
  }

  .col-xs-offset-10 {
    margin-left: 83.333%;
  }

  .col-xs-offset-11 {
    margin-left: 91.667%;
  }

  .start-xs {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-xs {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-xs {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-xs {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }

  .middle-xs {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .bottom-xs {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }

  .around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-xs {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }

  .first-xs {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }

  .last-xs {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }

  @media only screen and (min-width: 481px) {
    .container {
      width: 46rem;
    }

    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
      box-sizing: border-box;
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
      flex: 0 0 auto;
      padding-right: 1em;
      padding-left: 1em;
    }

    .col-sm {
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
      flex-grow: 1;
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      max-width: 100%;
    }

    .col-sm-1 {
      -ms-flex-preferred-size: 8.333%;
      flex-basis: 8.333%;
      max-width: 8.333%;
    }

    .col-sm-2 {
      -ms-flex-preferred-size: 16.667%;
      flex-basis: 16.667%;
      max-width: 16.667%;
    }

    .col-sm-3 {
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
      max-width: 25%;
    }

    .col-sm-4 {
      -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
      max-width: 33.333%;
    }

    .col-sm-5 {
      -ms-flex-preferred-size: 41.667%;
      flex-basis: 41.667%;
      max-width: 41.667%;
    }

    .col-sm-6 {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      max-width: 50%;
    }

    .col-sm-7 {
      -ms-flex-preferred-size: 58.333%;
      flex-basis: 58.333%;
      max-width: 58.333%;
    }

    .col-sm-8 {
      -ms-flex-preferred-size: 66.667%;
      flex-basis: 66.667%;
      max-width: 66.667%;
    }

    .col-sm-9 {
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
      max-width: 75%;
    }

    .col-sm-10 {
      -ms-flex-preferred-size: 83.333%;
      flex-basis: 83.333%;
      max-width: 83.333%;
    }

    .col-sm-11 {
      -ms-flex-preferred-size: 91.667%;
      flex-basis: 91.667%;
      max-width: 91.667%;
    }

    .col-sm-12 {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
    }

    .col-sm-offset-1 {
      margin-left: 8.333%;
    }

    .col-sm-offset-2 {
      margin-left: 16.667%;
    }

    .col-sm-offset-3 {
      margin-left: 25%;
    }

    .col-sm-offset-4 {
      margin-left: 33.333%;
    }

    .col-sm-offset-5 {
      margin-left: 41.667%;
    }

    .col-sm-offset-6 {
      margin-left: 50%;
    }

    .col-sm-offset-7 {
      margin-left: 58.333%;
    }

    .col-sm-offset-8 {
      margin-left: 66.667%;
    }

    .col-sm-offset-9 {
      margin-left: 75%;
    }

    .col-sm-offset-10 {
      margin-left: 83.333%;
    }

    .col-sm-offset-11 {
      margin-left: 91.667%;
    }

    .start-sm {
      -ms-flex-pack: start;
      -webkit-box-pack: start;
      justify-content: flex-start;
      text-align: start;
    }

    .center-sm {
      -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
      text-align: center;
    }

    .end-sm {
      -ms-flex-pack: end;
      -webkit-box-pack: end;
      justify-content: flex-end;
      text-align: end;
    }

    .top-sm {
      -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
    }

    .middle-sm {
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
    }

    .bottom-sm {
      -ms-flex-align: end;
      -webkit-box-align: end;
      align-items: flex-end;
    }

    .around-sm {
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }

    .between-sm {
      -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
    }

    .first-sm {
      -ms-flex-order: -1;
      -webkit-box-ordinal-group: 0;
      order: -1;
    }

    .last-sm {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
      order: 1;
    }
  }

  @media only screen and (min-width: 901px) {
    .container {
      width: 61rem;
    }

    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
      box-sizing: border-box;
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
      flex: 0 0 auto;
      padding-right: 1em;
      padding-left: 1em;
    }

    .col-md {
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
      flex-grow: 1;
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      max-width: 100%;
    }

    .col-md-1 {
      -ms-flex-preferred-size: 8.333%;
      flex-basis: 8.333%;
      max-width: 8.333%;
    }

    .col-md-2 {
      -ms-flex-preferred-size: 16.667%;
      flex-basis: 16.667%;
      max-width: 16.667%;
    }

    .col-md-3 {
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
      max-width: 25%;
    }

    .col-md-4 {
      -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
      max-width: 33.333%;
    }

    .col-md-5 {
      -ms-flex-preferred-size: 41.667%;
      flex-basis: 41.667%;
      max-width: 41.667%;
    }

    .col-md-6 {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      max-width: 50%;
    }

    .col-md-7 {
      -ms-flex-preferred-size: 58.333%;
      flex-basis: 58.333%;
      max-width: 58.333%;
    }

    .col-md-8 {
      -ms-flex-preferred-size: 66.667%;
      flex-basis: 66.667%;
      max-width: 66.667%;
    }

    .col-md-9 {
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
      max-width: 75%;
    }

    .col-md-10 {
      -ms-flex-preferred-size: 83.333%;
      flex-basis: 83.333%;
      max-width: 83.333%;
    }

    .col-md-11 {
      -ms-flex-preferred-size: 91.667%;
      flex-basis: 91.667%;
      max-width: 91.667%;
    }

    .col-md-12 {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
    }

    .col-md-offset-1 {
      margin-left: 8.333%;
    }

    .col-md-offset-2 {
      margin-left: 16.667%;
    }

    .col-md-offset-3 {
      margin-left: 25%;
    }

    .col-md-offset-4 {
      margin-left: 33.333%;
    }

    .col-md-offset-5 {
      margin-left: 41.667%;
    }

    .col-md-offset-6 {
      margin-left: 50%;
    }

    .col-md-offset-7 {
      margin-left: 58.333%;
    }

    .col-md-offset-8 {
      margin-left: 66.667%;
    }

    .col-md-offset-9 {
      margin-left: 75%;
    }

    .col-md-offset-10 {
      margin-left: 83.333%;
    }

    .col-md-offset-11 {
      margin-left: 91.667%;
    }

    .start-md {
      -ms-flex-pack: start;
      -webkit-box-pack: start;
      justify-content: flex-start;
      text-align: start;
    }

    .center-md {
      -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
      text-align: center;
    }

    .end-md {
      -ms-flex-pack: end;
      -webkit-box-pack: end;
      justify-content: flex-end;
      text-align: end;
    }

    .top-md {
      -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
    }

    .middle-md {
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
    }

    .bottom-md {
      -ms-flex-align: end;
      -webkit-box-align: end;
      align-items: flex-end;
    }

    .around-md {
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }

    .between-md {
      -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
    }

    .first-md {
      -ms-flex-order: -1;
      -webkit-box-ordinal-group: 0;
      order: -1;
    }

    .last-md {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
      order: 1;
    }
  }

  @media only screen and (min-width: 1201px) {
    .container {
      width: 71rem;
    }

    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
      box-sizing: border-box;
      -ms-flex: 0 0 auto;
      -webkit-box-flex: 0;
      flex: 0 0 auto;
      padding-right: 1em;
      padding-left: 1em;
    }

    .col-lg {
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      -webkit-box-flex: 1;
      flex-grow: 1;
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      max-width: 100%;
    }

    .col-lg-1 {
      -ms-flex-preferred-size: 8.333%;
      flex-basis: 8.333%;
      max-width: 8.333%;
    }

    .col-lg-2 {
      -ms-flex-preferred-size: 16.667%;
      flex-basis: 16.667%;
      max-width: 16.667%;
    }

    .col-lg-3 {
      -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
      max-width: 25%;
    }

    .col-lg-4 {
      -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
      max-width: 33.333%;
    }

    .col-lg-5 {
      -ms-flex-preferred-size: 41.667%;
      flex-basis: 41.667%;
      max-width: 41.667%;
    }

    .col-lg-6 {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      max-width: 50%;
    }

    .col-lg-7 {
      -ms-flex-preferred-size: 58.333%;
      flex-basis: 58.333%;
      max-width: 58.333%;
    }

    .col-lg-8 {
      -ms-flex-preferred-size: 66.667%;
      flex-basis: 66.667%;
      max-width: 66.667%;
    }

    .col-lg-9 {
      -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
      max-width: 75%;
    }

    .col-lg-10 {
      -ms-flex-preferred-size: 83.333%;
      flex-basis: 83.333%;
      max-width: 83.333%;
    }

    .col-lg-11 {
      -ms-flex-preferred-size: 91.667%;
      flex-basis: 91.667%;
      max-width: 91.667%;
    }

    .col-lg-12 {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%;
    }

    .col-lg-offset-1 {
      margin-left: 8.333%;
    }

    .col-lg-offset-2 {
      margin-left: 16.667%;
    }

    .col-lg-offset-3 {
      margin-left: 25%;
    }

    .col-lg-offset-4 {
      margin-left: 33.333%;
    }

    .col-lg-offset-5 {
      margin-left: 41.667%;
    }

    .col-lg-offset-6 {
      margin-left: 50%;
    }

    .col-lg-offset-7 {
      margin-left: 58.333%;
    }

    .col-lg-offset-8 {
      margin-left: 66.667%;
    }

    .col-lg-offset-9 {
      margin-left: 75%;
    }

    .col-lg-offset-10 {
      margin-left: 83.333%;
    }

    .col-lg-offset-11 {
      margin-left: 91.667%;
    }

    .start-lg {
      -ms-flex-pack: start;
      -webkit-box-pack: start;
      justify-content: flex-start;
      text-align: start;
    }

    .center-lg {
      -ms-flex-pack: center;
      -webkit-box-pack: center;
      justify-content: center;
      text-align: center;
    }

    .end-lg {
      -ms-flex-pack: end;
      -webkit-box-pack: end;
      justify-content: flex-end;
      text-align: end;
    }

    .top-lg {
      -ms-flex-align: start;
      -webkit-box-align: start;
      align-items: flex-start;
    }

    .middle-lg {
      -ms-flex-align: center;
      -webkit-box-align: center;
      align-items: center;
    }

    .bottom-lg {
      -ms-flex-align: end;
      -webkit-box-align: end;
      align-items: flex-end;
    }

    .around-lg {
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }

    .between-lg {
      -ms-flex-pack: justify;
      -webkit-box-pack: justify;
      justify-content: space-between;
    }

    .first-lg {
      -ms-flex-order: -1;
      -webkit-box-ordinal-group: 0;
      order: -1;
    }

    .last-lg {
      -ms-flex-order: 1;
      -webkit-box-ordinal-group: 2;
      order: 1;
    }
  }

  .flexcolumn {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }

.list-item {
    width: 100%;
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin-bottom: 30px;
}
.item-box{
    max-width: 100%;
}

/* ★ プロジェクトBOXの終了マーク ★ */
.is-end .item-image:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    top: -16px;
    left: 69px;
    border: 15px solid transparent;
    border-bottom-color: #662121;
    z-index: -100;
}
.is-end span{
    position: absolute;
    display: inline-block;
    top: 20px;
    left: -27px;
    width: 100px;
    padding: 2px 10px;
    background: #cc0c0c;
    color: #fff;
    text-align: center;
    transform: rotate(-45deg);
}
.is-end:hover:before{
    opacity: 0.5;
}
.is-end .item-image:after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0;
    height: 0;
    top: 75px;
    left: -8px;
    border: 15px solid transparent;
    border-top-color: #662121;
    z-index: -100;
}

@media print, screen and (min-width: 1069px) {
    .is-end span{
        top: 17px;
        left: -27px;
        width: 100px;
        padding: 2px 10px;
    }
}
@media print, screen and (max-width: 768px) {
    .is-end .item-image:before {
        width: 0;
        height: 0;
        top: -17px;
        left: 68px;
    }
    .is-end span{
        top: 19px;
        left: -27px;
        width: 100px;
    }
    .is-end .item-image:after {
        width: 0;
        height: 0;
        top: 78px;
        left: -8px;
    }
}
@media print, screen and (max-width: 414px) {
    .is-end .item-image:before {
        width: 0;
        height: 0;
        top: -17px;
        left: 47px;
    }

    .is-end span {
        top: 10px;
        left: -25px;
        width: 80px;
    }

    .is-end .item-image:after {
        width: 0;
        height: 0;
        top: 56px;
        left: -8px;
    }
}

/* tab
---------------------------------------------------*/
#tab,
#nametab {
    padding: 0;
    overflow: hidden;
}
#tab li {
    float: left;
    width: 50%;
    list-style-type:none;
}
#tab li a,
#nametab li a {
    display: block;
    border-bottom: 0;
    text-align: center;
    line-height:2.0em;
}
#tab, #nametab {
    border-bottom: 1px dotted #70B5C7;
}
#list {
    margin-top:20px;
}
.nametable {
    border-collapse: collapse;
    padding: 5px;
    width: 100%;
}
.nametable th {
    font-weight: bold;
    text-align: center;
}
.nametable th,.nametable td {
    border-collapse: collapse;
    padding: 5px;
}
#nametab li {
    float: left;
    list-style: outside none none;
    width: 30%;
}
#tab li a:hover,
#tab li.present a,
#nametab li a:hover,
#nametab li.present a
{
    background-color: #eeeeee;
}
.box1,
.box2,
#tab li a,
#nametab li a,
#kojin,
#corporation {
    border: 0px solid #FDFDFD;
}

/* kojin corporation
----------------------------------------*/
.page-section #kojin,
.page-section #corporation {
    padding: 10px;
}



/*=======================
下層　ニュース詳細
=======================*/
.lower-cmn-container .cmn-section01-news .cmn-contents-news-detail .news_text_area .article p a:not([href$=".pdf"]) {
    position: relative;
    padding-right: 25px;
}
.lower-cmn-container .cmn-section01-news .cmn-contents-news-detail .news_text_area .article p a:not([href$=".pdf"]):after {
    content: '';
    position: absolute;
    background-image: url("img/icon_window.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 15px;
    bottom: 2px;
    margin-left: 5px;
}
.lower-cmn-container .cmn-section01-news .cmn-contents-news-detail .news_text_area .article p a:not([href$=".pdf"]):hover {
    color: #6e2faf;
}
.lower-cmn-container .cmn-section01-news .cmn-contents-news-detail .news_text_area .article p a:not([href$=".pdf"]):hover::after {
    filter: brightness(0) saturate(100%) invert(23%) sepia(20%) saturate(7465%) hue-rotate(256deg) brightness(90%) contrast(96%);
}
.lower-cmn-container .cmn-section01-news .cmn-contents-news-detail .news_text_area .article p a[href$=".pdf"] {
    padding-right: 20px;
    background: url(img/pdficon.gif)no-repeat right;
}



/*=======================
サイト内検索
=======================*/
.search-wrapper table td {
    border: unset !important;
}