@charset "utf-8";

/* ==========================================================================

ヘッダー

========================================================================== */
.header {
  letter-spacing: -.01em;
  width: 100%;
  position: relative;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(29,108,188, .95);
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}
@media only screen and (max-width: 1259px) {
  .header {
    min-height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    min-height: 55px;
  }
}

.header-shadow {
  visibility: hidden;
  position: absolute;
  height: 120px;
}
@media only screen and (max-width: 1259px) {
  .header-shadow {
    height: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .header-shadow {
    height: 55px;
  }
}

.header.bgOn::before {
  content: '';
  background: rgba(29,108,188, .95);
  width: 600vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  margin: 0;
  z-index: 1;
}
@media only screen and (max-width: 1259px) {
  .header.bgOn::before {
    display: none;
  }
}

.header.bgOn #gNav ul li {
  opacity: .15;
}

.header.modal {
  z-index: 10;
}

.header li {
  list-style: none;
}

.header .inner {
  margin: 0 auto;
  max-width: 1260px;
  padding: 0 20px;
  position: relative;
}
@media only screen and (max-width: 1259px) {
  .header .inner {
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.header .inner .logo {
  -webkit-transition: .2s;
  transition: .2s;
  max-width: 200px;
  position: absolute;
  margin: 35px 0 0;
  z-index: 2;
  opacity: 0;
}
@media screen and (min-width: 769px) and (max-width: 1259px) {
  .header .inner .logo {
    max-width: 160px;
    width: 100%;
    margin: auto 0 auto 15px;
    position: static;
    opacity: 1;
  }
  body.ie .header .inner .logo {
    margin: 5px 0 auto 15px;
  }
}
@media only screen and (max-width: 768px) {
  .header .inner .logo {
    max-width: 120px;
    width: 100%;
    margin: auto 8px auto 10px;
    position: static;
    opacity: 1;
  }
  body.ie .header .inner .logo {
    margin: 10px 8px auto 10px;
  }
}

.header .inner .logo a {
  width: 100%;
  padding-top: 14.945%;
  display: block;
  background: url(/albums/css/basic-header/abm00001399.svg) center center no-repeat;
  background-size: contain;
}

.header .inner .logo a::before,
.header .inner .logo a::after {
  content: none;
}

.header .inner .rightNav {
  box-sizing: border-box;
  border-bottom: 1px solid #92b7dd;
  float: right;
  position: relative;
  z-index: 10;
  opacity: 0;
}
@media screen and (max-width: 1259px) {
  .header .inner .rightNav {
    display: none;
  }
}


/* ==========================================================================

スクロールしたら非表示と調整

========================================================================== */
.header.on {
  transition: .2s;
  transform: translateY(-50px);
}
.header.on .inner .rightNav {
  transition: .2s;
  transform: translateY(-100%);
}

.header.on .inner .logo {
  margin-top: 56px;
}



/* ==========================================================================

上部サブメニュー

========================================================================== */
.header .inner .rightNav .tops {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  padding: 11px 0 12px;
  border-right: 1px solid #92b7dd;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.header .inner .rightNav .tops .mainSubLists {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  box-sizing: border-box;
  margin: -4px -3px 0 20px;
}

body.ie .header .inner .rightNav .tops .mainSubLists {
  margin: -4px 17px 0 0;
}

.header .inner .rightNav .tops .mainSubLists li {
  margin-right: 23px;
}

.header .inner .rightNav .tops .mainSubLists li:last-child {
  margin-right: 18px;
}

.header .inner .rightNav .tops .mainSubLists li a {
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
}

.header .inner .rightNav .tops .mainSubLists li.is-link {
  margin-right: 18px;
  margin-top: 4px;
  background-image: url('/albums/css/basic-header/abm00008832.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  /*border-image: url('/albums/css/basic-header/abm00008832.png') 30 / 4px;*/
}

.header .inner .rightNav .tops .mainSubLists li.is-link a {
  background: #fff;
  margin: 4px 5px;
  display: block;
  padding: 2px 5px 4px;
  box-sizing: border-box;
  line-height: 1;
  color: #1d6cbc;
  font-weight: 500;
}





.header .inner .rightNav .tops .subLink {
  background: #fff;
  border-radius: 13px;
  box-sizing: border-box;
  padding: 6px 15px;
}

.header .inner .rightNav .tops .subLink ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .inner .rightNav .tops .subLink ul li {
  font-size: 1.2rem;
  padding-right: 6px;
  margin-right: 3px;
  position: relative;
  line-height: 1.2;
  white-space: nowrap;
}

.header .inner .rightNav .tops .subLink ul li::after {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #1d6cbc;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
}

.header .inner .rightNav .tops .subLink ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.header .inner .rightNav .tops .subLink ul li:last-child::after {
  display: none;
}

.header .inner .rightNav .tops .subLink ul li a {
  color: #1d6cbc;
}

.header .inner .rightNav .tops .subBtn {
  background: #92b7dd;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 13px;
  box-sizing: border-box;
  padding: 3px 14px 0;
  margin: 0 1.030927835051546%;
}

.header .inner .rightNav .tops .subBtn a {
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

/* Language */
.header .inner .rightNav .tops .lang {
  position: relative;
  margin-top: -12px;
  margin-bottom: -12px;
  width: 73px;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-transition: all .4s;
  transition: all .4s;
}
@media screen and (min-width: 1024px) {
  .header .inner .rightNav .tops .lang:not(.noHover):hover {
    background: #135eab;
  }
}

.header .inner .rightNav .tops .lang > a {
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  display: block;
  width: 73px;
  height: 100%;
  padding: 14px 10px 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .header .inner .rightNav .tops .lang a:not(.noHover):hover {
    opacity: 1;
  }
}

.header .inner .rightNav .tops .lang > a::before {
  position: absolute;
  height: 100%;
  width: 1px;
  background: #92b7dd;
  top: 0;
  left: 0;
  bottom: 0;
  content: '';
}

.header .inner .rightNav .tops .lang > a::after {
  position: absolute;
  margin: auto;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  width: 8px;
  height: 4px;
  background: url(/albums/css/basic-header/abm00001418.svg) 0 0 no-repeat;
  background-size: contain;
}

.header .inner .rightNav .tops .lang .menu {
  z-index: 2;
  -webkit-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
  width: 130px;
  top: 50px;
  right: -1px;
  position: absolute;
  box-sizing: border-box;
  border: 1px solid #92b7dd;
  background: #135eab;
  max-height: 0;
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .header .inner .rightNav .tops .lang:not(.noHover):hover .menu {
    max-height: 9999px;
    opacity: 1;
  }
}

.header .inner .rightNav .tops .lang .menu ul li {
  border-bottom: 1px solid #92b7dd;
  position: relative;
}

.header .inner .rightNav .tops .lang .menu ul li:last-child {
  border-bottom: none;
}

.header .inner .rightNav .tops .lang .menu ul li a {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  padding: 14px 17px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .header .inner .rightNav .tops .lang .menu ul li a:not(.noHover):hover {
    opacity: .8;
  }
}

.header .inner .rightNav .tops .lang .menu ul li::after {
  position: absolute;
  content: '' !important;
  top: 0;
  right: 15px;
  bottom: 0;
  left: inherit;
  margin: auto 0;
  z-index: 10;
  width: 11px !important;
  height: 6px !important;
  background: url(/albums/css/basic-header/abm00001419.svg) center center no-repeat;
  background-size: 11px 6px;
}
/* Language */


/* ==========================================================================

グローバルメニュー

========================================================================== */
.header #gNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  clear: both;
  position: relative;
  z-index: 1;
  justify-content: flex-end;
  opacity: 0;
}
@media only screen and (max-width: 1259px) {
  .header #gNav {
    right: 0 !important;
  }
}

.header #gNav:after {
  content: '';
  display: table;
  clear: both;
}

.header #gNav>ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1259px) {
  .header #gNav>ul {
    display: none;
  }
}

