@charset "utf-8";
/* ---------------------
  - body

  - webfont

  - wrapper

  - header
    - header__inner
  - logo
    - logo__item
      - logo__item--main
      - logo__item--sub

  - mainVisual
    - mainVisual__item
      - mainVisual__item--01
      - mainVisual__item--02
      - mainVisual__item--03

  - update

  - main
  - mainInner

  - mainContainer
    - mainContainer__nav
    - mainContainer__section

  - about

  - mainSection
  - mainTitle
    - mainTitle--info
    - mainTitle--topics

  - navMenu
    - navMenu__title
    - navMenu__body
  - navList
    - navList__item

  - sideMenu
    - sideMenu__close
    - sideMenu__menu
  - sideMenu--right
  - sideMenu--left

  - sideOpen
    - sideOpen--right
    - sideOpen--left

  - sideClose
    - sideClose--right
    - sideClose--left

  - sideOverlay

  - info
    - info__date
    - info__text
  - infoLecture
    - infoLecture__item
  - infoLectureDetail
    - infoLectureDetail__title
    - infoLectureDetail__body

  - topics

  - viewMore

  - footer
    - footer__top
    - footer__bottom
  - footerInner

  - footerTop
    - footerTop__link
    - footerTop__address

  - relatedLink
    - relatedLink__title
    - relatedLink__body
  - relatedList
    - relatedList__item

  - address
    - address__name
    - address__text
  - addressName
    - addressName__item
      - addressName__item--main
      - addressName__item--sub

  - footerBottom
    - footerBottom__item

  - footerNav
    - footerNav__item
  - footerMenu
    - footerMenu__item

  - copyright
--------------------- */



/* -----------------------------------
  body
----------------------------------- */
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -ms-word-break: break-word;
      word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
@media screen and (max-width:768px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width:425px) {
  body {
    font-size: 14px;
  }
}

body.isLock {
  overflow: hidden;
}



/* -----------------------------------
  webfont
----------------------------------- */
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?a6e1c8');
  src:  url('../fonts/icomoon.eot?a6e1c8#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?a6e1c8') format('truetype'),
        url('../fonts/icomoon.woff?a6e1c8') format('woff'),
        url('../fonts/icomoon.svg?a6e1c8#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-menu:before {
  content: "\e900";
}

.icon-link:before {
  content: "\e901";
}

.icon-close:before {
  content: "\e902";
}

.icon-blank:before {
  content: "\e903";
}



/* -----------------------------------
  wrapper
----------------------------------- */
#wrapper {
  overflow: hidden;
}



/* -----------------------------------
  header
----------------------------------- */
#header {
  border-bottom: 5px solid #5582ad;
}


/*  header__inner
------------------------ */
#header__inner {
  position: relative;
  z-index: 0;
  max-width: 1000px;
  margin: 0 auto;
  padding: 15px;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width:768px) {
  #header__inner {
    padding: 10px 15px;
  }
}



/* -----------------------------------
  logo
----------------------------------- */
#logo {
  display: table;
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 30px;
}
@media screen and (max-width:1024px) {
  #logo {
    font-size: 27px;
  }
}
@media screen and (max-width:768px) {
  #logo {
    margin: 0 auto;
    font-size: 24px;
  }
}
@media screen and (max-width:425px) {
  #logo {
    font-size: 21px;
  }
}

#logo a {
  display: block;
  color: #5582ad;
  text-decoration: none;
  text-align: center;
}


/*  logo__item
------------------------ */
.logo__item {
  display: block;
}


/*  logo__item--main  */
#logo__item--main {
  font-weight: 600;
  line-height: 1.3;
  font-family: 'Noto Serif JP', serif;
}
@media screen and (max-width:768px) {
  #logo__item--main {
    font-weight: 500;
  }
}
@media screen and (max-width:425px) {
  #logo__item--main {
    font-weight: 400;
  }
}


/*  logo__item--sub  */
#logo__item--sub {
  font-size:.4em; /* 12/30 */
}



/* -----------------------------------
  mainVisual
----------------------------------- */
/*  mainVisual__item
------------------------ */
.mainVisual__item {
  height: auto !important;/**/
  padding-top: 400px;
  background-position: 50%;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width:1024px) {
  .mainVisual__item {
    padding-top: -webkit-calc( 159px + ( 399 - 159 ) * ( ( 100vw - 425px ) / ( 1024 - 425 ) ) );
    padding-top:         calc( 159px + ( 399 - 159 ) * ( ( 100vw - 425px ) / ( 1024 - 425 ) ) );
  }
}
@media screen and (max-width:425px) {
  .mainVisual__item {
    padding-top: 160px;
  }
}

