@charset "UTF-8";

html {
    font-size: 62.5%;
}
body {
    color: #333;
    font-size: 1.44rem;
    line-height: 1.5;
}
a:link,
a:visited {
    color: #2d54a1;
}
a:hover {
    color: #00c;
}

@media screen and (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none !important;
    }
}

/*------------------------------
  Container
------------------------------*/
#container {
    padding: 0;
    position: relative;
}

@media screen and (min-width: 768px) {
    #container {
        min-width: 960px;
    }
}

/*------------------------------
  ヘッダー
------------------------------*/
#header {
    border-top: 3px solid #6ebdf3;
}
#headerInner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
}
#headerInner:after {
    display: none;
}

@media screen and (min-width: 768px) {
    #header {
        border-bottom: none;
    }
    #header .wrapper {
        padding-top: 15px;
    }
}

@media screen and (max-width: 767px) {
    #header {
        border-bottom: none;
        padding: 0;
    }
    #headerInner {
        padding: 0;
    }
}

/* ロゴ */
#headerInner .org {
    float: none;
    margin: 0;
    padding: 0;
}
#headerInner .org img {
    display: block;
    height: auto;
    width: 233px;
}

@media screen and (max-width: 767px) {
    #headerInner .org {
        padding-left: 10px;
    }
    #headerInner .org img {
        width: 170px;
    }
}

/* ユーティリティ */
#headerInner .utility {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

/* 文字サイズ変更 */
#h-nav {
    align-items: center;
    display: flex;
    float: none;
    margin: 0;
}
#h-nav dt.sp {
    border: none;
    float: none;
    margin-right: 15px;
    padding: 0;
}
#h-nav dd {
    box-sizing: border-box;
    float: none;
    height: 30px;
    padding: 0;
    text-align: center;
    width: 50px;
}
#h-nav dd#font-n {
    font-size: 1.4rem;
    padding-top: 5px;
}
#h-nav dd#font-l {
    background: #6ebdf3;
    font-size: 1.6rem;
    padding-top: 3px;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, #h-nav dd#font-n {
        padding-top: 6px;
    }
    *::-ms-backdrop, #h-nav dd#font-l {
        padding-top: 4px;
    }
}

/* グローバルナビ */
#m-nav li:first-child {
    border: none;
}
#header #m-nav li a,
#header #m-nav li.selected a {
    border: none;
    box-sizing: border-box;
    display: block;
    font-size: 108%;
    font-weight: bold;
    padding: 12px 0;
    text-align: center;
    text-decoration: none;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, #header #m-nav li a {
        padding: 14px 0 10px;
    }
}

@media screen and (min-width: 768px) {
    #m-nav {
        display: block !important;
    }
    #m-nav li,
    #m-nav li:first-child {
        float: left;
        border: none;
        border-left: 1px solid #82ccff;
        box-sizing: border-box;
        padding: 0;
        width: 192px;
    }
    #m-nav li:first-child {
        border-left: none;
    }
    #header #m-nav li a,
    #header #m-nav li.selected a {
        background: #6ebdf3;
        border: 2px solid #6ebdf3;
        border-radius: 0;
        color: #fff;
        position: relative;
    }
    #header #m-nav li a:hover {
        background: #fff;
        border-radius: 0;
        color: #6ebdf3;
    }
    #header #m-nav li:first-child a {
        border-bottom-left-radius: 999px;
        border-top-left-radius: 999px;
    }
    #header #m-nav li:last-child a {
        border-bottom-right-radius: 999px;
        border-top-right-radius: 999px;
    }
    #header #m-nav li a:before {
        border-color: transparent transparent transparent #fff;
        border-style: solid;
        border-width: 5px 0 5px 8px;
        content: "";
        display: inline-block;
        height: 0;
        margin-right: 10px;
        width: 0;
    }
    #header #m-nav li a:hover:before {
        border-color: transparent transparent transparent #6ebdf3;
    }
}

