/* comonn */
.sp {
  display: none;
}

@media (max-width: 567px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

textarea {
  resize: vertical;
}

body.fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* g_nav */
.main_top {
  margin-top: 90px;
}

header.nav * {
  box-sizing: border-box;
}

header.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav .g_nav {
  width: 100%;
  background-color: #DC4D27;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}

.g_nav ul {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g_nav>ul>li {
  position: relative;
  margin: 0;
  height: 90px;
  padding: 16px 0;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-right: 1px solid #fff;
}

.g_nav>ul>li:last-child {
  border-right: 0px solid #fff;
}

.g_nav ul li img {
  width: 2vw;
  height: auto;
  margin-right: 0.4vw;
}

.g_nav>ul>li>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g_nav ul li p, .g_nav ul li a {
  color: #fff;
  font-size: 1vw;
  text-decoration: none;
  text-align: left;
  margin: 0;
  cursor: pointer;
}

.g_nav ul li a.nav_home_link {
  font-size: 20px;
}

.g_nav ul .list_parent .list_child {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  background-color: #DC4D27;
  /*visibility: hidden;
  opacity: 0;*/
  transition: opacity 0.3s, visibility 0s ease 0.3s;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
}

@media (min-width: 568px) {
  /*.g_nav ul .list_parent:hover .list_child {
    transition-delay: 0s;
    visibility: visible;
    opacity: 1;
  }*/
	.g_nav ul .list_parent .list_child {
		display: none;
	}
}

.g_nav ul .list_parent .list_child li {
  margin: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.g_nav ul .list_parent .list_child li img {
  width: 1vw;
  margin-right: 0.5vw;
  margin-left: 8.82%;
}

@media (max-width: 567px) {
  .main_top {
    display: none;
  }

  header.nav * {
    box-sizing: border-box;
  }

  header.nav {
    position: inherit;
    width: 100%;
  }

  /* ハンバーガーの記述 */
  .nav .hambarger {
    width: 15.3vw;
    height: 15.3vw;
    position: fixed;
    right: 1rem;
    top: 0.8rem;
    background-color: #fff;
    border-radius: 5px;
    z-index: 100;
  }

  .nav .hambarger span {
    position: absolute;
    left: calc(25% - 2.5px);
    transform: translateY(-50%);
    width: calc(50% + 5px);
    height: 3px;
    background-color: #DC4D27;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav .hambarger span:nth-child(1) {
    top: 30%;
  }

  .nav .hambarger span:nth-child(2) {
    top: 50%;
  }

  .nav .hambarger span:nth-child(3) {
    top: 70%;
  }

  .nav.open .hambarger span:nth-child(1) {
    top: 50%;
    transform: rotate(135deg);
  }

  .nav.open .hambarger span:nth-child(2) {
    left: 50%;
    width: 0px;
  }

  .nav.open .hambarger span:nth-child(3) {
    top: 50%;
    transform: rotate(-135deg);
  }

  .nav .g_nav {
    position: fixed;
    width: calc(100% - 2rem);
    height: auto;
    max-height: calc(100% - 1.6rem);
    top: 0.8rem;
    left: 1rem;
    padding: 0.667vw;
    border: 0.667vw solid #fff;
    border-radius: 5px;
    background-color: #DC4D27;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease 0s;
    z-index: 50;
    overflow-y: auto;
  }

  .nav.open .g_nav {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .g_nav ul {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: inline-block;
    border: 0.667vw solid #fff;
    padding: 13.3vw 5vw 0;
  }

  .g_nav>ul>li {
    position: relative;
    width: 100%;
    height: 22vw;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid #fff;
  }

  .g_nav>ul>li:last-child {
    border-right: none;
    border-bottom: none;
  }

  .g_nav>ul .right_arrow:before {
    content: "";
    position: absolute;
    right: 10px;
    top: ;
    width: 6.67vw;
    height: 6.67vw;
    background: url('/images/new_img/right_icon.png') no-repeat center/contain;
  }

  .g_nav>ul .right_circle:before {
    content: "";
    position: absolute;
    right: 10px;
    top: 7.45vw;
    width: 6.67vw;
    height: 6.67vw;
    background: no-repeat center/contain;
  }

  .g_nav>ul .right_circle:not(.open):before {
    background-image: url('/images/new_img/plus_icon2.png');
  }

  .g_nav>ul .right_circle.open:before {
    background-image: url('/images/new_img/minus_icon2.png');
  }

  .g_nav ul li img {
    width: 10.67vw;
    height: auto;
    margin-right: 2.67vw;
  }

  .g_nav ul li p,
  .g_nav ul li a {
    color: #fff;
    font-size: 4.8vw;
    text-decoration: none;
    text-align: left;
    margin: 0;
  }

  .g_nav ul li a.nav_home_link {
    font-size: 5.3vw;
  }

  .g_nav ul li .nav_home_img {
    width: 14.67vw;
    margin-left: 1.6vw;
  }

  .g_nav ul .list_parent .click_open {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 22vw;
  }

  .g_nav ul .list_parent .list_child {
    width: 100%;
    height: 0px;
    position: fixed;
    padding: 0;
    border: 0;
    display: flex;
    flex-wrap: wrap;
    background-color: #DC4D27;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0s ease 0.3s, height 0.3s ease;
    box-shadow: none;
  }

  .g_nav ul .list_parent.open {
    height: auto;
    padding-top: 5.7vw;
  }

  .g_nav ul .list_parent.open .list_child {
    position: static;
    transition-delay: 0s;
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 5.7vw 0;
  }

  .g_nav ul .list_parent .list_child li {
    margin: 0;
    height: auto;
    width: 50%;
    display: flex;
    align-items: center;
    /*justify-content: center;*/
	  padding: 0.5rem 0;
  }

  .g_nav ul .list_parent .list_child li a {
    font-size: 3.33vw;
  }

  .g_nav ul .list_parent .list_child li img {
    width: 4vw;
    margin-right: 1vw;
    margin-left: 0;
  }
}


/*----- current -----*/
#home .g_nav ul .nav_home {
  background-color: #28a839;
}
#plan .g_nav ul .nav_plan,
#plan .g_nav ul .nav_plan .list_child {
  background-color: #28a839;
}
#qcells .g_nav ul .nav_qcells {
  background-color: #28a839;
}
#partner .g_nav ul .nav_partner,
#partner .g_nav ul .nav_partner .list_child {
  background-color: #28a839;
}
#contact .g_nav ul .nav_contact,
#contact .g_nav ul .nav_contact .list_child {
  background-color: #28a839;
}


