/* スクロールを完全に止める */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 全体レイアウト */
.layout {
  display: grid;
  grid-template-columns: 1fr 2fr; /* 左右2列 */
  width: 100vw;
  height: 100vh;
}

/* 左列 */
.left {
    height: 100%;
    text-align: center;
}

#ia_logo{
    height: 100vh;
    width:100%;
}

/* 右列（上下2分割） */
.right {
  display: grid;
  grid-template-rows: 6fr 1fr;
}

.right-top {
  display: flex;
  align-items: center;      /* 縦方向（上下）中央揃え */
  justify-content: center;
}

.text{
    width: 50%;
    text-align: center;
}

.text img{
    width: 100%;
}

#date{
    width:80%;
    margin-top: 10%;
}


.right-bottom {
  display: flex;
  align-items: center;   /* 縦方向：下に寄せる */
  justify-content: right; 
}

.right-bottom img{
    height:60%;
    padding-right: 10px;
}


@media screen and (max-width: 480px) {
	/* 480px以下に適用されるCSS（スマホ用） */

.layout {
    display: block;
    position: relative;
    width: 100vw;
    height: 100vh;
}

.left{
    position: fixed;
    inset: 0;               /* top/right/bottom/left = 0 */
    z-index: 0;
    text-align: center;
}

#ia_logo{
    width:80%;
    padding-left:5%;
    opacity: 0.2;
    -ms-filter: blur(6px);
    filter: blur(6px);
}

.right {
  display: grid;
  grid-template-rows: 6fr 1fr;
  height: 100vh;
}

.text{
    width: 90%;
    text-align: center;
}


.right-bottom img{
    height:auto;
    width:70%;
    padding-right: 10px;
}



}