/* ========== webサイト全般 ========== */
html {
  overflow: auto;
  font-size: 3.5vw;
}

@media screen and (min-width: 800px) {
  html {
    font-size: 1.5vw;
  }
}

@media screen and (min-width: 600px) {
  html {
    font-size: 1.2vw;
  }
}

body {
  overflow: hidden;
  min-width: 98vw;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 5.0vw;
  color: #014da3;
}

@media screen and (min-width: 600px) {
  h2 {
    font-size: 1.7vw;
  }
}

h3 {
  display: inline-block;
  background: linear-gradient(transparent 80%, #a7d6ff 80%);
  font-size: 4.0vw;
  color: #000000;
}

@media screen and (min-width: 600px) {
  h3 {
    font-size: 1.5vw;
  }
}

p {
  margin: 1vh 0 0 0;
  font-size: 3.5vw;
}

@media screen and (min-width: 800px) {
  p {
    font-size: 1.5vw;
  }
}

@media screen and (min-width: 600px) {
  p {
    font-size: 1.2vw;
  }
}

ul,li {
  list-style: none;
}

a {
  color: #1111cc;
}

.pc {
  display: none;
}

@media screen and (min-width: 600px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}

@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}

.wrapper {
  margin: 0;
  padding: 9vh 0 0 0;
  width: 100vw;
}

@media screen and (min-width: 600px) {
  .wrapper {
    margin: 0;
    padding: 13vh 0 0 0;
  }
}

.breadcrumb {
  margin: 0;
  padding: 1.5vh 1vw 1.5vh 1vw;
  width: 100vw;
  background: #e9edf5;
  overflow: hidden;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .breadcrumb {
    padding: 1.5vh 10vw 1.5vh 10vw;
  }
}

.breadcrumb li{
  display: inline;
  list-style: none;
}

.breadcrumb li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f101';
  padding: 0 3px;
  color: #8186a0;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color: #273376;
}

.breadcrumb li:first-child a:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f015';
  font-size: 1.1em;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}

/* ========== ヘッダー ========== */
.grid_header {
  display: grid;
  position: fixed;
  width: 100vw;
  height: 9vh;
  background-color: #ffffff;
  border-bottom: solid 0.25vh #014da3;
  z-index: 99;
  justify-items: space-between;
  align-items: center;
  grid-template-areas:
    "grid_header_logo grid_header_menu";
}

@media screen and (min-width: 600px) {
  .grid_header {
    height: 13vh;
    justify-items: stretch;
    align-items: stretch;
    grid-template-areas:
　    "grid_header_logo grid_header_submenu"
　    "grid_header_logo grid_header_menu";
  }
}

.grid_header_logo {
  padding: 1vh 1vw 1vh 1vw;
  width: 90vw;
  height: 9vh;
  grid-area: grid_header_logo;
  grid-column: 1/2;
}

@media screen and (min-width: 600px) {
  .grid_header_logo {
    padding: 2vh 0 2vh 0;
    width: 30vw;
    height: 13vh;
    grid-column: 1/2;
    grid-row: 1/3;
  }
}

