@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&family=Playfair+Display+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:opsz@5..1200&display=swap');
/*==============
    common
===============*/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?ch1k2p');
    src: url('../fonts/icomoon.eot?ch1k2p#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?ch1k2p') format('truetype'),
        url('../fonts/icomoon.woff?ch1k2p') format('woff'),
        url('../fonts/icomoon.svg?ch1k2p#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
[class^="icon-"],
[class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
:root {
    /* color */
    --black: #262626;
    --gray: #f2f2f2;
    --gray-dark: #7c7c7c;
    --red: #df7076;
    --main-color: #104b8f;
    --sub-color: #0a315d;
    --gradation-blue: linear-gradient(-100deg, rgb(10, 49, 93) 0%, rgb(16, 75, 143) 100%);
    --gradation-gray: linear-gradient(0deg, rgb(75, 75, 75) 0%, rgb(45, 45, 45) 100%);
    --gradation-gray2: linear-gradient(90deg, rgb(251, 251, 251) 0%, rgb(228, 228, 228) 100%);
    /* font */
    --en: "Playfair Display", serif, "Noto Serif JP";
    --jp: 'Noto Sans JP', sans-serif;
    --jpMin: 'Noto Serif JP', serif;
}
::selection {
    background: var(--main-color);
    color: white;
}
::-moz-selection {
    background: var(--main-color);
    color: white;
}
html {
    font-size: 10px;
    scroll-behavior: smooth;
}
img {
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
a img {
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
    user-drag: none;
}
.modaal-img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
body {
    font-size: 1.4rem;
    font-family: var(--jp);
    font-weight: 500;
    color: var(--black);
    animation: fadeIn 4s forwards;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.is-fixed {
  overflow: hidden;
}
a {
    text-decoration: none;
    color: initial;
    transition: 0.4s all;
    word-break: break-all;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.flex {
    display: flex;
}
.hover {
    transition: 0.4s all;
}
.hover:hover {
    opacity: 0.5;
}
.text-center {
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .wrap {
        width: 90%;
        max-width: none;
    }
}
@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
/*==============
    common
===============*/
.indent {
    text-indent: -0.8rem;
    padding-left: 0.8rem;
    display: block;
}
.cap {
    font-size: 1.2rem;
    text-indent: -1rem;
    padding-left: 1rem;
    display: block;
}
/* anime */
.anime {
    position: relative;
    overflow: hidden;
}
.anime::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--sub-color);
    z-index: 2;
    transition: .8s;
}
.anime.show::before {
    transform: translateX(100%);
}
.anime img {
    opacity: 0;
    transition: .8s;
}
.anime.show img {
    opacity: 1;
}
.fadeIn {
    transition: 1.6s opacity cubic-bezier(0.5, 1, 0.89, 1);
    opacity: 0;
}
.fadeIn.show {
    opacity: 1;
}
/* toppage */
h2 {
    font-family: var(--en);
    font-size: clamp(3.2rem, 7.6vw, 5.6rem);
    margin-bottom: 45px;
    letter-spacing: 0.05em;
    text-align: center;
}
/* subpage */
.subpage h2 {
    font-family: var(--en);
    font-size: clamp(3.2rem, 7.27vw, 5rem);
    margin-bottom: 65px;
}
section.subpage {
    margin: 160px 0 125px;
}
.subpage h3 {
    font-size: 1.8rem;
    padding-bottom: 17px;
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 19px;
    line-height: 1.8;
    font-weight: bold;
}
/* google material_icons */
.material-icons.md-18 {
    font-size: 18px;
}
.material-icons.md-20 {
    font-size: 20px;
}
.material-icons.md-24 {
    font-size: 24px;
}
.material-icons.md-36 {
    font-size: 36px;
}
.material-icons.md-48 {
    font-size: 48px;
}
/* view more */
.moreBtn a {
    margin-left: 20px;
    position: relative;
    font-size: 1.8rem;
    font-family: var(--en);
    letter-spacing: 0.025em;
    display: inline-block;
    background: var(--sub-color);
    color: #fff;
    padding: 20px 44px;
    z-index: 2;
}
.moreBtn a:before {
    content: "";
    width: 40px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.4s;
}
.moreBtn a:after {
    content: "";
    width: 0;
    height: 100%;
    background: #fff;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
.moreBtn a:hover:before {
    left: -10px;
}
.moreBtn a:hover:after {
    width: 100%;
}
/* pagination  PREV 1 2 3 NEXT*/
.pagination1 {
    margin-top: 62px;
}
#ticket-event .pagination1,
#ticket-event .pagination1,
#daily .pagination1 {
    margin-top: 14px;
}
.pagination1 content {
    font-size: initial;
    font-family: var(--en);
    margin-right: 3%;
}
.pagination1 content a {
    color: var(--black);
}
.pagination1 content:last-child {
    margin-right: 0;
}
.pagination1 a .material-icons {
    vertical-align: middle;
    line-height: 0;
}
.pagination1 a,
.pagination1 span.current {
    font-family: var(--en);
    font-size: 2.2rem;
    line-height: 0.8;
    font-feature-settings: "lnum";
}
.pagination1 span.current {
    color: var(--sub-color);
}
/* pagination  BACK/PREV */
.pagination1 {
    font-size: 20px;
}
.pagination2 {
    display: flex;
    justify-content: center;
    gap: 10%;
}
.pagination2 a {
    line-height: 22px;
    display: inherit;
}
.pagination2 a .prev {
    padding-right: 24px;
}
.pagination2 a .next {
    padding-left: 24px;
}
.pagination2 content {
    font-size: 20px;
    font-family: var(--en);
    margin-right: 3%;
}
.pagination2 content a {
    color: var(--black);
}
.pagination2 content a:hover {
    color: var(--sub-color);
}
.pagination2 content:last-child {
    margin-right: 0;
}
.pagination2 a .material-icons {
    vertical-align: sub;
}
@media screen and (max-width: 1000px) {
    section.subpage {
        margin-top: 140px;
    }
}
@media screen and (max-width: 768px) {
    h2 {
        margin-bottom: 24px;
    }
    .subpage h2 {
        margin-bottom: 32px;
    }
    .subpage h3 {
        font-size: 1.6rem;
    }
    /* pagination  PREV 1 2 3 NEXT*/
    .pagination1 content {
        font-size: 16px;
    }
    /*.pagination1 a .material-icons {
        font-size: 22px;
    }*/
    /* pagination  BACK/PREV*/
    .pagination2 content {
        font-size: 16px;
        margin-right: 5%;
    }
    .pagination2 a .material-icons {
        font-size: 22px;
    }
}
@media screen and (max-width: 768px) {
    /* more */
    .moreBtn a {
        font-size: 1.6rem;
        padding: 12px 36px;
    }
}
@media screen and (max-width: 420px) {
    section.subpage {
        margin: 110px 0 80px;
    }
}
/*==============
    header
===============*/
header .header-logo {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 10;
}
header .header-logo img {
    max-width: 180px;
}
@media screen and (max-width: 959px) {
    header .pc {
        display: none;
    }
    header .sp {
        display: block;
    }
    header .header-logo img {
        max-width: 170px;
    }
}
@media screen and (max-width: 768px) {
    header .header-logo {
        top: 20px;
        left: 5%;
    }
    header .header-logo img {
        max-width: 130px;
    }
}
header .gnav {
    position: fixed;
    top: 32px;
    right: 84px;
    z-index: 10;
}
header .gnav-list {
    display: flex;
    align-items: center;
    column-gap: 14px;
}
header .gnav-list a {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    border-radius: 100px;
    text-align: center;
    padding: 10px 42px;
    font-family: var(--en);
}
header .gnav-list a:hover {
    background: var(--sub-color);
}
header .hamburger {
    width: 30px;
    height: 12px;
    position: fixed;
    top: 45px;
    right: 30px;
    z-index: 600;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    header .hamburger {
        top: 32px;
        right: 5%;
    }
}
header .hamburger:before,
header .hamburger:after {
    content: "";
    position: absolute;
    background: var(--main-color);
    width: 100%;
    height: 2px;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
}
header .hamburger:before {
    top: 0;
}
header .hamburger:after {
    top: 10px;
}
header .nav-wrapper.open .hamburger:after,
header .nav-wrapper.open .hamburger:before {
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    top: 6px;
    background: #ccc;
}
header .nav-wrapper.open .hamburger:before {
    transform: rotate(45deg);
}
header .nav-wrapper.open .hamburger:after {
    transform: rotate(-45deg);
}
header .nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    /*background: url(../img/bg.png) no-repeat top left /100%,
        url(../img/bg.jpg) repeat-y center /100%;*/
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}
header .nav-wrapper.open .nav {
    opacity: 1.0;
    visibility: visible;
}
header .nav .wrap {
    padding: 100px 0;
    height: 100%;
    position: relative;
    overflow-y: auto;
    overscroll-behavior-y: none;
    box-sizing: border-box;
}
header .nav .wrap::after {
    content: "";
    background: url(../img/logo-mark.png) no-repeat center /contain;
    width: 48.33vw;
    max-width: 580px;
    height: 30.42vw;
    max-height: 365px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1;
    opacity: 0.05;
}
@media screen and (max-width: 959px) {
    header .nav .wrap {
        padding: 40px 0;
    }
    header .nav .wrap::-webkit-scrollbar {
        display: none;
    }
    header .nav .wrap::after {
        width: 68.33vw;
        height: 50.42vw;
        max-width: initial;
        max-height: initial;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}
header .nav-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 6%;
}
@media screen and (max-width: 959px) {
    header .nav-container {
        flex-direction: column;
        justify-content: center;
        row-gap: 8vh;
        height: auto;
        min-height: 100%;
    }
}
@media screen and (max-width: 768px) {
    header .nav-container {
        row-gap: 52px;
    }
}
header .nav-main {
    width: 36%;
}
header .nav-main ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 12%;
}
header .nav-main ul li a {
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    border-radius: 100px;
    text-align: center;
    padding: 10px 42px;
    font-family: var(--en);
}
header .nav-main ul li a:hover {
    background: var(--main-color);
    color: #fff;
}
.pc_on {
    display: block;
}
.sp_on {
    display: none;
}
@media screen and (max-width: 959px) {
    .pc_on {
        display: none !important;
    }
    .sp_on {
        display: block;
    }
    header .nav-main {
        width: 100%;
    }
    header .nav-main p {
        text-align: center;
    }
    header .nav-main img {
        max-width: 240px;
    }
    header .nav-main ul {
        margin-top: 32px;
    }
}
@media screen and (max-width: 768px) {
    header .nav-main img {
        max-width: 170px;
    }
    header .nav-main ul {
        margin-top: 20px;
    }
}
header .nav-pages {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    column-gap: 7.5%;
}
@media screen and (max-width: 959px) {
    header .nav-pages {
        flex-grow: 0;
        flex-wrap: wrap;
        row-gap: 8vh;
    }
}
@media screen and (max-width: 768px) {
    header .nav-pages {
        row-gap: 52px;
    }
}
header .nav-pages__main {
    display: grid;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 7.5%;
    grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
    .nav-pages__main {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: column;
        grid-template-rows: repeat(6, auto);
    }
}
header .nav-pages__main li {
    opacity: 0;
    transition: 1.4s all;
}
header .nav-wrapper.open .nav-pages__main li {
    opacity: 1;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(1) {
    transition-delay: 0.2s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(2) {
    transition-delay: 0.3s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(3) {
    transition-delay: 0.4s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(4) {
    transition-delay: 0.5s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(5) {
    transition-delay: 0.6s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(6) {
    transition-delay: 0.7s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(7) {
    transition-delay: 0.8s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(8) {
    transition-delay: 0.9s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(9) {
    transition-delay: 1s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(10) {
    transition-delay: 1.1s;
}
header .nav-wrapper.open .nav-pages__main li:nth-child(11) {
    transition-delay: 1.2s;
}
header .nav-pages__main li+li {
    margin-top: 5.5vh;
}
header .nav-pages__main li a {
    color: var(--black);
    font-family: var(--en);
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.0;
    position: relative;
}
@media screen and (max-width: 959px) {
    header .nav-pages__main {
        width: 100%;
        grid-auto-flow: initial;
    }
    header .nav-pages__main li {
        text-align: center;
    }
    header .nav-pages__main li+li {
        margin-top: 28px;
    }
    header .nav-pages__main li a {
        font-size: 2.0rem;
    }
}
header .nav-pages__main li a:before {
    content: "";
    width: 100%;
    height: 2px;
    background: currentColor;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.4s;
}
header .nav-pages__main li a:hover:before {
    transform: scale(1, 1);
    transform-origin: left;
}
header .nav-pages__sub {
    opacity: 0;
    transition: 1.4s all;
    transition-delay: 0.5s;
}
header .nav-wrapper.open .nav-pages__sub {
    opacity: 1.0;
}
header .nav-pages__sub li+li {
    margin-top: 5.5vh;
}
header .nav-pages__sub li a {
    color: var(--black);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.0;
}
@media screen and (max-width: 959px) {
    header .nav-pages__sub {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        gap: 24px 48px;
    }
    header .nav-pages__sub li+li {
        margin-top: 0;
    }
}
@media screen and (max-width: 768px) {
    header .nav-pages__sub {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }
    header .nav-pages__sub li a {
        font-size: 1.1rem;
    }
}
header .nav-others {
    position: absolute;
    right: 0;
    top: calc(100% + 40px);
}
header .nav-others ul {
    display: flex;
    align-items: center;
    column-gap: 24px;
}
@media screen and (max-width: 959px) {
    header .nav-others {
        position: relative;
        right: auto;
        top: auto;
    }
    header .nav-others ul li {
        flex: 1;
    }
}
/*==============
    footer
===============*/
footer {
    background: var(--gradation-blue);
    padding: 100px 0 32px;
}
@media screen and (max-width: 768px) {
    footer {
        margin-top: auto;
        /**padding: 32px 0 16px;**/
        padding: 0;
    }
}
footer .footer-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 20px;
}
@media screen and (max-width: 768px) {
    footer .footer-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 32px;
    }
}
footer .footer-logo {
    width: 25.75%;
}
@media screen and (max-width: 768px) {
    footer .footer-logo {
        width: 200px;
        display: none;
    }
}
footer .footer-nav li+li {
    margin-top: 40px;
}
footer .footer-nav a {
    color: #fff;
    font-family: var(--en);
    font-size: 1.6rem;
    letter-spacing: 0.025em;
    line-height: 1.0;
    position: relative;
}
footer .footer-nav a:before {
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: right;
    transition: transform 0.2s linear;
}
footer .footer-nav a:hover:before {
    transform: scale(1, 1);
    transform-origin: left;
}
@media screen and (max-width: 768px) {
    footer .footer-nav {
        display: none;
    }
}
footer .footer-subnav {
    display: grid;
    gap: 32px 52px;
}
@media screen and (max-width: 1100px) {
    footer .footer-subnav {
        grid-template-columns: auto;
        gap: 20px 0;
    }
}
@media screen and (max-width: 768px) {
    footer .footer-subnav {
        display: none;
    }
}
footer .footer-subnav a {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
}
footer .footer-others {
    width: 19%;
}
footer .footer-others li+li {
    margin-top: 24px;
}
@media screen and (max-width: 768px) {
    footer .footer-others {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 20px;
        display: none;
    }
    footer .footer-others li {
        flex: 1;
    }
    footer .footer-others li+li {
        margin-top: 0;
    }
}
footer .copyright {
    margin-top: 100px;
    text-align: center;
    font-size: 1.0rem;
    font-weight: 700;
    color: #fff;
}
footer .copyright small {
    font-size: 100%;
}
@media screen and (max-width: 768px) {
    footer .copyright {
        margin-top: 0px;
        padding: 12px 0;
    }
}
/*==============
    login
===============*/
#login h2 {
    text-align: center;
}
#login .container ul .login-mail {
    margin-bottom: 24px;
}
#login .container ul li .login-label {
    color: #aaa;
    margin-bottom: 8px;
}
#login .container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 5%;
}
#login .comBtn {
    background: var(--sub-color);
    color: #fff;
    position: relative;
    border: 0;
    width: 80%;
    margin: 30px auto;
    display: block;
    padding: 20px 0;
    border-radius: 5px;
    transition: 0.4s all;
}
#login .comBtn:hover {
    background: var(--main-color);
}
#login span.cmnTitle {
    text-indent: -1rem;
    display: block;
    padding-left: 1rem;
    margin-top: 8px;
    color: #aaa;
    font-size: 1.3rem;
}
#login span.cmnTitle a {
    color: #aaa;
    text-decoration: underline;
}
#login .joinLiink {
    margin-top: 62px;
    padding-top: 56px;
    border-top: 1px solid #ccc;
}
#login .joinLiink p {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 24px;
}
#login .joinLiink a.Link {
    text-align: center;
    display: block;
    border: 1px solid #7c7c7c;
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #7c7c7c;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
#login .joinLiink a.Link:hover {
    color: #ccc;
    border: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
    #login .container {
        max-width: initial;
        padding: 0;
        width: 90%;
    }
    #login .joinLiink {
        margin-top: 50px;
        padding-top: 40px;
    }
}
@media screen and (max-width: 420px) {
    #login .joinLiink p {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    #login .joinLiink a.Link {
        padding: 15px;
        width: 90%;
    }
    #login .comBtn {
        padding: 15px 0;
        width: 100%;
    }
    #login .container ul li .login-label {
        margin-bottom: 5px;
    }
}
/*==============
    my page
===============*/
#mypage .mypageWrap {
    display: flex;
    gap: 40px;
}
#mypage .mypageWrap .right {
    width: 25%;
}
#mypage .mypageWrap .left {
    width: calc(75% - 40px);
}
#mypage .memberInfo li {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
#mypage .memberInfo li:last-child {
    border-bottom: none;
}
#mypage .memberInfo li .ttl {
    width: 20%;
    font-weight: bold;
}
#mypage .memberInfo li .detail {
    width: 80%;
}
#mypage .linkWrap li {
    margin-bottom: 24px;
}
#mypage .linkWrap li:last-child {
    margin-bottom: 0;
}
#mypage .linkWrap li a {
    text-align: center;
    display: block;
    border: 1px solid #7c7c7c;
    padding: 15px;
    width: calc(100% - 30px);
    margin: 0 auto;
    font-size: 1.6rem;
    color: #7c7c7c;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