.mainVisual__item img {
  display: block;
  max-width: 100%;
}

/*  mainVisual__item--01  */
.mainVisual__item--01 {
  background-image: url("../images/mainVisual/01.jpg");
}


/*  mainVisual__item--02  */
.mainVisual__item--02 {
  background-image: url("../images/mainVisual/02.jpg");
}


/*  mainVisual__item--03  */
.mainVisual__item--03 {
  background-image: url("../images/mainVisual/03.jpg");
}


/*  mainVisual__item--04  */
.mainVisual__item--04 {
  background-image: url("../images/mainVisual/04.jpg");
}



/* -----------------------------------
  update
----------------------------------- */
#update {
  background-color: #f6f6f6;
  font-size: .75em; /* 12/16 */
}

#update p {
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px 15px;
  text-align: right;
}

#update span + span {
  margin-left: 1em;
}



/* -----------------------------------
  mainInner
----------------------------------- */
#mainInner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 15px;
  padding-bottom: 80px;
}
@media screen and (max-width:768px) {
  #mainInner {
    padding: 40px 15px;
    padding-bottom: 60px;
  }
}
@media screen and (max-width:425px) {
  #mainInner {
    padding: 20px 15px;
    padding-bottom: 40px;
  }
}



/* -----------------------------------
  mainContainer
----------------------------------- */
#mainContainer {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
      align-items: flex-start;
}
@media screen and (max-width:768px) {
  #mainContainer {
    display: block;
  }
}


/*  mainContainer__nav
------------------------ */
#mainContainer__nav {
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  width: 260px;
}


/*  mainContainer__section
------------------------ */
#mainContainer__section {
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
       -o-flex: 1;
          flex: 1;
  margin-left: 40px;
}
@media screen and (max-width:768px) {
  #mainContainer__section {
    margin-left: 0;
  }
}



/* -----------------------------------
  about
----------------------------------- */
#about {
  margin-bottom: 60px;
  padding: .714285714285em; /* 10/14 */
  border: 2px solid #e6e6e6;
  font-size: .875em; /* 14/16 */
  line-height: 1.8;
}
@media screen and (max-width:768px) {
  #about {
    margin-bottom: 50px;
  }
}
@media screen and (max-width:425px) {
  #about {
    margin-bottom: 40px;
  }
}

#about p {
  margin: 0;
  padding: 1.4285714285em; /* 20/14 */
  background-color: #f6f6f6;
}



/* -----------------------------------
  mainSection
----------------------------------- */
.mainSection + .mainSection {
  margin-top: 60px;
}
@media screen and (max-width:768px) {
  .mainSection + .mainSection {
    margin-top: 50px;
  }
}
@media screen and (max-width:425px) {
  .mainSection + .mainSection {
    margin-top: 40px;
  }
}



/* -----------------------------------
  mainTitle
----------------------------------- */
.mainTitle {
  margin: 0;
  margin-bottom: 2.5em; /* 30/12 */
  padding: 1em 1.6666666667em; /* 20/12 */
  background-color: #f6f6f6;
  color: #5582ad;
  font-weight: bold;
  font-size: .75em; /* 12/16 */
}

.mainTitle span {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: center;
      align-items: center;
  padding-left: 1.6666666667em; /* 20/12*/
  border-left: 5px solid #5582ad;
}

.mainTitle span:before ,
.mainTitle span:after {
  display: block;
  -webkit-order: -1;
     -moz-order: -1;
      -ms-order: -1;
       -o-order: -1;
          order: -1;
}

.mainTitle span:before {
  font-size: 1.6666666667em; /* 20/12 */
  text-transform: capitalize;
}

.mainTitle span:after {
  margin: 0 .83333333333em; /* 10/12 */
  content: "-";
}


/*  mainTitle--info
------------------------ */
.mainTitle--info span:before {
  content: "information";
}


/*  mainTitle--topics
------------------------ */
.mainTitle--topics span:before {
  content: "topics";
}



