@charset "UTF-8";

@font-face {
  font-family:'Noto Sans JP';
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:local("Noto Sans CJK JP"),
    local("Noto Sans JP"),
    url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
    url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
    url(//fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}

/*------------------------------------------------
tags
------------------------------------------------*/
*{
  margin:0;
  padding:0;
  -webkit-box-sizing:border-box;
     -moz-box-sizing:border-box;
       -o-box-sizing:border-box;
      -ms-box-sizing:border-box;
          box-sizing:border-box;
  font-style:normal;
  font-size:16px;
}
html{height:100%;}
body{
  width:100%;
  height:100%;
  color:#333;
  font-family:"Roboto",'Noto Sans JP',"Segoe UI", 'YuGothic', 'Yu Gothic', '游ゴシック', '游ゴシック体', 'Noto Sans Japanese', "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight:400;
}
article,aside,details,figcaption,figure,
footer,header,nav,main,section{display:block;}
h1,h2,h3,h4,h5,h6{font-weight:400;}
ul li{list-style:none;}
table{border-collapse:collapse;}
img{max-width: 100%;border:0;vertical-align:bottom;pointer-events:none;}
a{color:#2c97f1;}
a:hover{text-decoration:none;}
a:hover img{
  filter:alpha(opacity=80);
    -moz-opacity:.8;
    opacity:.8;
}
a[href^="tel:"]{pointer-events:none;}
svg{width:0;height:0;}
p{line-height:1.75em;}
small{font-size:.8em;}


/* ---------------------------------------------------
| 共通CSS
--------------------------------------------------- */
.centering{text-align:center;}
.righter{text-align:right;}
.note{font-size:.9em !important;color:#888;}
.fw900{font-weight:900;}
.sp-only{
  display:none;
}
/* ---------- responsive ---------- */
@media screen and (max-width:767px){
  a[href^="tel:"]{
    pointer-events: auto;
  }
  h2{
    text-align: center;
  }
  h2 span{
  }
  h3{
  }
  h4{
  }
  p{
  }
  .pc-only{
    display: none;
  }
  .sp-only{
    display: block;
  }
}

/* ---------------------------------------------------
| #container, #contents, main
--------------------------------------------------- */
#container{
  min-height:100vh;
  position:relative;
  padding-bottom:90px;
}
.inner{
  position:relative;
  width:1080px;
  margin:0 auto;
}
#contents{
  margin:40px 0 0;
}
main{
  float:left;
  width:800px;
}
/* ---------- responsive ---------- */
@media screen and (max-width:767px){
  .inner{
    width:96%;
    margin:0 auto;
  }
  main{
    margin:2em 0 0;
  }
}

/* ---------------------------------------------------
| aside
--------------------------------------------------- */
aside{
  float:right;
  width:240px;
}
aside .ctgrTTL{
  color:#025bb8;
  text-align:center;
  overflow:hidden;
}
aside .ctgrTTL span{
  display:inline-block;
  position:relative;
}
aside .ctgrTTL span::before,
aside .ctgrTTL span::after{
  position:absolute;
  top:0;bottom:0;
  margin:auto;
  content:"";
  width:100%;height:2px;
  border-top:1px dashed #025bb8;
  border-bottom:1px dashed #025bb8;
}
aside .ctgrTTL span::before{right:calc(100% + .5em);}
aside .ctgrTTL span::after{left:calc(100% + .5em);}

/* ---------- responsive ---------- */
@media screen and (max-width:767px){
  aside{
    float:none;
    margin-top:2em;
    width:100%;
  }
}

/* ---------------------------------------------------
| #sdnv
--------------------------------------------------- */
#sdnv{
  margin:0 0 2rem;
  font-size:.9em;
  border-width:4px 1px;
  border-style:solid;
  border-color:#666;
  background:#fff;
}
#sdnv li{
  padding:2px;
  line-height:1.5em;
}
#sdnv li a{
  position:relative;
  display:block;
  padding:1em .5em 1em 1.4em;
  color:#333;
  text-decoration:none;
}
#sdnv li.current a{
  color:#fff;
  text-decoration:none;
  background:#2e6eb1;
}
#sdnv li a:hover{text-decoration:underline;color:#2e6eb1;}
#sdnv li.current a:hover{
  text-decoration:none !important;
  color:#fff !important;
}
#sdnv li a::before{
  position:absolute;
  top:0;bottom:0;
  left:.5em;
  margin:auto;
  content:"";
  width:0;height:0;
  border-style:solid;
  border-width:.36em;
  border-color:transparent transparent transparent #2e6eb1;
}
#sdnv li a:hover::before{
  border-color:transparent transparent transparent #2e6eb1;
}
#sdnv li.current a::before{
  border-color:transparent transparent transparent #fff;
}