@media screen and (max-width: 767px) {
    #m-nav {
        background: #6ebdf3;
        border-top: none;
        display: none;
        padding: 3px;
    }
    #m-nav li + li {
        margin-top: 2px;
    }
    #header #m-nav li a {
        background: #fff;
        color: #6ebdf3;
        padding: 14px 0;
    }
    #header #m-nav li.selected a,
    #header #m-nav li a:hover {
        background: #82ccff;
        color: #fff;
    }

    /* drawer
    ===============================================*/
    .drawer {
        position: absolute;
        right: 10px;
        top: 10px;
        display: block;
        width: 45px;
        height: 45px;
        border: 1px solid #ccc;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }
    .drawer .icon,
    .drawer .icon::before,
    .drawer .icon::after {
        position: relative;
        display: block;
        top: 50%;
        left: 50%;
        height: 3px;
        width: 32px;
        background: #000;
        content: '';
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
    }
    .drawer .text {
        position: relative;
        display: block;
        top: calc(100% - 14px);
        font-size: 10px;
        color: #000;
        text-align: center;
    }
    .drawer .text::before,
    .drawer .text::after {
        position: absolute;
        width: 100%;
        left: 0;
        -webkit-transition: all .2s ease-in-out;
        transition: all .2s ease-in-out;
        font-size: 10px;
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
        -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
    }
    .drawer .text::before {
        content: 'メニュー';
        visibility: visible;
        opacity: 1;
    }
    .drawer .text::after {
        content: '閉じる';
        visibility: hidden;
        opacity: 0;
    }
    .drawer .icon {
        -webkit-transform: translate3d(-50%, -5px, 0);
        transform: translate3d(-50%, -5px, 0);
    }
    .drawer .icon::before {
        -webkit-transform: translate3d(-50%, -11.5px, 0);
        transform: translate3d(-50%, -11.5px, 0);
    }
    .drawer .icon::after {
        -webkit-transform: translate3d(-50%, 5px, 0);
        transform: translate3d(-50%, 5px, 0);
    }
    .drawer.is-active .icon {
        background-color: transparent;
    }
    .drawer.is-active .icon::before,
    .drawer.is-active .icon::after {
        top: 0;
    }
    .drawer.is-active .icon::before {
        -webkit-transform: translateX(-50%) rotate(45deg);
        -ms-transform: translateX(-50%) rotate(45deg);
        transform: translateX(-50%) rotate(45deg);
        top: 0;
    }
    .drawer.is-active .icon::after {
        -webkit-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
        -ms-transform: translateX(-50%) translateY(-10px) rotate(-45deg);
        transform: translateX(-50%) translateY(-10px) rotate(-45deg);
        top: 7px;
    }
    .drawer.is-active .text::before {
        visibility: hidden;
        opacity: 0;
    }
    .drawer.is-active .text::after {
        visibility: visible;
        opacity: 1;
    }
}

/*------------------------------
  コンテンツ
------------------------------*/
#contents {
    background: none;
    border-top: none;
}

@media screen and (min-width: 768px) {
    #contents .wrapper,
    .top #contents .wrapper {
        padding: 30px 0 52px;
    }
}

@media screen and (max-width: 767px) {
    #contents {
        padding: 20px 10px 40px;
    }
    #contents .wrapper,
    .top #contents .wrapper {
        padding-top: 0;
    }
    #contents #main-col {
        margin-bottom: 20px;
    }
}

/* メインビジュアル */
.kv {
    border: none;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 30px;
    overflow: hidden;
}
.kv img {
    display: block;
}

@media screen and (max-width: 767px) {
    .kv {
        margin-bottom: 20px;
    }
}

/* 見出し */
.index__h2 {
    align-items: center;
    background: #6ebdf3 url(/files/000052196.png) 16px center no-repeat;
    background-size: 20px;
    border: none;
    border-radius: 3px;
    color: #fff;
    display: flex;
    font-size: 114%;
    font-weight: bold;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 10px 10px 45px;
    position: relative;
}
.index__h2::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    border: solid 5px white;
    border-radius: 50%;
    box-sizing: border-box;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .index__h2 {
        padding: 12px 10px 8px 40px;
    }
}
.index__h2 .index__label {
    display: block;
    flex: 1;
}
.index__h2 .index__btn--wrap {
    display: flex;
}
.index__h2 .index__btn--wrap a {
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(52, 94, 176, .2);
    color: #333;
    display: block;
    font-size: 88%;
    font-weight: bold;
    margin-left: 10px;
    padding: 2px 10px 2px 20px;
    position: relative;
    text-align: center;
    text-decoration: none;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .index__h2 .index__btn--wrap a {
        padding: 3px 10px 1px 20px;
    }
}
.index__h2 .index__btn--wrap a:before {
    border-color: transparent transparent transparent #6ebdf3;
    border-style: solid;
    border-width: 2.5px 0 2.5px 4px;
    content: "";
    display: block;
    height: 0;
    left: 10px;
    margin-top: -2.5px;
    position: absolute;
    top: 50%;
    width: 0;
}