/* -----------------------------------
  navMenu
----------------------------------- */
.navMenu {
  margin: 0;
}

.navMenu + .navMenu {
  margin-top: 40px;
}
@media screen and (max-width:768px) {
  .navMenu + .navMenu {
    margin-top: -1px;
  }
}


/*  navMenu__title
------------------------ */
.navMenu__title {
  position: relative;
  z-index: 0;
  padding: .75em 1.25em; /* 12/16 20/16 */
  background-color: #f3f3f3;
  color: #5582ad;
  font-weight: bold;
}

.navMenu__title:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-width: .9375em .9375em 0 0; /* 15/16 */
  border-style: solid;
  border-color: #5582ad transparent transparent transparent;
  content: " ";
}


/*  navMenu__body
------------------------ */
.navMenu__body {
  margin: 0;
}



/* -----------------------------------
  navList
----------------------------------- */
.navList {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e3e3e3;
  font-size: .875em; /* 14/16 */
}


/*  navList__item
------------------------ */
.navList__item a {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: space-between;
  -ms-align-items: center;
      align-items: center;
  padding: .8571428571em .714285714285em; /* 12/14 10/14 */
  color: #333;
  text-decoration: none;
}
@media screen and (max-width:768px) {
  .navList__item a {
    padding: .8571428571em;
  }
}

.navList__item a:after {
  display: block;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  width: .5em; /* 7/14 */
  height: .5em;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  content: " ";
}

.navList__item + .navList__item {
  border-top: 1px solid #e3e3e3;
}



/* -----------------------------------
  sideMenu
----------------------------------- */
@media screen and (max-width:768px) {
  .sideMenu {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9;
    width: 260px;
    height: 100vh;
    -webkit-transition: all .25s;
         -o-transition: all .25s;
            transition: all .25s;
  }
}

@media screen and (max-width:768px) {
  .sideMenu.isActive {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
  }
}



/*  sideMenu__close
------------------------ */
.sideMenu__close {
  display: none;
  padding: 10px;
  background-color: #5582ad;
}
@media screen and (max-width:768px) {
  .sideMenu__close {
    display: block;
  }
}


/*  sideMenu__menu
------------------------ */
@media screen and (max-width:768px) {
  .sideMenu__menu {
    height: 100%;
    padding-bottom: 150px;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}


/*  sideMenu--right  */
@media screen and (max-width:768px) {
  .sideMenu--right {
    right: 0;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
    background-color: #fff;
  }
}


/*  sideMenu--left  */
@media screen and (max-width:768px) {
  .sideMenu--left {
    left: 0;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
    background-color: #fff;
  }
}



/* -----------------------------------
  sideOpen
----------------------------------- */
.sideOpen {
  display: table;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width:768px) {
  .sideOpen {
    visibility: visible;
    opacity: 1;
  }
}

.sideOpen a {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 3px;
  background-color: #5582ad;
  color: #fff;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.sideOpen a:before {
  display: block;
  width: 1em;
  height: 1em;
  font-size: 2em;
  line-height: 1;
  font-family: 'icomoon';
}

.sideOpen span {
  display: block;
  position: absolute;
  top: 0;
}


/*  sideOpen--right
------------------------ */
.sideOpen--right {
  right: 15px;
}

.sideOpen--right a:before {
  content: "\e901";
}

.sideOpen--right span {
  left: 100%;
}


/*  sideOpen--left
------------------------ */
.sideOpen--left {
  left: 15px;
}

.sideOpen--left a:before {
  content: "\e900";
}

.sideOpen--left span {
  right: 100%;
}



/* -----------------------------------
  sideClose
----------------------------------- */
.sideClose {
  display: table;
}

.sideClose a {
  display: block;
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 3px;
  background-color: #fff;
  color: #5582ad;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.sideClose a:before {
  display: block;
  width: 1em;
  height: 1em;
  font-size: 2em;
  line-height: 1;
  font-family: 'icomoon';
  content: "\e902";
}

.sideClose span {
  display: block;
  position: absolute;
  top: 0;
}


/*  sideClose--right
------------------------ */
.sideClose--right {
  margin-left: auto;
}

.sideClose--right span {
  left: 100%;
}


/*  sideClose--left
------------------------ */
.sideClose--left {
  margin-right: auto;
}

.sideClose--left span {
  right: 100%;
}



/* -----------------------------------
  sideOverlay
----------------------------------- */
#sideOverlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  height: 100vh;
  background-color: rgba(51,51,51,.75);
  -webkit-transition: all .25s;
       -o-transition: all .25s;
          transition: all .25s;
}

