@charset "UTF-8";

/* =========================================================
  link color
========================================================= */
a {
  color: var(--a-color);
}

a:hover {
  color: var(--a-hover-color);
}

a:visited {
  color: var(--a-visited-color);
}

/* =========================================================
  site layout
========================================================= */
#container {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow-x: hidden;
}

#pageHeader {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--site-width);
  margin: -20px auto 0;
  padding: 0;
}

#main {
  flex-grow: 1;
  width: 100%;
  max-width: var(--site-width);
  margin: 10px auto;
}

#wrapper {
  display: flex;
}

@media only screen and (max-width: 1200px) {
  #pageHeader {
    padding: 0px 20px 0px;
  }

  #main {
    padding: 0 20px;
  }

  #smart-menu {
    display: none;
  }
}

@media only screen and (max-width: 959px) {
  #pageHeader {
    padding: 0 10px;
    margin: 0px;
  }

  #pageNav {
    margin-bottom: 0;
  }

  #main {
    padding: 0 10px;
  }

  #wrapper {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}

/* body
----------------------------------------------- */
.body p,
.summary p {
  margin: 0 0 1rem;
}

.body table {
  margin-bottom: 1rem;
  border: 1px solid var(--mono-color-6);
}

/* button
----------------------------------------------- */
#back a,
.back a,
a[href].more,
.more a[href] {
  display: block;
  margin: 20px 0 20px;
  padding: 8px;
  border: 1px solid var(--mono-color-6);
  border-radius: 6px;
  color: var(--mono-color-1);
  text-align: center;
  text-decoration: none;
}

.contentGpCategoryCategory section[class^="docs_"] a.more,
.contentGpCategoryCategory .more a {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  color: var(--main-color-1);
  text-align: left;
  border: 0;
  padding: 0;
  margin: 10px 0 0 auto;
  width: 100px;
}

.contentOrganization div.more {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px!important;
}
.contentOrganization div.more a {
  border: 0;
  position: relative;
  padding-right: 26px;
  color: var(--a-color);
  margin-top: 0!important;
}
.contentOrganization div.more a:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.contentGpCategoryCategory section[class^="docs_"] a.more:after,
.contentGpCategoryCategory .more a:after,
.contentOrganization .more a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--main-color-1);
  border-radius: 10px;
  background-image: url(/_themes/site/images/list_arrow_w.svg);
  background-repeat: no-repeat;
  background-position: right 42% center;
  background-size: 34%;
  margin-left: 4px;
}

.contentGpCategoryCategory section[class^="docs_"] a.more:hover,
.contentGpCategoryCategory .more a:hover,
.contentOrganization .more a:hover {
  color: var(--main-color-4);
  background-color: transparent!important;
}

.contentGpCategoryCategory section[class^="docs_"] a.more:hover:after,
.contentGpCategoryCategory .more a:hover:after,
.contentOrganization .more a:hover:after {
  background-color: var(--main-color-4);
}

#back a:hover,
.back a:hover,
.more a[href]:hover {
  background-color: var(--mono-color-8);
}

/* pageTop
----------------------------------------------- */
#pageTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
}

#pageTop a {
  display: block;
  width: 70px;
  height: 70px;
  padding-top: 26px;
  border: 2px solid var(--main-color-4);
  border-radius:35px;
  background-color: #ffffff;
  color: var(--main-color-4);
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}

#pageTop a::after {
  content: "";
  position: absolute;
  left: 39%;
  top: 12px;
  width: 14px;
  height: 14px;
  border-top: 4px solid var(--main-color-4);
  border-right: 4px solid var(--main-color-4);
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

/* sp pc switch
----------------------------------------------- */
#spSwitch {
  width: 100%;
  border: 2px solid var(--main-color-5);
  background-color: var(--main-color-10);
  text-align: center;
}

#spView {
  display: block;
  position: relative;
  width: 100%;
  padding: 0 20px 10px;
  border: none;
  background-color: transparent;
  font-size: 1.25rem;
}

#spView::before {
  content: "";
  width: 32px;
  display: inline-block;
  height: 32px;
  left: -4px;
  top: 8px;
  position: relative;
  background-image: url("/_themes/site/images/ic-spview.png");
  background-repeat: no-repeat;
  background-position: center center;
}

#pcSwitch {
  display: none;
}

#pcView {
  width: 200px;
  padding: 8px 12px 8px 40px;
  border: none;
  background-color: var(--main-color-5);
  background-image: url("/_themes/site/images/ic-pcview.png");
  background-repeat: no-repeat;
  background-position: 30px center;
  color: var(--mono-color-9);
}

/* smart-menu
----------------------------------------------- */
#smartMenu {
  display: none;
}

@media only screen and (max-width: 959px) {
  #smartMenu {
    display: block;
  }

  #smartMenu ul {
    display: flex;
  }

  #smartMenu li {
    list-style: none;
  }

  #smartMenu li:not(:first-child) {
    margin-left: 8px;
  }

  #smartMenu button {
    display: block;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    background-repeat: no-repeat!important;
    background-position: center center!important;
    background-size: 20px 20px!important;
    border: 0;
    border-radius: 22px;
    font-size: 0;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
  }

  #smartMenu button.active {
    background-image: url("/_themes/site/images/ic-close.svg")!important;
  }

  #smartMenu .globalNavi {
    background-image: url("/_themes/site/images/ic_menu.svg")!important;
    border: 2px solid var(--main-color-4);
  }

  #smartMenu .search {
    background-image: url("/_themes/site/images/ic_search2.svg")!important;
    border: 2px solid #84bb42;
  }

  #smartMenu .accessibilityTool {
    background-image: url("/_themes/site/images/ic_accessibility.svg")!important;
    background-size: 24px 24px;
    border: 2px solid #ee9334;
  }
}

/* accessibility-tool
----------------------------------------------- */
#accessibilityTool {
  width: 100%;
}

#accessibilityTool .pieceContainer {
  font-size: 0.875rem;
}

#accessibilityTool .pieceBody {
  width: 100%;
}

#accessibilityTool .top-area {
  background-color: #e6e6e6;
  width: 100%;
  padding: 5px 0;
}

#accessibilityTool ul,
#accessibilityTool li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin: 0;
}

#accessibilityTool ul {
  max-width: var(--site-width);
  margin: 0 auto;
}

#accessibilityTool ul ul {
  flex-wrap: wrap;
}

#accessibilityTool .pieceBody > ul {
  justify-content: flex-start;
}

#accessibilityTool .pieceBody > ul > li:not(:first-child):not(:nth-child(2)) {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid #bbb;
}

#accessibilityTool a,
#accessibilityTool span {
  display: inline-block;
  line-height: 1;
}

#accessibilityTool a {
  padding: 3px;
  border: 1px solid #bbb;
  border-radius: 4px;
  background-color: var(--mono-color-9);
  color: var(--mono-color-1);
  text-decoration: none;
}

#accessibilityTool a:hover {
  text-decoration: underline;
}

#accessibilityTool .nocssread {
  margin-right: auto;
}

#accessibilityTool .nocssread a {
  border: 0;
  background-color: transparent;
  text-decoration: underline;
}

#accessibilityTool .nocssread a:hover {
  text-decoration: none;
}