#mypage .linkWrap li a:hover {
    opacity: 0.5;
}
#mypage .topics {
    margin-top: 24px;
}
#mypage .topics li {
    margin-bottom: 24px;
}
#mypage .topics li .imgwrap {
    overflow: hidden;
}
#mypage .topics li .imgwrap img {
    transition: 0.4s all;
    width: 100%;
}
#mypage .topics li:hover .imgwrap img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
    #mypage .mypageWrap {
        display: block;
    }
    #mypage .mypageWrap .right,
    #mypage .mypageWrap .left {
        width: 100%;
    }
    #mypage .linkWrap {
        margin-top: 32px;
        display: flex;
        gap: 24px;
    }
    #mypage .linkWrap li {
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    #mypage .linkWrap {
        display: block;
    }
    #mypage .linkWrap li {
        width: 100%;
        margin-bottom: 16px;
    }
    #mypage .memberInfo li {
        display: block;
    }
    #mypage .memberInfo li .ttl {
        width: 100%;
        margin-bottom: 5px;
    }
    #mypage .memberInfo li .detail {
        width: 100%;
    }
}
/*==============
    news
===============*/
#news .category-wrap {
    display: flex;
    gap: 40px;
    justify-content: end;
}
#news .category-wrap li {
    border-bottom: 0;
    padding: 0;
}
#news .category-wrap li a {
    font-family: var(--en);
}
#news .category-wrap li.on a {
    color: var(--sub-color);
}
#news ul li {
    border-bottom: 1px solid var(--main-color);
    padding: 32px 16px;
}
#news ul li a .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: clamp(10px, calc(40px + 10 * ((100vw - 320px) / 1120)), 20px);
    margin-bottom: 12px;
}
#news ul li .day,
#staff-blog ul li .day {
    font-size: 1.4rem;
    color: #b2b2b2;
    transition: 0.4s all;
}
#news ul li .category i {
    font-family: var(--en);
    font-size: 1.6rem;
    background: var(--sub-color);
    padding: 6px 10px;
    min-width: 84px;
    text-align: center;
    color: #fff;
    display: inline-block;
    transition: 0.4s all;
}
#news ul li .ttl {
    font-size: 1.6rem;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    transition: 0.4s all;
}
#news ul li:hover .ttl,
#news ul li:hover .day {
    opacity: 0.5;
}
#news ul li:hover .category i {
    background: #aaa;
}
@media screen and (max-width: 768px) {
    #news ul li {
        padding: 20px 0;
    }
    #news .category-wrap {
        justify-content: flex-start;
        margin-bottom: 16px;
    }
}
/*==============
  news_detail
===============*/
#news_details .flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1.11vw;
}
#news_detail .day {
    font-family: var(--en);
    font-size: 1.4rem;
    margin-right: 1.88vw;
    margin-bottom: 12px;
    color: #808080;
}
#news_detail .category i {
    font-family: var(--en);
    font-size: 1.2rem;
    background: var(--main-color);
    padding: 0 15px;
    color: #fff;
    display: table;
}
#news_detail .news-body {
    line-height: 1.8;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
    #news_detail .news-body {
        margin-bottom: 56px;
        padding-bottom: 40px;
    }
    #news ul li a .flex{
        column-gap: 10px;
    }
}
/*==============
    profile
===============*/
#profile .flexbox {
    display: flex;
}
#profile .flexbox div.left {
    width: 50%;
}
#profile .flexbox div.left {
    background-image: url(../img/profile-main.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* position: sticky; */
    height: 900px;
    top: 0;
    display: grid;
    left: 0;
}
#profile .flexbox div.right {
    padding: 50px 60px 0;
    width: calc(50% - 120px);
}
#profile .flexbox div.right .name {
    font-size: clamp(3.2rem, 7.27vw, 4rem);
    font-family: var(--en);
    margin-bottom: 56px;
}
#profile .flexbox div.right .name .jp {
    font-size: 1.6rem;
    font-family: var(--jp);
    font-weight: bold;
    margin-left: 16px;
}
#profile .flexbox div.right .date-wrap {
    margin-bottom: 50px;
}
#profile .flexbox div.right .date-wrap dl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 32px;
}
#profile .flexbox div.right .date-wrap dl dt {
    width: 23.33%;
    font-size: 1.6rem;
    font-weight: bold;
}
#profile .flexbox div.right .date-wrap dl dd {
    width: calc(76.67% - 32px);
}
#profile .flexbox div.right .work h3 {
    padding-bottom: 5px;
    margin-bottom: 20px;
    font-family: var(--en);
    font-size: 1.8rem;
    font-weight: initial;
}
#profile .flexbox div.right .work .container {
    margin-bottom: 56px;
}
#profile .flexbox div.right .work .container h5 {
    margin-bottom: 16px;
    font-size: 1.4rem;
    background-color: var(--gray);
    padding: 12px 16px;
    font-weight: bold;
}
#profile .flexbox div.right .work .container h6 {
    margin-bottom: 24px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 20px;
    margin-bottom: 16px;
}
#profile .flexbox div.right .work .container dl {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 0 20px;
}
#profile .flexbox div.right .work .container dl.border {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 32px;
    padding-bottom: 32px;
}
#profile .flexbox div.right .work .container dl dt {
    width: 20%;
}
#profile .flexbox div.right .work .container dl dd {
    width: calc(80% - 24px);
    line-height: 1.5;
}
#profile .br-1000 {
    display: none;
}
@media screen and (max-width: 1000px) {
    #profile .br-1000 {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    #profile .flexbox {
        display: block;
    }
    #profile .flexbox div.left {
        width: 100%;
        position: initial;
        height: 670px;
    }
    #profile .flexbox div.right {
        width: 100%;
        padding: 50px 0 0;
    }
}
@media screen and (max-width: 450px) {
    #profile .flexbox div.right .name {
        margin-bottom: 24px;
    }
    #profile .flexbox div.right .date-wrap dl {
        gap: 8px 32px;
    }
    #profile .flexbox div.right .date-wrap dl dt {
        font-size: 1.4rem;
    }
    #profile .flexbox div.right .date-wrap {
        margin-bottom: 50px;
    }
}
/*==============
    gallery
===============*/
#gallery ul {
    display: flex;
}
#gallery ul li {
    background-color: #808080;
    position: relative;
}
#gallery ul li::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, #000000 90%);
    position: absolute;
    top: 0;
    left: 0;
}
#gallery ul li a .imgWrap {
    overflow: hidden;
}
#gallery ul li a .imgWrap img {
    display: block;
    -webkit-filter: grayscale(1);
    filter: gray;
    filter: grayscale(1);
    transition: 0.8s all;
    opacity: 0.5;
}
#gallery ul li:hover a .imgWrap img {
    -webkit-filter: grayscale(0);
    filter: none;
    filter: grayscale(0);
    opacity: 0.8;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#gallery ul li h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-size: clamp(2.4rem, 5.7vw, 3.6rem);
    font-family: var(--en);
    color: #fff;
    letter-spacing: 0.075em;
    border-bottom: 0;
}
/* more */
#gallery .moreBtn {
    position: absolute;
    right: 32px;
    bottom: 40px;
}
#gallery ul li:hover .moreBtn a {
    opacity: 0.5;
}
@media screen and (max-width: 1200px) {
    #gallery ul {
        display: block;
    }
}
@media screen and (max-width: 420px) {
    /* more */
    #gallery .moreBtn {
        position: absolute;
        right: 15px;
        bottom: 15px;
    }
}
/*==============
    about
===============*/
#about .logo {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 100px;
}
#about .boxWrap {
    margin-bottom: 48px;
}
#about .join-btn a {
    text-align: center;
    display: block;
    padding: 15px;
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    background: var(--main-color);
    color: #fff;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
