@charset "utf-8";
/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

body {
  min-width: 1080px;
  padding-top: 120px;
}

/* Header
---------------------------------------------------------------*/
#header {
  width: 100%;
  min-width: 1080px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.header__inner {
  max-width: 1300px;
  height: 120px;
  margin: 0 auto;
  position: relative;
}
.logo {
  margin-left: 10px;
  padding-top: 20px;
}
.logo a {
  display: block;
  width: 346px;
  height: 80px;
  background-image: url(../images/logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
.logo__kosha {
  width: 280px;
  position: absolute;
  left: 386px;
  top: 21px;
}
.nav__wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.nav__apply__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #E65100;
  color: #fff;
  width: 160px;
  height: 120px;
  position: absolute;
  top: 0;
  right: 0;
}
.page--electricity .nav__apply__btn {
  background-color: #E65100;
}
.page--lpgas .nav__apply__btn {
  background-color: #E65100;
}
.nav__apply__btn:before {
  content: "";
  display: block;
  width: 32px;
  height: 24px;
  background-image: url(../images/icon_computer_w.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 8px;
}
.nav__apply__btn.end {
  line-height: 1.3;
  background-color: #888;
}
.nav {
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  box-sizing: border-box;
  width: 620px;
  position: absolute;
  right: 320px;
  top: 79px;
  background-color: #967C20;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
}
.page--electricity .nav {
  background-color: #D06730;
}
.page--lpgas .nav {
  background-color: #649AAC;
}
.nav__item {
  padding: 6px 0;
}
.nav__item a {
  color: #fff;
}
.nav__2nd__wrap {
  position: absolute;
  top: 100%;
  left: 0;

}
.nav__2nd {
  display: none;
  position: relative;
  top: 10px;
  left: 0;
  width: 774px;
  background-color: #967C20;
  box-shadow: 0 3px 6px rgba(0,0,0,.16);
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px;
}
.nav__item:nth-of-type(1) .nav__2nd:before {
  content: "";
  position: absolute;
  left: 100px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #967C20;
}
.nav__item:nth-of-type(2) .nav__2nd:before {
  content: "";
  position: absolute;
  left: 276px;
  top: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 16px solid #967C20;
}
.page--electricity .nav__2nd {
  background-color: #D06730;
}
.page--electricity .nav__item:nth-of-type(1) .nav__2nd:before ,
.page--electricity .nav__item:nth-of-type(2) .nav__2nd:before {
  border-bottom-color: #D06730;
}
.page--lpgas .nav__2nd {
  background-color: #649AAC;
}
.page--lpgas .nav__item:nth-of-type(1) .nav__2nd:before ,
.page--lpgas .nav__item:nth-of-type(2) .nav__2nd:before {
  border-bottom-color: #649AAC;
}
.nav__item__accordion {
  position: relative;
}
.nav__item__accordion:hover {
  /*cursor: pointer;*/
}
.nav__item > a:hover:after {
  top: calc(100% - 20px);
}
.nav__item.open .nav__2nd,
.nav__item:hover .nav__2nd {
  display: block;
}
.nav__2nd__item:not(:nth-of-type(1)) {
  border-bottom: 1px dashed #fff;
  padding: 0 0 14px;
  margin: 0 10px 14px;
}
.nav__2nd__item:nth-of-type(1) {
  padding-bottom: 10px;
}
.nav__2nd__item:last-of-type {
  margin-bottom: 0;
}
.nav__2nd__item a:not(.nav__2nd__item__accordion) {
  padding-left: 16px;
  background-image: url(../images/icon_chevron_white.svg);
  background-size: 6px auto;
  background-position: left top 6.5px;
  background-repeat: no-repeat;
  display: block;
}
.nav__2nd__item:nth-of-type(1) a {
  padding-left: 26px;
  background-image: url(../images/icon_question.svg);
  background-size: 20px auto;
  background-position: left top 3px;
  background-repeat: no-repeat;
  display: inline-block;
}
.nav__2nd__item__accordion {
  padding-left: 24px;
  background-image: url(../images/icon_arrow_white.svg);
  background-size: 18px auto;
  background-position: left top 3px;
  background-repeat: no-repeat;
  display: inline-block;
  padding-bottom: 6px;
}
.nav__3rd__item {
  display: inline-block;
  margin-right: 30px;
  font-size: .875rem;
}
.nav__btn__wrap {
}
.nav__btn__mypage {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5D4037;
  border-radius: 5px;
  width: 120px;
  min-height: 56px;
  box-sizing: border-box;
  font-size: .8125rem;
  color: #fff;
  position: absolute;
  top: 10px;
  right: 180px;
}
.nav__btn__mypage:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/icon_lock_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.nav__btn__requirements {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 120px;
  min-height: 36px;
  box-sizing: border-box;
  font-size: .875rem;
  background-color: #0097A7;
  color: #fff;
  position: absolute;
  top: 79px;
  right: 180px;
}
.nav__btn__requirements:before {
  content: "";
  display: block;
  width: 15px;
  height: 18px;
  background-image: url(../images/icon_pdf_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.nav__tel {
  position: absolute;
  top: 12px;
  right: 320px;
  color: #967C20;
}
.nav__tel a {
  color: #967C20;
  display: flex;
  padding-right: 16px;
}
.nav__tel a span {
  font-size: 1.375rem;
  font-weight: bold;
  white-space: nowrap;
}
.nav__tel a:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(../images/icon_tel.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.page--electricity .nav__tel {
  color: #D06730;
}
.page--electricity .nav__tel a {
  color: #D06730;
}
.page--electricity .nav__tel a:before {
  background-image: url(../images/icon_tel_red.svg);
}
.page--lpgas .nav__tel {
  color: #649AAC;
}
.page--lpgas .nav__tel a {
  color: #649AAC;
}
.page--lpgas .nav__tel a:before {
  background-image: url(../images/icon_tel_blue.svg);
}
.nav__tel > p {
  font-size: .75rem;
  padding-left: 32px;
  line-height: 1.1;
  margin-top: -4px;
  width: 250px;
}
@media (max-width: 1520px) {
  .nav__apply__btn {
    width: 130px;
  }
  .nav__btn__mypage ,
  .nav__btn__requirements {
    right: 150px;
  }
  .nav ,
  .nav__tel {
    right: 290px
  }
}
@media (max-width: 1420px) {
  .nav__tel > p {
    font-size: .6875rem;
  }
}
@media (max-width: 1370px) {
  .logo {
    padding-top: 25px;
  }
  .logo a {
    width: 303px;
    height: 70px;
  }
  .logo__kosha {
    width: 245px;
    top: 22px;
    left: 340px;
  }
}
@media (max-width: 1260px) {
  .logo {
    padding-top: 30px;
  }
  .logo a {
    width: 260px;
    height: 60px;
  }
  .logo__kosha {
    width: 210px;
    top: 25px;
    left: 290px;
  }
}
@media (max-width: 1170px) {
  .logo__kosha {
    width: 204px;
  }
  .nav__apply__btn {
    width: 100px;
    font-size: .875rem;
  }
  .nav__btn__mypage ,
  .nav__btn__requirements {
    right: 120px;
  }
  .nav ,
  .nav__tel {
    right: 260px;
    font-size: 14px;
  }
  .nav {
    width: 540px;
  }
}

/* Main
---------------------------------------------------------------*/
#main {
  overflow: hidden;
}
#container {
  background: url(../images/bg1.svg) no-repeat center top/1920px auto,url(../images/bg2.svg) no-repeat center bottom/1920px auto;
}
@media (min-width: 1920px) {
  #container {
    background: url(../images/bg1.svg) no-repeat center top/100% auto,url(../images/bg2.svg) no-repeat center bottom/100% auto;
  }
}

/* footer
---------------------------------------------------------------*/
#footer {
  position: relative;
  background-color: #fff;
  padding-top: 47px;
}
.footer__inner {
  max-width: 1300px;
  padding: 0 10px 40px;
  border-bottom: 1px solid #E5E5E5;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.footer__logo__wrap {
  display: flex;
  width: 706px;
  justify-content: space-between;
  margin-bottom: 22px;
}
.footer__logo {
  display: block;
  width: 346px;
  height: 80px;
  background-image: url(../images/logo.svg);
  background-size: cover;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
.footer__logo__kosha {
  display: block;
  width: 320px;
}
.footer__logo__kosha img {
  width: 100%;
}
.footer__contact {
  margin-bottom: 6px;
  font-size: .875rem;
  color: #967C20;
  font-weight: 700;
  line-height: 2;
}
.footer__tel {
  color: #967C20;
}
.footer__tel a {
  color: #967C20;
  display: flex;
  padding-right: 16px;
}
.footer__tel a span {
  font-size: 1.25rem;
  font-weight: bold;
  white-space: nowrap;
}
.footer__tel a:before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url(../images/icon_tel.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.page--electricity .footer__contact {
  color: #D06730;
}
.page--electricity .footer__tel {
  color: #D06730;
}
.page--electricity .footer__tel a {
  color: #D06730;
}
.page--electricity .footer__tel a:before {
  background-image: url(../images/icon_tel_red.svg);
}
.page--lpgas .footer__contact {
  color: #649AAC;
}
.page--lpgas .footer__tel {
  color: #649AAC;
}
.page--lpgas .footer__tel a {
  color: #649AAC;
}
.page--lpgas .footer__tel a:before {
  background-image: url(../images/icon_tel_blue.svg);
}
.footer__tel > p {
  font-size: .75rem;
  line-height: 1.1;
  padding-left: 30px;
}
.footer__btn {
  display: flex;
  justify-content: space-between;
  width: 279px;
  position: absolute;
  bottom: 40px;
  left: 470px;
}
.footer__btn__mypage {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 130px;
  min-height: 40px;
  box-sizing: border-box;
  font-size: .875rem;
  color: #fff;
  line-height: 1.3;
  background-color: #5D4037;
}
.footer__btn__mypage:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/icon_lock_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.footer__btn__requirements {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 125px;
  min-height: 40px;
  box-sizing: border-box;
  font-size: .875rem;
  background-color: #0097A7;
  color: #fff;
}
.footer__btn__requirements:before {
  content: "";
  display: block;
  width: 15px;
  height: 18px;
  background-image: url(../images/icon_pdf_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 4px;
}
.footer__wrap {
  display: flex;
  width: 496px;
  justify-content: space-between;
}
.footer__nav__ttl {
  /*height: 58px;*/
}
.footer__nav {
  border-left: 1px solid #E5E5E5;
  padding-left: 20px;
  font-weight: 400;
}
.footer__nav__item {
  margin-bottom: 7px;
}
.footer__nav__item:last-of-type {
  margin-bottom: 0;
}
.footer__bottom {
  max-width: 1300px;
  padding: 20px 10px;
  text-align: right;
  margin: 0 auto;
  font-weight: 400;
}
.footer__nav2 {
  display: inline-flex;
  align-items: center;
}
.footer__nav2__item {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.footer__nav2__item:first-of-type {
  /*margin-right: 40px;*/
}
.footer__nav2__item:first-of-type:before {
  content: "";
  display: block;
  width: 18px;
  height: 22px;
  background-image: url(../images/icon_home_v4.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-right: 6px;
}
.footer__nav2__item:nth-of-type(2):before {
  content: "";
  display: block;
  width: 18px;
  height: 22px;
  background-image: url(../images/icon_file.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-right: 6px;
}
.footer__nav2__item:nth-of-type(3):before {
  content: "";
  display: block;
  width: 27px;
  height: 22px;
  background-image: url(../images/icon_contact.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-right: 6px;
}
.footer__nav2__item:nth-of-type(4):before {
  content: "";
  display: block;
  width: 29px;
  height: 22px;
  background-image: url(../images/icon_computer.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-right: 6px;
}
.page--electricity .footer__nav2__item:first-of-type:before {
  background-image: url(../images/icon_home_red_v4.svg);
}
.page--electricity .footer__nav2__item:nth-of-type(2):before {
  background-image: url(../images/icon_file_red.svg);
}
.page--electricity .footer__nav2__item:nth-of-type(3):before {
  background-image: url(../images/icon_contact_red.svg);
}
.page--electricity .footer__nav2__item:nth-of-type(4):before {
  background-image: url(../images/icon_computer_red.svg);
}
.page--lpgas .footer__nav2__item:first-of-type:before {
  background-image: url(../images/icon_home_blue_v4.svg);
}
.page--lpgas .footer__nav2__item:nth-of-type(2):before {
  background-image: url(../images/icon_file_blue.svg);
}
.page--lpgas .footer__nav2__item:nth-of-type(3):before {
  background-image: url(../images/icon_contact_blue.svg);
}
.page--lpgas .footer__nav2__item:nth-of-type(4):before {
  background-image: url(../images/icon_computer_blue.svg);
}
.copyright {
  background-color: #967C20;
  color: #fff;
}
.copyright small {
  display: block;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px;
  font-weight: 400;
}

@media (max-width: 1250px) {
  .footer__wrap {
    width: 450px;
  }
}
@media (max-width: 1200px) {
  .footer__logo__wrap {
    width: 500px;
  }
  .footer__logo {
    width: 260px;
    height: 60px;
  }
  .footer__logo__kosha {
    width: 210px;
  }
  .footer__btn {
    left: 300px;
  }
}
.fixed__btn__wrap {
  display: none;
}


/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
/* TOP */
.mv {
  min-height: 700px;
  width: 100%;
  background-image: url(../images/kv_bg_v4.jpg);
  background-size: auto 100%;
  background-position: center;
  box-sizing: border-box;
  padding: 30px 0 40px;
}
@media (min-width: 1920px) {
  .mv {
    background-size: cover;
  }
}
.mv__inner {
  width: 1040px;
  margin: 0 auto;
  position: relative;
}
.mv__txt {
  margin-bottom: 16px;
  margin-left: -10px;
}
.mv__txt2 {
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.458333;
  margin-bottom: 32px;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.mv__date__wrap {
  display: flex;
  width: 1040px;
  justify-content: space-between;
  margin-bottom: 46px;
}
.mv__date {
  display: flex;
  align-items: center;
  color: #fff;
  letter-spacing: .05em;
  text-shadow: 0 3px 6px rgba(0,0,0,.16);
}
.mv__date__ttl {
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.6;
  padding-right: 20px;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-right: 20px;
  border-right: 1px solid #fff;
}
.mv__date__txt {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.15;
}
.mv__date__txt p {
  letter-spacing: 0.15em;
}
.mv__date__txt span {
  font-size: 2.5rem;
}
.mv__document {
  width: 301px;
  height: 68px;
  border-radius: 10px;
  display: flex;
  border: 4px solid #fff;
  background: #0097A7;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  font-weight: 400;
  color: #fff;
}
.mv__document:before {
  content: "";
  display: block;
  width: 27px;
  height: 32px;
  background-image: url(../images/icon_pdf_w.svg);
  background-size: 100% auto;
  margin-right: 16px;
}
.mv__wrap {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mv__support {
  width: 480px;
  /*margin-bottom: 12px;*/
}
.mv__support__list__wrap {
  display: flex;
  margin-bottom: 16px;
}
.mv__support__list__ttl {
  background-color: #D06730;
  color: #fff;
  font-size: .875rem;
  border-radius: 4px;
  padding: 6px 9px;
}
.mv__support:nth-of-type(2) .mv__support__list__ttl {
  background-color: #649AAC;
}
.mv__support__list {
}
.mv__support__head {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mv__support__times {
  background-color: #E65100;
  border: 1px solid #E65100;
  border-radius: 10px;
  position: absolute;
  top: -44px;
  left: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  padding: 2px 10px;
}
.mv__support__times:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #E65100;
}
.mv__support__times:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #E65100;
}
.mv__support:nth-of-type(2) .mv__support__times {
  color: #fff;
  /*border: 1px solid #C33D47;*/
}
.mv__support:nth-of-type(2) .mv__support__times:before {
  /*border-top: 9px solid #C33D47;*/
}
.mv__support__ttl {
  font-weight: bold;
  font-size: 1.125rem;
  width: 320px;
}
.mv__support__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #D06730;
  color: #fff;
  border-radius: 5px;
  width: 140px;
  padding: 6px 0;
  font-size: .875rem;
}
.mv__support:nth-of-type(2) .mv__support__btn {
  background-color: #649AAC;
}
.mv__support__btn:before {
  content: "";
  display: block;
  width: 15px;
  height: 18px;
  background-image: url(../images/icon_pdf_w.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-right: 6px;
}
.mv__support:first-of-type .mv__support__ttl {
  color: #D06730;
}
.mv__support:last-of-type .mv__support__ttl {
  color: #649AAC;
}
.mv__support__item {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  line-height: 1.125;
  padding-left: 10px;
  position: relative;
}
.mv__support__item__target {
  width: 320px;
}
.mv__support__item__amount {
  font-size: .875rem;
}
.mv__support__item__amount > span {
  background:linear-gradient(transparent 70%, #E6BB0E 70%);
}
.mv__support__item__amount span.u-roboto {
  font-size: 1.5rem;
}
.mv__support__item__amount:before {
  content: "：";
  font-size: 1rem;
}
.mv__btn {
  width: 480px;
  min-height: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  border-radius: 5px;
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
}
.mv__btn--electricity {
  background-color: #D06730;
}
.mv__btn--lpgas {
  background-color: #649AAC;
}
.mv__btn span {
  font-size: 1rem;
  text-align: center;
  padding: 0 20px;
}
.news {
  padding: 24px 0;
  background-color: #F7F7F7;
}
.news__list {
  max-width: 1325px;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news__list:after {
  content: "";
  width: 31.5384615%;
  height: 0;
}
.news__item {
  width: 31.5384615%;
  max-width: 410px;
}
.news__item.slick-slide {
  margin: 0 12px 0 13px;
}
.news__item:nth-child(n + 4) {
  display: none;
}
.news__item:nth-child(n + 4).slick-slide {
  display: flex;
}
.news__item a ,
.news__item > div {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #E4E4E4;
  display: flex;
  height: 100%;
}
.news__item__img {
  width: 160px;
}
.news__item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news__item__content {
  width: calc(100% - 160px);
  padding: 12px 10px 20px 10px;
  position: relative;
}
.news__item__date {
  font-size: .875rem;
  font-weight: bold;
  color: #898989;
  text-align: right;
  display: block;
  margin-bottom: 6px;
}
.news__item__tag {
  border: 1px solid #D06730;
  color: #D06730;
  display: inline-block;
  padding: 2px 10px;
  margin-bottom: 12px;
}
.news__item__tag--red {
  border-color: #D06730;
  color: #D06730;
}
.news__item__tag--blue {
  border-color: #649AAC;
  color: #649AAC;
}
.news__item__tag--green {
  border-color: #967C20;
  color: #967C20;
}
.news__item__ttl {
  text-decoration: underline;
}
.news__item > div .news__item__ttl {
  text-decoration: unset;
}
.news .slick-dots {
  text-align: right;
  width: unset;
  bottom: 0;
  position: relative;
}
.slick-dots li button {
  background: none;
  border: 1px solid #967C20;
  border-radius: 10px;
  width: 18px;
  height: 18px;
}
.slick-dots li.slick-active button,
.slick-dots li button:hover, .slick-dots li button:focus {
  background-color: #967C20;
}
.slick-dots li button:before, .slick-dots li button:hover:before, .slick-dots li button:focus:before {
  display: none;
}
.slick-dots-wrap {
  position: absolute;
  bottom: -53px;
  left: 0;
  width: calc(100% - 15px);
  display: flex;
  justify-content: flex-end;
}
.slick-controller {
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_stop.svg);
  display: inline-block;
  margin-top: -2px;
  margin-right: 8px;
}
.slick-controller:hover {
  cursor: pointer;
  opacity: .7;
}
.slick-controller.active {
  background-image: url(../images/icon_play.svg);
}

.support__txt {
  font-size: 1.125rem;
  line-height: 1.7777;
  margin-bottom: 16px;
}
.support__note {
  border: 1px solid #D06730;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1.125rem;
}
.support__note:last-of-type {
  margin-bottom: 0;
}
.section--support .u-flex {
  justify-content: space-between;
  margin-bottom: 64px;
}
.section--support .u-flexin:nth-of-type(1) {
  width: 660px;
}
.amount__list {
  margin-bottom: 64px;
}
.amount__item {
  padding-left: 32px;
  display: flex;
  margin-bottom: 12px;
  background-image: url(../images/icon_check_green.svg);
  background-position: left top 2px;
  background-repeat: no-repeat;
}
.support__note--lpgas {
  margin-bottom: 0;
  border-color: #649AAC;
}
.amount__item__target {
  width: 486px;
  font-size: 1.125rem;
}
.amount__item__amount {
  width: calc(100% - 486px);
  font-weight: bold;
  margin-top: -8px;
}
.amount__item__amount > span {
  background:linear-gradient(transparent 70%, #E6BB0E 70%);
}
.amount__item__amount span.u-roboto {
  font-size: 1.75rem;
}
.amount__item__amount:before {
  content: "：";
  font-size: 1.125rem;
}
.support__period {
  background-color: #F7F2C3;
  padding: 20px;
  margin-bottom: 16px;
}
.support__period__ttl {
  background-color: #967C20;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  padding: 2px 0;
  display: inline-block;
  width: 220px;
  margin-bottom: 10px;
}
.support__period__txt {
  color: #967C20;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.support__period__txt:last-of-type {
  margin-bottom: 0;
}
.support__period__note {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.77777;
}

.section--flow .u-flex {
  justify-content: space-between;
  margin-bottom: 40px;
}
.section--flow .u-flexin:nth-of-type(1) {
  width: 680px;
}
.section--flow .u-flexin:nth-of-type(2) {
  width: calc(100% - 680px);
}
.section--flow .u-flexin:nth-of-type(2) img {
  margin: 0 auto 24px;
}
.btn--apply {
  width: 100%;
  color: #fff;
  /*font-size: 1.125rem;*/
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  padding: 30px 0;
  border-radius: 10px;
  background-color: #E65100;
  margin-bottom: 20px
}
.btn--apply:before {
  content: "";
  display: block;
  width: 32px;
  height: 24px;
  background-image: url(../images/icon_computer_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.btn--apply.end {
  background-color: #888;
  background-image: unset;
}
.link--requirements {
  display: inline-flex;
  align-items: center;
  color: #0097A7;
  font-size: 1.125rem;
}
.link--requirements:before {
  content: "";
  display: block;
  width: 21px;
  height: 26px;
  background-image: url(../images/icon_pdf.svg);
  margin-right: 6px;
}
.link--requirements:after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #0097A7;
  background-image: url(../images/icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  border-radius: 5px;
}
.merit {
  border: 2px solid #967C20;
  padding: 20px 40px;
  border-radius: 10px;
}
.merit__fuki {
  display: inline-block;
  background-color: #967C20;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  position: relative;
  margin-bottom: 16px;
}
.merit__fuki:before {
  position: absolute;
  left: 20px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}
.merit__fuki:before {
  top: 100%;
  border-color: transparent;
  border-top-color: #967C20;
  border-left-color: #967C20;
  border-width: 6px;
}
.merit__ttl {
  display: flex;
  font-size: 1.75rem;
  color: #967C20;
  font-weight: bold;
  align-items: center;
  margin-bottom: 16px;
}
.merit__ttl:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_hand.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.merit__item {
  margin-bottom: 16px;
  padding-left: 27px;
  background-image: url(../images/icon_check2.svg);
  background-repeat: no-repeat;
  background-position: left top 5px;
  background-size: 16px 12px;
}
.merit__item:last-of-type {
  margin-bottom: 0;
}
.merit__item__lead {
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-weight: bold;
}
.merit__item__txt {
  font-weight: 400;
  line-height: 1.3rem;
}

.movie__ttl__wrap {
  display: flex;
  margin-bottom: 16px;
}
.movie__ttl__wrap:before {
  content: "";
  display: block;
  width: 52px;
  height: 38px;
  background-image: url(../images/icon_movie_green.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-right: 20px;
}
.movie__ttl__content {
  width: 100%;
}
.movie__ttl {
  font-size: 1.375rem;
  font-weight: bold;
  color: #967C20;
  margin-bottom: 6px;
  position: relative;
  width: 100%;
}
.movie__ttl span {
  background-color: #fff;
  padding-right: 22px;
  position: relative;
  z-index: 1;
}
.movie__ttl:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #967C20;
  position: absolute;
  top: 50%;
}
.movie__lead {
  font-size: 1.125rem;
}
.section--howto .u-flex {
  justify-content: space-between;
  margin-bottom: 40px;
}
.section--howto .u-flexin:nth-of-type(1) {
  width: 640px;
}
.movie {
  width: 640px;
  height: 360px;
}
.movie iframe {
  width: 100%;
  height: 100%;
}
.section--howto .u-flexin:nth-of-type(2) {
  width: 360px;
}
.chapter__ttl {
  font-weight: bold;
  font-size: 1.25rem;
  color: #967C20;
  padding-bottom: 16px;
}
.chapter__list {
  border-top: 1px dashed #C8C8C8;
}
.chapter__item {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px dashed #C8C8C8;
}
.chapter__item:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #967C20;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 17px;
}
.howto__btn__wrap {
  width: 980px;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
}
.howto__btn {
  width: 480px;
  min-height: 80px;
  border: 2px solid #D06730;
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #D06730;
  font-size: 1.25rem;
  background-image: url(../images/icon_arrow_red.svg);
  background-position: center right 10px;
  background-repeat: no-repeat;
}
.howto__btn span {
  font-size: 1rem;
  text-align: center;
  padding: 0 20px;
}
.howto__btn--lpgas {
  border: 2px solid #649AAC;
  color: #649AAC;
  background-image: url(../images/icon_arrow_blue.svg);
}
.cta {
  border: 1px solid #967C20;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}
.page--electricity .cta {
  border-color: #D06730;
}
.page--lpgas .cta {
  border-color: #649AAC;
}
.cta__ttl {
  background-color: #967C20;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .02em;
  text-align: center;
  padding: 16px 0;
}
.page--electricity .cta__ttl {
  background-color: #D06730;
}
.page--lpgas .cta__ttl {
  background-color: #649AAC;
}
.cta__inner {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
}
.cta__tel {
  width: calc(100% - 60px);
  margin: 0 auto;
  border-top: 1px dashed #967C20;
  padding: 21px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page--electricity .cta__tel {
  border-color: #D06730;
}
.page--lpgas .cta__tel {
  border-color: #649AAC;
}
.cta__form {
  width: 480px;
}
.cta .btn--apply {
  font-size: 1.375rem;
}
.cta__form__btn {
  width: 100%;
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  padding: 14px 0;
  border-radius: 10px;
  background-color: #1b2882;
  margin-bottom: 20px;
  text-align: center;
}
/*.page--electricity .cta__form__btn {
  background-color: #649AAC;
}
.page--lpgas .cta__form__btn {
  background-color: #D06730;
}*/

.cta__form__btn:before {
  content: "";
  display: block;
  width: 26.4px;
  height: 36px;
  background-image: url(../images/icon_first.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 16px;
}
#document-second-time .localnav3__item:first-of-type .cta__form__btn ,
.cta__form:nth-of-type(2) .cta__form__btn {
  background-color: #386fba;
}
#document-second-time .localnav3__item:first-of-type .cta__form__btn:before ,
.cta__form:nth-of-type(2) .cta__form__btn:before {
  width: 34px;
  height: 36px;
  background-image: url(../images/icon_second.svg);
}
.link--what {
  width: 100%;
  color: #1b2882;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/icon_arrow_green2.svg);
  background-size: 16px auto;
  background-position: center right 20px;
  background-repeat: no-repeat;
  padding: 11px 0;
  border-radius: 30px;
  border: 1px solid #1b2882;
  text-align: center;
}
.link--what:before {
  content: "";
  display: block;
  width: 20px;
  height: 18px;
  background-image: url(../images/icon_question_blue.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 8px;
}
/*.page--electricity .link--what {
  color: #649AAC;
  border-color: #649AAC;
  background-image: url(../images/icon_arrow_blue.svg);
}
.page--electricity .link--what:before {
  background-image: url(../images/icon_question_blue.svg);
}
.page--lpgas .link--what {
  color: #D06730;
  border-color: #D06730;
  background-image: url(../images/icon_arrow_red.svg);
}
.page--lpgas .link--what:before {
  background-image: url(../images/icon_question_red.svg);
}*/
.cta__form:nth-of-type(2) .link--what {
  background-image: url(../images/icon_arrow_orange.svg);
  border-color: #386fba;
  color: #386fba;
}
.cta__form:nth-of-type(2) .link--what:before {
  background-image: url(../images/icon_question_orange.svg);
}

.cta__tel {
  color: #967C20;
}
.cta__tel a {
  color: #967C20;
  display: flex;
  padding-right: 16px;
}
.cta__tel a span {
  font-size: 2rem;
  font-weight: bold;
  white-space: nowrap;
}
.cta__tel a:before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url(../images/icon_tel.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 16px;
}
.page--electricity .cta__tel {
  color: #D06730;
}
.page--electricity .cta__tel a {
  color: #D06730;
}
.page--electricity .cta__tel a:before {
  background-image: url(../images/icon_tel_red.svg);
}
.page--lpgas .cta__tel {
  color: #649AAC;
}
.page--lpgas .cta__tel a {
  color: #649AAC;
}
.page--lpgas .cta__tel a:before {
  background-image: url(../images/icon_tel_blue.svg);
}
.cta__tel > p {
  font-size: 1.125rem;
  padding-left: 24px;
}
.faq__list {
  margin-bottom: 24px;
}
.faq__list:last-of-type {
  margin-bottom: 40px;
}
.faq__item {
  margin-top: -1px;
}
.faq__item__head {
  border: 1px solid #967C20;
  background-color: #FBF9E7;
  display: flex;
  padding: 10px 74px 10px 20px;
  background-image: url(../images/icon_plus_green.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.faq__item__head.active {
  background-image: url(../images/icon_minus_green.svg);
  background-size: 20px 2px;
}
.faq__item__head:hover {
  cursor: pointer;
  opacity: .7;
}
.faq__item__num {
  width: 44px;
  height: 44px;
  border-radius: 22px;
  text-align: center;
  line-height: 44px;
  color: #fff;
  background-color: #967C20;
  margin-right: 10px;
  font-size: 1.125rem;
}
.faq__item__que {
  padding-top: 9px;
  width: calc(100% - 44px);
}
.faq__item__content {
  border: 1px solid #967C20;
  border-top: unset;
  padding: 16px 74px 20px 74px;
  display: none;
}

.faq__wrap--electricity .heading02,
.faq__wrap--electricity .heading03 {
  color: #D06730;
}
.faq__wrap--electricity .heading03:before {
  background-color: #D06730;
}
.faq__wrap--electricity .faq__item__head {
  border-color: #D06730;
  background-color: #fffafc;
  background-image: url(../images/icon_plus_red.svg);
}
.faq__wrap--electricity .faq__item__head.active {
  background-image: url(../images/icon_minus_red.svg);
}
.faq__wrap--electricity .faq__item__content {
  border-color: #D06730;
}
.faq__wrap--electricity .faq__item__num {
  background-color: #D06730;
}

.faq__wrap--lpgas .heading02,
.faq__wrap--lpgas .heading03 {
  color: #649AAC;
}
.faq__wrap--lpgas .heading03:before {
  background-color: #649AAC;
}
.faq__wrap--lpgas .faq__item__head {
  border-color: #649AAC;
  background-color: #F2F9FF;
  background-image: url(../images/icon_plus_blue.svg);
}
.faq__wrap--lpgas .faq__item__head.active {
  background-image: url(../images/icon_minus_blue.svg);
}
.faq__wrap--lpgas .faq__item__content {
  border-color: #649AAC;
}
.faq__wrap--lpgas .faq__item__num {
  background-color: #649AAC;
}

/* 特別高圧電力 */
.page--electricity .logo a {
  background-image: url(../images/logo_electricity_v4.svg);
}
.page--electricity .footer__logo {
  background-image: url(../images/logo_electricity_v4.svg);
}
.page--electricity .copyright {
  background-color: #D06730;
}
.page--electricity .mv {
  min-height: 780px;
  background-image: url(../images/kv_bg_electricity_0623.png);
  background-color: #F8F8F8;
}
.page--electricity .mv__inner {
  width: 100%;
  max-width: 1300px;
  padding: 0 10px;
}
.mv2__txt {
  position: relative;
  z-index: 1;
  margin-bottom: 38px;
}
.mv2__img {
  position: absolute;
  top: 0;
  right: 10px;
}
.about__electricity {
  margin-top: -50px;
  display: flex;
  align-items: center;
  width: 570px;
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #D06730;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.about__electricity__ttl {
  background-color: #D06730;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  color: #fff;
  width: 184px;
  height: 140px;
  font-size: 1.125rem;
  padding: 16px 0;
}
.about__electricity__ttl:before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background-image: url(../images/icon_bulb.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.about__electricity__txt {
  padding: 10px 20px;
  width: calc(100% - 184px);
  display: flex;
  align-items: center;
}
.mv2__wrap {
  position: absolute;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #c1c1c1;
  padding: 24px 40px 20px;
  top: 380px;
  right: 10px;
}
.mv2__date {
  margin-bottom: 15px;
}
.mv2__support__list__wrap {
  display: flex;
  margin-bottom: 16px;
}
.mv2__support__list__ttl {
  background-color: #D06730;
  color: #fff;
  font-size: .875rem;
  border-radius: 4px;
  padding: 6px 9px;
}
.page--lpgas .mv2__support__list__ttl {
  background-color: #649AAC;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv2__support__list {
}
.mv2__support__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mv2__support__times {
  background-color: #D06730;
  border-radius: 10px;
  position: absolute;
  top: -44px;
  left: 0;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  padding: 2px 10px;
}
.mv2__support__times:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 9px solid #D06730;
}
.page--lpgas .mv2__support__times {
  background-color: #649AAC;
}
.page--lpgas .mv2__support__times:before {
  border-top: 9px solid #649AAC;
}
.mv2__support__ttl {
  color: #D06730;
  font-size: 1.25rem;
  font-weight: bold;
}
.mv2__support__item {
  padding-left: 12px;
  display: flex;
  margin-bottom: 12px;
}
.support__note--lpgas {
  margin-bottom: 0;
  border-color: #649AAC;
}
.mv2__support__item__target {
  width: 400px;
  font-size: 1rem;
}
.mv2__support__item__amount {
  width: calc(100% - 400px);
  font-weight: bold;
  margin-top: -8px;
  font-size: .875rem;
}
.mv2__support__item__amount > span {
  background:linear-gradient(transparent 70%, #E6BB0E 70%);
}
.mv2__support__item__amount span.u-roboto {
  font-size: 1.5rem;
}
.mv2__support__item__amount:before {
  content: "：";
  font-size: 1rem;
}
.mv2__document {
  width: 200px;
  border-radius: 10px;
  border: 2px solid #649AAC;
  background-color: #649AAC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: #fff;
  padding: 8px 0;
}
.mv2__document:before {
  content: "";
  display: block;
  width: 22px;
  height: 26px;
  background-image: url(../images/icon_pdf_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.mv2__wrap .btn--apply {
  font-size: 1.375rem;
  padding: 28px 0;
  margin-bottom: 0;
  background-color: #649AAC;
}
.page--lpgas .mv2__wrap .btn--apply {
  background-color: #D06730;
}
.mv2__date {
  display: flex;
  align-items: center;
  letter-spacing: .05em;
}
.mv2__date__ttl {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  padding: 4px 10px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  margin-right: 10px;
  color: #fff;
  background-color: #D06730;
  text-align: center;
  min-width: 122px;
}
.mv2__date__txt {
  font-size: 1.25rem;
  font-weight: bold;
  color: #D06730;
}
.mv2__date__txt span {
  font-size: 2.25rem;
}
.page--lpgas .mv2__date__ttl {
  background-color: #649AAC;
}
.page--lpgas .mv2__date__txt {
  color: #649AAC;
}
@media (max-width: 1240px) {
  .mv2__txt {
    width: 62.34375%;
    margin-bottom: 30px;
  }
  .mv2__img {
    width: 36.5%;
  }
  .mv2__comment {
    width: 44.84375%;
  }
  .about__electricity {
    width: 44.53125%;
  }
  .about__electricity__ttl {
    width: 160px;
  }
  .about__electricity__txt {
    width: calc(100% - 160px);
  }
  .about__electricity__txt br.u-pc {
    display: none!important;
  }
  .mv2__wrap {
    width: 52%;
    top: 340px;
    padding: 24px 20px;
  }
  .mv2__support__item__target {
    width: 74%;
  }
  .mv2__support__item__amount {
    width: 26%;
  }
  .mv2__support__item__target br.u-pc {
    display: none!important;
  }
}
.page--electricity .amount__item {
  background-image: url(../images/icon_check_red.svg);
}
.page--electricity .support__period {
  background-color: #fffafc;
}
.page--electricity .support__period__ttl {
  background-color: #D06730;
}
.page--electricity .support__period__txt {
  color: #D06730;
}
.page--electricity .support__period__note {
  margin-bottom: 40px;
}
.localnav__list {
  width: 980px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.localnav__item a {
  width: 480px;
  display: block;
  text-align: center;
  border: 2px solid #D06730;
  color: #D06730;
  font-size: 1.25rem;
  padding: 22px 0;
  background-color: #fff;
  background-image: url(../images/icon_arrow_down_red.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  box-sizing: border-box;
  border-radius: 44px;
}
.txt1 {
  font-size: 1.125rem;
}
.txt2 {
  font-size: 1rem;
}
.txt3 {
  font-size: .875rem;
}
.detail {
  margin-top: 40px;
}
.detail__head {
  background-color: #fff;
  border: 1px solid #D06730;
  border-radius: 10px;
  padding: 20px;
  font-size: 1.75rem;
  font-weight: bold;
  color: #D06730;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail__head:hover {
  cursor: pointer;
  opacity: .7;
}
.detail__ttl {
  width: calc(100% - 200px);
}
.detail__close,.detail__open {
  display: none;
  background-image: url(../images/icon_plus2_red.svg);
  background-size: 24px auto;
  padding-right: 30px;
  background-position: center right;
  background-repeat: no-repeat;
  font-weight: 500;
  width: 180px;
}
.detail__close {
  background-image: url(../images/icon_minus2_red.svg);
  width: 124px;
}
.detail__close.active,.detail__open.active {
  display: block;
}
.detail__content {
  display: none;
}
.detail__wrap {
  background-color: #fffafc;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 34px 20px 24px;
  margin-top: -10px;
  margin-bottom: 40px;
}
.table {
  width: 100%;
  background-color: #fff;
}
.table th {
  background-color: #D06730;
  border: 1px solid #C8C8C8;
  color: #fff;
  padding: 10px 20px;
  text-align: left;
}
.table1 th {
  width: 50%;
}
.table2 th:nth-of-type(1) {
  width: 21%;
}
.table2 th:nth-of-type(2) {
  width: 29%;
}
.table2 th:nth-of-type(3) {
  width: 50%;
}
.table td {
  border: 1px solid #C8C8C8;
  padding: 10px 20px;
}
.table2 td {
  vertical-align: middle;
}
.table1 tr:nth-of-type(even) {
  background-color: #fffafc;
}
.alert {
  border: 2px solid #0E6EB8;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  margin-bottom: 24px;
}
.alert__ttl {
  font-weight: bold;
  color: #0E6EB8;
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  width: 75px;
}
.alert__ttl:before {
  content: "";
  display: block;
  width: 29px;
  height: 26px;
  background-image: url(../images/icon_alert.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.alert__txt {
  width: calc(100% - 95px)
}
.page--electricity .alert {
  border-color: #D06730;
}
.page--electricity .alert__ttl {
  color: #D06730;
}
.page--electricity .alert__ttl:before {
  background-image: url(../images/icon_alert_red.svg);
}

.page--electricity .movie__ttl__wrap:before {
  background-image: url(../images/icon_movie_red.svg);
}
.page--electricity .chapter__ttl,
.page--electricity .movie__ttl {
  color: #D06730;
}
.page--electricity .chapter__item:before,
.page--electricity .movie__ttl:before {
  background-color: #D06730;
}

.localnav2__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
}
.localnav2__item a {
  display: block;
  width: 330px;
  padding: 26px 0;
  font-weight: bold;
  font-size: 1.125rem;
  text-align: center;
  background-image: url(../images/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-color: #0D9F81;
  color: #fff;
  border-radius: 5px;
}
.localnav2__item:nth-of-type(2) a {
  background-color: #703C97;
}
.localnav2__item:nth-of-type(3) a {
  background-color: #2461AD;
}

#online {
  margin-bottom: 64px;
}
#online .heading02--online {
  color: #0D9F81;
  display: flex;
  align-items: center;
}
#online .heading02--online:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background-image: url(../images/icon_download.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 6px;
}
#mail {
  margin-bottom: 40px;
}
#mail .heading02--mail {
  color: #703C97;
  display: flex;
  align-items: center;
}
#mail .heading02--mail:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background-image: url(../images/icon_post.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 6px;
}
#considerations {
}
#considerations .heading02--considerations {
  color: #D06730;
  display: flex;
  align-items: center;
}
#considerations .heading02--considerations:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background-image: url(../images/icon_alert_red.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 10px;
}
#considerations .wrap2 {
  background-color: #fffafc;
}
.page--lpgas #considerations .heading02--considerations {
  color: #649AAC;
}
.page--lpgas #considerations .heading02--considerations:before {
  background-image: url(../images/icon_alert.svg);
}
.page--lpgas #considerations .wrap2 {
  background-color: #F2F9FF;
}


.step__list {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-bottom: 24px;
}
.step__item {
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #0D9F81;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-sizing: border-box;
}
.step__item:not(:last-of-type):after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 0 50px 20px;
  border-color: transparent transparent transparent #89C997;
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  transform: translateY(-50%);
}
.step__item:before {
  content: "";
  display: block;
  width: 94px;
  height: 45px;
  background-image: url(../images/step1_green.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  top: -20px;
  left: 10px;
}
.step__item:nth-of-type(2):before {
  background-image: url(../images/step2_green.svg);
}
.step__item:nth-of-type(3):before {
  background-image: url(../images/step3_green.svg);
}
.step__item__img {
  padding-top: 30px;
  margin-bottom: 8px;
}
.step__item__content {
  padding-bottom: 10px;
}
.step__item__txt {
  font-size: 1.375rem;
  font-weight: bold;
  color: #0D9F81;
  margin-bottom: 6px;
}
.step__item__link {
  display: flex;
  align-items: center;
}
.step__item__link span {
  text-decoration: underline;
  font-size: 1.125rem;
}
.step__item__link:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../images/icon_arrow_green2.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 6px;
  margin-top: 2px;
}
.step__note__list {
  margin-bottom: 20px;
}
.step__note__item {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.step__note__item:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #0D9F81;
  position: absolute;
  top: 8px;
  left: 0;
}
.step__note__item span {
  color: #0D9F81;
}
.step__date {
  background-color: #DFEFE1;
  padding: 20px;
  margin-bottom: 40px;
}
#mail .step__item {
  border: 2px solid #703C97;
}
#mail .step__item:not(:last-of-type):after {
  border-color: transparent transparent transparent #C6AFD6;
}
#mail .step__item:before {
  background-image: url(../images/step1_purple.svg);
}
#mail .step__item:nth-of-type(2):before {
  background-image: url(../images/step2_purple.svg);
}
#mail .step__item:nth-of-type(3):before {
  background-image: url(../images/step3_purple.svg);
}
#mail .step__item__txt {
  color: #703C97;
}
#mail .step__item__link:before {
  background-image: url(../images/icon_arrow_purple2.svg);
}
#mail .step__note__item:before {
  background-color: #703C97;
}
#mail .step__note__item span {
  color: #703C97;
}
#mail .step__date {
  background-color: #F2EAF8;
}
.destination {
  width: 744px;
  display: flex;
  border: 2px solid #703C97;
  border-radius: 10px;
}
.destination__ttl {
  width: 184px;
  background-color: #703C97;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 20px;
  box-sizing: border-box;
}
.destination__content {
  padding: 20px 40px;
}
.destination__txt {
  padding-bottom: 16px;
}
.destination__link {
  display: flex;
}
.destination__link:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background-image: url(../images/icon_arrow_purple2.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 8px;
  margin-top: 7px;
}
.destination__link--red:before {
  background-image: url(../images/icon_arrow_red.svg);
}
.destination__link--blue:before {
  background-image: url(../images/icon_arrow_blue.svg);
}
.destination__link span {
  text-decoration: underline;
  color: #703C97;
}

#document .u-flex {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}
#document .u-flexin:nth-of-type(1) {
  width: 270px;
}
#document .u-flexin {
  width: 360px;
}
.btn--document {
  border: 1px solid #967C20;
  background-color: #967C20;
  color: #fff;
  border-radius: 5px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: block;
  width: 360px;
  padding: 25px 0;
}
.btn--document2 {
  border: 1px solid #967C20;
  color: #967C20;
  background-color: #fff;
}
.btn--document p {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.btn--document > span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.btn--document > span:before {
  content: "";
  display: block;
  width: 22px;
  height: 28px;
  background-image: url(../images/icon_pdf_w.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 8px;
}
.btn--document2 > span:before {
  background-image: url(../images/icon_pdf_green.svg);
}
.ng__list {
  margin-bottom: 16px;
}
.ng__item {
  margin-bottom: 10px;
  padding-left: 24px;
  background-image: url(../images/icon_cross.svg);
  background-repeat: no-repeat;
  background-position: top 4px left ;
}
.ng__item:last-of-type {
  margin-bottom: 0;
}

.table--document {
  width: 100%;
}
.table--document th ,
.table--document td {
  border: 1px solid #C8C8C8;
}
.table--document thead th {
  text-align: left;
  font-weight: 400;
  padding: 22px 20px;
  background-color: #D06730;
  color: #fff;
}
.table--document tbody th {
  text-align: left;
  font-weight: bold;
  font-size: 1.25rem;
  color: #D06730;
  background-color: #fffafc;
  padding: 9px 20px;
}
.table--document tbody th span {
  color: #222;
  font-size: 1rem;
}
.table--document td {
  padding: 10px 20px;
  background-color: #fff;
}
.table--document td:nth-of-type(1) {
  width: 68%;
}
.table--document td:nth-of-type(2) {
  width: 10%;
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  padding: 10px 0;
}
.table--document td:nth-of-type(3) {
  width: 22%;
  text-align: center;
  vertical-align: middle;
}
.table--document .btn {
  display: flex;
  width: 100%;
  height: 83px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 5px;
  border-radius: 5px;
  font-size: .9375rem;
  line-height: 1.3125;
}
.table--document .btn.u-pc {
  display: flex!important;
}
.btn--online {
  background-color: #967C21;
}
.page--lpgas .btn--online {
  background-color: #D06730;
}
.btn--online.end {
  background-color: #888!important;
}
.btn--mail {
  background-color: #D06730;
}
.btn--mail2 {
  background-color: #703C97;
}
.btn--confirmation {
  background-color: #967C20;
}

/* 工業用LPガス */
.page--lpgas .logo a {
  background-image: url(../images/logo_lpgas_v4.svg);
}
.page--lpgas .footer__logo {
  background-image: url(../images/logo_lpgas_v4.svg);
}
.page--lpgas .copyright {
  background-color: #649AAC;
}
.page--lpgas .mv {
  min-height: 780px;
  background-image: url(../images/kv_bg_lpgas_0623.png);
  background-color: #F8F8F8;
  padding-top: 40px;
}
.page--lpgas .mv__inner {
  width: 100%;
  max-width: 1300px;
  padding: 0 10px;
}
.page--lpgas .mv2__txt {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}
.page--lpgas .mv2__img {
  position: absolute;
  top: 140px;
  right: 10px;
}
.page--lpgas .mv2__wrap {
  top: 388px;
}
.page--lpgas .mv2__support__item__target {
  width: 370px;
}
.page--lpgas .mv2__support__item__amount {
  width: calc(100% - 370px);
}
@media (max-width: 1260px) {
  .page--lpgas .mv2__txt {
    width: 62.34375%;
    margin-bottom: 30px;
  }
  .page--lpgas .mv2__img {
    width: 36.5%;
    top: 100px;
  }
  .page--lpgas .mv2__comment {
    width: 44.84375%;
  }
  .page--lpgas .mv2__wrap {
    top: 350px;
  }
  .page--lpgas .mv2__support__item__target {
    width: 74%;
  }
  .page--lpgas .mv2__support__item__amount {
    width: calc(100% - 74%);
  }
}
.page--lpgas .mv2__support__ttl {
  color: #649AAC;
}
.page--lpgas .mv2__support__item {
  /*background-image: url(../images/icon_check_green.svg);*/
}
.page--lpgas .amount__item {
  background-image: url(../images/icon_check_blue.svg);
}
.page--lpgas .support__period {
  background-color: #F2F9FF;
}
.page--lpgas .support__period__ttl {
  background-color: #649AAC;
}
.page--lpgas .support__period__txt {
  color: #649AAC;
}
.page--lpgas .support__period__note {
  margin-bottom: 40px;
}
.page--lpgas .localnav__item a {
  border: 2px solid #649AAC;
  color: #649AAC;
  background-image: url(../images/icon_arrow_down_blue.svg);
}
.page--lpgas .detail__head {
  border: 1px solid #649AAC;
  color: #649AAC;
}
.page--lpgas .detail__close,.page--lpgas .detail__open {
  background-image: url(../images/icon_plus2_blue.svg);
}
.page--lpgas .detail__close {
  background-image: url(../images/icon_minus2_blue.svg);
}
.page--lpgas .detail__wrap {
  background-color: #F2F9FF;
}
.page--lpgas .table th {
  background-color: #649AAC;
  border: 1px solid #C8C8C8;
}
.page--lpgas .table td {
  border: 1px solid #C8C8C8;
}
.page--lpgas .table1 tr:nth-of-type(even) {
  background-color: #F2F9FF;
}
.page--lpgas .movie__ttl__wrap:before {
  background-image: url(../images/icon_movie_blue.svg);
}
.page--lpgas .chapter__ttl,
.page--lpgas .movie__ttl {
  color: #649AAC;
}
.page--lpgas .chapter__item:before,
.page--lpgas .movie__ttl:before {
  background-color: #649AAC;
}

.page--lpgas .localnav2__item a {
  background-color: #0D9F81;
}
.page--lpgas .localnav2__item:nth-of-type(2) a {
  background-color: #703C97;
}
.page--lpgas .localnav2__item:nth-of-type(3) a {
  background-color: #2461AD;
}
.page--lpgas .table--document thead th {
  background-color: #649AAC;
}
.page--lpgas .table--document tbody th {
  color: #649AAC;
  background-color: #F2F9FF;
}

.page--top .table th {
  background-color: #967C20;
  border: 1px solid #C8C8C8;
}
.page--top .table td {
  border: 1px solid #C8C8C8;
}
.page--top .table1 tr:nth-of-type(even) {
  background-color: #F7F2C3;
}



/* ==========================================================================
Component [ grid / button / form / media... ]
========================================================================== */
.section {
  width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section--support {
  padding: 40px 20px 80px;
}
.section--flow {
  padding: 40px 20px 80px;
}
.section--howto {
  padding: 40px 20px 80px;
}
.section--faq {
  padding: 40px 20px 120px;
}
.section--document {
  padding: 40px 20px 80px;
}
.section--examine {
  padding: 40px 20px 80px;
}
.section--other {
  padding: 40px 20px 120px;
}

/* wrap */
.wrap1 {
  background-color: #fff;
  border: 2px solid #D06730;
  padding: 12px 40px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.wrap2 {
  background-color: #fff;
  padding: 20px 40px;
}
.wrap3 {
  border-radius: 20px;
  border: 2px solid #C33D47;
  background-color: #fff;
  overflow: hidden;
  margin-bottom: 64px;
}
.wrap3__head {
  background-color: #C33D47;
  text-align: center;
  color: #fff;
  padding: 10px;
  font-size: 1.75rem;
  font-weight: bold;
}
.wrap3__content {
  padding: 20px 40px;
}
.page--lpgas .wrap1 {
  border: 2px solid #649AAC;
}

/* btn */

/* heading */
.heading01 {
  font-size: 2.875rem;
  font-weight: bold;
  color: #967C20;
  margin-bottom: 40px;
}
.heading02 {
  font-size: 1.75rem;
  font-weight: bold;
  color: #967C20;
  margin-bottom: 16px;
}
.heading03 {
  font-size: 1.375rem;
  font-weight: bold;
  color: #967C20;
  margin-bottom: 16px;
  padding: 2px 0 2px 16px;
  position: relative;
}
.heading03:before {
  content: "";
  display: block;
  width: 6px;
  height: 100%;
  background-color: #967C20;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.page--electricity .heading01 ,
.page--electricity .heading02 {
  color: #D06730;
}
.page--lpgas .heading01 ,
.page--lpgas .heading02 {
  color: #649AAC;
}

/* list */


/* breadcrumbs */
.breadcrumbs {
  width: 1040px;
  margin: 0 auto;
  box-sizing: border-box;
}
.breadcrumbs_list {
  box-sizing: border-box;
  display: inline-block;
  padding: 10px 0 10px;
  text-align: right;
  width: 100%;
}
.breadcrumbs_list li {
  display: inline-block;
  position: relative;
  font-size: .8125rem;
}
.breadcrumbs_list li:after {
  content: "";
  display: inline-block;
  padding: 0 10px;
  background-image: url(../images/icon_chevron_right_red.svg);
  width: 8px;
  height: 8px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-repeat: no-repeat;
  top: -1px;
  position: relative;
}
.page--lpgas .breadcrumbs_list li:after {
  background-image: url(../images/icon_chevron_right_blue.svg);
}
.breadcrumbs_list li:last-of-type {
  padding-right: 0;
}
.breadcrumbs_list li:last-of-type:after {
  display: none;
}
.breadcrumbs_list li img {
  position: relative;
  top: -2px;
}
.breadcrumbs_list li a {
  color: #D06730;
}
.page--lpgas .breadcrumbs_list li a {
  color: #649AAC;
}

/* pager */

/* form */

/* skip */
.skip {
  width: 1px;
  color: #000000;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #FFFFFF;
  position: absolute;
  left: -3000px;
  z-index: 30000;
}
a.skip {
  background-color: #FFFFFF;
  text-align: center;
  padding: 2px 0;
  top: auto;
}
a.skip:active {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
}
a.skip:focus {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.6;
  top: 0;
  left: 0;
}

.u-flex {
  display: flex;
}


.localnav3__list {
  width: 100%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.localnav3__item a {
  width: 510px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  padding: 22px 0;
  background-color: #1b2882;
  background-image: url(../images/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
  box-sizing: border-box;
  border-radius: 5px;
}
/*.page--lpgas .localnav3__item a {
  background-color: #D06730;
}*/
.page--application-form .localnav3__item a {
  display: flex;
  min-height: 106px;
  background-image: url(../images/icon_arrow.svg);
  /*background-color: #E65100;*/
}
.localnav3__item:nth-of-type(2) a {
  background-color: #386fba;
}
.page--application-form .localnav3__item:nth-of-type(2) a {
  background-color: #386fba;
}
body:not(.page--application-form) .localnav3__item a:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon_first_white.svg);
  background-size: 100% 100%;
  width: 18.34px;
  height: 25px;
  vertical-align: sub;
  margin-right: 8px;
}
body:not(.page--application-form) .localnav3__item:nth-of-type(2) a:before {
  background-image: url(../images/icon_second_white.svg);
  width: 23.61px;
}
.page--application-form .localnav3__item:nth-of-type(2) a:before {
  background-image: url(../images/icon_lock_w.svg);
  width: 32px;
}

.heading02--first-time span {
  color: #1b2882;
}
.heading02--first-time:before {
  content: "";
  display: inline-block;
  width: 26.4px;
  height: 36px;
  background-image: url(../images/icon_first_green.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: sub;
}
#document-first-time .detail__head {
  border-color: #1b2882;
  color: #1b2882;
}
#document-first-time .detail__open {
  background-image: url(../images/icon_plus2_green2.svg);
}
#document-first-time .detail__close {
  background-image: url(../images/icon_minus2_green2.svg);
}
#document-first-time .detail__wrap {
  background-color: #F7F2C3;
}
#document-first-time .table--document thead th {
  background-color: #1b2882;
}
#document-first-time .table--document tbody th {
  background-color: #F7F2C3;
  color: #1b2882;
}
/*.page--lpgas .heading02--first-time span {
  color: #D06730;
}
.page--lpgas .heading02--first-time:before {
  background-image: url(../images/icon_first_red.svg);
}
.page--lpgas #document-first-time .detail__head {
  border-color: #D06730;
  color: #D06730;
}
.page--lpgas #document-first-time .detail__open {
  background-image: url(../images/icon_plus2_red.svg);
}
.page--lpgas #document-first-time .detail__close {
  background-image: url(../images/icon_minus2_red.svg);
}
.page--lpgas #document-first-time .detail__wrap {
  background-color: #fffafc;
}
.page--lpgas #document-first-time .table--document thead th {
  background-color: #D06730;
}
.page--lpgas #document-first-time .table--document tbody th {
  background-color: #fffafc;
  color: #D06730;
}*/
/*.page--application-form .heading02--first-time span {
  color: #E65100;
}
.page--application-form .heading02--first-time:before {
  background-image: url(../images/icon_first_pink.svg);
}*/

