@charset "utf-8";

html, body, div, span, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, 
pre, abbr, address, cite, code, del, 
dfn, em, img, ins, kbd, q, samp, 
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot,
thead, tr, th, td, article, aside, canvas,
details, figcaption, figure, footer,
header, hgroup, menu, nav, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
}
body{
    line-height: 1;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
    display: block;
}
ul, li{
    list-style: none;
}
address, em, strong{
    font-style: normal;
}
blockquote::before, blockquote::after,
q::before, q::after{
    content: '';
    content: none;
}
a{
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}
img{
    vertical-align: middle;
    border: none;
}
del{
    text-decoration: line-through;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
input, select{
    vertical-align: middle;
}
.textcenter{
    text-align: center;
}
a{
    color: #000D86;
    text-decoration: underline;
}
a:hover {
    opacity: 0.8;
}
a:visited{
    color: #000D86;
}
.textRight{
    text-align: right;
}
.textLeft{
    text-align: left;
}
.textCenter{
    text-align: center;
}

/*-----------------------
サイトの幅を定義しています
-------------------------*/
.container{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
}
/*------------------------
PDFにリンクの場合、PDFアイコン付与
--------------------------*/
a[href*=".pdf"]::after{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 34px;
	margin-right: 10px;
	background-image : url(pdfIcon.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 25px auto;
}

/*-----------------------
ヘッダー（学校ロゴやメニュー項目になります。
-------------------------*/
.header{
    border-top: 5px solid #018EA3;
}
.siteLogo{
	 /*学校ロゴ*/
    text-align: center;
}
.siteLogo img{
    width: 100%;
    max-width: 390px;
    margin: 2rem 0;
}
@media (max-width: 599px) {
    .siteLogo img{
        width: 100%;
        max-width: 300px;
        margin: 3rem 0 -10px 0;
    }
}
/*------------------------
ナビゲーション(PC用)
--------------------------*/
.navPc li{
    display: inline-block;
    margin-right: 1rem;
}
.navPc li:last-child{
    margin-right: 0;
} 
.navPc li a{
    color: #000;
    text-decoration: none;
}
.active__li{
    border-bottom: 3px solid #018EA3;
    padding-bottom: 0.5em;
}
.navPc li a:hover{
    border-bottom: 3px solid #018EA3;
    padding-bottom: 0.5em;
}

/*-------------------------
スマートフォン用ナビゲーション
---------------------------*/
@media (max-width: 659px) {
    #g-nav{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        z-index: 999;
        /*ナビのスタート位置と形状*/
      top:-120%;
        left:0;
      width:100%;
        height: 100vh;/*ナビの高さ*/
      background:#018EA3;
        /*動き*/
      transition: all 0.6s;
    }
    
    /*アクティブクラスがついたら位置を0に*/
    .panelactive#g-nav{
        top: 0;
    }
    
    /*ナビゲーションの縦スクロール*/
    .panelactive#g-nav #g-nav-list{
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;/*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /*ナビゲーション*/
    #g-nav ul{
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    
    /*リストのレイアウト設定*/
    
    #g-nav li{
      list-style: none;
        text-align: center; 
    }
    
    #g-nav li a{
      color: #FFF;
      text-decoration: none;
      padding:10px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: bold;
    }
    
    /*========= ボタンのためのCSS ===============*/
    .openbtn1{
      position:fixed;
        z-index: 9999;/*ボタンを最前面に*/
      top:10px;
      right: 10px;
      cursor: pointer;
        width: 50px;
        height:50px;
    }
      
    /*×に変化*/  
    .openbtn1 span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
      background-color: #666;
        width: 45%;
      }
    
    .openbtn1 span:nth-of-type(1){
      top:15px; 
    }
    
    .openbtn1 span:nth-of-type(2){
      top:23px;
    }
    
    .openbtn1 span:nth-of-type(3){
      top:31px;
    }
    
    .openbtn1.active span:nth-of-type(1){
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn1.active span:nth-of-type(2) {
      opacity: 0;
    }
    
    .openbtn1.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
}