.header #gNav>ul>li {
  margin-right: 43px;
}

.header #gNav>ul>li:last-of-type {
  margin-right: 42px;
}

.header #gNav>ul>li>a {
  color: #fff;
  font-weight: normal;
  font-size: 1.4rem;
  text-align: center;
  position: relative;
  display: inline-block;
  line-height: 1;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  height: 100%;
  padding: 28px 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .header #gNav>ul>li>a:not(.noHover):hover::after {
    top: 68px;
    opacity: 1;
    visibility: visible;
  }
  .header #gNav>ul>li>a:not(.noHover):hover::before {
    opacity: 1;
    visibility: visible;
  }
  .header #gNav>ul>li>a.current::after {
    top: 68px;
    opacity: 1;
    visibility: visible;
  }
  .header #gNav>ul>li:not(.noHover):hover>a::after {
    top: 68px;
    opacity: 1;
    visibility: visible;
  }
  .header #gNav>ul>li:not(.noHover):hover>a::before {
    opacity: 1;
    visibility: visible;
  }
  .header #gNav>ul>li>a:not(.noHover):hover {
    opacity: 1 !important;
  }
}

.header #gNav>ul>li>a::after {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  content: '';
  width: 100%;
  margin: 0 auto;
  height: 2px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .2s;
  transition: .2s;
}

