 @charset "Shift-JIS";

/* 繝ｪ繧ｻ繝?繝?CSS */

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をボトムメニューの高さに合わせる */
  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 screen and (max-width: 1100px) {
  body {
    padding-bottom: var(--bottom-height);
  }

  .bottom-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-height);
    background: #ffddff;
    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;
    position: relative;
  }

  /* 縦線の追加 */
  .bottom-menu__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #000;
  }

.to-top { 
    border: none;
    background: transparent;
    color: #000000;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer; }



/* 学校ロゴのデザイン */
.header-logo { 
  padding: 10px;
  text-align: center; 
  border-bottom: 1px solid #eee; 
}

.header-logo img { 
  max-width: 100%; 
  height: auto; 
  max-height: 30px; 
}


body.no-scroll {
  overflow: hidden;
  touch-action: none;
}
}





/* 小画面微調整 
@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: 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 45px;
    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:5px auto;
} 

.moji-center{
  position:absolute;
  top:45%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#ffff00;
  font-size: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;
}


/*--------------------------------------------------------------------*/
.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（相対値）伸長*/
}


/*---------------- ライン　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;
}

.section_01{
      display: none;
    }

}

/*------------------------------ under 800px ------------------------*/
@media (max-width:800px){
.come p{
  display: none;
}
.moji-center{
  position:absolute;
  top:45%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#ffff00;
  font-size:1.2rem;
  font-weight:bold;
  width:96%;
  text-align: center;
  text-shadow: 5px 5px 5px rgb(0, 0, 0);
}
}


/*----------------------------      本体      ---------------------------*/
.hontai{
    margin:auto;
    max-width:960px;
    width:100%;
 
}

/*------------------------------     枠    ------------------------------*/
.kakomi-box13 {
  position: relative;
  margin: 1em auto 0 auto;
  padding: .5em;
  
  color: #555555;
  background-color: #fff;
  border: 2px solid #f09199; 
  box-shadow: 0 0 5px 2px #fce2c4 inset;
 }
 .title-box13 {
  position: absolute;
  padding: 0 .5em;
  left: 20px;
  top: -15px;
  font-weight: bold;
  background-color:  #fff; 
  color: #f09199; 
 }


/*------------------------------     索引付箋    --------------------------*/
.oshirase{
    width:100%;
    margin:auto;
    background-color: rgb(255, 255, 255);
}

.oshirase_dl .oshirase_dtdd.tag {
  text-decoration: none;
  /*padding: 0.2rem 0.1rem;*/
  padding: 10px 5px;
  background: #fce6ff;
  border-left: solid 10px rgb(255, 41, 226);
  color: #000000;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.22);
  margin: 20px 5px 10px 0; 
}


.oshirase_dl .oshirase_dtdd:hover {
  color:yellow;
  background-color:black;
}

.oshirase_dl .oshirase_dtdd{
  display:flex;
  border-bottom:1px dotted black;
  flex-wrap: nowrap;
  align-items: center;
}

.oshirase_dl .oshirase_dtdd dt,
.oshirase_dl .oshirase_dtdd dd{
  font-size: 14px;
  text-decoration: none;
  text-indent: 1em;
  font-weight: bold;
}
 
dt::before{
  content:" ";
}

.oshirase_dl .oshirase_dtdd dt{
  width:98%; 
  padding:5px 0px;
 }

 


/*--------------------------------------------------------------------------------

.oshirase_dl .oshirase_dtdd{
  display:flex;
  align-items:center;
 }

.oshirase_dl .oshirase_dtdd dt{
 width:55%;
 
 padding:5px 0px;
 font-size: 14px;
}
.oshirase_dl .oshirase_dtdd dd{
 width: 43%;  
 padding:5px 0;
 margin-left: 5px;
 font-size: 14px;
 }  
 .oshirase_dl .oshirase_dtdd dt,.oshirase_dl .oshirase_dtdd dd{
  font-size: 14px;
}
*/

/*-------------------------------------------------------------------------------*/
/* -------------------------------- 学校住所 ------------------------------------ */
 .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:#ffffff;
}  
#page-top{
  position:fixed;
  right:30px;
  bottom: 50px;
  z-index:1;
  opacity:0;
  transform:translateY(100px);
}

/* ページトップ出現アニメーション */
#page-top.UpMove{
  animation:UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from{
      opacity:0;
      transform:translateY(120px);
   }
  to{
      opacity:1;
      transform:translateY(0);
  }
}
/* ページトップ格納アニメーション */
#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;
}

}

/* ------------------------------------ under 700px ------------------------------------*/
@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;
}
.f_text {
  color:rgb(0, 0, 0);
  font-size: 0.9rem;
}
.f_title{
  color:rgb(0, 0, 0);
  background-color: #ffbdff;
  margin:10px 0;
  padding:10px;
  border-radius: 3px;
}
.f_title p{
  
  font-weight: bold;
  font-size: 0.9rem;
}
p.f_text{
  font-size:0.8rem;
}
.kouchoukao .f_img{   /*  <-------  */
  max-width:120px;
  height:auto;
}
p.f_text2{
  font-size:0.8rem;
  padding-left: 5px;
}
}

/* ----------------bottom up---------------- */