.heading02--second-time span {
  color: #386fba;
}
.heading02--second-time:before {
  content: "";
  display: inline-block;
  width: 32.11px;
  height: 34px;
  background-image: url(../images/icon_second_orange.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: sub;
}
#document-second-time .detail__head {
  border-color: #386fba;
  color: #386fba;
}
#document-second-time .detail__open {
  background-image: url(../images/icon_plus2_orange.svg);
}
#document-second-time .detail__close {
  background-image: url(../images/icon_minus2_orange.svg);
}
#document-second-time .detail__wrap {
  background-color: #fbf4f0;
}
#document-second-time .table--document thead th {
  background-color: #386fba;
}
#document-second-time .table--document tbody th {
  background-color: #fbf4f0;
  color: #386fba;
}
.section--times {
  padding: 0 20px 120px;
}
.section--times .u-flexin:nth-of-type(1) {
  width: 570px;
}
.section--times .u-flexin:nth-of-type(2) {
  width: 470px;
}
.section--times #document-first-time {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #967C20;
}
.section--times .wrap1 {
  margin-top: 24px;
  border: 1px solid #386fba;
}
.section--times .tel {
  padding-left: 1em;
}
.section--times .tel_num {
  color: #386fba;
  font-size: 1.375rem;
}
.section--times .tel p {
  display: inline-block;
  font-size: .875rem;
  padding-left: 20px;
}

