@charset "UTF-8";

.l-header_info {
  /*display: none;*/
}
/* ヘッダー上へ　*/
.l-header_info.hide {
  transform: translateY(-100%);
  transition: 0.8s;
}

.l-header_info.show {
  transform: translateY(0%);
  transition: 0.8s;
}

body {
  background: #fff;
  color: #313131;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
}

.l-wrap {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.l-2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-2col_main {
  width: calc(100% - (300px + 60px));
}

.l-2col_side {
  width: 300px;
}

.l-2col_side > aside > *:first-of-type {
  margin-top: 0;
}

@media only screen and (max-width: 1199px) {
  .l-2col {
    display: block;
  }
  .l-2col_main {
    width: 100%;
  }
  .l-2col_side {
    margin-top: 60px;
    width: 100%;
  }
}

/*==================================
Print
==================================*/
@media print {
  body {
    padding-top: 0 !important;
  }
  .is-gyosei header,
  .is-gyosei footer {
    display: none !important;
  }
  .l-header_info {
    display: none;
  }
  .is-gyosei .p-subVisual {
    display: none;
  }
  .l-2col_side {
    display: none;
  }
  .l-2col_main {
    width: 100%;
  }
  .l-wrapper {
    -webkit-print-color-adjust: exact;
  }
  #page_top {
    display: none !important;
  }
}

/*==================================
Utility
==================================*/
/* Background */
.u-bgGreen {
  background: #226677;
}
.u-bgLightGray {
  background: #f5f5f5;
}
.u-bgLightBlue {
  background: #dae8f2;
}

/*==================================
Point
==================================*/
.arrow {
  position: relative;
}
.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}
.arrow__top::before {
  top: 10px;
  bottom: auto;
}

/* s5-2 */
.s5-2::before {
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid;
  border-right: 2px solid;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);

  transition: 0.3s;
}
/*==================================
Button
==================================*/
.c-btn01 {
  display: inline-block;
  position: relative;
  padding-bottom: 0.6em;
  border-bottom: 2px solid #dae8f2;
  min-width: 260px;

  text-decoration: none;
  color: inherit;
}
.c-btn01::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  content: "";
  width: 1.6em;
  height: 2px;
  background-color: #226677;
  transition: 0.3s;
}

.c-btn01 > span {
  padding-left: 2em;
}

.c-btn01:hover::after {
  width: 100%;
}
.c-btn01:hover > span::before {
  left: 0.25em;
}

.c-btn01__cl {
  border-color: #fff;
}

/*==================================
Header
==================================*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px #c0c0c0;
}

.l-header_inr {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 10px 40px 5px 40px;

  display: flex;
  justify-content: space-between;
}

.l-header_logo > a {
  display: block;
  width: 230px;
  height: 78px;
  background-image: url(/gyosei/assets/images/common/logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.l-header_logo > a:hover {
  opacity: 0.8;
}

.l-header_utility {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

@media only screen and (max-width: 1200px) {
  .l-header {
    height: auto;
  }
  .l-header_inr {
    padding: 12px 20px;
  }
  .l-header_logo > a {
    width: 124px;
    height: 42px;
  }
  .l-header_utility {
    margin-left: auto;
  }
}

@media only screen and (min-width: 1201px) {
  /* 上下逆転 */
  nav {
    order: 2;
  }
  .l-header_utility_sub {
    order: 1;
  }
  #nav-toggle,
  #nav-toggle .on,
  #nav-toggle .off {
    display: none;
  }
}

