@charset "UTF-8";

.price-section0 {
  padding-top: 1rem;
}

.price-section0 .c-section-title {
  color: #363636;
}

.price-section0 span {
  font-size: 3rem;
}

.price-section1 div {
  font-size: 3.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.6;
}

.price-section1 div span {
  font-weight: normal;
  margin: 4rem auto;
  display: block;
  color: #5ed2c9;
  font-size: 3.0rem;
}

.price-section1 img {
  margin: 0 auto;
  display: block;
  width: 90%;
}

.price-section1 p {
  font-size: 2.4rem;
}

@media screen and (min-width: 992px) {
  .price-section1 div {
    font-size: 3.0rem;
  }

  .price-section1 div span {
    font-size: 2.6rem;
  }

  .price-section1 img {
    margin: 0 auto 2rem;
    width: 45%;
  }


}

/*詳細を見るの部分の白い靄アコーディオンCSS*/
.accordion-box {
  position: relative;
  padding: 5rem 2rem;
  margin: 8rem 0 3rem;
}

.accordion-box label {
  height: 20rem;
  /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  position: absolute;
  bottom: 0%;
  left: 0%;
  width: 100%;

  /* 以下グラデーションは「背景が白」に併せて設定しています */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 60%);
}


/* 詳細を見る部分の白い靄のcss */
.accordion-box input:checked + label {
  background: inherit;
  /* 開いた時には背景グラデーションを消す */
}

.accordion-box label:after {
  content: "詳細";
  /* ラベルの文字 */
  letter-spacing: .05em;
  font-size: 2.2rem;
  padding: 1rem 3rem;
  line-height: 2.5rem;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  color: #b3b3b3;
  background-color: #fff;
  width: 20rem;
  border: 1px solid #b3b3b3;
  -webkit-border-radius: 50rem;
  -moz-border-radius: 50rem;
  border-radius: 50rem;
}

.accordion-box label:before {
  content: "";
  position: absolute;
  top: 6%;
  left: 59%;
  z-index: 1;
  /*   transition: all 0.1s ease-in-out; */
  width: 1.5rem;
  height: 1.5rem;
  border-top: solid 0.3rem #b3b3b3;
  border-right: solid 0.3rem #b3b3b3;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.accordion-box input {
  display: none;
}

.accordion-box .accordion-container {
  overflow: hidden;
  height: 7rem;
  /* 開く前に見えている部分の高さ */
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}


.accordion-box input:checked + label {
  /* display: none ; 閉じるボタンは要らないとき */
}

.accordion-box input:checked + label:after {
  content: "閉じる";
  top: 50%;
}

.accordion-box input:checked + label:before {
  content: "";
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 59%;
}

