 @charset "Shift-JIS";

h1,h2,h3,h4,h5,h6,p,ul{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

:root {
  --bottom-height: 50px; /* 60px */
  --bottom-padding: 8px;
  --accent: #0b66d0;
}

/* ベース */
* {
  box-sizing: border-box;
 }

body {
 margin: 0;
 font-family:"M PLUS Rounded 1c"; 
 color: #222; 
 background-color: #ffffff;
 width:100%;
 margin:auto;
 padding:0;
}

a {
text-decoration: none;
color: #000000;
}

.dummy {
  height: 1600px;
  padding: 16px;
  background: #f7f7f7; }


/* 非表示（PC） */
.bottom-menu {
   display: none;
   }


/* オーバーレイとグローバルメニュー初期 */
.overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: var(--bottom-height);
  background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: opacity .25s; z-index: 1200;
}


/* --- グローバルメニュー（左からスライド） --- */
.global-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; /* メニューの幅（お好みで調整） */
  /* 高さをボトムメニューの上端に合わせる */
  bottom: var(--bottom-height);
  background: #ffffff;
  /* 初期状態を左に隠す */
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.2, .9, .2, 1);
  z-index: 1250;
  overflow-y: auto;
  box-shadow: 2px 0 8px rgba(0,0,0,0.1);
}

.global-menu__inner {
  padding: 18px 16px 40px;
}

/* メニュー展開時のクラス（左から0の位置へ） */
.global-menu.is-open {
  transform: translateX(0);
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* --- メニューリストのデザイン（継承） --- */
.global-menu__list { list-style: none; margin: 30px 0 0; padding: 0; }
.global-menu__list li { margin: 8px 0; }
.global-menu__link {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 14px; border-radius: 8px; text-decoration: none; color: #111;
  background: #f2f2f2; font-weight: 600;
}


/* --- ハンバーガーボタン --- */
.hamburger {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border: none; background: none; cursor: pointer; position: relative;
}
.bar {
  display: block; width: 22px; height: 3px; background: #000;
  border-radius: 2px; transition: all .3s;
}
.hamburger-label { font-size: 10px; color: #000; font-weight: bold; }

/* ハンバーガー・アクティブ状態 */
.hamburger.active .bar--top { transform: translateY(7px) rotate(45deg); }
.hamburger.active .bar--mid { opacity: 0; }
.hamburger.active .bar--bot { transform: translateY(-7px) rotate(-45deg); }


/* ボトムメニュー */
@media (max-width: 1100px) {
  body { padding-bottom: var(--bottom-height); }

  .section_1{
    display: none;
  }

  .bottom-menu {
    display: flex; position: fixed; bottom: 0; left: 0; width: 100%; height: var(--bottom-height);
    background: #ffddff; color: #fff; z-index: 1300; box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
  }
  .bottom-menu__item { flex: 1; display: flex; align-items: center; justify-content: center; }

  .bottom-link { color: #000000; text-decoration: none; font-size: 14px; padding: 6px 8px; }
  
  .to-top { 
    border: none;
    background: transparent;
    color: #000000;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer; }

  /* メニュー開時のクラス */
  .global-menu.is-open { transform: translateY(0); }
  .overlay.is-open { opacity: 1; visibility: visible; }

  /* 背景スクロール停止 */
  body.no-scroll { overflow: hidden; touch-action: none; }

/*        　  ボトムメニュー　分割線    　        */
.bottom-menu__item{
  position: relative; /* 疑似要素の基準位置とする */
  flex-grow: 1;
  text-align: center;
  /* ... 他のスタイル ... */
}
/* 最後の項目以外に縦線を追加 */
.bottom-menu__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; /* 項目の右端に配置 */
  top: 10px; /* 上からの位置調整 */
  bottom: 10px; /* 下からの位置調整 (または height: XXpx と top/marginで調整) */
  width: 2px; /* 縦線の太さ */
  background-color: #000000; /* 縦線の色 */
}
}

/* 小画面微調整 
@media (max-width: 420px) {
  .bar { width: 18px; }
  .hamburger-label { font-size: 10px; }
}
*/


/* ----------------------- main area ------------------------ */
#header{
    position:relative; 
    width: 100%; 
    /* height: 50px; */ 
    background:#cc99cc;   /* background-color: gold;*/ 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    text-align: center; 
    z-index: 1;
    justify-content:center; 
}

.header_s{
  display: flex; 
  align-items:center;text-align: center; 
  flex-direction:row;
  flex-wrap: nowrap;
  /*max-width:960px;*/
  width: 100%;
  justify-content:space-between; 
}

.header-logo{
  /* height:10px;   060324  */  
   padding: 15px 10px 10px 20px;
}

.header-logo img{
    max-width:100%;
    width:auto;
    height:35px;
}

/*--------------------------------------------------------------------*/
.come p{
  font-size: 1.3rem;
  font-weight: bold;
  font-family: "M PLUS Rounded 1c";
}

/*---------------------------------- ボタン　01 -------------------------------*/
.btn01 a {
position: relative; /*アンダーラインの位置を決めるための基準 */
text-decoration: none;
font-size: 1.1rem;
font-weight: bold;
font-family: "M PLUS Rounded 1c";
}

.btn01 a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #000000;
bottom: 10px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;  /*変形の時間*/
}

.btn01 a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}