/* ----- #sdnv responsive ----- */
@media (min-width:769px){
  #sdnv li{
    border-top:1px solid #999;
  }
  #sdnv li:first-child{
    border-top:none;
  }
  #sdnv li.ch{
    padding-left:1em;
    border-top:1px dashed #bbb;
  }
}

@media (max-width:767px) {
  #sdnv{
    margin-bottom:2rem;
    font-size:0;
    border:none;
  }
  #sdnv li{
    display:inline-block;
    width:50%;
    font-size:1.2rem;
    border-right:1px solid #888;
    border-bottom:1px solid #888;
  }
  #sdnv li:nth-child(odd){
    border-left:1px solid #888;
  }
  #sdnv li:first-child,#sdnv li:nth-child(2){
    border-top:1px solid #888;
  }
  #sdnv li a{
    padding:1em .3em 1em 1.4em;
    line-height:1.4em;
  }
  .midHid{display:none;}
}

/* ---------------------------------------------------
| header
--------------------------------------------------- */
header{
  padding:2em 0;
  position:relative;
  background:#fff;
  border-bottom:1px solid #ccc;
  box-shadow:0 1px 2px rgba(0,0,0,.1);
  z-index:10000;
}
/* --------- responsive --------- */
@media screen and (max-width:767px){
  header{

  }
}
/* ---------------------------------------------------
| #fixedHeader
--------------------------------------------------- */
#fixedHeader{
  position:fixed;
  display:flex;
  justify-content:space-between;
  top:-200px;
  width:100%;
  background:#fff;
  border-bottom: .3rem solid #2e6eb1;
  box-shadow:0 .2rem .2rem rgba(0,0,0,.2);
  transition:.5s;
  z-index:10000;
}
#fixedHeader.show{
  top:0;
}
#fixedHeader figure{
  width:20%;
  padding:1rem 2rem;
}
#fixedHeader figure .header-logo{
  width:100%;
  max-width:200px;
  max-height:30px;
}
#fixedHeader nav{
  width:80%;
}

/* ---------------------------------------------------
| nav
--------------------------------------------------- */
nav ul.pa{
  display:flex;
  justify-content:space-between;
  margin:0 auto;
  color:#555;
}
nav ul.pa a{
  color:#555;
  text-decoration:none;
}
#glnv ul.pa{
  width:80%;
}
nav ul.pa > li{
  display:block;
  position:relative;
  width:19%;
  font-size: 1.6rem;
  text-align:center;
}
nav ul.pa > li span{
  display:block;
  padding:1.2em 0 1em;
  cursor:pointer;
}
nav ul.pa > li span:hover{
  color:#00a5d9;
}
nav li.selected span{
  color:#fff;
  background:#2e6eb1;
}
nav ul.pa > li.selected span:hover{
  color:#fff;
}
.glnv li.selected span{
  border-radius:.5em .5em 0 0;
}
nav ul.ch{
  position:absolute;
  top:3.6em;
  margin:0;
  padding:0 1em;
  color:#fff;
  font-size:.9em;
  background:rgba(46,110,177,.9);
  border-radius:0 0 .5em .5em;
  box-shadow:0 .3em .5em rgba(0,0,0,.3);
  transition:.3s;
}
.glnv ul.ch{
  left:0;
  width:100%;
}
#fixedHeader ul.ch{
  left:-15%;
  width:130%;
}
nav ul.ch li{
  width:100%;
  height:0;
  border-bottom:transparent;
  overflow:hidden;
  transition:.3s;
}
nav ul.ch li:last-child{
  border-bottom:none !important;
}
nav ul.pa li:hover > ul.ch li{
  height:4em;
  border-bottom:1px dashed rgba(255,255,255,.5);
}
nav ul.pa li:hover > ul.ch li.h2x{height:5em;}
nav ul.pa li:hover > ul.ch li.h3x{height:6em;}
nav ul.ch li a{
  display:block;
  padding:1.5em 0;
  color:#fff;
  transition:.3s;
}
nav ul.ch li a:hover{
  color:#00a5d9;
}

/* --------- responsive --------- */
@media screen and (min-width:1200px){
  #fixedHeader ul.pa{
    width:80%;
  }
}
@media screen and (min-width:768px) and (max-width:1199px){
  #fixedHeader ul.pa{
    width:90%;
    margin-left:10%;
  }
}
@media screen and (min-width:850px) and (max-width:999px){
  #fixedHeader ul.pa > li{
    font-size: 1.4rem;
  }
}
@media screen and (min-width:768px) and (max-width:849px){
  #fixedHeader ul.pa > li{
    font-size: 1.3rem;
  }
  #fixedHeader ul.ch{
    padding:0 .5em;
  }
}
@media screen and (max-width:767px){
  #fixedHeader, .glnv{
    display:none;
  }
}

