@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 1em;

    background-repeat: no-repeat;
    background-image: url(../images/bg-body.jpg);
    background-size: cover;
    background-attachment: fixed;

    -webkit-font-smoothing: antialiased;
}

body>* {
    box-sizing: border-box;
}

/* root */
:root {
    --main-colorDark: #aa7a52;
    --main-colorAccentDark: #7fbad3;
    --main-colorAccentLight: #85e695;
    --main-colorHighlight: #f7e490;
    --main-colorBG: #f0f0f0;
    --main-colorBGBody: #d0d0d0;
    --main-colorText: #333;
    --main-colorTextLight: #fff;
    --main-colorNote: #999;
    --main-colorLink: #005599;
    --main-colorHover: #000099;
}

.forPC {
    display: none;
}

.contentsWrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.contentsWrapBox {
    background-color: #fff;
}

.splide {
    background-image: url(../images/tile_background.png);
    background-size: cover;
}

.splide__slide a {
    display: block;
    width: 100%;
    height: 50vh;
}

.splide__slide img {
    display: block;
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: 50% 50%;
}


.splide__slide img {
    transition: all .5s linear !important;
    transform: translateX(100px);
    opacity: 0;
    /*filter: blur(40px);*/
}

.splide__slide.is-active img {
    transition: all .5s ease !important;
    transform: translateX(0px);
    opacity: 1;
    /*filter: blur(0px);*/
}

.splide__slide .photoComment,
.splide__slide.is-prev .photoComment,
.splide__slide.is-next .photoComment {
    line-height: 2;

    margin-top: -37.5vh;

    width: 100%;
    height: 25vh;

    transition: all 0s linear !important;
    transform: translateX(-100px);
    opacity: 0;

    color: var(--main-colorTextLight);
    font-size: calc(50vh / 16);
    line-height: calc(50vh / 4);

}

.splide__slide.is-active .photoComment {
    line-height: 2;

    margin-top: -37.5vh;

    transition: all 1s ease .5s !important;
    transform: translateX(5vw);
    opacity: 1;
}


.splide__slide .slideCommentCage,
.splide__slide.is-prev .slideCommentCage,
.splide__slide.is-next .slideCommentCage {
    transition: all 0s linear !important;
    transform: translateX(320px);
    opacity: 1;
}

.splide__slide.is-active .slideCommentCage {
    transition: all 1s ease 1s !important;
    transform: translateX(0);
    opacity: 1;
}

.slideCommentCage {
    display: block;
    position: absolute;
    bottom: 0px;
    right: 0px;
    text-align: left;
    color: var(--main-colorText);
    font-size: 24px;
    font-weight: 500;
    padding-left: 20px;
    width: 320px;
    height: 100px;
    background-color: #fff;
    padding: 20px;
}

.slideCommentCage .subComment {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: var(--main-colorText);
}

.slideCommentCage .mainComment {
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: var(--main-colorText);
}

.splide__progress {
    position: absolute;
    top: 0px;
    width: 100%;
    left: 0%;
}

.splide__progress__bar {
    background: #f7e490;
    height: 10px;
    opacity: .5;
}

.splide {
    border-bottom: solid 10px #f7e490;
}

.splide__slide .is-active a {
    display: inline-block;
    position: relative;
}



.article {
    overflow: hidden;
}

.t_index {
    font-size: 20px;
    font-weight: 500;
    margin: 20px 0 0 0;
    padding-bottom: 5px;
    color: var(--main-colorText);
    border-bottom: dotted 3px #f7e490;
}

h1.t_main {
    background-image: url(../images/t_main.png);
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 100%;
    text-indent: 45px;
    height: 46px;
    width: 100%;
    line-height: 45px;
    display: block;
    color: #fd8725;
    margin: 20px 0;
}

/**/

header {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.topImageArea {
    display: none;
}

.pageLogoArea {
    position: absolute;
    top: 5px;
    left: 5px;
}

.pageLogoArea img {
    width: auto;
    height: 90px;
}

.pageTitleArea {
    position: absolute;
    top: 5px;
    left: 85px;
}

.pageTitleText {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--main-colorText);
    line-height: 1.5;
    margin-bottom: 5px;
}

.pageTitleTextE {
    display: none;
}

/**/

.menu {
    background-color: var(--main-colorBG);
}

.menu-mobile {
    padding-left: 10px;
    font-weight: 500;
    color: var(--main-colorText);
}

.menu>ul>li {
    position: relative;
    font-weight: 500;
}

.menu>ul>li a {
    padding-left: 20px;
}

.menu>ul>li a.current {
    font-weight: 700;
    color: var(--main-colorDark);
}

.menu-dropdown-icon::after {
    content: '+';
    position: absolute;
    top: 0px;
    right: 0px;
    border-left: solid 1px #ddd;
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 24px;
    font-weight: 100;
    text-align: center;
}

.menu-dropdown-icon.open::after {
    content: '↓';
}

.normal-sub {
    background-color: var(--main-colorBG);
}

/**/
.entry {
    padding: 10px 10px 0 10px;
}


.archiveBoxIndex {
    display: flex;
    flex-wrap: wrap;
}

.fromPf {
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    color: var(--main-colorAccentDark);
    text-align: left;
    padding-bottom: 10px;
}

.archiveIndexTop {
    width: 20%;
}

.archiveIndex {
    width: 80%;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
    padding-left: 20px;
    height: 100%;
    max-height: 120px;
    overflow-y: auto;
    padding-top: 10px;
    border: solid 1px #ddd;
    margin-bottom: 10px;
}

.archiveIndex:last-child {
    margin-left: 20%;
}

/*
.archiveIndex {
    width: 50%;
    float: left;
    padding-left: 0px;
    margin-top: 10px;
    border: solid 1px #ddd;
    padding: 5px;
}
*/


.mCS-dark>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: var(--main-colorHighlight);
}

.mCS-dark>.mCSB_scrollTools .mCSB_draggerRail {
    background: var(--main-colorBG);
    width: 5px;
}

.article {
    clear: both;
}

.infoIndexListUL {
    padding: 10px 0;
    font-size: 14px;
}

.infoIndexListUL li {
    margin-bottom: 0px;
    border-top: solid 1px #ddd;
    padding: 10px 0;
}

.infoIndexListUL li a {
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.dateArea {
    width: 100%;
    display: block;
}

.summaryArea {
    width: 100%;
    display: block;
}

#footer {
    width: 100%;
    clear: both;
    margin: 0px;
    padding: 10px;
    background-image: url(../images/bg_footer2.png);
    background-repeat: repeat-x;
    background-position: center top;
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.footerContents {
    width: 100%;
}

.footerColumnsArea {}

.footerH3 {}

#footerArchiveListUL,
#item-list2 {}

.footerAddress {
    min-height: 0px;
    font-size: 12px;
    color: #fff;
    position: relative;
    text-align: center;
}

.footerCopy {
    font-size: 12px;
    line-height: 1.25;
    color: #FFF;
    clear: both;
    position: relative;
    display: block;
    text-align: center;
}

.akitauc {
    position: relative;

}

.totop {
    margin: 0px;
    padding: 0px;
    height: 30px;
    clear: both;
    text-align: right;
    width: 100%;
}

.totop p {
    font-size: 14px;
    text-align: right;
    margin: 0px;
    padding: 0px;
}

.totop p a {
    transition-property: all;
    transition-duration: .25s;
    transition-timing-function: ease-in-out;
    line-height: 30px;
    background-image: url(../images/btn_totop.png);
    background-repeat: repeat;
    background-position: left top;
    display: block;
    margin: 0px;
    padding: 0px;
    height: 30px;
    width: 168px;
    float: right;
    text-align: center;
    color: #666;
    text-decoration: none;
}

#page-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100000;
}

