  @charset "UTF-8";
.pc {
  display: block;
}

.sp {
  display: none;
}

/*
 Header
----------------------------------------------------------- */
.headerMain {
  width: 100%;
  height: 85px;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  line-height: 1.2;
  font-size: 14px;
}

.headerMain:after {
  content: "";
  display: table;
  clear: both;
}

.headerMainInner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}

.headerMainYonden {
  position: absolute;
  top: 16px;
  left: 0px;
  z-index: 10001;
  transition: all .2s ease-in-out;
  opacity: 1;
}

.headerMainYonden:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

.headerMainLandl {
  padding-top: 24px;
  text-align: center;
  transition: all .2s ease-in-out;
  opacity: 1;
}

.headerMainLandl img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.headerMainLandl:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

.headerMainMenubtn {
  position: absolute;
  top: 20px;
  right: 0px;
  text-align: center;
  transition: all .2s ease-in-out;
  opacity: 1;
}

.headerMainMenubtn:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 46px;
  height: 29px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 13px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-13px) rotate(45deg);
}

.sb-slidebar {
  background: rgba(0, 0, 0, 0.85);
  top: 85px;
  padding: 20px;
  font-size: 14px;
  line-height: 1;
}

.sb-slidebar li {
  border-bottom: 1px solid #848484;
  width: 100%;
  display: block;
  font-size: 120%;
  color: #FFF;
  padding: 10px 10px;
  position: relative;
  text-decoration: none;
}

.sb-slidebar li a {
  color: #FFF;
  text-decoration: none;
}

.sb-slidebar li a:hover {
  background: #565656;
}

.sb-slidebar li a::before, .sb-slidebar li a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.sb-slidebar li a::before {
  right: 10px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #848484;
  border-right: 1px solid #848484;
  transform: rotate(45deg);
}

/*
 コンテナー
----------------------------------------------------------- */
#sb-site, .sb-site-container {
  padding-top: 85px;
}

#sb-site.backwhite, .sb-site-container.backwhite {
  background: #fff;
}

/*
 フッター
----------------------------------------------------------- */
.footer {
  text-align: center;
  color: #fff;
  background-color: #003A75;
  background-size: cover;
  font-size: 11px;
  padding: 30px 0px 20px;
}

.footerInner {
  display: inline-block;
  text-align: left;
  margin-bottom: 20px;
}

.footerInner:after {
  content: "";
  display: table;
  clear: both;
}

.footerInnerItem {
  font-size: 9px;
  padding: 10px;
}

.footerInnerItem p {
  line-height: 2.4;
}

/*
 各パーツ
----------------------------------------------------------- */
.pageTopBtn {
  position: fixed;
  bottom: 100px;
  right: 50px;
  width: 80px;
  height: 80px;
  display: none;
  z-index: 29;
}

.pageTopBtn a {
  display: block;
  transition: opacity .2s ease-in-out;
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
}

