
/* - Loader
----------------------------------------------*/
#l-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #003492;
  z-index: 9000;
}

#l-loader .l-loader_logo {
  display: block;
  width: 236px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* - Header
----------------------------------------------*/
#g_header {
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 909;
}

#g_header.is-hide {
  transform: translateY(0);
}

.gh_content {
  max-width: 1220px;
  height: 80px;
  padding: 0 10px;
  background: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.gh_container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
}

.gh_logo-aj {
  display: block;
  position: absolute;
  top: 25px;
  left: 34px;
}
.gh_logo-aj .logo img {
  width: 50%;
  height: auto;
}
.gh_logo-aj .text {
  margin-left: 5px;
}
.gh_logo-aj .text img {
  width: 29px;
  vertical-align: bottom;
}

.gh_search {
  margin: 30px 15px 0 0;
}

.gh_logo {
  display: block;
  width: 147px;
  margin: 24px 18px 0 0;
}

.gh_item-genki {
  display: block;
  width: 49px;
  margin: 22px 8px 0 0;
}

.gh_item-inyan {
  display: block;
  width: 33px;
  margin: 24px 10px 0 0;
}

@media screen and (max-width: 767px) {
  #g_header {
    position: fixed;
    top: 0;
    left: 0;
    transition: all 400ms;
    transform: translateY(0);
  }

  #g_header.is-hide {
    transform: translateY(-100%);
  }

  .gh_content {
    height: auto;
    padding: 0 0;
  }

  .gh_container:nth-of-type(1) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 13vw;
  }

  .gh_search {
    margin: 0 0 0 5%;
  }

  .gh_logo {
    width: 30%;
    margin: 0 5% 0 0;
  }

  .gh_container:nth-of-type(2) {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 15vw;
    margin-top: -2.6666vw;
    text-align: center;
  }

  .gh_item-genki {
    width: 13%;
    margin: 0 0 0 3.5%;
  }

  .gh_item-inyan {
    width: 9%;
    margin: 0 0 0 2%;
  }

  .gh_logo-aj {
    margin: 1% 0 0 7%;
    position: relative;
    top: 0;
    left: 0;
  }
  .gh_logo-aj .logo {
    display: inline-block;
    width: 36vw;
  }
  .gh_logo-aj .logo img {
    width: 100%;
  }
  .gh_logo-aj .text {
    width: 7.5vw;
  }
}

.searchBox {}

.searchBox form {
  position: relative;
  display: block;
  width: 260px;
}

.searchBox form input[type="text"] {
  font-size: 14px;
  height: 28px;
  padding: 0 1em;
  color: #808080;
  background-color: #ffffff;
  border-radius: 100px;
  border: 1px solid #adadad;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.searchBox form input[type="image"] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 17px;
  height: 17px;
  display: inline-block;
}

.searchBox input[type="text"]::-webkit-input-placeholder {
  color: #cccccc;
}

.searchBox input[type="text"]:-ms-input-placeholder {
  color: #cccccc;
}

.searchBox input[type="text"]::-moz-placeholder {
  color: #cccccc;
}

.searchBox input[type="text"]::-placeholder {
  color: #cccccc;
}

@media screen and (max-width: 900px) {
  .searchBox form {
    width: 230px;
  }
}

@media screen and (max-width: 767px) {
  .searchBox form {
    width: 52vw;
  }

  .searchBox form input[type="text"] {
    font-size: 3.5vw;
    height: 7.0vw;
  }

  .searchBox form input[type="image"] {
    width: 4.5vw;
    height: 4.5vw;
    right: 2.5vw;
  }
}

/* - Nav
----------------------------------------------*/
@media screen and (max-width: 767px) {
  .drawer-btn {
    width: 10.6vw;
    height: 10.6vw;
    background: #001462;
    border-radius: 50%;
    position: absolute;
    right: 4%;
    bottom: 3vw;
    z-index: 1;
    overflow: hidden;
  }

  .drawer-btn span {
    width: 54%;
    height: 0.8vw;
    border-radius: 100vh;
    background: #fff;
    position: absolute;
    left: 23%;
    transition: 0.2s;
  }

  .drawer-btn span:nth-child(1) {
    top: 25%;
  }

  .drawer-btn span:nth-child(2) {
    top: 46%;
  }

  .drawer-btn span:nth-child(3) {
    top: 67%;
  }

  .drawer-btn.is-active span:nth-child(1) {
    top: 46%;
    transform: rotate(45deg);
  }

  .drawer-btn.is-active span:nth-child(2) {
    height: 0;
  }

  .drawer-btn.is-active span:nth-child(3) {
    top: 46%;
    transform: rotate(135deg);
  }
}

.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawer {
    width: 100%;
    height: 100vh;
    padding: 28vw 0 100px 0;
    background: rgba(0, 20, 98, .95);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow-y: auto;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .gnav_list {
    width: 100%;
    padding: 65px 0;
  }

  .gnav_list li {
    text-align: center;
  }

  .gnav_list li + li {
    margin-top: 40px;
  }

  .gnav_list a {
    font-weight: bold;
    color: #fff;
    font-size: 2.2rem;
    display: inline-block;
    padding: 10px 30px;
    position: relative;
  }
}

@media screen and (max-width: 424px) {
  .gnav_list a {
    font-size: 5.5vw;
  }
}

/* - Footer
----------------------------------------------*/
#g_footer {
  position: relative;
  background-color: #ffffff;
}

#g_footer footer {
  margin: 0 auto;
  padding: 20px 0px 20px;
  max-width: 970px;
}

@media screen and (max-width: 767px) {
  #g_footer footer {
    padding: 20px 10px 25px;
    width: 100%;
    border-top: 2px solid #727272;
  }
}