#page-top img {
    width: 48px;
    height: 48px;
}

/**/
.bnrBox {}

.bnrContena {
    display: flex;
    flex-wrap: wrap;
}

.bnrBox a {
    width: 50%;
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

/**/
.siteMenu {
    background-color: var(--main-colorBG);
}

.siteMenu li {
    line-height: 48px;
    display: block;
    border: solid 1px #ddd;
}

.siteMenu li a {
    padding-left: 20px;
    font-size: 14px;
    font-weight: 500;
}

/**/

/**/

.pageIndexUL {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: 30px;
    margin-left: 30px;
}

.pageIndexULLI {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 64px;
    list-style-type: none;
}

.pageIndexULLI a {
    background-image: url(../images/btn_select.png);
    background-repeat: repeat;
    background-position: left center;
    display: block;
    padding-left: 64px;
    border: 1px solid #CCC;
    color: #333;
    text-decoration: none;
    text-shadow: 1px 1px 1px #fff;
    transition-property: all;
    transition-duration: .25s;
    transition-timing-function: ease-in-out;
}

/**/
.selectBox {
    border: 1px solid #CCCCCC;
    width: 90%;
    background-image: url(../images/bg_entrytouch.png);
    background-repeat: repeat-x;
    padding-bottom: 15px;
    margin: 20px auto;
}

h3.index {
    padding: 0px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #003333;
    margin-top: 5px;
    margin-right: 10px;
    margin-bottom: 5px;
    margin-left: 10px;
    color: #033;
    font-size: 16px;
    font-weight: normal;
}

.archSerectDL {
    font-size: 16px;
    line-height: 1.75;
    padding: 0px;
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 0px;
    margin-left: 10px;
    display: flex;
    flex-wrap: wrap;
}

/**/
.archSerectDL dt {
    display: block;
    width: 100px;
}

.archSerectDL dt.current a {
    text-decoration: underline;
    background-color: #ee0;
    border-radius: 5px;
}

.archSerectDL dt a {
    padding: 2px;
}

.archSerectDL dd {
    width: calc(100% - 100px);
    text-decoration: none;
}

.archSerectDL a:hover {
    text-decoration: underline;
    color: #04053B;
}

/**/

#archiveList {
    padding: 10px;
}

h2.documentTitle {
    font-size: 120%;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #CCC;
    padding-bottom: 3px;
    border-top-width: 1px;
    border-top-style: dotted;
    border-top-color: #CCC;
    padding-top: 3px;
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    color: #fd8725;
}

h4.archH4 {
    font-size: 16px;
    padding-top: 15px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
    color: #333;
    font-weight: 500;
}

.researchListOL {
    font-size: 16px;
    line-height: 1.25;
    padding: 0px;
    margin-top: 0px;
    margin-right: 5px;
    margin-bottom: 0px;
    margin-left: 30px;
    list-style: decimal;
}

.researchListOL .researchListLI {
    padding: 0px;
    margin-top: 0px;
    margin-right: 10px;
    margin-bottom: 1.5em;
    margin-left: 50px;
    word-break: break-all;
    line-height: 1.75;
}

strong.ub {
    text-decoration: underline;
    font-weight: 500;
}

/**/
.toRollUp {
    text-align: right;
    display: block;
    padding: 5px;
    font-size: 14px;
    clear: both;
    margin-bottom:20px;
}

.toRollUp a {
    text-decoration: none;
    color: #999;
}

/**/

.contentsColumBox {
    background-image: url(../images/bg_entrytouch.png);
    background-repeat: repeat-x;
    background-position: left top;
    border: 1px solid #CCC;
    padding: 5px;
    margin: 30px 10px;
}

.contentsListUL {
    font-size: 16px;
    line-height: 1.75;
    padding: 10px;
    margin: 10px 10px 10px 45px;
}

.contentsListLI {
    list-style-type: circle;
    margin-bottom: 15px;
}

.contentsListLI.selected a {
    text-decoration: none;
    font-weight: bold;
    color: #fd8725;
    padding-bottom: 3px;
    border-bottom-width: 1px;
    border-bottom-style: dashed;
    border-bottom-color: #fd8725;
    line-height: 1.75;
}

/**/
h2.sectionTitle {
    font-size: 18px;
    line-height: 1.5;
    display: block;
    margin-top: 30px;
    margin-bottom: 15px;
    background-image: url(../images/btn_section.png);
    background-repeat: repeat;
    background-position: center center;
    color: #330;
    margin: 0 0 20px 0px;
    font-weight: 500;
    padding: 10px;
}

.captionTitle {
    font-size: 18px;
    display: block;
    margin: 0 0 20px 10px;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-bottom-width: 1px;
    border-left-width: 5px;
    border-bottom-style: solid;
    border-left-style: solid;
    border-bottom-color: #900;
    border-left-color: #900;
}

h3.sectionTitle {
    font-size: 18px;
    margin: 0 0 20px 10px;
    border-left-width: 2px;
    border-left-style: solid;
    border-left-color: #fd8725;
    padding-left: 15px;
    color: #333;
}

.mainText01,
.mainTextChr {
    font-size: 16px;
    line-height: 1.75;
    padding: 0px;
    margin-top: 1em;
    margin-right: 10px;
    margin-bottom: 1em;
    margin-left: 10px;
    text-indent: 0;
}

.mainText01 a,
.mainTextChr a {
    font-weight: 500;
    color: var(--main-colorLink);
}

.mainTextChrMinTitleNoinden {
    margin-top: 30px;
    margin-right: 45px;
    margin-left: 45px;
    clear: both;
}

.mainTextChrMinTitleNoinden a {
    transition-property: all;
    transition-duration: .25s;
    transition-timing-function: ease-in-out;
    display: block;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    background-image: url(../images/btn_select.png);
    background-repeat: repeat-x;
    background-position: left center;
    color: #333;
    border: 1px solid #CCC;
}

.imageNoBorder {
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
}

.imageBorder {
    border: 1px solid #999999;
}

.imageCenter {
    position: relative;
    text-align: center;
    clear: both;
    margin-top: 1em;
    margin-bottom: 1em;
}

.imageRightArea {
    margin: 10px auto;
}

.imageRightBox {
    text-align: center;

}

.imageLeftArea {
    margin: 10px auto;
}