.header #gNav>ul .menu {
  -webkit-transition: all .4s;
  transition: all .4s;
  overflow: hidden;
  width: 100%;
  top: 69px;
  left: inherit;
  position: absolute;
  z-index: 2;
  background: rgba(29,108,188, .95);
  max-height: 0;
  opacity: 0;
}

.header #gNav>ul .menu::before {
  content: '';
  background:#92b7dd;
  width: 600vw;
  height: 1px;
  position: absolute;
  top: 0;
  left: -100%;
  margin: 0;
  z-index: 3;
}

.basicLists,
#headerListArea {
  display: none;
}

/* グロナビスタイル */
.header #gNav>ul .menu .menuInner {
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
}

.header #gNav>ul .menu .menuInner .imgMainBox {
  width: 33.02083333333333%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  /*opacity: .95;*/
}

.header #gNav>ul .menu .menuInner .imgMainBox:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0,0,0,.4);
}

.header #gNav>ul .menu .menuInner .imgMainBox:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
}

.header #gNav>ul .menu .menuInner .imgMainBox .ttls {
  position: relative;
  z-index: 5;
  text-align: center;
}

.header #gNav>ul .menu .menuInner .imgMainBox .ttls .ja {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
  position: relative;
  font-weight: 400;
  letter-spacing: normal;
  padding: 0 0 30px;
  margin: 0 0 30px;
}

.header #gNav>ul .menu .menuInner .imgMainBox .ttls .ja::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  z-index: 1;
  width: 40px;
  height: 1px;
  content: '';
  background: #fff;
}

.header #gNav>ul .menu .menuInner .imgMainBox .ttls .en {
  display: block;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: normal;
}




.header #gNav>ul .menu .menuInner .contentsNavi {
  width: 66.97916666666667%;
  box-sizing: border-box;
  min-height: 401px;
  padding: 50px 3.554502369668246% 50px 3.554502369668246%;
}

/* メガメニューのリストコンテンツ一覧 */
.header #gNav>ul .menu .menuInner .contentsNavi a.lv2-link {
  display: none;
}

/* ベースフォルダ */
.header #gNav>ul .menu .menuInner .contentsNavi .lv2-folder {
  width: 100%;
  box-sizing: border-box;
  max-width:100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  
}

.header #gNav>ul .menu .menuInner .contentsNavi .lv2-folder > div:first-of-type {
  display: none; 
}

.header #gNav>ul .menu .menuInner .contentsNavi .lv2-folder [data-cms-id="235"] {
  display: none;
}

.header #gNav>ul .menu .menuInner .contentsNavi .lv3-item {
  box-sizing: border-box;
  border-bottom: 1px solid #92b7dd;
  position: relative;
  width: 41.49745%;
}

.header #gNav>ul .menu .menuInner .contentsNavi .lv3-item::before {
  position: absolute;
  content: '';
  top: 0;
  left: 4px;
  bottom: 0;
  left: inherit;
  margin: auto 0;
  z-index: 10;
  width: 11px;
  height: 6px;
  background: url(/albums/css/basic-header/abm00001419.svg) center center no-repeat;
  background-size: contain;
}

.header #gNav>ul .menu .menuInner .contentsNavi .lv3-item a {
  color: #fff;
  font-size: 1.4rem;
  padding: 13px 15px 14px 25px;
  box-sizing: border-box;
  width: 100%;
  display: block;
}

/* 大学案内 */
.header #gNav>ul .menu .menuInner.menu1 .imgMainBox:after {
  background: url(/albums/css/basic-header/abm00001623.jpg) no-repeat center center;
  background-size: cover;
}

.header #gNav>ul .menu .menuInner.menu1 .contentsNavi .lv2-folder {
  height: 354px; /* 高さ */
}
.header #gNav>ul .menu .menuInner.menu1 .contentsNavi .lv3-item:nth-child(2) {
  border-top: 1px solid #92b7dd;
}

/* 入試情報 */
.header #gNav>ul .menu .menuInner.menu2 .imgMainBox:after {
  background: url(/albums/css/basic-header/abm00001624.jpg) no-repeat center center;
  background-size: cover;
}

.header #gNav>ul .menu .menuInner.menu2 .contentsNavi .lv2-folder {
  /*height: 404px; 高さ */
  height: 354px; /* 高さ */
}
.header #gNav>ul .menu .menuInner.menu2 .contentsNavi .lv3-item:nth-child(2) {
  border-top: 1px solid #92b7dd;
}

/* 学部・大学院 */
.header #gNav>ul .menu .menuInner.menu3 .imgMainBox:after {
  background: url(/albums/css/basic-header/abm00001621.jpg) no-repeat center center;
  background-size: cover;
}