@media screen and (max-width: 767px) {
    .index__h2 {
        background: #6ebdf3 url(/files/000052196.png) 10px center no-repeat;
        background-size: 18px;
        font-size: 110%;
        padding: 8px 10px 8px 34px;
    }
    .index__h2::before {
        left: 8px;
        width: 18px;
        height: 18px;
        border: solid 4px white;
    }
    .index__h2 .index__btn--wrap a {
        font-size: 69%;
        margin-left: 5px;
        padding: 4px 8px 4px 15px;
    }
    .index__h2 .index__btn--wrap a:before {
        left: 8px;
    }
}


@media screen and (min-width: 768px) {
    .child__h2 {
        margin-left: -20px;
    }
}
/* アイコン付きリンク */
.ico__link {
    background-image: url(/images/00_top/arrow_blue2.png);
    background-position: left 4px;
    background-repeat: no-repeat;
    background-size: 14px;
    display: inline-block;
    padding-left: 25px;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .ico__link {
        background-position: left 2px;
    }
}
.ico__link.blank {
    background-image: url(/files/000052198.png);
    background-position: right 6px;
    background-size: 17px;
    padding: 0 25px 0 0;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .ico__link.blank {
        background-position: right 4px;
    }
}

/* お知らせリスト */
#main-col * + .info {
    margin-top: 40px;
}
#main-col ul.lst-link {
    border: none;
    padding: 0 20px;
}
#main-col ul.lst-link li {
    background: none;
    border: none;
    padding: 0;
}
#main-col ul.lst-link.dotline li {
    border-bottom: 1px dotted #ccc;
}
#main-col ul.lst-link li .header {
    margin-bottom: 5px;
}
#main-col ul.lst-link li .header .category {
    border-radius: 3px;
    display: inline-block;
    float: none;
    font-size: 86%;
    font-weight: bold;
    line-height: inherit;
    margin-left: 15px;
    padding: 1px 10px;
    text-align: center;
    width: auto;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, #main-col ul.lst-link li .header .category {
        padding: 2px 10px 0;
    }
}
#main-col ul.lst-link li .header .category.cate01 {
    background: #fff8e4;
    color: #443e2e;
}
#main-col ul.lst-link li .header .category.cate02 {
    background: #ededed;
    color: #333;
}

@media screen and (min-width: 768px) {
    #main-col ul.lst-link li + li {
        margin-top: 15px;
    }
    #main-col ul.lst-link.dotline li {
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    #main-col ul.lst-link {
        padding: 0 15px;
    }
    #main-col ul.lst-link li + li {
        margin-top: 10px;
    }
    #main-col ul.lst-link.dotline li {
        padding-bottom: 10px;
    }
}

/* ピックアップ */
#main-col .pick-up ul {
    display: flex;
    flex-wrap: wrap;
}
#main-col .pick-up ul li {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(52, 94, 176, .2);
    float: none;
    margin: 0;
    overflow: hidden;
}
#main-col .pick-up ul li a {
    border: none;
    display: block;
    height: 100% !important;
    margin: 0;
    padding: 0;
    width: 100%;
}
#main-col .pick-up ul li a img {
    border: none;
    display: block;
    height: auto;
    max-width: none;
    width: 100%;
}
#main-col .pick-up ul li a span.ico__link {
    background: url(/files/000052190.png) 15px 18px no-repeat;
    background-size: 15px;
    box-sizing: border-box;
    font-weight: normal;
    padding: 15px 15px 15px 40px;
    text-align: left;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, #main-col .pick-up ul li a span.ico__link {
        background: url(/files/000052190.png) 15px 17px no-repeat;
        background-size: 15px;
    }
}

@media screen and (min-width: 768px) {
    #main-col * + .pick-up {
        margin-top: 40px;
    }
    #main-col .pick-up ul li {
        margin: 22px 2% 0 0;
        width: 32%;
    }
    #main-col .pick-up ul li:nth-child(1),
    #main-col .pick-up ul li:nth-child(2),
    #main-col .pick-up ul li:nth-child(3) {
        margin-top: 0;
    }
    #main-col .pick-up ul li:nth-child(3n) {
        margin-right: 0;
    }
    #main-col .pick-up ul li a span.ico__link {
        min-height: 112px;
    }
}

@media screen and (max-width: 767px) {
    #main-col * + .pick-up {
        margin-top: 30px;
    }
    #main-col .pick-up ul {
        justify-content: space-between;
    }
    #main-col .pick-up ul li {
        margin-top: 10px;
        width: 49%;
    }
    #main-col .pick-up ul li:nth-child(1),
    #main-col .pick-up ul li:nth-child(2) {
        margin-top: 0;
    }
}

/*------------------------------
  緊急告知
------------------------------*/
#main-col .emg {
    background: none;
    border: none;
}
#main-col .emg .ico__link {
    background-image: url(/files/000052189.png);
    color: #333;
}
#main-col .emg .ico__link:hover {
    color: #00c;
}