.imageLeftBox {
    text-align: center;
}

.imageRightArea a img,
.imageLeftArea a img {
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
}

.dummy01 {
    height: 25px;
}

.dummy02 {
    height: 150px;
}

.alternative {
    display: none !important;
}

span.lowCap {
    font-size: 50%;
    vertical-align: text-botom;
}

strong.ub {
    text-decoration: underline;
}

.photoCaptionApendx {
    display: block;
    padding: 0px;
    margin-top: 15px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 16px;
    line-height: 1.5;
}

.photoCaptionApendx a {
    text-decoration: underline;
    color: var(--main-colorLink);
}

.entryBoxIndex {
    padding: 20px 0;
}

sup {
    font-size: 80%;
    vertical-align: super;
    color: var(--main-colorLink);
    font-weight: 500;
}

sub {
    font-size: 80%;
    vertical-align: sub;
    color: var(--main-colorLink);
    font-weight: 500;
}

.contentsListLI a {
    color: var(--main-colorLink);
    text-decoration: underline;
}

.colums {
    margin: 20px 10px;
    border: 1px solid #CCC;
    padding: 10px;
    background-image: url(../images/bg_entrytouch.png);
    background-repeat: repeat-x;
}

.columTitle {
    font-size: 18px;
    margin-bottom: 15px;
    border: 1px solid #CCC;
    padding: 5px 5px 5px 1em;
    background-image: url(../images/btn_select.png);
    background-repeat: repeat-x;
    color: #333;
}

.colums h3 {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 15px;
    margin-left: 10px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #CCC;
    padding-bottom: 3px;
    padding-left: 10px;
}

.columsListUL {
    margin-bottom: 15px;
    margin-left: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.columsListLI {
    list-style: disc;
}

.columnsBox {
    width: 100%;
    font-size: 16px;
    margin: 10px auto;
    background-color: #FFFAE1;
    border: solid 1px #ddd;
    padding: 5px;
    border-radius: 10px;
}

.columnsBoxAlt {
    width: 100%;
    font-size: 16px;
    margin: 10px auto;
    background-color: #FFFAE1;
    border: solid 1px #ddd;
    padding: 20px;
    border-radius: 10px;
}

.columsOL {
    font-size: 16px;
    line-height: 1.5;
    background-image: url(../images/btn_select_.png);
    /* background-size: cover; */
    border: 1px solid #CCC;
    padding: 5px;
}

.columsOL li {
    margin-bottom: 5px;
    margin-left: 45px;
    list-style: decimal;
}

.columsTable {
    width: 100%;
    border: 1px solid #CCC;
    margin: 20px 0;
    line-height: 1.5;
    border-collapse: collapse;
}

.columsTableTH {
    font-size: 16px;
    font-weight: bold;
    background-color: #ECEFE5;
    text-align: center;
    padding: 3px;
    border: 1px solid #CCC;
    color: #333;
}

.columsTableTD {
    font-size: 16px;
    font-weight: normal;
    background-color: #fff;
    text-align: left;
    padding: 3px;
    border: 1px solid #CCC;
    color: #333;
}

.columsTableTD {
    border: 1px solid #CCC;
}

h2.studyTitle {
    font-size: 18px;
    margin: 0 0 20px 10px;
    color: #333;
    line-height: 1.5;
}

.studyTitle span {
    display: block;
    font-size: 16px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #A6D4C4;
    color: #666;
}

.layoutTable {
    margin: 20px;
}

.layoutTable tr th {
    text-align: left;
    padding: 3px;
    font-size: 16px;
    font-weight: 500px;
}

.layoutTable tr td {
    text-align: left;
    padding: 3px 3px 3px 10px;
    font-size: 16px;
}

.scroll {
    width: 100%;
    height: auto;
    overflow-x: auto;
    padding-left:10px;
}

.graphTable {
    font-size: 16px;
    margin: 20px;
}

.graphTable th {
    vertical-align: middle;
}

.graphTable th {
    background: #e0e0e0;
    border: solid 1px #999;
    padding: 3px;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
}

.graphTable .allSection {
    background: #F8F8C8;
}

.graphTable td {
    background: #fff;
    border: solid 1px #999;
    padding: 3px;
    text-align: center;
    vertical-align: middle;
}

.columsIn {
    margin: 0 0 20px 10px;
    background-image: url(../images/bg_entrytouch.png);
    background-repeat: repeat-x;
    border: 1px solid #CCC;
    padding: 5px;
}

.reserchListUL {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 20px 10px;
}

.reserchListLI {
    font-size: 16px;
    margin-left: 40px;
    list-style: disc;
}

.slideCss {
    background-color: #fafafa;
    padding: 20px 10px 10px 10px;
    margin: 1em 20px;
}

.bx-wrapper {
    width: 100%;
    margin: 0 auto;
}

#sliderTumor div {
    text-align: center;
}

.bx-next.disabled,
.bx-prev.disabled {
    color: #fff;
    cursor: default;
}

.indexTitle {
    font-size: 18px;
    font-weight: bold !important;
    margin-bottom: 20px;
}

.columnsBoxAlt ul {
    margin: 0 0 20px 20px;
}

.columnsBoxAlt ul li {
    list-style: disc;
}

.columnsBoxAlt ul li a {
    text-decoration: underline;
}

.midashi {
    font-size: 18px;
    line-height: 1.75;
    color: #fd8725;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #fd8725;
    margin: 0 0 20px 0;
}

.acContena .acSwitchOpen {
    display: block;
    cursor: pointer;
    margin: 20px 0px 0px auto;
    padding: 3px 10px;
    background-color: #fd8725;
    color: #fff;
    width: 120px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
}

.open .acContena .acSwitchOpen {
    display: none;
}

.acContena.open .acSwitchClose {
    display: block;
}

.acContena .acSwitchClose {
    display: none;
    cursor: pointer;
    margin: 20px 0px 0px auto;
    padding: 3px 10px;
    background-color: #999;
    color: #fff;
    width: 120px;
    text-align: center;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    font-size: 14px;
}

.acContena.open .acSwitchOpen {
    display: none;
}

.sectionSubTitle {
    font-size: 18px;
    line-height: 1.5;
    color: #666666;
    margin: 0 0 20px 0;
    padding-left: 0px;
    padding-top: 30px;
    padding-bottom: 0px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #D6D6D6;
    font-weight: bold;
}

.dataTable {
    padding: 0px;
    width: auto;
    margin: 0 0 20px 0;
    border-collapse: collapse;
}

.columsTitleDL {
    font-size: 16px;
    line-height: 1.75;
    margin: 00;
}

.columsTitleDT {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;

}

.columsTitleDD {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.dataTable tr th {
    font-size: 16px;
    font-weight: bold;
    padding: 3px;
    border: 1px solid #CCC;
    background-color: #f0f0f0;
}

.dataTable tr td {
    padding: 3px;
    border: 1px solid #CCC;
    text-align: center;
}

.acContena {
    margin-bottom: 20px;
}

/**/
.archiveColumns {
    border: 3px double #f0f0f0;
    margin: 30px;
    padding: 0px;
    background-image: url(../images/bg_entrytouch.png);
    background-repeat: repeat-x;
}

#list1,
#list2 {
    margin: 10px;
    padding: 10px;
}