.header #gNav>ul .menu .menuInner.menu3 .contentsNavi .lv2-folder {
  height: 354px; /* 高さ */
}
.header #gNav>ul .menu .menuInner.menu3 .contentsNavi .lv3-item:nth-child(2) {
  border-top: 1px solid #92b7dd;
}

/* 学生生活 */
.header #gNav>ul .menu .menuInner.menu4 .imgMainBox:after {
  background: url(/albums/css/basic-header/abm00001620.jpg) no-repeat center center;
  background-size: cover;
}

.header #gNav>ul .menu .menuInner.menu4 .contentsNavi .lv2-folder {
  height: 300px; /* 高さ */
}
.header #gNav>ul .menu .menuInner.menu4 .contentsNavi .lv3-item:nth-child(2) {
  border-top: 1px solid #92b7dd;
}

/* 進路・就職 */
.header #gNav>ul .menu .menuInner.menu5 .imgMainBox:after {
  background: url(/albums/css/basic-header/abm00001619.jpg) no-repeat center center;
  background-size: cover;
}

.header #gNav>ul .menu .menuInner.menu5 .contentsNavi .lv2-folder {
  height: 300px; /* 高さ */
}
.header #gNav>ul .menu .menuInner.menu5 .contentsNavi .lv3-item:nth-child(2){
  border-top: 1px solid #92b7dd;
}

/* 国際交流・留学 */
.header #gNav>ul .menu .menuInner.menu6 .imgMainBox:after {
  background: url(/albums/css/basic-header/abm00001618.jpg) no-repeat center center;
  background-size: cover;
}

.header #gNav>ul .menu .menuInner.menu6 .contentsNavi .lv2-folder {
  height: 300px; /* 高さ */
}
.header #gNav>ul .menu .menuInner.menu6 .contentsNavi .lv3-item:nth-child(2) {
  border-top: 1px solid #92b7dd;
}

/* 図書館 */
.header #gNav>ul .menu .menuInner.menu7 .imgMainBox:after {
  background: url(/albums/css/basic-header/abm00001622.jpg) no-repeat center center;
  background-size: cover;
}

.header #gNav>ul .menu .menuInner.menu7 .contentsNavi .lv2-folder {
  height: 354px; /* 高さ */
}
.header #gNav>ul .menu .menuInner.menu7 .contentsNavi .lv3-item:nth-child(2) {
  border-top: 1px solid #92b7dd;
}
/* メガメニューのリストコンテンツ一覧ここまで */

/* 検索ボタン */
.header #gNav .searchBtn {
  display: flex;
  z-index: 12;
  position: relative;
}
@media screen and (max-width: 1259px) {
  .header #gNav .searchBtn {
    display: none;
  }
}

.header #gNav .searchBtn a {
  position: relative;
  font-size: 0;
  display: block;
  -webkit-transition: .2s;
  transition: .2s;
  background: #313131;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  margin: auto 0;
  box-sizing: border-box;
}

.header #gNav .searchBtn a::after {
  position: absolute;
  content: '';
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 21px;
  height: 21px;
  background: url(/albums/css/basic-header/abm00001420.svg) no-repeat center center;
  background-size: contain;
}

.header #gNav .searchBtn a.active::after {
  width: 17px;
  height: 17px;
  background: url(/albums/css/basic-header/abm00001421.svg) no-repeat center center;
  background-size: contain;
}
/* 検索ボタン */

/* 検索エリア */
.searchArea {
  position: absolute;
  z-index: 11;
  top: -1px;
  right: 0;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
  transform: translateY(0%) !important;
  padding: 17px 38px 16px 0;
  box-sizing: border-box;
  display: none;
}
@media only screen and (max-width: 1259px) {
  .searchArea {
    right: 0 !important;
    top: 0;
    padding: 29px 0 31px;
    border-top: 1px solid #92b7dd;
    border-bottom: 1px solid #92b7dd;
    background: rgba(29,108,188, .95);
  }
}
@media only screen and (max-width: 768px) {
  .searchArea {
    padding: 14px 0;
  }
}

.searchArea .searchSpBtn {
  display: none;
}

