@charset "UTF-8";
@keyframes loop {
  0% {
    transform: translateY(-100%);
  }
  6% {
    transform: translateY(0);
  }
  94% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
.clearfix:after,
.cf:after {
  content: "";
  clear: both;
  display: block;
}

a {
  color: #00c;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.hover_fade {
  transition: 0.3s;
}
.hover_fade:hover {
  opacity: 0.6;
  text-decoration: none;
}

.fa, .fas {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.indent {
  text-indent: 1em;
  margin-left: -1em;
}

.unindent {
  text-indent: -1em;
  margin-left: 1em;
}

.lmargin {
  margin-left: 1em;
}

.txt_umargin2 {
  margin-bottom: 2em !important;
}

.txt_umargin4 {
  margin-bottom: 4em !important;
}

.txt_umargin6 {
  margin-bottom: 6em !important;
}

.mark_yellow {
  background: linear-gradient(0deg, rgba(255, 255, 0, 0.7) 0%, rgba(255, 255, 0, 0.2) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}

.mark_orange {
  background: linear-gradient(0deg, rgba(255, 165, 0, 0.7) 0%, rgba(255, 165, 0, 0.2) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}

.mark_blue {
  background: linear-gradient(0deg, rgba(102, 255, 255, 0.7) 0%, rgba(102, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
}

.red {
  color: rgb(229, 0, 1);
}

.blue {
  color: #0B66AD;
}

.loop {
  overflow: hidden;
}
.loop img {
  width: 100%;
  height: 100%;
  animation: loop 8s linear infinite;
}

.inview,
.inviewfadeIn,
.inviewfadeInUp {
  opacity: 0;
  transition: 0.3s;
}

.inview.animated,
.inviewfadeIn.animated,
.inviewfadeInUp.animated {
  opacity: 1;
}

ul.link_lists li {
  font-weight: bold;
}
ul.link_lists li a {
  text-decoration: none;
  transition: 0.3s;
}

.news_lists,
.header_news_lists {
  line-height: 1.2;
}
.news_lists span:after,
.header_news_lists span:after {
  display: inline-block;
  width: 3em;
  height: 1em;
  font-size: 1.2rem;
  text-align: center;
  color: rgb(255, 255, 255);
  margin-right: 0.5em;
  padding-top: 0.3em;
  padding-bottom: 0.4em;
}
.news_lists .new:after,
.header_news_lists .new:after {
  background-color: rgb(229, 0, 1);
  content: "新 着";
}
.news_lists .chu:after,
.header_news_lists .chu:after {
  background-color: #e78512;
  content: "注 目";
}
.news_lists .sui:after,
.header_news_lists .sui:after {
  background-color: #1c96d5;
  content: "推 奨";
}
.news_lists .tai:after,
.header_news_lists .tai:after {
  width: 4em;
  background-color: rgb(229, 0, 1);
  content: "対 策 中";
}
.news_lists .kok:after,
.header_news_lists .kok:after {
  background-color: rgb(229, 0, 1);
  content: "告 知";
}

#nav-tgl {
  display: none;
}

@media (max-width: 559px) {
  .nav-tgl-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.5);
    width: 36px;
    height: 36px;
    padding: 4px;
    vertical-align: middle;
    cursor: pointer;
    z-index: 9999;
  }
  .toggle {
    font-size: 0.8rem;
    color: rgb(229, 0, 1);
  }
  .toggle span, .toggle span:before, .toggle span:after {
    position: absolute;
    background-color: rgb(229, 0, 1);
    height: 4px; /*線の太さ*/
    width: 36px; /*長さ*/
    border-radius: 4px;
    display: block;
    content: "";
    transition: 0.3s ease-in-out; /*滑らかに表示*/
  }
  .toggle span:before {
    bottom: -12px;
  }
  .toggle span:after {
    bottom: -24px;
  }
  .drower-menu-wrap {
    overflow: auto;
    display: flex;
    flex-flow: row-reverse wrap;
    align-items: flex-start;
    align-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999; /*最前面に*/
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease-in-out; /*滑らかに表示*/
    transform: translateY(-120%);
  }
  .drower-menu-wrap .drower-menu {
    width: 100%;
    text-align: left;
  }
  .drower-menu-wrap .drower-menu a li {
    text-decoration: none;
    margin-bottom: 10px;
    opacity: 1;
    transition: 0.3s;
  }
  .drower-menu-wrap .drower-menu a li:hover {
    opacity: 0.5;
  }
  .drower-menu-wrap #drower-menu-top,
  .drower-menu-wrap #drower-menu-sns {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .drower-menu-wrap #drower-menu-top .drower-menu-top-list,
  .drower-menu-wrap #drower-menu-sns .drower-menu-top-list {
    height: 54px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    padding-top: calc(27px - 0.9rem);
    box-sizing: border-box;
  }
  .drower-menu-wrap #drower-menu-top {
    margin-top: 64px;
  }
  .drower-menu-wrap #drower-menu-top .drower-menu-siryo {
    color: rgb(255, 255, 255);
    background-color: rgb(229, 0, 1);
  }
  .drower-menu-wrap #drower-menu-top .drower-menu-taiken {
    color: rgb(0, 0, 0);
    background-color: rgb(244, 207, 65);
  }
  .drower-menu-wrap #drower-menu-top .drower-menu-sodan {
    color: rgb(0, 0, 0);
    background-color: rgb(244, 207, 65);
  }
  .drower-menu-wrap #drower-menu-sns .drower-menu-x {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
  }
  .drower-menu-wrap #drower-menu-sns .drower-menu-instagram {
    color: rgb(255, 255, 255);
    background-color: rgb(207, 46, 146);
  }
  .drower-menu-wrap #drower-menu-sns .drower-menu-line {
    color: rgb(255, 255, 255);
    background-color: rgb(6, 199, 85);
  }
  .drower-menu-wrap #drower-menu-bottom .drower-menu-bottom-list {
    color: rgb(229, 0, 1);
    background-color: rgb(255, 255, 255);
    text-align: center;
    font-weight: bold;
    padding: 13px 0;
  }
  #nav-tgl:checked ~ .toggle span {
    background-color: rgba(255, 255, 255, 0);
  }
  #nav-tgl:checked ~ .toggle span:before, #nav-tgl:checked ~ .toggle span:after {
    background-color: rgb(229, 0, 1);
    bottom: -10px;
  }
  #nav-tgl:checked ~ .toggle span:before {
    transform: rotate(-45deg);
  }
  #nav-tgl:checked ~ .toggle span:after {
    transform: rotate(45deg);
  }
  #nav-tgl:checked ~ .drower-menu-wrap {
    transform: translateY(0%);
    box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 560px) {
  .toggle,
  .drower-menu-wrap {
    display: none;
  }
}
body {
  background: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body header #header_link #header_link_lists .link_list a {
  font-weight: bold;
  color: rgb(229, 0, 1);
  background-image: linear-gradient(to bottom, rgb(229, 0, 1) 50%, rgba(229, 0, 1, 0) 50%);
  background-position: 0 100%;
  background-size: auto 200%;
  transition: 0.3s;
}
body header #header_link #header_link_lists .link_list a:hover, body header #header_link #header_link_lists .link_list a:active {
  color: #FFF;
  text-decoration: none;
  background-position: 0 0;
}
body #bottom_link #bottom_link_lists a {
  color: #FFF;
  background-position: 0 100%;
  background-size: auto 200%;
}
body #bottom_link #bottom_link_lists a:hover, body #bottom_link #bottom_link_lists a:active {
  background-position: 0 0;
}
body #bottom_link #bottom_link_lists #ask_member {
  background-image: linear-gradient(to bottom, rgba(229, 0, 1, 0.2) 50%, rgb(229, 0, 1) 50%);
}
body #bottom_link #bottom_link_lists #ask_member:hover, body #bottom_link #bottom_link_lists #ask_member:active {
  color: rgb(229, 0, 1);
}
body #bottom_link #bottom_link_lists #ask_task {
  background-image: linear-gradient(to bottom, rgba(91, 172, 52, 0.2) 50%, rgb(91, 172, 52) 50%);
}
body #bottom_link #bottom_link_lists #ask_task:hover, body #bottom_link #bottom_link_lists #ask_task:active {
  color: rgb(91, 172, 52);
}
body #bottom_link #bottom_link_lists #ask_channel {
  background-image: linear-gradient(to bottom, rgba(11, 102, 173, 0.2) 50%, rgb(11, 102, 173) 50%);
}
body #bottom_link #bottom_link_lists #ask_channel:hover, body #bottom_link #bottom_link_lists #ask_channel:active {
  color: rgb(11, 102, 173);
}
body footer {
  background-color: rgb(73, 67, 66);
  color: rgb(255, 255, 255);
  font-size: 1.4rem;
}
@media (max-width: 559px) {
  body footer {
    font-size: 1.6rem;
  }
}
body footer a {
  color: rgb(255, 255, 255);
  transition: 0.3s;
}
body footer a:hover, body footer a:active {
  color: rgb(208, 208, 208);
}
body footer #footer_link_wrap .footer_link_inner h3:before {
  font-family: "Font Awesome 5 Free";
  content: "\f45c";
  font-weight: solid;
  margin-right: 10px;
}
body footer #footer_link_wrap .footer_link_inner li {
  line-height: 2;
  text-indent: -1.5rem;
  margin-left: 1.5rem;
}
@media (max-width: 559px) {
  body footer #footer_link_wrap .footer_link_inner li {
    padding: 7px 0;
  }
}
@media (min-width: 960px) {
  body footer #footer_link_wrap .footer_link_inner li {
    line-height: 1.5;
    padding: 3px 0;
  }
}
body footer #footer_link_wrap .footer_link_inner li:before {
  content: "・";
}
body footer #footer_link_wrap .footer_link_inner li.footer_link_list_square:before {
  content: "◆ ";
}
body footer #footer_bottom {
  background-color: rgb(53, 47, 45);
}