.page--application-form .breadcrumbs_list li:after {
  background-image: url(../images/icon_chevron_right_green.svg);
}
.page--application-form .breadcrumbs_list li a {
  color: #967C20;
}

/* form */
/* フォーム */
.form__inner {
  display: block;
  width: 800px;
  margin: 0 auto;
  padding: 40px 0 60px;
  color: initial;
}
.form__inner p {
  font-size: 1rem;
}
.progressbar {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: 32px;
}
.progressbar .item {
  position: relative;
  width: 33%;
  text-align: center;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  line-height: 1.5;
  background: #F5F5F5;
  color: #967C20;
  font-size: 1.125rem;
  border: 1px solid #967C20;
}
.progressbar .item:first-of-type {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.progressbar .item:last-of-type {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.progressbar .item:not(:last-child)::before,
.progressbar .item:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 100%;
  content: '';
  border: 25px solid transparent;
  border-left: 19px solid #F5F5F5;
  margin: auto;
}
.progressbar .item:not(:last-child)::before {
  margin-left: 1px;
  border-left-color: #967C20;
}
@media screen and (max-width: 767px) {
  .progressbar .item {
    font-size: 11px;
    line-height: 1.4;
    padding: 10px 0;
  }
  .progressbar .item:not(:last-child)::before,
  .progressbar .item:not(:last-child)::after {
    border-width: 25px;
    border-left-width: 12px;
  }
}
.progressbar .item.active {
  z-index: 1;
  background: #967C20;
  color: #FFF;
}
.progressbar .item.active:not(:last-child)::after {
  border-left-color: #967C20;
}
.progressbar .item.active:not(:last-child)::before {
  border-left: none;
}
.form__item {
  display: flex;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px dashed #aaa;
}
.form__item__lead {
  padding: 4px 0;
  width: 280px;
  padding-top: 13px;
}
.form__item__lead p:not(.form__item__lead__note):after {
  content: "任意";
  font-size: .8125rem;
  color: #fff;
  background-color: #999;
  border-radius: 4px;
  padding: 1px 8px;
  margin-left: 6px;
  display: inline-block;
}
.form__item__lead.hissu p:not(.form__item__lead__note):after {
  content: "必須";
  background-color: #C33D47;
}
.form__item__lead__note {
  font-size: .875rem;
}
.form__item__content {
  vertical-align: top;
  width: calc(100% - 280px);
}
.form__inner .input {
  -webkit-appearance: none;
  border: none;
  background: none;
  border-radius: 5px;
  border: 1px solid #aaa;
  padding: 13px 10px;
  box-sizing: border-box;
  font-size: 1rem;
}
.form__inner .input__l {
  width: 100%;
}
.form__inner .input__m {
  width: 200px;
}
.form__inner .input__s {
  width: 160px;
}
.form__inner textarea.input__l {
  max-width: 100%;
  height: 140px;
}
.form__inner .form__note {
  font-size: .8125rem;
}
.form__course label {
  font-size: .875rem;
}
.form__inner .privacy__wrap {
  height: 280px;
  overflow-y: auto;
  padding: 40px;
  box-sizing: border-box;
  border: 1px solid #aaa;
  margin-top: 34px;
}
.form__inner .privacy__check {
  margin: 30px 0 40px;
  text-align: center;
}
.form__inner .checkbox {
  padding: 5px 0;
}
.form__inner .checkbox input[type=checkbox].checkbox__item{
  /*display: none;*/
  opacity: 0;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
}
.form__inner .checkbox label {
  display: inline-block;
  cursor: pointer;
}

/* spanの左側にボタンを配置するスペースを作る */
.form__inner .checkbox .checkbox__item + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

/* 各パーツを作成 */
.form__inner .checkbox .checkbox__item + span::after,
.form__inner .checkbox .checkbox__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 2px solid #AAAAAA;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
}

