@charset"Shift_JIS";
                         /* @charset="UTF-8"; */

body,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%;
 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: 3px;

  border: none;
  
  background: none; padding: 6px 8px; cursor: pointer; color: #fff;
  /* width: 44px; height: 44px; */
  
  position: relative;
}
.hamburger-label { 
  display: block;
  font-size: 12px;
  /*margin-top: 2px;*/
   color: #000000;
   }

/* 三本線のバー */
.bar {
  display: block;
  width: 22px;
  height: 3px;
  background: #000000;
  border-radius: 2px;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .18s ease, top .28s;
  position: relative;
}

/* 個別バーの位置調整 */
.bar--top { transform-origin: center; }
.bar--mid { transform-origin: center; }
.bar--bot { transform-origin: center; }

/* ハンバーガーがアクティブ（変形して×） */
.hamburger.active .bar--top {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active .bar--mid {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .bar--bot {
  transform: translateY(-6px) 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: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; 
}

/*-----------------------------hover 拡大--------------------------------*/
.note_logo:hover img{
  transform: scale(1.2);
}

/*---------------------------------------------------------------------------*/
/*==768px莉･荳九?ｮ蠖｢迥ｶ*/

@media screen and (max-width:1100px){
	
.header-logo img{
  max-width:100%;
  width:auto;
  height:28px;
  margin-left:3px;
}
}

/*------------------------------ 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);
}
}


/*------------------------------ section_3 ------------------------*/
.section_03{
  position: relative;
  height: auto;
  margin:auto 5px;
  background-color: #f8f8f8;

}

/*-----------------------------  midashi set ---------------------------*/
.midashi_01 {
  
  position: relative;
  padding-top: 20px;
  color: #000000;
  line-height: 1.2;
  -webkit-box-reflect: below -10px -webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0) 10%,rgba(0,0,0,.2));
  margin-bottom: calc(1em + 10px);
}
.midashi_01 p{
  font-size: 30px;
  font-weight: bold;
  padding-left:10px;
  padding-top: 30px; 
}

.container{
  overflow: hidden;
}

/*-----------------------------  block ---------------------------*/
.block_1{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  /*align-items: center;*/
  /*width: 100%;*/
  max-height:500px;
  margin:0 10px 100px 10px;
  gap:30px;
  /*background-color: #e9e9e9;*/
}

.gazou , .moji{
  width: 50%;
  
}

.slidein{
  padding: 10px;
 
  border-radius: 8px;

  font-size: 25px;
  background: #ffffff;
/*  box-shadow: 0 4px 4px rgba(0,0,0,0.8);
  transition: 1s cubic-bezier(0.75, 0, 0.25, 1);*/
}

.slidein h3{
  width: 100%;
  font-size: 30px;
  color:#0b66d0;
  padding-left: 10px;

}
.slidein p{
 line-height: 1.5;
 letter-spacing:.1em;   /*--------------- 20250421 update -------------*/
 font-size:20px;
 padding: 10px;
 
 /*background-color: #0000003f;*/
}
/*.slidein img{
  padding:10px 5px;
  max-height: 200px;
}*/

.img01,.img02,.img03,.img04,.img05{ 
  position:relative;
  margin:5px;
  opacity: 0.6;
   
}
.img01 img{
  width: 100%;
  /*max-width:100%;*/ /*1920px*/
  object-fit:cover;
  position:relative;
  margin:5px auto; 
}

.img02 img{
   width: 100%;
  /*max-width:100%;*/ /*1920px*/
  object-fit:cover;
  position:relative;
  margin:5px auto; 
}

.img03 img{
   width: 100%;
  /*max-width:100%;*/ /*1920px*/
  object-fit:cover;
  position:relative;
  margin:5px auto; 
}

.img04 img{
   width: 100%;
  /*max-width:100%;*/ /*1920px*/
  object-fit:cover;
  position:relative;
  margin:5px auto; 
}

.img05 img{
   width: 100%;
  /*max-width:100%;*/ /*1920px*/
  object-fit:cover;
  position:relative;
  margin:5px auto; 
}








