/*
---------------------------------------
base
---------------------------------------
*/
body {
    min-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    body {
        min-width: auto;
    }
}

body,
*:before,
*:after {
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 16px;
    color: #3B3230;
}

input,
select,
button,
textarea,
table {
    font-family: "Hiragino Kaku Gothic Pro";
    color: #3B3230;
}

/*** fonts ***/
.halisR {
    font-family: 'halisR', sans-serif;
}

/*** foundation ***/
.main {
    opacity: 0;
    transition: opacity .4s;
}

.loaded .main {
    opacity: 1;
}

.inner {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media screen and (max-width: 375px) {
    .inner {
        width: 100%;
        padding: 0 10px;
    }
}

.dt {
    display: table;
}

.dt>* {
    display: table-cell;
    vertical-align: middle;
}

/*** img / svg ***/
.img img {
    width: 100%;
}

.svg svg {
    width: 100%;
}

.aspect {
    position: relative;
    width: 100%;
}

.aspect::before {
    content: "";
    display: block;
}

.aspect>* {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/*** flex ***/
.flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.justify--start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify--center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify--end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.items--start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.items--center {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.items--end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/*** others ***/
.font-red {
    color: #E24934;
}

.alink {
    color: #EE7C00;
    text-decoration: underline;
}

/*** トップページ動画 ***/
.pl_mv-moviearea {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 90vh;
}

.pl_mv-moviearea video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    z-index: -1;
}

@media screen and (max-width: 768px) {
    .pl_mv-moviearea {
        height: 40vh;
    }

    .pl_mv-moviearea video {
        height: 44vh;
    }
}

/* 追加CSS */
.mgn-top {
    margin-top: 20px;
}

/* 資料・刊行物タクソノミーページ */
/* メニュー*/
.p_category {
    width: 100%;
    height: 65px;
    padding: 0 55px;
    margin-bottom: 50px;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    justify-content: center;
    gap: 3%;
}

.p_category li {
    position: relative;
}

.p_category a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #26292B;
}

.p_category .active::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3B3230;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    bottom: -20px;
}

@media screen and (max-width: 375px) {
    .p_category {
        height: auto;
        padding: 0;
        border-bottom: none;
        gap: 0;
        justify-content: space-between;
    }

    .p_category li {
        position: relative;
        width: 50%;
        border-bottom: 1px solid #D0D0D0;
    }

    .p_category li:nth-child(odd)::after {
        content: "";
        position: absolute;
        display: block;
        width: 1px;
        height: 25px;
        background-color: #D0D0D0;
        right: 0;
        top: 50%;
        transform: translate3d(0, -50%, 0);
    }

    .p_category a {
        display: block;
        font-size: 14px;
        text-align: center;
        padding: 18px 0;
    }
}

.mb50 {
    margin-bottom: 50px;
}

ul.docArea>li {
    padding: 3em 2em 1em;
    border: 1px solid #CCC;
    margin-bottom: 30px;
}

ul.docArea h4.ttl01 {
    border-bottom: 5px solid #f58a32;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    padding-bottom: 10px;
    padding-left: 15px;
    margin-bottom: 30px;
}

ul.docArea li .flex-doc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.docImg {
    width: 270px;
    margin-right: 20px;
}

.docImg img {
    width: 100%;
}

.flex-doc {
    padding-left: 15px;
    padding-right: 15px;
}

.doc-text {
    width: 100%;
}

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

.doc-text ul li {
    padding: 10px 10px 5px 20px;
    font-size: 0.9rem;
    border-bottom: 1px dashed #E8E3E3;
}

.btn_pdf {
    background-color: #CA4C17;
    text-align: center;
    margin: 15px;
    width: 200px;
}

.btn_pdf a {
    display: block;
    color: #FFF;
    font-weight: bold;
    padding: 10px 5px;
    font-size: 1.03rem;
}

.btn_pdf:hover {
    opacity: .7;
    transition: .2s;
}


h3{
    font-size: 20px;
}

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

h3 {
    font-size: 18px;

}
}