#sideOverlay.isActive {
  visibility: visible;
  opacity: 1;
}



/* -----------------------------------
  info
----------------------------------- */
.info {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
      align-items: flex-start;
  padding-bottom: 1.875em; /* 30/16 */
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (max-width:425px) {
  .info {
    display: block;
  }
}

.info + .info {
  margin-top: 1.875em; /* 30/16 */
}


/*  info__date
------------------------ */
.info__date {
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  width: 5.9375em; /* 95/16 */
}
@media screen and (max-width:425px) {
  .info__date {
    width: auto;
  }
}


/*  info__text
------------------------ */
.info__text {
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
       -o-flex: 1;
          flex: 1;
  margin-left: 1.875em; /* 30/16 */
}
@media screen and (max-width:425px) {
  .info__text {
    margin: 0;
    margin-top: .9375em;
  }
}

.info__text a {
  color: #333;
  text-decoration: underline;
}

.info__text a:hover {
  text-decoration: none;
}



/* -----------------------------------
  infoLecture
----------------------------------- */
.infoLecture {
  margin-top: .9375em; /* 15/16 */
  padding: 1.25em; /* 20/16 */
  background-color: #f6f6f6;
}


/*  infoLecture__item
------------------------ */
.infoLecture__item + .infoLecture__item {
  margin-top: 5px;
}



/* -----------------------------------
  infoLectureDetail
----------------------------------- */
.infoLectureDetail {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: flex-start;
      align-items: flex-start;
  margin: 0;
  padding: 0;
  font-size: .875em; /* 14/16 */
}


/*  infoLectureDetail__title
------------------------ */
.infoLectureDetail__title {
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  width: 3em;
  white-space: nowrap;
}


/*  infoLectureDetail__body
------------------------ */
.infoLectureDetail__body {
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
       -o-flex: 1;
          flex: 1;
  margin: 0;
}



/* -----------------------------------
  topics
----------------------------------- */
.topics {
  padding-bottom: 1.875em; /* 30/16 */
  border-bottom: 1px solid #e6e6e6;
}

.topics a {
  color: #333;
  text-decoration: underline;
}

.topics a:hover {
  text-decoration: none;
}

.topics + .topics {
  margin-top: 1.875em; /* 30/16 */
}



/* -----------------------------------
  viewMore
----------------------------------- */
.viewMore {
  margin-top: 1.4285714285em; /* 20/14 */
  font-size: .875em; /* 14/16 */
  text-align: right;
  text-transform: capitalize;
}

.viewMore a {
  display: -webkit-inline-flex;
  display:    -moz-inline-flex;
  display:     -ms-inline-flex;
  display:      -o-inline-flex;
  display:         inline-flex;
  justify-content: flex-end;
  -ms-align-items: center;
      align-items: center;
  color: #5582ad;
  text-decoration: underline;
}

.viewMore a:after {
  display: block;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
          transform: rotate(45deg);
  width: .5em; /* 7/14 */
  height: .5em;
  margin-left: 0.5em;
  border-top: 1px solid #5582ad;
  border-right: 1px solid #5582ad;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  content: " ";
}

.viewMore a:hover {
  text-decoration: none;
}



/* -----------------------------------
  footer
----------------------------------- */
/*  footer__top
------------------------ */
#footer__top {
  background-color: #5582ad;
}


/*  footer__bottom
------------------------ */
#footer__bottom {
  background-color: #333;
}



/* -----------------------------------
  footerInner
----------------------------------- */
.footerInner {
  max-width: 768px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width:768px) {
  .footerInner {
    max-width: 690px;
  }
}

#footer__top .footerInner {
  padding: 40px 30px;
}
@media screen and (max-width:768px) {
  #footer__top .footerInner {
    padding: 35px 25px;
  }
}
@media screen and (max-width:425px) {
  #footer__top .footerInner {
    padding: 30px 20px;
  }
}

#footer__bottom .footerInner {
  padding: 15px 30px;
}
@media screen and (max-width:768px) {
  #footer__bottom .footerInner {
    padding: 15px 25px;
  }
}
@media screen and (max-width:425px) {
  #footer__bottom .footerInner {
    padding: 15px 20px;
  }
}