#accessibilityTool ul span {
  margin-right: 0.25rem;
}

#accessibilityTool li li:not(:first-child) {
  margin-left: 4px;
}

#accessibilityTool #navigationRuby {
  margin-right: 4px;
}

#accessibilityTool #navigationRuby:not(.rubyOn) {
  border-color: transparent;
  background-color: transparent;
}

#accessibilityTool a.rubyOff {
  margin-right: -4px;
}

#accessibilityTool a.rubyOn {
  margin-right: 4px;
}

#accessibilityTool #navigationTalkPlayer {
  position: absolute;
  top: 74px;
}

#navigationTalkCreatingFileNotice,
#navigationTalkPlayer audio {
  position: relative;
  width: 450px;
  padding: 4px;
  background-color: var(--mono-color-9);
}

#navigationNotice {
  padding: 6px 10px;
  background-color: #ddd;
  font-weight: bold;
}

#accessibilityTool #themeYellow,
#accessibilityTool #themeBlue,
#accessibilityTool #themeBlack {
  border-color: transparent;
}

#accessibilityTool #themeYellow {
  background-color: #ff0;
}

#accessibilityTool #themeBlue {
  background-color: #00f;
  color: var(--mono-color-9);
}

#accessibilityTool #themeBlack {
  background-color: var(--mono-color-1);
  color: var(--mono-color-9);
}

#accessibilityTool .bottom-area {
  display: flex;
  justify-content: flex-end;
  max-width: var(--site-width);
  margin: 4px auto 0;
}

#accessibilityTool .bottom-area > div {
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px;
}
/* Google翻訳 */
#accessibilityTool  .goog-te-gadget-simple {
  border: 1px solid #bbb;
  border-radius: 4px;
}
#accessibilityTool  .goog-te-gadget-simple > span > a {
  border: 0;
}

@media only screen and (max-width: 1200px) {
  #accessibilityTool .top-area {
    padding: 5px 20px;
  }
  #accessibilityTool .bottom-area {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 959px) {
  #accessibilityTool .pieceBody {
    display: none;
    position: absolute;
    top: 88px;
    z-index: 9999;
    padding: 0;
    background-color: var(--mono-color-8);
    border-bottom: 1px solid var(--mono-color-6);
  }

  #accessibilityTool .top-area {
    background-color: transparent;
    padding: 0;
  }
  #accessibilityTool .top-area > ul {
    flex-direction: column;
  } 

  #accessibilityTool ul,
  #accessibilityTool li {
    justify-content: center;
  }

  #accessibilityTool ul {
    margin: 0;
  }

  #accessibilityTool .pieceBody .top-area > ul > li,
  #accessibilityTool .pieceBody .bottom-area {
    width: 100%;
    padding: 10px;
    border-top: 1px solid var(--mono-color-6);
  }

  #accessibilityTool .pieceBody .bottom-area {
    margin: 0;
    justify-content: center;
  }
  #accessibilityTool .pieceBody .bottom-area div {
    justify-content: center;
    padding: 0;
  }

  #accessibilityTool li.nocssread {
    display: none;
  }

  #accessibilityTool li li {
    margin: 0 2px;
  }

  #accessibilityTool .pieceBody .top-area > ul > li:not(:first-child):not(:nth-child(2)) {
    margin-left: 0;
    border-left: none;
  }

  #accessibilityTool ul span {
    margin-right: 0.25rem;
  }

}

/* site-logo
----------------------------------------------- */
#siteLogo {
  flex-basis: 140px;
  margin-right: auto;
}

#siteLogo h1 a {
  display: block;
  padding: 10px 0;
}

@media only screen and (max-width: 959px) {
  #siteLogo h1 a {
    padding: 14px 0;
  }

  #siteLogo h1 img {
    max-height: 60px;
  }
}

/* joruri-search-box
---------------------- */
.criteriaBox .criteriaBasic {
  width: 340px;
}

.criteriaBox .criteriaBasic,
.criteriaBox .criteriaKeyword {
  background: none;
}

.criteriaBox .criteriaKeyword {
  display: flex;
  position: relative;
  justify-content: flex-end;
}

.criteriaBox .criteriaKeyword > * + * {
  margin-left: 12px;
}

.criteriaBox .criteriaKeyword .keyword {
  width: 100%;
  border: none;
  border-radius: 20px 0 0 20px;
  padding: 0 16px;
}

.criteriaBox .criteriaKeyword .keyword:focus {
  outline: none;
}

.criteriaBox .criteriaKeyword input[name="commit"] {
  margin-left: 0;
  background-image: url("/_themes/site/images/ic-search.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

.criteriaBox .criteriaKeyword input[type="submit"] {
  flex-basis: 48px;
  height: 40px;
  padding: 0;
  background-color: var(--main-color-4);
  color: var(--mono-color-9);
  border: none;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
}

.criteriaBox .criteriaKeyword input[name="clear"] {
  flex-basis: 32px;
  height: 38px;
  font-weight: bold;
  background-color: var(--mono-color-9);
  border-style: none;
  color: var(--main-color-8);
  outline: none;
}

.criteriaBox .criteriaKeyword input[name="clear"]:hover {
  color: var(--main-color-4);
}

.criteriaBox .criteriaKeyword .keywordDescription {
  display: none;
}

.criteriaBox .criteriaKeyword .keywordField {
  flex-basis: calc(100% - 48px);
  height: 40px;
  display: inherit;
  background-color: var(--mono-color-9);
  border: 1px solid var(--mono-color-6);
  border-right: 0;
  border-radius: 20px 0 0 20px;
}

.criteriaBox #criteria_keyword {
  border-style: none;
  border-radius: 0;
}

.criteriaBox #criteria_keyword:focus {
  outline: none;
}

.search-area #___gcse_0 {
  width: 340px;
}
.search-area .gsc-control-cse {
  padding: 0;
}
.search-area table.gsc-search-box,
.search-area table.gsc-search-box table:not(.gsc-input) {
  width: auto!important;
}
.search-area table.gsc-search-box table.gsc-input {
  width: 90%!important;
}
.search-area table.gsc-search-box td.gsc-input {
  padding-right: 0;
}
.search-area .gsc-input-box {
  border-radius: 20px 0 0 20px;
  padding-top: 0!important;
  padding-bottom: 0!important;
}
.search-area input.gsc-input {
  height: 31px!important;
}
.search-area .gsib_a {
  padding-left: 18px;
}
.search-area .gsc-search-button {
  margin-left: 0;
  height: 40px;
  border: 0;
  background-color: var(--main-color-4);
  border-radius: 0 20px 20px 0;
}
.search-area .gsc-search-button-v2 {
  padding: 6px 14px;
}
.search-area .gsc-search-button-v2 svg {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 959px) {
  .criteriaBox {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 20px;
    background-color: var(--mono-color-9);
    border-top: 1px solid var(--mono-color-6);
    border-bottom: 1px solid var(--mono-color-6);
  }

  .criteriaBox .criteriaBasic {
    width: 100%;
  }

  .search-area #___gcse_0 {
    display: none;
    position: absolute;
    top: 88px;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 20px;
    background-color: var(--mono-color-9);
    border-top: 1px solid var(--mono-color-6);
    border-bottom: 1px solid var(--mono-color-6);
  }
}

