@charset "utf-8";

/* 
base style
*/

html * {
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body * {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    box-sizing: border-box;
}

label, input, textarea, button, select {
    cursor: pointer;
}
button {
    border: 0;
}

.head {
    display: block;
    width: 100vw;
    height: 50%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.author-style {
    position: absolute;
    z-index: 100;
    width: 100vw;
    height: 70vh;
    content: 0;
}
.author-h1 {
    position: absolute;
    writing-mode: vertical-rl;
    font-size: 50px;
    top: 20px;
    left: 40px;
    font-style: normal;
    color: white;
    text-shadow: red 3px 3px;
    z-index: 100;
    list-style: none;
}
.author-content {
    position: absolute;
    bottom: 50px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
    
}
.author {
    color: gray;
    list-style: none;
    word-spacing: 1rem;
    z-index: 100;
    font-size: 15px;
}
.author > img {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}
.author2 {
    font-size: 15px;
    color: gray;
    list-style: none;
    word-spacing: 1rem;
    z-index: 100;
}
.author2 > img {
    margin-right: 10px;
    height: 20px;
    width: 20px;
}
.hero {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
}
.hero > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 10;

}

/* title */

.title {
    background-color: #000;
    position: relative;
    width: 100vw;
    z-index: 1000;
}
.title-strong {
    padding: 20px;
    display: block;
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin: 20px 0;
    z-index: 1;
}
.title-particles {
    position: absolute;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    z-index: 10;
}
.note {
    display: block;
    text-align: center;
    margin: 20px 20px;
    background-color: pink;
    padding: 15px;
    border-radius: 10px;
    z-index: 1000;
}
.part {
    color: red;
    margin-right: 1rem;
}
.chapter {
    color: green;
    margin-right: 1rem;
}
.node {
    color: blue;
    margin-right: 1rem;
}


.mainer {
    width: 100vw;
    overflow: hidden;
}


/* .main-navitems */

.main-nav {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.main-navlist {
    background-color: #f1f3f4;
    width: 100vw;
    margin: 0 10px 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.main-navitem > a {
    font-size: 0.7rem;
    display: block;
    padding: 10px;
    color: green;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
    cursor: pointer;
}
.main-navitem > a:hover {
    border-bottom: 2px solid red;
    font-size: 0.8rem;
    cursor: pointer;
}
.main-navitem > a:active {
    background-color: pink;
    cursor: pointer;
}
/*
audio
*/

.audioBox {
    position: fixed;
    bottom: 0;
    left: 2px;
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    z-index: 2000;
}
.audio {
    padding: 5px;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    cursor: pointer;
}
.acc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
.changeButton {
    margin: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 15px 15px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    box-shadow: 1px 1px 0 #bbb;
    transition: box-shadow .25s;
    cursor: pointer;
    background-color: #f1f3f4;
}
.changeButton:hover {
    box-shadow: 0 0 0 #bbb;
    cursor: pointer;
}
.changeButtonActive {
    background-color: transparent;
    box-shadow: none;
}
.changeButtonIn {
    font-weight: 900;
    white-space: nowrap;
    position: relative;
    align-self: center;
    justify-self: center;
}
.changeButtonMove { 
    animation-name: arrow;
    animation-duration: 2s;
    color: red;
}
@keyframes arrow {
    0%{
        left:0px;
    }
    100%{
        left:10px;
    }
}
.changeButtonMoveBack { 
    animation-name: arrowBack;
    animation-duration: 2s;
    color: red;
}
@keyframes arrowBack {
    0%{
        right:0px;
    }
    100%{
        right:10px;
    }
}
.audioNumber {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 10px;
    font-weight: 900;
    white-space: nowrap;
}
.audioChapter {
    text-shadow:  0px 0px 3px #fff;
}
.audioNumbercolor {
    color: red;
}
.loadingUi {
    display: block;
    width: 200px;
    height: 20px;
    opacity: 0;
}
@keyframes rotation {
    0%,100% {
        opacity: 1;
    }
    50%{ 
        opacity: 0;
    }
}
.loadingUiAi {
    color: red;
    animation: 3s linear infinite rotation;
}
.changeButtonLoop {
    margin: 0px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 15px;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    box-shadow: 1px 1px 0 #bbb;
    transition: box-shadow .25s;
    cursor: pointer;
    background-color: #f1f3f4;
}
.changeButtonLoop:hover {
    box-shadow: 0 0 0 #bbb;
    cursor: pointer;
}
.changeButtonLoop:active {
    background-color: pink;
    cursor: pointer;
}
.changeButtonInLoop {
    display: block;
    width: 15px;
    height: 15px;
    align-self: center;
    justify-self: center;
}
.changeButtonInLoopAnimation {
    animation: cbila 3s linear infinite;
}
@keyframes cbila {
    0% {transform: rotate(360deg);}
    100% {transform: rotate(0deg);}
}
.toggleButton {
    position: fixed;
    right: 12px;
    bottom: 45px;
    display: inline-block;
    width: 30px;
    height: 30px;
    z-index: 2000;
    cursor: pointer;
}
.toggleButton span {
    position: absolute;
    left: 0;
    display: block;
    width: 30px;
    height: 4px;
    background-color: red;
    transition: all 0.5s ease;
    border-radius: 4px;
}
.toggleButton span:nth-child(1) {
    top: 4px;
}
.toggleButton span:nth-child(2) {
    top: 13px;
}
.toggleButton span:nth-child(3) {
    bottom: 4px;
}
.sp1Move {
    transform: translateY(9px) rotate(-315deg);
}
.sp2Move {
    opacity: 0;
}
.sp3Move {   
    transform: translateY(-9px) rotate(315deg);
}
@media (orientation:portrait){

    .toggleButtonIn {
        display: inline-block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 30px;
        right: 20px;
        z-index: 1300;
        cursor: pointer;
    }
    .toggleButtonIn span {
        display: block;
        width: 20px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
    }
    .toggleButtonIn span:nth-child(1) {
        position: absolute;
        inset: 0;
        margin: auto;
        transform: rotate(45deg);

    }
    .toggleButtonIn span:nth-child(2) {
        position: absolute;
        inset: 0;
        margin: auto;
        transform:  rotate(-45deg);
    }
    .mask {
        display: none;
        transition:  all 0.5s;
        cursor: pointer;
        z-index: 1200;
    }
    .navBord {
        position: fixed;
        display: none;
        inset: 0;
        margin: auto;
        width: fit-content;
        height: fit-content;
        max-width: 90vw;
        background-color: rgba(255,255,255,0.2);
        border: 3px solid white;
        box-shadow: 0 0 70px 10px #ffffff;
        z-index: 1300;
        border-radius: 30px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        white-space: nowrap;
    }
    .navBord a {
        text-decoration: none;
    }    
    .navBord > ul {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        width: fit-content;
        height: fit-content;
        list-style: none;
        max-width: 90vw;
    }
    .nav1 {
        color: #ffffff;
        opacity: 1;
        font-size: 1.5rem;
        text-align: center;
        text-shadow: 3px 3px 3px #ffffff;
        position: absolute;
        top: 30px;
    }
    .nav2 {
        opacity: 1;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 30px 40px 10px 40px;
    }
    .nav2 > div:nth-child(1) {
        color: #ffffff;
        font-weight: bold;
        font-size: clamp(0.75rem,1.1rem,1.5rem);
        position: relative;
        left: 3px;
    }
    .on {
        font-size: clamp(0.75rem,1.1rem,1.5rem);
        font-weight: bold;
        cursor: pointer;
        color: red;
        margin-left: 30px;
        position: relative;
        top: 2px;
    }
    .nav3 {
        opacity: 1;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 10px 40px 40px 40px;
    }
    .nav3 > div:nth-child(1) {
        color: #ffffff;
        font-weight: bold;
        font-size: clamp(0.75rem,1.1rem,1.5rem);
    }
    .off {
        font-size: clamp(0.75rem,1.1rem,1.5rem);
        font-weight: bold;
        cursor: pointer;
        color: red;
        margin-left: 30px;
        position: relative;
        top: 2px;
        left: 2px;
    }
    .nav4 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 90px 60px 10px 60px;
        cursor: pointer;
    }
    .nav4 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.75rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav4 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav4 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav4 > div:nth-child(4) {
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
    }
    .nav5 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 10px 60px;
        cursor: pointer;
    }
    .nav5 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.75rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav5 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav5 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav5 > div:nth-child(4) {
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
    }
    .nav6 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 10px 60px;
        cursor: pointer;
    }
    .nav6 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.75rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav6 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav6 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav6 > div:nth-child(4) {
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
    }
    .nav7 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 10px 60px;
        cursor: pointer;
    }
    .nav7 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.75rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav7 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav7 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav7 > div:nth-child(4) {
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
    }
    .nav8 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 10px 60px;
        cursor: pointer;
    }
    .nav8 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.75rem;
        color: #ffffff;
    }
    .nav8 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
    }
    .nav8 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        margin-right: 20px;
    }
    .nav8 > div:nth-child(4) {
        font-weight: bold;
        font-size: clamp(0.75rem,1rem,1.5rem);
        color: skyblue;
        position: relative;
        top: 2px;
        right: 3px;
    }
    .arrows {
        animation: arrows 1s ease 0s 1 normal;
        -webkit-animation: arrows 1s ease 0s 1 normal;
    }
    @keyframes arrows {
        0% {left: 5px;
        color: skyblue;}
        100% {left: 10px;
        color: red;}
    }
    @-webkit-keyframes arrows {
        0% {left: 5px;
            color: skyblue;}
        100% {left: 10px;
            color: red;}
    }
    .arrow8 {
        animation: arrow8 1s ease 0s 1 normal;
        -webkit-animation: arrow8 1s ease 0s 1 normal;
    }
    @keyframes arrow8 {
        0% {right: 3px;
            color: skyblue;}
        100% {right: -7px;
            color: red;}
    }
    @-webkit-keyframes arrows {
        0% {right: 3px;
            color: skyblue;}
        100% {left: 7px;
            color: red;}
    }
    .linksToggle {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 30px;
        z-index: 2000;
        cursor: pointer;
        margin-bottom: 15px;
    }
    .linksToggleButton span {
        position: absolute;
        left: 0;
        display: block;
        width: 30px;
        height: 4px;
        background-color: #fff;
        transition: all 0.5s ease;
        border-radius: 4px;
    }
    .linksToggleButton span:nth-child(1) {
        top: 4px;
    }
    .linksToggleButton span:nth-child(2) {
        top: 13px;
    }
    .linksToggleButton span:nth-child(3) {
        bottom: 4px;
    }
    .sp11Move {
        transform: translateY(9px) translateX(9px) rotate(-315deg);
    }
    .sp22Move {
        opacity: 0;
    }
    .sp33Move {
        transform: translateY(-9px) translateX(-9px) rotate(315deg);
    }
    .open {
        animation: fadeIn 2s ease 0s 1 normal forwards;
        -webkit-animation: fadeIn 2s ease 0s 1 normal forwards;
    }
    @keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    @-webkit-keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    .mask {
        display: none;
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        z-index: 1100;
        cursor: pointer;
    }
    .maskOpen {
        animation: fadeOut 2s ease 0s 1 normal forwards;
        -webkit-animation: fadeOut 2s ease 0s 1 normal forwards;
    }
    @keyframes fadeOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    @-webkit-keyframes fadeOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    .linksmask {
        display: none;
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        z-index: 1500;
        cursor: pointer;
    }
    .linksmaskOpen {
        animation: maskOut 2s ease 0s 1 normal forwards;
        -webkit-animation: maskOut 2s ease 0s 1 normal forwards;
    }
    @keyframes maskOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    @-webkit-keyframes maskOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    .navLink {
        display: inline-block;
        width: fit-content;
        height: fit-content;
    }
    .navLinks {
        position: fixed;
        display: none;
        inset: 0;
        margin: 50px auto;
        width: fit-content;
        height: fit-content;
        background-color: rgba(135,206,235,0.2);
        border: 3px solid #fff;
        box-shadow: 0 0 40px 5px skyblue;
        z-index: 2000;
        border-radius: 30px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        white-space: nowrap;
    }
    .navLinks a {
        display: inline-block;
        text-decoration: none;
    }
    .navLinks > div:nth-child(1) {
        text-align: center;
        font-size: 2rem;
        color: #fff;
        font-weight: bold;
        text-shadow: 3px 3px 3px #ffffff;
        margin-top: 30px;
    }
    .navLinks img {
        display: inline-block;
        width: 25px;
        height: 25px;
        margin: 0 10px;
    }
    .navLinks img:active {
        border-bottom: 4px solid skyblue;
        padding-bottom: 3px;
        opacity: 0.5;
    }
    .navLinkBox {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px 30px 50px 30px;
        max-width: 70vw;
    }
    .navLinkBox > div:nth-child(1){
        margin: 20px 0;
    }
    .navLinkBox > div:nth-child(2){
        margin: 20px 0;
    }
    .navLinkBox > div:nth-child(3){
        margin: 20px 0;
    }
    .navLinkBox > div:nth-child(4){
        margin: 20px 0;
    }
    .linksButtonIn {
        display: block;
        width: 30px;
        height: 30px;
        margin: 0 auto 20px auto;
        z-index: 1300;
        cursor: pointer;
    }
    .linksButtonIn span {
        display: block;
        width: 30px;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
    }
    .linksButtonIn span:nth-child(1) {
        position: absolute;
        transform: rotate(45deg);
    }
    .linksButtonIn span:nth-child(2) {
        position: absolute;
        transform:  rotate(-45deg);
    }
    .navLinksOpen {
        animation: linksOpen 2s ease 0s 1 normal forwards;
        -webkit-animation: linksOpen 2s ease 0s 1 normal forwards;
    }
    @keyframes linksOpen {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    @-webkit-keyframes linksOpen {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
}
@media (orientation:landscape){

    .toggleButtonIn {
        display: inline-block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 5px;
        right: 10px;
        z-index: 1300;
        cursor: pointer;
    }
    .toggleButtonIn span {
        display: block;
        width: 20px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
    }
    .toggleButtonIn span:nth-child(1) {
        position: absolute;
        inset: 0;
        margin: auto;
        transform: rotate(45deg);

    }
    .toggleButtonIn span:nth-child(2) {
        position: absolute;
        inset: 0;
        margin: auto;
        transform:  rotate(-45deg);
    }
    .mask {
        display: none;
        transition:  all 0.5s;
        cursor: pointer;
        z-index: 1200;
    }
    .navBord {
        position: fixed;
        display: none;
        inset: 0;
        margin: 5px auto;
        width: fit-content;
        height: fit-content;
        max-width: 90vw;
        background-color: rgba(255,255,255,0.2);
        border: 3px solid white;
        box-shadow: 0 0 70px 10px #ffffff;
        z-index: 1300;
        border-radius: 30px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        white-space: nowrap;
    }
    .navBord a {
        text-decoration: none;
    }    
    .navBord > ul {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        width: fit-content;
        height: fit-content;
        list-style: none;
    }
    .nav1 {
        color: #ffffff;
        opacity: 1;
        font-size: 1rem;
        text-align: center;
        text-shadow: 3px 3px 3px #ffffff;
        position: absolute;
        top: 10px;
        display: none;
    }
    .nav2 {
        opacity: 1;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 20px 40px 0px 40px;
        position: relative;
        right: 7px;
    }
    .nav2 > div:nth-child(1) {
        color: #ffffff;
        font-weight: bold;
        font-size: 0.75rem;
        position: relative;
        left: 3px;
    }
    .on {
        font-size: 0.75rem;
        font-weight: bold;
        cursor: pointer;
        color: red;
        margin-left: 30px;
        position: relative;
        top: 2px;
    }
    .nav3 {
        opacity: 1;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 2px 40px 10px 40px;
        position: relative;
        right: 5px;
    }
    .nav3 > div:nth-child(1) {
        color: #ffffff;
        font-weight: bold;
        font-size: 0.75rem;
    }
    .off {
        font-size: 0.75rem;
        font-weight: bold;
        cursor: pointer;
        color: red;
        margin-left: 30px;
        position: relative;
        top: 2px;
    }
    .nav4 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 5px 60px 0px 60px;
        cursor: pointer;
    }
    .nav4 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.5rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav4 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav4 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: 0.75rem;
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav4 > div:nth-child(4) {
        font-weight: bold;
        font-size: 0.75rem;
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
        transition: 1s;
        display: inline-block;
    }
    .nav5 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 0px 60px;
        cursor: pointer;
    }
    .nav5 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.5rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav5 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav5 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: 0.75rem;
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav5 > div:nth-child(4) {
        font-weight: bold;
        font-size: 0.75rem;
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
    }
    .nav6 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 0px 60px;
        cursor: pointer;
    }
    .nav6 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.5rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav6 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav6 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: 0.75rem;
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav6 > div:nth-child(4) {
        font-weight: bold;
        font-size: 0.75rem;
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
    }
    .nav7 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 0px 60px;
        cursor: pointer;
    }
    .nav7 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.5rem;
        color: #ffffff;
        position: relative;
        right: 7px;
    }
    .nav7 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
        position: relative;
        right: 7px;
    }
    .nav7 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: 0.75rem;
        margin-right: 20px;
        position: relative;
        right: 7px;
    }
    .nav7 > div:nth-child(4) {
        font-weight: bold;
        font-size: 0.75rem;
        color: skyblue;
        position: relative;
        top: 2px;
        left: 5px;
    }
    .nav8 {
        opacity: 1;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        margin: 0px 60px;
        cursor: pointer;
    }
    .nav8 > div:nth-child(1) {
        font-weight: bold;
        font-size: 0.5rem;
        color: #ffffff;
    }
    .nav8 > div:nth-child(2) {
        color: red;
        margin: 0 5px;
    }
    .nav8 > div:nth-child(3) {
        color: #ffffff;
        font-weight: bold;
        font-size: 0.75rem;
        margin-right: 20px;
    }
    .nav8 > div:nth-child(4) {
        font-weight: bold;
        font-size: 0.75rem;
        color: skyblue;
        position: relative;
        top: 2px;
        right: 1px;
    }
    .arrows {
        animation: arrows 1s ease 0s 1 normal;
        -webkit-animation: arrows 1s ease 0s 1 normal;
    }
    @keyframes arrows {
        0% {left: 5px;
        color: skyblue;}
        100% {left: 10px;
        color: red;}
    }
    @-webkit-keyframes arrows {
        0% {left: 5px;
            color: skyblue;}
            100% {left: 10px;
            color: red;}
    }
    .arrow8 {
        animation: arrow8 1s ease 0s 1 normal;
        -webkit-animation: arrow8 1s ease 0s 1 normal;
    }
    @keyframes arrow8 {
        0% {right: 1px;
            color: skyblue;}
        100% {right: -9px;
            color: red;}
    }
    @-webkit-keyframes arrows {
        0% {right: 3px;
            color: skyblue;}
        100% {left: 7px;
            color: red;}
    }
    .linksToggle {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 30px;
        z-index: 2000;
        cursor: pointer;
        margin-bottom: 10px;
        display: none;
    }
    .linksToggleButton span {
        position: absolute;
        left: 0;
        display: block;
        width: 30px;
        height: 4px;
        background-color: #fff;
        transition: all 0.5s ease;
        border-radius: 4px;
    }
    .linksToggleButton span:nth-child(1) {
        top: 4px;
    }
    .linksToggleButton span:nth-child(2) {
        top: 13px;
    }
    .linksToggleButton span:nth-child(3) {
        bottom: 4px;
    }
    .sp11Move {
        transform: translateY(9px) translateX(9px) rotate(-315deg);
    }
    .sp22Move {
        opacity: 0;
    }
    .sp33Move {
        transform: translateY(-9px) translateX(-9px) rotate(315deg);
    }
    .open {
        animation: fadeIn 2s ease 0s 1 normal forwards;
        -webkit-animation: fadeIn 2s ease 0s 1 normal forwards;
    }
    @keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    @-webkit-keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    .mask {
        display: none;
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        z-index: 1100;
        cursor: pointer;
    }
    .maskOpen {
        animation: fadeOut 2s ease 0s 1 normal forwards;
        -webkit-animation: fadeOut 2s ease 0s 1 normal forwards;
    }
    @keyframes fadeOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    @-webkit-keyframes fadeOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    .linksmask {
        display: none;
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        z-index: 1500;
        cursor: pointer;
    }
    .linksmaskOpen {
        animation: maskOut 2s ease 0s 1 normal forwards;
        -webkit-animation: maskOut 2s ease 0s 1 normal forwards;
    }
    @keyframes maskOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    @-webkit-keyframes maskOut {
        0% {opacity: 0}
        100% {opacity: 0.8;}
    }
    .navLink {
        display: inline-block;
        width: fit-content;
        height: fit-content;
    }
    .navLinks {
        position: fixed;
        display: none;
        inset: 0;
        margin: 10px auto;
        width: fit-content;
        height: fit-content;
        background-color: rgba(135,206,235,0.2);
        border: 3px solid #fff;
        box-shadow: 0 0 40px 5px skyblue;
        z-index: 2000;
        border-radius: 30px;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        white-space: nowrap;
    }
    .navLinks a {
        display: inline-block;
        text-decoration: none;
    }
    .navLinks > div:nth-child(1) {
        text-align: center;
        font-size: 2rem;
        color: #fff;
        font-weight: bold;
        text-shadow: 3px 3px 3px #ffffff;
        margin-top: 30px;
        display: none;
    }
    .navLinks img {
        display: inline-block;
        width: 20px;
        height: 20px;
        margin: 0 10px;
    }
    .navLinks img:active {
        border-bottom: 4px solid skyblue;
        padding-bottom: 3px;
        opacity: 0.5;
    }
    .navLinkBox {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 10px 30px 10px 30px;
        max-width: 70vw;
    }
    .navLinkBox > div:nth-child(1){
        margin: 10px 0;
    }
    .navLinkBox > div:nth-child(2){
        margin: 10px 0;
    }
    .navLinkBox > div:nth-child(3){
        margin: 10px 0;
    }
    .navLinkBox > div:nth-child(4){
        margin: 10px 0;
    }
    .linksButtonIn {
        display: block;
        width: 30px;
        height: 30px;
        margin: 0 auto 0px auto;
        z-index: 1300;
        cursor: pointer;
    }
    .linksButtonIn span {
        display: block;
        width: 20px;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
    }
    .linksButtonIn span:nth-child(1) {
        position: absolute;
        transform: rotate(45deg);
    }
    .linksButtonIn span:nth-child(2) {
        position: absolute;
        transform:  rotate(-45deg);
    }
    .navLinksOpen {
        animation: linksOpen 2s ease 0s 1 normal forwards;
        -webkit-animation: linksOpen 2s ease 0s 1 normal forwards;
    }
    @keyframes linksOpen {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
    @-webkit-keyframes linksOpen {
        0% {opacity: 0;}
        100% {opacity: 1;}
    }
}
/*
section
*/

