/* --------------------------------------------
    共通
-------------------------------------------- */
body {
    background-color: #131508;
    color: #d7ea5c;
    margin: 0;
    overflow-y: hidden;
    font-family: "Arial", "メイリオ";
}

.bodyContent{
    overflow-y: hidden;
}

@media(max-width:767px) {
    /* .bodyContent {
        height: 90vh;
        overflow-y: auto;
    } */
}

/* メニューアイコン
------------------------------------ */
.menuIconWrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    border-left: 5px solid #ffffff;
    z-index: 3;
}

.menuIcon {
    transition: 0.25s;
    border-radius: 50%;
    border: 2px solid #d7ea5c;
    font-size: 30px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding: 10px;
    margin-left: 10px;
}

.menuIcon:hover {
    opacity: 0.5;
}

@media(max-width:767px) {
    .menuIcon {
        font-size: 10px;
        width: 10px;
        height: 10px;
        line-height: 10px;
    }
}

/* セクション
------------------------------------ */
.commonSection {
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
    width: 50%;
}

.sectionTitleMain {
    font-size: 1.6rem;
    letter-spacing: 0.4rem;
    border-bottom: 3px solid #666666;
    font-weight: bold;
}

.sectionTitleSub {
    color: #ffffff;
    font-size: 1.0rem;
}

@media(max-width:767px) {
    .commonSection {
        width: 70%;
        margin-top: 3vh;
    }

    .sectionTitleMain{
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
        border-bottom-width: 1px;
    }

    .sectionTitleSub {
        font-size: 0.9rem;
    }
}

/* --------------------------------------------
    ヘッダー
-------------------------------------------- */
header {
    background-color: #131508;
    position: sticky;
    width: 100%;
    height: 10vh;
    z-index: 2;
}

.headerTitle {
    text-align: center;
}

.headerTitleMain {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
    line-height: 7vh;
}

.headerTitleSub {
    line-height: 3vh;
    letter-spacing: 0.2rem;
}

@media(max-width:767px) {
    header{
        height: 8vh;
    }

    .headerTitleMain {
        font-size: 1.2rem;
        letter-spacing: 0.2rem;
        line-height: 5vh;
    }

    .headerTitleSub {
        letter-spacing: 0.1rem;
        line-height: 3vh;
    }
}

/* --------------------------------------------
    広告
-------------------------------------------- */
.btnClearAd{
    text-align: center;
    display: none;
    font-size: 0.9rem;

}

@media(max-width:767px) {
    .btnClearAd {
        display: block;
    }
}

/* --------------------------------------------
    サイドメニュー
-------------------------------------------- */
.sideNav {
    position: absolute;
    z-index: 3;
    left: -20%;
    width: 20%;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    background-color: #666666;
    padding-top: 100px;
}

.sideNav a {
    text-decoration: none;
    color: #d7ea5c;
}

.navGroup {
    margin-left: 20px;
}

.navItem {
    margin: 20px;
    letter-spacing: 0.3rem;
    font-size: 1.2rem;
}

.navItemText {
    display: inline;
    position: relative;
    cursor: pointer;
}

.navItemText::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 130%;
    height: 2px;
    opacity: 0;
    background-color: #d7ea5c;
    transform: translate(-50%, 0);
    transition: all .2s ease-in-out;
    border-radius: 10px;
}

.navItemText:hover::after {
    width: 100%;
    opacity: 1
}

.navItemFirstCharacter {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0rem;
}

@media(max-width:767px) {
    .sideNav {
        width: 20%;
        z-index: 999;
        height: auto;
    }

    .navGroup{
        margin-left: 5px;
    }

    .navItem {
        margin: 20px 10px;
        letter-spacing: 0.1rem;
        font-size: 0.9rem;
    }
}

/* --------------------------------------------
    Works
-------------------------------------------- */
.sectionWorks {
    height: 80vh;
    overflow: auto;
}

.worksGroup {
    padding: 10px;
    background-color: #ffffff;
    column-count: 6;
    column-gap: 0;
}

.worksItem {
    padding: 10px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
}

.worksImgWrapper {
    overflow: hidden;
}

.worksImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.25s;
}

.worksImg:hover {
    filter: brightness(0.5);
    transform: scale(1.20, 1.20);
}