/* after上書き */
.form__inner .checkbox .checkbox__item + span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  transform: rotate(45deg);
  left: 5px;
  border: none;
  border-right: 3px solid #206a4f;
  border-bottom: 3px solid #206a4f;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.form__inner .checkbox .checkbox__item:checked + span {
  color: #206a4f;
}

.form__inner .checkbox .checkbox__item:checked + span::before {
  border: 2px solid #206a4f;
}
.form__inner .checkbox .checkbox__item:checked + span::after {
  opacity: 1;
}

/* ラジオボタンを隠す */
.form__inner .radio {
  padding: 5px 0;
}
.form__inner .radio input[type=radio].radio__item{
  display: none;
}

.form__inner .radio label {
  display: inline-block;
  font-weight: bold;
}

/* spanの左側にボタンを配置するスペースを作る */
.form__inner .radio .radio__item + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.form__inner .radio .radio__item + span::after,
.form__inner .radio .radio__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 3px;
  left: 0;
}

/* after上書き */
.form__inner .radio .radio__item + span::after {
  opacity: 0;
  width: 14px;
  height: 14px;
  top: 6px;
  left: 3px;
  border: none;
  background: #967C20;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.form__inner .radio .radio__item:checked + span {
  color: #967C20;
}
.form__inner .radio .radio__item:checked + span::after {
  opacity: 1;
}