#list1 li,
#list2 li {
    font-size: 16px;
    line-height: 1.75;
}

#list1 li a,
#list2 li a {
    text-decoration: underline;
}

.cmsIndex {
    line-height: 1.25;
    padding: 5px;
    list-style-type: none;
    font-size: 16px;
    /* background-image: url(../images/bg_cms.png); */
    margin: 0 0 20px 0;
}

h2.sionTitle {
    font-size: 18px;
    color: #fd8725;
    margin: 0 0 20px 20px;
}

.pageBack {
    clear: both;
}

.pageBack a {
    display: block;
    margin: 20px auto;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    padding-top: 5px;
    padding-right: 29px;
    padding-bottom: 5px;
    padding-left: 29px;
    color: #fd8725;
    text-decoration: none;
    background-color: #e8e1da;
    font-size: 16px;
    width: 100px;
    border: 1px solid #fd8725;
}

/**/
h2.sectionTitle {
    font-size: 18px;
    line-height: 1.5;
    display: block;
    margin-top: 30px;
    margin-bottom: 15px;
    background-image: url(../images/btn_section.png);
    background-repeat: repeat;
    background-position: center center;
    color: #330;
    margin-right: 0px;
    margin-left: 10px;
    padding-top: 5px;
    padding-right: 0;
    padding-bottom: 5px;
    padding-left: 10px;
    font-weight: normal;
}

.dignosisTable {
    margin: 30px auto;
    font-size: 16px;
    border: none;
    line-height: 1.75;
    font-size: 18px;
    font-weight: 300;
}

.dignosisTable th {
    font-weight: 500;
    padding: 5px;
}

.dignosisTable td {
    font-weight: 300;
    padding: 5px;
}

.dignosisTable input[type="radio"] {
    width: 20px;
    height: 20px;
    border-radius: 100px;
    position: relative;
    vertical-align: sub;
    margin-right: 5px;
}

.dignosisTable input[type="radio"]::before,
.dignosisTable input[type="radio"]::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.dignosisTable input[type="radio"]::before {
    background-color: #fff;
    border: 1px solid #c2c1c1;
    height: 20px;
    width: 20px;
    left: 0px;
}

.dignosisTable input[type="radio"]::after {
    background-color: orange;
    opacity: 0;
    height: 14px;
    width: 14px;
    left: 3px;
}

.dignosisTable input[type="radio"]:checked::after {
    opacity: 1;
}

.dignosisTable label {
    cursor: pointer;
}

#btnGo {
    display: block;
    margin: 10px auto;
    width: 100px;
    padding: 10px;
    background-color: var(--main-colorBG);
    color: var(--main-colorLink);
    cursor: pointer;
    border: solid 1px #ddd;
}

.dignosisGraphTable {
    width: 90%;
    margin: 20px auto;
}

.dignosisGraphTable th {
    background-color: #f0f0f0;
    font-size: 16px;
    padding: 5px;
    border: solid 1px #ddd;
    font-weight: 500;

    color: #333;
}

.dignosisGraphTable td {
    background-color: #fff;
    font-size: 16px;
    padding: 5px;
    border: solid 1px #ddd;
    font-weight: 500;

    color: #333;
}

.mainText01Comment {
    font-size: 16px;
    line-height: 1.75;
    padding: 0px;
    margin-top: 0.25em;
    margin-right: 30px;
    margin-bottom: 0.25em;
    margin-left: 90px;
    text-indent: 0em;
}