/* navigation */
.l-header_utility_nav {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.l-header_utility_nav_item {
  padding: 0 1em;
}

.l-header_utility_nav_item:first-child {
  padding-left: 0;
}
.l-header_utility_nav_item:last-child {
  padding-right: 0;
}

.l-header_utility_nav_item:not(:first-of-type) {
  border-left: 1px solid #e1e1e1;
}
.l-header_utility_nav_item > a {
  text-align: center;
  text-decoration: none;
  color: inherit;

  font-size: 1.7rem;
  font-weight: 700;
  padding: 6px 0 4px;
  position: relative;
  display: block;
  transition: 0.5s;
  border-bottom: 4px solid transparent;
}
.l-header_utility_nav_item > a:hover {
  border-bottom: 4px solid #23785e;
}
.l-header_utility_nav_item_child_inr > li a:hover,
.l-header_utility_nav_item_child_inr > li a:focus {
  background: transparent; /* フォーカス確認用*/
}

@media only screen and (max-width: 1200px) {
  .l-header_utility_nav {
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
  }
  .l-header_utility_nav_item {
    width: 100%;
    padding: 0;
  }
  .l-header_utility_nav_item:not(:first-of-type) {
    margin-top: 20px;
    border-left: 0;
  }
  .l-header_utility_nav_item > a {
    padding: 10px;
    background: #23785e;
    color: #fff;
  }
}

/* 展開メニュー */
.l-header_utility_nav_item_child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  background: #dae8f2;
  padding: 40px 10vw 60px;
  box-shadow: 0 2px 5px #c0c0c0;
  transition: 0.2s;
}
.l-header_utility_nav_item:hover > .l-header_utility_nav_item_child,
.l-header_utility_nav_item .l-header_utility_nav_item_child.focused {
  visibility: visible;
  opacity: 1;
}

.l-header_utility_nav_item_child_inr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.l-header_utility_nav_item_child_inr:before {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
  order: 1;
}
.l-header_utility_nav_item_child_inr:after {
  content: "";
  display: block;
  width: calc(100% / 4 - 20px);
}
.l-header_utility_nav_item_child_inr > li {
  width: calc(100% / 4 - 20px);
  margin-top: 10px;
  padding-left: 1.4em;
}

/* > ICON */
.l-header_utility_nav_item_child_inr li {
  position: relative;
  padding-left: 1.2em;
}
.l-header_utility_nav_item_child_inr li:hover::before,
.l-header_utility_nav_item_child_inr li:hover::after {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
}
.l-header_utility_nav_item_child_inr li:hover::before {
  width: 10px;
  height: 10px;
  border-top: 2px solid #23785e;
  border-right: 2px solid #23785e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-header_utility_nav_item_child_inr li > a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}
.l-header_utility_nav_item_child_inr li > a:hover {
  color: #23785e;
}

@media only screen and (max-width: 1200px) {
  .l-header_utility_nav_item_child {
    display: none;
  }
}

/* ----- utility ----- */
.l-header_utility_sub {
  display: flex;
  justify-content: flex-end;
  font-size: 1.6rem;
}

.l-header_utility_sub > *:not(:first-child) {
  margin-left: 20px;
}

/* Link */
.l-header_utility_sub_link {
  display: flex;
  align-items: center;
}
.l-header_utility_sub_link > a {
  display: block;
  color: inherit;
  /* arrow */
  padding-left: 1em;
}
.l-header_utility_sub_link > a::before {
  border-color: #23785e;
}

/* Change */
.l-header_utility_sub_change {
  display: flex;
  align-items: center;
}
.l-header_utility_sub_change dt {
  font-weight: 400;
}
.l-header_utility_sub_change dd {
  margin-left: 10px;
}

.l-header_utility_sub_change dd ul {
  display: flex;
}
.l-header_utility_sub_change dd li:not(:first-of-type) {
  margin-left: 5px;
}
.l-header_utility_sub_change dd li > a {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  display: block;
  width: 3em;
  text-align: center;
  padding: 0.2em;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid #23785e;
  border-radius: 3px;
}
.l-header_utility_sub_change .is-active {
  background: #23785e;
  color: #fff;
}

.l-header_utility_sub_translate > a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 1em;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border: 1px solid #23785e;
  border-radius: 3px;
}
.l-header_utility_sub_translate > a:hover {
  border: 1px solid #226677;
}