.searchArea .inputBox {
  overflow: hidden;
  position: relative;
  width: 380px;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  height: 38px;
  border-radius: 19px;
  margin-right: 11px;
  float: right;
}
@media only screen and (max-width: 1259px) {
  .searchArea .inputBox {
    margin-right: 0;
    float: none;
  }
  .searchArea .searchInner {
    display: flex;
    justify-content: center;
  }
  .searchArea .searchSpBtn {
    display: block;
    margin: 0 0 0 11px;
    z-index: 2;
    position: relative;
  }
  .searchArea .searchSpBtn a {
    position: relative;
    font-size: 0;
    display: block;
    -webkit-transition: .2s;
    transition: .2s;
    background: #313131;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    margin: auto 0;
    box-sizing: border-box;
  }
  .searchArea .searchSpBtn a::after {
    position: absolute;
    content: '';
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 17px;
    height: 17px;
    background: url(/albums/css/basic-header/abm00001421.svg) no-repeat center center;
    background-size: contain;
  }
}
@media only screen and (max-width: 768px) {
  .searchArea .inputBox {
    height: 30px;
    width: 275px;
  }
  .searchArea .searchInner {
    justify-content: flex-end;
    padding: 0 12px;
  }
  .searchArea .searchSpBtn {
    width: 30px;
    height: 30px;
    margin: 0 0 0 13px;
    display: block;
  }
  .searchArea .searchSpBtn a {
    width: 30px;
    height: 30px;
  }
  .searchArea .inputBox input[type='text'] {
    padding: 0 0 0 10px !important;
    width: calc(100% - 45px) !important;
  }
  .searchArea .inputBox .submitBtn {
    width: 40px !important;
    background-size: 13px 13px !important;
  }
}

.searchArea .inputBox:after {
  content: '';
  display: table;
  clear: both;
}

.searchArea .inputBox input[type='text'] {
  border: none;
  font-size: 1.4rem;
  width: calc(100% - 59px);
  padding: 0 0 0 15px;
  margin: auto 0 auto 5px;
  height: 38px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .searchArea .inputBox input[type='text'] {
    height: 30px;
    font-size: 1.6rem;
  }
}

.searchArea .inputBox .submitBtn {
  -webkit-transition: .2s;
  transition: .2s;
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-indent: -9999px;
  cursor: pointer;
  border: none;
  width: 54px;
  height: 38px;
  background: #fff url(/albums/css/basic-header/abm00001422.svg) no-repeat center center;
  background-size: 22px 22px;
}
@media only screen and (max-width: 768px) {
  .searchArea .inputBox .submitBtn {
    height: 30px;
  }
}

.searchArea .inputBox .submitBtn[disabled]:not(.noHover):hover {
  cursor: not-allowed;
  /* 禁止カーソル */
}
/* 検索エリア */

@media screen and (min-width: 769px) {
  .header #gNav>ul>li:not(.noHover):hover .menu,
  .header #gNav>ul>li:not(.noHover):hover .menuList {
    max-height: 9999px;
    opacity: 1;
  }
}


/* ==========================================================================

SP用メニューリスト

========================================================================== */
.spMenu {
  display: none;
}

/* 言語のホバー */
@media screen and (min-width: 1024px) {
  .spMenu ul li.lang > a:not(.noHover):hover {
    opacity: 1 !important;
  }
}
.spMenu ul li.lang:not(.noHover):hover {
  background: #135eab !important;
}

