@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
html {
    font-size: 62.5%;
}
body {
    font-family: 'Noto Serif JP', serif;
    color: #000000;
}
h1, h2, h3, p, ul, li, dl, dt, dd {
    margin: 0;
    padding: 0;
}
ul, li {
    list-style: none;
}
select::-ms-expand {
    display: none;
}
.select {
    position: relative;
}
select {
    width: 100%;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 1.2rem;
    font-family: 'Noto Serif JP', serif;
    border: none;
    background: rgba(210,211,212,0.5);
    padding: 2.9vw;;
}
.select:after {
    position: absolute;
    top: 25%;
    right: .5em;
    content: "\e874";
    font-family: "Linearicons-Free";
    z-index: -1;
}
a {
    -webkit-transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -ms-transition: opacity 1s ease-out;
    transition: opacity 1s ease-out;
    text-decoration: none;
    color: #000;
}
a:hover {
    opacity: 0.5;
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
}
form input {
    border: 0;
    outline: none;
    padding: 2.42vw;
    width: 100%;
    font-size: 1.6rem;
    font-family: 'Noto Serif JP', serif;
}
button {
    border: 0;
    outline: 0;
    font-family: 'Noto Serif JP', serif;
}
input::-webkit-input-placeholder {
    color: #989898;
    font-size: 1.4rem;
}
input:-moz-placeholder {
    color: #989898;
    font-size: 1.4rem;
}
input::-moz-placeholder {
    color: #989898;
    font-size: 1.4rem;
}
input:-ms-input-placeholder {
    color: #989898;
    font-size: 1.4rem;
}
.wrapper {
    min-height: 100vh;
    position: relative;
    padding-bottom: 45px;
    box-sizing: border-box;
}
.main-container form dl {
    border-bottom: 1px solid #707070;
    margin-bottom: 2.42vw;
}
.form-txt {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
}
.attention {
    font-size: 1.1rem;
    line-height: 1.6;
}
footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    text-align: center;
    margin-bottom: 3.62vw;
}
footer p {
    font-size: 1.0rem;
}
header h1 {
    text-align: center;
}
header .user {
    display: flex;
    justify-content: space-between;
    background: rgba(209, 211, 212, 0.75);
}
header .user #btn-logout {
    background: #fff;
    font-size: 1.2rem;
}
header .user p {
    font-size: 1.2rem;
    text-align: right;
}
header .content-nav {
    background: rgba(195, 158, 119, 0.25);
    font-size: 1.2rem;
}
header .content-nav .lnr {
    padding-right: 10px;
}
header .breadcrumb {
    margin-bottom: 3.62vw;
}
header .breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.1rem;
}
header .breadcrumb li::after {
    content: "\e876";
    font-family: Linearicons-Free;
    font-size: 1.0rem;
    padding: 0 1.21vw;
}
header .breadcrumb li:last-child::after {
    content: none;
}
.fix-header {
    background: #fff;
    width: 100%;
    position: fixed;
    top: -60px;
    left: 0;
    z-index: 9;
    opacity: 0;
}
.fix-header-contents {
    position: relative;
    padding: 3.62vw;
}
/*.fix-header-contents #header-title {
    position: absolute;
    top: 35%;
    left: 35%;
}*/
.fix-header-contents #header-nav {
    position: absolute;
    width: 5.31vw;
    right: 3.62vw;
    top: 35%;
}
.fix-header-contents #header-nav span {
    width: 5.31vw;
    height: 2px;
    background: #000;
    display: block;
    position: absolute;
}
.fix-header-contents #header-nav span:nth-child(2) {
    margin-top: 2.9vw;
}
.js-modal {
    display: none;
    z-index: 10;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
}
.menu__bg {
    background: #fff;
    height: 100vh;
    position: absolute;
    width: 100%;
}
.menu__content {
    position: absolute;
    width: 100%;
    padding-top: 14.49vw;
    text-align: center;
}
.menu__content .menu {
    margin-left: 2.42vw;
    margin-right: 2.42vw;
}
.menu__content .menu-title img {
    width: 120px;
    margin-bottom: 12.08vw;
}
.menu__content .js-modal-close {
    position: absolute;
    width: 5.31vw;
    height: 5.31vw;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    top: 2.9vw;
    right: 2.9vw;
}
.menu__content .js-modal-close::before {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 5.31vw;
    height: 2px;
    background: #000;
    transform: rotate(-45deg);
}
.menu__content .js-modal-close::after {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 5.31vw;
    height: 2px;
    background: #000;
    transform: rotate(45deg);
}
.search-container {
    width: 43.48vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4.83vw;
    border-bottom: 1px solid #707070;
}
.search-container .serach-form {
    display: flex;
}
.search-container .icon-search {
    border: none;
    background-color: transparent;
}
.search-container .icon-search::before {
    display: block;
    content:"\e86f";
    font-family: Linearicons-Free;
    font-size: 1.6rem;
}
.clr01 {
    background: rgba(154, 165, 202, 0.75);
}
.clr02 {
    background: rgba(250, 191, 183, 0.75);
}
.clr03 {
    background: rgba(192, 165, 177, 0.75);
}
.attention-error {
    border: 1px solid #d02e2e;
    padding: 8px 12px;
    background-color: #fff6f6;
}
.attention-error li {
    color: #d02e2e;
    font-size: 1.2rem;
}
.form-msg {
    text-align: center;
    font-size: 1.4rem;
}