.pageTopBtn a:hover {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.pageTopBtn a img {
  width: 100%;
  height: auto;
}

.dateIcon {
  width: 100px;
  display: table-cell;
}

.dateIcon .dateIconBox {
  border-radius: 5px;
  padding: 12px;
  width: 100px;
  height: 100px;
}

.dateIcon .dateIconBox span {
  display: block;
  color: #FFF;
  text-align: center;
  line-height: 100%;
  /*
        2022年9月号から2023年3月号まで
        通常版は2ヶ月まとめての作業となるため、月の表示に対応するため追加。
        （TOP?各号目次?バックナンバー?TOP下部のe-bookホバー時）
        例：2022年09月号 → 2022年09?10月号
      */
}

.dateIcon .dateIconBox span.year {
  font-size: 150%;
  font-weight: bold;
}

.dateIcon .dateIconBox span.month {
  font-size: 220%;
  font-weight: bold;
}

.dateIcon .dateIconBox span.number {
  font-size: 120%;
  margin-top: 5px;
}

.dateIcon .dateIconBox span.joint-month {
  font-size: 144%;
  font-weight: bold;
  line-height: 1.6;
}

.dateIcon .dateIconBox span.ebook-joint-month {
  font-size: 126%;
  font-weight: bold;
  line-height: 1.6;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  float: center;
}

.p-center {
  margin: 0 auto !important;
}

/*
 各タイトル
----------------------------------------------------------- */
.topTitle {
  color: #000;
  text-align: center;
}

.topTitle h1 {
  font-size: 36px;
  font-weight: normal;
}

.topTitle p {
  margin-bottom: 30px;
}

.landlBtn {
  transition: all .2s ease-in-out;
  opacity: 1;
  margin: 30px 0px 0px;
  text-align: center;
}

.landlBtn:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

.landlBtn img.pc {
  display: inline-block;
}

.landlBtn img.sp {
  display: none;
}

/*
 四国の記事
----------------------------------------------------------- */
.shikokuPanel {
  width: 100%;
}

.shikokuBack {
  width: 100%;
}

.shikokuPanelInner {
  transition: all .2s ease-in-out;
  opacity: 1;
  float: left;
  width: 25%;
  position: relative;
}

.shikokuPanelInner:after {
  content: "";
  display: table;
  clear: both;
}

.shikokuPanelInner:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

.shikokuPanelInner .shikokuInfo {
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 50%;
  position: absolute;
  top: 42%;
  left: 25%;
}

.shikokuPanelInner .shikokuInfo:after {
  content: "";
  display: table;
  clear: both;
}

.shikokuPanelInner .shikokuInfo .prefName {
  font-size: 26px;
}

.shikokuPanelInner .shikokuInfo .shikokuLink {
  margin-top: 24px;
}

.shikokuContainer {
  margin-bottom: 90px;
}

.shikokuContainer .shikokuH1 {
  text-align: center;
  margin-bottom: 30px;
}

.shikokuContainer .shikokuH1 h1 {
  font-size: 36px;
  font-weight: normal;
}

.shikokuContainer .shikokuH1 img {
  max-width: 231px;
}

.shikokuContainer .shikokuColumn hr {
  height: 1px;
  background-color: #000;
  border: none;
  margin: 14px 0 10px;
}

.shikokuContainer .shikokuColumn .shikokuDate {
  float: none;
  margin-top: 6px;
  line-height: 22px;
}

.shikokuContainer .shikokuColumn ul {
  display: table;
  width: 100%;
}

.shikokuContainer .shikokuColumn ul li {
  display: table-cell;
  float: left;
  width: 33%;
}

.shikokuContainer .shikokuColumn ul li a {
  color: #000;
}

.shikokuContainer .shikokuColumn ul li a h3 {
  color: #000;
  text-decoration: none;
}

.shikokuContainer .shikokuColumn ul li img {
  width: 100%;
  padding: 15px;
}

.shikokuContainer .anchor {
  display: block;
  padding-top: 410px;
  margin-top: -410px;
}

.shikokuArticlesButton {
  width: 860px;
  margin: 0 auto 70px;
  padding-top: 0;
}

.shikokuArticlesButton:after {
  content: "";
  display: table;
  clear: both;
}

.shikokuArticlesButton li {
  float: left;
  margin-right: 16px;
  width: 203px;
}

.shikokuArticlesButton .end {
  margin-right: 0;
}

/*
 節電ページ
----------------------------------------------------------- */
#setsuden {
  font-size: 14px;
  width: 800px;
  margin: 100px auto 200px;
}

#setsuden .pic-right .text {
  float: left;
}

#setsuden .pic-right .pic {
  float: right;
}

#setsuden .pic-right:after {
  content: "";
  display: table;
  clear: both;
}

#setsuden .section01 .text {
  margin-top: 30px;
}

#setsuden .section01 .text p {
  font-size: 19px;
  line-height: 1.5;
}

#setsuden .section02 {
  margin-top: 30px;
  border: 2px #EC6C00 solid;
  border-radius: 10px;
  padding: 20px 20px 30px;
}

#setsuden .section02 h3 {
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px #EC6C00 solid;
}

#setsuden .section02 h4 {
  font-size: 23px;
  font-weight: bold;
}

#setsuden .section02 h5 {
  font-size: 19px;
  font-weight: bold;
  color: #E7373C;
  margin: 10px 0 20px;
}

#setsuden .section02 .pic-right .text {
  width: 430px;
  margin-top: 0;
}

#setsuden .section02 .pic-right .text p {
  font-size: 14px;
  line-height: 2.0;
}

#setsuden .section02 .pic-right .pic {
  width: 256px;
  text-align: center;
}

#setsuden .section02 .cont01, #setsuden .section02 .cont02, #setsuden .section02 .cont03, #setsuden .section02 .cont04 {
  margin-top: 40px;
}

#setsuden .section03 .cont01 {
  margin: 10px 0 30px;
}

#setsuden .section03 .cont02 p {
  text-indent: -1em;
  padding-left: 1em;
}