/* -----------------------------------
  footerTop
----------------------------------- */
#footerTop {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: flex-start;
  -ms-align-items: stretch;
      align-items: stretch;
}
@media screen and (max-width:768px) {
  #footerTop {
    display: block;
  }
}

#footerTop:before {
  display: block;
  -ms-align-self: stretch;
      align-self: stretch;
  margin: 0 50px;
  border-left: 3px solid #fff;
  content: " ";
}
@media screen and (max-width:768px) {
  #footerTop:before {
    content: none;
  }
}


/*  footerTop__link
------------------------ */
#footerTop__link {
  -webkit-flex: 1;
     -moz-flex: 1;
      -ms-flex: 1;
       -o-flex: 1;
          flex: 1;
  -webkit-order: -1;
     -moz-order: -1;
      -ms-order: -1;
       -o-order: -1;
          order: -1;
}


/*  footerTop__address
------------------------ */
#footerTop__address {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  -webkit-flex: none;
     -moz-flex: none;
      -ms-flex: none;
       -o-flex: none;
          flex: none;
  justify-content: flex-start;
  -ms-align-items: center;
      align-items: center;
}
@media screen and (max-width:768px) {
  #footerTop__address {
    display: block;
  }
}



/* -----------------------------------
  relatedLink
----------------------------------- */
/*  relatedLink__title
------------------------ */
@media screen and (min-width:769px) {
  #relatedLink__title {
    margin-bottom: 10px;
    padding: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    color: #fff;
  }
}

@media screen and (min-width:769px) {
  #relatedLink__title:before {
    content: none;
  }
}


/*  relatedLink__body
------------------------ */
@media screen and (min-width:769px) {
  #relatedLink__body {
    overflow: hidden;
  }
}



/* -----------------------------------
  relatedList
----------------------------------- */
@media screen and (min-width:769px) {
  #relatedList {
    display: -webkit-flex;
    display:    -moz-flex;
    display:     -ms-flex;
    display:      -o-flex;
    display:         flex;
    -webkit-flex-wrap: wrap;
       -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
         -o-flex-wrap: wrap;
            flex-wrap: wrap;
    justify-content: flex-start;
    -ms-align-items: flex-start;
        align-items: flex-start;
    margin: 0 0 -8px -20px;
    border-bottom: none;
    font-size: 12px;
  }
}


/*  relatedList__item
------------------------ */
@media screen and (min-width:769px) {
  .relatedList__item {
    margin: 0 0 8px 20px;
  }
}

@media screen and (min-width:769px) {
  .relatedList__item:nth-of-type(2n+1) {
    -webkit-flex: none;
       -moz-flex: none;
        -ms-flex: none;
         -o-flex: none;
            flex: none;
    width: 14.5em;
  }
}

@media screen and (min-width:769px) {
  .relatedList__item:nth-of-type(2n+0) {
    -webkit-flex: 1;
       -moz-flex: 1;
        -ms-flex: 1;
         -o-flex: 1;
            flex: 1;
  }
}

@media screen and (min-width:769px) {
  .relatedList__item a {
    display: inline;
    padding: 0;
    color: #fff;
    text-decoration: underline;
  }
}

@media screen and (min-width:769px) {
  .relatedList__item a:after {
    content: none;
  }
}
@media screen and (max-width:768px) {
  .relatedList__item a:after {
    -webkit-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
    width: auto;
    height: auto;
    border: none;
    line-height: 1;
    font-family: 'icomoon';
    content: "\e903";
  }
}

@media screen and (min-width:769px) {
  .relatedList__item a:hover {
    text-decoration: none;
  }
}

@media screen and (min-width:769px) {
  .relatedList__item + .relatedList__item {
    border-top: none;
  }
}



/* -----------------------------------
  address
----------------------------------- */
#address {
  color: #fff;
  font-style: normal;
  font-size: 1.375em; /* 22/16 */
}
@media screen and (max-width:768px) {
  #address {
    display: -webkit-flex;
    display:    -moz-flex;
    display:     -ms-flex;
    display:      -o-flex;
    display:         flex;
    justify-content: space-evenly;
    -ms-align-items: center;
        align-items: center;
  }
}
@media screen and (max-width:768px) {
  #address {
    justify-content: space-between;
  }
}
@media screen and (max-width:600px) {
  #address {
    display: table;
    margin: 0 auto;
  }
}