/*------------------------------
  サイドナビ
------------------------------*/
#right-col .right-banner-set li {
    margin: 0;
}
#right-col .right-banner-set li + li {
    margin-top: 15px;
}
#right-col .right-banner-set li a {
    box-sizing: border-box;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}
#right-col .right-banner-set li img {
    display: block;
}

@media screen and (max-width: 767px) {
    #right-col .right-banner-set li img {
        margin: 0 auto;
        max-width: 280px;
    }

    #right-col .right-banner-set li + li {
        margin-top: 10px;
    }
}

/*------------------------------
  1カラムコンテンツ
------------------------------*/
#col1 {
    clear: both;
    width: 100%;
}
#right-col{
    float: right;
}

@media screen and (max-width: 767px) {
    #right-col{
        float: none;
    }
}

/*------------------------------
  テキストブロック
------------------------------*/
* + .text-block {
    margin-top: 40px;
}
.text-block .text-block-index {
    background: none;
    border: none;
    color: #6ebdf3;
    line-height: inherit;
    padding: 0;
}
.text-block .text-block-words {
    flex: 1;
}
.text-block .text-block-words a {
    line-height:1.75;
}
.text-block .text-block-detail {
    line-height: 1.9;
    margin-top: 10px;
}
.text-block .text-block-image {
    display: block;
}
.text-block .btn__text-block {
    background: #fff;
    border: 1px solid #6ebdf3;
    border-radius: 999px;
    box-sizing: border-box;
    color: #6ebdf3;
    display: inline-block;
    font-size: 104%;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .text-block .btn__text-block {
        padding: 12px 20px 8px;
    }
}
.text-block .btn__text-block.dl:before {
    background: url(/files/000052194.png) no-repeat;
    background-size: 16px;
    content: "";
    display: inline-block;
    height: 16px;
    margin: -2px 5px 0 0;
    vertical-align: middle;
    width: 16px;
}
.text-block .text-block-table {
    margin-bottom: 20px;
    table-layout: fixed;
    width: 100%;
}
.text-block .text-block-table th,
.text-block .text-block-table td {
    border: 1px solid #c5c5c5;
    font-size: 104%;
    font-weight: normal;
    padding: 14px 20px;
    text-align: left;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .text-block .text-block-table th,
    *::-ms-backdrop, .text-block .text-block-table td {
        padding: 16px 20px 12px;
    }
}
.text-block .text-block-table th {
    background: #f4f4f4;
}
.text-block .text-block-table .wide {
    width: 50%;
}
.text-block .text-block-table .tac {
    text-align: center;
}
.text-block .text-block-table .indent2 {
    text-indent: -2em;
    margin-left: 2em;
}

