@charset "UTF-8";

html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  font-weight: normal;
  font-style: normal;
  font-size: 100%;
  font-size: 16px;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  html, body, div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, strong, sub, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, input, textarea {
    font-size: 14px;
  }
}

/* nomal */
@font-face {
  font-family: 'LINESeedJP';
  src: url('../../font/LINESeedJP_OTF_Rg.woff') format('woff'),
    url('../../font/LINESeedJP_OTF_Rg.woff2') format('woff2');
  font-weight: normal;
  font-weight: 400;
  font-style: normal;
}

/* bold */
@font-face {
  font-family: 'LINESeedJP';
  src: url('../../font/LINESeedJP_OTF_Bd.woff') format('woff'),
    url('../../font/LINESeedJP_OTF_Bd.woff2') format('woff2');
  font-weight: bold;
  font-weight: 700;
  font-style: normal;
}

/* EX bold */
@font-face {
  font-family: 'LINESeedJP';
  src: url('../../font/LINESeedJP_OTF_Eb.woff') format('woff'),
    url('../../font/LINESeedJP_OTF_Eb.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}


body {
  font-family: 'LINESeedJP', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

body.en {
  letter-spacing: normal;
}

img {
  width: 100%;
  text-decoration: none;
  vertical-align: top;
  font-size: 0px;
  object-fit: contain;
}

article, aside, main, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  box-sizing: border-box;
  outline: none;
  color: #0e1b47;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

/* ふわふわ */

.scroll-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.done {
  opacity: 1;
  transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  transition: all 1s;
}

.load-fade.done {
  opacity: 1;
  transform: translate(0, 0);
}

/* 左から オーバー シュッ */
.slide-in {
  animation-name: coloroverAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes coloroverAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slide-in::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0c1a49;
  /*伸びる背景色の設定*/
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }

  50% {
    transform-origin: left;
    transform: scaleX(1);
  }

  50.001% {
    transform-origin: right;
  }

  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}





.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1260px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ローディング */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgb(0, 0, 0, .75);
  text-align: center;
}

#loading .loadingArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 50px;
  height: 40px;
  margin: 0 auto;
}

#loading::after {
  content: "now loading";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding-top: 80px;
  color: #FFE900;
}

#loading .loadingArea>div {
  background-color: #FFE900;
  /* ベースの色 - 可変 */
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

#loading .loadingArea .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

#loading .loadingArea .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

#loading .loadingArea .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

#loading .loadingArea .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


/* ----------- 基本レイアウト -------------------*/
/* =====headerarea===== */
#header {
  width: 100%;
  min-height: 80px;
  z-index: 500;
  transition: all .2s;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background: rgb(0, 46, 75, .8);
  background: linear-gradient(122deg, rgba(0, 46, 75, .8) 0%, rgba(0, 50, 55, .8) 100%);
  position: relative;
  position: fixed;
}

.preview #header::after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

#header a,
#header p {
  color: #fff;
  font-weight: 700;
}

#header h1 {
  width: 100%;
  max-width: 210px;
  transition: 0.8s;
  z-index: 501;
}

#header h1 a {
  width: 100%;
  height: 100%;
  max-width: 200px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  line-height: 1;
}

#header .wp_btns {
  flex-grow: 4;
  z-index: 501;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: center;
}

.login #header .wp_btns {
  display: none;
}

#header a.item_pre_registration {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: center;
  background-color: #CE0087;
  line-height: 1.2;
  padding: .45em .25em .45em .25em;
  width: 11em;
  transition: 0.8s;
}

#header a.item_pre_registration::before {
  font-family: 'Material Icons Round';
  content: 'person_add';
  margin-right: 5px;
}

#header a.item_pre_registration span {
  font-size: 10px;
}

#header a.item_pre_registration:hover {
  background: rgb(228, 49, 140);
  background: linear-gradient(122deg, rgba(228, 49, 140, 1) 0%, rgba(0, 184, 255, 1) 100%);
}

@media screen and (max-width: 1399px) {
  #header a.item_pre_registration {
    width: 9em;
  }

  #header a.item_pre_registration span {
    display: none;
  }
}

