@charset "UTF-8";
html {
  font-family: "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro W4", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif !important;
  width: 100%;
  height: 100%;
}

body {
  font-family: "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro W4", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif !important;
  width: 100%;
  height: 100%;
  font-size: 16px !important;
  margin: 0 auto;
  padding: 0;
  color: #666666;
  line-height: 1.4;
  word-wrap: break-word;
  font-family: fot-seurat-pron, sans-serif !important;
  font-weight: 600;
  font-style: normal !important;
}

h1,
h2,
h3,
h4,
h5,
p,
a,
li,
div {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  font-weight: normal;
}

.padd_0 {
  padding: 0 !important;
}

.marg_0 {
  margin: 0 !important;
}

.marg_auto {
  margin: 0 auto !important;
}

.font_b {
  font-weight: bold;
}

.line_h_1 {
  line-height: 1;
}

.display_b {
  display: block;
}

.display_inb {
  display: inline-block;
}

.align_c {
  text-align: center;
}

.align_r {
  text-align: right;
}

.align_l {
  text-align: left;
}

.c_red {
  color: #ff0000;
}

.position_r {
  position: relative;
}

.divide10 {
  display: block;
  width: 100%;
  height: 10px;
}

.divide15 {
  display: block;
  width: 100%;
  height: 15px;
}

.divide20 {
  display: block;
  width: 100%;
  height: 20px;
}

.divide25 {
  display: block;
  width: 100%;
  height: 25px;
}

.divide30 {
  display: block;
  width: 100%;
  height: 30px;
}

.divide50 {
  display: block;
  width: 100%;
  height: 50px;
}

.divide60 {
  display: block;
  width: 100%;
  height: 60px;
}

header__logo_img {
  padding: 17px 0 17px 42ox;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.style_disc {
  list-style-type: disc;
  padding-left: 2.5rem;
}
ul.style_decimal {
  list-style-type: decimal;
  padding-left: 2.5rem;
}
ul.style_lower_alpha {
  list-style-type: lower-alpha;
  padding-left: 2.5rem;
}

button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: none;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
button.btn_icon {
  color: #666666;
}
button.btn_icon:hover {
  transform: scale(1.3);
}

.button-off {
  opacity: 0.4;
  pointer-events: none;
}

.flex_box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex_align_start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex_align_stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex_align_center {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex_align_end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex_space_between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: justify;
}

.flex_content_center {
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.flex_content_end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: end;
}

.flex_content_around {
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -ms-flex-pack: distribute;
}

.flex_container_wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.flex_direction_column {
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
}

#root {
  height: 100%;
}
#root .App {
  height: 100%;
}

/* loading */
.loading_wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: auto;
}

.loadingBody {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  opacity: 1;
  transition: all 0.5s;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: rgba(0, 0, 0, 0.6);
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}
.loadingBody .loading-container,
.loadingBody .loading {
  height: 200px;
  position: relative;
  width: 200px;
  border-radius: 100%;
}
.loadingBody .loading {
  box-sizing: border-box;
  border: 12px solid transparent;
  border-color: transparent #fff transparent #fff;
  -moz-animation: rotate-loading 1.5s linear 0s infinite normal;
  -moz-transform-origin: 50% 50%;
  -o-animation: rotate-loading 1.5s linear 0s infinite normal;
  -o-transform-origin: 50% 50%;
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}
.loadingBody .loading-container:hover .loading,
.loadingBody .loading-container .loading {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.loadingBody #loading-text {
  color: #ffffff;
  font-size: 21px;
  font-weight: bold;
  margin-top: 85px;
  letter-spacing: 1px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 200px;
}
.loadingBody #loading-text > span {
  display: inline-block;
  margin: 0 -0.075em;
  animation: loading 0.7s infinite alternate;
}
.loadingBody #loading-text > span :nth-child(2) {
  animation-delay: 0.1s;
}
.loadingBody #loading-text > span :nth-child(3) {
  animation-delay: 0.2s;
}
.loadingBody #loading-text > span :nth-child(4) {
  animation-delay: 0.3s;
}
.loadingBody #loading-text > span :nth-child(5) {
  animation-delay: 0.4s;
}
.loadingBody #loading-text > span :nth-child(6) {
  animation-delay: 0.5s;
}
.loadingBody #loading-text > span :nth-child(7) {
  animation-delay: 0.6s;
}
@keyframes loading {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}