/* custom-search
----------------------------------------------- */
#customSearch fieldset {
  margin: 0 0 3px;
  padding: 0;
  border: 0;
}

#customSearch fieldset::after {
  content: "";
  clear: both;
  display: block;
}

#customSearch fieldset legend,
#customSearch fieldset label {
  display: inline-block;
  width: auto;
  margin: 0 0.5rem 0 0;
}

#customSearch fieldset legend {
  float: left;
}

#search-box {
  width: calc(100% - 70px);
  height: 40px;
  border: 1px solid var(--mono-color-6) !important;
}

#search-button {
  height: 40px;
  margin-left: -4px;
  padding: 8px 20px;
  background-color: var(--main-color-4);
  overflow: hidden;
  cursor: pointer;
}

@media only screen and (max-width: 959px) {
  #customSearch .pieceBody {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 16px 20px;
    background-color: var(--mono-color-9);
    border-bottom: 1px solid var(--main-color-4);
  }
}

/* faq
----------------------------------------------- */
#faq {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px dotted var(--mono-color-6);
}

#faq a {
  display: block;
  min-height: 68px;
  padding: 8px 6px 4px;
  border-radius: 6px;
  background-color: #ddedce;
  color: var(--mono-color-1);
  text-decoration: none;
}

#faq a img {
  display: block;
  max-width: 40px;
  margin: 0 auto;
}

#faq a:hover {
  background-color: #c2ddac;
}

body[id^="page-faq"] ul.docs:not(.feed) li,
body[id^="page-faq"] .docs ul:not(.feed) li,
body[id^="page-faq"] .contentTagTag li,
body[id^="page-Smartphone-faq"] .docs ul:not(.feed) li,
body[class^="dir-category-zokusei"][id$="moreDocs1"] .docs ul:not(.feed) li,
body[id^="page-soshiki"]:not(#page-soshiki-index) .contentOrganization ul:not(.feed) li,
body#page-docs-index .docs ul:not(.feed) li {
  display: block!important;
  position: relative;
  padding-left: calc(128px + 1rem)!important;
}
body[id^="page-faq"] ul.docs:not(.feed) li span[class$="_date"],
body[id^="page-faq"] .docs ul:not(.feed) li span[class$="_date"],
body[id^="page-faq"] .contentTagTag li span[class$="_date"],
body[id^="page-Smartphone-faq"] .docs ul:not(.feed) li span[class$="_date"],
body[class^="dir-category-zokusei"][id$="moreDocs1"] .docs ul:not(.feed) li span[class$="_date"],
body[id^="page-soshiki"]:not(#page-soshiki-index) .contentOrganization ul:not(.feed) li span[class$="_date"],
body#page-docs-index .docs ul:not(.feed) li span[class$="_date"] {
  position: absolute;
  left: 0;
  top: 15px;
}

body[id^="page-faq"] .question p,
body[id^="page-faq"] .answer p {
  position: relative;
  width: 100%;
}
body[id^="page-faq"] .question p {
  padding: 8px 8px 8px calc(8px + 1.5rem);
  background-color: var(--main-color-9);
  border-radius: 6px;
  font-weight: bold;
}
body[id^="page-faq"] .answer p:first-child {
  padding: 0 8px 0 2rem;
}
body[id^="page-faq"] .answer p:not(:first-child) {
  padding-left: 2rem;
}
body[id^="page-faq"] .question p:before,
.answer p:first-child:before {
  position: absolute;
  left: 8px;
  max-width: 2rem;
  font-weight: bold;
  margin-right: 6px;
}
body[id^="page-faq"] .question p:before {
  content: "Q.";
  color: var(--main-color-4);
}
body[id^="page-faq"] .answer p:first-child:before {
  content: "A.";
  color: var(--ac-color-red-1);
}

/* タイトル非表示 */
body[id^="page-faq-category-bunya"] .contentGpCategory section h2 {
  display: none;
}

/* 関連ワード・関連記事 */
.tags,
.rels {
  border: 1px solid var(--main-color-4);
  border-radius: 6px;
}
.tags h2,
.rels h2 {
  background-color: transparent!important;
  border-bottom: 1px solid var(--main-color-4)!important;
  border-radius: 0!important;
}

@media only screen and (max-width: 959px) {
  #faq {
    display: none;
  }
}
@media only screen and (max-width: 559px) {
  body[id^="page-faq"] ul.docs:not(.feed) li,
  body[id^="page-faq"] .docs ul:not(.feed) li,
  body[id^="page-faq"] .contentTagTag li,
  body[id^="page-Smartphone-faq"] .docs ul:not(.feed) li, 
  body[class^="dir-category-zokusei"][id$="moreDocs1"] .docs ul:not(.feed) li,
  body[id^="page-soshiki"]:not(#page-soshiki-index) .contentOrganization ul:not(.feed) li,
  body#page-docs-index .docs ul:not(.feed) li {
      padding-left: initial!important;
  }
  body[id^="page-faq"] ul.docs:not(.feed) li span[class$="_date"],
  body[id^="page-faq"] .docs ul:not(.feed) li span[class$="_date"],
  body[id^="page-faq"] .contentTagTag li span[class$="_date"],
  body[id^="page-Smartphone-faq"] .docs ul:not(.feed) li span[class$="_date"], 
  body[class^="dir-category-zokusei"][id$="moreDocs1"] .docs ul:not(.feed) li span[class$="_date"],
  body[id^="page-soshiki"]:not(#page-soshiki-index) .contentOrganization ul:not(.feed) li span[class$="_date"],
  body#page-docs-index .docs ul:not(.feed) li span[class$="_date"] {
      position: unset;
      display: block;
  }
}

/* govbot
----------------------------------------------- */
.banner-govbot {
  margin-left: 20px;
}
.banner-govbot img {
  display: block;
  width: auto;
  height: 4.6rem;
}

@media only screen and (max-width: 959px) {
  .banner-govbot {
    margin-left: 10px;
  }
  .banner-govbot img {
    height: 3rem;
  }
}

/* global-navi
----------------------------------------------- */
#globalNavi {
  border-bottom: 1px solid var(--mono-color-6);
}

#globalNavi .pieceHeader {
  display: none;
}

#globalNavi .pieceContainer {
  border-bottom: 1px solid var(--mono-color-6);
}

#globalNavi .pieceBody {
  max-width: var(--site-width);
  margin: 0 auto;
}

#globalNavi ul {
  position: relative;
  display: flex;
  justify-content: space-between;
}

#globalNavi li a {
  position: relative;
  display: inline-block;
}

#globalNavi li {
  display: flex;
  align-items: center;
}

#globalNavi li.faq {
  display: none;
}

#globalNavi ul.mainMenu > li > a {
  padding: 10px 10px 8px 4px;
  border-bottom: 4px solid transparent;
  color: var(--mono-color-1);
  font-weight: bold;
  text-decoration: none;
}

#globalNavi ul.mainMenu > li > a.focus,
#globalNavi ul.mainMenu > li > a:hover {
  border-color: var(--main-color-4);
}

#globalNavi svg {
  margin: 0 6px 4px 0;
  fill: var(--main-color-4);
}