.l-header_utility_sub_form form {
  height: 100%;
  border-radius: 3px;
  position: relative;
}
.l-header_utility_sub_form form input {
  width: 200px;
  height: 100%;
  padding: 4px 1em;
  text-align: left;
  background: #fff;
  margin-right: 4em;

  border: 1px solid #23785e;
  border-radius: 3px 0 0 3px;
}
.l-header_utility_sub_form form button {
  background: #23785e;
  color: #fff;
  font-weight: 700;
  text-align: center;
  width: 4em;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;

  border: 1px solid #23785e;
  border-radius: 0 3px 3px 0;
}

@media only screen and (max-width: 1200px) {
  .l-header_utility_sub {
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
  }
  .l-header_utility_sub > *:not(:first-child) {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 1200px) {
  #nav-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: auto;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
  }
  #nav-toggle div {
    position: relative;
  }
  #nav-toggle p {
    text-align: center;
    padding-top: 24px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0;
  }
  #nav-toggle span {
    display: block;
    height: 5px;
    width: 80%;
    background: #226677;
    /* box-shadow: 0 0 1px #f0f0f0; */
    position: absolute;
    top: 0;
    left: 5px;
    transition: 0.35s ease-in-out;
  }
  #nav-toggle span:nth-child(1) {
    top: 2px;
  }
  #nav-toggle span:nth-child(2) {
    top: 14px;
  }
  #nav-toggle .off {
    display: none;
  }

  .open #nav-toggle .on {
    display: none;
  }
  .open #nav-toggle .off {
    display: block;
    font-weight: 400;
  }
  .open #nav-toggle span {
  }
  .open #nav-toggle span:nth-child(1) {
    top: 11px;
    transform: rotate(210deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 11px;
    transform: rotate(-210deg);
  }
  .open #global-nav {
    transform: translateY(100vh);
  }

  #gloval-nav {
    background: rgba(218, 232, 242, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow: scroll;
    padding: 60px 50px 50px;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav li {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1s ease, opacity 0.9s ease;
  }
}

/*==================================
Footer
==================================*/
.is-gyoseiTop .l-footer {
  margin-top: -6%;
}

.l-footer {
  margin-top: 160px;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    margin-top: 80px;
  }
}

.l-footer_inr {
  background: url(/gyosei/assets/images/common/bg_footer.png) no-repeat top center/cover;
}

.l-footer_logo {
  width: 230px;
  height: auto;
}
.l-footer_logo > a {
  display: block;
  width: 230px;
  height: 78px;
  background-image: url(/gyosei/assets/images/common/logo.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.l-footer_info {
  padding-top: 160px;
}

.l-footer_info address {
  margin-top: 20px;
}

.l-footerLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -10px;
}
.l-footerLink > li {
  margin-top: 10px;
}
.l-footerLink > li:not(:first-of-type) {
  margin-left: 1em;
}

.l-footer_copy {
  text-align: center;
  padding: 20px 0;
}

@media only screen and (max-width: 1200px) {
  .is-gyoseiTop .l-footer {
    margin-top: -9%;
  }
}

@media only screen and (max-width: 768px) {
  .is-gyoseiTop .l-footer {
    margin-top: -21%;
  }
  .l-footerLink > li {
    margin-top: 5px;
    width: 100%;
    text-align: center;
  }
  .l-footerLink > li:not(:first-of-type) {
    margin-left: auto;
    padding-left: 0;
  }
}

/* PageTopBtn */
#page_top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  display: none;
}
#page_top a {
  display: block;
  width: 100px;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  #page_top {
    right: 20px;
    bottom: 20px;
  }
  #page_top a {
    width: 60px;
  }
}

/*==================================
Character
==================================*/
.c-character {
  position: relative;
}
.c-character::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 0;
  width: 13vw;
  min-width: 70px;
  aspect-ratio: 69 / 50;
  background: url(/gyosei/assets/images/index/character.svg) no-repeat center/cover;
  z-index: 5;
}

@media only screen and (max-width: 768px) {
  .c-character::before {
    left: 4%;
  }
}

/*==================================
Bg - 背景色：黒
==================================*/
body.is-black {
  background: #000;
  color: #ff0;
}
body.is-black a {
  color: #ff0;
}