#header_web {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 479px) {
  #header_web {
    padding: 8px 0;
  }
}
#header_web .logo_img {
  height: 100%;
  cursor: pointer;
  width: calc(100% / 3);
}
#header_web .logo_img a {
  display: block;
  outline: none;
}
#header_web .logo_img a img {
  margin-left: 25px;
}
@media screen and (max-width: 768px) {
  #header_web .logo_img a {
    text-align: center;
  }
  #header_web .logo_img a img {
    margin-left: 0;
    height: 52px;
  }
}
@media screen and (max-width: 479px) {
  #header_web .logo_img {
    width: 100%;
  }
  #header_web .logo_img a {
    text-align: center;
  }
  #header_web .logo_img a img {
    margin-left: 0;
    height: 58px;
  }
}
#header_web .clock {
  height: 100%;
  display: table;
  width: calc(100% / 3);
}
#header_web .clock__contents {
  display: table-cell;
  text-align: center;
  font-weight: bold;
  margin: auto;
  vertical-align: middle;
}
#header_web .clock__contents #time {
  font-size: 48px;
}
#header_web .clock__contents #date {
  font-size: 24px;
  color: #fd3868;
}
#header_web .clock__contents #today {
  font-size: 24px;
  color: #fd3868;
  cursor: pointer;
}
#header_web .clock__contents #today:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  #header_web .clock__contents {
    text-align: center;
  }
  #header_web .clock__contents #time {
    font-size: 26px;
  }
  #header_web .clock__contents #date,
#header_web .clock__contents #today {
    font-size: 13px;
  }
}
@media screen and (max-width: 479px) {
  #header_web .clock {
    width: 50%;
  }
}
#header_web .weather {
  padding-right: 25px;
  width: calc(100% / 3);
}
#header_web .weather__contents {
  margin-left: auto;
  display: table;
}
#header_web .weather__contents__left {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}
#header_web .weather__contents__left #ondo {
  font-size: 30px;
  display: inline-block;
}
#header_web .weather__contents__left #tenki {
  font-size: 30px;
  display: inline-block;
}
#header_web .weather__contents__left #location {
  font-size: 20px;
  margin-bottom: 5px;
}
#header_web .weather__contents__right {
  width: 128px;
  display: table-cell;
  vertical-align: middle;
}
#header_web .weather__contents__right #icon {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #header_web .weather {
    padding-right: 0;
  }
  #header_web .weather__contents {
    width: 100%;
  }
  #header_web .weather__contents__left {
    width: 60%;
    max-width: 96px;
  }
  #header_web .weather__contents__left #ondo {
    font-size: 16px;
  }
  #header_web .weather__contents__left #tenki {
    font-size: 16px;
  }
  #header_web .weather__contents__left #location {
    font-size: 12px;
    margin-bottom: 0px;
  }
  #header_web .weather__contents__left a#logout {
    font-size: 12px;
  }
  #header_web .weather__contents__right {
    width: 40%;
    padding: 0 12px;
  }
}
@media screen and (max-width: 479px) {
  #header_web .weather {
    width: 50%;
    padding-right: 0;
  }
  #header_web .weather__contents {
    width: 100%;
  }
  #header_web .weather__contents__left {
    width: 60%;
    max-width: 110px;
  }
  #header_web .weather__contents__left #ondo {
    font-size: 14px;
  }
  #header_web .weather__contents__left #tenki {
    font-size: 14px;
  }
  #header_web .weather__contents__left #location {
    font-size: 10px;
  }
  #header_web .weather__contents__left a#logout {
    font-size: 10px;
  }
}