#globalNavi li a.cur,
#globalNavi li a:hover,
#globalNavi li a:focus {
  border-color: var(--main-color-4);
}

#globalNavi ul.subMenu {
  display: flex;
  gap: 8px 1%;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  padding: 20px;
  background: var(--main-color-9);
  border-radius: 0 0 12px 12px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 200;
}

#globalNavi li:hover a {
  transition: all 0.2s;
}

#globalNavi ul.mainMenu li.current a ~ ul,
#globalNavi ul.mainMenu li:hover a + ul {
  visibility: visible;
  opacity: 1;
}

#globalNavi ul.subMenu li {
  flex-basis: 19%;
}
#globalNavi ul.subMenu li a {
  padding: 6px 6px 6px 16px;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  width: 100%;
  border-radius: 4px;
  background-image: url(/_themes/site/images/list_arrow.svg)!important;
  background-repeat: no-repeat!important;
  background-position: right 8px center!important;
}

#globalNavi ul.subMenu li a:hover {
  background-color: var(--main-color-4);
  color: #ffffff;
  background-image: url(/_themes/site/images/list_arrow_w.svg)!important;
}

#globalNavi ul.subMenu li a::before {
  display: none;
}

@media only screen and (max-width: 959px) {
  #globalNavi .pieceBody {
    display: none;
    position: absolute;
    top: 88px;
    z-index: 9999;
    width: 100%;
    background-color: var(--mono-color-9);
  }

  #globalNavi ul {
    flex-wrap: wrap;
    padding: 0;
    border-top: 1px solid var(--main-color-4);
  }

  #globalNavi li {
    flex-basis: 50%;
    border-bottom: 1px solid var(--main-color-4);
    background-color: var(--mono-color-9);
  }

  #globalNavi > ul.mainMenu > li {
    border-bottom: 1px solid var(--main-color-4);
  }

  #globalNavi li.faq {
    display: block;
    flex-basis: 100%;
    align-items: center;
  }

  #globalNavi li.faq img {
    width: 28px;
  }

  #pcSwitch {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--main-color-4);
    text-align: center;
  }

  #pcView {
    width: 200px;
    padding: 8px 12px 8px 40px;
    border: none;
    background-color: var(--main-color-3);
    background-image: url("/_themes/site/images/ic-pcview.png");
    background-repeat: no-repeat;
    background-position: 30px center;
    color: var(--mono-color-9);
  }

  #globalNavi ul.mainMenu > li > a {
    display: block;
    width: 100%;
    padding: 18px 12px 14px 1rem;
    border: none;
    text-align: left;
  }

  #globalNavi ul.mainMenu li.faq > a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  #globalNavi li.faq span {
    display: inline-block;
    line-height: 1.8;
  }

  #globalNavi li:nth-child(2n + 1):not(.faq) {
    border-right: 1px solid var(--main-color-4);
  }

  #globalNavi ul.subMenu {
    display: none;
  }
}

/* focus btn */
#globalNavi .pieceBody > ul > li {
  flex-wrap: wrap;
}
#globalNavi .pieceBody > ul > li span.btn {
  position: relative;
  width: 100%;
  height: 0;
}
#globalNavi .pieceBody > ul > li span.btn a {
  position: absolute;
  left: calc(50% - 8px);
  bottom: 3px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid var(--main-color-4);
  background: none !important;
  overflow: hidden;
}
#globalNavi .pieceBody > ul > li span.btn a.open {
  border-top: none;
  border-bottom: 8px solid var(--main-color-4);
}

/* breadCrumbs
----------------------------------------------- */
#breadCrumbs .pieceBody {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 10px 0;
}

#breadCrumbs ol,
#breadCrumbs li {
  list-style: none;
}

#breadCrumbs li {
  display: inline-block;
}

#breadCrumbs li:not(:first-child)::before {
  content: ">";
  margin: 0 5px;
}

#breadCrumbs a {
  text-decoration: none;
  font-size: .9rem;
}

.bc-more a {
  display: inline-block;
  padding: 0 0 0 16px;
  background: url("/_themes/site/images/ic-breadcrumbs.png") left 0.3rem no-repeat;
}

.bc-more::after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 959px) {
  #breadCrumbs {
    display: none;
  }
}

/* subHeader
----------------------------------------------- */
#subHeader {
  width: 100%;
  max-width: var(--site-width);
  margin: 16px auto;
}

#subHeader .pieceBody {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  padding: 20px 10px 20px 25px;
  border: 1px solid #999;
  background: linear-gradient(to bottom, #fff, #f2f2f2);
}

#subHeader .pieceBody > * {
  flex-shrink: 1;
}

#subHeader .pieceBody h2 {
  font-size: 2rem;
}

#subHeader .pieceBody {
  padding: 0 0 0 40px;
}

@media only screen and (max-width: 959px) {
  #subHeader .pieceBody {
    margin: 0 0 10px;
    padding: 15px 15px 20px;
    border-left: none;
    border-right: none;
  }

  #subHeader .pieceBody h2 {
    flex-shrink: 0;
    font-size: 1.5rem;
  }

  #subHeader .pieceBody {
    padding: 0 0 0 15px;
  }

  #subHeader .pieceBody h2 {
    margin-right: 25px;
  }
}

@media only screen and (max-width: 559px) {
  #subHeader .pieceBody h2 {
    font-size: 1.25rem;
  }
}

/* page-title
----------------------------------------------- */
#pageTitle h1 {
  margin-bottom: 2.5rem;
  padding: 14px 20px 10px 0;
  border-bottom:4px solid var(--main-color-4);
  font-size: 1.6rem;
}

body[id*="moreDocs"]:not(body[id^="page-category-zokusei-download"]):not(body[id^="page-category-bunya-kankosangyo-kanko"]) #pageTitle h1 {
  margin-bottom: .5rem;
}
body[id^="page-category-zokusei-download"] .shinsei-link {
  margin-bottom: 20px;
}

@media only screen and (max-width: 559px) {
  #pageTitle h1 {
    font-size: 1.6rem;
  }
}

/* footerNavi
----------------------------------------------- */
#footerNavi .pieceContainer {
  padding: 10px 0;
  background-color: var(--mono-color-8);
}

#footerNavi ul {
  display: flex;
  gap: 0 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  line-height: 1;
  padding: 0 20px;
}

#footerNavi li:not(:last-child) {
  padding-right: 1rem;
  border-right: 1px solid var(--mono-color-1);
}

@media only screen and (max-width: 959px) {
  #footerNavi ul {
    justify-content: flex-start;
    line-height: normal;
    padding: 0 20px;
  }

  #footerNavi a {
    display: inline-block;
    margin-bottom: 4px;
    padding: 0 0 0 15px;
    background: url("/_themes/site/images/ic-arrow.svg") no-repeat left center;
  }

  #footerNavi li:not(:last-child) {
    padding-right: 0;
    border: 0;
  }
}

/* commonFooter
----------------------------------------------- */
#commonFooter {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  padding: 20px 0 0;
  background-color: var(--main-color-4);
  font-size: 0.875rem;
  color: var(--mono-color-9);
}

#commonFooter .pieceContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--site-width);
  background: url("/_themes/site/images/location-map.png") no-repeat right center;
  background-size: auto 60%;
  border-bottom: 1px solid var(--main-color-3);
}