@media screen and (max-width: 1259px) {
  .spMenu {
    display: flex;
  }

  .spMenu ul {
    display: flex;
  }

  .spMenu ul > li {
    width: 82px;
    position: relative;
  }

  .spMenu ul > li::before {
    position: absolute;
    height: 45px;
    margin: auto 0;
    width: 1px;
    background: rgba(255,255,255,.5);
    top: 0;
    left: 0;
    bottom: 0;
    content: '';
  }

  .spMenu ul li > a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    position: relative;
    letter-spacing: .04em;
    padding: 0;
  }

  .spMenu ul li > a span {
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 auto;
    font-weight: normal;
    font-size: 1.2rem;
    line-height: 1;
  }

  /* 言語アイコン */
  .spMenu ul li.lang > a::before {
    position: absolute;
    content: '';
    margin: auto;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 22px;
    height: 22px;
    background: url(/albums/css/basic-header/abm00001425.svg) no-repeat center center;
    background-size: contain;
  }

  /* 検索アイコン */
  .spMenu ul li.searchBtn > a::before {
    position: absolute;
    content: '';
    margin: auto;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 21px;
    height: 21px;
    background: url(/albums/css/basic-header/abm00001420.svg) no-repeat center center;
    background-size: contain;
  }

  /* アクセスアイコン */
  .spMenu ul li.access > a::before {
    position: absolute;
    content: '';
    margin: auto;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 16px;
    height: 26px;
    background: url(/albums/css/basic-header/abm00001423.svg) no-repeat center center;
    background-size: contain;
  }

  .spMenu ul li .menu {
    z-index: 2;
    -webkit-transition: all .4s;
    transition: all .4s;
    overflow: hidden;
    width: 130px;
    top: 60px;
    right: -1px;
    position: absolute;
    box-sizing: border-box;
    border: 1px solid #92b7dd;
    background: #135eab;
    max-height: 0;
    opacity: 0;
  }

  .spMenu ul li .menu ul {
    display: block;
  }

  .spMenu ul li .menu ul li {
    width: 100%;
    border-bottom: 1px solid #92b7dd;
  }

  .spMenu ul li .menu ul li:last-child {
    border-bottom: none;
  }

  .spMenu ul li .menu ul li::before {
    display: none;
  }

  .spMenu ul li .menu ul li::after {
    position: absolute;
    content: '';
    top: 0;
    right: 15px;
    bottom: 0;
    left: inherit;
    margin: auto 0;
    z-index: 10;
    width: 11px !important;
    height: 6px !important;
    background: url(/albums/css/basic-header/abm00001419.svg) center center no-repeat;
    background-size: 11px 6px;
  }

  .spMenu ul li .menu ul li a {
    color: #fff;
    font-size: 1.2rem;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 1;
    padding: 14px 17px;
    position: relative;
    box-sizing: border-box;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .spMenu ul > li {
    width: 52px;
  }
  .spMenu ul li > a {
    letter-spacing: normal;
  }
  .spMenu ul li > a span {
    font-size: 1rem;
  }
  /* 言語アイコン */
  .spMenu ul li.lang > a::before {
    width: 19px;
    height: 19px;
    background: url(/albums/css/basic-header/abm00001425.svg) no-repeat center center;
    background-size: contain;
  }
  /* 検索アイコン */
  .spMenu ul li.searchBtn > a::before {
    width: 16px;
    height: 16px;
    background: url(/albums/css/basic-header/abm00001420.svg) no-repeat center center;
    background-size: contain;
  }
  /* アクセスアイコン */
  .spMenu ul li.access > a::before {
    width: 12px;
    height: 20px;
    background: url(/albums/css/basic-header/abm00001423.svg) no-repeat center center;
    background-size: contain;
  }

  .spMenu ul li .menu {
    top: 55px;
    left: 0;
    right: inherit;
    width: 407%;
  }

  .spMenu ul li .menu ul li > a {
    font-size: 1.3rem;
    padding: 18px 20px 19px;
  }

  .spMenu ul li .menu ul li::after {
    right: 20px;
  }
}

.spMenu ul li.lang:not(.noHover):hover .menu {
  max-height: 9999px;
  opacity: 1;
}


/* ==========================================================================

ハンバーガーボタン

========================================================================== */
.mainMenu {
  display: none;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: #313131;
  transition: .2s;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
@media screen and (max-width: 1259px) {
  .mainMenu {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .mainMenu {
    width: 55px;
    height: 55px;
  }
}
@media screen and (min-width: 1024px) {
  .mainMenu:not(.noHover):hover {
    opacity: .8;
  }
}

.mainMenu.drawerClose {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}

.mainMenu a {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 0;
  width: 21px;
}
@media screen and (max-width: 768px) {
  .mainMenu a {
    width: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .mainMenu a:not(.noHover):hover {
    opacity: 1 !important;
  }
}

.mainMenu a span {
  top: 50%;
  width: 21px;
  height: 1px;
  display: block;
  position: absolute;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .mainMenu a span {
    width: 18px;
  }
}

.mainMenu a span::before {
  top: 50%;
  right: 0;
  width: 21px;
  height: 1px;
  margin-top: -10px;
  content: '';
  display: block;
  position: absolute;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
@media screen and (max-width: 768px) {
  .mainMenu a span::before {
    width: 18px;
  }
}

.mainMenu a span::after {
  top: 50%;
  right: 0;
  width: 21px;
  height: 1px;
  margin-top: 9px;
  content: '';
  display: block;
  position: absolute;
  background: #fff;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
@media screen and (max-width: 768px) {
  .mainMenu a span::after {
    width: 18px;
  }
}

.mainMenu a span.iconClose {
  /*background: transparent !important;*/
  position: absolute;
  bottom: 0;
  left: 0;
}

.mainMenu a span.iconClose::before,
.mainMenu a span.iconClose::after {
  width: 21px;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .mainMenu a span.iconClose::before,
  .mainMenu a span.iconClose::after {
    width: 18px;
  }
}

.mainMenu a span.iconClose::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mainMenu a span.iconClose::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}


/* ==========================================================================

ドロワー

========================================================================== */
#drawer {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 120%;
  background: #1d6cbc;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  #drawer {
    top: 55px;
  }
}

#drawer.spScroll #drawerInner {
  width: 100%;
  padding-right: 0;
}

#drawer #drawerInner {
  z-index: 10000;
  position: relative;
  padding: 0;
  width: calc(100% + 17px);
  padding-right: 17px;
  overflow-y: scroll;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner {
    padding-right: 0;
    overflow-x: hidden;
  }
}

