/*フォント指定*/
@font-face {
    font-family: 'MyFont1';
	src: url("../../../font/yosugaraver1_2.ttf");
}

@font-face {
    font-family: 'MyFont2';
	src: url("../../../font/SanariFontH002.ttf");
}

@font-face {
    font-family: 'MyFont3';
	src: url("../../../font/Cormorant-VariableFont_wght.ttf");
}

html, body{
    height: 100%;
    width: 100%;
}

header{
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #000000;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 40%;
    height: 70%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #525252e5;
    transition: all 0.5s;/*アニメーション設定*/
}

.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: -11px;
    top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
    left: 60%;/*メニューを画面内へ*/
}

/*メニューの大きさ*/
.menu{
    flex: 4;
    width: 10vw;
    height: 100vw;
    position: fixed;
}

/*メニューの大きさ*/
.menu ul{
    list-style-type: none;
    margin-left: auto;
    display: block;
    width: auto;
    padding: 10.0vh 0 0 2.4vh;
}

/*メニュー幅*/
.menu ul li{
    margin: 0 0 30px;
    transition: 0.5s;
    width: 100%; 
}

/*メニュー　フォント指定*/
.menu ul li a{
    font-family:'MyFont2';
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    text-align: left;
    display: block;
    user-select: none;
    width: 200px;
}

.hamburger-footer{
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
}

.language{
    font-family:'MyFont2';
    margin-top: 20px;
    font-weight: bold;
    margin-left: 30%;
}

.language a{
    color: #ffffff;
    text-decoration: none;
    font-size: 25px;
}

/*SNSのカスタマイズ*/
.SNS{
    display: flex;
    justify-content: flex-end;
    user-select: none;
    
}

.SNS a{
    width: 60px;
    height: 60px;
}

.SNS a img{
    border-radius: 10px;
}


body{
    background-image: url("../../../image/main/20250303004_mobile.JPG");
    background-size: cover;/*全画面*/
    background-attachment: fixed;/*画像固定*/
    background-position: center;
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
}

.main{
    display: block;
    flex-direction: row-reverse;
    justify-content: space-between;
    height: 30vh;
}

/*タイトルの枠*/
.title{
    font-weight: bold;
    font-family:'MyFont1';
    position: relative;
    width: 100%;
}

/*タイトルの文字色*/
.title h1{
    background: -webkit-linear-gradient(0deg, #ffffffe0 0%, #fae050e2 40%, #ffffffd2 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    user-select: none;
}

.title h1 a{
    font-size: 120px;
}

.WOLFOX{
    margin-left: 10%;
}

.GALLERY{
    margin-left: 30%;
}

footer{
    display: flex;
    bottom: 0;
    height: 40px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    margin-top: 10%;
}

footer p{
    font-style: italic;
    font-family:'MyFont3';
}