/*フォント指定*/
@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");
}

body{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px;
    height: 100%;
}

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

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

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

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

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

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

.title h2{
    font-family:'MyFont2';
    font-size: 50px;
    height: 120px;
    margin-bottom: 100px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

body p{
    text-align: center;
    flex-wrap: wrap;
    margin: auto;
}

.main{
    display: flex;
    justify-content: space-between;
    height: 100%;
}

/*メニューの大きさ*/
.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:hover{
    transform: translate(-25px);
}

/*メニュー　肉球*/
.menu ul li::before{
    position: absolute;
    width: 550px;
    height: 0px;
    content: url('../../../image/main/nikukyu_kuro.png');
    display: inline-block;
    transform: scale(0.3);
    visibility: hidden;
}

/*メニュー　マウスオーバー肉球表示*/
.menu ul li:hover:before{
    visibility: visible;
}

/*メニュー　下線表示*/
.menu ul li::after{
    position: absolute;
    content: "";
    left: 0;
    width: 200px;
    height: 4px;
    background:-webkit-linear-gradient(0deg, #000000 0%, #f7d994d4 20%, #00000000 60%);
    bottom: -2px;
    visibility: hidden;
}

/*メニュー　マウスオーバー下線表示*/
.menu ul li:hover:after{
    visibility: visible;
}

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

.select{
    display: flex;
    justify-content: space-between;
    height: 70vh;
    margin-left: 10%; /* 例: 10%の左余白 */
}

.color h3{
    font-family:'MyFont2';
    display: flex;
    justify-content: center;
    font-size: 30px;
}

.monochrome h3{
    font-family:'MyFont2';
    display: flex;
    justify-content: center;
    font-size: 30px;
}

body p a img:hover{
    opacity: 0.3;
    transition: 0.7s;
}

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

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