/* common CSS */
body, input, button, textarea, select, option, a {
  font-family: "Lato", "NotoSans", sans-serif;
  outline-color: #0692cd;
}

.wrap {
  position: relative;
  width: 100%;
  padding-top: 105px;
}

select {
  border: 1px solid #ddd;
  background: #fff url(/images/ico/sel_ico.png) 94% 50% no-repeat;
  padding: 0 22px 0 10px;
  box-sizing: border-box;
}

select::-ms-expand {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-filter: alpha(opacity=0);
}

.scrollOff {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

/* placeholder */
::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3000;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 4%;
  box-sizing: border-box;
}

.logo_area .main_logo a {
  display: block;
  overflow: hidden;
  width: 100px;
  height: 30px;
  background-image: url(../images/common/logo.png);
  background-image: url(../images/common/logo@2x.png), none;
  background-size: contain;
  text-indent: -9999px;
}

.logo_area .member_box a {
  display: inline-block;
  margin-right: 4px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid #e42500;
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  color: #e42500;
  letter-spacing: -0.065rem;
  box-sizing: border-box;
  transition: all 0.3s;
}

.logo_area .member_box a.primary {
  background: #e42500;
  color: #fff;
}

.logo_area .menu_btn {
  width: 26px;
  height: 20px;
  background: url(../images/ico/menu_ico.png) 100% 50% no-repeat;
  background-size: contain;
  text-indent: -9999px;
  outline: none;
}

.logo_area .menu_btn.on {
  background: url(../images/ico/cls_ico.png) 100% 50% no-repeat;
  background-size: contain;
}

.header .nav_bar {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0.5%;
  box-sizing: border-box;
}

.header .nav_bar li {
  width: 25%;
}

.header .nav_bar a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 45px;
  letter-spacing: -0.045rem;
  color: #000;
  text-align: center;
}

.all_menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: #fff;
  overflow: hidden;
  z-index: 20;
}

.all_menu .am_head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 5px 4% 0;
  box-sizing: border-box;
}

.all_menu .am_head span {
  height: 48px;
  line-height: 46px;
  border: 1px solid #ddd;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.065rem;
  color: #666;
  box-sizing: border-box;
}

.all_menu .am_head span:first-child {
  width: 38.5%;
  border-color: #e42500;
  color: #e42500;
}

.all_menu .am_head span a {
  display: block;
  width: 100%;
  line-height: 46px;
}

.all_menu .am_head .am_t {
  display: flex;
  justify-content: space-between;
  width: 60%;
}

.all_menu .am_head .am_t a {
  flex: 1 1 auto;
  font-size: 0.85rem;
}

.all_menu .am_head .am_t a:first-child {
  border-right: 1px solid #ddd;
}

.all_menu .am_cont {
  position: absolute;
  top: 75px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  border-top: 15px solid #f4f4f5;
  padding: 30px 4%;
  overflow-y: auto;
  box-sizing: border-box;
}

.all_menu .am_cont h3 {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.065rem;
  color: #000;
  margin: 0 0 10px;
}

.all_menu .am_cont .menu_tb {
  width: 100%;
  margin: 0 0 20px;
}

.all_menu .am_cont .menu_tb td {
  width: 50%;
  height: 45px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.all_menu .am_cont .menu_tb .no {
  border-color: #eee;
}

.all_menu .am_cont .menu_tb a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 43px;
  padding: 0 15px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  box-sizing: border-box;
}

.all_menu .am_cont .menu_tb a:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background: #aaa;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin: 0 4px 0 0;
  vertical-align: middle;
  box-sizing: border-box;
}

.all_menu .logout_btn {
  display: block;
  width: 25%;
  max-width: 110px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: -0.065rem;
  color: #666;
  margin-left: auto;
  box-sizing: border-box;
}

/* footer */
.footer {
  width: 100%;
  padding: 0 4% 110px;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
}

.footer .lnk {
  padding: 16px 0 12px;
  margin: 0 auto 24px;
  border-bottom: 1px solid #ddd;
  box-sizing: border-box;
}

.footer .lnk li {
  display: inline-block;
  margin: 0 5% 0 0;
  vertical-align: middle;
}

.footer .lnk a {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: -0.065rem;
  color: #222;
}

.footer .lnk li:nth-child(3) a {
  font-weight: 700;
}

.footer .foot_logo {
  width: 88px;
  height: 26px;
  background-image: url(../images/common/ft-logo.png);
  background-image: url(../images/common/ft-logo@2x.png), none;
  background-size: contain;
}

.footer .foot_info {
  margin: 18px auto;
}

.footer .foot_info span {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.045rem;
  color: #444;
  margin: 0 12px 0 0;
}

.footer .notice {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.045rem;
  color: #999;
  word-break: keep-all;
  margin: 0 0 12px;
}

.footer .foot_caution {
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #999;
}