/* *** PAGE || ログイン ***/
#top header {
    margin-top: 12%;
    margin-bottom: 8.4%;
}
#btn-login {
    outline: none;
    font-family: 'Noto Serif JP', serif;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #D1D3D4;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 7.2%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background-color: #fff;
}
#btn-login:hover {
    background-color: #D1D3D4;
    color: #fff;
    transition: all 0.25s ease;
}
.log-content dl {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #707070;
}
.log-content dl dt {
    width: 13%;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
}
.log-content dl dd {
    width: 87%;
    margin: 0;
    font-size: 1.6rem;
}
.log-content .form-txt {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 7.2%;
}
.login-container .attention {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 19.3%;
}

/* *** PAGE || トップページ（ログイン後） ***/
.second .main-container {
    margin-left: 2.42vw;
    margin-right: 2.42vw;
    margin-bottom: 7.25vw;
}
.main-container h2 {
    font-size: 2.0rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.06em;
    margin-bottom: 12.08vw;
    margin-top: 7.25vw;
}
.main-container .menu {
    margin-top: 12.08vw;
}
.menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.menu li, .contents-nav ul li {
    width: calc((100% - 4.84vw) / 3);
}
.menu ul li {
    position: relative;
}
.menu ul li a {
    color: #000;
}
.menu ul li a::before {
    content: '';
    display: block;
    padding-top: 100%;
}
.menu ul li div {
    position: absolute;
    width: 100%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.menu ul li div p {
    text-align: center;
    font-size: 1.1rem;
}
.menu ul li div p.fs-s {
    font-size: 1.1rem;
}
.top-msg-cotainer {
    background: rgba(209, 211, 212, 0.25);
}
.mgs-header {
    padding: 3.38vw;
}
.mgs-title {
    font-size: 1.4rem;
}
.mgs-date {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    margin-bottom: 2.42vw;
}
.msg-show {
    font-size: 1.2rem;
    line-height: 1.57;
    padding: 0 3.38vw;
}
.msg-hide {
    display: none;
    font-size: 1.3rem;
    line-height: 1.57;
    padding: 0 3.38vw 2.4vw 3.38vw;
}
.msg-hide .hide-txt {
    margin-bottom: 4.83vw;
}
button.readmore {
    font-size: 1.2rem;
    margin-top: 3.38vw;
    padding-bottom: 3.38vw;
    position: relative;
    width: 100%;
    height: 50px;
    background: rgba(209, 211, 212, 0.75);
    /*transition: 0.5s;
    -webkit-transition: 0.5s;*/
}
button.readmore::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    right: 50%;
    top: 25px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}