@media screen and (max-width: 1250px) {
  #header a.item_pre_registration {
    width: 6em;
  }

  .en #header a.item_pre_registration {
    width: 8em;
    font-size: 14px;
  }
}

@media screen and (max-width: 1199px) {
  #header a.item_pre_registration {
    width: 9em;
  }
}

@media screen and (max-width: 580px) {

  #header a.item_pre_registration {
    white-space: normal;
    width: 6em;
    line-height: 1.2;
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
  #header a.item_pre_registration {
    display: none;
  }
}


#header .nav_p {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 3;
  margin-left: auto;
}

#header .nav_main,
#header .nav_sub {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  width: 100%;
  margin-right: 80px;
}

.login #header .nav_main,
.login #header .nav_sub {
  margin-right: 190px;
}


@media screen and (max-width: 1200px) {

  #header .nav_p .nav_main,
  #header .nav_p .nav_sub {
    display: none;
  }
}

#header .nav_main {
  order: 2;
}

#header .nav_sub {
  order: 1;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: auto;
}

@media screen and (max-width: 1489px) {
  .en #header .nav_sub>li:nth-child(5) {
    line-height: 1.2;
    width: 12em;
  }
}

@media screen and (max-width: 1359px) {
  .en #header .nav_sub>li:nth-child(5) {
    line-height: 1.2;
    width: 10em;
  }
}

#header .nav_main .nav_main_item {
  /*  position: relative; 0823用*/
  line-height: 1;
  transition: all .3s;
  /*  cursor: pointer;*/
}

#header .nav_p .nav_main .nav_main_item a.nav_main_item_category:hover {
  opacity: 1;
}

#header .nav_p .nav_main .nav_main_item a,
#header .nav_p .nav_main .nav_main_item p,
#header .nav_p .nav_main .nav_main_item .nav_main_item_category {
  font-size: 16px;
  padding: 15px 10px 15px;
  overflow: hidden;
  z-index: 1;
  display: block;
  /* 必須 */
}

@media screen and (max-width: 1369px) {

  #header .nav_p .nav_main .nav_main_item a,
  #header .nav_p .nav_main .nav_main_item p,
  #header .nav_p .nav_main .nav_main_item .nav_main_item_category {
    font-size: 14px;
    padding: 15px 6px 15px;
  }
}

#header .nav_p .nav_main .nav_main_item .block_nav {
  opacity: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 40px;
  position: absolute;
  top: 100%;
  left: 0%;
  transform: scaleY(0);
  transform-origin: center top;
  -webkit-transition: all .7s;
  transition: all .7s;
  z-index: 501;
  display: flex;
  flex-wrap: wrap;
  background: rgb(0, 46, 75, .8);
  background: linear-gradient(122deg, rgba(0, 46, 75, .8) 0%, rgba(0, 50, 55, .8) 100%);
  border-top: 1px solid rgb(255, 255, 255, .45);
}

#header .nav_p .nav_main .nav_main_item:hover .block_nav,
#header .nav_p .nav_main .nav_main_item_category:hover .block_nav {
  transform: scaleY(1);
  -webkit-transition: all .3s;
  transition: all .3s;
  /*ホバーしたら表示*/
}

#header .nav_p .nav_main .nav_main_item .tit_category {
  width: 300px;
  padding-right: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #fff;
}

#header .nav_p .nav_main .nav_main_item .tit_category h3 {
  font-size: 25px;
  font-weight: 700;
}

#header .nav_p .nav_main .nav_main_item .tit_category .more_txt {
  margin-top: auto;
  text-align: right;
  position: relative;
}

#header .nav_p .nav_main .nav_main_item .tit_category .more_txt:after {
  font-family: 'Material Icons Round';
  content: "chevron_right";
  display: inline-block;
  border: 2px solid;
  border-radius: 500px;
  padding: 3px;
  font-size: 18px;
  margin-left: 10px;
  line-height: 1;
  vertical-align: middle;
}

#header .nav_p .nav_main .nav_main_item .list_inner_nav {
  width: calc(100% - 360px);
  display: flex;
  flex-wrap: wrap;
}

