/* ～～～～～～～～～～～～～～～～～
トップのｃｓｓ
～～～～～～～～～～～～～～～～～ */


@charset "utf-8";
*{
    padding: 0;
    margin: 0;
}

/* イントロトップ画像 */
.en-intro-top-img{
  text-align: center;
  position: relative;
}

/* ロゴ */
.logo img{
  padding: 30px;
  width: 25%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 40%;
  left: 5%;
}

/* トップメニュー */
.menu ul{
    display: flex;
    justify-content: space-around;
    margin:  2%;   
}

.menu a{
    color: black;
    font-family: sans-serif;
    letter-spacing: 0.05em;
}

/* メニューボタンの色の変化 */
.menu ul :hover{
color: #a22041;
background-color: rgba(162, 32, 65, 0.1);
-webkit-transition: all .2s; transition: all .2s;
}

/* 真ん中の画像 */
.en-intro-middle-img{
  text-align: center;
  position: relative;  
}

/* グリーティング */
.greeting{
  position: absolute;
  font-size: 1.5vw;
  font-family: sans-serif; 
  letter-spacing: 0.08em;
  line-height: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  color: rgb(205, 234, 244);
  background-color: rgba(0, 0, 0, 0.5);
  padding-top: 2%;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 1%;
}
.greeting h1{
  text-align: center;
  font-size: 1.7vw;
  font-family: sans-serif; 
  letter-spacing: 0.02em;
  line-height: 2;
  color: rgb(218, 217, 217);
  padding-bottom: 5%;
}
.greeting P{
  margin-bottom: 1.5em;
}


/* フッター */
footer{
    text-align: center;
    font-family: serif;
    background-color: black;
    color: white;
}