.on-click {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    color: transparent;
}
.btn-password {
    margin-top: 19.32vw;
    margin-bottom: 4.83vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.btn-password a {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 43%;
    display: inline-block;
    border: 1px solid #2B2356;
    padding: 2.9vw 0;
    font-size: 1.3rem;
    color: #2B2356;
}
/* *** PAGE || パスワード変更 ***/
.pw-content form {
    margin-bottom: 4.83vw;
}
.pw-content dl dt {
    font-size: 1.6rem;
    margin-top: 8.45vw;
}
.pw-content .btn-wide {
    width: 100%;
    background: #E60013;
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    padding: 3.38vw 0;
    margin-top: 2.42vw;
}
.pw-content p.attention {
    font-size: 1.2rem;
}

/* *** PAGE || 一覧 ***/
.main-container .menu .icon-new {
    position: absolute;
    left: 37%;
    border-radius: 50%;
    background-color: #ED1C24;
    color: #fff;
    letter-spacing: 0.06em;
    text-align: center;
    font-size: 1.2rem;
}
.main-container .menu-list ul {
    border-top: 1px solid #D8D8D8;
    margin-bottom: 7.25vw;
}
.main-container .menu-list li {
    border-bottom: 1px solid #D8D8D8;
    padding: 4.47vw 2.42vw;
}
.main-container .menu-list time {
    display: block;
    white-space: nowrap;
    margin-right: 3.91vw;
    margin-bottom: 3.91vw;
}
.main-container .menu-list time, .main-container .menu-list .news-ttl {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
}
.main-container .menu-list .news-item span {
    display: block;
}
.main-container .menu-list .news-head {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
}
.pager {
    text-align: center;
}
.pager a {
    display: inline-block;
    width: 8.21vw;
    height: 8.21vw;
    line-height: 8.21vw;
    margin: 0 .48vw;
    text-align: center;
    font-size: 1.2rem;
}
.pager a.current {
    background: #D8D8D8;
}
.main-container .ttl-parent {
    display: block;
    font-size: 1.6rem;
}
.menu-level-btm li {
    background: rgba(209,211,212,0.75);
}
.sort-form {
    width: 100%;
    margin-bottom: 3.62vw;
    display: flex;
    justify-content: space-between;
}
.sort-form .select {
    width: 48%;
}
/* *** PAGE || 検索結果 ***/
.search-list h2 {
    font-size: 1.6rem;
}
.search-list h2 span {
    font-size: 1.4rem;
    display: block;
}
.msg-error {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 14.49vw;
}

/* *** PAGE || 詳細 ***/
.main-container .page-nav {
    display: flex;
    justify-content: space-between;
    background: rgba(195,158,119,0.75);
    padding: 3.62vw;
    margin-top: 7.25vw;
}
.main-container .page-nav a {
    font-size: 1.6rem;
}
.contents-main ul {
    border-bottom: 1px solid #D8D8D8;
    padding-bottom: 3.62vw;
    border-top: 0 !important;
}
.contents-main ul li {
    margin-left: 4.83vw;
    margin-right: 4.83vw;
    border-bottom: 0 !important;
}
.contents-nav .nav-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 2.42rem;
}
.contents-nav ul li {
    border: 1px solid #D1D3D4;
    text-align: center;
    padding: 3.38vw 0;
}
.contents-nav ul li img {
    width: 14.98vw;
}
.contents-preview {
    margin-bottom: 9.66vw;
}
.contents-preview iframe {
    width: 100%;
    height: 85vh;
}
.contents-preview video {
    width: 100%;
}
.contents-preview .box-movie {
    margin: 3.62vw;
}
.preview-box {
    margin-bottom: 4.83vw;
}
