/*----------------------------------------------------------------------------*/
/* --------------------------------------------------- common style */
/*----------------------------------------------------------------------------*/

/* --------------------------------------------------- import */
@import url(/2026siteikou/css/style_sidemenu.css);

/* --------------------------------------------------- print */
@media print{
    .no_print{
        display: none;
    }
}

/* --------------------------------------------------- font */
/* importで読み込めない？ケースがあるので（検証用） */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans CJK JP Thin"),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff2) format('woff2'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.woff) format('woff'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Thin.otf) format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 300;
  src: local("Noto Sans CJK JP Light"),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff2) format('woff2'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.woff) format('woff'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Light.otf) format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans CJK JP Regular"),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2) format('woff2'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff) format('woff'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf) format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans CJK JP Bold"),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2) format('woff2'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff) format('woff'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf) format('opentype');
  font-display: swap;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans CJK JP Black"),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff2) format('woff2'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.woff) format('woff'),
       url(https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Black.otf) format('opentype');
  font-display: swap;
}

/* --------------------------------------------------- common */
/* html,bodyタグの設定 */
html, body{
  margin: 0;      /* 余白の削除 */
  padding: 0;     /* 余白の削除 */
  height: 100%;   /* 縦の高さを100% */
  width: 100%;    /* 横の幅を100% */
  font-family: 'Noto Sans JP', sans-serif,'メイリオ',"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro";
  font-size: 62.5%; /*10px*/
  color: #000;
  background: #fff;
}
/* フォント太さ */
.noto100 {font-weight:100;}
.noto300 {font-weight:300;}
.noto350 {font-weight:350;}
.noto400 {font-weight:400;}
.noto500 {font-weight:500;}
.noto700 {font-weight:700;}
.noto900 {font-weight:900;}

/* リンクイメージのホバー時の透過 */
.link a:hover img, button:hover {
  opacity: .8;
}

/* リンクアイコンの余白 */
.icon_link {
  padding: 5px 0 0 5px;
}
.external_link a:hover img path {
  fill: red;
}
/* 寄せクリア */
.clear {
  clear:both;
}
.space10 {
  height: 10px;
}
.space20 {
  height: 20px;
}
.space30 {
  height: 30px;
}
.space40 {
  height: 40px;
}
.space50 {
  height: 50px;
}
/* イメージのライン（aタグ内のイメージにIE10以下ででラインが出るのを解除） */
img {
  border: 0px;
}

/* テキストエリア選択の青枠を消す */
button,
a,
input {
  outline: none;
}

/* text-align */
.txt-r {
  text-align: right;
}
.txt-c {
  text-align: center;
}

ul,ol,li,p,h1,h2,h3,h4,h5 {
  margin: 0;
  padding: 0;
}

/* --------------------------------------------------- wrapper */
@media screen and (min-width:1025px) {
  .wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
    display: table;
    font-size: 1.3rem;
    font-weight: 100;
  }
  .inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1005px;
  }
}
@media screen and (max-width:1024px) and (min-width:769px) {
  .wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
    display: inherit;
    font-size: 1.3rem;
    font-weight: 100;
  }
  .inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1005px;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
    display: inherit;
    font-size: 1.4rem;
    font-weight: 100;
  }
  .inner {
    margin: 0 auto;
    width: 80%;
    max-width: 768px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    width: 100%;
    min-height: 100%;
    position: relative;
    display: inherit;
    font-size: 1.4rem;
    font-weight: 100;
  }
  .inner {
    margin: 0 auto;
    width: 90%;
    max-width: 480px;
  }
}

/* --------------------------------------------------- ロゴ画像 */
.header-rogo {
  width: 100%;
  height: auto;  
  display: block;
}
.header-rogo img {
  margin: 10px 20px;
}

/* --------------------------------------------------- main */
@media screen and (min-width:1025px) {
  .container {
    width: 100%;
    height: 100%;
    text-align: left;
    background: #fff;
    display: table-cell;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
}
@media screen and (max-width:1024px) and (min-width: 769px) {
  .container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: 0;
    margin-right: 0;
    background: #fff;
    display: inherit;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 768px) and (min-width: 481px) {
  .container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: 0;
    margin-right: 0;
    background: #fff;
    display: inherit;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 480px) {
  .container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: 0;
    margin-right: 0;
    background: #fff;
    display: inherit;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2;
    overflow-x: hidden;
  }
}
.contents {
}
/* --------------------------------------------------- icon */
.icon-external-link::after {/* 別ウィンドウ */
  content: url("/2026siteikou/img/icon_external_link.svg");
  margin-left: 5px;
}
.icon-external-link-w::after {/* 別ウィンドウ（白） */
  content: url("/2026siteikou/img/icon_external_link_w.svg");
  margin-left: 5px;
}
.icon-pdf-link {
}
.icon-pdf-link::after {/* PDF */
  content: url("/2026siteikou/img/icon_pdf_link.svg");
  margin-left: 5px;
}
.icon-word-link {
}
.icon-word-link::after {/* WORD */
  content: url("/2026siteikou/img/icon_word_link.svg");
  margin-left: 5px;
}
.icon-excel-link::after {
/*  position: relative;*/
  content: url("/2026siteikou/img/icon_excel_link.svg");
  margin-left: 5px;
}
.icon-excel-link::after {/* EXCEL */
  content: url("/2026siteikou/img/icon_excel_link.svg");
  margin-left: 5px;
}
.icon-powerpoint-link::after {/* PowerPoint */
  content: url("/2026siteikou/img/icon_powerpoint_link.svg");
  margin-left: 5px;
}