#drawer #drawerInner ul li {
  list-style: none;
}

#drawer #drawerInner .drawerContents {
  padding: 0 0 48px;
}

/* 下部リンク */
#drawer #drawerInner .linkTop {
  background: #135eab;
}

#drawer #drawerInner .linkTop ul {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

#drawer #drawerInner .linkTop ul li {
  width: 50%;
  border-right: 1px solid #92b7dd;
  border-bottom: 1px solid #92b7dd;
  position: relative;
  box-sizing: border-box;
}

#drawer #drawerInner .linkTop ul li:nth-child(2n) {
  border-right: none;
}

#drawer #drawerInner .linkTop ul li a {
  -webkit-transition: .2s;
  transition: .2s;
  padding: 17px 60px 18px 20px;
  line-height: 1.4;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.8rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .linkTop ul li a {
    font-size: 1.4rem;
    padding: 13px 27px 13px 25px;
    letter-spacing: -.01em;
  }
}

#drawer #drawerInner .linkTop ul li a::after {
  position: absolute;
  content: '';
  top: 0;
  right: 20px;
  bottom: 0;
  left: inherit;
  margin: auto 0;
  z-index: 10;
  width: 14px;
  height: 10px;
  background: url(/albums/css/basic-header/abm00001419.svg) center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .linkTop ul li a::after {
    width: 11px;
    height: 6px;
    right: 17px;
  }
}

#drawer #drawerInner .linkTop ul li a[target="_blank"]::after {
  display: none !important;
}
/* 下部リンク */

#drawer #drawerInner .bottomsBox {
  padding: 40px 70px 48px;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox {
    padding: 40px 0 48px;
  }
}

/* SEISENポータル */
#drawer #drawerInner .bottomsBox .subBtn {
  border-radius: 25px;
  margin: 0 0 40px;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .subBtn {
    border-radius: 20px;
  }
}

#drawer #drawerInner .bottomsBox .subBtn a {
  border-radius: 25px;
  display: block;
  width: 100%;
  height: 100%;
  padding: 9px 10px;
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  background: #77a9dc;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .subBtn a {
    border-radius: 20px;
    font-size: 1.4rem;
    padding: 11px 10px;
  }
}
/* SEISENポータル */

/* カラムボタン */
#drawer #drawerInner .bottomsBox .underTopLinks {
  border: 1px solid #92b7dd;
}

#drawer #drawerInner .bottomsBox .underTopLinks li {
  border-bottom: 1px solid #92b7dd;
  box-sizing: border-box;
}

#drawer #drawerInner .bottomsBox .underTopLinks li:last-child {
  border-bottom: none;
}

#drawer #drawerInner .bottomsBox .underTopLinks li a {
  display: block;
  height: 100%;
  padding: 16px 10px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  box-sizing: border-box;
  position: relative;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .underTopLinks li a {
    font-size: 1.4rem;
    padding: 7px 10px 8px;
    letter-spacing: -.01em;
  }
}

#drawer #drawerInner .bottomsBox .underTopLinks li.request a::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  margin: auto 0 auto -35px;
  width: 23px;
  height: 27px;
  background: url(/albums/css/basic-header/abm00001426.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .underTopLinks li.request a::before {
    width: 15px;
    height: 17px;
    margin: auto 0 auto -26px;
  }
}

#drawer #drawerInner .bottomsBox .underTopLinks li.contact a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0 auto -35px;
  z-index: 2;
  width: 26px;
  height: 19px;
  background: url(/albums/css/basic-header/abm00001427.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .underTopLinks li.contact a::before {
    width: 16px;
    height: 12px;
    margin: auto 0 auto -26px;
  }
}

#drawer #drawerInner .bottomsBox .underBottomsLinks {
  border-top: 1px solid #92b7dd;
  border-left: 1px solid #92b7dd;
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0 43px;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .underBottomsLinks {
    margin: 40px 0;
  }
}

#drawer #drawerInner .bottomsBox .underBottomsLinks li {
  border-right: 1px solid #92b7dd;
  border-bottom: 1px solid #92b7dd;
  box-sizing: border-box;
  width: 50%;
}

#drawer #drawerInner .bottomsBox .underBottomsLinks li a {
  display: block;
  height: 100%;
  padding: 16px 10px;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  position: relative;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .underBottomsLinks li a {
    padding: 9px 0;
    font-size: 1.4rem;
    white-space: nowrap;
    letter-spacing: -.01em;
  }
}
/* カラムボタン */