/* footer-menu */

#commonFooter .footer-menu {
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #ffffff
}

#commonFooter .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
}

#commonFooter .footer-menu li {
  display: flex;
  align-items: center;
}

#commonFooter .footer-menu li:first-child {
  border-radius: 8px 0 0 8px;
}

#commonFooter .footer-menu li:last-child {
  border-radius: 0 8px 8px 0;
}

#commonFooter .footer-menu li:not(:last-child):after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: var(--main-color-4);
  margin: 0 4px;
}

#commonFooter a {
  text-decoration: none;
}

#commonFooter .footer-menu li a {
  display: block;
  color: var(--main-color-4);
  font-weight: bold;
  padding: 4px 14px;
}

#commonFooter .footer-menu li a:hover {
  opacity: .6;
}

/* yakuba-info1 */

.yakuba-info1 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.yakuba-info1 img {
  width: 100px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  margin-right: 20px;
}

.yakuba-info1 address p {
  display: flex;
  flex-wrap: wrap;
}

.yakuba-info1 address span {
  display: block;
}

.yakuba-info1 address span:first-child {
  margin-right: 8px;
}

.yakuba-info1 address p:first-child span:first-child,
.yakuba-info1 address p:nth-child(2) span {
  white-space: nowrap;
}

/* yakuba-info2 */

.yakuba-info2 {
  margin-bottom: 14px;
}

.yakuba-info2 li {
  display: flex;
  align-items: flex-start;
}

.yakuba-info2 li:not(:last-child) {
  margin-bottom: 4px;
}

.yakuba-info2 li p:first-child {
  white-space: nowrap;
  width: 136px;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 4px 0;
  margin-right: 10px;
}

.yakuba-info2 li p:last-child {
  width: calc(100% - 146px);
  margin-top: 5px;
}

.yakuba-info2 li p span {
  display: block;
}

.yakuba-info2 li p span.small {
  font-size: 13px;
}

/* footer-nav */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px dashed rgba(255,255,255,.5);
  padding: 10px;
}
.footer-nav li a {
  color:#ffffff;
  font-size: 13px;
  text-decoration: underline!important;
}

.footer-nav li a:hover {
  opacity: .6;
}

/* copyright */
#commonFooter small {
  display: block;
  width: 100%;
  color: var(--main-color-4);
  text-align: center;
  background-color: var(--main-color-9);
  padding: 4px 20px;
}

@media only screen and (max-width: 1200px) {
  #commonFooter {
    padding: 20px 20px 0;
  }

  #commonFooter small {
    width: calc(100% + 40px);
  }
}

@media only screen and (max-width: 959px) {
  #commonFooter {
    flex-direction: column;
    align-items: baseline;
  }

  #commonFooter .pieceContainer {
    background: none;
  }

  #commonFooter address {
    background: none;
  }

  #commonFooter .footer-nav {
    width: calc(100% - 80px);
  }

  #commonFooter .copyright {
    align-self: center;
  }
}

@media only screen and (max-width: 595px) {
  .yakuba-info1 {
    display: block;
  }
  .yakuba-info1 img {
    margin-bottom: 8px;
  }

  .yakuba-info2 li {
    display: block;
  }
  .yakuba-info2 li:first-child {
    margin-bottom: 10px;
  }
  .yakuba-info2 li p:last-child {
    width: 100%;
  }
}

@media only screen and (max-width: 319px) {
  #commonFooter .footer-menu li {
    width: 100%;
  }
}

/* emergencyDocs
----------------------------------------------- */
#emergencyDocs {
  width: 100%;
}

#emergencyDocs .pieceContainer {
  border: 2px solid var(--ac-color-red-1);
}

#emergencyDocs .pieceHeader {
  background-color: var(--ac-color-red-1);
}

#emergencyDocs h2 {
  padding: 5px 20px;
  color: var(--mono-color-9);
  font-size: 1.25rem;
  font-weight: normal;
}

#emergencyDocs .pieceBody {
  padding: 0 20px 20px;
  background-color: var(--mono-color-9);
}

@media only screen and (max-width: 959px) {
  #emergencyDocs {
    margin-bottom: 20px;
  }
}

/* recentDocsTab
----------------------------------------------- */

#recentDocsTab .wrapper {
  position: relative;
  padding: 0 20px 20px;
  border: 1px solid var(--mono-color-6);
  border-top: 0;
  background-color: var(--mono-color-9);
}

.tabs ul {
  display: flex;
}

.tabs li {
  flex: 1;
  position: relative;
  margin-right: 4px;
}

.tabs li:last-child {
  margin-right: 0;
}

.tabs li.current:after {
    content: "";
    width: 0;
    height: 0;
    border-right: 22px solid transparent;
    border-left: 22px solid transparent;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -10px;
    z-index: 1;
}

.tabs a {
  display: block;
  padding: 10px 0;
  background-color: #ffffff;
  color: var(--main-color-4);
  text-align: center;
  text-decoration: none;
  border-radius: 6px 6px 0 0;
}

/* 1つ目のタブ */
.tabs li:first-child a {
  background-color: var(--main-color-10);
  color: var(--main-color-4);
}

.tabs li:first-child.current a,
.tabs li:first-child a:hover,
.tabs li:first-child a:focus {
  color: #ffffff;
  background-color: var(--main-color-4);
}

.tabs li:first-child.current:after {
    border-top: 20px solid var(--main-color-4);
}

/* 2つ目のタブ */
.tabs li:nth-child(2) a {
  color: #84bb42;
  background-color: #dfeed3;
}

.tabs li:nth-child(2).current a,
.tabs li:nth-child(2) a:hover,
.tabs li:nth-child(2) a:focus {
  color: #ffffff;
  background-color: #84bb42;
}

.tabs li:nth-child(2).current:after {
    border-top: 20px solid #84bb42;
}

/* 3つ目のタブ */
.tabs li:nth-child(3) a {
  color: #ee9334;
  background-color: #ffefd9;
}

.tabs li:nth-child(3).current a,
.tabs li:nth-child(3) a:hover,
.tabs li:nth-child(3) a:focus {
  color: #ffffff;
  background-color: #ee9334;
}

.tabs li:nth-child(3).current:after {
    border-top: 20px solid #ee9334;
}

/* feedDocs
----------------------------------------------- */
#feedDocs .feedBlock {
  display: flex;
  gap: 6px 1rem;
  flex-basis: 100%;
}

#feedDocs .feedBlock:not(:last-child) {
  margin-bottom: 4px;
}

#feedDocs .category {
  min-width: 7rem;
  padding: 0 6px;
  background-color: #e5f2ff;
  text-align: center;
}

/* ranking
----------------------------------------------- */
#ranking .pieceBody {
  padding: 12px;
}

#ranking li {
  display: flex;
}

#ranking li span,
#ranking li a {
  display: inline-block;
  vertical-align: top;
}

#ranking li .rank {
  flex-basis: 22px;
  height: 22px;
  margin: 2px 10px 0 0;
  background-color: #bfe4f3;
  font-size: 0.875rem;
  text-align: center;
  padding: 3px;
  border-radius: 11px;
}

#ranking li a {
  flex: 1;
}

#ranking li a:hover {
  color: var(--a-hover-color);
}