#header .nav_p .nav_main .nav_main_item .list_inner_nav .item,
#header .nav_p .nav_main .nav_main_item .list_inner_nav .item a,
#header .nav_p .nav_main .nav_main_item .list_inner_nav .item h4 {
  display: block;
  font-size: 14px;
}

#header .nav_p .nav_main .nav_main_item .list_inner_nav .item a,
#header .nav_p .nav_main .nav_main_item .list_inner_nav .item h4 {
  height: auto;
  font-weight: 700;
  padding: 15px 0px 10px;
}

#header .nav_p .nav_main .nav_main_item .list_inner_nav .item {
  width: 23%;
  margin-left: 2%;
  /*  display: flex;
  align-items: center;
  justify-content: flex-start;*/
}

@media screen and (min-width: 1491px) {
  #header .nav_p .nav_main .nav_main_item .list_inner_nav .item {
    width: 18%;
    margin-left: 2%;
  }
}

#header .nav_p .nav_main .nav_main_item .list_inner_nav .item figure {
  overflow: hidden;
  /*  width: 50%;
  max-width: 150px;*/
  height: 100px;
  position: relative;
}

#header .nav_p .nav_main .nav_main_item .list_inner_nav .item figure img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}



#header .nav_sub li a,
#header .nav_sub li p {
  font-size: 12px;
  padding: 0.55em 0.9em;
  z-index: 1;
  display: block;
  position: relative;
}

.en #header .nav_sub li a,
.en #header .nav_sub li p {
  font-size: 11px;
}

@media screen and (max-width: 1369px) {

  #header .nav_sub li a,
  #header .nav_sub li p {
    font-size: 11px;
    padding: 0.55em 0.7em;
  }

  .en #header .nav_sub li a,
  .en #header .nav_sub li p {
    font-size: 10px;
    padding: 0.55em 0.5em;
  }
}

.is-open #header .nav_main li p.coming,
#header .nav_main li p.coming,
#header .nav_main>li .list_inner_nav li p,
#header .nav_sub li p,
#header .nav_main li p.coming:hover {
  opacity: .35;
}

#header .nav_sub .exhibitor,
#header .nav_sub .language {
  border-left: 1px dotted #fff;
  margin-left: 0.35em;
}

#header .nav_sub .exhibitor a,
#header .nav_sub .language a {
  position: relative;
  padding: 0.55em 0.9em 0.55em 1.3em;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

#header .nav_sub .language a::before {
  font-family: 'Material Icons Round';
  content: 'language';
  padding-right: 3px;
  font-size: 12px;
  line-height: 0;
}

#header .list_account {
  position: absolute;
  top: 0px;
  right: 10px;
  height: 100%;
  z-index: 500;
  display: -webkit-box;
  display: flex;
  flex-grow: 2;
}

#header .item_login a {
  display: -webkit-box;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  width: calc(5em + 40px);
  height: 100%;
  font-size: 12px;
  background-color: #00215d;
  padding: 0 5px;
}


#header .item_login a::before {
  font-family: 'Material Icons Round';
  content: 'account_box';
  font-size: 23px;
  margin-right: 5px;
}

#header .item_logout a {
  display: -webkit-box;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #000;
  height: 100%;
  font-size: 10px;
  padding: 5px;
}

@media screen and (max-width: 390px) {

  #header .item_logout a {
    padding: 5px 2px;
  }

}

#header .item_logout a::before {
  font-family: 'Material Icons Round';
  content: 'logout';
  font-size: 23px;
}



.hidden_menu_btn,
#header .item_mypage {
  display: -webkit-box;
  display: flex;
  height: 58px;
  width: 58px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  z-index: 92;
  border: 1px solid #fff;
  border-radius: 100px;
  margin-top: 10px;
  margin-left: 5px;
}


@media screen and (max-width: 390px) {

  .hidden_menu_btn,
  #header .item_mypage {
    height: 50px;
    width: 50px;
    margin-top: 14px;
    margin-left: 5px;
  }
}

#header .item_login {
  margin-left: 5px;
}