.section,.second-section,.third-section,.four-section,.five-section,.end-section {
    width: 100vw;
}

.section-headline,.second-section-headline,.third-section-headline,.four-section-headline,.five-section-headline,.end-section-headline {
    text-align:  center;
    font-size: 2rem;
    font-weight: bold;
    margin: 50px auto;
    height: 100px;
    line-height: 100px;
    background-color: #f1f3f4;
}

.section-button {
    margin-top: 40px;
    text-align: center;
}
/*  about */

.about {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
}

.about-image {
    margin: 30px;
    height: auto;
    width: 90vw;
}
.about-caption {
    width: fit-content;
    margin: 30px 0px 30px 0px;
}
.about-head {
    margin: 30px 30px;
}
.about-headline {
    margin: 0 0 20px;
    font-size: 1.2rem;
    background: linear-gradient(transparent 60%, yellow 60%);
    display: inline-block;
}

.about-discription{
    margin: 0 30px;
}

.about-discription > p > a {
    color: blue;
    text-decoration: none;
}

/*
about2
*/

.about2 {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    background-color: #f1f3f4;
}

.five-section-headline {
    text-align:  center;
    font-size: 2rem;
    font-weight: bold;
    margin: 50px 0px 0px;
    height: 100px;
    line-height: 100px;
    background-color: #f1f3f4;
}
.five-about-caption {
    width: fit-content;
}
.five-headline .five-node {
    font-size: 1.2rem;
    text-align: center;
    color: green;
    margin-top: 10px;
}
.five-headline .five-headline-p {
    background-color: pink;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 60px;
}
.five-discription {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
    width: 80vw;
}
.five-about-image1 {
    height: auto;
    width: 90vw;
    margin: 20px;
}
.five-about-image2 {
    height: auto;
    width: 90vw;
    margin: 20px;
}