/* SNS */
#drawer #drawerInner .bottomsBox .sns ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul {
    gap: 16px;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 100%;
  font-size: 0;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul li {
    width: 36px;
    height: 36px;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li:first-child {
  margin-left: 0;
}

#drawer #drawerInner .bottomsBox .sns ul li a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

@media screen and (min-width: 1024px){
  #drawer #drawerInner .bottomsBox .sns ul li a:not(.noHover):hover {
    opacity: .8;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}

#drawer #drawerInner .bottomsBox .sns ul li.fb a::before {
  width: 13px;
  height: 23px;
  background: url(/albums/css/basic-header/abm00001401.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul li.fb a::before {
    width: 10px;
    height: 17px;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li.ig a::before {
  width: 23px;
  height: 23px;
  background: url(/albums/css/basic-header/abm00001402.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul li.ig a::before {
    width: 17px;
    height: 17px;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li.tw a::before {
  width: 24px;
  height: 19px;
  background: url(/albums/css/basic-header/abm00001403.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul li.tw a::before {
    width: 18px;
    height: 15px;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li.line a::before {
  width: 30px;
  height: 29px;
  background: url(/albums/css/basic-header/abm00001405.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul li.line a::before {
    width: 23px;
    height: 22px;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li.yt a::before {
  width: 28px;
  height: 20px;
  background: url(/albums/css/basic-header/abm00001404.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul li.yt a::before {
    width: 20px;
    height: 15px;
  }
}

#drawer #drawerInner .bottomsBox .sns ul li.pod a::before {
  width: 36px;
  height: 14px;
  background: url(/albums/css/basic-header/abm00006078.svg) 0 0 no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  #drawer #drawerInner .bottomsBox .sns ul li.pod a::before {
    width: 28px;
    height: 12px;
  }
}
/* SNS */


/* ==========================================================================

英語、スペイン語サイト用

========================================================================== */
.header.es .inner .logo,
.header.en .inner .logo {
  margin: 39px 0 0;
  max-width: inherit;
  width: 202px;
}
@media screen and (max-width: 1259px) and (min-width: 769px){
  .header.es .inner .logo,
  .header.en .inner .logo {
    max-width: 215px;
    margin: auto 0 auto 15px;
  }
}
@media only screen and (max-width: 768px) {
  .header.es .inner .logo,
  .header.en .inner .logo {
    max-width: 141px;
    margin: auto 8px auto 10px;
  }
}

.header.es .inner .logo a,
.header.en .inner .logo a {
  width: 100%;
  padding-top: 4.945%;
  display: block;
  background: url(/albums/css/basic-header/abm00001656.svg) center center no-repeat;
  background-size: contain;
}

.header.es.on .inner .logo,
.header.en.on .inner .logo {
  margin-top: 62px;
}


.header.en .inner .rightNav .tops .subLink {
  margin: 0 10px 0 702px;
}
.header.es .inner .rightNav .tops .subLink {
  margin: 0 10px 0 646px;
}

#drawer.es #drawerInner .bottomsBox .underBottomsLinks,
#drawer.en #drawerInner .bottomsBox .underBottomsLinks {
  margin: 0 0 40px;
}

/* グロナビ内 */
.header.es #gNav>ul .menu .menuInner .contentsNavi .lv3-link,
.header.en #gNav>ul .menu .menuInner .contentsNavi .lv3-link {
  display: none;
}

.header.es #gNav>ul .menu .menuInner .contentsNavi .lv4-item,
.header.en #gNav>ul .menu .menuInner .contentsNavi .lv4-item {
  box-sizing: border-box;
  border-bottom: 1px solid #92b7dd;
  position: relative;
  width: 41.49745%;
}

.header.es #gNav>ul .menu .menuInner .contentsNavi .lv4-item a,
.header.en #gNav>ul .menu .menuInner .contentsNavi .lv4-item a {
  color: #fff;
  font-size: 1.4rem;
  padding: 13px 15px 14px 25px;
  box-sizing: border-box;
  width: 100%;
  display: block;
}

.header.es #gNav>ul .menu .menuInner .contentsNavi .lv4-item::before,
.header.en #gNav>ul .menu .menuInner .contentsNavi .lv4-item::before {
  position: absolute;
  content: '';
  top: 0;
  left: 4px;
  bottom: 0;
  left: inherit;
  margin: auto 0;
  z-index: 10;
  width: 11px;
  height: 6px;
  background: url(/albums/css/basic-header/abm00001419.svg) center center no-repeat;
  background-size: contain;
}


/* ボーダーの調整 */
.header.es #gNav>ul .menu .menuInner .contentsNavi .lv4-item:nth-child(1),
.header.en #gNav>ul .menu .menuInner .contentsNavi .lv4-item:nth-child(1) {
  border-top: 1px solid #92b7dd;
}