body, html {
    height: 100%;
    margin: 0; /* ブラウザのデフォルトマージンをリセット */
    padding: 0;
    color: #fff;
    font-family: "Zen Maru Gothic", serif, "Noto Color Emoji", sans-serif;
    background-color: #1a1a1a;
}
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.right {
    flex: 1;
    text-align: center;
    height: 100%;
    width: 50%;
    position: relative;
    background: linear-gradient(135deg, #00bfff, #ff69b4); /* 水色からピンクに変化するグラデーション */
    overflow-y: auto;
}

.left {
    flex: 1;
    text-align: center;
    height: 100%;
    background-image: url('handsome.jpg');
    background-size: cover; /* 画像を要素に合わせて表示 */
    background-position: center; /* 画像を中央に配置 */
    width: 50%;
    background-color: #fff;
}

.prof {
  padding: 40px 0 0px;
  min-height: 100%;
}
.links {
    background-image: url('ryugo.jpg');
    background-size: 50% auto; /* 背景画像を右半分の大きさで表示 */
    background-position: right; /* 画像を右寄せに配置 */
    background-attachment: fixed; /* 背景をスクロールしても固定 */
    padding: 40px 0 80px;
    min-height: 100%;
}



.enjoy {
  background-color: #333;
  padding: 40px 0 80px;
}
.figure {
    width: 150px; /* 幅を150pxに設定 */
    height: 150px; /* 高さも150pxに設定して正円にする */
    overflow: hidden; /* 余分な部分を隠す */
    margin: 0 auto 40px; /* 中央揃え */
}

.figure img {
    width: 100%; /* 画像を親要素に合わせて表示 */
    height: auto; /* アスペクト比を保持 */
    display: block; /* 画像をブロック要素にする */
}


h1 {
  font-family: "Rubik Glitch", system-ui, "Noto Color Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 2px;
  color: #fff;
  margin: 20px 0 40px;
}
.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.button {
    background-color: #ff69b4; /* ピンク系の色に変更 */
    color: #fff;
    border: none;
    padding: 15px 25px; /* ボタンを少し大きく */
    margin: 10px; /* マージンを調整 */
    border-radius: 50%; /* 正円にする */
    text-decoration: none;
    font-size: 20px; /* フォントサイズを大きく */
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px; /* ボタンの幅を固定 */
    height: 100px; /* ボタンの高さを固定 */
}

.button:hover {
    transform: scale(1.1);
}


footer {
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    background: #111;
}