/* --------------------------------------------------- pagetop */
#page-top {
  position: fixed;
  bottom: 10px;
  right: 245px;
  z-index: 10;
}
#page-top a {
  text-decoration: none;
  display: block;
}
#page-top a:hover {
  text-decoration: none;
}
.page-top-responsive {
  display: none!important;
}
@media screen and (max-width:1024px) {
  #page-top {
    position: fixed;
    right: 20px;
  }
}
@media screen and (max-width: 480px) {
  #page-top {
    bottom: 10px;
    right: 10px;
  }
  .page-top {
    display: none!important;
  }
  .page-top-responsive {
    display: inherit!important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(2,155,150, 0.6);
  }
  .page-top-responsive::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 17px;
    width: 14px;
    height: 14px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
  }
}

/* --------------------------------------------------- topic-area */
/* 見出し１ */
.area-title {
  width: 100%;
  height: auto;
  background: rgb(76,181,179);
  display: block;
  text-align: center;
}
.area-title div {
  margin: 0 auto;
  width: 95%;
  max-width: 997px;
  position: relative;
}
.area-title .title-ja,
.area-title .title-jaonly {
  font-size: 3.1rem;
  font-weight: 100;
  color: #fff;
  margin: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  text-aligin: center;
  line-height: 1.2em;
}
.area-title .title-en {
  font-size: 3.2rem;
  font-weight: 100;
  color: #fff;
  margin: 0;
  position: absolute;
  top: 25px;
  right: 0;
}
@media screen and (max-width: 680px) and (min-width: 481px) {
  .area-title .title-ja {
  padding-top: 15px;
  padding-bottom: 15px;
  }
  .area-title .title-en {
  }
}
@media screen and (max-width: 480px){
  .area-title {
    text-align: center;
  }
  .area-title .title-ja {
    font-size: 3.0rem;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .area-title .title-en {
    display: none;
  }
}

/* 見出し２ */
.area-second-title-mark {
  width: 10px;
  height: 20px;
  background: rgb(76,181,179);
  display: inline-block;
  margin: 0 7px -2px 0;
}
.area-second-title {
  font-size: 2.2rem;
  font-weight: 300;
  color: #000;
  padding: 20px 0 10px 0;
  margin: 0;
  display: inline-block;
}
/* 見出し３ */
.area-third-title {
  font-size: 2.2rem;
  font-weight: 400;
  color: rgb(76,181,179);
  padding: 20px 0 10px 0;
  margin: 0;
}

/* リンク */
.area-inner {
  display: block;
  padding-bottom: 50px;
}
.area-inner ul {
  margin: 10px 0 50px 0;
  padding: 0;
  list-style: none;
}
.area-inner ul li {
  padding: 0;
}

.second-inner {
  margin: 0 auto;
  width: 80%;
  max-width: 900px;
}
@media screen and (max-width:1024px) {
  .second-inner {
    margin: 0 auto;
    width: 90%;
  }
}

/* --------------------------------------------------- footer*/
/* 問い合わせ先 */
.toiawase {
  border: #666666 1px solid;
  padding: 10px 10px 15px;
  margin: 0 auto;
  width: 90%;
}
.toiawase-title {
  line-height: 200%;
}
.mobile-br {
  display: none;
}
.mobile-br2 {
  display: none;
}
.zimusitu {
  margin: 0 0 0 1em;
}
.denwa {
  line-height: 200%;
  margin: 0 0 0 1em;
}
@media screen and (max-width: 780px) and (min-width: 481px) {
  .mobile-br {
    display: block;
  }
  .space-em1::after {
    content: "　";
  }
}
@media screen and (max-width: 480px) {
  .mobile-br2 {
    display: block;
  }
  .space-em1::after {
    content: "　";
  }
}

/* コピーライト */
.copyright {
  width: 100%;
  height: 50px;
  background: #f8f7f0;
  position: absolute;
  bottom: 0;
}
.copy-p {
  display: block;
  text-align: center;
  line-height: 50px;
  font-size: 1.2rem;
}
.deco-orangered {
  color: #ff4500;
}

/* --------------------------------------------------- img-box */
.img-box {
  width: 100%;
  margin: 40px 0;
  overflow: auto;
}
.img-box .cell-two {
  width: 50%;
  float: left;
  margin: 0 auto;
}
.img-box iframe {
  width: 97%;
  height: 250px;
}
.img-box p {
  margin-bottom: 30px;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (max-width: 780px) and (min-width: 481px) {
  .img-box .cell-two {
    width: 50%;
    margin-bottom: 10px;
  }
  .img-box iframe {
    height: 150px;
  }
}
@media screen and (max-width: 480px) {
  .img-box .cell-two {
    width: 100%;
    margin-bottom: 10px;
  }
  .img-box iframe {
    height: 200px;
  }
}
/* --------------------------------------------------- indent-box */
.indent-box-one-free {
  text-indent: -1.0em;
  margin-left: 1.0em;
}
.parapaddingleft {
  padding-left: 1em;
}

.sitei_gakuen-top a {
  text-decoration-line: none;
  margin: 0 5px;
  color: #666666;
} 
.sitei_gakuen-top li {
  list-style-type: disc;
  margin: 5px 0 5px 2em;
}