@media(max-width:767px) {
    .worksGroup {
        padding: 5px;
        column-count: 2;
    }

    .worksItem{
        padding: 5px;
    }

    .sectionWorks{
        height: 60vh;
    }
}

/* --------------------------------------------
    画像ビューワー
-------------------------------------------- */
.img-viewer {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 333333;
}

.img-viewer-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:767px) {
    .img-viewer-img {
        width: 80vw;
        height: auto;
    }

    .btn-close-wrapper {
        margin-top: 30px;
        width: 90%;
        height: auto;
        display: flex;
        justify-content: flex-end;
    }
}

@media(min-width:768px) {
    .img-viewer-img {
        width: auto;
        height: 90vh;
    }

    .btn-close-wrapper {
        margin-top: 30px;
        width: 90%;
        display: flex;
        justify-content: flex-end;
    }
}

.btn-close-img-viewer {
    border-radius: 20px;
    font-size: 1.2em;
    padding: 10px 20px;
    background-color: transparent;
    color: #d7ea5c;
    border: 1px solid #d7ea5c;
}

@media(max-width:767px) {
    .btn-close-img-viewer {
        margin-bottom: 5vw;
    }
}

/* --------------------------------------------
    About
-------------------------------------------- */
.imgAboutWrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin: 30px auto;
}