.photoCaption {
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.columsResearch {
    /* background-color: #fff6c6; */
    background-image: url(../images/bg-body5.jpg);
    background-size: cover;
    border: solid 1px #ddd;
    margin: 0 10px 10px 10px;
}

.columnsDL {
    line-height: 1.5;
    margin: 10px;
    font-size: 16px;
}

.columnsDL .dt {
    font-size: 16px;
    color: #006699;
    font-weight: 600;
    /* background-color: #fd8725; */
    padding: 10px;
}

.columnsDL .dt span.theme {
    margin-top: 10px;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    background-color: #006699;
    border: solid #006699 1px;
    color: #fff;
    padding: 10px;
}

.columnsDL .dt span.themeNumber {
    margin-top: 10px;
    /* font-family: "Sawarabi Mincho"; */
    font-size: 16px;
    display: inline-block;
    font-weight: bold;
    border: solid #006699 1px;
    color: #006699;
    background-color: #fff;
    padding: 10px;
    margin-right: 20px;
}

.columnsDL .dt span.themeName {
    margin-top: 10px;
    /* font-family: "Sawarabi Mincho"; */
    font-size: 16px;
    display: block;
    font-weight: bold;
    color: #666;
    padding: 10px;
    margin-left: 0px;
}

.columnsDL .dd {
    font-size: 16px;
    margin-left:10px;
}

.reaserchListDL {
    font-size: 16px;
    line-height: 1.75;
    margin: 0px;
    padding: 0px;
}

.reaserchListDT {
    font-weight: 500;
    color: #333;
    padding-left:10px;
}

.reaserchListDD {
    margin-left: 30px;
    margin-bottom: 15px;
}

.mainText01Noindent {
    line-height: 1.75;
    margin-top: 15px;
    margin-right: 30px;
    margin-bottom: 15px;
    margin-left: 30px;
    font-size: 16px;
    text-indent: -0.5em;
}

.mainText01Noindent strong {
    font-weight: 600;
}

.mainTextUL {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 15px;
    margin-right: 55px;
    margin-bottom: 15px;
    margin-left: 55px;
}

.mainTextULLI {
    margin-bottom: 15px;
    list-style: disc;
}

/**/
.staffListTable {
    border-collapse: collapse;
    line-height: 1.75;
    margin: 20px;
    width: calc(100% - 40px);
}

.staffListTable .staffListTableTH {
    margin: 0px;
    padding: 3px;
    border: 1px solid #999999;
    font-size: 16px;
    font-weight: bold;
    background-color: #ECEFE5;
    color: #000032;
    vertical-align: middle;
    text-align: center;
}

.staffListTable .staffListTableTd {
    font-size: 14px;
    font-weight: normal;
    border: 1px solid #999999;
    padding: 3px;
    line-height: 1.75;
    vertical-align: middle;
}

.staffListTable .credit {
    text-align: center;
}

.staffListTable .name {
    text-align: center;
}

.staffListTable .license {
    text-align: left;
    white-space: nowrap;
}

.staffListTable .noLimit {
    white-space: nowrap;
}

.columTitles {
    font-size: 16px;
    border: 1px dotted #900;
    padding: 5px;
    margin-top: 15px;
    margin-right: 15px;
    margin-bottom: 0px;
    margin-left: 15px;
    color: #900;
    background-color: #FEE;
}

.linkListDL {
    font-size: 16px;
    margin-top: 30px;
    margin-right: 20px;
    margin-bottom: 30px;
    margin-left: 20px;
}

.linkListDT {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    line-height: 1.75;
}

.linkListDD {
    margin-bottom: 15px;
    font-size: 14px;
}

.linkListDD a {
    text-decoration: underline;
}

/**/
.imagePhotoColumnsCage {
    background-image: url(../images/bg-la-mancha.jpg);
    background-size: 100% auto;
}

.imagePhotoColumns {
    position: relative;
    width: 100%;
    margin: 20px auto 0 auto;
    padding: 20px;
    background-color: rgba(253, 135, 37, .7);
    overflow: hidden;
    display: block;
}

.imagePhotoColumnsTextBox {
    width: 100%;
    display: block;
    vertical-align: bottom;
}

.imagePhotoColumnsTitle {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
    text-shadow: -1px -1px 5px rgba(129, 72, 72, 0.5);
    letter-spacing: 2px;
}

.imagePhotoColumnsSubTitle {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #fff;
    display: inline-block;
    color: #fd8725;
    padding: 5px;
    border-radius: 2px;
    letter-spacing: 0px;
}

.photoColumnsCaption {
    font-size: 20px;
    font-weight: normal;
    color: #fff;
}

.textCage {
    margin: 0px 0 20px 20px;
    color: #fff;
}

.historyList {
    font-size: 14px;
    line-height: 1.75;
}

.historyList dt {
    width: 100%;
    float: none;
}

.historyList dd {
    margin-bottom: 10px;
}

.imagePhotoColumnsPhotoArea {
    width: 35%;
    display: table-cell;
    vertical-align: middle;
}

.imagePhotoColumnsPhotoArea img {
    width: 100%;
    height: auto;
    border: none;
}

.imagePhotoColumnsAlt {
    width: 100%;
    margin: 0px auto;
    padding: 20px;
    background-color: rgba(255, 185, 51, .7);
}

.imagePhotoColumnsHistoryArea {
    width: 100%;
}

.textCageAlt {
    margin: 0px 0 0 20px;
    color: #333;
}

.textQ,
.textA {
    margin: 40px 0 20px 20px;
    line-height: 1.75;
    position: relative;
    clear: both;
}

.textQ {
    background-color: #fd8725;
    color: #fff;
    font-weight: bold;
    padding-left: 40px;
}

.textQ::before {
    content: 'Q';
    color: #fd8725;
    display: block;
    background-color: #fff;
    font-size: 32px;
    border: solid 1px #fd8725;
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 20px;
    line-height: 32px;
}

.textQ .qaText {
    padding: 0.5em 0px 0.5em 20px;
}

.textA::before {
    content: 'A';
    background-color: #fd8725;
    display: block;
    color: #fff;
    font-size: 32px;
    border: solid 1px #fd8725;
    position: absolute;
    top: -20px;
    left: -20px;
    padding: 20px;
    line-height: 32px;
}

.textA .qaText {
    padding: 0.5em 0px 0.5em 60px;
}

.photoBoxCaption {
    font-size: 16px;
    text-align: center;
}

.photoRightBox,
.photoRightBoxAlt,
.photoRightBoxAlt2 {
    text-align: center;
}

.photoRightBox img,
.photoRightBoxAlt img {
    width: 50%;
}

.photoRightBoxAlt2 img {
    width: 25%;
}

/**/
.slick-slide img {
    margin: 0 auto;
}

.c5-dots {
    display: block;
    background-color: var(--main-colorBG);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border: solid 1px #ddd;
    margin-top: 50px;
}

.c5-dots li {
    display: block;
    width: 10%;
    text-align: center;
    padding: 1px;
}

.c5-dots li .c5-dots__num {
    background-color: var(--main-colorBGBody);
    cursor: pointer;
}

.slick-active .c5-dots__num {
    background-color: var(--main-colorAccentDark) !important;
    color: #fff;
}

.prev-arrow {
    position: absolute;
    bottom: 28px;
    left: 10px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--main-colorBG);
    padding: 5px 10px;
    border-radius: 100px;
}

.next-arrow {
    position: absolute;
    bottom: 28px;
    right: 10px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--main-colorBG);
    padding: 5px 10px;
    border-radius: 100px;
}

#slider1 .prev-arrow,
#slider1 .next-arrow {
    bottom: 28px;
}

#slider1e .prev-arrow,
#slider1e .next-arrow {
    bottom: 58px;
}

/**/

.cmsIndex {
    line-height: 1.75;
    padding: 5px;
    list-style-type: none;
    font-size: 16px;
    margin: 15px;
}

.cmsIndex a {
    text-decoration: none;
}

.categoryBox {
    font-weight: normal;
    color: #FFF;
    background-color: #900;
    display: inline-block;
    font-size: 14px;
    margin-left: 1em;
    text-align: center;
    width: 3em;
}

#item {
    line-height: 1.75;
    padding: 30px;
}

#item .cmsDate {
    font-size: 80%;
    font-weight: normal;
    color: #666;
    display: block;
    margin-top: 0;
    margin-bottom: 1em;
}

#item .cmsCategory {
    float: right;
}

#item .cmsTitle {
    font-size: 18px;
    font-weight: 500;
    color: #fd8725;
    display: block;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0.5em;
    margin-left: 0px;
}

#item .cmsBody {
    font-size: 16px;
    display: block;
    margin: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 1.75;
    font-weight: 400;
}


#item h1 {
    display: none;
}

#item .cmsBody a {
    text-decoration: underline;
    color: var(--main-colorLink);
}

#item h2,
.research h2 {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #666;
    padding-left: 15px;
    border-left-width: 5px;
    border-left-style: solid;
    border-left-color: #D09EAC;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #D09EAC;
    border-top-width: 1px;
    border-right-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    border-top-color: #E8DADE;
    border-right-color: #E8DADE;
    background-image: url(../images/bg_subtitle.png);
    background-repeat: repeat;
    background-position: left center;
    clear: both;
}

#item h3,
.research h3 {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    display: block;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #D09EAC;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 5px;
    margin-left: 15px;
    clear: both;
}

#item h4,
.research h4 {
    font-size: 18px;
    line-height: 1.25;
    margin-top: 29px;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #666;
    padding-left: 5px;
    border-left-width: 5px;
    border-left-style: double;
    border-left-color: #D09EAC;
}

#item h5 {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    color: #A6D4C4;
}

#item h6 {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-top: .5em;
    margin-bottom: .5em;
}

#item ul,
#item ol {
    margin-left: 30px;
}

#item hr {
    background-color: #CCC;
    height: 1px;
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 30px;
    margin-left: 0;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    clear: both;
}

/* tag important */

.important .summaryBox:after {
    content: url(../images/mark_important.png);
}

.important .entry:after {
    content: url(../images/mark_important.png);
}

.important .dateArea a {
    font-weight: normal;
    color: #900 !important;
}

.important .dateArea a:hover {
    font-weight: normal;
    color: #00F !important;
}

