@charset "utf-8";
/* CSS Document */

html , body {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #282f52;
  font-size: 16px;
  font-size: 3.4666vw;
  letter-spacing: 0.1em;
  font-family:  'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-feature-settings: 'palt' 1;
  font-weight: 400;
}
.spitem {
  display: block;
}
.pcitem {
  display: none;
}
img {
  max-width: 100%;
  width: auto;
  height: auto;
}

/*---------------------------------------------------*/
#header {
  background: #eeeeee;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  margin: 0 auto;
  z-index: 999;
}
#header .header__box {
  display: block;
  position: relative;
  z-index: 50;
  width: 100%;
  box-sizing: border-box;
  max-width: 1220px;
}
#header .header__logo {
  background: #282f52;
  position: relative;
}
#header .header__logo a {
  display: block;
  box-sizing: border-box;
  padding: 4.66% 4%;
  width: 41.333%;
  margin: 0;
}

#header .header__nav {
  background: #eeeeee;
}
#header .header__navitem {
  display: block;
  box-sizing: border-box;
  padding: 1em 0;

}
#header .header__navitem a {
  display: block;
  position: relative;
  box-sizing: border-box;
  padding: 1em;
}
#header .header__navitem a:before {
  content: "";
  display: block;
  background: #282f52;
  height: .2em;
  width: 1em;
  position: absolute;
  top: calc(50% - 0.1em);
  left: 0;
}
#header .header__navitem img {
  width: auto;
  height: 1.92em;
}
#header #spnav {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  box-sizing: border-box;
  height: 100%;
  padding-right: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
#header .spnav__btn {
  display: block;
  cursor: pointer;
  width: 2.6em;
  height: 2.6em;
  background-color: #fff;
  border-radius: 3em;
  position: relative;
  overflow: hidden;
}
#header .spnav__btn span {
  width: 1.2em;
  height: 2px;
  background-color: #282f52;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50% , -50%, 0);
  -ms-transform: translate3d(-50% , -50%, 0);
  -o-transform: translate3d(-50% , -50%, 0);
  transform: translate3d(-50% , -50%, 0);
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 1;
}
#header .spnav__btn span:nth-of-type(2) {
  -webkit-transform: translate3d(-50% , calc(-50% + 6px), 0) rotate(0deg);
  -ms-transform: translate3d(-50% , calc(-50% + 6px), 0) rotate(0deg);
  -o-transform: translate3d(-50% , calc(-50% + 6px), 0) rotate(0deg);
  transform: translate3d(-50% , calc(-50% + 6px), 0) rotate(0deg);
}
#header .spnav__btn span:nth-of-type(3) {
  -webkit-transform: translate3d(-50% , calc(-50% - 6px), 0) rotate(0deg);
  -ms-transform: translate3d(-50% , calc(-50% - 6px), 0) rotate(0deg);
  -o-transform: translate3d(-50% , calc(-50% - 6px), 0) rotate(0deg);
  transform: translate3d(-50% , calc(-50% - 6px), 0) rotate(0deg);
}

#header .acd__btn--open .spnav__btn span:nth-of-type(1) {
  -webkit-transform: translate3d(150% , -50%, 0);
  -ms-transform: translate3d(150% , -50%, 0);
  -o-transform: translate3d(150% , -50%, 0);
  transform: translate3d(150% , -50%, 0);
  opacity: 0;
}
#header .acd__btn--open .spnav__btn span:nth-of-type(2) {
  -webkit-transform: translate3d(-50% , -50%, 0) rotate(45deg);
  -ms-transform: translate3d(-50% , -50%, 0) rotate(45deg);
  -o-transform: translate3d(-50% , -50%, 0) rotate(45deg);
  transform: translate3d(-50% , -50%, 0) rotate(45deg);
}
#header .acd__btn--open .spnav__btn span:nth-of-type(3) {
  -webkit-transform: translate3d(-50% , -50%, 0) rotate(135deg);
  -ms-transform: translate3d(-50% , -50%, 0) rotate(135deg);
  -o-transform: translate3d(-50% , -50%, 0) rotate(135deg);
  transform: translate3d(-50% , -50%, 0) rotate(135deg);
}
#header .header__nav #gnav {
  display: block;
}