.header_alt {
  padding: 0 2.7%;
}
.header_alt__contents {
  width: 100%;
  height: 100%;
  border-top: dashed 1px #e84437;
  border-bottom: dashed 1px #e84437;
  font-size: 16px;
}
.header_alt__contents a {
  text-decoration: none;
  outline: none;
  font-weight: bold;
  color: inherit;
}
.header_alt__contents a:hover {
  color: #439cef;
}
.header_alt__contents__news {
  padding: 9px 18px;
  display: flex;
  align-items: center;
}
.header_alt__contents__news__left {
  width: 50%;
  text-align: left;
}
.header_alt__contents__news__right {
  width: 50%;
  text-align: right;
}
.header_alt__contents__news img {
  height: 40px;
  width: auto;
}
.header_alt__contents__controller {
  padding: 8px 18px 11px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header_alt__contents__controller__title {
  font-size: 32px;
  line-height: 50px;
}
.header_alt__contents__controller__backBtn {
  border: 1px solid #346eeb;
  border-radius: 4px;
  color: #ffffff;
  background-color: #346eeb;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 3px 3px #144499;
  cursor: pointer;
  outline: none;
  width: 120px;
  height: 50px;
  font-size: 28px;
  margin-left: auto;
}
.header_alt__contents__controller__backBtn:hover {
  opacity: 0.6;
}
.header_alt__contents__controller__backBtn a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 48px;
  text-align: center;
}
.header_alt__contents__controller__backBtn a:hover {
  color: inherit;
}

.main_web {
  padding: 0 2.7%;
  overflow: auto;
  vertical-align: middle;
}

#footer_web {
  height: 60px;
}

.news_ticker {
  overflow: hidden;
  white-space: nowrap;
  height: 100%;
}

.news_ticker img {
  height: 50px;
}

.news_ticker ul {
  height: 100%;
  display: inline-block;
  min-width: 2550px;
}

.news_ticker li {
  display: inline-block;
}

.news_ticker ul:first-child {
  animation: scroll_A 100s -50s linear infinite;
}

.news_ticker ul:last-child {
  animation: scroll_B 100s linear infinite;
}