.form-checkbox-field {
  margin-bottom: 10px;
}
[for="checkbox02-1"] ,
[for="checkbox02-2"] ,
[for="checkbox02-3"] ,
[for="checkbox02-4"] ,
[for="checkbox02-5"] ,
[for="checkbox02-6"] {
  font-size: .875rem;
}
[for="checkbox02-1"] .form-checkbox-field-text ,
[for="checkbox02-2"] .form-checkbox-field-text ,
[for="checkbox02-3"] .form-checkbox-field-text ,
[for="checkbox02-4"] .form-checkbox-field-text ,
[for="checkbox02-5"] .form-checkbox-field-text ,
[for="checkbox02-6"] .form-checkbox-field-text {
  padding-top: 3px;
}
.form__item__course .form__item__content p.u-fc-red {
  padding-left: 2em;
}
.form-checkbox-field-text {
  font-weight: bold;
}
.privacy__check .form-checkbox-field-text {
  font-weight: normal;
}
.theme__txt {
  padding-left: 32px;
}
.theme__txt + .u-fc-red + .u-fc-red ,
.theme__txt + .u-fc-red {
  padding-left: 32px;
  margin-top: 10px;
  display: inline-block;
}
.form__item.disabled {
  opacity: .5;
}
.form__confirm .form__item.disabled {
  opacity: 1;
}
.form__item.disabled .form__item__lead p:after {
  display: none;
}
.form__item.disabled input ,
.form__item.disabled label {
  pointer-events: none;
}
.form__inner label.disabled {
  pointer-events: none;
}

