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

.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;
    margin: 10px;
}

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

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


body{
    background-image: url("../../../image/contact/20250303005.JPG"),
    linear-gradient(to right, rgba(255, 255, 255, 1.0) 0%, rgba(255, 255, 255, 0.8)6%, rgba(255, 255, 255, 0)20%);
    background-size: cover;/*全画面*/
    background-attachment: fixed;/*画像固定*/
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    min-height: 100vh;

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

.main{
    display: inline-flex;
    justify-content: space-between;
    height: 80vh;
    position: relative;
    height: 30%;
}

/*メニューの大きさ*/
.menu{
    width: 10vw;
    flex: 2;
    
}

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

/*メニュー幅*/
.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: 320px;
    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-style: italic;
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    text-decoration: none;
    text-align: left;
    display: block;
    user-select: none;
    width: 150px;
}

.contact{
    display: inline-flex;
    flex: 8;
    position: relative;
    top: 10vh;
}

.information{
    text-align: left;
    width: 50vh;
    flex: 2;
}

.information h3, p{
    font-family:'MyFont3';
}

.information h3{
    font-size:40px;
    margin: 30px;
}

.information p{
    font-size:30px;
    margin: 10px;
}

/*my contact details SNS*/
.info_sns{
    display: flex;
    justify-content: flex;
    text-align: left;
    user-select: none;
}

.info_sns a{
    width: 40px;
    height: 40px;
    margin-right: 30px;
}

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

.message{
    flex: 3;
}

.textbox {
	position: relative;
	width: 250px;
	margin: 30px;
}

.message label{
    font-family:'MyFont3';
	position: absolute;
	top: 0px;
	margin: 3px;
	padding: 0 5px;
	background-color: #ffffff;
	color: #141414;
	font-size: 1.7rem;
	cursor: text;
	transition: all ease-in-out 0.2s;
}

.message input {
	display: block;
	width: 700px;
	padding: 5px;
    border: none;
	border-bottom: solid 1px #000000;
	font-size: 1.7rem;
	&:focus,
	&:not(:placeholder-shown){
		outline: none;
		+ label {
			top: -15px;
			margin: 0 3px;
			font-size: 1rem;
			color: #000000;
		}
	}
}

.message textarea {
	display: block;
	width: 700px;
	padding: 5px;
    border: none;
	border-bottom: solid 1px #000000;
	font-size: 1.5rem;
	&:focus,
	&:not(:placeholder-shown){
		outline: none;
		+ label {
			top: -15px;
			margin: 0 3px;
			font-size: 1rem;
			color: #000000;
		}
	}
}

.button button {
    background: #eee;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    width: 150px;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
    text-decoration: none;
    color: #333;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.button button:hover {
  background: #333;
  color: #FFF;
}

.button button::after{
    content: '';
    position: absolute;
    top: 42%;
    right: 2rem;
    width: 6px;
    height: 6px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    transition: all .3s;
}

.button button:hover::after{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    animation: arrowrotate .3s;
}



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';
}