#header .item_mypage a {
  display: flex;
  line-height: 1;
  height: 100%;
  width: 100%;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

#header .item_mypage span {
  font-size: 30px;
  line-height: 1;
}

/* ドロワーメニュー css */
.hidden_menu_btn {
  background-color: transparent;
  transition: 1s;
}

.hidden_menu_btn:hover {
  background-color: #00215d;
}

.hidden_menu_btn span,
.hidden_menu_btn span:before,
.hidden_menu_btn span:after {
  content: '';
  display: block;
  width: 22px;
  color: #ffffff;
  position: absolute;
  text-align: center;
  transition: all .4s;
}

.hidden_menu_btn span:nth-of-type(1)::before,
.hidden_menu_btn span:nth-of-type(1)::after,
.hidden_menu_btn span:nth-of-type(2)::before {
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
}

.hidden_menu_btn span:nth-of-type(1)::before {
  bottom: 6px;
}

.hidden_menu_btn span:nth-of-type(1)::after {
  top: 0px;
}

.hidden_menu_btn span:nth-of-type(2)::before {
  bottom: 14px;
}

.hidden_menu_btn span:nth-of-type(2)::after {
  content: "Menu";
  position: absolute;
  top: 8px;
  left: 0;
  -webkit-transform: translateX(-25%);
  transform: translateX(-25%);
  font-size: 10px;
  text-transform: uppercase;
}

.is-open .hidden_menu_btn span:nth-of-type(1)::before {
  bottom: 2px;
  transform: rotate(45deg);
}

.is-open .hidden_menu_btn span:nth-of-type(1)::after {
  top: -5px;
  transform: rotate(-45deg);
}

.is-open .hidden_menu_btn span:nth-of-type(2)::before {
  display: none;
}

.is-open .hidden_menu_btn span:nth-of-type(2)::after {
  content: "Close";
}

#header .nav_hidden {
  width: 100%;
  width: 60%;
  max-width: 300px;
  height: 100%;
  overflow-y: auto !important;
  position: fixed;
  bottom: 100%;
  right: -60%;
  top: 0;
  /*メニューを画面外へ*/
  z-index: 499;
  background: rgb(0, 46, 75, .95);
  background: linear-gradient(122deg, rgba(0, 46, 75, .95) 0%, rgba(0, 50, 55, .95) 100%);
  transition: all 0.5s;
  display: block;
  padding-bottom: 50px;
}

.is-open::before {
  content: "";
  width: 100%;
  height: 500%;
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  background-color: rgb(0, 0, 0, .45);
  z-index: 498;
}

.is-open #header .nav_hidden {
  right: 0;
  /*メニューを画面内へ*/
}

/* SP時メニュー */
.is-open #header .nav_hidden .nav_main {
  margin-top: 80px;
  margin-bottom: 40px;
  margin-right: auto;
  margin-left: auto;
  order: 1;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  width: 80%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  max-width: 500px;
}

.is-open #header .nav_hidden .nav_main>li {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.is-open #header .nav_hidden .nav_main>li.coming {
  border-bottom: 1px solid rgb(255, 255, 255, .35);
}

.is-open #header .nav_hidden .nav_main li a,
.is-open #header .nav_hidden .nav_main li p {
  width: 100%;
}

.is-open #header .nav_hidden .nav_main li a:hover {
  opacity: .5;
}

.is-open #header .nav_hidden .nav_main>li a,
.is-open #header .nav_hidden .nav_main>li p {
  padding: 20px 10px 10px;
}

.is-open #header .nav_hidden .nav_main>li .nav_main_item_category {
  display: block;
  padding: 20px 0px 10px;
}

.is-open #header .nav_hidden .nav_main li .list_inner_nav {
  width: 100%;
  position: static;
  padding-top: 10px;
  margin-bottom: -20px;
  background-color: transparent;
  transform: scaleY(1);
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all 0s;
  transition: all 0s;
}

.is-open #header .nav_hidden .nav_main>li .list_inner_nav li {
  width: 50%;
  border-top: 1px dotted rgb(255, 255, 255, .35);
  line-height: 1.2;
  font-size: 85%;
}

