@charset "UTF-8";

/* 共通部分*/
html {
    font-size: 80%;
}
body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    background-color: rgb(255, 255, 255); 

}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}

/* HEADER*/
.titlelogo {
    padding-left: 0.5rem;
      letter-spacing: 0.03em;
    font-size: 130%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}



/* HOME*/

/* 初見用JS */
/* ポップアップコンテナ全体を画面全体に覆いかぶせる */
#popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-sizing: border-box;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.777);

    /* ★★★ 追記/変更点: 初期状態で非表示にする ★★★ */
    visibility: hidden; /* 要素の領域は残さず、表示のみ消す */
    opacity: 0;         /* 透明度を0にする（必要であればフェードインなどに使える） */
    transition: opacity 0.3s; /* フェードイン/アウト用のトランジション（任意） */
}

/* ポップアップ画像自体のスタイル (変更なし) */
#popup-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 進むボタンのスタイル (変更なし) */
#close-button {
    
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);

    position: absolute;
    bottom: 40px;
    padding: 20px 50px;
    font-size: 30px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgb(10, 20, 20);
}

/* ★★★ 変更点: 表示用クラスを定義する ★★★ */
.is-visible {
    visibility: visible !important;
    opacity: 1 !important;
}
/* 初見用JS */


/* 記事内容（スクロール内容） */
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative; /* フッターを絶対位置で配置するための基準点 */
        }
        
        .articlecontainer{
            background-color: white;
            border-radius: 1rem;
            padding: 0rem;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.338);
            margin-bottom: 1.5rem;
            margin: 0 auto; /* 中央寄せ */
        }

.first{
    padding-top: 7%;
}
         /* スポットライトラベルのスタイル */
        .card-container {
            position: relative;
        }
        .spotlight-label {
            position: absolute;

            left: -0.5rem;
            background-color: #ef4444;
            color: rgb(255, 254, 245);
            padding: 0.25rem 1rem;
            font-weight: bold;
            font-size: 1.3rem;
            border-radius: 1.4rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
         /* スポットライトラベルのスタイル */        

/* ---------------------記事内容------------------------ */
    /* 黒箱囲み */
    .black-box {
        background-color: black;
        color: white;
        padding: 0px 5px;
    }

        /* 記事コンテナ横ならび */
    .articlecontainer{
        display: grid;
        grid-template-columns: 1fr 1fr; /* 1列目と2列目を同じ割合の幅に変更 */
        align-items: center; /* 垂直方向の中央揃え */
        gap: 10px; /* 要素間の隙間 */
        position: relative; /* 親要素を相対位置に設定 */

}
.setumei{font-size: 1px;}
/* ---------------------記事内容------------------------ */

.articleimage{  
    border-radius: 1rem 0 0 1rem;
}

.articletitle{
    font-weight: bold;
    font-size: 1.1rem;
}
/* 記事内容（スクロール内容）ここまで */

/* 見出し */
.page-title {
    width: 100%;
}
.h2logo{
    width: 40rem;
}

/* 設定資料集 */
.siryou {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  padding: .5rem;
  list-style-type: none;
  padding-top: 5rem; 

}
.siryou li {
    margin-right: 15px; 
    margin-bottom: 20px; 
    box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.2);
}
/* 設定資料集ここまで */


/* SNSicon */
.SNSicon{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 1.5rem;
    list-style-type: none; 
}
.SNSicon img{
   margin: 0 auto;
}

/* フッター */
.page-footer {
   text-align: center;
    margin-top: auto; /* コンテンツが少ない場合にフッターを最下部に押し出す */
}
.footer-container{
    bottom: 0;
    left: 0;
    right: 0;
}

.SNSicon img{
width:50px; 
}

.page-footer p {
    color: #000000;
    font-size: 1rem;
}



@media (min-width: 800px) {
html {
    font-size: 160%;
}
/* HEADER*/
.logo {
    width: 30%;
}
}