.important .summaryArea a {
    font-weight: bold;
    color: #900 !important;
}

.important .summaryArea a:hover {
    font-weight: bold;
    color: #00F !important;
}

/* tag new */

.new .summaryBox:after {
    content: url(../images/mark_new.png);
}

.new .entry:after {
    content: url(../images/mark_new.png);
}

.new .dateArea a {
    font-weight: normal;
    color: #009 !important;
}

.new .dateArea a:hover {
    font-weight: normal;
    color: #00f !important;
}

.new .summaryArea a {
    font-weight: normal;
    color: #009 !important;
}

.new .summaryArea a:hover {
    font-weight: normal;
    color: #00f !important;
}

/**/

.staffDL {
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.75;
}

.staffDL dt {
    width: 100%;
    font-weight: 400;
    margin-bottom: 3px;
    text-decoration: underline;
    ;
}

.staffDL dd {
    width: 100%;
    font-weight: 400;
    padding-left: 30px;
    margin-bottom: 3px;
}

.rAS {
    font-style: italic;
}

.mainTextDL {
    line-height: 1.75;
    margin-top: 15px;
    margin-right: 30px;
    margin-bottom: 15px;
    margin-left: 40px;
    font-size: 16px;
}

.mainTextDL dt {
    font-weight: 500;
}

.mainTextDL dd {
    font-weight: 300;
    margin-bottom: 20px;
}