.is-open #header .nav_hidden .nav_main>li .list_inner_nav li {
  width: 100%;
}

.is-open #header .nav_hidden .nav_main>li .list_inner_nav li a,
.is-open #header .nav_hidden .nav_main>li .list_inner_nav li p {
  display: block;
  height: auto;
  padding: 10px 10px;
}

.is-open #header .nav_hidden .nav_sub {
  order: 2;
  flex-wrap: wrap;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
}


.is-open #header .nav_hidden .nav_sub li {
  /*  width: 50%;*/
  width: 100%;
  border-top: 1px dotted rgb(255, 255, 255, .35);
}

.is-open #header .nav_hidden .nav_sub li a,
.is-open #header .nav_hidden .nav_sub li p {
  display: block;
  padding: 1em 0.85em;
}

.is-open #header .nav_hidden .nav_sub .exhibitor,
.is-open #header .nav_hidden .nav_sub .language {
  border: 1px dotted rgb(255, 255, 255, .35);
  margin-left: 0em;
  margin-top: 2em;
}

.is-open #header .nav_hidden .nav_sub .exhibitor,
.is-open #header .nav_hidden .nav_sub .language {
  border: 1px dotted rgb(255, 255, 255, .35) !important;
  margin-left: 0em;
  margin-top: 2em;
  /*  width: 50%;*/
  width: 100%;
}

.is-open #header .nav_hidden .nav_sub .language {
  margin-top: 0.5em;
}


.is-open #header .nav_hidden .nav_sub .exhibitor a,
.is-open #header .nav_hidden .nav_sub .language a {
  padding: 1em 0.85em;
  -webkit-box-pack: center;
  justify-content: center;
}

.is-open #header .nav_hidden .nav_sub .pre_regist {
  border-top: none;
  border-bottom: none !important;
  margin-top: 1em;
}

.is-open #header .nav_hidden a.item_pre_registration {
  width: 100%;
}


@keyframes attfuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.head_att.unregistered,
.head_att.unquestioned {
  display: none;
  position: absolute;
  top: 95px;
  right: 5px;
  z-index: 100;
  max-width: 300px;
  padding: 10px;
  background-color: #C90000;
  color: #fff;
  animation: 3s attfuwafuwa infinite;
}

.head_att.unregistered .material-icons-round,
.head_att.unquestioned .material-icons-round {
  display: block;
  text-align: center;
}


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

.head_att.unregistered p,
.head_att.unquestioned p {
  font-size: 12px;
  font-weight: 700;
}

.head_att.unregistered .btn,
.head_att.unquestioned .btn {
  font-size: 12px;
  margin-top: 10px;
  padding: 6px 30px 6px 20px;
}


@media screen and (max-width: 580px) {
  .head_att.unregistered .flex {
    display: block;
  }

  .head_att.unregistered .flex .btn {
    max-width: 100%;
  }
}

.not_answer .head_att.unquestioned,
.not_register .head_att.unregistered {
  display: block;
}

.not_login .block_att.unregistered {}




/* =====layout===== */

#main {
  background-color: #F7F8FA;
  padding-bottom: 50px;
}


/* ======= カテゴリータイトル ==================================================== */
#main .title_category {
  position: relative;
  width: 100%;
  min-height: 100px;
  padding-top: 90px;
  padding-bottom: 10px;
  color: #fff;
  background: rgb(228, 49, 140);
  background: linear-gradient(90deg, rgba(228, 49, 140, 1) 0%, rgba(226, 217, 37, 1) 50%, rgba(0, 167, 232, 1) 100%);
  overflow: hidden;
}

#main .title_category::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url(../images/bg_title.webp);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: color-dodge;
  opacity: .25;
}

#main .title_category .container {
  position: relative;
  z-index: 2;
  font-size: 37px;
  font-weight: 700;
  line-height: 1.3;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.2));
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

#main .title_category .container span {
  font-size: 18px;
  font-weight: 700;
  padding-left: 10px;
}

@media screen and (max-width: 540px) {

  #main .title_category .container {
    font-size: 27px;
  }

  #main .title_category .container span {
    font-size: 16px;
  }

}


