@charset "UTF-8";


/*================================================
 *  一般・共通設定
 ================================================*/
body {
    background: #fff;
    color: #000;
    font-size: 16px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}


body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    line-height: 1;
}


/*================================================
 *  reCAPTCHAを非表示にする
 ================================================*/
.grecaptcha-badge {
    visibility: hidden; 
}




/*================================================
 *  テーマのヘッダを非表示にする
 ================================================*/
.l-header__inner {
    display: none!important;
    height: 0px;
    
}

/*================================================
 *  テーマのフッダを非表示にする
    ※ プライバシーポリシーリンクを隠せる
 ================================================*/
.l-footer__inner {
    display: none!important;
    height: 0px;
}

/*================================================
 *  ヘッダの高さ設定する
 *  ※ 各mediaScreenで調整する
 ================================================*/
.l-header {
    /*height: 100px;*/

}

/*================================================
 *  テーマのヘッダ内のサイト名を非表示にする
 ================================================*/
.site-title {
    display: none !important;
}




/* スクロール時にふわっと出現する */
/* base.jsのscroll関数を追加する */
/* 画面外にいる状態 */  
.ArticleFadein {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : all 2s;

}
/* 画面内に入った状態 */
.ArticleFadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 要素に0.3のdelayをかける */
.delay1  {
    transition-delay: 0.3s; 

}
/* 要素に0.6のdelayをかける */
.delay2  {
    transition-delay: 0.6s; 

}

/* 回転しながら表示する。写真やイラストに使用 */
.Fadein_rotate  {

    transform: translate(0, 50px) rotate(3deg); /* 初期状態で50px下に移動し、回転は0度 */
    transition: transform 1s ease-out, opacity 2s ease-out; /* transformとopacityのトランジション */
    transition-delay: 0.3s; /* トランジションの開始を0.3秒遅延 */

}
/* 画面内に入った状態 */
.Fadein_rotate.scrollin {
    transform : rotate(0deg);

}
/* end スクロール時にふわっと出現する */



/* ロード画面のスタイル */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: white; /* 背景色 */
    z-index: 9999; /* 他のコンテンツの上に表示 */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ローディングスピナー */
.spinner {
    border: 8px solid #f3f3f3; /* ライトグレーの外側リング */
    border-top: 8px solid #3498db; /* 青色の内側リング */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
/* スピナーのアニメーション */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}




/******************************************
    エラー非表示	
******************************************/
/*b {
    display: none;
}
*/


/* emanonのメニューを非表示 */
drawer-menu.is-slide {
    display: none !important;
}
.drawer-menu {
    display: none !important;
}