/* Utility */
body.is-black .u-bgGreen,
body.is-black .u-bgLightGray,
body.is-black .u-bgLightBlue {
  background: #000;
}

/* Title */
body.is-black .p-gyoseiTtl_en {
  color: #ff0;
}
body.is-black .p-gyoseiTtl_jp {
  border-color: #ff0;
}

/* Button */
body.is-black .c-btn01 {
  border-color: #000;
}
body.is-black .c-btn01::after {
  background: #ff0;
}

/* header */
body.is-black .l-header_info a {
  color: inherit;
}

body.is-black .l-header {
  background: #000;
  box-shadow: 0 0 10px #404040;
}
body.is-black .l-header_utility_sub_change dd li > a,
body.is-black .l-header_utility_sub_form form input,
body.is-black .l-header_utility_sub_translate > a {
  background: #000;
  border-color: #ff0;
}
body.is-black .l-header_utility_sub_change .is-active {
  background: #ff0;
  color: #000;
}
body.is-black .l-header_utility_sub_form form button {
  background: #ff0;
  border-color: #ff0;
  color: #000;
}
body.is-black .l-header_utility_sub_link > a::before,
body.is-black .l-header_utility_nav_item > a:hover,
body.is-black .l-header_utility_nav_item_child_inr li:hover::before {
  border-color: #ff0;
}
body.is-black .l-header_logo > a {
  background-image: url(/gyosei/assets/images/common/logo_bk.svg);
}
body.is-black .l-header_utility_nav_item_child {
  background: #000;
  box-shadow: 0 2px 5px #404040;
}
body.is-black .l-header_utility_nav_item_child_inr li > a:hover {
  color: #ff0;
}
@media only screen and (max-width: 1200px) {
  body.is-black #nav-toggle span {
    background: #ff0;
  }
  body.is-black #gloval-nav {
    background: rgba(0, 0, 0, 0.9);
  }
  body.is-black .l-header_utility_nav_item > a {
    background: #ff0;
    color: #000;
  }
}

/* Slider */
body.is-black .slick-prev:before,
body.is-black .slick-next:before {
  color: #ff0;
}
body.is-black .p-sliderList .slick-dots li button::before {
  color: #ff0;
}
body.is-black .p-slider_control > button {
  background: #ff0;
  color: #000;
}

/* topSchedule */
body.is-black .p-topSchedule_ttl::before {
  color: #ff0;
}
body.is-black .c-eventlist_item_next > a {
  background: #ff0;
  color: #000;
}

/* Octagon */
body.is-black .c-octagon {
  background: #ff0;
}
body.is-black .c-octagon_frame {
  color: #000;
}
body.is-black .c-octagon::before {
  border-top-color: #000;
  border-left-color: #000;
}
body.is-black .c-octagon::after {
  border-top-color: #000;
  border-right-color: #000;
}
body.is-black .c-octagon_frame::before {
  border-bottom-color: #000;
  border-left-color: #000;
}
body.is-black .c-octagon_frame::after {
  border-bottom-color: #000;
  border-right-color: #000;
}

/* topSearch */
body.is-black .p-topSearch .p-gyoseiTtl > span {
  color: #ff0;
}
body.is-black .p-topSearch_link > a {
  border-color: #ff0;
}

/* topNews */
body.is-black .c-tabBtns_item > a {
  background: #000;
  border-color: #ff0;
}
body.is-black .c-tabBtns_item > a.is-active {
  background: #ff0;
  color: #000;
}
body.is-black .p-topNews_box {
  background: #000;
  border: 1px solid #ff0;
}

/* topInfo */
body.is-black .p-topInfo_link__med li > a {
  background: #ff0;
  color: #000;
}

/* topTopics */
body.is-black .c-topicCard {
  background: #000;
  border: 1px solid #ff0;
}