/*------------------------------表示領域01 g-menu ----------------------------*/
.section_1{
   width: 100%;
   background-color: #ffffff; 
  }

.section_01{
  display: flex;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
 /* max-width:960px; */
  margin: 0 auto;
  
  justify-content: center;
}
.section_01 a{
    margin:auto;
    padding: 15px 50px;
    color: rgb(0, 0, 0);
    
    display: flex;
    /*border-left: 1px solid #bbbbbb;*/
}


/* ---------------------------------- スライダー設定 -----------------------*/
.slider{
  position:relative;
  margin:5px;
 
  /*height: ;*/
}

.slider img{
    width: 100%;
    /*max-width:100%;*/ /*1920px*/
    object-fit:cover;
    position:relative;
    margin:10px auto;
} 

.moji-center{
  position:absolute;
  top:45%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#ff00ff;
  font-size:1.2rem;
  font-weight:bold;
  width:96%;
  text-align: center;
  text-shadow: 5px 5px 5px rgb(0, 0, 0);
}


/*------------------------------- 見出し領域 -------------------------------- */
.midashi01{
 /*margin-top: 20px;*/
 padding:0.7rem 2.0rem; /*上下左右の余白*/
 background:#ffddff; /*背景色*/
 border-bottom:solid 3px #cc99cc; /*線の種類 太さ 色*/

 display: flex;
 justify-content: space-between;
 width: 100%;
}
.midashi01 p{
 font-family: "M PLUS Rounded 1c";
 font-weight: bold;
 font-size: 1.2rem;
}

/*------------------------------- 本体領域 -------------------------------- */














/* 外枠のスタイル */
.news-widget {
  max-width: 960px;
  margin: 20px auto;
  font-family: sans-serif;
  /*border: 1px solid #e0e0e0;
  border-radius: 8px;*/
  overflow: hidden;
}

/*.news-title {
  font-size: 16px;
  font-weight: bold;
  padding: 12px 15px;
  margin: 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}*/

/* リスト全体のスタイル */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: linear-gradient(135deg,#f9fcff,#cc99cc);
  
}

/* 各項目のレイアウト */
.news-item {
  border-bottom: 1px solid #8f8f8f;
  display: flex;

}

/*.news-item:last-child {
  border-bottom: none;
}*/

.news-item a {
  display: flex; /* 横並びにする */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}

/*.news-item a:hover {*/
.news-list :hover{  
  background-color: #ffffff; /* ホバー時の色 */
  /*text-decoration: underline;*/
}

.item01{
  display: flex;
  flex-direction: column;
}

.item-date{
  max-width: 150px;
  padding: 0 0 5px 5px;
  font-family: "M PLUS Rounded 1c"; 
  font-weight: bold;
}

/* テキスト部分：左側 */
.item-text {
  flex: 1; /* 残りの幅をすべて使う */
  font-size: 1.2rem;
  line-height: 1.7;
  margin: 0 20px 0 5px;
 }

/* 画像部分：右側 */
.item-thumb {
  width: 65px; /* 画像のサイズを固定 80 60 */
  height: 65px;
  flex-shrink: 0; /* 画像が潰れないようにする */
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を枠内に収める */
  border-radius: 5px;
}






/*---------------------------------- ボタン　1 -------------------------------*/

@media screen and (max-width:1100px){
a {
font-family: sans-serif;
text-decoration: none;
}
.come p{
  font-size: 1.2rem;
}

}

@media (max-width:800px){
.come p{
  display: none;
}
}


/*---------------- ライン　1 --------------*/
hr.line01 {
    border: none;
    border-top: 1px solid #bbbbbb;
    width: 99%;
    margin: 0 auto;
}