/* ======= レイアウトタイプ ==================================================== */
.page_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**/
.column_1type .page_content {
  flex-wrap: nowrap;
  flex-direction: column;
}

.page_content .main_article {
  order: 4;
}

/**/

.column_1type .main_aside {
  order: 1;
}

.column_1type .nav_breadcrumb {
  order: 2;
}

.column_1type .title_page {
  order: 3;
}

/**/
.column_2type .nav_breadcrumb {
  order: 1;
}

.column_2type .title_page {
  order: 2;
}

.column_2type .main_article {
  width: 82%;
}

.column_2type .main_aside {
  order: 3;
  width: 15%;
}


@media screen and (max-width: 1140px) {
  .column_2type .main_article {
    width: 78%;
  }

  .column_2type .main_aside {
    width: 20%;
  }

}

@media screen and (max-width: 940px) {
  .column_2type .main_article {
    width: 100%;
    order: 3;
  }

  .column_2type .main_aside {
    order: 4;
    width: 100%;
    margin-top: 50px;
  }
}




/* ======= レイアウトテンプレート ==================================================== */
/*　ページタイトル　*/
#main .title_page {
  width: 100%;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 1.5em;
}

/*　ページ内部白背景ブロック要素　*/
.page_block {
  background-color: #fff;
  padding: 40px;
  margin-top: 50px;
}

.page_block.no_beginning {
  margin-top: 0;
}

@media screen and (max-width: 940px) {
  .page_block.no_beginning {
    margin-top: 50px;
  }
}

@media screen and (max-width: 540px) {
  .page_block {
    padding: 40px 20px 20px;
  }
}


/*　ページ内部白背景ブロック要素　タイトル　*/
.page_block_title {
  position: relative;
  font-size: 28px;
  font-weight: 700;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.2));
  padding-left: 20px;
  padding-bottom: 15px;
}

.page_block_title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 7px;
  height: 27px;
  top: 7px;
  background: rgb(8, 164, 229);
  background: linear-gradient(180deg, rgba(8, 164, 229, 1) 50%, rgba(232, 75, 150, 1) 50%);
}

/* subtextある場合 */
.page_block_title.flex_sub_read {
  display: flex;
  align-items: flex-end;
}

.page_block_title.flex_sub_read .text_main {
  white-space: nowrap;
  flex-shrink: 1;
}

.page_block_title.flex_sub_read .text_sub {
  font-size: 64%;
  padding-left: 10px;
  flex-shrink: 2;
}

@media screen and (max-width: 640px) {
  .page_block_title.flex_sub_read {
    display: block;
  }

  .page_block_title.flex_sub_read .text_sub {
    display: block;
    padding-left: 0px;
  }
}

.page_block>.page_block_title:first-child {
  margin-top: -60px;
  margin-left: -20px;
}

/*　 h4 h5 h6　*/
#main h4 {
  margin-top: 1em;
  font-size: 25px;
  font-weight: 700;
}

#main h5 {
  position: relative;
  margin-top: 1em;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 3px;
}

#main h5::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgb(8, 164, 229);
  background: linear-gradient(90deg, rgba(8, 164, 229, 1) 0%, rgba(232, 75, 150, 1) 100%);
}

#main h6 {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 0.25em;
}

@media screen and (max-width: 767px) {
  .page_block_title {
    font-size: 22px;
  }

  .page_block_title::after {
    top: 7px;
  }

  #main h4 {
    font-size: 20px;
  }

  #main h5 {
    font-size: 18px;
  }

  #main h6 {
    font-size: 16px;
  }

}

/* ======= カテゴリ分断共通指定 ==== */
.block_walking {
  border: 1px solid rgb(93, 19, 0);
}

.block_walking h3 {
  text-align: center;
  margin: -40px -40px 0;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  background: rgb(93, 19, 0);
  background: linear-gradient(180deg, rgba(93, 19, 0, 1) 16%, rgba(144, 84, 0, 1) 94%);
}

@media screen and (max-width: 540px) {
  .block_walking h3 {
    margin: -40px -20px 0;
    font-size: 16px;
  }
}