.contact_link a {
	display: inline-block;
	background: #fff;
	color: #DC4D27;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	padding: 1rem 1.4rem;
	border-radius: 10px;
	border: 4px solid #DC4D27;
	box-sizing: border-box;
}

/* btn_group */
.btn_group {
  display: flex;
  justify-content: center;
}

@media (max-width: 567px) {
  .btn_group {
    display: block;
  }
}

.btn_group .contact_link {
  margin: 0 1rem;
}

@media (max-width: 567px) {
  .btn_group .contact_link {
    margin: 0 0 1rem;
  }
}

/* btn_mypage */
.btn_mypage {
  position: fixed;
  right: 0;
  top: 140px;
  z-index: 99;
  width: 140px;
}

.btn_mypage a {
  box-sizing: border-box;
  padding: 1rem 0.2rem;
  width: 140px;
  display: block;
  background-color: #2846a8;
  color: #fff;
  text-decoration: none;
  max-height: 20em;
  font-size: 0.8rem;
  border-radius: 6px 0 0 6px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

_:-ms-lang(x),
.btn_mypage a {
  max-height: 14em;
}

.btn_mypage a strong {
  font-size: 0.8rem;
  display: block;

}

.btn_mypage a span::after {
  content: "";
  display: block;
  background: url("../images/common/icon_mypage.png") no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin: 10px auto 0;
}

@media (min-width: 568px) {
  .g_nav ul li.nav_btn_mypage {
    display: none;
  }
}

@media (max-width: 567px) {
  .btn_mypage {
    display: none;
  }
}

/* btn_shindan */
.btn_shindan {
	position: fixed;
	right: 0;
	top: 275px;
	z-index: 99;
	width: 140px;
}

.btn_shindan a {
	box-sizing: border-box;
	padding: 1rem 0.2rem;
	width: 140px;
	display: block;
	background-color: #ea4e23;
	color: #fff;
	text-decoration: none;
	font-size: 0.8rem;
	max-height: 20em;
	line-height: 1.4;
	border-radius: 6px 0 0 6px;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}

_:-ms-lang(x), .btn_shindan a {
  max-height: 11em;
}

.btn_shindan a strong {
	font-size: 1rem;
	display: block;
	
}

.btn_shindan a span::after {
	content: "";
	display: block;
	background: url("../images/common/icon_sideshindan.png") no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	margin: 10px auto 0;
}

@media (min-width: 568px) {
	.g_nav ul li.nav_btn_shindan {
		display: none;
	}
}

@media (max-width: 567px) {
	.btn_shindan {
		display: none;
	}
}

/* btn_dl */
.btn_dl {
  position: fixed;
  right: 0;
  top: 460px;
  z-index: 99;
  width: 140px;
}

.btn_dl a {
  box-sizing: border-box;
  padding: 1rem 0.2rem;
  width: 140px;
  display: block;
  background-color: #28a839;
  color: #fff;
  text-decoration: none;
  max-height: 20em;
  font-size: 0.8rem;
  border-radius: 6px 0 0 6px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

_:-ms-lang(x),
.btn_dl a {
  max-height: 14em;
}

.btn_dl a strong {
  font-size: 0.8rem;
  display: block;

}

.btn_dl a span::after {
  content: "";
  display: block;
  background: url("../images/common/icon_sidedl.png") no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  margin: 10px auto 0;
}

@media (min-width: 568px) {
  .g_nav ul li.nav_btn_dl {
    display: none;
  }
}

@media (max-width: 567px) {
  .btn_dl {
    display: none;
  }
}


/*----- choice_con -----*/
.choice_con .content {
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .choice_con .content {
    margin: 0 15px;
  }
}

.choice_con .group01,
.choice_con .group02 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media (max-width: 567px) {
  .choice_con .group01,
  .choice_con .group02 {
    display: block;
    margin-bottom: 2rem;
  }
}

.choice_con .group01 a strong,
.choice_con .group02 a strong {
  display: block;
  font-size: 130%;
}

.choice_con .group01 a,
.choice_con .group02 a {
  display: flex;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  text-decoration: none;
  text-align: left;
  width: 48%;
  margin-bottom: 1rem;
}

@media (max-width: 567px) {
  .choice_con .group01 a,
  .choice_con .group02 a {
    width: auto;
  }
}

.choice_con .group01 a {
  background-color: #DC4D27;
  color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.choice_con .group01 a strong {
  margin-right: 10px;
}

.choice_con .group02 a {
  background-color: #28a839;
  color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.choice_con .title01,
.choice_con .title02 {
  font-size: 160%;
  text-align: center;
}

.choice_con .title01 {
  color: #DC4D27;
}

.choice_con .title02 {
  color: #28a839;
}

.choice_con a span {
  display: flex;
  align-items: center;
}

.choice_con .choice_set span::before {
  content: url(/images/new_img/header_nav_chikuden.png);
  display: block;
  margin-right: 5px;
}

.choice_con .choice_area span::before {
  content: url(/images/new_img/header_nav_tokyo.png);
  display: block;
  margin-right: 5px;
}

.choice_con .choice_normal span::before {
  content: url(/images/new_img/header_nav_bilder.png);
  display: block;
  margin-right: 5px;
}

.choice_con .choice_shindan span::before {
  content: url(/images/common/icon_sideshindan.png);
  display: block;
  margin-right: 5px;
}

.choice_con .choice_faq span::before {
  content: url(/images/common/header_nav_faq.png);
  display: block;
  margin-right: 5px;
}

.choice_con .choice_requesr span::before {
  content: url(/images/common/icon_sidedl.png);
  display: block;
  margin-right: 5px;
}

.choice_con .choice_contact span::before {
  content: url(/images/new_img/header_nav_mail.png);
  display: block;
  margin-right: 5px;
}