.accordion-box input:checked ~ .accordion-container {
  height: auto;
  padding-bottom: 7rem;
  /* 閉じるボタンのbottomからの位置 */
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.accordion-container p {
  font-size: 2.2rem;
  text-align: left;
}

.price-section1 .accordion-box {
  margin: 0 0 3rem;
  padding: 5rem 2rem;
}

@media screen and (min-width: 992px) {
  .accordion-box {
  position: relative;
  padding: 5rem 2rem;
  margin: 8rem 0 3rem;
}

  .accordion-box label:after {
    font-size: 2.0rem;
    padding: 1rem 3rem;
    line-height: 2.0rem;
    width: 15rem;
  }

  .accordion-box label:before {
    top: 7%;
    left: 54%;
    width: 1.0rem;
    height: 1.0rem;
    border-top: solid 0.2rem #b3b3b3;
    border-right: solid 0.2rem #b3b3b3;
  }

  .accordion-container p {
    font-size: 1.6rem;
    line-height: 1.0;
  }
}

/* ベージュ色の背景部分 */
.price-section2 .accordion-box label {
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #fffcdc 90%);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fffcdc 78%);
}

.price-section1 p a {
  color: #22c0ff;
}

.price-section2 {
  background-color: #fffcdc;
  padding: 2rem 2vw;
  position: relative;
  margin-top: 8rem;
}

.price-section3 {
  background-color: #fff;
  position: relative;
  padding-top: 8rem;
}

.price-section3 img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

.price-section2 .u-display-flex,
.price-section3 .u-display-flex {
  justify-content: space-around;
}

.price-section1 ul {
  background-color: unset;
  font-size: 2.4rem;
  width: 100%;
}

.price-section1 li{
  margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: normal;
    text-align: left;
}

.price-section2 ul,
.price-section3 ul {
  background-color: unset;
  font-size: 2.4rem;
  list-style: unset;
  width: 100%;
  list-style-position: inside;
}

.price-section2 li,
.price-section3 li {
  margin-bottom: 2rem;
  line-height: 1.4;
}

@media screen and (min-width: 992px) {
  .price-section2 {
    padding: 2rem 2rem;
    margin-top: 8rem;
  }
  
  .price-section2 .accordion-box,
  .price-section3 .accordion-box{
    padding: 5rem 2rem;
    margin: 8rem 3rem 1rem;
  }

  .price-section2 .u-display-flex,
  .price-section3 .u-display-flex {
    justify-content: center;
  }
    
  .price-section1 ul,
  .price-section2 ul,
  .price-section3 ul {
    font-size: 1.8rem;
    width: 100%;
  }
    
  .price-section1 li,
  .price-section2 li,
  .price-section3 li {
    margin-bottom: 2rem;
    line-height: 1.4;
  }

  .price-section3 img {
  width: 50%;
  margin: 0rem auto 0;
}

}

.plan-head {
  position: absolute;
  width: 80%;
  padding: 3rem 0;
  box-sizing: border-box;
  background-color: #fcbf30;
  box-shadow: 0px 5px 5px 0px rgba(138, 138, 138, 0.5);
  border-radius: 20px;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plan-head p {
  font-size: 3.8rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.plan-head p::after {
  position: absolute;
  content: '';
  border-top: 3rem solid #fcbf30;
  border-right: 2rem solid transparent;
  border-left: 2rem solid transparent;
  bottom: -60%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.plan-example {
  text-align: center;
  font-size: 2.4rem;
  border: 3px dashed #c9c9c9;
  background-color: #fff;
  margin: 5rem auto;
  width: 70%;
  padding: 2rem 0;
}

.price-2-img1 {
  width: 70%;
  margin: 10rem auto 0;
  display: block;
}

.price-2-img2 {
  width: 100%;
  margin: 2rem auto 2rem;
  display: block;
}

.plan-tokyo,
.plan-osaka,
.plan-hachidori {
  border-radius: 2rem;
  width: 48%;
  text-align: center;
  padding: 2rem;
}

.plan-hachidori {
  border: 2px solid #ff9a00;
  background-color: #fff;
  box-shadow: 0px 0 15px 2px rgb(252, 191, 48);
}

.plan-tokyo,
.plan-osaka {
  border: 2px solid #000;
  background-color: #fff;
}

.plan-tokyo > p,
.plan-osaka > p,
.plan-hachidori > p {
  font-size: 2.8rem;
  margin-bottom: 2.0rem;
  line-height: 1.2;
  font-weight: bold;
}

.plan-hachidori > p {
  color: #ff9a00;
  padding: 1.6rem 0;
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.plan-tokyo div,
.plan-osaka div,
.plan-hachidori div {
  font-size: 4.2rem;
  padding: 2rem 0rem;
  font-weight: bold;
  white-space: nowrap;
}

.plan-tokyo div,
.plan-osaka div {
  color: #fff;
  background-color: #434343;
}

.plan-hachidori > div {
  background-image: -moz-linear-gradient(90deg, rgb(230, 135, 0) 1%, rgb(249, 212, 35) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(230, 135, 0) 1%, rgb(249, 212, 35) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(230, 135, 0) 1%, rgb(249, 212, 35) 100%);
}


@media screen and (min-width: 992px) {

  .plan-head {
    width: 40%;
    padding: 1.5rem 0;
    border-radius: 10px;
  }

  .plan-head p {
    font-size: 2.8rem;
  }

  .plan-head p::after {
    bottom: -50%;
  }

  .plan-example {
    font-size: 1.8rem;
    margin: 3rem auto;
    width: 35%;
    padding: 2rem 0;
  }

  .price-2-img1 {
    width: 50%;
    margin: 5rem auto 0;
  }

  .price-2-img2 {
    width: 80%;
    margin: 2rem auto 2rem;
  }

  .plan-tokyo,
  .plan-osaka,
  .plan-hachidori {
    border-radius: 2rem;
    width: 30%;
    padding: 2rem;
  }

  .plan-tokyo,
  .plan-osaka {
    margin-right: 2rem;
  }

  .plan-hachidori {
    border: 2px solid #ff9a00;
    background-color: #fff;
    box-shadow: 0px 0 15px 2px rgb(252, 191, 48);
  }

  .plan-tokyo > p,
  .plan-osaka > p,
  .plan-hachidori > p {
    font-size: 2.6rem;
    margin-bottom: 2.0rem;
    line-height: 1.2;
  }

  .plan-hachidori > p {
    color: #ff9a00;
    padding: 1.6rem 0;
    font-size: 3.1rem;
    margin-bottom: 1.5rem;
  }
}

.about-list {
  padding: 4rem 2rem;
  border: 3px dashed #c9c9c9;
  border-radius: 10px;
}

.about-list .c-accordion-title {
  background-color: #5ed2c9;
  color: #fff;
  text-align: center;
}

.about-list .c-accordion-title p::after {
  content: "";
  position: absolute;
  top: 19%;
  right: -5rem;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 2rem;
  height: 2rem;
  border-top: solid 0.4rem #fff;
  border-right: solid 0.4rem #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg) translate(-50%, -50%);
}

.about-list .c-accordion-title.open p::after {
  content: "";
  position: absolute;
  top: 12%;
  right: -6rem;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 2rem;
  height: 2rem;
  border-top: solid 0.4rem #fff;
  border-right: solid 0.4rem #fff;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg) translate(-50%, 50%);
}

.about-list .c-accordion-content {
  padding: 3rem 2rem;
  border: 1px solid #5ed2c9;
}

.c-accordion-content a {
  color: #22c0ff;
  text-decoration: underline;
}

.u-bgorg {
  background-color: unset;
  background-image: -moz-linear-gradient(135deg, rgb(230, 135, 0) 1%, rgb(249, 212, 35) 100%);
  background-image: -webkit-linear-gradient(135deg, rgb(230, 135, 0) 1%, rgb(249, 212, 35) 100%);
  background-image: -ms-linear-gradient(135deg, rgb(230, 135, 0) 1%, rgb(249, 212, 35) 100%);
}

.simulation-sub-title {
  display: block;
  font-size: 2.6rem;
  margin-top: 2rem;
}

.plan-price {
  width: 70%;
  text-align: right;
  color: #fff;
}

.plan-price + div {

  width: 20%;

  text-align: left;

  color: #fff;
}

.plan-price + div p:first-child {

  font-size: 1.4rem;
}

.plan-price + div p:nth-child(2) {
  font-size: 1.4rem;
}

.simulation-img {
  display: block;
  margin: 0 auto 10rem;
  width: 60%;
}

.sample1 {
  font-size: 2.4rem;
}

.sample1 a {
  color: #22c0ff;
}

.sample2 {
  display: flex;
  align-items: end;
}

.sample2 p {
  font-size: 2.4rem;
  font-weight: bold;
  width: 60%;
}

.sample2 span {
  font-size: 2.4rem;
  color: #ff9b00;
  border: 1px solid #ff9b00;
  padding: 1rem 2rem;
  display: block;
  width: 35%;
  margin: 0 auto;
}

.sample4 {
  background-color: #ffebbe;
  font-size: 2.4rem;
  padding: 4rem 2rem;
  border-radius: 10px;
}

.sample5_text {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}

.sample5-img {
  background-color: #898989;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  padding: 13rem 1rem;
}

.list-plus-mark {
  margin: 2rem auto;
  display: block;
}

.sample6_text {
  font-size: 2.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.sample6-button.u-bggreen {
  margin: 0 auto;
}

.sample6-button.u-bggreen::after {
  content: "";
  position: absolute;
  top: 47%;
  right: 1rem;
  transform: translate(-50%, -50%) rotate(-90deg);
  border-style: solid;
  border-width: 1.5rem 1rem 0 1rem;
  border-color: #fff transparent transparent transparent;
}

.sample1,
.sample2 {
  margin-bottom: 5rem;
}

.sample4 span {
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .simulation-img {
  margin: 0 auto 0;
  width: 350px;
}

.about-list .c-accordion-title p::after {
  right: -3rem;
}

.about-list .c-accordion-title.open p::after {
  right: -4rem;
}

}

/*---------------------------------
電気を送る費用　タブエリア
---------------------------------*/
.price-inner-tab-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: baseline;
}

.price-inner-tab {
  padding: 1.0rem;
  list-style: none;
  border: solid 1px #f2ede8;
  text-align: center;
  cursor: pointer;
  font-size: 2.4rem;
  width: 19%;
  margin: 0 0 .5rem .5rem;
}

.price-inner-tab span {

  font-size: 1rem;

  display: block;
}

.price-inner-tab:hover {
  background: #5ed2c9;
}

.panel-group {
  margin-top: 1.0rem;
}

.panel {
  display: none;
}

.price-inner-tab.is-active {
  background: #5ed2c9;
  color: #FFF;
  transition: all 0.2s ease-out;
}

.panel.is-show {
  display: block;
}

/*---------------------------------
タブの中のテーブルのスタイル
---------------------------------*/

.price-table {
  width: 100%;
  font-size: 2.2rem;
  margin: 4rem 0;
}

.price-table th,
.price-table td {
  width: 25%;
  text-align: center;
  padding: 3rem 0rem;
}

.price-table th {
  background-color: #b2efea;
}

.price-table td {
  border-top-style: none;
  border-right-color: rgb(201, 201, 201);
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-color: rgb(201, 201, 201);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-color: rgb(201, 201, 201);
  border-left-style: solid;
  border-left-width: 1px;
}

.send-price-texth {
  font-size: 2.4rem;
  margin-bottom: 4rem;
}


.send-price-textf {
  font-size: 2.0rem;
  margin: 3rem 0;
}

.send-price-img img {
  display: block;
  width: 100%;
  height: auto;
}

.send-price .panel div,
.cal-price {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.send-price .panel p,
.cla-price-text {
  font-size: 2.2rem;
}

.send-price-title {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.6;
}

.box_tx {

  padding: 0.5rem 2rem;
}

.bg-gray {
  background-color: #f3f3f3;
}

.buy-price .blue {
  color: #22c0ff;
}

.buy-price .orange {
  color: #ffbb54;
}

.buy-price .price-table th,
.buy-price .price-table td {
  width: 20%;
  text-align: center;
  padding: 3rem 0rem;
}

.buy-price .u-display-flex .send-price-texth {
  width: 70%;
  padding: 0 2rem 0 0;
}

.buy-price .u-display-flex span {
  width: 30%;
  border: 1px solid #ffbb54;
  color: #ffbb54;
  text-align: center;
  padding: 2rem;
  font-size: 2rem;
}

.buy-price send-price-texth {
  margin-bottom: 2rem;
}

.buy-price .send-price-title {
  margin: 5rem 0 3rem;
}

.no-border-row {
  border: none;
}

.buy-price .u-display-flex .send-price-texth {
  margin: 0;
}

@media screen and (min-width: 992px) {
  .price-table {
  font-size: 1.8rem;
}

.price-table th,
.price-table td {
  padding: 2rem 0.5rem;
}

.buy-price .price-table th,
.buy-price .price-table td {
  padding: 2rem 0rem;
}
  
.send-price-texth {
  font-size: 1.8rem;
}


.send-price-textf {
  font-size: 1.6rem;
  margin: 3rem 0;
}

.send-price-img img {
  display: block;
  width: 100%;
  height: auto;
}

.send-price .panel div,
.cal-price {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.send-price .panel p,
.cla-price-text {
  font-size: 1.8rem;
}

.send-price-title {
  font-size: 2.4rem;
}

  
  .price-section4 {
    display: flex;
  }

  .price-section4 a {
    width: 48%;
  }

  .price-section6,
  .price-section5,
  .price-section4 {
padding: 0 2rem;
  }

  .send-price-img img {
  width: 80%;
  margin: auto;
}
}