#gf_inner {
  display: table;
  width: 100%;
}

@media screen and (max-width: 767px) {
  #gf_inner {
    display: block;
    width: 100%;
  }
}

#gf_logo,
#gf_navi,
#gf_copyright {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  #gf_logo,
  #gf_navi,
  #gf_copyright {
    display: block;
  }
}

#gf_logo {
  padding-right: 20px;
  width: 163px;
}

#gf_logo img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  #gf_logo {
    margin: 0 auto 10px;
    padding-right: 0;
    width: 35%;
    height: auto;
  }
  #gf_logo img {
    width: 100%;
    height: auto;
  }
}

/* フッタメニュー */
#gf_navi {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, arial, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 767px) {
  #gf_navi {
    margin: 4.5% auto 10px;
    width: 67%;
    line-height: 1.7;
    text-align: center;
    font-size: 3.5vw;
  }
}

#gf_navi li {
  float: left;
  padding: 0 5px;
  margin: 3px 0;
  font-size: 81.25%;
  border-left: 1px solid #cccccc;
}

#gf_navi li:last-child {
  border-right: 1px solid #cccccc;
}

@media screen and (max-width: 767px) {
  #gf_navi li {
    display: inline-block;
    float: none;
    padding: 0 4%;
    margin: 0 0;
    font-size: 87%;
    border-left: 1px solid #cccccc;
  }
  #gf_navi li:last-child {
    border-right: 1px solid #cccccc;
  }
}

#gf_navi li a {
  font-size: 1.2rem;
  line-height: 1.7;
  text-decoration: underline;
  color: #505050;
}

#gf_navi li a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  #gf_navi li a {
    font-size: 1.1rem;
  }
}

#gf_copyright {
  font-size: 16px;
  text-align: right;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, arial, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 767px) {
  #gf_copyright {
    font-size: 3.7vw;
    line-height: 1.7;
    text-align: center;
    margin-top: 3%;
  }
}

/* - topagetop
----------------------------------------------*/
.btn_topagetop {
  position: fixed;
  bottom: 70px;
  right: 14px;
  z-index: 800;
}

.btn_topagetop a {
  display: block;
  width: 78px;
  height: 78px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-image: url(../img/btn_topagetop.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: auto;
  border-radius: 78px;
  transition: all 0.3s;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .btn_topagetop {
    bottom: 30px;
    right: 1%;
  }

  .btn_topagetop a {
    width: 44px;
    height: 44px;
    background-size: contain;
  }
}

/* - Layout
----------------------------------------------*/
#l-pageWrapper {
  width: 100%;
  overflow: hidden;
}

.l-inner {
  max-width: 920px;
  padding: 0 10px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 0;
  }
}

.c-icon-play {
  position: relative;
  transition: all .3s;
}

.c-icon-play:hover {
  opacity: .6;
}

.c-icon-play:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/icon_play-01.png") no-repeat center center / 64px auto;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .c-icon-play:hover {
    opacity: 1;
  }

  .c-icon-play:before {
    background-size: 50px auto;
  }
}

/* - components
----------------------------------------------*/
.c-link-a {
  font-weight: bold;
  color: #223680;
  font-size: 1.6rem;
  display: inline-block;
  transition: all .3s;
}

.c-link-a:hover {
  opacity: .6;
}

.c-link-a > span {
  display: block;
  padding: 0 50px 0 0;
  position: relative;
}

.c-link-a > span:after {
  content: '';
  display: block;
  width: 36px;
  height: 8px;
  background: url("../img/arrow_02.png") no-repeat center bottom / contain;
  position: absolute;
  bottom: 3px;
  right: 8px;
}

@media screen and (max-width: 767px) {
  .c-link-a:hover {
    opacity: 1;
  }
}

.c-btn-a {
  display: inline-block;
  width: 335px;
  transition: all .3s;
}

.c-btn-a:hover {
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .c-btn-a {
    width: 90%;
    max-width: 335px;
  }

  .c-btn-a:hover {
    opacity: 1;
  }
}

.c-flex-justify {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* - Modal
----------------------------------------------*/
@media screen and (max-width: 767px) {
  .modaal-video-wrap {
    margin: auto 0;
  }
}

.modaal-close {
  height: 42px;
  width: 42px;
  border-radius: 0;
  cursor: pointer;
}

.modaal-close:after,
.modaal-close:before {
  height: 100%;
  width: 1px;
  top: 0;
  left: 21px;
}

.modaal-close:hover {
  background: transparent;
}

.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .modaal-close {
    width: 20px;
    height: 20px;
  }

  .modaal-close:after,
  .modaal-close:before {
    left: 10px;
  }
}


.l-slider-button-next,
.l-slider-button-prev {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 0 0 0;
  background: url("../img/arrow_04.png") no-repeat center center / contain;
  position: absolute;
  top: calc(23vw - 16px);
  left: 6%;
  z-index: 11;
}

.l-slider-button-next {
  transform: scale(-1, 1);
  left: auto;
  right: 6%;
}

.l-slider-pagination {
  display: block;
}

.l-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(34, 54, 128, 1);
  margin: 0 9px;
  opacity: .4;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 9px;
}

.l-slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .l-slider-button-next,
  .l-slider-button-prev {
    display: none;
  }

  .l-slider-pagination {
    display: none;
  }
}

/* - effect
----------------------------------------------*/
.c-fadeInUp {
  opacity: 0;
  transform: translateY(50px);
  transition: all .5s ease-out;
}

.c-fadeInUp.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.hv-opacity {
  transition: all .3s ease-out;
}

.hv-opacity:hover {
  opacity: .6;
}







