@charset "UTF-8";/* 文字コードを指定 */
/* =================================================================
↓ここからCSS書いてください
=================================================================*/
/* 全体 ================================== */
/*ゴシック体ベース（＊どっちか選んで片方消す）*/
body {
  font-family: "gotham-narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
    width: 100%;
}
    img {
        max-width: 100%;
        height: auto;
      }
      
/* ここからheader ================================== */
/* メニューが開いたときにページ内容をぼかす */
/* メニューが開いたときにページ内容をぼかす */
/* body.menu-open {
  filter: blur(5px);  
  pointer-events: none; 
  position: relative;    
  z-index: 10;          
} */

/* ぼかし効果をスムーズに遷移させる */
body {
  transition: filter 0.3s ease;  /* ぼかしの遷移をスムーズに */
}


/* ぼかし効果をスムーズに遷移させる */
body {
  transition: filter 0.3s ease;  /* ぼかしの遷移をスムーズに */
}


/* ぼかし効果をスムーズに遷移させる */
body {
  transition: filter 0.3s ease;
}

/* メニューが開いたときにメニューのスタイルを調整 */
#global-nav.visible {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.about_lower{
  background-color: #F3F3F3;  /* 背景色を指定 */
  padding: 40px 0;           /* 上下の余白（必要に応じて調整） */
  margin: 0;                  /* 上端から始めるならmargin-topは不要 */
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  overflow: hidden;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.diary img {
  width: 85%;
  height: auto;
  display: block;
  border-radius:25px;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1); 
  cursor: pointer;
}
.diary_slider_container {
  max-width: 800px;      /* 適宜変更OK */
  margin: 0 auto;        /* 中央寄せ */
  padding: 0 20px;       /* モバイル対応の余白 */
  box-sizing: border-box;
}

.about_name{
  width: 50%;
  margin-top: 150px;
}
.about_name_oya{
  text-align: center;
  margin-bottom: 50px;
}
#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(30px);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
.loading-text{
  font-family: "kozuka-gothic-pr6n", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 100px;
color: #000000;
}
/* ローディング中のぼかし */
body.loading {
  filter: blur(30px);
  pointer-events: none;
  position: relative;
  z-index: 9999;
}

/* body.menu-open:not(.loading) {
  filter: blur(5px);
  pointer-events: none;
  position: relative;
  z-index: 10;
} */

/* フィルターのアニメーション */
body {
  transition: filter 0.3s ease;
}


@media screen and (max-width:600px) {
  .loading-text{
    font-size: 50px;
  }
  .diary img{
    width: 97%;
    margin-top: 100px;
  }
  .about_lower{
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  .diary_slider_container{
    padding: 0 10px;
  }
  .about_name{
    width: 70%;
    margin-top: 50px;
  }
  .about_name_oya{
    margin-bottom: 10px;
  }
}
@media screen and (min-width:601px) and (max-width:1080px)  {
  .loading-text{
    font-size: 96px;
  }
  .diary img{
    width: 90%;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
  }
  .about_lower{
    border-bottom-left-radius: 35px;
    border-bottom-right-radius: 35px;
  }
  .about_name{
    width: 65%;
    margin-top: 70px;
  }
  .about_name_oya{
    margin-bottom: 50px;
  }
}





/* ===============================================================