/*---------------- noteロゴ　1 --------------*/
.note_wrap{
  display: flex;
  padding:0 30px 0 30px;
  align-items: center;
}
.note_logo{
   padding:0;
}
.note_logo img{
    height:45px; 
    padding-top:5px ;
 transition: transform 0.3s ease; /* アニメーションの滑らかさ */
}
.note_logo a{
   text-decoration: none;
   align-items: center;
   margin: 5px 0; 
}


/*---------------------------------------------------------------------------*/
/*==768px莉･荳九?ｮ蠖｢迥ｶ*/

@media screen and (max-width:1100px){
	
.header-logo img{
  max-width:100%;
  width:auto;
  height:28px;
  margin-left:3px;
}

}



/*========= 繝ｬ繧､繧｢繧ｦ繝医?ｮ縺溘ａ縺ｮCSS ===============*/

/* スクロールダウンの位置 */
.scroll {
  top:65%;
  position: relative;
  text-align: center;
  background-color: rgb(255, 255, 255,0.5);
  padding: 10px;
  color: rgb(255, 0, 0);font-size: large;
  font-weight: bold;
}
/* 矢印のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 3px solid rgb(255, 0, 0); 
  border-left: 3px solid rgb(255, 0, 0);
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 40px;
  width: 20px;
}
/* 矢印のアニメーション */
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(315deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(315deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}


/*--------------------------------------------------------------------------*/

@media screen and (max-width:1100px){


/* 繝｡繝九Η繝ｼ縺ｮ繝?繧ｶ繧､繝ｳ */

/* -----------------------------------画像表示域---------------------------------*/
.slider{
  
  position: relative;
  margin: 5px;
  /*height: ;*/
}
.slider img{
  width: 100%;
  /*max-width:100%;*/ /*1920px*/
  object-fit:cover;
  position:relative;
  margin:auto;
} 

.hontai_00{
 padding-top: 10px;
}

.hontai{
  display:flex;
  flex-direction: column;
 
}


/*---------------------------------------------------------------*/


.oshirase_dl .oshirase_dtdd{
  display:flex;
  align-items:center;
 }

.oshirase_dl .oshirase_dtdd dt{
 width:32%;
 padding:5px 0px;
 font-size: 10px;
}
.oshirase_dl .oshirase_dtdd dd{
 width: 66%;
   padding:5px 0 5px 0px;
   margin-left: 5px;
   font-size: 8px;
 }  

}



/*-----------------------  news block set  20250317  --------------------
.newsblock{
  width:96%;
  margin:  auto;
  height:auto;
}


.news-list{
  list-style: none outside;
  margin: 50px 0;
  padding: 0;
  background-color: rgb(243, 247, 255);
}
.news-list .item a{
  display: flex;font-weight: bold;
  flex-wrap: wrap;font-family: "M PLUS Rounded 1c","Sawarabi+Mincho";
  flex-wrap: nowrap;
  text-decoration: none;
  color: #000000;
  border-bottom: 1px solid #CCC;
  padding: 30px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 160px;
  font-size: 16px;
  color: #000000;
  padding: 0 20px 0 0;
}
.news-list .item .category{
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}
.news-list .item .category span{
  background: #fbff00;
  color: #000000;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #00F;
}

@media screen and (max-width: 1100px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}
/*-----------------------  news block set  20250317  --------------------*/



/*モーダルを開くボタン*/
.modal-open{
  position: fixed;border-radius: 5px;z-index:2;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 55%;
  left: 50%;
  width: 250px;
  height: 50px;
  font-weight: bold;
  color: yellow;
  background: #000000bb;
  margin: auto;
  cursor: pointer;
  transform: translate(-50%,-50%);
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
  position: fixed;z-index:2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.664);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -10px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  
  padding: 30px;
}
.modal-content p{
  font-weight: bold;
  text-align: left;
}
.modal-content a{
  background: #fff;
  text-align: center;font-weight: bold;
}


.modal_1{
  margin: 20px auto;
}

.poster_2{
  width:98%;
  margin:auto;
  text-align: center;
}
  .poster_2 img{
    width:98%;
    max-width:400px;
}



/*----------------------------- 画像フェイドイン設定 ---------------*/
.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 2.0s, transform 1.5s;
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}