.block_walking h4 {
  color: rgb(93, 19, 0);
}

.block_walking .btn {
  background: rgb(93, 19, 0);
}

.block_walking .btn:hover {
  opacity: .5;
}



/*=======nav_breadcrumb=======*/
.nav_breadcrumb {
  width: 100%;
  padding: 20px 0;
}

.nav_breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
}

.nav_breadcrumb ol li {
  position: relative;
  font-size: 10px;
  color: #C3C3C3;
}

.nav_breadcrumb ol li+li {
  padding-left: 30px;
}

.nav_breadcrumb ol li+li::before {
  content: "";
  display: block;
  height: 12px;
  width: 1px;
  position: absolute;
  left: 15px;
  top: 0;
  background-color: #C3C3C3;
  transform: rotate(15deg);
}


.nav_breadcrumb ol li a {
  font-size: 10px;
  text-decoration: underline;
}

.nav_breadcrumb ol li a:hover {
  text-decoration: none;
}

/*=======nav_page_anchor=======*/
.nav_page_anchor {
  margin-top: 25px;
}

.nav_page_anchor ol {
  display: flex;
  flex-wrap: wrap;
}

.nav_page_anchor ol li {
  margin-right: 5px;
  margin-bottom: 5px;
}

@media screen and (max-width: 640px) {
  .nav_page_anchor ol li {
    width: calc(50% - 5px);
  }
}

@media screen and (max-width: 414px) {
  .nav_page_anchor ol li {
    width: 100%;
    margin-bottom: 2px;
  }

  .nav_page_anchor.nav_fixed ol li {
    width: 90%;
  }
}

.nav_page_anchor ol a {
  display: flex;
  position: relative;
  background-color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 8px;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 10%);
  transition: 1s;
}

@media screen and (max-width: 500px) {
  .nav_page_anchor ol a {
    font-size: 11px;
  }
}

.nav_page_anchor ol a::before {
  display: block;
  font-family: 'Material Icons Round';
  content: "arrow_circle_down";
  width: 1.5em;
  height: 1em;
  font-size: 16px;
  line-height: 1;
  transition: 1s;
  padding-top: 2px;
}

.nav_page_anchor ol a:hover {
  color: #fff;
  background-color: #00215d;
}

.nav_page_anchor ol a:hover::before {
  color: #fff;
}


/*=======main_aside=======*/
.main_aside {
  position: relative;
}

.main_aside .nav_sidebar {
  background-color: #fff;
  padding-top: 12px;
  padding-bottom: 10px;
  margin-bottom: 1em;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.1));
}

.main_aside .nav_sidebar li {
  position: relative;
  z-index: 2;
}

.main_aside .nav_sidebar li a {
  display: block;
  padding: 13px 10px 10px;
  font-weight: 700;
  position: relative;
  line-height: 1.2;
  font-size: 14px;
}

.main_aside .nav_sidebar li.current a {
  color: #CE1D87;
}

.main_aside .nav_sidebar li.current a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: calc(100% - 20px);
  height: 2px;
  background-color: #CE1D87;
}

.main_aside .btn {
  text-align: left;
  max-width: 100%;
}

.main_aside .btn.grd_btn span {
  display: block;
  font-size: 83%;
}

@media screen and (max-width: 1040px) {
  .main_aside .btn.grd_btn span {
    display: inline;
  }
}

.login .main_aside .btn.grd_btn {
  display: none;
}

.main_aside .btn+.btn {
  margin-top: 10px;
  text-align: left;
}

/* column_1typeのみ */


.column_1type #main {
  overflow: hidden;
}

/*スクロール後*/
.column_1type .main_aside_inner.nav_page_fixed {
  position: fixed !important;
  top: 78px;
  left: 0;
  z-index: 2;
}

.column_1type .main_aside_inner {
  background-color: #fff;
  margin-left: -100%;
  margin-right: -100%;
  z-index: 1;
  width: calc(100% + 200%);
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.05));
}

.column_1type .main_aside_inner .nav_sidebar {
  background-color: transparent;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0em;
}