/* ------------------------------------------------
navigation(#navDrawer)
------------------------------------------------ */
#navDrawer{display:none;float:right;}

/* ----- #navDrawer responsive ----- */
@media (max-width:767px) {
  #navDrawer{display:block;position:absolute;top:.1rem;right:1rem;}
  .ndHide{display:none;}
  #ndOpener{
    display:inline-block;
    width:30px;
    height:28px;
    vertical-align:middle;
    cursor:pointer;
  }
  #ndOpener span{
    display:block;
    position:absolute;
    content:"";
    width:25px;height:3px;
    border-radius:3px;
    background:#555;
    box-shadow:0 8px #555,0 16px #555;
  }
  #ndCloser{
    display:none;
    position:fixed;
    z-index:100;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    opacity:0;
    transition:.3s ease-in-out;
  }
  #ndCont{
    overflow:auto;
    position:fixed;
    top:0;
    right:0;
    width:90%;
    max-width:330px;
    height:100%;
    background:#fff;
    transition:.3s ease-in-out;
    -webkit-transform:translateX(105%);
    transform:translateX(105%);
    z-index:9999;
  }
  #ndCheck:checked ~ #ndCloser{display:block;opacity:.5;}
  #ndCheck:checked ~ #ndCont{
    -webkit-transform:translateX(0%);
    transform:translateX(0%);
    box-shadow:-6px 0 25px rgba(0,0,0,.2);
  }
  /* ----- nav部分 ----- */
  #ndCont ul li a,#ndCont ul li label{
    display:block;
    margin:0;
    padding:1em .5em;
    color:#333;
    text-decoration:none;
    cursor:pointer;
  }
  #ndCont ul.pa > li{border-bottom:1px solid #999;}
  #ndCont ul.ch{
    height:0;opacity:0;
    padding-left:2em;
    overflow:hidden;
    transition:.3s;
  }
  #ndCont ul.ch li{border-top:1px dashed #999;}
  #ndCont ul.pa > li a,#ndCont ul.ch li a,#ndCont ul li label{position:relative;}
  #ndCont ul.pa > li a::after,#ndCont ul.ch li a::after,#ndCont ul li label::after{
    position:absolute;
    top:0;bottom:0;
    right:.5em;
    margin:auto;
    content:"";
    width:.4em;height:.4em;
  }
  #ndCont ul.pa > li a::after,#ndCont ul.ch li a::after{
    border-top:2px solid #60c1c3;
    border-right:2px solid #60c1c3;
    transform:rotate(45deg);
  }
  #ndCont ul li label::after{
    border-top:2px solid #999;
    border-right:2px solid #999;
    transform:rotate(135deg);
  }
  #ndCont input{display:none;}
  #ndCont input:checked + ul.ch{height:auto;opacity:1;}
}

/* ---------------------------------------------------
| ボタン
--------------------------------------------------- */
.btn,.btnRev{
  width:30rem;
  margin:4rem auto 0 !important;
}
.btn a,.btnRev a{
  display:block;
  padding:1em;
  color:#00a5d9;
  background:rgba(255,255,255,.3);
  text-align:center;
  text-decoration:none;
  border:1px solid #00a5d9;
  transition:.3s;
}
.btnRev a{
  color:#fff;
  background:rgba(0,165,217,.8);
  border:2px solid #00a5d9;
}
.btn a:hover{
  color:#fff;
  background:rgba(0,165,217,.8);
}
.btnRev a:hover{
  color:#00a5d9;
  background:rgba(255,255,255,.8);
}
/* --------- responsive --------- */
@media screen and (min-width:768px) and (max-width:1079px) {
  .btn,.btnRev{
    width:30rem;
  }
}
@media screen and (max-width:767px){
  .btn,.btnRev{
    width:60%;
    margin:2rem auto 0 !important;
  }
}



/* ---------------------------------------------------
| footer
--------------------------------------------------- */
footer{
  position: absolute;
  bottom:0;
  width:100%;
  padding:2em 0;
  color:#fff;
  background:#025bb8;
}
#ftCopy{text-align:center;}

/* --------- responsive --------- */
@media screen and (max-width:767px){
  footer{padding:1em 0;}
}

/*------------------------------------------------
clearfix (easy clearing by PIE)
------------------------------------------------*/
.cf:after,#contents:after {
  content:"";
  display:block;
  height:0;
  clear:both;
  visibility:hidden;
}
/* Hides from IE-mac */
* html .cf{height:1%;}
.cf{display:block;}
/* End hide from IE-mac */
/*----------------------------------------------*/
