* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  var(--Jost);
   /*outline: 2px red solid;*/
}


:root {
    --NotoSans:"Noto Sans JP", sans-serif;
    --Jost:"Jost", sans-serif;
  }
  




.container__hmbg {
    font-family: var(--Jost);
    padding: 10px;
    border: #fff 1px solid;
  }
  
  div.hamburger-menu {
    display: block;
  }
  
  @media screen and (max-width: 760px) {
    div.hamburger-menu {
      display: block;
    }
  }
  
  div.hamburger-menu .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    border-radius: 10px;
  }
  
  div.hamburger-menu .menu-btn span,
  /* ボタンの3本線 */
  div.hamburger-menu .menu-btn span:before,
  div.hamburger-menu .menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 35px;
    border-radius: 3px;
    background-color: #000000;
    /* 3本線の色 */
    position: absolute;
    
  }
  
  div.hamburger-menu .menu-btn span:before {
    bottom: 10px;
    /* 上の線は上方向に10px移動 */
  }
  
  div.hamburger-menu .menu-btn span:after {
    top: 10px;
    /* 下の線は下方向に10px移動 */
  }
  
  div.hamburger-menu #menu-btn-check:checked~.menu-btn span {
    /* ボタンクリック時：真ん中の線は非表示 */
    background-color: rgba(255, 255, 255, 0);
  }
  
  div.hamburger-menu #menu-btn-check:checked~.menu-btn span::before {
    /* ボタンクリック時：上の線を斜め（／） */
    bottom: 0;
    transform: rotate(45deg);
  }
  
  div.hamburger-menu #menu-btn-check:checked~.menu-btn span::after {
    /* ボタンクリック時：下の線を斜め（＼） */
    top: 0;
    transform: rotate(-45deg);
  }
  
  div.hamburger-menu #menu-btn-check {
    /* チェックボックスは非表示 */
    display: none;
  }
  
  div.hamburger-menu #menu-btn-check:checked~.menu-content {
    /* ボタンクリック時：メニュー領域を表示 */
    left: calc(0% - 0px);
    /* メニュー領域の引き出し位置（0にすると左端まで） */
  }
  
  div.hamburger-menu .menu-content {
    /* メニューのコンテンツ領域 */
    width: 100%;
    height: 100vh;
    /* autoにするとコンテンツ領域分までに */
    position: fixed;
    top: 0;
    left: 100%;
    overflow: auto;
    z-index: 80;
    padding: 0 10px;
    /* メニュー領域の左右の隙間 */
    background-color: rgb(255, 255, 255);
    /* メニュー領域の背景色 */
    transition: all 0.5s;
    /* メニュー領域の引き出しスピード */
  }
  
  div.hamburger-menu .menu-content ul {
    display: block;
    width: 100%;
    padding-top: 150px;
  }
  
  .ttl_hmbg {
    width: 500px; 
    height: 200px;
    margin: auto;
    text-align: center;
    word-wrap: break-word;

  }
  
  div.hamburger-menu .menu-content ul li {
    /* メニューの項目領域 */
    list-style: none;
  }
  
  div.hamburger-menu .menu-content ul li:last-child {
    border-bottom: none 1px #fff;
    /* 最後のメニュー項目の下線色 */
  }
  
  div.hamburger-menu .menu-content ul li a {
    display: block;
    font-size: 16px;
    text-decoration: none;
    color: #202020;
    font-family: var(--Jost);
    letter-spacing: 5.20px;
    font-weight: bold;
    padding: 10px 0px;
    text-align: center;
  }
  
  div.hamburger-menu .menu-content ul li a span {
    font-size: 90%;
    font-weight: normal;
  }
  
  div.hamburger-menu .menu-content ul li a:hover {
    opacity: 0.6;
  }
  
  /*************/











/* ベーシックスタイルのリセット */

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-bar {
    width: 300px;
    height: 10px;
    background-color: #cbcbcb;
    margin: 20px 0;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

#progress-bar {
    width: 0;
    height: 100%;
    background-color: #e3007f;
    border-radius: 5px;
    transition: width 0.3s ease;
}

#loading-percentage {
    font-size: 1.2rem;
}

/* ローディング完了後に画面を非表示にする */
body.loaded #loading-screen {
    opacity: 0;
    pointer-events: none;
}

/*********************************/


.nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 10px;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
}

/* スライドショー */
.slideshow {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* スライドの上にオーバーレイとしてSVGロゴを表示 */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* ロゴを中央に配置 */
.logo-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; /* 疑似要素でバーを追加するために必要 */
}

.logo-overlay::before {
    content: "";
    position: absolute;
    width: 100vw; /* 横幅いっぱいに設定 */
    height: 180px; /* バーの高さを調整 */
    background-color: #FFFFFF90; /* バーの色 */
    z-index: 0; /* ロゴの裏側に配置 */
    top: 50%; /* 縦位置を中央に設定 */
    transform: translateY(-50%); /* 完全に中央に配置 */
}

.logo-overlay img {
    width: 500px; /* ロゴのサイズ調整 */
    height: 500px;
    z-index: 1; /* ロゴをバーの前面に表示 */
}



/* スマートフォン対応 */
@media screen and (max-width: 768px) {
    
    .logo-overlay img {
        width: 300px; /* スマートフォン向けにロゴのサイズを調整 */
        height: 300px;
    }
    
    
}



/* コンテンツセクション */


body {
    line-height: 1.6;
    color: #333;
}


.header {
    color: #fff;
}

a {
    color: black; /* 青色を無効化して、黒に設定 */
    text-decoration: none; /* 下線を取り除く */
}

.container_a {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}
.container_b {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.content-section {
    /* background-image: url(img/00.svg);
    /*background-size: cover; /* 画像を画面全体に拡大・縮小 */
    /*background-position: center; /* 画像を中央に配置 */
    /*background-repeat: no-repeat; /* 繰り返しなし */
    height: auto;
    text-align: center;
    word-wrap: break-word;

}
/*
.topen{
  background-color: #d11277;
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat;
  .T01{
    background-color: #d11277;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .T02{
    background-color: #5189c8;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
*/
.content-section h2 {
    font-family: var(--Jost);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.content-section p {
    font-family: var(--NotoSans);
    font-size: 1.5rem;
    line-height: 3;
    color: #000000;
}

/* フッター */
.footer {
    background-color:#e3007f;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}