@media screen and (min-width: 600px) {
  .grid_header_submenu {
    padding: 1vh 2vw 1vh 1vw;
    width: 70vw;
    height: 5vh;
    grid-area: grid_header_submenu;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.grid_header_menu {
  padding: 0 1vw 0 0;
  width: 10vw;
  height: 9vh;
  grid-area: grid_header_menu;
  grid-column: 2/3;
}

@media screen and (min-width: 600px) {
  .grid_header_menu {
    padding: 0 2vw 0 1vw;
    width: 70vw;
    height: 8vh;
    grid-row: 2/3;
  }
}

@media screen and (min-width: 600px) {
  .grid_submenu {
    display: grid;
    width: 70wh;
    height: 5vh;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    grid-template-areas:
　    "grid_submenu_a grid_submenu_b grid_submenu_c grid_submenu_inquiry grid_submenu_member"
  }
}

@media screen and (min-width: 600px) {
  .grid_submenu_a {
    grid-area: grid_submenu_a;
    grid-column: 1/2;
  }
}

@media screen and (min-width: 600px) {
  .grid_submenu_b {
    grid-area: grid_submenu_b;
    grid-column: 2/3;
  }
}

@media screen and (min-width: 600px) {
  .grid_submenu_c {
    grid-area: grid_submenu_c;
    grid-column: 3/4;
  }
}

@media screen and (min-width: 600px) {
  .grid_submenu_inquiry {
    padding: 0 2vw 0 0;
    grid-area: grid_submenu_inquiry;
    grid-column: 4/5;
  }
}

@media screen and (min-width: 600px) {
  .grid_submenu_member {
    padding: 0 2vw 0 0;
    grid-area: grid_submenu_member;
    grid-column: 5/6;
  }
}

img.logo {
  position: absolute;
  top: 4.5vh;
  left: 32vw;
  vertical-align: middle;
  width: 52vw;
  height: auto;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

@media screen and (min-width: 600px) {
  img.logo {
    top: 6.5vh;
    left: 12vw;
    width: 20vw;
    max-height: 9vh;
  }
}

a.button_header_inquiry {
  display: inline-block;
  margin: 2vh 0 0 0;
  padding: 7px 20px;
  background-image: linear-gradient(45deg, #aad5ff 0%, #0080ff 100%);
  text-align: center;
  font-size: 4.0vw;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 25px;
  transition: .4s;
}

@media screen and (min-width: 600px) {
  a.button_header_inquiry {
    margin: 0;
    font-size: 1.0vw;
  }
}

a.button_header_inquiry:hover {
  background-image: linear-gradient(45deg, #aad5ff 0%, #006ad5 100%);
}

i.button_header_inquiry {
  margin: 0 0.5vw 0 0;
  color: #ffffff;
}

button.button_header_member {
  display: inline-block;
  position: relative;
  margin: 4vh 0 0 0;
  padding: 0.5vw 1.0vw;
  background: transparent;
  border-style: solid;
  border-width: 2px;
  border-color: #454545;
  text-align: center;
  font-family: comfortaa;
  font-size: 4.0vw;
  color: #454545;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 600px) {
  button.button_header_member {
    margin: 0;
    font-size: 0.9vw;
  }
}

button.button_header_member:before, button.button_header_member:after {
  display: block;
  position: absolute;
  content: '';
  border-style: solid;
  border-color: #454545;
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

button.button_header_member:before {
  top: -6px;
  left: -6px;
  border-width: 2px 0 0 2px;
  z-index: 5;
}

button.button_header_member:after {
  right: -6px;
  bottom: -6px;
  border-width: 0 2px 2px 0;
}

button.button_header_member:hover:before, button.button_header_member:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #454545;
}

button.button_header_member:hover {
  background-color: #ffffff;
  border-color: #454545;
  color: #454545;
}

.panel {
  position: relative;
  margin: auto;
  max-width: 960px;
  text-align: center;
}

i.button_header_member {
  margin: 0 0.5vw 0 0;
  color: #353535;
}

/* ---------- メガメニュー ここから ---------- */
@media screen and (min-width: 600px) {
  .gnav-wrapper {
    position: relative;
    background: #ffffff;
  }

  .gnav {
    display: flex;
    justify-content: space-between;
  }

  .gnav li {
    padding: 0 0;
    text-align: center;
    transition: all .3s ease-in-out;
  }

  .gnav li:hover {
    background: #ffffff;
  }

  .gnav a {
    padding: 0 4vw 0 5vw;
    border-left: solid 0.05vw #014da3;
    font-size: 1.3vw;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
  }

  .gnav > li:last-child a {
    border-right: solid 0.05vw #014da3;
  }

  .gnav > li:hover .megamenu {
    padding: 0.5vw 0;
    max-height: 9999px;
    opacity: 1;
  }

  .megamenu {
    position: absolute;
    top: 5.4vh;
    left: 0;
    width: 100%;
    max-height: 0;
    background: #ffffff;
    border: solid 0.05vw #014da3;
    overflow: hidden;
    z-index: 99;
    opacity: 0;
    transition: all .2s ease-in;
  }

  .megamenu-inner {
    display: flex;
    flex-wrap: wrap;
  }

  .megamenu-inner li {
    padding: 0;
    width: calc( (100% / 4) );
  }

  .megamenu-inner a {
    border: none;
  }

  .megamenu-inner-img {
    margin: 0 0 10px 0;
  }

  .megamenu-inner-text img {
    margin: 0 5px 0 0;
  }

  .underline {
    display: inline-block;
    padding-bottom: 4px;
    position: relative;
  }

  .underline::after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.5vh;
    content: '';
    background: #ff6347;
    transition: .5s all;
  }

  .underline:hover::after {
    width: 70%;
  }

  .center::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
/* ----------メガメニュー ここまで ---------- */

img.menu_illustration {
  padding: 0 10px 0 0;
  max-width: 30px;
  vertical-align: middle;
}

@media screen and (min-width: 600px) {
  img.menu_illustration {
    padding: 0;
    width: 3vw;
    max-width: none;
    height: auto;
    vertical-align: baseline;
  }
}

img.menu_picture {
  width: 5vw;
  height: auto;
  object-fit: cover;
}

.shine:hover {
  animation:shine 1s ease;
}

@keyframes shine {
    0%{opacity: 0.3;}
    100%{opacity: 1;}
}

/* ========== トップページ ========== */
.image-crossfader {
  position: relative;
  width: 100vw;
  height: 91vh;
  overflow: hidden;
}

.image-crossfader-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 87vh;
  background-position: center;
  z-index: 1;
  background-size: cover;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    transform 3.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.image-crossfader-inner.is-visible {
  z-index: 1;
  opacity: 1;
  transform: scale(1.06);
}

.image-crossfader-inner:nth-child(1) {
  background-image: url('/img/img_top_1.jpg');
}

.image-crossfader-inner:nth-child(2) {
  background-image: url('/img/img_top_2.jpg');
}

.image-crossfader-inner:nth-child(3) {
  background-image: url('/img/img_top_3.jpg');
}

.image-crossfader-inner:nth-child(4) {
  background-image: url('/img/img_top_4.jpg');
}

.image-crossfader-inner:nth-child(5) {
  background-image: url('/img/img_top_5.jpg');
}

.image-crossfader-inner:nth-child(6) {
  background-image: url('/img/img_top_6.jpg');
}

.image-crossfader-inner:nth-child(7) {
  background-image: url('/img/img_top_7.jpg');
}

p.image-crossfader_1 {
  position: absolute;
  top: 30%;
  left: 50%;
  font-size: 2.0rem;
  color: #ffffff;
  font-family :Quicksand, sans-serif;
  font-weight: bold;
  white-space: nowrap;
  z-index: 2;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

@media screen and (min-width: 600px) {
  p.image-crossfader_1 {
    font-size: 5.0vw;
  }
}

p.scroll {
  position: absolute;
  top: 75%;
  left: 50%;
  padding-top: 80px;
  font-size: 2.0rem;
  color: white;
  text-decoration: none;
  white-space: nowrap;
  z-index: 2;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}

p.scroll span {
  position: absolute;
  margin-left: -12px;
  top: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  box-sizing: border-box;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
}

p.scroll span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

p.scroll span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

p.scroll span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.box_information {
  position: relative;
  margin: 10vh auto 5vh auto;
  padding: 0.5em 1.5em;
  width: 80vw;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
  box-sizing: border-box;
}

@media screen and (min-width: 600px) {
  .box_information {
    margin: 10vh auto 0 auto;
    width: 70vw;
  }
}

.box_information:before, .box_information:after {
  position: absolute;
  top: -10px;
  background-color: black;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  content: '';
}

.box_information:before {
  left: 10px;
}

.box_information:after {
  right: 10px;
}

.box_information p {
  margin: 0;
  padding: 0;
}

.h2_illustration {
  margin: 0 2vw 0 0;
  vertical-align: middle;
  width: 6vw;
  height: auto;
}

@media screen and (min-width: 600px) {
  .h2_illustration {
    margin: 0 1vw 0 0;
    width: 3vw;
  }
}

img.pdf {
  margin: 0 0 0 0;
  vertical-align: middle;
  width: 5vw;
  height: auto;
}

@media screen and (min-width: 600px) {
  img.pdf {
    margin: 0 0 0 0;
    width: 2vw;
  }
}

img.excel {
  margin: 0 0 0 1vw;
  vertical-align: middle;
  width: 4vw;
  height: auto;
}

@media screen and (min-width: 600px) {
  img.excel {
    margin: 0 0 0 0.5vw;
    width: 1.5vw;
  }
}

img.word {
  margin: 0 0 0 1vw;
  vertical-align: middle;
  width: 4vw;
  height: auto;
}

@media screen and (min-width: 600px) {
  img.word {
    margin: 0 0 0 0.5vw;
    width: 1.5vw;
  }
}

a.anchor {
  display: block;
  padding-top: 9vh;
  margin-top: -9vh;
}

@media screen and (min-width: 600px) {
  a.anchor {
    display: block;
    padding-top: 13vh;
    margin-top: -13vh;
  }
}

.article {
  margin: 5vh auto 0 auto;
  width: 90vw;
}

@media screen and (min-width: 600px) {
  .article {
    width: 80vw;
  }
}

article.headline {
  display: brock;
  margin: 3vh auto 0 auto;
  padding: 1vh 1vw 1vh 1vw;
  width: 90vw;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 0 0 2vh 0 #999;
}

@media screen and (min-width: 600px) {
  article.headline {
    width: 80vw;
  }
}

article.headline a {
  color: #000000;
}

article.headline figure {
  margin: 0;
}

article.headline figure img {
  float: left;
  vertical-align: middle;
  margin: 0 1vw 0 0;
  width: 5vw;
  height: auto;
}

article.press {
  margin: 3vh auto 0 auto;
  padding: 1vh 1vw 1vh 1vw;
  width: 80vw;
}

img.article {
  float: left;
  vertical-align: top;
  margin: 0 1vw 1vh 0;
  width: 10vw;
  height: auto;
}

@media screen and (min-width: 600px) {
  img.article {
    width: 5vw;
  }
}

p.headline {
  font-size: 4.0vw;
  color: #000000;
}

@media screen and (min-width: 600px) {
  p.headline {
    font-size: 1.5vw;
  }
}

.text_content {
  clear: both;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.article_box *, .article_box *:before, .article_box *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.article_box {
  position: relative;
}

.article_box label {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5vh;
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
  text-align: center;
  cursor: pointer;
  z-index: 1;
}

.article_box input:checked + label {
 background: inherit;
}

.article_box label:after {
  position: absolute;
  bottom: 1vh;
  left: 50%;
  width: 30vw;
  line-height: 6vh;
  background-color: rgba(27, 37, 56, 1);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f13a'' 続きを表示';
  color: #ffffff;
  letter-spacing: 0.1vw;
  z-index: 2;
  transform: translate(-50%, 0);
  border-radius: 20px;
}

@media screen and (min-width: 600px) {
  .article_box label:after {
    width: 10vw;
  }
}

.article_box input {
  display: none;
}

.article_box .article_container {
  overflow: hidden;
  height: 10vh;
  transition: all 0.5s;
}

.article_box input:checked + label {
}

.article_box input:checked + label:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f139'' 閉じる';
}

.article_box input:checked ~ .article_container {
  padding-bottom: 7vh;
  height: auto;
  transition: all 0.5s;
}

.press_more_button {
  display: inline-block;
  position: relative;
  float: right;
  margin: 3vh 0 0 0;
  padding: 1vh 1vw 1vh 1vw;
  background: #ececec;
  color: #014da3;
  font-weight: bold;
  text-decoration: none;
  transition: .4s;
}

.press_more_button:hover {
  background: #014da3;
  color: white;
}

span.article_back_red {
  margin: 0 0.5vw 0 0.5vw;
  padding: 0.5vh 0.5vw 0.5vh 0.5vw;
  background-color: #ff69a3;
  font-size: 2.9vw;
  color: #ffffff;
}

@media screen and (min-width: 600px) {
  span.article_back_red {
    font-size: 1.0vw;
  }
}

span.article_back_orange {
  margin: 0 0.5vw 0 0.5vw;
  padding: 0.5vh 0.5vw 0.5vh 0.5vw;
  background-color: #ff8856;
  font-size: 2.9vw;
  color: #ffffff;
}

@media screen and (min-width: 600px) {
  span.article_back_orange {
    font-size: 1.0vw;
  }
}

span.article_back_gray {
  margin: 0 0.5vw 0 0.5vw;
  padding: 0.5vh 0.5vw 0.5vh 0.5vw;
  background-color: #cccccc;
  font-size: 2.9vw;
  color: #000000;
}

@media screen and (min-width: 600px) {
  span.article_back_gray {
    font-size: 1.0vw;
  }
}

i.article_more_button_back {
  margin: 0 1vw 0 0;
}

i.article_more_button_next {
  margin: 0 0 0 1vw;
}

.result_button {
  display: inline-block;
  margin: 3vh 0 0 0;
  padding: 1vh 1vw 1vh 1vw;
  background: #ececec;
  color: #014da3;
  font-weight: bold;
  text-decoration: none;
  transition: .4s;
}

.result_button:hover {
  background: #014da3;
  color: white;
}

i.result_button_next {
  margin: 0 0 0 1vw;
}

.banner {
  margin: 10vh auto 0 auto;
  width: 90vw;
}

@media screen and (min-width: 600px) {
  .banner {
    width: 80vw;
  }
}

.sponsor {
  margin: 5vh auto 0 auto;
  width: 90vw;
}

@media screen and (min-width: 600px) {
  .sponsor {
    width: 80vw;
  }
}

.flex_box_sponsor {
  display: flex;
  position: relative;
  background: #ffffff;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

@media screen and (min-width: 600px) {
  .flex_box_sponsor {
    justify-content: flex-start;
  }
}

.flex_item_sponsor {
    margin: 0;
    padding: 1vh 1vw 1vh 1vw;
    color: #000000;
}

@media screen and (min-width: 600px) {
    .flex_item_sponsor {
        max-width: 20vw;
    }
}

.sponsor_banner {
  width: 80vw;
  height: auto;
}

@media screen and (min-width: 600px) {
  .sponsor_banner {
    margin: 3vh 3vw 0 0;
    width: 20vw;
    max-width: none;
    height: auto;
  }
}

.support {
  margin: 5vh auto 0 auto;
  width: 90vw;
}

@media screen and (min-width: 600px) {
  .support {
    width: 80vw;
  }
}

.content {
  margin: 5vh auto 0 auto;
  width: 90vw;
}

@media screen and (min-width: 600px) {
  .content {
    width: 80vw;
  }
}

ul.outline {
  position: relative;
  margin: 3vh 0 0 0;
  padding: 1vh 1vw 1vh 0.5vw;
  border: solid 0.2vw #6495ed;
  border-radius: 20px;
}

ul.outline li {
  padding: 0.5vh 0 0.5vh 1.5vw;
  line-height: 1.5;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
}

ul.outline li:before {
  position: absolute;
  left : 1vw;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f138";
  color: #6495ed;
}

ul.outline li:last-of-type {
  border-bottom: none;
}

ul.item {
  position: relative;
  margin: 3vh 0 0 0;
  padding: 0;
}

ul.item li {
  padding: 0.5vh 0 0.5vh 4.0vw;
  line-height: 1.5;
  list-style-type: none!important;
}

@media screen and (min-width: 600px) {
  ul.item li {
    padding: 0.5vh 0 0.5vh 2.0vw;
  }
}

ul.item li:before {
  position: absolute;
  left : 1vw;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da ";
  color: #a9a9a9;
}

ul.item_first {
  position: relative;
  margin: 3vh 0 0 0;
  padding: 0;
}

ul.item_first li:first-child {
  padding: 0.5vh 0 0.5vh 4.0vw;
  line-height: 1.5;
  list-style-type: none!important;
}

@media screen and (min-width: 600px) {
  ul.item_first li:first-child {
    padding: 0.5vh 0 0.5vh 2.0vw;
  }
}

ul.item_first li:first-child:before {
  position: absolute;
  left : 1vw;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da ";
  color: #a9a9a9;
}

li.indent {
  padding: 0 0 0 3em;
}

ul.normal li {
  margin-left: 2em;
  list-style: disc;
}

table.normal {
  margin: 2vh 0 2vh 0;
  border-collapse:collapse;
}

table.normal td {
  border: solid 1px;
  padding: 0.5em;
}

td.nowrap {
  white-space: nowrap;
}

td.back_gray {
  background-color: #d3d3d3;
}

img.player {
  float: left;
  margin: 0 1vw 1vh 0;
  width: 20vw;
  height: auto;
}

@media screen and (min-width: 600px) {
  img.player {
    width: 10vw;
  }
}

table.player {
  margin: 0 auto;
}

table.player td {
  width: 80vw;
  vertical-align: top;
}

@media screen and (min-width: 600px) {
  table.player td {
    width: 25vw;
  }
}

table.player th {
  background-color: #ffe4b5;
}

img.application_web {
  display: block;
  margin: 0 auto 0 auto;
  width: 50vw;
}

@media screen and (min-width: 600px) {
  img.application_web {
    width: 15vw;
  }
}

img.jsc_logo {
  display: block;
  margin: 5vh 0 0 0;
  width: 50vw;
}

@media screen and (min-width: 600px) {
  img.jsc_logo {
    width: 15vw;
  }
}

.sns {
  margin: 5vh auto 0 auto;
  width: 90vw;
}

@media screen and (min-width: 600px) {
  .sns {
    width: 80vw;
  }
}

.sns_index {
  margin: 5vh auto 5vh auto;
  width: 90vw;
}

@media screen and (min-width: 600px) {
  .sns_index {
    width: 80vw;
  }
}

.flex_box_sns {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

@media screen and (min-width: 600px) {
  .flex_box_sns {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
}

.flex_item_sns {
  margin: 3vh 0 0 0;
  /*width: 90vw;
  height: 70vh;*/
  color: #000000;
}

@media screen and (min-width: 600px) {
  .flex_item_sns {
    margin: 0 5vw 0 0;
    /*width: 80vw;
    height: 60vh;*/
  }
}

.facebook_font {
  font-size: 4.0vw;
  color: #4966a0;
}

@media screen and (min-width: 600px) {
  .facebook_font {
    font-size: 1.5vw;
  }
}

.img_facebook {
  margin: 1vh 1vw 1vh 1vw;
}
/*
.iframe_facebook {
  width: 90vw;
  height: 70vh;
}

@media screen and (min-width: 600px) {
  .iframe_facebook {
    width: 40vw;
    height: 60vh;
  }
}
*/
.instagram_font {
  font-size: 4.0vw;
  color: #d8565a;
}

@media screen and (min-width: 600px) {
  .instagram_font {
    font-size: 1.5vw;
  }
}

.img_instagram {
  margin: 1vh 1vw 1vh 1vw;
}

.line_font {
  font-size: 4.0vw;
  color: #5ac463;
}

@media screen and (min-width: 600px) {
  .line_font {
    font-size: 1.5vw;
  }
}

.img_line {
  margin: 1vh 1vw 1vh 1vw;
}

.x_font {
  font-size: 4.0vw;
  color: #000000;
}

@media screen and (min-width: 600px) {
  .x_font {
    font-size: 1.5vw;
  }
}

.img_x {
  margin: 1vh 1vw 1vh 1vw;
}
/*
.twitter_adjustment {
  margin: 5vh 0 0 0;
}

@media screen and (min-width: 600px) {
  .twitter_adjustment {
    margin: 0;
  }
}

.iframe_twitter {
  width: 90vw;
  height: 70vh;
}

@media screen and (min-width: 600px) {
  .iframe_twitter {
    width: 40vw;
    height: 60vh;
  }
}
*/

/* ========== フッター ========== */
div.footer {
  margin: 10vh 0 0 0;
  padding: 3vh 5vw 3vh 5vw;
  background: #f0f8ff;
  border-top: solid 0.1vw #014da3;
}

@media screen and (min-width: 600px) {
  div.footer {
    margin: 15vh 0 0 0;
    padding: 5vh 15vw 5vh 15vw;
  }
}

hr.footer {
  border: solid 0.1vw #014da3;
}

table.transparent td {
  padding: 0.5vh 0.5vw;
  border: none;
}

/* ========== アナウンスメント ========== */
.announcement {
  padding: 2vh 2vw 2vh 2vw;
  margin: 0;
  color: #000000;
  background: #ffebe9;
  border-top: solid 1vh #ff7d6e;
  border-bottom: solid 1vh #ff7d6e;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.announcement p {
  margin: 0;
  padding: 0;
}

/* ========== 図形の装飾 ========== */
hr.blue {
  height: 0.1vw;
  background-color: #014da3;
}

.float_left {
  float: left;
}

.float_clear {
  clear: both;
}

img.width_max {
  max-width: 90vw;
}

@media screen and (min-width: 600px) {
  img.width_max {
    max-width: 50vw;
  }
}

/* ========== 文字の装飾 ========== */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.font_slide {
  background-position: 0 0;
  background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(208,128,255,1) 50%);
  background-size: 200% auto;
  transition: 0.5s;
}

.font_slide:hover {
  background-position: -100% 0;
  color: #ffffff;
}

.font_1_0 {
  font-size: 2.9vw;
}

@media screen and (min-width: 600px) {
  .font_1_0 {
    font-size: 1.0vw;
  }
}

.font_1_7 {
  font-size: 5.0vw;
}

@media screen and (min-width: 600px) {
  .font_1_7 {
    font-size: 1.7vw;
  }
}

.bold {
  font-weight: bold;
}

.font_red {
  color: #ff0000;
}

.font_green {
  color: #228b22;
}

.font_light_blue {
  color: #1e90ff;
}

.font_orange {
  color: #ff8c00;
}

.font_purple {
  color: #a16eff;
}

.font_pink {
  color: #ff77ff;
}

.font_white {
  color: #ffffff;
}

.underline_red {
  border-bottom: solid 0.1vw #ff0000;
}

.underline_bold_red {
  background: linear-gradient(transparent 80%, #ff6347 80%);
}

.underline_bold_blue {
  background: linear-gradient(transparent 80%, #a7d6ff 80%);
}

.cancel {
  text-decoration: line-through;
}

.link {
  text-decoration: underline;
  color: #1111cc !important;
}

.link_none {
  text-decoration: none;
}