/* 見出し下 */
.oshirase_memo{
  text-align: center;
  /*margin: 10px auto;*/
  background-color: #cc99cc;
  flex-wrap: wrap;
  /*display: flex;*/
  border-radius: 5px;

  padding: 20px;
  margin-bottom:10px ;
}

.oshirase_memo:hover{
  background-color: #ffbbff;
}


.oshirase_memo img{
  width: 80px;
  height: auto;
  vertical-align: bottom;
  padding-right: 10px;
}

.hontai_00{
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  margin:auto;
  height: auto;
 padding: 10px 0 20px 0;
}

/*----------------------------      譛ｬ菴楢ｨ倩ｿｰ      ---------------------------*/


.hontai{
  /*top:20px; */
  margin: auto;
  /* display:flex;
  flex-wrap: wrap; */
  height: auto;
  max-width:960px;
  width:96%;
  position: relative;
}
.section_002{
  position: relative;
  background-color: rgb(255, 255, 255);
  margin:auto;


}
.section_02{
  height:auto;
  
  padding-bottom:50px;
  margin:auto;
  width: 100%;max-width:960px;
  position: relative;
}

.section_003{
  position: relative;
  background-color: rgba(255, 255, 255, 0.613);
  margin:auto;
}

.section_03{
  height: auto;
  margin:auto;
  width: 100%;
  max-width:960px;
  position: relative;

}

.section_004{
  position: relative;
  background-color: rgb(255, 255, 255);
  padding: 20px;
}

.section_04{
  height: auto;
  margin:auto;
  width: 100%;
  max-width:960px;
  position: relative;

}



/*-----------------------------  midashi set ---------------------------*/

.oshirase{
  width:100%;
  margin:auto;
  background-color: #e8f4ff;
}




.oshirase_dl .oshirase_dtdd.tag {
  text-decoration: none;
  padding: 0.3rem;
  background: #ffffef;
  border-left: solid 10px #008cff;
  color: #000000;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.22);
  margin: 30px 0;
}

.oshirase_dl .oshirase_dtdd:hover {
  border-left: solid 10px #000000;
}

/*a .oshirase_dl .oshirase_dtdd.tag {
  text-decoration: ;
}*/

.oshirase_dl .oshirase_dtdd{
  display:flex;
  border-bottom:1px dotted black;
  flex-wrap: wrap;
}

.oshirase_dl .oshirase_dtdd dt,
.oshirase_dl .oshirase_dtdd dd{
  font-size: 13px;
  text-decoration: none;
}
 
dt::before{
  content:" ";
}


@media screen and (min-width:1100px){
  .oshirase_dl .oshirase_dtdd{
     display:flex;
     align-items:center;
    }

  .oshirase_dl .oshirase_dtdd dt{
    width:32%;
    padding:5px 0px;
    font-size: medium;
   }
  .oshirase_dl .oshirase_dtdd dd{
    width: 66%;
      padding:5px 0 5px 0px;
      margin-left: 5px;
      font-size: medium;
    } 
    
    .oshirase_memo span{
        text-decoration: none;
    }

    .moji-center{
      position:absolute;
      top:45%;
      left:50%;
      transform:translate(-50%,-50%);
      color:#ffffff;
      font-size:2.0rem;
      font-weight:bold;
      width:96%;
      text-align: center;
      text-shadow: 5px 5px 5px rgb(0, 0, 0);
    }
    .propo_wrap{
      display:flex;
      flex-wrap: wrap;
      /*flex-direction:row;*/
      justify-content: space-around;
      margin-bottom: 10px;
    }

}


/* ---------------------------------- icon群 設定  1100px ------------------------ */
@media screen and (max-width:1100px){

/* 外枠のスタイル */
.news-widget {
  max-width: 960px;
  margin: 20px auto;
  font-family: sans-serif;
  /*border: 1px solid #e0e0e0;
  border-radius: 8px;*/
  overflow: hidden;
}

/*.news-title {
  font-size: 16px;
  font-weight: bold;
  padding: 12px 15px;
  margin: 0;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
}*/

/* リスト全体のスタイル */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0 5px;
  background: linear-gradient(135deg,#f9fcff,#cc99cc);
}

/* 各項目のレイアウト */
.news-item {
  border-bottom: 1px solid #8f8f8f;
  display: flex;
}

.news-item a {
  display: flex; /* 横並びにする */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 25px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}

/*.news-item a:hover {*/
.news-list :hover{  
  background-color: #ffffff; /* ホバー時の色 */
  /*text-decoration: underline;*/
}

.item01{
  display: flex;
  flex-direction: column;
}

.item-date{
  max-width: 150px;
  padding: 0 0 5px 5px;
  font-family: "M PLUS Rounded 1c"; 
  font-size: 0.8rem;
}

/* テキスト部分：左側 */
.item-text {
  flex: 1; /* 残りの幅をすべて使う */
  font-size: 1.0rem;
  line-height: 1.2;
  margin: 0 20px 0 5px;
 }

/* 画像部分：右側 */
.item-thumb {
  width: 50px; /* 画像のサイズを固定 80 60 */
  height: 50px;
  flex-shrink: 0; /* 画像が潰れないようにする */
}

.item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を枠内に収める */
  border-radius: 4px;
}

}