.imgAbout {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.textAbout {
    position: absolute;
    top: 20%;
    left: 20%;
    transform: translateX(-20%) translateY(-20%);
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 4.0rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
}

@media(max-width:767px) {
    .textAbout {
        font-size: 0.9rem;
        line-height: 1.5rem;
        letter-spacing: 0.1rem;
    }
}

/* --------------------------------------------
    Policy
-------------------------------------------- */
.textPolicyWrapper {
    width: 100%;
    background-color: #ffffff;
    margin: 100px auto;
    padding-top: 25px;
    padding-bottom: 25px;
    border: 1px solid #ffffff;
}

.textPolicy {
    width: 70%;
    display: flex;
    align-items: flex-end;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
    background-color: #666666;
    border-left: 30px solid #ffffff;
}

.textPolicy:nth-child(odd) {
    margin-right: auto;
}

.textPolicy:nth-child(even) {
    margin-left: auto;
}

.textPolicyFirstCharacter {
    font-size: 4.0rem;
    line-height: 4.0rem;
    font-weight: bold;
    margin-right: 5px;
}

.textPolicyBody {
    color: #ffffff;
    font-size: 0.9rem;
}

@media(max-width:767px) {
    .textPolicy {
        width: 90%;
        border-left: 10px solid #ffffff;
        padding: 5px;
        margin-top: 10px;
        margin-bottom: 10px;
        align-items: flex-start;
    }

    .textPolicyFirstCharacter {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }

    .textPolicyBody{
        font-size: 0.7rem;
    }
}

/* --------------------------------------------
    Contact
-------------------------------------------- */
.formContact {
    width: 70%;
    margin: 0 auto;
}

.formItem {
    margin-top: 20px;
    margin-bottom: 20px;
}

.formItemLabel {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
    letter-spacing: 0.2rem;
}

.formItem input,
.formItem textarea {
    color: #ffffff;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #666666;
    width: 95%;
    padding: 15px;
    font-size: 1.0rem;
    line-height: 1.0rem;
}


.formItem input:focus,
.formItem textarea:focus {
    outline-color: #d7ea5c;
    outline-style: solid;
    outline-width: 2px;
    transition: 0.5s;
}

.btnSubmitFormWrapper {
    text-align: center;
}

.btnSubmitForm {
    border-radius: 20px;
    padding: 10px 40px;
    background-color: #666666;
    color: #d7ea5c;
    font-size: 1.2rem;
    border: none;
    letter-spacing: 0.2rem;
    transition: 0.5s;
}

.btnSubmitForm:hover {
    opacity: 0.5;
}

@media(max-width:767px) {
    .formContact {
        width: 100%;
    }

    .formItem {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .formItemLabel {
        font-weight: bold;
        font-size: 0.8rem;
        margin-bottom: 3px;
        letter-spacing: 0.2rem;
    }

    .formItem input,
    .formItem textarea {
        padding: 2px;
        font-size: 1.0rem;
        line-height: 1.0rem;
    }

    .btnSubmitForm{
        padding: 2px 20px;
        font-size: 1.0rem;
    }
}
/* --------------------------------------------
    ニュース
-------------------------------------------- */
.news{
    position: fixed;
    top: 100px;
    left: 50px;
    width: 15%;
    height: 80vh;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.news::-webkit-scrollbar {
    display: none;
}

.newsItem{
    /* background-color: #888888; */
    border: 1px solid #666666;
    padding: 10px;   
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.75rem;
}

.newsItemDate{
    border-bottom: 1px solid #666666;
}

.newsItemText{
    margin-top: 5px;
}

@media(max-width:767px) {
    .news{
        top: auto;
        bottom: 100px;
        left: 5px;
        width: 80%;
        height: 10vh;
    }

    .newsItem{
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* --------------------------------------------
    類似サイト
-------------------------------------------- */
.similarLink{
    position: fixed;
    top: 100px;
    right: 50px;
    width: 15%;
}

.similarLinkTitle{
    font-size: 0.8rem;
}

.similarLinkTitle p{
    margin: 0;
    font-size: 0.5rem;
}

.similarLinkItem{
    border: 1px solid #666666;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    transition: 0.25s;
}

.similarLinkItem a{
    display: block;
    text-decoration: none;
    color: #d7ea5c;
}

.similarLinkItemBody{
    display: flex;
    align-items: center;
}

.similarLinkName{
    margin-left: 10px;
    font-size: 0.9rem;
}

.similarLinkItem:hover {
    background-color: #666666;
    border-radius: 20px;
}

.similarLinkImg{
    width: 20px;
    height: 20px;
    object-fit: cover;
}

@media(max-width:767px) {
    .similarLinkTitle{
        display: none;
    }

    .similarLink{
        top: auto;
        bottom: 100px;
        right: 5px;
        width: auto;
    }

    .similarLinkName{
        display: none;
    }
}

/* --------------------------------------------
    外部リンク
-------------------------------------------- */
.externalLink {
    width: 15%;
    position: fixed;
    right: 50px;
    bottom: 25px;
}

.externalLinkTitle {
    font-size: 1.5rem;
    font-weight: bold;
}

.linkItem {
    display: block;
    border-bottom: 1px solid #666666;
    color: #d7ea5c;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    white-space: nowrap;
    overflow-x: hidden;
    font-weight: bold;
}

.linkItem:hover {
    background-color: #666666;
}

.linkItemSubscript {
    margin-left: 5px;
    font-size: 0.6rem;
    color: #888888;
    font-weight: normal;
}

.copyright{
    color: #666666;
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 0.8rem;
}

.copyright span{
    font-size: 1.0rem;
    margin-right: 5px;
}

@media(max-width:767px) {
    .externalLink {
        width: 94%;
        right: 0;
        bottom: 0;
        padding: 5px 3%;
    }

    .externalLinkTitle{
        font-size: 1.0rem;
    }

    .linkGroup{
        display: flex;
        flex-wrap: wrap;
    }

    .linkItem{
        font-size: 0.8rem;
        line-height: 0.8rem;
        width: 46%;
        padding-left: 2%;
        padding-right: 2%;
        margin: 0;
    }

    .linkItemSubscript{
        font-size: 0.5rem;
    }

    .copyright{
        margin-top: 2px;
        font-size: 0.5rem;
    }
}

/* --------------------------------------------
    ローディング
-------------------------------------------- */
.loading{
    width: 100vw;
    height: 100vh;
}

.animoSpinStretchWrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform:  translateX(-50%) translateY(-50%);
}

.animoSpinStretch {
    width: 2.5em;
    height: 3em;
    border: 3px solid transparent;
    border-top-color: #d7ea5c;
    border-bottom-color: #d7ea5c;
    border-radius: 50%;
    animation: spin-stretch 2s ease infinite
}

@keyframes spin-stretch {
    50% {
        transform: rotate(360deg) scale(.4, .33);
        border-width: 8px
    }

    100% {
        transform: rotate(720deg) scale(1, 1);
        border-width: 3px
    }
}

/* --------------------------------------------
    背景動画
-------------------------------------------- */
.backgroundVideoArea{
    position: fixed;
    z-index: -1;
    top: 10vh;
    right: 0;
    left: 0;
    bottom: 10vh;
    opacity: 0.7;
}

.backgroundVideo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}