#ranking li .count {
  margin-left: auto;
}

#ranking .ranking1 .rank {
  background-color: #fbc93b;
}

#ranking .ranking2 .rank {
  background-color: var(--mono-color-6);
}

#ranking .ranking3 .rank {
  background-color: #c7b299;
}

#ranking .more a {
  margin-top: 10px;
  margin-bottom: 0;
}

/* relation-word
----------------------------------------------- */
#relationWord .pieceBody {
  padding: 12px;
}

#relationWord .pieceBody li {
  margin-left: 1.5rem;
  list-style-type: disc;
}

/* side-menu
----------------------------------------------- */
#sideMenu .pieceBody {
  padding: 12px;
}

#sideMenu h3 {
  font-size: 1rem;
  font-weight: normal;
}

#sideMenu h3,
#sideMenu li {
  padding: 0 0 0 16px;
  background: url("/_themes/site/images/ic-arrow.svg") left center no-repeat;
}

#sideMenu section:not(:last-child) h3,
#sideMenu section:not(:last-child) li {
  margin: 0 0 5px;
}

#sideMenu br {
  display: none;
}

@media only screen and (max-width: 959px) {
  #sideMenu h3,
  #sideMenu li {
    margin: 0;
    padding: 6px 12px;
  }

  #sideMenu section:not(:last-child) h3,
  #sideMenu section:not(:last-child) li {
    border-bottom: 1px solid var(--mono-color-1);
  }

  #sideMenu a {
    display: block;
  }
}

/* calendar
----------------------------------------------- */
#calendar .pieceContainer {
  position: relative;
  padding: 15px 12px 12px;
  border: 1px solid var(--mono-color-6);
  border-top: 4px solid var(--main-color-4);
  background-color: var(--mono-color-9);
}

#calendar .pieceContainer::after {
  background-image: none;
  background-color: var(--main-color-4);
}

#calendar .pieceHeader {
  padding: 0;
  background: none;
}

#calendar h2 {
  text-align: center;
}

#calendar h3 {
  margin-bottom: 8px;
  text-align: center;
}

#calendar table {
  width: 100%;
  margin-bottom: 10px;
}

#calendar th,
#calendar td {
  padding: 2px 0;
  text-align: center;
}

#calendar table a {
  display: block;
  width: 1.6rem;
  line-height: 1.6rem;
  margin: 0 auto;
  background-color: var(--main-color-3);
  color: var(--mono-color-9);
  border-radius: 50%;
  text-decoration: none;
}

#calendar table a:hover {
  opacity: 0.9;
}

@media only screen and (max-width: 959px) {
  #calendar .pieceContainer {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* simple_tabs(todaysEvent)
----------------------------------------------- */
#simple_tabs {
  display: flex;
  flex-wrap: nowrap;
}

#simple_tabs li {
  flex-grow: 1;
  flex-basis: 0;
  padding: 8px 4px 7px;
  border-top: 1px solid var(--main-color-8);
  border-right: 1px solid var(--main-color-8);
  border-bottom: 1px solid var(--main-color-4);
  background: linear-gradient(to bottom, var(--mono-color-9), var(--main-color-10));
  color: var(--mono-color-1);
  font-weight: bold;
  text-align: center;
}

#simple_tabs li:first-child {
  border-left: 1px solid var(--main-color-8);
}

#simple_tabs li.current {
  padding-top: 7px;
  border-top: 2px solid var(--main-color-4);
  border-bottom: 0;
  background: linear-gradient(to bottom, var(--main-color-10), var(--mono-color-9));
}

#simple_tabs li:not(.current) {
  cursor: pointer;
}

#simple_tabs li:first-child.current {
  border-left: 1px solid var(--main-color-4);
}

#simple_tabs li:last-child.current {
  border-right: 1px solid var(--main-color-4);
}

#simple_tabs li a {
  text-decoration: none;
  color: inherit;
}

#simple_tab_panels > div {
  padding: 10px;
  border-style: solid;
  border-width: 0 1px 1px;
  border-color: var(--main-color-4);
}

#simple_tab_panels ul {
  list-style: inside disc;
}

#simple_tab_panels li {
  padding-left: 10px;
}

#simple_tab_panels li:not(:last-child) {
  margin: 0 0 5px;
}

/* life-scene, life-guide
----------------------------------------------- */
div[id^="life"] ul {
  display: flex;
  gap: 4px 0;
  flex-direction: column;
}

div[id^="life"] .pieceBody {
  padding: 12px;
}

div[id^="life"] li {
  width: 100%;
  padding: 0;
}

div[id^="life"] a {
  display: inline-block;
}

div[id^="life"] a img {
  width: 32px;
  margin-right: 4px;
}

div[id^="life"] a span {
  line-height: 32px;
}

@media only screen and (max-width: 959px) {
  div[id^="life"] .pieceBody {
    padding: 0;
  }

  div[id^="life"] li {
    padding: 0 12px;
  }

  div[id^="life"] li:first-child {
    padding-top: 10px;
  }

  div[id^="life"] li:last-child {
    padding-bottom: 10px;
  }

  div[id^="life"] li:not(:last-child) {
    margin: 0;
  }

  div[id^="life"] a {
    display: flex;
    padding-top: 8px;
    padding-bottom: 8px;
  }
}

/* advertisement
----------------------------------------------- */
#advertisement .pieceContainer {
  padding: 10px 16px;
  border: 1px solid var(--main-color-4);
}

#advertisement .pieceBody > a {
  color: var(--main-color-1)!important;
  text-decoration: none;
  font-size: 92%;
  position: relative;
  margin-left: 1.2rem;
}
#advertisement .pieceBody > a:before {
  content: "";
  background-image: url(/_themes/site/images/list_arrow_w.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.35rem;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 0.5rem;
  background-color: var(--main-color-1);
  position: absolute;
  left: -1.2rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#advertisement .pieceBody > a:hover {
  color: var(--main-color-4);
}
#advertisement .pieceBody > a:hover:before {
  background-color: var(--main-color-4);
}

#advertisement .pieceHeader {
  text-align: center;
}
#advertisement h2 {
  font-size: 110%;
}

#advertisement .upper_text > span {
  display: inline-block;
  margin-left: 1rem;
}

#advertisement ul {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
  margin-bottom: 10px;
}

#advertisement .bannerImages img {
    width: 120px;
    height: 60px;
}

#advertisement ul a {
  display: inline-block;
}

@media only screen and (max-width: 959px) {
  #advertisement ul {
    justify-content: center;
    gap: 12px 20px;
  }

  #advertisement .pieceBody > a {
    margin-left: 1.5rem;
  }
}

@media only screen and (max-width: 559px) {
  #advertisement ul {
    gap: 12px;
  }
}

/* feedback
----------------------------------------------- */
#feedback {
  margin-top: 40px;
}

#feedback .pieceHeader h2 {
  min-height: 0;
  padding: 5px 15px;
  border-color: var(--mono-color-6);
  background-color: var(--mono-color-6);
  color: inherit;
  font-size: 1.125rem;
  font-weight: bold;
}

#feedback .pieceHeader h2::before {
  display: none;
}

#feedback .pieceBody {
  padding: 15px;
  border: 1px solid var(--mono-color-6);
}