#about .join-btn a:hover {
    opacity: 0.5;
}
/*==============
    joinus
===============*/
form [type="text"],
form [type="email"],
form [type="password"],
form [type="tel"],
form [type="date"],
form textarea {
    size: initial !important;
    width: 100%;
    padding: 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.middle {
    width: 80% !important;
}
.half-width {
    width: 50% !important;
}
.entry-message {
    text-align: right;
    margin-bottom: 24px;
}
.entry-message.text-center {
    text-align: center;
}
button {
    background: #bfbfbf;
    border: none;
    color: #fff;
    padding: 10px;
    display: inline-block;
    border-radius: 4px;
    margin-left: 10px;
    width: 130px;
}
#joinus.subpage h2 {
    text-align: center;
}
input[type="submit"] {
    background: var(--main-color);
    color: #fff;
    padding: 15px 0;
    width: 80%;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
input[type="submit"]:hover {
    opacity: 0.5;
}
.entry-submit-section.text-center {
    text-align: center;
    margin-top: 24px;
}
#joinus .entry-cmn-status-msg {
    padding: 15px 0;
    color: var(--red) !important;
    line-height: 2;
}
#joinus .entry-status-msg {
    padding: 15px 0;
    color: var(--red) !important;
}
span.reference {
    color: var(--red);
}
#joinus form ul li {
    display: flex;
    margin-bottom: 24px;
}
#joinus form ul li .myTitle {
    width: 200px;
}
#joinus .detail ul {
    display: flex;
    gap: 24px;
}
#joinus .entry table {
    margin: 10px auto;
    width: 100%;
}
#joinus .entry table th {
    text-align: left;
    width: 20%;
    padding-bottom: 24px;
    vertical-align: top;
}
#joinus .entry table td {
    text-align: left;
    padding: 0;
    vertical-align: top;
    padding-bottom: 24px;
}
#joinus .text-muted {
    color: ver(--gray) !important;
}
#joinus table label {
    display: inline-block;
    margin-bottom: .5rem;
}
#joinus table input {
    font-size: 1.4rem;
}
#joinus table input[type="checkbox"],
#joinus table input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
#joinus table input[type="radio"] {
    height: 25px;
    vertical-align: middle;
    margin: auto 5px;
}
#joinus .entry table td ul {
    display: flex;
    gap: 24px;
}
#joinus .ums-submit-section {
    margin-top: 24px;
}
#joinus .submit-s {
    width: 15% !important;
    background: #ccc !important;
}
#joinus .ums-message p {
    display: inline-block;
}
#joinus .ums-top-link {
    width: fit-content;
    margin: 5% auto;
}
#joinus .ums-top-link a.btn {
    background: var(--main-color);
    color: #fff;
    padding: 12px 70px;
    border: none;
    cursor: pointer;
}
#joinus form ul.halfList li {
    margin-bottom: 0 !important;
}
#joinus form ul li .detail.half {
    width: calc(70% - 200px);
}
#joinus form ul li .detail .attention {
    font-size: 1.2rem;
    margin-top: 5px;
}
#joinus form ul li .detail.flex {
    display: flex;
    gap: 10px;
}
.cmn-status-msg {
    color: #df0000;
    font-size: 1.2rem;
    margin-bottom: 20px;
}
#joinus .btn {
    background: #ccc;
    color: #fff;
}
#joinus .btn.agree-btn {
    background: #ccc;
    pointer-events: none;
    color: #fff;
}
#joinus .btn.agree-btn.btn-on {
    background: var(--main-color) !important;
    pointer-events: auto;
}
@media screen and (max-width: 1200px) {
    form#entry-form,
    form#ums-form {
        width: 90%;
    }
}
@media screen and (max-width: 768px) {
    form#entry-form {
        width: 100%;
    }
    #joinus .entry table th {
        width: 30%;
    }
    input[type="submit"] {
        width: 80%;
        padding: 16px 0;
    }
    .half {
        width: 80% !important;
    }
    #joinus .ums-top-link {
        width: fit-content;
        margin: 15% auto;
    }
}
@media screen and (max-width: 420px) {
    input[type="submit"] {
        width: 100%;
    }
}
/*==============
    contact
===============*/
#contact .form-wrap,
#joinus .form-wrap {
    width: 70%;
    margin: 0 auto;
}
#contact.subpage h2 {
    text-align: center;
}
#contact form ul li,
#joinus form ul li {
    display: flex;
    margin-bottom: 24px
}
#contact form ul li.block,
#joinus form ul li.block {
    display: block;
}
#contact form ul li .myTitle,
#joinus form ul li .myTitle {
    width: 200px;
    font-weight: bold;
}
#contact form ul li .myTitle.wide,
#joinus form ul li .myTitle.wide {
    width: 100%;
}
#contact form ul li .detail,
#joinus form ul li .detail {
    width: calc(100% - 200px);
}
form select {
    size: initial !important;
    width: 100%;
    padding: 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.3rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    font-weight: initial;
    color: var(--black);
    font-family: var(--jp);
}
.insetBox {
    width: 100%;
    height: 200px;
    overflow: scroll;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
}
.insetBox #pp .boxWrap h3,
.insetBox #ma .boxWrap h3 {
    font-size: 1.4rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.insetBox #pp .boxWrap,