/*------------------------------ under 800px ------------------------*/
@media (max-width:800px){

.midashi_01{
  margin-bottom: calc(0.1em + 10px);
}

.midashi_01 p{
  font-size: 20px;
  font-weight: bold;

  padding-top: 10px; 
}

.block_1{
  flex-direction: column;
  position:relative;
  gap:0;
  margin:0 0 30px 0;
  max-height: 800px;
  background-color:#e6e6e6 ;

}

.slidein h3{
  width: 100%;
  font-size: 20px;
  color:#bd00a4;
}

.slidein{
  margin:0;
  border-radius: 8px;
  
  font-size: 15px;
  background: #e6e6e6;
  /*width: 100%;*/
}

.slidein p{
 line-height: 1.5;
 letter-spacing:.1em;   /*--------------- 20250421 update -------------*/
 font-size:15px;
 
}
.moji{
  position: relative;
  width: 100%;
  padding: auto;
}

.gazou{
  position: relative;
  width: 100%;
}
.img01 img{
  width: 100%;

  
}









}


/*-------------------------------お知らせ・サイドメニュー領域1228　メイン領域-------------------------------- */
.hontai{
    
    max-width:1100px;
    margin:30px auto 30px auto;
    font-size:16px;
    
    background-color: #ffffff;
    width:100%;
 }
 
 
 /* ------------------------------------お知らせ・サイドメニュー見出し------------------------------------ */
 h2{    
     margin: 15px auto;
     font-family: "M PLUS Rounded 1c";
     color:#000000;
     background-color:rgb(255, 255, 255);
     padding:10px;
     text-align:center;
     border-radius: 5px;border:solid 2px #000000;
     max-width: 98%;
 }
 .post-title{
     font-size:1.2rem;
 }
 
/* -------------------------------------------お知らせ　領域設定1229-------------------------------------- */

.conta_1{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr) );
    /*grid-template-columns:repeat(auto-fit,minmax(200px,1fr) );*/
    gap:1.5rem;
    /*grid-template-rows:minmax(300px,auto) ;*/

    width:98%;
    /*margin:10 auto 3rem;margin-left:5px;*/
     margin:10 auto 3rem;
    margin-left:auto;margin-right:auto;
    list-style:none;   

}

.come2{
    padding:10px 20px;
}

.c1_grid{
    background:rgb(232, 255, 255);
    border-radius:5px;
    margin:0;
    text-align:;
                             /*width:100%;*/
    height:250px;
    object-fit:cover;
    padding:10px;
    display:block;
}
.c1_grid a{
    color:rgb(0, 0, 0);
    font-weight:bold;
    text-align:center;
    font-family: "M PLUS Rounded 1c";
}
.come{
    color:rgb(0, 0, 0);
    font-weight:bold;
    font-size: 1.0em;
    text-align:center;
    font-family: "M PLUS Rounded 1c";
}

.c1_grid p{
    text-align:;
    padding:5px 8px;
    font-size: 1em;
    font-weight: bold;
    color:#000000;
    font-family: "M PLUS Rounded 1c";

}
/*.c1_grid:hover{
    background-color:#fe3ec8;
}*/
.c1_grid img{
    max-width:200px;
    height:auto;
    margin:2px;
    border-radius: 5px;object-fit:cover;
}


/*-------  グリッドコンテナ　タイプ３　---------*/

.c3_grid{
    background:rgb(208, 196, 255);
    border-radius:5px;
    margin:0;

                             /*width:100%;*/
    height:250px;
    object-fit:cover;
    padding:10px;
    display:block;
}

.c3_grid p{
    text-align: center;
    background-color: rgba(0, 0, 0, 0.74);
    padding:5px;color: #ffffff;
    border:dotted 1px #ffffff;
    font-weight: bold;
 }

.come3{
    position:relative;
    top:85%;
}