html {
  font-size: 62.5%;
}
html body {
  width: 100%;
  font-size: 1.6em;
}
html body .header_button {
  display: flex;
  top: 10px;
  right: 10px;
  width: 212px;
  height: 44px;
}
html body .header_button a {
  display: block;
  width: 44px;
  height: 44px;
  margin-left: 12px;
}
html body .header_button a:first-child {
  margin-left: 0;
}
html body .header_button a img {
  width: 100%;
  height: 100%;
}
@media (max-width: 559px) {
  html body .header_button {
    position: fixed;
    width: 100px;
  }
  html body .header_button .header_buttons {
    display: none;
  }
  html body .header_button a {
    margin-left: 0;
  }
}
@media (min-width: 560px) {
  html body .header_button {
    position: absolute;
  }
}
@media (min-width: 960px) {
  html body .header_button {
    top: 25px;
    right: 25px;
  }
}
html body .link_lists_header {
  width: 100%;
  max-width: 960px;
  margin: 10px auto;
}
@media (min-width: 560px) {
  html body .link_lists_header {
    height: calc(1.6rem + 28px);
  }
}
html body .link_lists_header .link_list {
  display: block;
  text-align: center;
  box-sizing: border-box;
}
@media (min-width: 960px) {
  html body .link_lists_header .link_list {
    float: left;
    width: 16.6%;
  }
}
@media (min-width: 560px) and (max-width: 959px) {
  html body .link_lists_header .link_list {
    float: left;
    width: 33.3%;
    margin-bottom: 10px;
  }
  html body .link_lists_header .link_list:first-child, html body .link_lists_header .link_list:nth-child(4) {
    margin-left: 0;
  }
}
@media (max-width: 559px) {
  html body .link_lists_header .link_list {
    width: 100%;
    margin-bottom: 10px;
  }
}
html body .link_lists_header .link_list a {
  display: block;
  width: 100%;
  height: auto;
  padding: 14px 0;
}
html body ul.link_lists {
  width: 100%;
  max-width: 960px;
  margin: 10px auto;
}
@media (min-width: 560px) {
  html body ul.link_lists {
    height: calc(1.6rem + 28px);
  }
}
html body ul.link_lists li {
  display: block;
  text-align: center;
  box-sizing: border-box;
}
@media (min-width: 560px) {
  html body ul.link_lists li {
    float: left;
    width: calc(33% - 11px);
    margin-left: 18px;
  }
  html body ul.link_lists li:first-child {
    margin-left: 0;
  }
}
@media (max-width: 559px) {
  html body ul.link_lists li {
    width: 100%;
    margin-bottom: 10px;
  }
}
html body ul.link_lists li a {
  display: block;
  width: 100%;
  height: auto;
  padding: 14px 0;
}
html body .header_news_lists dt {
  float: left;
  clear: left;
  width: 50px;
}
html body .header_news_lists dd {
  padding-left: 60px;
}
html body .news_lists dt {
  float: left;
  clear: left;
  width: 110px;
}
html body .news_lists dd {
  padding-left: 120px;
}
html body header {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  padding: 10px 10px 0;
}
@media (min-width: 960px) {
  html body header {
    margin-bottom: 20px;
    padding-top: 25px;
  }
}
html body header h1 {
  display: block;
  width: calc(100% - 120px);
  max-width: 278px;
  height: 44px;
  margin-bottom: 10px;
}
html body header h1 img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  html body header h1 {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 560px) and (max-width: 959px) {
  html body header h1 {
    margin-left: 0;
  }
}
@media (max-width: 559px) {
  html body header h1 {
    margin-left: 10px;
  }
}
html body header #header_link {
  margin-bottom: 10px;
}
@media (max-width: 559px) {
  html body header #header_link {
    display: none;
  }
}
@media (min-width: 960px) {
  html body header #header_link {
    margin-bottom: 20px;
  }
}
html body header #header_news {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
html body #path {
  display: none;
}
@media (min-width: 560px) {
  html body #bottom_link {
    margin-bottom: 20px;
  }
}
@media (max-width: 559px) {
  html body #bottom_link {
    margin-bottom: 10px;
  }
}
html body footer {
  position: relative;
  margin-top: 30px;
  padding: 10px 0 360px;
}
html body footer #footer_sns {
  position: absolute;
  top: 10px;
  right: 25px;
  width: 162px;
}
@media (max-width: 559px) {
  html body footer #footer_sns {
    right: 12px;
  }
}
html body footer #footer_sns #footer_sns_links li {
  float: right;
  width: 42px;
  height: 42px;
  margin-left: 12px;
}
html body footer #footer_sns #footer_sns_links li img {
  width: 100%;
  height: 100%;
}
html body footer #footer_link_wrap {
  display: flex;
  flex-wrap: wrap;
  padding-top: 56px;
}
@media (min-width: 960px) {
  html body footer #footer_link_wrap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  html body footer #footer_link_wrap .footer_link_inner {
    width: 20%;
  }
  html body footer #footer_link_wrap .footer_link_inner h3 {
    margin-bottom: 10px;
  }
  html body footer #footer_link_wrap .footer_link_inner .footer_link_lists {
    margin-bottom: 15px;
  }
}
@media (min-width: 560px) and (max-width: 959px) {
  html body footer #footer_link_wrap {
    width: 100%;
  }
  html body footer #footer_link_wrap .footer_link_inner {
    width: 35%;
    margin-left: 15%;
    margin-bottom: 20px;
  }
  html body footer #footer_link_wrap .footer_link_inner h3 {
    margin-bottom: 10px;
  }
  html body footer #footer_link_wrap .footer_link_inner .footer_link_lists {
    margin-bottom: 20px;
  }
}
@media (max-width: 559px) {
  html body footer #footer_link_wrap {
    width: 100%;
  }
  html body footer #footer_link_wrap .footer_link_inner {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.5);
  }
  html body footer #footer_link_wrap .footer_link_inner h3 {
    margin-bottom: 10px;
  }
  html body footer #footer_link_wrap .footer_link_inner .footer_link_lists {
    margin-bottom: 20px;
  }
}
@media (max-width: 559px) {
  html body footer #footer_link_wrap .footer_link_inner_left {
    text-align: left !important;
    width: 230px;
    margin: 0 auto 25px;
  }
  html body footer #footer_link_wrap .footer_link_inner_left li {
    line-height: 1.2 !important;
    padding: 10px 0;
  }
}
html body footer #footer_bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  padding: 60px 0;
}
html body footer #footer_bottom #footer_bottom_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 30px;
}
@media (min-width: 960px) {
  html body footer #footer_bottom #footer_bottom_wrap {
    width: 98%;
    max-width: 941px;
    padding-left: 2%;
  }
  html body footer #footer_bottom #footer_bottom_wrap #footer_bottom_inner_inq {
    width: 80%;
  }
  html body footer #footer_bottom #footer_bottom_wrap #footer_bottom_inner_siryo {
    width: 20%;
  }
  html body footer #footer_bottom #footer_bottom_wrap .footer_bottom_inner {
    text-align: left;
  }
}
@media (min-width: 560px) and (max-width: 959px) {
  html body footer #footer_bottom #footer_bottom_wrap .footer_bottom_inner {
    width: 35%;
    margin-left: 15%;
    text-align: left;
  }
}
@media (max-width: 559px) {
  html body footer #footer_bottom #footer_bottom_wrap .footer_bottom_inner {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
}