.n {
    float: right;
    background-image: url(http://www.med.akita-u.ac.jp/~medonco/images/n.png);
    background-position: center;
    width: 180px;
    height: 161px;
    text-align: center;
}

.n p {
    font-weight: bold;
    font-size: 250%;
    margin: 0;
    padding: 40px 0 0 0;
    text-align: center;
    color: #fff;
    text-shadow: 0px 0px 19px rgba(255, 221, 150, 1);
}

.cmsTitleAlt {
    padding: 0px;
    border-bottom-width: 1px;
    border-bottom-style: dotted;
    border-bottom-color: #003333;
    margin-top: 20px;
    margin-right: 10px;
    margin-bottom: 20px;
    margin-left: 0px;
    color: #033;
    font-size: 18px;
    font-weight: normal;
    clear: both;
}

em {
    font-style: italic;
}

.slideTop {
    padding-top:20px;
    padding-bottom:20px;
}

.slideArea {
    padding:10px;
    background-color:var(--main-colorBG);
}

.slideAreaAlt {
    margin:10px;
    padding:10px;
}

.slideArea .cmsTitleAlt ,
.slideAreaAlt .cmsTitleAlt {
    margin-top:0!important;
    padding-top:0!important;
}

/**/

.owl-dots,.owl-nav {
    width:auto;
    text-align:center;
    position:relative;
}

.owl-dots{
    height:48px;
    margin-left:20px;
    margin-right:20px;
}

.owl-nav {
    height:auto;
}

.owl-nav .owl-prev span {
    font-size:32px;
    position:absolute;
    top:0;
    left:10px;
}

.owl-nav .owl-next span {
    font-size:32px;
    position:absolute;
    top:0;
    right:10px;
}

.owl-nav .owl-prev.disabled span,
.owl-nav .owl-next.disabled span {
    display:none;
}

.owl-dot span::after {
    content:'●';
    font-size:16px;
    margin:10px 5px;
    color:#ddd;
    display:inline-block;
}
.owl-dot.active span::after {
    content:'●';
    font-size:16px;
    margin:10px 5px;
    color:var(--main-colorLink);
    display:inline-block;
}

.owl-prev,.owl-next {

}

/**/
.listTable {
    border-collapse: collapse;
    width:100%;
    font-size:14px;
}

.listTable th {
    padding:5px;
    background-color:var(--main-colorBGBody);
    color:#333;
    border:solid 1px #999;
}
.listTable td {
    padding:5px;
    background-color:#fff;
    color:#333;
    border:solid 1px #ddd;
}

.listTable tr th {
    text-align:center;
    white-space: nowrap;
    vertical-align: middle;
}

.listTable tr td:nth-of-type(1),
.listTable tr td:nth-of-type(2),
.listTable tr td:nth-of-type(3),
.listTable tr td:nth-of-type(4),
.listTable tr td:nth-of-type(5),
.listTable tr td:nth-of-type(6),
.listTable tr td:nth-of-type(9),
.listTable tr td:nth-of-type(10),
.listTable tr td:nth-of-type(11),
.listTable tr td:nth-of-type(12),
.listTable tr td:nth-of-type(13),
.listTable tr td:nth-of-type(14),
.listTable tr td:nth-of-type(15),
.listTable tr td:nth-of-type(16),
.listTable tr td:nth-of-type(17) {
    white-space: nowrap;
}

.years {
    color:#fd8725;
    font-size:18px;
    border-bottom:dotted 1px #fd8725;
    padding-bottom:5px;
}

/**/
.staffIntro {
    display:flex;
    flex-wrap: wrap;
}

.staffIntro .reaserchListDL {
    width:100%;
}

.staffIntro .staffIllst {
    width:100%;
}
.staffIntro .staffIllst img {
    width:100%;
    height:auto;
}

/**/
.readPDF {
    padding:20px;
    text-align:center;
}

.readPDF a {
    display:block;
    width:150px;
    background-color:#fd8725;
    padding:5px;
    font-size:16px;
    color:#fff;
    border-radius:5px;
    margin:0 auto;
}

.stickyNote {
    display:none;
}

@media only screen and (min-width: 768px) {

    .forSP {
        display: none !important;
    }

    .forPC {
        display: block !important;
    }

    header {
        position: relative;
        width: 100%;
        height: 140px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    header .pageTitle {
        margin: 0;
        padding: 0;
    }

    .indexLink {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
    }

    /********************************/
    .pageLogoArea {
        position: absolute;
        top: 10px;
        left: 10px;
        display:none;
    }

    .pageLogoArea img {
        width: auto;
        height: 50px;
    }

    .pageTitleArea {
        position: absolute;
        top: 50px;
        left: 10px;
    }

    .pageTitleText {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: var(--main-colorText);
        margin-bottom: 0px;
    }

    .pageTitleTextE {
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: var(--main-colorText);
        margin-bottom: 5px;
    }

    /********************************/

    .siteMenu {
        position: absolute;
        top: 0px;
        right: 10px;
        background-color: transparent;
        width: 100%;
        text-align: right;
        background-color: rgba(247, 228, 144, .35);
    }

    .siteMenu li {
        text-align: right;
        display: inline;
        border: none;
        line-height: 1;
        padding: 3px;

    }

    .siteMenu a {
        font-size: 12px;
        font-weight: 500;
        padding: 0;
    }

    .siteMenu a::before {
        content: '>>';
        color: var(--main-colorDark);
        font-weight: 600;
        margin-right: 5px;
        margin-left: 15px;
    }

    /**/
    .stickyNote {
            display:block;
        position: absolute;
        top: 29px;
        right: 10px;
        background-color: transparent;
        transform: rotate(0deg);
    }

    .stickyNote li a {
        position: relative;
        margin-bottom: 5px;
        padding: 4px 10px 4px 28px;
        /*border-left: 10px solid #ffdbbd;*/
        background-color: #fafafa;
        color: #212121;
        font-weight: 400;
        font-size: 14px;
        display:inline-block;
        width:250px;
        transition: all .5s ease;
    }
    .stickyNote li a span {
        display:inline-block;
        width:19px;
        height:19px;
        /*background-color:#ffdbbd;*/
        background-color:#ffffff;
        margin-right:10px;
        position:absolute;
        top:5px;
        left:5px;
        border-radius:100px;
        border:solid 5px #ffdbbd;
        transition: all .5s ease;
    }
    .stickyNote li a:hover {
        background-color: #fff;
        transition: all .5s ease;
        font-weight: 500;
        /*border-left: 10px solid #fd8725;*/
    }

    .stickyNote li a:hover span {
        display:inline-block;
        width:19px;
        height:19px;
        /*background-color:#ffdbbd;*/
        background-color:#fd8725;
        margin-right:10px;
        position:absolute;
        top:5px;
        left:5px;
        border-radius:100px;
        border:solid 0px #ffdbbd;
        transition: all .5s ease;
    }

    .stickyNote li a::before {
        position: absolute;
        right: 1px;
        bottom: 10px;
        width: 50%;
        height: 50%;
        box-shadow: 0 10px 10px #333;
        transform: rotate(4deg);
        z-index: -1;
        content: '';
        transition: all .5s ease;
    }

    .stickyNote li a:hover::before {
        position: absolute;
        right: 1px;
        bottom: 10px;
        width: 50%;
        height: 50%;
        box-shadow: 0 0px 1px #333;
        transform: rotate(0deg);
        z-index: -1;
        content: '';
        transition: all .5s ease;
    }

    .stickyNote li:nth-of-type(1){
        transform: translate(0px, 0px);
    }

    .stickyNote li:nth-of-type(2){
        transform: translate(0px, 0px);
    }

    .stickyNote li:nth-of-type(3){
        transform: translate(0px, 0px);
    }

    .stickyNote li:nth-of-type(4){
        transform: translate(0px, 0px);
    }

    /**/

    .topImageArea {
        display: block;
        position: absolute;
        bottom: 40px;
        right: 0px;
        bottom: 0;
        opacity: .5;
    }

    .indexPage .topImageArea {
        display: block;
        position: absolute;
        bottom: 40px;
        right: 250px;
        bottom: 0;
        opacity: .5;
    }

    .topImageArea img {
        width: 300px;
        height: auto;
        opacity: .75;
    }

    nav {
        padding-left: 0px;
    }

    .menu {
        background-color: transparent;
    }

    .menu-container {
        border-bottom: solid 10px #f7e490;
    }

    .menu-dropdown-icon::after {
        content: none;
    }

    .menu>ul>li a {
        padding-left: 5px;
        padding-right: 5px;

    }

    .menu>ul>li a:hover {
        text-decoration: none;
        color: var(--main-colorDark);
    }

    /*
    .menu>ul>li a:hover i {
        text-decoration: none !important;
    }

    .menu>ul>li a:hover i::before {
        text-decoration: none !important;
    }*/

    .contentsWrapBox {
        margin: 0;
    }

    .contentsArea {
        background-color: #fff;
    }

    .entry {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    .entryAreaIndex {
        width: calc(100% - 204px);
    }

    .entryBoxIndex {
        padding: 20px;
    }

    .bnrAreaIndex {
        width: 204px;
    }

    .bnrBoxIndex {
        padding: 20px;
    }

    .archiveAreaIndex {
        border: solid 1px #ddd;
        margin-bottom: 40px;
    }

    .archiveBoxIndex {
        display: flex;
        flex-wrap: wrap;
        position: relative;
    }

    .archiveIndex:last-child {
        margin-left: 0%;
    }

    .archiveIndexTop {
        width: 200px;
    }

    .archiveIndexTop img {
        width: 100%;
        height: auto;
    }

    .archiveIndex {
        width: calc((100% - 200px)/2);
        font-size: 14px;
        font-weight: 300;
        line-height: 1.75;
        padding-left: 20px;
        height: 125px;
        overflow-y: auto;
    }

    .fromPf {
        position: absolute;
        bottom: 10px;
        left: 200px;
        font-size: 30px;
        font-weight: 500;
        color: var(--main-colorAccentDark);
        width: calc(100% - 200px);
    }

    .mCS-dark>.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        background: var(--main-colorHighlight);
    }

    .mCSB_scrollTools .mCSB_draggerRail {
        width: 3px;
    }

    .mCS-dark>.mCSB_scrollTools .mCSB_draggerRail {
        background: var(--main-colorBG);
    }

    .infoIndexListUL {
        font-size: 16px;
        padding: 0 0 20px 0;
    }

    .infoIndexListUL li {
        margin-bottom: 10px;
    }

    .infoIndexListUL li a {
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        text-decoration: none;
    }

    .infoIndexListUL li a:hover {
        text-decoration: underline;
    }

    .dateArea {
        width: 110px;
        display: block;
    }

    .summaryArea {
        display: block;
        width: calc(100% - 110px);
    }

    #footer {
        width: 100%;
        clear: both;
        margin: 0px;
        padding: 0px;
        background-image: url(../images/bg_footer2.png);
        background-repeat: repeat-x;
        background-position: center top;
        background-size: cover;
        position: relative;
        overflow: hidden;
        text-align: left;
    }

    .footerContents {
        width: 100%;
        max-width: 1200px;
        margin-right: auto;
        margin-left: auto;
        padding-right: 10px;
        padding-left: 10px;
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;

    }

    .footerColumnsArea {
        margin: 0px;
        padding: 10px;
        width: 24%;
        color: var(--main-colorTextLight);
        font-size: 12px;
        font-weight: 300;
        line-height: 1.5;
        min-height: 250px;
    }

    .footerH3 {
        font-size: 14px;
        line-height: 1.5;
        color: #ffc100;
        display: block;
        padding-bottom: 3px;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        border-bottom-color: #ffc100;
    }

    #footerArchiveListUL,
    #item-list2 {
        font-size: 12px;
        line-height: 1.25;
        display: block;
    }

    .footerAddress {
        min-height: 0px;
        font-size: 75%;
        color: #fff;
        position: absolute;
        right: 96px;
        bottom: 100px;
        z-index: 1000;
    }

    .footerCopy {
        font-size: 12px;
        line-height: 1.25;
        color: #FFF;
        text-align: right;
        margin: 0px;
        padding: 0px;
        clear: both;
        position: absolute;
        display: block;
        bottom: 10px;
        right: 96px;
    }

    .akitauc {
        position: absolute;
        right: 9px;
        bottom: 0;
        height: 77px;
        width: 77px;
    }

    .totop {
        margin: 0px;
        padding: 0px;
        height: 30px;
        clear: both;
        text-align: right;
        width: 100%;
    }

    .totop p {
        font-size: 14px;
        text-align: right;
        margin: 0px;
        padding: 0px;
    }

    .totop p a {
        transition-property: all;
        transition-duration: .25s;
        transition-timing-function: ease-in-out;
        line-height: 30px;
        background-image: url(../images/btn_totop.png);
        background-repeat: repeat;
        background-position: left top;
        display: block;
        margin: 0px;
        padding: 0px;
        height: 30px;
        width: 168px;
        float: right;
        text-align: center;
        color: #666;
        text-decoration: none;
    }

    /**/
    .bnrBox {
        display: block;
        flex-wrap: wrap;
    }

    .bnrBox a {
        width: auto;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .menu-dropdown-icon::after {
        content: none;
    }

    .menu-dropdown-icon.open::after {
        content: none;
    }

    /**/
    .pageIndexULLI a:hover {
        background-image: url(../images/btn_select_.png);
        background-repeat: repeat;
        background-position: left center;
        color: #fd8725;
    }

    /**/
    .mainTextChrMinTitleNoinden a:hover {
        background-image: url(../images/btn_section.png);
        background-repeat: repeat-x;
        background-position: left center;
        color: #333;
    }

    .imageRightArea {
        float: right;
    }

    .imageRightBox {
        margin-right: 30px;
        margin-bottom: 15px;
        text-align: center;
        padding-left: 15px;
    }

    .imageLeftArea {
        float: left;
    }

    .imageLeftBox {
        margin-left: 30px;
        margin-bottom: 15px;
        text-align: center;
        padding-right: 15px;
    }

    .imageRightArea a img,
    .imageLeftArea a img {
        border-top-style: none;
        border-right-style: none;
        border-bottom-style: none;
        border-left-style: none;
    }

    .mainText01,
    .mainTextChr {
        padding: 0px 10px;
    }

    /**/
    .pageBack a:hover {
        color: #666;
        text-decoration: none;
        background-color: #CCCCCC;
        border: 1px solid #999999;
    }

    /**/
    .columnsDL .dt {
        font-size: 24px;
    }

    .columnsDL .dt span.theme {
        font-size: 20px;
    }

    .columnsDL .dt span.themeNumber {
        font-size: 20px;
    }

    .columnsDL .dt span.themeName {
        font-size: 18px;
        margin-left: 130px;
    }

    .staffListTable .license {
        white-space: normal;
    }

    /**/
    .imagePhotoColumnsTitle {
        font-size: 28px;
    }

    .imagePhotoColumnsSubTitle {
        font-size: 14px;
        padding: 5px;
        border-radius: 2px;
        letter-spacing: 0px;
    }

    .imagePhotoColumnsPhotoArea img {
        max-width: 320px;
    }

    .photoColumnsCaption {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .imagePhotoColumns {
        display: table;
    }

    .imagePhotoColumnsTextBox {
        width: 60%;
        display: table-cell;
        vertical-align: bottom;
    }

    .imagePhotoColumnsPhotoArea {
        width: 40%;
        display: table-cell;
        vertical-align: middle;
    }

    .imagePhotoColumnsPhotoArea img {
        width: 100%;
        max-width: 100%;
    }

    .historyList dt {
        width: 120px;
        float: left;
    }

    .photoRightBox img,
    .photoRightBoxAlt img,
    .photoRightBoxAlt2 img {
        width: 100%;
        height: auto;
    }

    .photoRightBox {
        width: 40%;
        float: right;
        padding: 15px 0px 20px 20px;
    }

    .photoRightBoxAlt {
        width: 60%;
        float: left;
        padding: 15px 20px 20px 60px;
    }

    .photoRightBoxAlt2 {
        width: 35%;
        float: right;
        padding: 15px 20px 20px 60px;
    }

    #item-list1 a:hover,
    #item-list2 a:hover,
    #item-list3 a:hover,
    #item-list4 a:hover,
    #item-list5 a:hover,
    #item-list6 a:hover,
    #item-list7 a:hover {
        font-weight: normal;
        color: var(--main-colorLink);
        text-decoration: underline;
    }

    .staffIntro .reaserchListDL {
        width:50%;
    }

    .staffIntro .staffIllst {
        width:50%;
    }
    .splide__arrow {
        background:transparent;
        height: 5em;
        width: 5em;
    }

    .splide__arrow svg {
        fill: rgba(0,0,0,.5);
        height: 5em;
        width: 5em;
    }

    @media only screen and (min-width: 825px) {
    
        /********************************/
        .pageLogoArea {
            position: absolute;
            top: 50px;
            left: 10px;
            display:block;
        }

        .pageLogoArea img {
            width: auto;
            height: 70px;
        }

        .pageTitleArea {
            position: absolute;
            top: 50px;
            left: 80px;
        }

        .pageTitleText {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: var(--main-colorText);
            margin-bottom: 0px;
        }

        .pageTitleTextE {
            display: block;
            font-size: 10px;
            font-weight: 400;
            color: var(--main-colorText);
            margin-bottom: 5px;
        }

        /********************************/
    }

    @media only screen and (min-width: 920px) {
    
        /********************************/
        .pageLogoArea {
            position: absolute;
            top: 50px;
            left: 10px;
            display:block;
        }

        .pageLogoArea img {
            width: auto;
            height: 80px;
        }

        .pageTitleArea {
            position: absolute;
            top: 50px;
            left: 90px;
        }

        .pageTitleText {
            display: block;
            font-size: 15px;
            font-weight: 500;
            color: var(--main-colorText);
            margin-bottom: 0px;
        }

        .pageTitleTextE {
            display: block;
            font-size: 11px;
            font-weight: 400;
            color: var(--main-colorText);
            margin-bottom: 5px;
        }

        /********************************/
    }
    
    @media only screen and (min-width: 1000px) {
        .imagePhotoColumnsTitle {
            font-size: 42px;
        }

        .imagePhotoColumnsSubTitle {
            font-size: 16px;
            padding: 5px;
            border-radius: 2px;
            letter-spacing: 6px;
        }

        .imagePhotoColumnsTextBox {
            width: 65%;
            display: table-cell;
            vertical-align: bottom;
        }

        .imagePhotoColumns {
            display: table;
        }

        .imagePhotoColumnsPhotoArea {
            width: 35%;
            display: table-cell;
            vertical-align: middle;
        }

        .photoColumnsCaption {
            font-size: 20px;
        }
    }

    @media only screen and (min-width: 1030px) {
        .pageLogoArea {
            position: absolute;
            top: 30px;
            left: 10px;
        }

        .pageLogoArea img {
            width: auto;
            height: 100px;
        }

        .pageTitleArea {
            position: absolute;
            top: 40px;
            left: 100px;
        }

        .pageTitleText {
            display: block;
            font-size: 18px;
            font-weight: 500;
            color: var(--main-colorText);
            margin-bottom: 0px;
        }

        .pageTitleTextE {
            display: block;
            font-size: 12px;
            font-weight: 400;
            color: var(--main-colorText);
            margin-bottom: 5px;
        }

        /**/
    }
}