@media only screen and (max-width: 687px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .headerMain {
    width: 100%;
    height: 50px;
    background-color: #FFF;
    z-index: 10000;
    font-size: 10px;
  }
  .headerMain:after {
    content: "";
    display: table;
    clear: both;
  }
  .headerMainInner {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
  .headerMainYonden {
    position: absolute;
    top: 10px;
    left: 0px;
    transition: all .2s ease-in-out;
    opacity: 1;
  }
  .headerMainYonden:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    cursor: pointer;
  }
  .headerMainYonden img {
    width: 100px;
    height: auto;
  }
  .headerMainLandl {
    padding-top: 16px;
    text-align: center;
    transition: all .2s ease-in-out;
    opacity: 1;
  }
  .headerMainLandl:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    cursor: pointer;
  }
  .headerMainLandl img {
    width: 30%;
    max-width: 118px;
    margin: 0 auto;
    height: auto;
  }
  .headerMainMenubtn {
    position: absolute;
    top: 13px;
    right: 0px;
    line-height: 100%;
    transition: all .2s ease-in-out;
    opacity: 1;
  }
  .headerMainMenubtn:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    cursor: pointer;
  }
  .headerMainMenubtn img {
    width: 25px;
    height: auto;
  }
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 23px;
    height: 14px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 6px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  .sb-slidebar {
    background: rgba(0, 0, 0, 0.85);
    top: 43px;
    padding: 10px 20px;
    font-size: 13px;
    line-height: 1.2;
  }
  /*
 コンテナー
----------------------------------------------------------- */
  #sb-site, .sb-site-container {
    padding-top: 50px;
  }
  /*
 フッター
----------------------------------------------------------- */
  .footer {
    text-align: center;
    color: #fff;
    background-color: #003A75;
    background-size: cover;
    font-size: 100%;
    padding: 25px 0px 20px;
    line-height: 1.4;
  }
  .footer p {
    margin-bottom: 0px;
    font-size: 11px;
  }
  .footerInner {
    display: inline-block;
    text-align: left;
    margin-bottom: 25px;
    font-size: 11px;
  }
  .footerInner:after {
    content: "";
    display: table;
    clear: both;
  }
  .footerInnerItem {
    font-size: 100%;
    padding: 0px;
  }
  .footerInnerItem.left {
    text-align: center;
    padding-top: 0px;
    float: none;
  }
  .footerInnerItem.left img {
    width: 90px;
  }
  .footerInnerItem.right {
    text-align: center;
    padding-left: 0px;
    margin-top: 10px;
    float: none;
  }
  .footerInnerItem.right p {
    line-height: 1;
  }
  .footerInnerItem img {
    width: 100%;
    height: auto;
  }
  /*
 各パーツ
----------------------------------------------------------- */
  .pageTopBtn {
    position: fixed;
    bottom: 50px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: none;
    z-index: 29;
  }
  .pageTopBtn a {
    display: block;
    transition: opacity .2s ease-in-out;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .pageTopBtn a:hover {
    text-decoration: none;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  .dateIcon {
    width: 50px;
    display: table-cell;
  }
  .dateIcon .dateIconBox {
    border-radius: 5px;
    padding: 10px 0px;
    width: 50px;
    height: 50px;
    display: inline-block;
  }
  .dateIcon .dateIconBox span {
    display: block;
    color: #FFF;
    text-align: center;
    line-height: 100%;
    /*
        2022年9月号から2023年3月号まで
        通常版は2ヶ月まとめての作業となるため、月の表示に対応するため追加。
        （TOP?各号目次?バックナンバー?TOP下部のe-bookホバー時）
        例：2022年09月号 → 2022年09?10月号
      */
  }
  .dateIcon .dateIconBox span.year {
    font-size: 120%;
    font-weight: bold;
  }
  .dateIcon .dateIconBox span.month {
    font-size: 200%;
    font-weight: bold;
  }
  .dateIcon .dateIconBox span.number {
    margin-top: 0;
    font-size: 110%;
  }
  .dateIcon .dateIconBox span.joint-month {
    font-size: 148%;
    font-weight: bold;
    line-height: 1.5;
  }
  .dateIcon .dateIconBox span.ebook-joint-month {
    font-size: 124%;
    font-weight: bold;
    line-height: 1.5;
  }
  /*
 各タイトル
----------------------------------------------------------- */
  .topTitle {
    color: #2D2D2D;
    text-align: center;
  }
  .topTitle h1 {
    font-size: 270%;
    font-weight: bold;
  }
  .topTitle p {
    font-size: 120%;
    margin-bottom: 15px;
  }
  .landlBtn {
    transition: all .2s ease-in-out;
    opacity: 1;
    margin: 15px 0px 0px;
    text-align: center;
  }
  .landlBtn:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    cursor: pointer;
  }
  .landlBtn img {
    width: 150px;
    height: auto;
  }
  .landlBtn img.pc {
    display: none;
  }
  .landlBtn img.sp {
    display: inline-block;
  }
  /*
 四国の記事
----------------------------------------------------------- */
  .shikokuPanel {
    width: 100%;
  }
  .shikokuBack {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .shikokuPanelInner {
    transition: all .2s ease-in-out;
    opacity: 1;
    float: unset;
    width: 100%;
    position: relative;
  }
  .shikokuPanelInner:after {
    content: "";
    display: table;
    clear: both;
  }
  .shikokuPanelInner:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    cursor: pointer;
  }
  .shikokuPanelInner .shikokuInfo {
    color: #fff;
    font-weight: bold;
    text-align: center;
    width: 50%;
    position: absolute;
    top: 36%;
    left: 25%;
  }
  .shikokuPanelInner .shikokuInfo:after {
    content: "";
    display: table;
    clear: both;
  }
  .shikokuPanelInner .shikokuInfo .prefName {
    font-size: 26px;
  }
  .shikokuPanelInner .shikokuInfo .shikokuLink {
    margin-top: 24px;
  }
  .shikokuContainer {
    margin-bottom: 90px;
  }
  .shikokuContainer .shikokuH1 {
    text-align: center;
    margin-bottom: 30px;
  }
  .shikokuContainer .shikokuH1 h1 {
    font-size: 28px;
    font-weight: normal;
  }
  .shikokuContainer .shikokuH1 img {
    max-width: 231px;
    width: 50%;
  }
  .shikokuContainer .shikokuColumn hr {
    height: 1px;
    background-color: #000;
    border: none;
    margin: 2px 0 10px;
  }
  .shikokuContainer .shikokuColumn .shikokuDate {
    float: none;
    line-height: 22px;
  }
  .shikokuContainer .shikokuColumn ul {
    display: table;
    width: 98%;
    margin: 0 auto;
  }
  .shikokuContainer .shikokuColumn ul li {
    display: table-cell;
    float: left;
    width: 50%;
  }
  .shikokuContainer .shikokuColumn ul li a {
    color: #000;
  }
  .shikokuContainer .shikokuColumn ul li a h3 {
    color: #000;
    text-decoration: none;
  }
  .shikokuContainer .shikokuColumn ul li img {
    width: 100%;
    padding: 6px;
  }
  .shikokuContainer .anchor {
    display: block;
    padding-top: 250px;
    margin-top: -250px;
  }
  .shikokuArticlesButton {
    max-width: 160px;
    margin: 0 auto 70px;
    padding-top: 0;
    width: 100%;
  }
  .shikokuArticlesButton:after {
    content: "";
    display: table;
    clear: both;
  }
  .shikokuArticlesButton li {
    float: left;
    margin-right: 0;
    margin: 0 auto 10px;
    max-width: 160px;
  }
  .shikokuArticlesButton li img {
    max-width: 160px;
  }
  .shikokuArticlesButton .end {
    margin-right: 0;
  }
  /*
 節電ページ
----------------------------------------------------------- */
  #setsuden {
    font-size: 14px;
    width: 100%;
    padding: 0 20px 20px;
    margin: 60px auto 140px;
  }
  #setsuden img {
    width: 100%;
  }
  #setsuden .pic-right .text {
    float: left;
  }
  #setsuden .pic-right .pic {
    float: right;
  }
  #setsuden .pic-right:after {
    content: "";
    display: table;
    clear: both;
  }
  #setsuden .section01 .text {
    margin-top: 30px;
  }
  #setsuden .section01 .text p {
    font-size: 19px;
    line-height: 1.5;
  }
  #setsuden .section02 {
    margin-top: 30px;
    border: 2px #EC6C00 solid;
    border-radius: 10px;
    padding: 20px 20px 30px;
  }
  #setsuden .section02 h3 {
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 2px #EC6C00 solid;
  }
  #setsuden .section02 h4 {
    font-size: 23px;
    font-weight: bold;
  }
  #setsuden .section02 h5 {
    font-size: 19px;
    font-weight: bold;
    color: #E7373C;
    margin: 10px 0 20px;
  }
  #setsuden .section02 .pic-right {
    display: -ms-flexbox;
    display: flex;
    /* 縦方向中央揃え（Safari用） */
    -ms-flex-align: center;
        align-items: center;
    /* 縦方向中央揃え */
    /* 横方向中央揃え（Safari用） */
    -ms-flex-pack: center;
        justify-content: center;
    /* 横方向中央揃え */
  }
  #setsuden .section02 .pic-right .text {
    margin-top: 0;
    margin-right: 10px;
  }
  #setsuden .section02 .pic-right .text p {
    font-size: 14px;
    line-height: 2.0;
  }
  #setsuden .section02 .pic-right .pic {
    text-align: center;
  }
  #setsuden .section02 .cont01, #setsuden .section02 .cont02, #setsuden .section02 .cont03, #setsuden .section02 .cont04 {
    margin-top: 40px;
  }
  #setsuden .section03 .cont01 {
    margin: 10px 0 30px;
  }
  #setsuden .section03 .cont02 p {
    text-indent: -1em;
    padding-left: 1em;
    word-break: break-all;
  }
}