@media screen and (min-width: 768px) {
    .text-block .text-block-contents {
        display: flex;
        padding-left: 20px;
    }
    .text-block .text-block-index {
        font-size: 118%;
        margin-bottom: 10px;
    }
    .text-block .text-block-detail + .text-block-index {
        margin-top: 30px;
    }
    .text-block .text-block-image {
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .text-block * + .text-block-image {
        margin: 0 0 0 20px;
    }
}

@media screen and (max-width: 767px) {
    .text-block .text-block-index {
        font-size: 100%;
        margin-bottom: 5px;
    }
    .text-block .text-block-detail + .text-block-index {
        margin-top: 15px;
    }
    .text-block .text-block-image {
        margin: 0 auto;
        max-width: 100%;
    }
    .text-block * + .text-block-image {
        margin-top: 20px;
    }
    .text-block .text-block-detail {
        font-size: 90%;
    }
    .text-block .btn__text-block {
        display: block;
        font-size: 100%;
        margin: 0 auto;
        max-width: 255px;
    }
    .text-block .text-block-table th,
    .text-block .text-block-table td {
        font-size: 90%;
        padding: 14px 5px;
    }
}

/*------------------------------
  ボックスリスト
------------------------------*/
.box-list {
    display: flex;
    flex-wrap: wrap;
}
* +.box-list {
    margin-top: 30px;
}
.box-list > li {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(135, 135, 135, .2);
    overflow: hidden;
}
.box-list > li img {
    display: block;
    height: auto;
    width: 100%;
}
.box-list .box-inn-list > li {
    background: url(/files/000052193.png) left 3px no-repeat;
    background-size: 14px;
    margin: 0;
    padding-left: 22px;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .box-list .box-inn-list > li {
        background: url(/files/000052193.png) left 2px no-repeat;
        background-size: 14px;
    }
}

@media screen and (min-width: 768px) {
    .box-list > li {
        margin: 20px 2% 0 0;
        min-height: 300px;
        width: 32%;
    }
    .box-list > li:nth-child(1),
    .box-list > li:nth-child(2),
    .box-list > li:nth-child(3) {
        margin-top: 0;
    }
    .box-list > li:nth-child(3n) {
        margin-right: 0;
    }
    .box-list > li .box-list-detail {
        padding: 20px;
    }
    .box-list .box-inn-list > li + li {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .box-list > li {
        margin: 10px 2% 0 0;
        width: 49%;
    }
    .box-list > li:nth-child(1),
    .box-list > li:nth-child(2) {
        margin-top: 0;
    }
    .box-list > li:nth-child(2n) {
        margin-right: 0;
    }
    .box-list > li .box-list-detail {
        padding: 10px;
    }
    .box-list .box-inn-list > li {
        background: url(/files/000052193.png) left 2px no-repeat;
        background-size: 13px;
        font-size: 90%;
        padding-left: 20px;
    }
}

/*------------------------------
  バナーリスト
------------------------------*/
.banner-set {
    background: none;
    padding: 0;
}
* + .banner-set {
    margin-top: 20px;
}
.banner-set li a {
    display: block;
}
.banner-set li a img {
    display: block;
    height: auto;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .banner-set {
        display: flex;
        flex-wrap: wrap;
    }
    .banner-set li {
        float: none;
        margin: 20px 2% 0 0;
        padding: 0;
        width: 32%;
    }
    .banner-set li:nth-child(1),
    .banner-set li:nth-child(2),
    .banner-set li:nth-child(3) {
        margin-top: 0;
    }
    .banner-set li:nth-child(3n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .banner-set li {
        margin: 0;
    }
    .banner-set li + li {
        margin-top: 10px;
    }
}

/*------------------------------
  フッター
------------------------------*/
#footer {
    border-top: 2px solid #6ebdf3;
    background-color: #ebf9ff;
}
.footer__inn {
    position: relative;
}

@media screen and (min-width: 768px) {
    #footer {
        min-width: 960px;
        padding: 30px 0 60px;
    }
    .footer__inn {
        margin: 0 auto;
        width: 960px;
    }
}

@media screen and (max-width: 767px) {
    #footer {
        padding: 15px 0 20px;
    }
    .footer__inn {
        box-sizing: border-box;
        padding: 0 10px;
        width: 100%;
    }
}

/* 上段 */
* + .footer__prg {
    margin-top: 10px;
}
.footer__link {
    background-image: url(/files/000052195.png);
    background-position: left 3px;
    background-repeat: no-repeat;
    background-size: 15px;
    display: none;
    padding-left: 22px;
}
@media all and (-ms-high-contrast:none){
    *::-ms-backdrop, .footer__link {
        background-position: left 2px;
    }
}
.footer__address .footer__link {
    margin-left: 15px;
}
.footer__logo {
    display: inline-block;
}
.footer__logo--img {
    display: block;
    height:auto;
}

@media screen and (min-width: 768px) {
    .footer__top {
        display: flex;
        justify-content: space-between;
    }
    .footer__sub {
        text-align: right;
    }
}

@media screen and (max-width: 767px) {
    .footer__sub {
        margin-top: 20px;
        text-align: center;
    }
    .footer__logo {
        margin-top: 15px;
    }
}

/* コピーライト */
.footer__copy {
    color: #666;
    font-size: 86%;
}

@media screen and (max-width: 767px) {
    .footer__copy {
        font-size: 10px;
        margin-top: 20px;
        text-align: center;
    }
}

/* ページトップボタン */
.pagetop {
    box-shadow: 0 2px 8px rgba(52, 94, 176, .2);
    border-radius: 12px;
    bottom: 0;
    display: block;
    overflow: hidden;
    right: 40px;
    position: fixed;
}
.pagetop__img {
    display: block;
}

@media screen and (max-width: 767px) {
    .pagetop {
        right: 10px;
    }
}

/* column */
#main-col {
    float: left;
}

/*------------------------------
  看護学校　トップお知らせ一覧ボタン
------------------------------*/
.news-btn{
display:flex;
justify-content:flex-end;
align-items:center;
gap:12px;
margin-bottom:20px;
}

.news-btn a{
display: flex;
justify-content: center;
align-items: center;
width: fit-content;
height: 28px;
padding: 0 16px;
text-decoration: none;
color: white;
font-size:12px;
background-color:#5b5b5b;
border-radius: 14px;
}

.news-btn a:hover{
opacity:0.7;
}