/*-------------------------
スライダー
---------------------------*/
.slhike{
    background-color: #CFE3E6;
    margin-top: 40px;
}
.slider{
    width: 94%;
    margin: 0 auto;
}
.slider img{
    width: 100%;
    height: auto;
}
.slider .slick-slide{
    margin: 0 10px;
}
.slick-prev,
.slick-next{
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}
.slick-prev{
    left: -1.5%;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
}
.slick-next{
    right: -1.5%;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

/*--------------------
学校教育目標
----------------------*/
.kymokuCon{
    background-image : url(backMon.png);
    background-repeat: repeat;
    margin: 3rem 0;
    padding: 1em 0;
}
.kymoku{
    text-align: center;
}
.kymoku h2{
    color: #018EA3;
    font-size: 1.75rem;
    letter-spacing: 0.1em;
    margin: 0.5em 0;
}
.kymoku p{
    color: #018EA3;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5em;
    line-height: 1.5em;
}
.gak3pr {
    display: flex;
}
.gak3pr > div{
    margin-right: 30px;
    flex: 1;
}
.gak3pr > div:last-child{
    margin-right: 0;
}
.gak3pr > div p{
    color: #018EA3;
    text-align: center;
    font-size: 1.5rem;
    background-color: #fff;
    border-top: 1px dotted #018EA3;
    border-bottom: 3px solid #018EA3;
    margin: 0.5em 0 1em 0;
    padding: 0.5em 0;
}
@media (max-width: 599px) {
    .gak3pr{
        display: block;
    }
    .gak3pr > div{
        margin-right: 0;
    }
    .gak3pr >div {
    }
}

/*---------------------
お知らせと各種リンク
-----------------------*/
.infoWara {
    display: flex;
}
.infoWara > div{
    flex: 1;
    margin-right: 40px;
}
.infoWara > div:last-child{
    margin-right: 0;
}
@media (max-width: 599px) {
    .infoWara{
        display: block;
    }
    .infoWara > div{
        margin-right: 0;
    }
}
.infoTitle h3{
    position: relative;
    color: #FFA405;
    font-size: 1.3rem;
    border: 3px solid #FFA405;
    padding: 0.5em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    vertical-align: middle;
}
.infoTitle h3::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image : url(newIcon.png);
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
.infoTitle dl{
    margin: 2em 0 1em 0;
}
.infoTitle dt{
    float: left;
}
.infoTitle dd{
    margin: 1em 0 1em 8rem;
}
/*---------------------
保護者の皆様へ
-----------------------*/
.hogosyaInfo h3{
    position: relative;
    color: #6D6602;
    font-size: 1.3rem;
    border: 3px solid #6D6602;
    padding: 0.5em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    vertical-align: middle;
}
.hogosyaInfo h3::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    background-image : url(hogosyaIcon.png);
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
.hogosyaInfo ul{
    margin: 1.5em 0;
}
/*----------------------
メール配信システムへの登録方法について
------------------------*/
.mailTouroku a{
    background-color: #FFA405;
    color: #fff;
    padding: 1em;
    display: block;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.mailTouroku a::after{
    content: none;
}
.mailTouroku a::before{
    content: '';
    display: inline-block;
    margin-top: 5px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background-image : url(mailIcon.png);
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
/*---------------------------
仙台市教育委員会リンク
-----------------------------*/
.kyouikuInLink{
    text-align: center;

}
.kyouikuInLink a{
    display: inline-block;
    border: 3px solid #ff0505;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 1em 2em;
    margin: 3em 0;
    line-height: 1.5em;
}
.kyouikuInLink a::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image : url(arrowicon.png);
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}

/*--------------------------
学校だより、年間行事、学校ブログアイコン
----------------------------*/
.linkbtnWra {
    display: flex;
    justify-content: space-between;
}
.linkbtnWra > div{
    flex: 1 1 0;
    border: 3px solid #018EA3;
    padding: 2em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-align: center;
    margin-right: 20px;
}
.linkbtnWra > div img{
    margin-bottom: 10px;
}
.linkbtnWra > div:last-child{
    margin-right: 0;
}
@media (max-width: 599px) {
    .linkbtnWra{
        display: block;
    }
    .linkbtnWra > div{
        margin-right: 0;
        margin-bottom: 1.5em;
    }
}

/*-------------------------
学校ビオトープ・各種リンク
---------------------------*/
.griCent{
    display: flex;
    margin: 3em 0;
}
.griCent__boxA{
    flex: 1 1 0;
    margin-right: 30px;
}
.griCent__boxA img{
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 5px 5px 5px rgb(210, 210, 210);
}
.griCent__boxA a:hover {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}
.griCent__boxB{
    flex: 1 1 0;
    border: 1px solid #018EA3;
    padding: 1.5em;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.griCent__boxB h3{
    color: #018EA3;
    font-size: 1.5rem;
    display: block;
    text-align: center;
}
.griCent__boxB ul{
    margin: 1.5em 0;
}
.griCent__boxB li{
    margin: 1em 0;
    line-height: 1.5em;
}
.griCent__boxB li a{
    position: relative;
}
.griCent__boxB li a::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image : url(arrowicon.png);
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
@media (max-width: 599px) {
    .griCent{
        display: block;
    }
    .griCent > div{
        margin-right: 0;
        margin-bottom: 2em;
    }
}

/*-------------------
ダウンロードエリア
---------------------*/
.downloadArea{
    background-color: #EAF9FB;
    padding: 3em 0;
}
.downloadConte h3{
    color: #018EA3;
    font-size: 1.75rem;
    text-align: center;
}
/*--------------------
ダウンロードリンクボタン
----------------------*/
.downloadLinkbtn ul{
    margin: 0.5em 0;
}
.downloadLinkbtn li{
    display: inline-block;
    line-height: 1.5em;
}
.downloadLinkbtn a{
    display: inline-block;
    position: relative;
    border: 3px solid #018EA3;
    background-color: #fff;
    padding: 1em;
    margin: 0.5em 1em 0.5em 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.downloadLinkbtn a::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image : url(arrowicon.png);
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
/*--------------------
下部リンク
----------------------*/
.footlink ul{
    margin: 1em 0;
}
.footlink li{
    display: inline-block;
    margin-right: 1rem;
    line-height: 1.5em;
}
.footlink a{
    display: inline-block;
    position: relative;
    line-height: 1.5em;
}
.footlink a::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image : url(arrowicon.png);
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
}
/*-----------------------
フッター
-------------------------*/
.footArea{
    padding: 2em 0 1em 0;
    position: relative;
    border-top: 3px solid #018EA3;
}
.pagetopbtn{
    position: absolute;
    bottom: 10px;
    right: 10px;
}
.footAreap{
    margin: 1em 0;
    line-height: 1.5em;
}
.footAreaWra {
    display: flex;
}
.footAreaWra__boxA{
    max-width: 400px;
    margin-right: 40px;
}
.footAreaWra__boxA img{
    width: 100%;
}
.footAreaWra__boxB ul{
    flex: 1;
    margin: 1em 0;
}
.footAreaWra__boxB li{
    display: inline-block;
    margin-right: 1rem;
    line-height: 1.5em;
}
@media (max-width: 599px) {
    .footAreaWra{
        display: block;
    }
}
.fouemagin{
    margin-top: 5em;
}
/*----------------------
ページタイトル
------------------------*/
.pageTitleArea{
    background-color: #018EA3;
    margin: 2em 0 10px 0;
}
.pageTitle{
    padding: 0.7em 0;
    margin: 1em 0 0 0;
}
.pageTitle h2{
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.5em;
}
/*------------------------
パンくず
--------------------------*/
.pankuzu{
    font-size: 0.875rem;
    margin: 0.5em 0;
    line-height: 1.3em;
}
/*------------------------
下層ページ
--------------------------*/
.kasouContents{
    margin-top: 100px;
}
.kasouContents h2{
    background-color: #018EA3;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 10px;
    line-height: 1.5em;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 0.4em;
    margin: 3em 0 2em 0;
}
.kasouContents h3{
    color: #018EA3;
    padding: 0.3em 0;
    border-left: 4px solid #018EA3;
    font-size: 1.3rem;
    line-height: 1.5em;
    margin: 2em 0 2em 0;
    padding-left: 10px;
    border-bottom: 1px solid #018EA3;
    border-top: 1px solid #018EA3;
}
.kasouContents h4{
    color: #018EA3;
    font-size: 1.3rem;
    margin: 2em 0;
    border-left: 5px solid #018EA3;
    padding: 0.2em 0 0.2em 10px;
}
.kasouContents p{
    line-height: 1.7em;
    text-indent: 1rem;
}
.kasouContents ul{
    margin: 0.5em 0;
}
.kasouContents li{
    line-height: 1.5em;
}
.kurinokiImg img{
    max-width: 300px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 1em 0;
}
.pageWraper p{
    line-height: 1.7em;
    margin-bottom: 1rem;
    text-indent: 1rem;
}
.pageWraper dt{
    line-height: 1.5em;
    margin-top: 1em;
    font-weight: bold;
}
.pageWraper dd{
    line-height: 1.7em;
}
/*-----------------------
学校概要ページ
-------------------------*/
.kousyouImg img{
    max-width: 200px;
    width: 100%;
}
/*校歌*/
.koukaImg img{
    margin: 2em 0;
    width: 100%;
    max-width: 800px;
}
/*児童会の歌*/
.jidoukaiSongs img{
    max-width: 700px;
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin: 0 0 2em 0;
}
/*児童会シンボルマーク*/
.jidoShin {
    display: flex;
}
.jidoShin > div {
    flex: 1 1 0;
}
.jidoShin > div img{
    width: 100%;
    max-width: 300px;
}

/*-----------------------
ウェブポリシー
-------------------------*/
.webpolicyPage li{
    list-style: decimal;
    margin: 0 0 0 2rem;
}
/*-----------------------
学校だより
-------------------------*/
.gatayo li{
    list-style: disc;
    margin-left: 2rem;
}
/*-----------------------
くりりん
-------------------------*/
.kuririWraper{
    display: flex;
    justify-content: space-between;
    margin: 2em 0;
}
.kuriri_boxA{
    flex: 0 0 60%;
    margin-right: 40px;
}
.kuriri_boxB {
    flex: 1;
}
.kuriri_boxB img{
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
@media (max-width: 599px) {
    .kuririWraper{
        display: block;
    }
    .kuriri_boxA{
        margin-right: 0;
    }
    .kuriri_boxB img{
        margin: 1em 0;
    }
}
.kuriTable{
    width: 100%;
    margin-top: 20px;
}
.kuriTable thead th{
    background-color: #018EA3;
    color: #fff;
    font-weight: normal;
    text-align: center;
    padding: 0.5em;
    border-right: 1px solid #fff;
}
.kuriTable thead th:last-child{
    border-right: 1px solid #018EA3;
}
.kuriTable thead th:first-child{
    border-left: 1px solid #018EA3;
}
.kuriTable tbody td{
    text-align: center;
    padding: 0.5em;
    border: 1px solid #018EA3;
    background-color: #fff;
    vertical-align: middle;
}
/*-----------------------
くりりんデータベース
-------------------------*/
.kuririnDataWraper{
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}
.kuririnData_boxA{
    flex: 0 0 50%;
    margin-right: 40px;
}
.kuririnData_boxB {
    flex: 1;
}
.kuririnData_boxB img{
    width: 100%;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

@media (max-width: 599px) {
    .kuririnDataWraper{
        display: block;
    }
    .kuririnData_boxA{
        margin-right: 0;
    }
    .kuririnData_boxB img{
        margin: 1em 0;
    }
}

/*-----------------------
学校支援地域本部
-------------------------*/
.kurinomiImg img{
    width: 100%;
    text-align: center;
    max-width: 700px;
}
.kasouContents dt{
    margin: 1em 0 0.5em 0;
}
.kasouContents dd{
    line-height: 1.5em;
    margin-left: 1rem;
}