@media screen and (max-width:768px) {
  #address:before {
    display: block;
    -ms-align-self: stretch;
        align-self: stretch;
    border-left: 2px solid #fff;
    margin: 0 20px;
    content: " ";
  }
}
@media screen and (max-width:600px) {
  #address:before {
    content: none;
  }
}


/*  address__name
------------------------ */
#address__name {
  margin-bottom: .68181818181em; /* 15/22 */
}
@media screen and (max-width:768px) {
  #address__name {
    -webkit-order: -1;
       -moz-order: -1;
        -ms-order: -1;
         -o-order: -1;
            order: -1;
    margin-bottom: 0;
  }
}
@media screen and (max-width:600px) {
  #address__name {
    margin-bottom: .68181818181em;
  }
}


/*  address__text
------------------------ */
#address__text {
  font-size: .59090909090em; /* 13/22 */
}



/* -----------------------------------
  addressName
----------------------------------- */
/*  addressName__item
------------------------ */
.addressName__item {
  display: block;
}


/*  addressName__item--main  */
#addressName__item--main {
  font-weight: bold;
  letter-spacing: .03em;
}


/*  addressName__item--sub  */
#addressName__item--sub {
  font-size: .54545454545em; /* 12/22 */
  letter-spacing: .03em;
}



/* -----------------------------------
  footerBottom
----------------------------------- */
#footerBottom {
  display: -webkit-flex;
  display:   -moz-flex;
  display:    -ms-flex;
  display:     -o-flex;
  display:        flex;
  justify-content: space-between;
  -ms-align-items: center;
      align-items: center;
}
@media screen and (max-width:600px) {
  #footerBottom {
    display: block;
  }
}


/*  footerBottom__item
------------------------ */
.footerBottom__item + .footerBottom__item {
  margin-left: 15px;
}
@media screen and (max-width:600px) {
  .footerBottom__item + .footerBottom__item {
    margin: 0;
    margin-top: 15px;
  }
}



/* -----------------------------------
  footerNav
----------------------------------- */
#footerNav {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  -webkit-flex-wrap: wrap;
     -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
       -o-flex-wrap: wrap;
          flex-wrap: wrap;
  justify-content: center;
  -ms-align-items: center;
      align-items: center;
  color: #fff;
  font-size: .75em; /* 12/16 */
}
@media screen and (max-width:600px) {
  #footerNav {
    display: block;
  }
}

#footerNav:before {
  display: block;
  margin: 0 .83333333333em; /* 10/12 */
  content: "/";
}
@media screen and (max-width:600px) {
  #footerNav:before {
    content: none;
  }
}


/*  footerNav__item
------------------------ */
.footerNav__item {
  -webkit-order: -1;
     -moz-order: -1;
      -ms-order: -1;
       -o-order: -1;
          order: -1;
}

.footerNav__item + .footerNav__item {
  -webkit-order: 1;
     -moz-order: 1;
      -ms-order: 1;
       -o-order: 1;
          order: 1;
}
@media screen and (max-width:600px) {
  .footerNav__item + .footerNav__item {
    margin-top: 5px;
  }
}



/* -----------------------------------
  footerMenu
----------------------------------- */
.footerMenu {
  display: -webkit-flex;
  display:    -moz-flex;
  display:     -ms-flex;
  display:      -o-flex;
  display:         flex;
  justify-content: center;
  -ms-align-items: center;
      align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footerMenu:before {
  display: block;
  margin: 0 .83333333333em; /* 10/12 */
  content: "/";
}


/*  footerMenu__item
------------------------ */
.footerMenu__item {
  -webkit-order: -1;
     -moz-order: -1;
      -ms-order: -1;
       -o-order: -1;
          order: -1;
}

.footerMenu__item + .footerMenu__item {
  -webkit-order: 1;
     -moz-order: 1;
      -ms-order: 1;
       -o-order: 1;
          order: 1;
}

.footerMenu__item a {
  color: #fff;
  text-decoration: underline;
}

.footerMenu__item a:hover {
  text-decoration: none;
}



/* -----------------------------------
  copyright
----------------------------------- */
#copyright {
  margin: 0;
  color: #fff;
  font-size: .75em; /* 12/16 */
  text-align: center;
}