#feedback .pieceBody iframe {
  border: none;
}

@media only screen and (max-width: 959px) {
  #feedback .pieceHeader h2 {
    font-size: 1rem;
  }
  #feedback .pieceBody {
    padding: 10px;
  }
}

/* archive
----------------------------------------------- */
#archive .pieceBody {
  padding: 12px;
}

#archive .pieceBody ul {
  margin-bottom: 4px;
}

#archive .pieceBody ul li {
  margin-left: 1.5rem;
  list-style-type: disc;
}

#archive .pieceBody ul li li {
  list-style-type: circle;
}

/* sns parts
----------------------------------------------- */
#snsParts {
  margin: 1rem 0;
}

#snsParts .pieceBody {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#snsParts .pieceBody > *:not(:first-child) {
  margin-left: 1rem;
}

#snsParts .fb-wrapper,
#snsParts .pocket-wrapper {
  margin-top: 1px;
}

/* articleHeader
----------------------------------------------- */
.articleHeader h2 {
  position: relative;
  font-size: 1.3rem;
  font-weight: bold;
  padding-left: 42px;
  margin-bottom: .6rem;
  background-image: url(../images/ic_shinchaku.svg)!important;
  background-repeat: no-repeat!important;
  background-position:  left 3px!important;
  background-size: contain!important;
}

@media only screen and (max-width: 959px) {
  .contentOrganizationGroupDepartment .articleHeader h2,
  .contentOrganizationGroupUnit .articleHeader h2 {
    margin: 0;
  }
}

/* =========================================================
  docs
========================================================= */
.docs-all li,
.docs li,
.content li,
#feedDocs li,
#pickup li,
.entries li,
.dir-tags #contentBody li,
.contentTagTag li,
.contentGpCategory > section > h2 + ul li,
.contentGpCategoryCategory ul:not(.feed) li,
.contentOrganizationGroupDepartment ul:not(.feed) li,
.contentOrganizationGroupUnit ul:not(.feed) li {
  display: flex;
  gap: 0 1rem;
  padding: 15px 0;
  border-bottom: 1px solid var(--mono-color-6);
}

.contentGpCategoryCategory ul:not(.feed) li:last-child {
  border-bottom: 0;
}

#feedDocs li {
  flex-wrap: wrap;
}

#topicsDocs .docs li:first-child,
#feedDocs li:first-child {
  padding: 0 0 15px;
}

li span[class$="date"]:first-child {
  flex: 0 0 8rem;
  color: var(--mono-color-3);
  font-size: 14px;
  font-weight: bold;
  margin-top: 3px;
}

.links > div {
  display: flex;
}

.links > div .feed {
  flex-basis: auto;
  margin-top: calc(10px + 0.35rem);
}

.links > div .more {
  flex-basis: calc(100% - 7.5rem);
  margin-left: auto;
}

.articleHeader + ul + .more,
.articleHeader + ul + div .more {
  margin: 20px 0 0 auto;
}

.contentGpArticleDocs,
.contentGpCategory,
.contentOrganization,
.contentPortalEntries {
  position: relative;
}

.feed {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.feed li {
  border: 0;
}

.feed li:first-child {
  margin-right: 0.5rem;
  padding-left: 22px;
  background: url("/_themes/site/images/ic-rss.svg") no-repeat left center;
}

.feed a {
  color: var(--mono-color-1);
}

.new_mark {
  display: inline-block;
  margin-left: 8px;
  background-color: var(--ac-color-red-1);
  padding: 2px 4px;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  border-radius: 2px;
}

@media only screen and (max-width: 959px) {
  /* li span[class$="date"]:first-child {
    margin-top: 0;
  }
  */
}

@media only screen and (max-width: 559px) {
  .docs-all li,
  .docs li,
  .content li,
  .entries li,
  .dir-tags #contentBody li,
  .contentTagTag li,
  .contentGpCategory > section > h2 + ul li,
  .contentGpCategoryCategory ul:not(.feed) li,
  .contentOrganizationGroupDepartment ul:not(.feed) li,
  .contentOrganizationGroupUnit ul:not(.feed) li {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 6px 1rem;
  }

  li span[class$="date"]:first-child {
    flex: 1 0 auto;
    font-size: 13px;
  }

  li span[class^="title"]:nth-child(2),
  li .titleBlock {
    flex-basis: 100%;
  }
}

@media only screen and (max-width: 419px) {
  #recentDocsTab .wrapper {
    border-top: 1px solid var(--mono-color-6);
    border-left: 0;
  }

  .tabs {
    margin-bottom: 4px;
  }

  .tabs ul {
    position: relative;
    flex-wrap: wrap;
    gap: 4px;
  }

  #recentDocsTab .content > ul:before {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 0;
  }

  #recentDocsTab .content > ul.shinchaku:before {
    background-color: var(--main-color-4);
  }

  #recentDocsTab .content > ul.event:before {
    background-color: #84bb42;
  }

  #recentDocsTab .content > ul.news:before {
    background-color: #84bb42;
  }

  .tabs li {
    flex: none;
  }

  .tabs li {
    width: calc(50% - 2px);
    margin-right: 0;
  }

  .tabs li.current:after {
    content: none;
  }

  .tabs a {
    border-radius: 6px;
    padding: 10px 8px;
  }

  .tabs li:not(:last-child) a {
    margin: 0;
  }

  .tabs li:nth-child(-n + 2) a {
    margin-bottom: 1px;
  }

  .tabs li:nth-child(odd) a {
    margin-right: 1px;
  }
}

/* contentGpArticleDocs, contentPortalEntries
----------------------------------------------- */
.contentGpArticleDocs .feed,
.contentPortalEntries .feed {
  position: absolute;
  right: 10px;
  top: 0;
  z-index: 1;
}

.contentGpArticleDocs h2.date,
.contentPortalEntries h2.date {
  margin: 1.5rem 0 0;
  padding: 0;
  min-height: 0;
  background-color: transparent;
  border-bottom: 2px solid var(--main-color-4);
  color: var(--main-color-4);
  font-size: 1rem;
}

/* category-list
----------------------------------------------- */
div[id^="categoryList"] h3 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 0;
}

div[id^="categoryList"] h3 a {
  text-decoration: none;
}

div[id^="categoryList"] br {
  display: none;
}

@media only screen and (max-width: 959px) {
  div[id^="categoryList"] .pieceBody {
    padding: 0;
  }

  div[id^="categoryList"] h3,
  div[id^="categoryList"] li {
    margin: 0;
    background: none;
  }

  div[id^="categoryList"] section.category:last-child {
    padding-bottom: initial;
  }

  div[id^="categoryList"] a {
    display: block;
  }
}

/* free-input-area
----------------------------------------------- */
#freeInputArea h2 {
  margin: 2rem 0 1rem;
  padding: 8px;
  background-color: var(--main-color-9);
  font-size: 1.25rem;
}
#freeInputArea h3 {
  margin: 1.5rem 0 1rem;
  padding: 4px 1rem;
  border: 1px solid var(--mono-color-3);
  font-size: 1.125rem;
}
#freeInputArea p {
  margin: 0 0 1rem;
}