.footer .copy {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  color: #999;
  margin: 0 0 24px;
}

.footer .sns_list {
  display: flex;
}

.footer .sns_list li {
  width: 24px;
  height: 24px;
  margin: 0 5px 0 0;
}

.footer .go_top {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 0;
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6) url(../images/ico/go_top.png) 50% 50% no-repeat;
  background-size: 35% auto;
  text-indent: -9999px;
  box-sizing: border-box;
}

.fix_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-item: center;
  width: 100%;
  height: 65px;
  background: #fff;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
  z-index: 10;
}

.fix_bar a {
  width: 20%;
  height: 100%;
  padding: 45px 0 0;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: -0.045rem;
  background: url(../images/ico/foot_ico1.png) 50% 25% no-repeat;
  background-size: auto 38%;
  color: #000;
  box-sizing: border-box;
}

.fix_bar a:nth-child(2) {
  background: url(../images/ico/foot_ico2.png) 50% 25% no-repeat;
  background-size: auto 38%;
}

.fix_bar a:nth-child(3) {
  background: url(../images/ico/foot_ico3.png) 50% 25% no-repeat;
  background-size: auto 38%;
}

.fix_bar a:nth-child(4) {
  background: url(../images/ico/foot_ico4.png) 50% 25% no-repeat;
  background-size: auto 38%;
}

.fix_bar a:nth-child(5) {
  background: url(../images/ico/foot_ico5.png) 50% 25% no-repeat;
  background-size: auto 38%;
}

.fix_banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  border-top: 1px solid #ddd;
  box-sizing: border-box;
  z-index: 10;
}

.fix_banner_list {
  position: relative;
  overflow: hidden;
  height: 100%;
  transform: translate3d(0%, 0%, 0px);
}

.fix_banner_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  will-change: tansform, opacity;
  transition: transform 0.6s, opacity 0.6s;
  transform: translate3d(0%, -100%, 0px);
}

.fix_banner_item.active {
  z-index: 10;
  animation-duration: 0.6s;
  animation-name: banner-slideTop;
  transition: none;
  transform: translate3d(0%, 0%, 0px);
}

.fix_banner_link {
  display: block;
  text-align: center;
  cursor: pointer;
}

.fix_banner_link img {
  display: inline-block;
  height: 60px;
}

@keyframes banner-slideTop {
  0% {
    opacity: 0;
    transform: translate3d(0%, 100%, 0px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0%, 0%, 0px);
  }
}
/* sub header */
.header .back_btn {
  width: 20px;
  height: 22px;
  background: url(../images/ico/back_ico.png) 0 50% no-repeat;
  background-size: contain;
  text-indent: -9999px;
  outline: none;
}

.header .home_btn {
  width: 40px;
  height: 22px;
  background: url(../images/ico/home_ico.png) 50% 50% no-repeat;
  background-size: contain;
  margin-right: auto;
  text-indent: -9999px;
}

.header .ct_ttl {
  flex: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  text-align: center;
  font-size: 1.15rem;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: -0.045rem;
  color: #000;
  z-index: -1;
}

.snb {
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: 45px;
  padding: 0 4%;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
  overflow: hidden;
  overflow-x: auto;
  box-sizing: border-box;
}

.snb li {
  display: inline-block;
  margin-right: 7%;
}

.snb li:last-child {
  margin-right: 0;
}

.snb a {
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.045rem;
  color: #000;
  box-sizing: border-box;
}

.snb .on a {
  color: #e42500;
}

.snb .on a:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e42500;
}

/* paging */
.paging {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 12px auto 20px;
}

.paging a {
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #ddd;
  line-height: 1.8rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: #999;
  margin: 0 2px;
  box-sizing: border-box;
}

.paging a.arrow {
  font-size: 0.85rem;
  letter-spacing: -0.065rem;
}

.paging a.on, .paging a.page {
  width: 1.5rem;
  line-height: 1.8rem;
  border: none;
  font-weight: 500;
  color: #555;
  margin: 0;
}

.paging a.on {
  color: #222;
  font-weight: 700;
}

.sub_ttl {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.045rem;
  color: #222;
  background: url(/images/ico/join_ico.png) 0 50% no-repeat;
  background-size: 12px auto;
  margin-bottom: 12px;
  padding: 0 0 0 18px;
  box-sizing: border-box;
}

.sub_ttl + p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.045rem;
  color: #777;
  word-break: keep-all;
  margin: 0 0 10px;
}

@media screen and (max-width: 414px) {
  .all_menu .am_head span {
    height: 45px;
    line-height: 43px;
  }
  .all_menu .am_head span a {
    line-height: 43px;
  }
  .footer .go_top {
    width: 13.3%;
    height: 0;
    padding: 13.3% 0 0;
  }
}

/*# sourceMappingURL=common.css.map */