/* ----------------------------------------------------------------------------------- */



/* -------------------------------- 学校住所 ------------------------------------ */
 .gakkou_adress{
     width:auto;
     position: relative;
     display: block;
     padding:10px;
     background-color:#ffddff;
    
   }
   .gakkou_box{
     margin:auto;
     max-width: 960px;
     display: flex;
     flex-direction:column;
     position: relative;  
   }
   
   .gakkou_box p{
     font-size: 1.2rem;
     font-family: "M PLUS Rounded 1c";
     font-weight: bold;
     pointer-events: none;
     margin:0 10px;
   }
 
 /*------------------------------- 学校住所欄内 アクセス設定 ----------------------------*/
 .access{
   position: absolute;
   right: 0px;top:15px;
   display: flex;
   flex-direction:column;
   border-radius: 5px;
   background: linear-gradient(135deg,#ffddff,#cc99cc);
   padding:0 5px 5px 10px;
   align-items: center;
 }
.access img{
   max-width: 50px;
}
 a.access{
   font-size:1rem; font-family: "M PLUS Rounded 1c";
   text-decoration: none;
   color:#000000;
 }  
 
 /************************* フッター設定 *************************************** */
 footer {
     background:#cc99cc;
     padding:17px;
 }

 footer p {
     font-size: 1.3rem;  
     font-family: "M PLUS Rounded 1c"; 
     font-weight:bold;
     color: #000000;
     max-width: 800px;
     text-align:center;
    
     margin:0 auto;
    
 }

@media screen and (min-width: 1100px) {

#page-top a{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#cc99cc;
    border-radius:10px;
    width:50px;
    height:50px;
    color:#000000;
    font-weight:bold;
    text-align:center;
    text-transform:uppercase;
    text-decoration:none;
    font-size:0.8rem;
    transition:all 0.3s;
    border:solid 1px #000000;
     
}
#page-top a:hover{
    background:#000000;
    color:#cc99cc;
}  
#page-top{
  position:fixed;
  right:30px;
  bottom: 50px;
  /*z-index:1;*/
  opacity:0;
  transform:translateY(120px);
}

/* ?ｿｽ?ｿｽ?ｿｽﾚ難ｿｽ?ｿｽ@?ｿｽo?ｿｽ?ｿｽ */
#page-top.UpMove{
  animation:UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from{
      opacity:0;
      transform:translateY(120px);
   }
  to{
      opacity:1;
      transform:translateY(0);
  }
}
/* ?ｿｽE?ｿｽﾚ難ｿｽ?ｿｽ@?ｿｽB?ｿｽ?ｿｽ */
#page-top.DownMove{
  animation:DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from{
      opacity:1;
      transform:translateY(0);
   }
  to{
      opacity:1;
      transform:translateY(120px);
  }
}
}


@media (max-width:1100px){
  .gakkou_box p{
     font-size: 1rem;
     font-family: "M PLUS Rounded 1c";
     font-weight: bold;
     pointer-events: none;
     margin:0 10px;
   } 

  a.access{
   font-family: "M PLUS Rounded 1c";
   font-size: 0.7rem;
   text-decoration: none;
   font-weight: bold;
   color:#000000;
   } 
   
   .access img{
   max-width: 45px;
   }

   footer p {
     font-size: 1rem;
     color: #000000;
     
     padding: 0 auto;
     text-align:center;
     margin:0 auto;
     font-weight:bold;
   }

#page-top{
  display: none;
}

}

@media (max-width:700px){

#header{
    position:relative; 
    width: 100%; 
    height: 55px; 
    background:#cc99cc;   /* background-color: gold;*/ 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    text-align: center; 
    z-index: 1;
    justify-content:center; 
}

.midashi01 p{
 font-size: 1rem;
}
}

/* ----------------bottom up---------------- */

