/* biz-calendar piece
----------------------------------------------- */
#links #workHours .pieceBody,
#links #holidayList .pieceBody,
#links #holidayCalendar .pieceBody {
  padding: 12px;
}

#links #workHours .pieceBody .location + .location,
#links #holidayList .pieceBody .location + .location {
  margin-top: 10px;
}

#links #workHours .pieceBody .name,
#links #holidayList .pieceBody .name {
  font-weight: bold;
}

/* holidayCalendar
----------------------------------------------- */
#holidayCalendar .pieceHeader {
  padding: 0;
  background: none;
}

#holidayCalendar section h2 {
  text-align: center;
}

#holidayCalendar table {
  width: 100%;
  margin-bottom: 10px;
}

#holidayCalendar th,
#holidayCalendar td {
  padding: 2px 0;
  text-align: center;
}

#holidayCalendar table a {
  display: block;
  width: 1.6rem;
  line-height: 1.6rem;
  margin: 0 auto;
  background-color: var(--main-color-4);
  color: var(--mono-color-9);
  border-radius: 50%;
  text-decoration: none;
}

#holidayCalendar table a:hover {
  opacity: 0.9;
}

.calendarHolidays td.sat,
#holidayCalendar .sat {
  background-color: inherit;
}

.calendarHolidays td.sun,
.calendarHolidays td.holiday,
#holidayCalendar .sun,
#holidayCalendar .holiday {
  background-color: inherit;
}

.calendarHolidays td.normal,
.calendarHolidays td.closed,
.calendarHolidays td.extra,
#holidayCalendar .normal,
#holidayCalendar .closed,
#holidayCalendar .extra {
  background-color: #ffe6f1;
}

@media only screen and (max-width: 959px) {
  #holidayCalendar .pieceContainer {
    max-width: 480px;
    margin: 0 auto;
  }
}

.calendarHolidays .attributeList {
  display: none;
}

/* receptionList
----------------------------------------------- */
#receptionList .pieceBody {
  padding: 12px;
}

#receptionList .courses li + li {
  margin: 12px 0 0;
}

#receptionList .courses .category span {
  display: inline-block;
  margin: 0 0 2px;
  padding: 0 2px;
  background-color: var(--main-color-9);
}

#receptionList .courses li > span + span {
  margin-left: 1rem;
}

/* sample site
----------------------------------------------- */

/* annotation */
#annotation {
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto 2rem;
  border: 1px solid var(--ac-color-red-1);
  padding: 16px;
  font-size: 1rem;
  text-align: left;
}

/* select color */
#selectColor {
  margin: 0 1rem 0 0;
}
#selectColor .pieceContainer {
  display: flex;
  align-items: center;
}

#selectColor h2 {
  margin-right: 0.5rem;
  font-weight: normal;
  font-size: 0.8125rem;
}

#selectColor select {
  padding: 6px 8px;
}

@media only screen and (max-width: 959px) {
  #selectColor {
    margin: 0 0 1rem 0;
  }
}


/* =========================================================
  よくある質問（新着記事）
========================================================= */
#faqRecentDocs .pieceContainer .pieceHeader h2 {
  position: relative;
  font-size: 1.3rem;
  font-weight: bold;
  padding-left: 42px;
  margin-bottom: 0.6rem;
  background-image: url(../images/ic_shinchaku.svg)!important;
  background-repeat: no-repeat!important;
  background-position: left 3px!important;
  background-size: contain!important;
}

#faqRecentDocs .pieceContainer {
  margin-top: 30px;
}
#faqRecentDocs .pieceContainer .pieceBody {
  padding: 0 20px;
  background-color: var(--main-color-10);
  border-radius: 12px;
}
#faqRecentDocs .pieceContainer .pieceBody li:last-child {
  border-bottom: 0;
}

/* title_link */
.docs .title_link,
.docs_1 .title_link,
.contentTagTag .title_link,
body[id^="page-Smartphone-faq"] .docs .title_link {
  margin-right: 4px;
}

/* =========================================================
  広報紙データベースpage-docs
========================================================= */
#page-kohoDb-index .docs li {
  padding: .5rem 0;
  border-style: dotted;
}

/* links */
.koho1,
.koho2,
.koho3 {
  border-left: 4px solid var(--main-color-8);
  padding-left: 10px;
}
.koho1 > *:not(h2),
.koho2,
.koho3 {
  font-size: 95%;
}
.koho1 {
  padding-bottom: 20px;
}
.koho1 h2 {
  border-radius: 6px;
  color: var(--main-color-4);
  margin-bottom: 8px;
}
.koho1 p {
  margin-bottom: 8px;
}
.koho1 > div {
  border-top: 1px solid var(--mono-color-6);
  border-bottom: 1px solid var(--mono-color-6);
  padding: 10px;
}
.koho1 > div img {
  margin-bottom: 8px;
}
.koho1 > div li {
  border-bottom: 1px dotted var(--mono-color-5);
  font-size: 95%;
  position: relative;
  padding-left: .8rem;
}
.koho1 > div li:before {
  content: "";
  display: block;
  width: .45rem;
  height: .45rem;
  border-radius: .225rem;
  background-color: var(--mono-color-5);
  position: absolute;
  left: 0;
  top: .5rem;
}
.koho1 > div li:last-child {
  border-bottom: 0;
}
.koho2 {
  padding-bottom: 10px;
}
.koho2 > div {
  background-color: var(--main-color-9);
  border-radius: 6px;
  padding: 8px 12px;
}
.koho2 > div p {
  margin-bottom: 6px;
}
.koho2 > div select {
  width: 100%;
  font-size: 16px;
}
@media only screen and (max-width: 959px) {
  .koho1,
  .koho2,
  .koho3 {
    border-left: 0;
    padding-left: 0;
  }
  .koho1 > *:not(h2),
  .koho2,
  .koho3 {
    font-size: initial;
  }
}

/* =========================================================
  リンクの改行
========================================================= */
body[id^="page-docs"] article .body p a {
  word-break: break-all;
}

/* emergency
----------------------------------------------- */
#emergency {
    margin-top: 10px;
    padding: 10px;
    border: solid 2px #ff002a;
}
#emergency h2 {
    background: #ff002a;
    padding: 10px;
    color: #FFFFFF;
}
#emergency .pieceBody {
    padding: 10px 10px;
}
#emergency h3 {
    padding: 8px 0px;
    border-bottom: solid 2px #ff002a;
    margin-bottom: 10px;
}
#emergency p {
    padding: 8px 0px;
    line-height: 1.6em;
    margin-bottom: 8px;
}
#emergency ul li {
    line-height: 1.8em;
    padding: 4px 10px;
    border-bottom: dotted 1px #cdcdcd;
}

/* maintenance
----------------------------------------------- */
#maintenance {
    margin: 0 auto;
    padding: 20px;
    color: #393939;
}
#maintenance h1 {
    text-align: center;
    margin-top:10px;
}
#maintenance h2 {
    color: #ff7b00;
    font-size: 1.2em;
    padding: 10px;
    border: solid 1px #ff7b00;
    margin-bottom: 20px;
}
#maintenance p {
    line-height: 1.6;
}
#maintenance div.mente {
    font-size: 0.8em;
    padding: 10px;
    margin: 20px 0px;
    border: solid 1px #cdcdcd;
}