/* #pc ---------------------------------------------------------------*/
@media screen and (min-width:750px){
  html , body {
    font-size: 18px;
  }
  .spitem {
    display: none;
  }
  .pcitem {
    display: block;
  }
  /*---------------------------------------*/
  #header {
    box-sizing: border-box;
    padding: 0 20px;
  }
  #header:before {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background-color: #282f52;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #header #spnav {
    display: none;
  }
  #header .header__box {
    background: #eeeeee;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    height: 100px;
  }
  #header .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
  }
  #header .header__logo a {
    display: block;
    box-sizing: border-box;
    padding: 4.66% 4%;
    width: 90%;
    margin: 0;
  }
  #header #gnav {
    overflow: hidden;
  }
  #header .header__navitem {
    width: 20%;
    text-align: center;
    display: block;
    padding: 0;
    position: relative;
  }
  #header .header__navitem img {
    height: auto;
    max-height: 20px;
    width: auto;
    margin: 0 auto;
    z-index: 3;
    position: relative;
  }
  #header .header__navitem a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    height: 100%;
    position: relative;
    padding: 1.5em 0;
    font-size:13px;
    text-decoration: none;
    color: #282f52;
    font-weight: bold;
  }
  #header .header__navitem a:before {
    content: none;
  }
  #header .header__navitem a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    border-bottom: 5px solid transparent;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
  }
  #header .header__navitem a:hover:after,
  #header .header__navitem a.navactive:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-bottom: 5px solid #282f52;
    background: #d7d7d787;
    z-index: 1;
  }
  #header .header__logo {
    width: 25%;
  }
  #header .header__nav {
    width: 75%;
  }
  #header .header__nav #gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex!important;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-start;
  }


}



/*------------------------------------------------------------------------------*/
/* footer */
/*------------------------------------------------------------------------------*/
#footer {
  display: block;
  margin: 0 auto;
  width: 100%;
}
#footer .footer__link {
  margin: 3em auto;
  list-style: none;
  padding: 0;
  font-size: .92em;
  color: #282f52;
}
#footer .footer__link li {
  margin-bottom: 1.5em;
}
#footer .footer__link a {
  color: #282f52;
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: left;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  padding-left: 6%;
}
#footer .footer__link a:before {
  content: "";
  display: block;
  background: #282f52;
  width: 4%;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}
#footer #copy {
  border-top: 2px solid #282f52;
  width: 100%;
  text-align: center;
  color: #282f52;
  font-weight: 700;
  font-size: .82em;
  padding: 1em 0;
}

/* #pc ---------------------------------------------------------------*/
@media screen and (min-width:750px){
  #footer .footer__link {
    text-align: center;
    font-size: 18px;
    width: 100%;
  }
  #footer .footer__link li {
    width: auto;
    display: inline-block;
    line-height: 1em;
    padding: 0 .3em;
    margin-bottom: 0;
  }
  #footer .footer__link li + li {
    border-left: 2px solid;
    padding-left: .4em;
  }
  #footer .footer__link a {
    display: inline-block;
    padding: 0;
  }
  #footer .footer__link a:before {
    content: none;
  }
  #footer #copy {
    font-size: 16px;
    padding: 2em 0;
  }
}