.column_1type .main_aside .btn {
  display: none;
}

.column_1type .main_aside .nav_sidebar li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .column_1type .main_aside .main_aside_inner {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 60px);
  }

  .column_1type .main_aside .main_aside_inner.nav_page_fixed {
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
  }

}

@media screen and (max-width: 540px) {

  .column_1type .main_aside .nav_sidebar li a {
    font-size: 10px;
  }

}

/* column_1type タイプでボタンあり用 */
.btns_column_1type {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.btns_column_1type .btn {
  max-width: 49%;
  margin-bottom: 10px;
}

.btns_column_1type .btn:nth-of-type(2n) {
  margin-left: 2%;
}

@media screen and (max-width: 640px) {
  .btns_column_1type .btn {
    max-width: 100%;
  }

  .btns_column_1type .btn:nth-of-type(2n) {
    margin-left: 0%;
  }
}





/* ======= footer ==================================================== */


/* footer */
#footer {
  background: #20282F;
  color: #ffffff;
  font-size: 14px;
  position: relative;
}

.preview #footer::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 300;
}

#footer a,
#footer p {
  color: #ffffff;
  display: block;
  padding: 0.5em 0;
}

#footer .nav_footer,
#footer .sponsors,
#footer .foot_bottom .container {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0;
}

#footer .nav_footer {
  padding-top: 50px;
}

#footer .nav_footer .nav_main li a,
#footer .nav_footer .nav_main li p {
  font-size: 16px;
  font-weight: 700;
}

#footer .nav_footer .nav_sub li p,
#footer .nav_footer .nav_main li p.coming {
  opacity: .5;
}

#footer .nav_footer .nav_sub li a,
#footer .nav_footer .nav_sub li p {
  font-size: 14px;
}

#footer .item_press,
#footer .item_application {
  border-top: 1px dotted #929CA3;
  padding-top: 1em;
  margin-top: 1em;
}

#footer .item_language a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #fff;
  font-size: 12px;
}

#footer .item_language a::before {
  font-family: 'Material Icons Round';
  content: 'language';
  padding-right: 3px;
  font-size: 15px;
  line-height: 0;
}


#footer .sponsors {
  flex-wrap: nowrap;
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px dotted #929CA3;
}

#footer .sponsors>li:first-of-type {
  margin-right: 35px;
}

#footer .sponsors>li:last-of-type {
  margin-left: auto;
}

#footer .sponsors a,
#footer .sponsors p {
  font-size: 12px;
}


#footer .foot_bottom {
  margin-top: 2em;
  padding-top: 0.5em;
  padding-bottom: 1em;
  width: 100%;
  border-top: #707070 1px solid;
  background-color: #000;
}

#footer .foot_bottom .container {
  -webkit-box-align: center;
  align-items: center;
}

#footer .foot_bottom p {
  width: 50%;
  font-size: 12px;
}

#footer .foot_bottom p:last-child {
  text-align: right;
  font-size: 12px;
}

@media screen and (max-width: 890px) {

  #footer .sponsors {
    display: block;
  }

  #footer .sponsors>li:first-of-type {
    margin-right: 0px;
    margin-bottom: 30px;
  }

  #footer .sponsors>li:last-of-type {
    margin-top: 30px;
  }

}

@media screen and (max-width: 640px) {

  #footer .nav_footer,
  #footer .foot_bottom .container {
    display: block;
  }

  #footer .nav_footer .nav_main {
    margin-bottom: 2em;
  }

  #footer .nav_footer .nav_main a {
    font-size: 14px;
  }

  #footer .nav_footer .nav_sub a {
    font-size: 12px;
  }

  #footer .foot_bottom p,
  #footer .foot_bottom p:last-child {
    width: 100%;
    text-align: center;
  }

}


/*TOPへ戻るボタン*/
#page_top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 10;
  opacity: 0.8;
  z-index: 301;

}

#page_top a {
  background-color: rgba(0, 0, 0, .75);
  color: #fff;
  text-align: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  border-radius: 40px;
}

#page_top.bg_c_cg a {
  background-color: rgba(255, 255, 255, .95);
  color: #000;
}