@keyframes scroll_A {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes scroll_B {
  0% {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-200%);
  }
}
.home_web__contents {
  width: auto;
  max-width: 1119px;
  padding: 20px 0;
  margin: auto;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  align-items: flex-start;
}
.home_web__contents__menu {
  width: 200px;
  max-width: 100%;
}
.home_web__contents__menu__content {
  display: block;
  outline: none;
  text-align: center;
}
.kondate .home_web__contents__menu__content__img {
  background-color: #e64a19;
}
.home_web__contents__menu__content__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home_web__contents__menu__content__text {
  margin-top: 5px;
  text-align: center;
}
.home_web__contents__menu__content__text span {
  font-size: 27px;
  color: #000000;
}
.home_web__contents__menu.staff {
  border: 1px solid #c50f32;
  border-radius: 10px;
  color: #ffffff;
  background-color: #c50f32;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #9e0c28;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.staff:hover {
  opacity: 0.6;
}
.home_web__contents__menu.staff img {
  margin-top: 12px;
}
.home_web__contents__menu.market {
  border: 1px solid #f6bf00;
  border-radius: 10px;
  color: #ffffff;
  background-color: #f6bf00;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #c59900;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.market:hover {
  opacity: 0.6;
}
.home_web__contents__menu.market img {
  margin-top: 4px;
}
.home_web__contents__menu.classroom {
  border: 1px solid #008a98;
  border-radius: 10px;
  color: #ffffff;
  background-color: #008a98;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #006e7a;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.classroom:hover {
  opacity: 0.6;
}
.home_web__contents__menu.classroom img {
  margin-top: 6px;
}
.home_web__contents__menu.nagoyaka-taisou {
  border: 1px solid #00afcc;
  border-radius: 10px;
  color: #ffffff;
  background-color: #00afcc;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #0880a7;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.nagoyaka-taisou:hover {
  opacity: 0.6;
}
.home_web__contents__menu.game {
  border: 1px solid #368821;
  border-radius: 10px;
  color: #ffffff;
  background-color: #368821;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #2b6d1a;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.game:hover {
  opacity: 0.6;
}
.home_web__contents__menu.game img {
  margin-top: 13px;
}
.home_web__contents__menu.training {
  border: 1px solid #9cc813;
  border-radius: 10px;
  color: #ffffff;
  background-color: #9cc813;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #7c9f0f;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.training:hover {
  opacity: 0.6;
}
.home_web__contents__menu.training img {
  margin-top: 2px;
}
.home_web__contents__menu.topics {
  border: 1px solid #0370b5;
  border-radius: 10px;
  color: #ffffff;
  background-color: #0370b5;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #035a91;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.topics:hover {
  opacity: 0.6;
}
.home_web__contents__menu.topics img {
  margin-top: 6px;
}
.home_web__contents__menu.radio-taisou {
  border: 1px solid #ec6d47;
  border-radius: 10px;
  color: #ffffff;
  background-color: #ec6d47;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #bd5739;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.radio-taisou:hover {
  opacity: 0.6;
}
.home_web__contents__menu.radio-taisou img {
  margin-top: 3px;
}
.home_web__contents__menu.movie {
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.movie:hover {
  opacity: 0.6;
}
.home_web__contents__menu.movie img {
  margin-top: 6px;
}
.home_web__contents__menu.calender {
  border: 1px solid #e849a4;
  border-radius: 10px;
  color: #ffffff;
  background-color: #e849a4;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #ba3a83;
  cursor: pointer;
  outline: none;
}
.home_web__contents__menu.calender:hover {
  opacity: 0.6;
}
.home_web__contents__menu.calender img {
  margin-top: 6px;
}
.home_web__contents__menu.calender span {
  font-size: 24px;
}
.home_web__contents__menu.dummy {
  height: 0;
}

.c__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.c__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border-radius: 10px;
}
.c__contents__menu img {
  width: 70px;
  margin: 0 10px;
}
.c__contents__menu span {
  display: inline-block;
  color: #ffffff;
  font-size: 24px;
  margin: 0 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
  text-overflow: ellipsis;
}
.c__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .c__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .c__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .c__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.nagoyaka__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.nagoyaka__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 110px;
  margin: 10px;
  border: 1px solid #00afcc;
  border-radius: 10px;
  color: #ffffff;
  background-color: #00afcc;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #0880a7;
  cursor: pointer;
  outline: none;
}
.nagoyaka__contents__menu:hover {
  opacity: 0.6;
}
.nagoyaka__contents__menu img {
  margin: 0 10px;
}
.nagoyaka__contents__menu span {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  margin: 0 5px 0 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
  text-overflow: ellipsis;
}
.nagoyaka__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nagoyaka__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1500px) {
  .nagoyaka__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .nagoyaka__contents__menu {
    width: calc((100% / 2) - 20px);
  }
  .nagoyaka__contents__menu span {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .nagoyaka__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.kondate__contents {
  margin: auto;
}
.kondate__contents__wrapper #clndr .clndr .clndr-controls {
  display: table;
  width: 100%;
  margin-bottom: 13px;
}
.kondate__contents__wrapper #clndr .clndr .clndr-controls .clndr-control-button {
  display: none;
}
.kondate__contents__wrapper #clndr .clndr .clndr-controls .month {
  display: table-cell;
  font-size: 28px;
  vertical-align: middle;
}
.kondate__contents__wrapper #clndr .clndr .clndr-controls .super-washoku-wrapper {
  display: table-cell;
}
.kondate__contents__wrapper #clndr .clndr .clndr-controls .super-washoku-wrapper .super-washoku-button {
  border: 1px solid #ec6d47;
  border-radius: 4px;
  color: #ffffff;
  background-color: #ec6d47;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 3px 3px #bd5739;
  cursor: pointer;
  outline: none;
  width: 360px;
  height: 50px;
  margin-left: auto;
  font-size: 28px;
  line-height: 50px;
  text-align: center;
}
.kondate__contents__wrapper #clndr .clndr .clndr-controls .super-washoku-wrapper .super-washoku-button:hover {
  opacity: 0.6;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table {
  border: solid 1px #cccccc;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table thead .header-days > .header-day {
  border: solid 1px #cccccc;
  height: 64px;
  padding: 5px;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table thead .header-days > .header-day > .day-inner {
  height: 100%;
  background: rgba(52, 110, 235, 0.1);
  text-align: center;
  line-height: 54px;
  font-size: 26px;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr {
  height: 64px;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day {
  border: solid 1px #cccccc;
  width: 121px;
  font-size: 28px;
  text-align: center;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day.calendar-dow-0 {
  color: #eb6e8f;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day.calendar-dow-6 {
  color: #346eeb;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day.last-month, .kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day.next-month {
  pointer-events: none;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day.last-month > .day-contents, .kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day.next-month > .day-contents {
  display: none;
}
.kondate__contents__wrapper #clndr .clndr .clndr-table tbody tr .day:hover {
  background: rgba(204, 204, 204, 0.3);
  cursor: pointer;
}
.kondate__contents__modal {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.kondate__contents__modal__content {
  background-color: white;
  height: 700px;
  width: 1118px;
  max-width: 90%;
  border-radius: 12px;
  padding: 10px 22px;
  transform-origin: 50% 50%;
}
.kondate__contents__modal__content__body {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  height: 100%;
}
.kondate__contents__modal__content__body #kondate_img {
  flex: 1;
  transform: scale(0.96);
}
.kondate__contents__modal__content__body__header {
  font-size: 16px;
  display: flex;
}
.kondate__contents__modal__content__body__header i {
  margin-left: auto;
  display: block;
  font-size: 22px;
  cursor: pointer;
}

.login_web__wrapper {
  width: 600px;
  margin: 0 auto;
}
.login_web__wrapper__head {
  padding-top: 24px;
  text-align: center;
}
.login_web__wrapper__body__email, .login_web__wrapper__body__password {
  margin-top: 40px;
  font-size: 26px;
}
.login_web__wrapper__body__email input, .login_web__wrapper__body__password input {
  width: 100%;
  border-radius: 4px;
}
.login_web__wrapper__body__notice {
  text-align: center;
  font-size: 26px;
  margin-top: 40px;
}
.login_web__wrapper__body__checkbox {
  margin-top: 40px;
  font-size: 26px;
}
.login_web__wrapper__body__checkbox .form-check {
  height: 40px;
  line-height: 40px;
  display: flex;
}
.login_web__wrapper__body__checkbox .form-check .form-check-input {
  height: 100%;
  width: 40px;
  border-radius: 4px;
}
.login_web__wrapper__body__checkbox .form-check .form-check-label {
  padding-left: 8px;
}
.login_web__wrapper__body__login_btn button {
  border: 1px solid #00afcc;
  border-radius: 10px;
  color: #ffffff;
  background-color: #00afcc;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #008b99;
  cursor: pointer;
  outline: none;
  margin: 80px auto 0;
  width: 200px;
  height: 70px;
  font-size: 28px;
  line-height: 70px;
  text-align: center;
  transition: none;
}
.login_web__wrapper__body__login_btn button:hover {
  opacity: 0.6;
}

.training__contents,
.topics__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.training__contents__menu,
.topics__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #9cc813;
  border-radius: 10px;
  color: #ffffff;
  background-color: #9cc813;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #7c9f0f;
  cursor: pointer;
  outline: none;
}
.training__contents__menu:hover,
.topics__contents__menu:hover {
  opacity: 0.6;
}
.training__contents__menu span,
.topics__contents__menu span {
  display: inline-block;
  position: absolute;
  padding: 0 20px;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.training__contents__menu a,
.topics__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.training__contents__menu:hover,
.topics__contents__menu:hover {
  opacity: 0.6;
}
.training__contents__menu.youtube,
.topics__contents__menu.youtube {
  border: 1px solid #ff2323;
  border-radius: 10px;
  color: #ffffff;
  background-color: #ff2323;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #c00000;
  cursor: pointer;
  outline: none;
}
.training__contents__menu.youtube:hover,
.topics__contents__menu.youtube:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .training__contents__menu,
.topics__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .training__contents__menu,
.topics__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .training__contents__menu,
.topics__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.classroom__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.classroom__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #008a98;
  border-radius: 10px;
  color: #ffffff;
  background-color: #008a98;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #006e7a;
  cursor: pointer;
  outline: none;
}
.classroom__contents__menu:hover {
  opacity: 0.6;
}
.classroom__contents__menu span {
  display: inline-block;
  position: absolute;
  padding: 0 20px;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.classroom__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.classroom__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .classroom__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .classroom__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .classroom__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.it__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.it__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 3) - 20px);
  height: 90px;
  margin: 10px;
}
.it__contents__menu span {
  display: inline-block;
  position: absolute;
  padding: 0 20px;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.it__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.it__contents__menu:hover {
  opacity: 0.6;
}
.it__contents #it-01 {
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.it__contents #it-01:hover {
  opacity: 0.6;
}
.it__contents #it-02 {
  border: 1px solid #ec6d47;
  border-radius: 10px;
  color: #ffffff;
  background-color: #ec6d47;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #bd5739;
  cursor: pointer;
  outline: none;
}
.it__contents #it-02:hover {
  opacity: 0.6;
}
.it__contents #it-03 {
  border: 1px solid #e849a4;
  border-radius: 10px;
  color: #ffffff;
  background-color: #e849a4;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #ba3a83;
  cursor: pointer;
  outline: none;
}
.it__contents #it-03:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .it__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .it__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.easy__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.easy__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.easy__contents__menu:hover {
  opacity: 0.6;
}
.easy__contents__menu span {
  display: inline-block;
  position: absolute;
  padding: 0 20px;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.easy__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.easy__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .easy__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .easy__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .easy__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.normal__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.normal__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #ec6d47;
  border-radius: 10px;
  color: #ffffff;
  background-color: #ec6d47;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #bd5739;
  cursor: pointer;
  outline: none;
}
.normal__contents__menu:hover {
  opacity: 0.6;
}
.normal__contents__menu span {
  display: inline-block;
  position: absolute;
  padding: 0 20px;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.normal__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.normal__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .normal__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .normal__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .normal__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.hard__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.hard__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #e849a4;
  border-radius: 10px;
  color: #ffffff;
  background-color: #e849a4;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #ba3a83;
  cursor: pointer;
  outline: none;
}
.hard__contents__menu:hover {
  opacity: 0.6;
}
.hard__contents__menu span {
  position: absolute;
  padding: 0 20px;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.hard__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hard__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .hard__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .hard__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .hard__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.search__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.search__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 3) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #008a98;
  border-radius: 10px;
  color: #ffffff;
  background-color: #008a98;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #006e7a;
  cursor: pointer;
  outline: none;
}
.search__contents__menu:hover {
  opacity: 0.6;
}
.search__contents__menu span {
  position: absolute;
  padding: 0 20px;
  color: #ffffff;
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.search__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.search__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .search__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .search__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .search__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.movie__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.movie__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.movie__contents__menu:hover {
  opacity: 0.6;
}
.movie__contents__menu img {
  margin: 0 10px;
}
.movie__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.movie__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.movie__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .movie__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .movie__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .movie__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.cm__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.cm__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.cm__contents__menu:hover {
  opacity: 0.6;
}
.cm__contents__menu img {
  margin: 0 10px;
}
.cm__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 18px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.cm__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cm__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .cm__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .cm__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .cm__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.tv__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.tv__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 2) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.tv__contents__menu:hover {
  opacity: 0.6;
}
.tv__contents__menu img {
  margin: 0 10px;
}
.tv__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.tv__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tv__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .tv__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.entertainer__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.entertainer__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 1) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.entertainer__contents__menu:hover {
  opacity: 0.6;
}
.entertainer__contents__menu img {
  margin: 0 10px;
}
.entertainer__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.entertainer__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.entertainer__contents__menu:hover {
  opacity: 0.6;
}