.form__confirm .privacy__check {
  display: none;
}
.form__confirm .form__note {
  display: none;
}
.form__confirm button[type=reset] {
  display: none;
}
.form__confirm .privacy__wrap {
  display: none;
}
.form__confirm .form_btn_wrap {
  margin-top: 50px;
}
.form_btn_wrap {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 0px 20px;
}
.form__inner .btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  display: inline-block;
  min-width: 260px;
  box-sizing: border-box;
  padding: 15px 25px 15px 25px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  border-radius: 100px;
  letter-spacing: .1em;
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-image: url(../images/icon_arrow.svg);
  background-position: center right 20px;
  background-repeat: no-repeat;
}
.form__inner .btn--small {
  font-size: 1rem;
}
.form__inner .btn + .btn {
  margin-left: 30px;
}
.form__inner .btn:hover {
  opacity: .7;
  transition: .3s;
  cursor: pointer;
}
.form__inner .btn--blue {
  background-color: #967C20;
}
.form__inner .btn--green {
  background-color: #2C7C9C;
}
.form__inner .btn--gray {
  background-color: #9A9A9A;
  background-image: unset;
}
.form__inner .btn--back {
  background-image: url(../images/icon_arrow_left.svg);
  background-position: center left 20px;
  background-repeat: no-repeat;
}

.form__inner .form__privacy {
  background: unset;
  display: inline-block;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 10px;
}
.form__inner .form__privacy:before {
  display: none;
}
.form__inner .form__privacy img {
  vertical-align: initial;
  position: relative;
  top: 1px;
}