.f_size1 p{
    font-size: 1.2rem;
    color:red;
    text-align: center;
}
    .button_1 a {
        background: #3ad2b1;
        border-radius: 9999px;
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 250px;
        padding: 10px 25px;
        font-family: "M PLUS Rounded 1c";
        color: #333333;
        line-height: 1.8;
        text-decoration: none;
        transition: 0.3s ease-in-out;
        font-weight: bold;
    }
    .button_1 a:hover {
        background: #333333;
        color: #FFF;
    }
    .button_1 a:after {
        content: '';
        width: 5px;
        height: 5px;
        border-top: 3px solid #333333;
        border-right: 3px solid #333333;
        transform: rotate(45deg) translateY(-50%);
        position: absolute;
        top: 50%;
        right: 20px;
        border-radius: 1px;
        transition: 0.3s ease-in-out;
    }
    .button_1 a:hover:after {
        border-color: #FFF;
    }
    






/*--------------------------------令和6年度1学期-------------------------------------*/
#post1{
    background-image: url(../imgs/festa_chirashi.jpg);
    background-size:cover;
}

#post2{
    background-image: url(../);
    background-size: cover;

}

#post3{
    background-image: url(../);
    background-size: cover;
}

#img1{
    background-image: url(../photo/taikenphoto/21kikai.jpg);
    background-size: cover;
}

#img2{
    background-image: url(../photo/taikenphoto/22kikai.jpg);
    background-size: cover;
}

#img3{
    background-image: url(../photo/taikenphoto/23mashin.jpg);
    background-size: cover;
}

#img4{
    background-image: url(../photo/taikenphoto/24engine.jpg);
    background-size: cover;
}

#img5{
    background-image: url(../photo/taikenphoto/25moku.jpg);
    background-size: cover;
}

#img6{
    background-image: url(../photo/taikenphoto/26zentai.jpg);
    background-size: cover;
}


/* -----------------------------------------お知らせ　スクロールバー　デザイン1229------------------------------*/
.news-container::-webkit-scrollbar{
    background-color:rgb(0, 0, 0);
    width:10px;
    height:5px;
    border-radius:20px;
}
.news-container::-webkit-scrollbar-thumb{
    background-color: white;
    border:3px solid rgb(255, 0, 183);
    border-radius:20px;
}

.news-container::-webkit-scrollbar-thumb:hover{
    background-color:rgb(255, 247, 0);
}

/*----------------------------- 画像フェイドイン設定 css jquery ------------------*/
.fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 2.0s, transform 1.5s;
}
.fade.active {
	opacity: 1;
	transform: translateY(0px);
}



/* ------------------------------------ページトップアイコン設定領域---------------------------------------*/

/* -------------------------------- 学校住所 ------------------------------------ */
 .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);
  }
}
}

/* -------------------------------------------*/
/*---------------------------------- 外部リンク バナー イメージ設定 -----------------------*/
.come_02{
  position: relative;
  margin:25px auto;
  border-radius: 5px;
  border:solid 2px #000000;
  background-color:#ffddff;
  padding:3px;
  text-align:center;
}
.come_02 p{
  margin:10px auto;
  font-weight: bold;
  font-size: 1.0rem;
  font-family: "M PLUS Rounded 1c";
}


.ban_area{
  margin: 20px auto;
  
}
.ban_grid{ 
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; /* **アイコン間隔** */
  padding: 15px;
  display:grid;
  margin: 0 auto;
  /* max-width: 999px; */
} 
.banner{
 display: grid;
  grid-template-rows: 1fr auto; /* 上が伸びる領域、下がラベルの高さ */
  justify-items: center;
  align-items: center;
  padding: 8px 5px;
  border-radius: 5px;
  background: linear-gradient(135deg,#f9fcff,#ffddff);

  color: #fff;

  cursor: pointer;
  transition: transform 0.3s ease;
}

.banner img{ 
  max-width: 250px;
  max-height:auto;
  object-fit: contain;
 }

 /* -------------------------------- 学校住所 ------------------------------------ */
 
 
 /*------------------------------- 学校住所欄内 アクセス設定 ----------------------------*/

 @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---------------- */