.song__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.song__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 1) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.song__contents__menu:hover {
  opacity: 0.6;
}
.song__contents__menu img {
  margin: 0 10px;
}
.song__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.song__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.song__contents__menu:hover {
  opacity: 0.6;
}

.tokyo__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.tokyo__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.tokyo__contents__menu:hover {
  opacity: 0.6;
}
.tokyo__contents__menu img {
  margin: 0 10px;
}
.tokyo__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.tokyo__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tokyo__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .tokyo__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .tokyo__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .tokyo__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.osaka__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.osaka__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.osaka__contents__menu:hover {
  opacity: 0.6;
}
.osaka__contents__menu img {
  margin: 0 10px;
}
.osaka__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.osaka__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.osaka__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .osaka__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .osaka__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .osaka__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.nagoya__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.nagoya__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #30a741;
  border-radius: 10px;
  color: #ffffff;
  background-color: #30a741;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #268634;
  cursor: pointer;
  outline: none;
}
.nagoya__contents__menu:hover {
  opacity: 0.6;
}
.nagoya__contents__menu img {
  margin: 0 10px;
}
.nagoya__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.nagoya__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nagoya__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .nagoya__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .nagoya__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .nagoya__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.radio__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.radio__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 3) - 20px);
  height: 110px;
  margin: 10px;
  border: 1px solid #ec6d47;
  border-radius: 10px;
  color: #ffffff;
  background-color: #ec6d47;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #bd5739;
  cursor: pointer;
  outline: none;
}
.radio__contents__menu:hover {
  opacity: 0.6;
}
.radio__contents__menu img {
  margin: 0 10px;
}
.radio__contents__menu span {
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  margin: 0 5px 0 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
  text-overflow: ellipsis;
}
.radio__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.radio__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .radio__contents__menu {
    width: calc((100% / 2) - 20px);
  }
  .radio__contents__menu span {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .radio__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.today__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.today__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 3) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #e849a4;
  border-radius: 10px;
  color: #ffffff;
  background-color: #e849a4;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #ba3a83;
  cursor: pointer;
  outline: none;
}
.today__contents__menu:hover {
  opacity: 0.6;
}
.today__contents__menu img {
  margin: 0 15px;
  width: 55px;
  height: auto;
}
.today__contents__menu span {
  display: inline-block;
  margin: 0 10px 0 0;
  color: #ffffff;
  font-size: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
}
.today__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.today__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 991px) {
  .today__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .today__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

.game__contents {
  width: 100%;
  margin: 0 auto auto auto;
  padding: 10px 0;
  flex-wrap: wrap;
}
.game__contents__menu {
  position: relative;
  display: flex;
  align-items: center;
  width: calc((100% / 4) - 20px);
  height: 90px;
  margin: 10px;
  border: 1px solid #368821;
  border-radius: 10px;
  color: #ffffff;
  background-color: #368821;
  min-width: 100px;
  min-height: 40px;
  font-size: 18px;
  box-shadow: 5px 5px #2b6d1a;
  cursor: pointer;
  outline: none;
}
.game__contents__menu:hover {
  opacity: 0.6;
}
.game__contents__menu img {
  width: 70px;
  margin: 0 10px;
}
.game__contents__menu span {
  display: inline-block;
  color: #ffffff;
  font-size: 24px;
  margin: 0 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  width: 100%;
  text-overflow: ellipsis;
}
.game__contents__menu a {
  outline: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.game__contents__menu:hover {
  opacity: 0.6;
}
@media screen and (max-width: 1199px) {
  .game__contents__menu {
    width: calc((100% / 3) - 20px);
  }
}
@media screen and (max-width: 991px) {
  .game__contents__menu {
    width: calc((100% / 2) - 20px);
  }
}
@media screen and (max-width: 768px) {
  .game__contents__menu {
    width: calc((100% / 1) - 20px);
  }
}

/*# sourceMappingURL=style.css.map */
