/*
  Bankme専用 layout.css
*/

/*------------------------------------------
  Base Layout
------------------------------------------*/
.content {
	width: 100%;
	margin-top: 54px;
}
@media (min-width: 1024px) {
  .content {
    margin-top: 85px;
  }
}

/*------------------------------------------
  Parts
------------------------------------------*/
/* CTA Button */
.cta-btn {
  max-width: 305px;
  width: 100%;
  margin: auto;
  box-shadow: 0 3px 0 #828282;
  border-radius: 52px;
  display: block;
  font-size: 0;
  transition: .3s;
}
.cta-btn:hover {
  box-shadow: none;
}
@media (min-width: 600px) {
}
@media (min-width: 1024px) {
  .cta-btn {
    max-width: 350px;
  }
}

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
	width: 100%;
	background: #fff;
	box-shadow: 0 3px 4px rgba(0, 0, 0, .2);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
	height: 54px;
	transition: .3s;
}
.cmn-header.active {
  background: url(../images/common/sp_nav_bg.png) no-repeat center / cover;
  height: 100%;
}
.cmn-header.active:before,
.cmn-header.active:after {
  content: "";
  width: 115px;
  height: 142px;
  display: block;
  background: url(../images/common/sp_menu_dots.png) no-repeat center / cover;
  position: absolute;
  z-index: -1;
}
.cmn-header.active:before {
  right: 0;
  top: 5rem;
}
.cmn-header.active:after {
  left: 0;
  bottom: 5rem;
  transform: rotate(180deg);
}

.cmn-header .logo {
	font-size: 0;
	position: absolute;
	left: 5%;
	top: 13px;
	width: 140px;
}

.cmn-header .gnav {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  width: 100%;
  margin: auto;
  padding: 3rem 0 0;
  position: relative;
}
.cmn-header.active .gnav {
  height: calc(100% - 54px);
  opacity: 1;
  visibility: visible;
  transform: translateY(54px);
  overflow: scroll;
}
.cmn-header .gnav .list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem 0;
  width: 90%;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
}
.cmn-header .gnav .char-text {
  text-align: center;
  background: url(../images/common/sp_nav_point.png) no-repeat center / contain;
  padding: 3rem 0;
}
.cmn-header .gnav .char-text p {
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  position: relative;
}
.cmn-header .gnav .char-text p:before {
  content: "";
  width: 73px;
  height: 106px;
  display: block;
  background: url(../images/common/sp_nav_char01@2x.png) no-repeat center / cover;
  position: absolute;
  left: -95px;
  top: 50%;
  transform: translateY(-50%);
}
.cmn-header .gnav .char-text p:after {
  content: "";
  width: 85px;
  height: 106px;
  display: block;
  background: url(../images/common/sp_nav_char02@2x.png) no-repeat center / cover;
  position: absolute;
  right: -95px;
  top: 50%;
  transform: translateY(-50%);
}
.cmn-header .gnav .btn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem 0;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.cmn-header .gnav .btn .orange,
.cmn-header .gnav .btn .navy {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  border: 2px solid #333;
  border-radius: 22px;
  max-width: 165px;
  width: 100%;
  height: 45px;
  text-align: center;
}
.cmn-header .gnav .btn .img {
  max-width: 305px;
  width: 100%;
}
.cmn-header .gnav .btn .orange {
  display: none;
}
.cmn-header .gnav .btn .navy {
  background: #004796;
}

.cmn-header .gnav .bottom {
  margin-top: auto;
  width: 100%;
  text-align: center;
}
.cmn-header .gnav .bottom ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 1rem;
}
.cmn-header .gnav .bottom p {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  background: #0066FF;
  padding: 3px 0;
}

.js-gnav-trigger {
  width: 25px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 5%;
  top: 18px;
  z-index: 99;
}
.js-gnav-trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #004796;
  transition: 0.3s;
  border-radius: 10px;
}
.js-gnav-trigger.open span:nth-of-type(1) {
  transform: translateY(9px) rotate(-315deg);
}
.js-gnav-trigger.open span:nth-of-type(2) {
  opacity: 0;
}
.js-gnav-trigger.open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(315deg);
}

@media (min-width: 600px) {
  .cmn-header .logo {
    left: 2.5%;
  }
  .js-gnav-trigger {
    right: 2.5%;
  }
}
@media (min-width: 1024px) {
  .cmn-header {
    height: 85px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 3rem;
    padding: 0 2.5%;
  }
  .cmn-header .logo {
    width: 153px;
    position: static;
  }
  .cmn-header .gnav {
    height: auto;
    opacity: 1;
    visibility: visible;
    flex-direction: row;
    gap: 0 2rem;
    width: auto;
    margin: 0;
    padding: 0;
    align-items: center;
    text-align: center;
  }
  .cmn-header .gnav .list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 1rem;
    width: auto;
    margin: 0;
  }
  .cmn-header .gnav .list a {
    font-size: 14px;
    font-weight: 500;
    color: #000;
  }
  .cmn-header .gnav .btn {
    flex-direction: row;
    width: auto;
    gap: 0 1rem;
  }
  .cmn-header .gnav .btn .orange,
  .cmn-header .gnav .btn .navy {
    border: 1px solid #333;
    border-radius: 25px;
    max-width: 100%;
    width: 145px;
    height: 35px;
  }
  .cmn-header .gnav .btn .img {
    display: none;
  }
  .cmn-header .gnav .btn .orange {
    display: flex;
    background: #F2BB23;
  }
  .cmn-header .gnav .char-text,
  .cmn-header .gnav .bottom {
    display: none;
  }
  .js-gnav-trigger {
    display: none;
  }
}
@media (min-width: 1200px) {
  .cmn-header {
    gap: 0 5rem;
  }
  .cmn-header .gnav {
    gap: 0 5rem;
  }
  .cmn-header .gnav .list {
    gap: 0 2rem;
  }
  .cmn-header .gnav .btn {
    gap: 0 1.5rem;
  }
}

/*------------------------------------------
  Fixed Banner
------------------------------------------*/
/*
.fixed-banner {
  width: 100%;
  border-top: 2px solid #EC9200;
  border-bottom: 2px solid #EC9200;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  transition: .3s;
}
.fixed-banner.deactive {
  transform: translateY(100%);
}
.fixed-banner a {
  background: url(../images/common/fixed_banner_bg.png) no-repeat center / cover;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-banner .inner {
  max-width: 370px;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-left: 2rem;
}
.fixed-banner .char {
  position: absolute;
  left: .5rem;
  bottom: 0;
}
.fixed-banner .arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.fixed-banner .large {
  font-size: 20px;
}
@media (min-width: 600px) {
}
@media (min-width: 1024px) {
  .fixed-banner {
    display: none;
  }
}
*/

/*------------------------------------------
  
------------------------------------------*/
/*  */
@media (min-width: 600px) {
}
@media (min-width: 1024px) {
}