.insetBox #ma .boxWrap {
    margin-bottom: 32px;
}
.insetBox section {
    margin: 30px;
}
.insetBox section h2 {
    display: none;
}
input[type="submit"] {
    margin-top: 16px;
}
.wpcf7c-elm-step2.text-center {
    padding-top: 56px;
}
::placeholder {
    color: #aaa;
    font-size: 1.3rem;
}
.custom-select {
    font-size: 1.4rem;
    color: #aaa;
}
/* conf */
.subpage.conf form ul {
    margin-bottom: clamp(40px, calc(40px + 40 * ((100vw - 320px) / 1120)), 80px);
}
.subpage.conf .submit-wrap {
    display: flex;
    justify-content: space-between;
}
.subpage.conf .submit-wrap input {
    width: calc(50% - 24px);
}
input.back {
    background: #9f9f9f;
}
/* comp */
.subpage.comp .ums-message p {
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 80px;
    display: block !important;
}
.subpage.comp .topBack {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 15px !important;
}
.subpage.comp .topBack .btn {
    text-align: center;
    display: block;
    border: 1px solid var(--sub-color);
    padding: 15px 0;
    width: 80%;
    margin: 0 auto;
    font-size: 1.6rem;
    color: var(--sub-color);
    border-radius: 5px;
    transition: 0.4s all;
    font-weight: bold;
}
.subpage.comp .topBack .btn:hover {
    opacity: 0.5;
}
@media screen and (max-width: 1200px) {
    #contact .form-wrap,
    #joinus .form-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    #contact form ul li,
    #joinus form ul li {
        display: block;
    }
    #contact form ul li .myTitle,
    #contact form ul li .detail,
    #joinus form ul li .myTitle,
    #joinus form ul li .detail {
        width: 100%;
    }
    #contact form ul li .myTitle,
    #joinus form ul li .myTitle {
        margin-bottom: 8px;
    }
}
@media screen and (max-width: 420px) {
    /* conf */
    .subpage.conf .submit-wrap {
        display: block;
    }
    .subpage.conf .submit-wrap input {
        width: 100%;
    }
    /* comp */
    .subpage.comp .ums-message p {
        font-size: 1.6rem;
    }
    .subpage.comp .topBack .btn {
        width: 100%;
    }
}
/*==============
    notfound
===============*/
#notfound h2 {
    text-align: center;
}
#notfound h3 {
    font-size: 2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 0;
}
#notfound .center {
    text-align: center;
}
#notfound .center a {
    font-size: 1.6rem;
    font-family: var(--en);
    padding: 15px 0;
    border: 1px solid var(--black);
    width: 100%;
    display: block;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 5px;
    transition: 0.4s all;
}
#notfound .center a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 420px) {
    #notfound h3 {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
    #notfound .center a {
        padding: 16px 0;
        max-width: initial;
        width: 100%;
    }
}
/*==============
    asct
===============*/
#asct .container {
    width: 100%;
}
#asct .container dl {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
#asct .container dl:last-child {
    border-bottom: none;
}
#asct .container dl dt {
    width: 10%;
    font-weight: bold;
}
#asct .container dl dd {
    width: 80%;
}
@media screen and (max-width: 768px) {
    #asct .container dl dt {
        width: 20%;
    }
}
@media screen and (max-width: 420px) {
    #asct .container dl {
        display: block;
    }
    #asct .container dl dt {
        width: 100%;
        margin-bottom: 5px;
    }
    #asct .container dl dd {
        width: 100%;
    }
}
/*==============
    pp
===============*/
#pp .boxWrap,
#ma .boxWrap,
#siteaccess .boxWrap {
    margin-bottom: 56px;
    line-height: 1.8;
}
#pp .boxWrap h3,
#ma .boxWrap h3,
#siteaccess .boxWrap h3 {
    font-size: 1.8rem;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--main-color);
    margin-bottom: 22px;
}
#pp .boxWrap .indent,
#ma .boxWrap .indent,
#siteaccess .boxWrap .indent {
    text-indent: -1.8rem;
    padding-left: 1.8rem;
    display: block;
}
#pp .boxWrap a,
#ma .boxWrap a,
#siteaccess .boxWrap a {
    text-decoration: underline;
}
@media screen and (max-width: 420px) {
    #pp .boxWrap h3,
    #ma .boxWrap h3,
    #siteaccess .boxWrap h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    #pp .boxWrap,
    #ma .boxWrap,
    #siteaccess .boxWrap {
        margin-bottom: 32px;
    }
}
/*==============
    ma
===============*/
#pp .boxWrap h4,
#ma .boxWrap h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}
#ma .boxWrap .indent2 {
    text-indent: -1.8rem;
    padding-left: 4rem;
    display: block;
}
@media screen and (max-width: 420px) {
    #pp .boxWrap h4,
    #ma .boxWrap h4 {
        font-size: 1.4rem;
    }
}
/*==============
    faq
===============*/
.faqtitle {
    pointer-events: none;
}
#faq a {
    color: var(--sub-color);
}
#faq .wrapper li {
    margin-bottom: 56px;
}
#faq .wrapper li:last-child {
    margin-bottom: 0;
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .faqtitle {
        pointer-events: all;
    }
    .toggle {
        display: none;
    }
    #faq.subpage h3 {
        font-size: 1.4rem;
        border-bottom: none;
        text-indent: -2.8rem;
        padding-left: 2.8rem;
        background: var(--gray);
        padding: 16px;
        padding-left: calc(2.8rem + 16px);
    }
    .toggle li {
        padding: 0 16px;
        font-size: 1.4rem;
    }
    #faq .wrapper li {
        margin-bottom: 24px;
    }
}
/*==============
    wallpaper
===============*/
#wallpaper .imgWrap {
    width: 70%;
    margin: 0 auto;
}
#wallpaper .link {
    display: flex;
    gap: 24px;
}
#wallpaper .link li a {
    background: var(--sub-color);
    color: #fff;
    display: block;
    padding: 20px 0;
    text-align: center;
    border-radius: 5px;
    transition: 0.4s all;
}
#wallpaper .link li a:hover {
    background: var(--main-color);
}
#wallpaper .link li {
    width: calc(100%/3);
}
@media screen and (max-width: 768px) {
    #wallpaper .link {
        display: block;
    }
    #wallpaper .link li {
        width: 90%;
        margin: 0 auto 20px;
    }
    #wallpaper .imgWrap {
        width: 90%;
        margin-top: 32px;
    }
}
@media screen and (max-width: 420px) {
    #wallpaper .link li a {
        padding: 18px 0;
    }
    #wallpaper .imgWrap {
        margin-top: 56px;
    }
}
/*==============
    comingsoon
===============*/
.comingsoonwrap {
    padding: 80px 0;
}
.comingsoon {
    font-size: 4rem;
    font-family: var(--en);
    color: #ccc;
    text-align: center;
    margin-bottom: 2rem;
}
.comingsoonSub {
    font-size: 1.8rem;
    font-family: var(--jp);
    color: #ccc;
    text-align: center;
}
@media screen and (max-width: 420px) {
    .comingsoon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .comingsoonSub {
        font-size: 1.6rem;
    }
}
/*  26.05.28  */
.select_nav select option {
    font-family: var(--en);
}
a {
    -webkit-tap-highlight-color: transparent;
}
/* 251007 add */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}
#popup-overlay.off {
    display: none !important;
}
.popup-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}
.popup-no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}
#popup-content {
    background-color: white;
    width: 100%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#popup-content .inner {
    padding: 10px;
}
#popup-content .ttl {
    font-size: 16px;
    margin-bottom: 16px;
}
#close-button {
    position: absolute;
    top: 0px;
    right: -40px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.popup-image-area img {
    max-width: 100%;
    height: auto;
}
.link-button {
    display: inline-block;
    padding: 20px;
    background-color: var(--color1);
    color: white;
    text-decoration: none;
    text-align: center;
    width: calc(100% - 40px);
    transition: 0.4s all;
    font-family: var(--jpMin);
    border: 1px solid var(--color1);
}
.link-button:hover {
    background: #fff;
    color: var(--color1);
}
.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}
/*  26.06.04  */
header .nav .wrap::after {
    position: fixed;
}