/*------------------------------------------------------------------------------*/
/* content */
/*------------------------------------------------------------------------------*/
#content {
  box-sizing: border-box;
  width: 100%;
  padding-top: 1%;
}
.subtitle {
  text-align: center;
  font-size: 1em;
  padding: 3em 0;
  margin: 0 auto;
}
.subtitle span {
  font-weight: 400;
}
.subtitle span:after {
  content: "";
  display: block;
  width: 1.8em;
  height: 0.2em;
  background-color: #282f52;
  margin: 0.5em auto 0;
}
.subtitle:after {
  content: attr(data-spell);
  display: block;
  margin: 0 auto;
  font-size: 2.69em;
  line-height: 1em;
  margin-top: .4em;
}

#content.zukachin-page .zukachin-pagetitle {
  letter-spacing: 0.1em;
  font-family:  'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-feature-settings: 'palt' 1;
  text-align: center;
  font-size: 1em;
  padding: 3em 0;
  margin: 0 auto;
  font-weight: bold;
}
#content.zukachin-page .zukachin-pagetitle span {
  font-weight: 400;
}
#content.zukachin-page .zukachin-pagetitle span:after {
  content: "";
  display: block;
  width: 1.8em;
  height: 0.2em;
  background-color: #282f52;
  margin: 0.5em auto 0;
}
#content.zukachin-page .zukachin-pagetitle:after {
  content: attr(data-spell);
  text-transform: uppercase;
  display: block;
  margin: 0 auto;
  font-size: 2.69em;
  line-height: 1em;
  margin-top: .4em;
}
#content.zukachin-page blockquote {
  background: #eee;
  box-sizing: border-box;
  border: none;
  padding: 1em;
}
#content.zukachin-page h2 {
  font-family:  'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-feature-settings: 'palt' 1;
  font-weight: 700;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  margin: 2em auto 1em;
}
#content.zukachin-page h3 {
  font-family:  'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-feature-settings: 'palt' 1;
  font-weight: 700;
  font-size: 1.4em;
  letter-spacing: 0.1em;
  margin: 2em auto 1em;
  text-align: left;
}
#content.zukachin-page h4 {
  font-family:  'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  font-feature-settings: 'palt' 1;
  font-weight: 700;
  font-size: 1.2em;
  letter-spacing: 0.1em;
  border-bottom: 1px solid;
  padding-bottom: .2em;
  margin: 2em auto 1em;
  text-align: left;
}
#content.zukachin-page p {
  line-height: 1.75em;
}
#content.zukachin-page p + p {
  margin-top: 1.5em;
}
#content.zukachin-page table {
  width: 100%;
  max-width: 900px;
  margin: 1em auto;
  text-align: left;
}
#content.zukachin-page table tr {
  vertical-align: top;
}
#content.zukachin-page table tr > *:nth-child(1) {
  word-break: keep-all;
  box-sizing: border-box;
  padding: 0 1.5em 0 0;
}
#content.zukachin-page table tr th {

}
#content.zukachin-page table tr td {
  padding: 0 0 20px;
}

@media screen and (min-width:750px){
  #content {
    padding-top: 49px;
  }
  .subtitle {
    text-align: center;
    font-size: 22px;
    padding: 1em 0 2.5em;
    margin: 0 auto;
  }
  .subtitle span {
    font-weight: 400;
  }
  .subtitle span:after {
    content: "";
    display: block;
    width: 1.8em;
    height: 0.2em;
    background-color: #282f52;
    margin: 0.5em auto 0;
  }
  .subtitle:after {
    content: attr(data-spell);
    font-size: 70px;
  }

  #content.zukachin-page .zukachin-pagetitle {
    text-align: center;
    font-size: 22px;
    padding: 1em 0 2.5em;
    margin: 0 auto;
  }
  #content.zukachin-page .zukachin-pagetitle span {
    font-weight: 400;
  }
  #content.zukachin-page .zukachin-pagetitle span:after {
    content: "";
    display: block;
    width: 1.8em;
    height: 0.2em;
    background-color: #282f52;
    margin: 0.5em auto 0;
  }
  #content.zukachin-page .zukachin-pagetitle:after {
    content: attr(data-spell);
    font-size: 70px;
  }

}