/* topData */
/* body.is-black .c-dataUnit.c-dataUnit__2col > .c-data {
  border: 1px solid #ff0;
} */
body.is-black .c-data {
  border: 1px solid #ff0;
}
body.is-black .c-statsList_def .stats-number > span {
  color: #ff0;
}
body.is-black .c-data__mayor .c-data_inr::before {
  background: url(/gyosei/assets/images/index/illust-b1_bk.png) no-repeat center/cover;
}
body.is-black .c-data__stats .c-data_inr::before {
  background: url(/gyosei/assets/images/index/illust-b2_bk.png) no-repeat center/cover;
}
body.is-black .c-data__letter .c-data_inr01::before {
  background: url(/gyosei/assets/images/index/illust-b3_bk.png) no-repeat center/cover;
}

/* topPR */
body.is-black .p-topPr_inr {
  background: none;
}
body.is-black .p-top2col--hfix,
body.is-black .p-topPrList_item > a {
  background: #000;
  border: 1px solid #ff0;
}
body.is-black .p-topPrList_item > a [class^="icon-"]::before {
  color: #ff0;
}

/* topLink */
body.is-black .p-topLink_inr {
  background: none;
}

/* Footer */
body.is-black .l-footer_inr {
  background: none;
}
body.is-black .l-footer_logo > a {
  background-image: url(/gyosei/assets/images/common/logo_bk.svg);
}

/* SubVisual */
body.is-black .p-subVisual_ttl {
  color: #ff0;
}

/* Title */
body.is-black .c-pageTtl {
  background: #000;
  border-color: #ff0;
  color: #ff0;
}
body.is-black .c-cateTtl {
  border-color: #ff0;
}

/* News */
body.is-black .c-newsList {
  background: #000;
  border-color: #ff0;
}
body.is-black .c-newsList_item {
  border-color: #ff0;
}
body.is-black .c-label,
body.is-black .c-label01,
body.is-black .c-label02 {
  background: #ff0;
  color: #000;
}
body.is-black .c-paging_list li a {
  border-color: #000;
}
body.is-black .c-paging_list li a.is-current,
body.is-black .c-paging_list li a:hover {
  border-color: #ff0;
}
body.is-black .c-paging_list .c-paging_prev > a,
body.is-black .c-paging_list .c-paging_next > a {
  background: #ff0;
  color: #000;
}

/* Calendar */
body.is-black .p-eventMonth_btn::before {
  background: #ff0;
}
body.is-black .p-eventMonth_btn::after {
  border-color: #000;
}
body.is-black .p-eventTabBtn_btn:hover,
body.is-black .p-eventTabBtn_btn.current {
  background: #ff0;
  border-color: #ff0;
  color: #000;
}
body.is-black .p-eventTabBtn_btn,
body.is-black .p-eventcal_ttl,
body.is-black .p-eventcalList_item {
  border-color: #ff0;
}
body.is-black .p-eventcalList_item.p-eventcalList_item__sat .p-eventcalList_item_ttl,
body.is-black .p-eventcalList_item.p-eventcalList_item__hol .p-eventcalList_item_ttl {
  color: #ff0;
}

/* Organization */
body.is-black .c-orgTtl01,
body.is-black .c-orgTtl02 {
  border-color: #ff0;
}
body.is-black .c-orgList > li:before {
  background: #ff0;
}

/* Category */
body.is-black .c-newsTtl {
  color: #ff0;
}
body.is-black .c-linkList_child > li:before {
  color: #ff0;
}
body.is-black .c-linkList > li > a {
  border-color: #ff0;
}

/* Side */
body.is-black .c-category_ttl,
body.is-black .c-categoryList > li > a.s5-2::before {
  color: #ff0;
}
body.is-black .c-category,
body.is-black .c-easysearch {
  background: #000;
  border: 1px solid #ff0;
}
body.is-black .c-categoryList,
body.is-black .c-categoryList > li:not(:first-of-type) {
  border-color: #ff0;
}

