@charset "utf-8";
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  background-color: #1B8AFF;
}
@media screen and (max-width:768px){
  .header {
    padding: 10px;
  }
}
.header_title {
  display: inline-block;
  min-width: 250px;
  white-space: nowrap;
}
.header_title_link {
  display: block;
  padding: 23px 0 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  background-image: url("../../common/img/img_header_logo.png");
  background-image: -webkit-image-set(url("../../common/img/img_header_logo.png")1x, url("../../common/img/img_header_logo@2x.png")2x);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto 23px;
}
@media screen and (max-width:768px){
  .header_title {
    min-width: 160px;
  }
  .header_title_link {
    padding: 15px 0 0;
    font-size: 12px;
    line-height: 18px;
	  background-size: auto 15px;
  }
}
.header_navigation {
  position: absolute;
  top: 20px;
  right: 40px;
}
@media screen and (max-width:768px){
  .header_navigation {
    top: 10px;
    right: 10px;
  }
}
.header_language {
  display: inline-block;
  padding: 10px 20px;
  background-color: #53A6F8;
  border-radius: 33px;
  position: relative;
}
.header_language_title {
  display: inline-block;
  padding: 21px 0 0;
  background-image: url("../../common/img/ico_header_language.png");
  background-image: -webkit-image-set(url("../../common/img/ico_header_language.png")1x, url("../../common/img/ico_header_language.png")2x);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 21px;
  font-size: 11px;
  line-height: 15px;
  color: #fff;
  vertical-align: middle;
}
.header_language_list {
  display: inline-block;
}
.header_language_list_item {
  display: inline-block;
  margin:  0 0 0 20px;
  vertical-align: middle;
}
.header_language_list_item_link {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width:920px){
  .header_language {
    display: inline-block;
    padding: 0;
    background-color: inherit;
    border-radius: none;
    cursor: pointer;
  }
  .header_language_title {
    display: inline-block;
    padding: 30px 0 0;
    background-size: auto 26px;
    font-size: 13px;
    line-height: 17px;
  }
  .header_language_list {
    display: none;
    position: absolute;
    top:100%;
    left: 50%;
    transform: translateX(-50%);
    width: 164px;
    height: 173px;
    padding: 23px 10px 13px;
    background-image: url("../../common/img/bg_language.png");
    background-image: -webkit-image-set(url("../../common/img/bg_language.png")1x, url("../../common/img/bg_language@2x.png")2x);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .header_language_list_item {
    display: block;
    margin:  0;
  }
  .header_language_list_item:nth-child(n+2) {
    border-top: 1px #c6c6c6 solid;
  }
  .header_language_list_item_link {
    display: block;
    color: #000;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
  }
}
@media screen and (max-width:768px){
  .header_language_title {
    padding: 18px 0 0;
    background-size: auto 15px;
    font-size: 10px;
    line-height: 11px;
  }
}
.header_login {
  display: inline-block;
  vertical-align: middle;
  margin: 0 30px;
  padding: 30px 0 0;
  background-image: url("../../common/img/ico_header_login.png");
  background-image: -webkit-image-set(url("../../common/img/ico_header_login.png")1x, url("../../common/img/ico_header_login@2x.png")2x);
  background-position: center 1px;
  background-repeat: no-repeat;
  background-size: auto 22px;
  font-size: 13px;
  line-height: 17px;
  color: #fff;
}
.header_menu {
  display: inline-block;
  vertical-align: middle;
  padding: 30px 0 0;
  background-image: url("../../common/img/ico_header_menu.png");
  background-image: -webkit-image-set(url("../../common/img/ico_header_menu.png")1x, url("../../common/img/ico_header_menu@2x.png")2x);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 24px;
  font-size: 13px;
  line-height: 17px;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width:768px){
  .header_login {
    margin: 0 20px;
    padding: 20px 0 0;
    background-size: auto 14px;
    font-size: 10px;
    line-height: 11px;
  }
  .header_menu {
    padding: 18px 0 0;
    background-size: auto 14px;
    font-size: 10px;
    line-height: 11px;
  }
}
.nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  display: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  text-align: right;
}
.nav_on {
  opacity: 1;
}
.nav_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.53);
  width: 100%;
  height: 100%;
  min-height: 100vh;
  cursor: pointer;
}
.nav_wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  background-color: #fff;
  padding: 100px 0 0;
  width: 30%;
  max-width: 500px;
  min-width: 325px;
}
.nav_title {
  display: none;
}
.nav_close {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 33px;
  height: 33px;
  background-image: url("../../common/img/ico_close_01.png");
  background-image: -webkit-image-set(url("../../common/img/ico_close_01.png")1x, url("../../common/img/ico_close_01@2x.png")2x);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.nav_menu {
  border-top: 1px #b7b7b7 solid;
}
.nav_menu_child {
  border-bottom: 1px #b7b7b7 solid;
}
.nav_menu_child_link {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-weight: bold;
  font-size: 16px;
  padding: 0 20px;
  background-image: url("../../common/img/ico_arrow_right_orange_01.png");
  background-image: -webkit-image-set(url("../../common/img/ico_arrow_right_orange_01.png")1x, url("../../common/img/ico_arrow_right_orange_01@2x.png")2x);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 15px;
  text-align: left;
  transition: all 0.2s ease-in-out;
}
.nav_menu_child_link:hover {
  background-color: #000;
  color: #fff;
}
.nav_menu_child_title {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  padding: 20px 20px 10px;
}
.nav_menu_child_list {
  padding: 0 0 10px 0;
}
.nav_menu_child_list_item_link {
  display: block;
  width: 100%;
  padding: 10px 10px 10px 30px;
  background-image: url("../../common/img/ico_arrow_right_orange_01.png");
  background-image: -webkit-image-set(url("../../common/img/ico_arrow_right_orange_01.png")1x, url("../../common/img/ico_arrow_right_orange_01@2x.png")2x);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 15px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
  transition: all 0.2s ease-in-out;
}
.nav_menu_child_list_item_link:hover {
  background-color: #000;
  color: #fff;
}
.nav_banner {
  padding: 20px 30px 0;
}
.nav_banner:last-child {
  padding: 20px 30px;
}
.nav_banner_link {
  display: block;
  width: 100%;
  height: 89px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.nav_banner_link_01 {
  background-image: url("../../common/img/bn_menu_01_pc.png");
  background-image: -webkit-image-set(url("../../common/img/bn_menu_01_pc.png")1x, url("../../common/img/bn_menu_01_pc@2x.png")2x);
}
:lang(en) .nav_banner_link_01 {
  background-image: url("../../common/img/bn_menu_01_pc_en.png");
  background-image: -webkit-image-set(url("../../common/img/bn_menu_01_pc_en.png")1x, url("../../common/img/bn_menu_01_pc_en@2x.png")2x);
}
@media screen and (max-width:768px){
  .nav {
    opacity: 1;
  }
  .nav_on {
    transform: translateX(-100%);
  }
  .nav_overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0,0,0,0.53);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease-in-out;
  }
  .nav_on .nav_overlay {
    opacity: 1;
  }
  .nav_wrap {
    position: absolute;
    top: 0;
    left: 100%;
    padding: 60px 0 0;
    width: 100%;
    max-width: none;
    min-width: none;
  }
  .nav_title {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 15px 0 0;
    background-image: url("../../common/img/img_menu_logo.png");
    background-image: -webkit-image-set(url("../../common/img/img_menu_logo.png")1x, url("../../common/img/img_menu_logo@2x.png")2x);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto 15px;
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
    min-width: 131px;
    text-align: left;
  }
  .nav_close {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 20px;
    height: 20px;
  }
  .nav_menu_child_link {
    display: block;
    width: 100vw;
    background-position: calc(100vw - 35px) center;
  }
  .nav_menu_child_title {
    text-align: left;
    font-size: 16px;
    padding: 20px 20px 10px;
  }
  .nav_menu_child_list {
    padding: 0 0 10px 20px;
  }
  .nav_menu_child_list_item_link {
    width: calc(100vw - 20px);
    background-position: calc(100vw - 55px) center;
  }
  :lang(en) .nav_menu_child_list_item_link {
    padding: 10px 30px 10px 20px;
  }
  .nav_banner {
    padding: 20px 20px 0;
  }
  .nav_banner:last-child {
    padding: 20px;
  }
  .nav_banner_link {
    height: 80px;
  }
  .nav_banner_link_01 {
    background-image: url("../../common/img/bn_menu_01_sp.png");
    background-image: -webkit-image-set(url("../../common/img/bn_menu_01_sp.png")1x, url("../../common/img/bn_menu_01_sp@2x.png")2x);
  }
  :lang(en) .nav_banner_link_01 {
    background-image: url("../../common/img/bn_menu_01_sp_en.png");
    background-image: -webkit-image-set(url("../../common/img/bn_menu_01_sp_en.png")1x, url("../../common/img/bn_menu_01_sp_en@2x.png")2x);
  }
}
.header_information {
  position: relative;
  width: 100%;
  margin: 20px 0 0;
}
.header_information_box {
  background-color: #002F52;
  border-radius: 6px;
  color: #fff;
  padding: 6px 20px;
  font-size: 0;
}
.header_information_box:after {
  content: '';
  display: block;
  clear: both;
}
.header_information_name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  width: calc(100% - 220px);
}
.header_information_right {
  float: right;
}
.header_information_coupon {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 0 50px;
}
.header_information_coupon_num {
  background-color: #fff;
  color: #222;
  border-radius: 24px;
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 0 10px 0 5px;
}
.header_information_point {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 0 50px;
}
.header_information_point_num {
  margin: 0 0 0 10px;
}
@media screen and (max-width:768px) {
  .header_information {
    margin: 10px 0 0;
  }
  .header_information_box {
    padding: 5px 10px;
  }
  .header_information_name {
    font-size: 12px;
    line-height: 16px;
    width: calc(100% - 130px);
  }
  .header_information_coupon {
    font-size: 12px;
    line-height: 16px;
    padding: 0 0 0 15px;
  }
  .header_information_coupon_num {
    border-radius: 16px;
    margin: 0 0 0 10px;
    padding: 0 5px 0 5px;
  }
  .header_information_point {
    font-size: 12px;
    line-height: 16px;
    padding: 0 0 0 15px;
  }
  .header_information_point_num {
    margin: 0 0 0 5px;
  }
}