/*
end-headline
*/

.end-headline {
    margin: 0 auto;
    width: 90vw;
    color: blue;
}
.end-headline > a {
    color: red;
    text-decoration: none;
}
.end-headline > a:hover {
    border-bottom: 2px solid rgb(24, 133, 250);
    font-size: 1.2rem;
}
.end-headline > a:active {
    background-color: pink;
}
.end-headline > img {
    display: inline-block;
    margin: 0px 5px;
    height: 20px;
    width: 20px;
}

/*
button
*/

.button {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background-color: #333;
    text-align: center;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 10px 10px 0 #bbb;
    transition: box-shadow .25s;
}
.button:hover {
    box-shadow: 0 0 0 #bbb;
}
.button.button-subisson {
    background: green;
}
.button.button-subisson:active {
    background: lightgreen;
}
/* 
.select, .input, .radio, .textarea,
*/
.select {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    width: 80vw;
    margin: 0 auto;
}
.input {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    width: 80vw;
    height: auto;
    margin: 0 auto;
    max-width: 600px;
}
.radio {
    margin: 0 10px;
}
.textarea {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    width: 80vw;
    margin: 0 auto;
    max-width: 600px;
}

/*
form
*/
.sendCom {
    display: none;
    opacity: 0;
    width: auto;
    max-width: 100%;
    height: 90%;
    margin: 0 auto;
    position: absolute;
    inset: 0;
}
.sendComOpen {
    animation: sendImgOpen 10s ease 0s 1 normal forwards;
    -webkit-animation: sendImgOpen 10s ease 0s 1 normal forwards;
    display: block;
}
@keyframes sendImgOpen {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@-webkit-keyframes sendImgOpen {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.form {
    position: relative;
}
.form-table {
    opacity: 1;
    transition: 10s;
    margin: 0 auto;
}
.form-table-row {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.form-table th {
    padding: 10px;
    text-align: left;
    text-decoration: underline 1.5px;
    text-decoration-color: rgb(0, 0, 255);
    text-underline-offset: 0.3rem;
}
.form-table td {
    padding: 10px;
    min-width: 200px;
    max-width: 90vw;
    height: fit-content;
    width: fit-content;
}
.form-button {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}
#submit-button:disabled {
    background-color: lightgreen;
}
.letterAirplane {
    display: none;
    width: 70px;
    height: auto;
    margin-top: 0px;
    margin-left: 10px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 10;
}
.letterAirplaneMove { animation-name: letter;
    animation-duration: 12s;
    animation-fill-mode: forwards;
    animation-delay: 2s;
}
@keyframes letter {
    0%{
        opacity: 1;
        left:0px;
        bottom: 0px;
    }
    100%{
        opacity: 0;
        left:200px;
        bottom: 20px;
    }
}
@-webkit-keyframes letter {
    0%{
        opacity: 1;
        left:0px;
        bottom: 40px;
    }
    100%{
        opacity: 0;
        left:200px;
        bottom: 200px;
    }
}
.formNull {
    opacity: 0;
}
.fomConf {
    display: block;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 5px;
}
.fomConf:hover {
    color: pink;
}
.fomConf:active {
    background-color: pink;
}
.fome2 {
    width: fit-content;
    height: fit-content;
}
.form2Null {
    display: none;
}
.input2 {
    text-align: center;
    border: none;
    background: none;
    width: 80vw;
    height: auto;
    overflow-wrap: break-word;
    word-break: break-all;
}
.textarea2 {
    text-align: center;
    border: none;
    background: none;
    width: 80vw;
    height: auto;

}
.form-table2 {
    margin-top: 30px;
    margin: 0 auto;
}
.form-table-row2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.form-table-row2 > th > label{
    color: rgb(0, 0, 255);
}
.form-table2 th {
    padding: 10px;
    color: rgb(0, 0, 255);
}
.form-table2 td {
    padding: 10px;
    width: fit-content;
    height: fit-content;
    margin: 20px;    
}

.footer {
    background-color: #333;
    color: #fff;
    margin-top: 100px;
    width: 100%;
} 
.footer-map {
    margin: 0;
    padding: 40px 15px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
}
.footer-map > iframe {
    width: 90vw;
    height: 30vh;
}
.footer-mapinfo {
   margin: 20px auto;
}
.footer-maplogo-discription {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 50px;
}
.footer-mapinfo-svg {
    margin: 0 auto;
}
.footer-mapaddres {
    font-style: normal;
    margin-top: 10px;
    text-align: center;
}
.footer-mapaddres > a {
    color: rgb(191, 25, 25);
    padding-right: 1em;
}
.footer-line {
    border-color: #444;
}
.footer-copy {
    display: block;
    text-align: center;
    padding: 10px;
    color: white;
}