/* Module */
body.is-black .c-secTtl02,
body.is-black .c-secTtl03,
body.is-black .c-secTtl04 {
  border-color: #ff0;
}
body.is-black .c-secTtl03::before {
  background: #ff0;
}
body.is-black .c-secTtl03::after {
  background: #000;
}
body.is-black .c-secTtl05 {
  color: #ff0;
}
body.is-black .c-enclosureTxt {
  background: #000;
  border: 1px solid #ff0;
}
body.is-black .c-simpleList > li:before {
  background: #ff0;
}
body.is-black .c-numList > li:before {
  background: #000;
  border: 1px solid #ff0;
  color: #ff0;
}
body.is-black .c-fileList > li a:before {
  background-image: url(/assets/images/common/i_other_bk.svg);
}
body.is-black .c-fileList li a[href$=".pdf"]:before {
  background-image: url(/assets/images/common/i_pdf_bk.svg);
}
body.is-black .c-fileList li a[href$=".xls"]:before,
body.is-black .c-fileList li a[href$=".xlsx"]:before {
  background-image: url(/assets/images/common/i_xlsx_bk.svg);
}
body.is-black .c-fileList li a[href$=".doc"]:before,
body.is-black .c-fileList li a[href$=".docx"]:before {
  background-image: url(/assets/images/common/i_docx_bk.svg);
}
body.is-black .c-btnList > li a {
  border-color: #ff0;
}
body.is-black .c-btnList > li a:hover {
  background: #ff0;
  color: #000;
}
body.is-black .c-def dt {
  color: #ff0;
}
body.is-black .c-def dt:before {
  border-color: #ff0;
}
body.is-black .c-defTable dl {
  border-color: #ff0;
}
body.is-black .c-defTable dl dt {
  background: #ff0;
  color: #000;
}
body.is-black .c-hr {
  border-color: #ff0;
}
body.is-black .c-table tr,
body.is-black .c-table th,
body.is-black .c-table td {
  border-color: #ff0;
}
body.is-black .c-table th {
  background: none;
}
body.is-black .slick-dots li button:before,
body.is-black .slick-dots li.slick-active button:before {
  color: #ff0;
}
body.is-black .c-form input[type="text"],
body.is-black .c-form select,
body.is-black .c-form textarea {
  background: #000;
  border-color: #ff0;
}
body.is-black .c-form_table,
body.is-black .c-form_table dl {
  border-color: #ff0;
}
body.is-black .c-form .zipWrap .zip-search {
  background: #ff0;
  border-color: #ff0;
  color: #000;
}
body.is-black .c-inputList > li label:before {
  background: #000;
  border-color: #ff0;
}
body.is-black .c-inputList > li input[type="checkbox"]:checked + label:after {
  border-color: #ff0;
}
body.is-black .c-inputList > li input[type="radio"]:checked + label:after {
  background: #ff0;
}
body.is-black .c-form_btn_item .c-btn03 {
  border-color: #ff0;
}
body.is-black .c-form_btn_item .c-btn03:hover {
  background: #ff0;
  color: #000;
}

/* Signature */
body.is-black .c-signature {
  background: #000;
  border: 1px solid #ff0;
}
body.is-black .c-signature_head {
  border-color: #ff0;
  color: #ff0;
}

/* 404 */
body.is-black .c-notfound_btn {
  border-color: #ff0;
}
body.is-black .c-notfound_btn:hover {
  background: #ff0;
  color: #000;
}

/* Faq */
body.is-black .c-questionTtl_ttl {
  color: #ff0;
}
body.is-black .c-questionTtl_rel {
  border-color: #ff0;
  color: #ff0;
}
body.is-black .c-faqTable dl {
  background: #000;
  border: 1px solid #ff0;
}
body.is-black .c-faqTable dl dt {
  color: #ff0;
}
body.is-black .c-faqPanel_ttl {
  border-color: #ff0;
}
body.is-black .c-faq_form input {
  background: #000;
  border: 1px solid #ff0;
  color: #ff0;
}
body.is-black .c-faq_form button {
  background: #ff0;
  color: #000;
}

/* 240112追記 */
body.is-black .p-topInfo_link__st li a {
  background: transparent;
  border: 1px solid #ff0;
}
