@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/* ------------------------------------------------------
font
------------------------------------------------------ */
@font-face {
  font-family: "Interstate";
  src: url("/media/files/fonts/interstate.ttf") format("truetype");
}
@font-face {
  font-family: "Interstate-bold";
  src: url("/media/files/fonts/interstate-bold.ttf") format("truetype");
}
body {
  /* font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif; */
  /* font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", sans-serif; */
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  background-color: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  min-height: 100%;
}
body, p, li, span, a {
  font-family: "Work Sans", "メイリオ", Meiryo, sans-serif;
}
/* h1, h2, h3, h4, h5, h6 {
  font-family: "Interstate", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
} */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
iframe {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 1001px) {
  .tab {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
/* ------------------------------------------------------
GENERAL
------------------------------------------------------ */
#wrapper {
  overflow: hidden;
}
.inner {
  margin: 0 auto;
}
input, select, textarea {
  border-radius: 5px;
}
.btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: opacity 0.5s ease-in-out;
}
.btn:hover {
  opacity: 0.7;
}
p.error.msg {
  color: red;
  margin-top: 5px;
}
@media (min-width: 1001px) {
  .inner {
    max-width: 1020px;
    width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 1000px) {
  .inner {
    width: 91%;
  }
}
/* ------------------------------------------------------
Header
------------------------------------------------------ */
#head_p {
  min-height: 63px;
  padding: 10px 0;
  border-bottom: 3px solid #fff;
  background: #000;
}
#head_t {
  min-height: 60px;
  padding: 10px 0;
  border-bottom: 3px solid #000;
  background: #000;
}
.head_inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
}
.h_content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.h_logo {
  width: clamp(60px, 8vw, 124px);
}
.demo_link {
  color: #fff;
  border-radius: 5px;
}
.h_content ul {
  display: flex;
  justify-content: flex-end;
}
.h_content li {
  width: 200px;
  border-radius: 10px;
  text-align: center;
  margin-right: 10px;
}
.h_content li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 12px;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.h_content li a:hover {
  letter-spacing: 0.05em;
}
.h_content ul.header-city_link {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.h_content li.header-city_link__item {
  width: fit-content;
  margin-right: 0;
  text-align: center;
}
.h_content li.header-city_link__item a,
.h_content li.header-city_link__item span {
  display: block;
  font-size: 16px;
  color: #fff;
  opacity: 1;
  transition: opacity 0.2s;
}
.h_content li.header-city_link__item a[data-current-url="current"] {
  opacity: 1;
}
.h_content li.header-city_link__item a[data-current-url="not_current"] {
  opacity: 0.7;
}
.h_content li.header-city_link__item a[data-current-url="disabled"],
.h_content li.header-city_link__item .header-city_link__label.is-disabled {
  opacity: 0.7;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.h_content li.header-city_link__item a:hover {
  letter-spacing: 0;
  opacity: 0.7;
}
.sp_demoNav {
  display: none;
}
@media (max-width: 1000px) {
  .sp_demoNav {
    display: block;
  }
  .sp_demoNav li {
    color: #fff;
    margin-top: 5px;
  }
  .sp_demoNav li a {
    display: block;
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 4px;
    text-align: center;
  }
}
.h_btn {
  width: 167px;
  height: 60px;
  margin-left: 7px;
}
.h_btn .btn {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background: #d71920;
  border: 1px solid #d71920;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.h_btn.mp .btn {
  font-size: 13px;
  color: #d71920;
  background: #fff;
}
.h_btn .btn:hover {
  color: #fff;
  opacity: 0.7;
}
.h_btn.mp .btn:hover {
  color: #0564ff;
  background: #fff;
}
.head_menu {
  background: #000;
}
.head_menuInner {
  display: flex;
  justify-content: center;
  /* max-width: 1200px; */
  width: 100%;
  margin: 0 auto;
}
.menu {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.menu li {
  /* font-family: "Hiragino Sans", "Yu Gothic", sans-serif; */
  color: #fff;
  width: 200px;
  position: relative;
  text-align: center;
}
.menu > li > a, .menu > li > button {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  position: relative;
  background: none;
  transition: opacity 0.5s ease-in-out;
}
.menu > li > a *, .menu > li > button * {
  z-index: 2;
}
.submenu li a {
  /* font-family: "Hiragino Sans", "Yu Gothic", sans-serif; */
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  display: flex;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 20px 10px 10px;
  display: flex;
  align-items: center;
  position: relative;
  transition: background 0.5s ease-in-out;
}
.submenu.sub02 li a {
  font-size: 18px;
}
.submenu li a:hover {
  background: black;
}
.submenu li a:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 17px;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%);
  background: url("/media/images/tm/ico_menu_arrow.png") no-repeat 0 0 / 100% 100%;
}
.submenu li a span {
  font-size: 16px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0564ff;
  margin-right: 5px;
}
@media screen and (min-width: 1001px) {
  .hc_sp {
    display: none;
  }
  .hamburger {
    display: none;
  }
  .menu:last-of-type::after {
    content: "";
    position: absolute;
    width: 1px;
    background: #4d4d4d;
    top: 14px;
    bottom: 14px;
    right: 0;
  }
  .menu > li > a::before, .menu > li > button::before {
    content: "";
    position: absolute;
    width: 1px;
    background: #4d4d4d;
    top: 14px;
    bottom: 14px;
    left: 0;
  }
  .menu > li.active a::after, .menu > li.active button::after {
    opacity: 1;
  }
  .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 186px;
    display: none;
    z-index: 999;
  }
  .menu > li.active .submenu::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 50%;
    top: -14px;
    transform: translate(-50%, 0);
    border-style: solid;
    border-width: 9px 8.5px 0 8.5px;
    border-color: #0565ff transparent transparent transparent;
  }
  .h_list_sp, .submenu_sp {
    display: none !important;
  }
  header {
    z-index: 999;
    width: 100%;
  }
  header.fixed {
    position: fixed;
    top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .hc_pc {
    display: none;
  }
  #head_t {
    min-height: 62px;
  }
  #head_t .head_inner {
    align-items: center;
  }
  .h_btn {
    width: 97px;
    height: 38px;
  }
  .h_btn .btn {
    font-size: 12px;
  }
  .hamburger {
    position: fixed;
    right: 13px;
    top: 33px;
    width: 40px;
    height: 27px;
    transform: translate(0, -50%);
    cursor: pointer;
    z-index: 999;
  }
  .hamburger span {
    background: #0564ff;
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    left: 0;
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 12px;
  }
  .hamburger span:nth-child(3) {
    top: 24px;
  }
  .hamburger.active span:nth-child(1) {
    top: 13px;
    transform: rotate(135deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
  }
  .hamburger.active span:nth-child(3) {
    top: 13px;
    transform: rotate(-135deg);
  }
  .hamburger.active span {
    background: #fff;
  }
  .head_menu {
    z-index: 998;
    position: fixed;
    height: 100vh;
    top: 0;
    right: 0;
    width: 100%;
    overflow: auto;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.8s;
    margin: 0;
    padding: 60px 0 30px;
    display: none;
  }
  .head_menuInner {
    flex-direction: column;
    padding: 0 15px;
  }
  .h_content p {
    width: calc((100% - 7px) / 2);
  }
  .h_content p:first-child {
    margin-left: 0;
  }
  .menu > li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .menu > li a, .menu > li button {
    justify-content: flex-start;
    padding: 0 14px;
  }
  .menu > li a.txt-left {
    text-align: left;
  }
  .menu > li a.active .ico_accor:before, .menu > li button.active .ico_accor:before {
    opacity: 0;
  }
  .ico_accor {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 14px;
    top: 50%;
    border: 1px solid #fff;
    transform: translate(0, -50%);
  }
  .ico_accor:before, .ico_accor:after {
    content: "";
    position: absolute;
    background: #fff;
  }
  .ico_accor:before {
    width: 1px;
    top: 5px;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 0);
    transition: opacity 0.5s ease-in-out;
  }
  .ico_accor:after {
    height: 1px;
    left: 5px;
    right: 5px;
    top: 50%;
    transform: translate(0, -50%);
  }
  .submenu {
    /* display: none; */
    position: relative;
  }
  .submenu li {
    width: 100%;
    border-top: 1px solid #fff;
  }
  .submenu li a {
    font-size: 17px;
    background: #1a1a1a;
    padding: 15px 24px 15px 7px;
  }
  .submenu.sub02 li a {
    font-size: 15px;
  }
  .submenu li a span {
    font-size: 14px;
    width: 18px;
    height: 18px;
  }
  .h_list_sp {
    background: #fff;
    padding-top: 1px;
    display: flex;
    justify-content: space-between;
  }
  .h_list_sp li {
    width: calc((100% - 2px) / 3);
  }
  .h_list_sp li a {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    height: 50px;
    background: #0564ff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .h_list_pc, .submenu_pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .menu > li > a::after, .menu > li > button::after {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 5px;
    right: 5px;
    background: #0564ff;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    z-index: 1;
  }
  .menu.mp > li > a::after {
    background: #05b7ff;
  }
  .menu > li > a:hover::after, .menu > li > button:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  #head_p {
    height: 63px;
    padding: 0;
    border-bottom: 2px solid #fff;
  }
  .head_inner {
    padding: 10px 3%;
  }
  .head_menuInner {
    padding: 0 1.953vw;
  }
  .h_btn {
    margin: 0.911vw;
  }
}
@media screen and (max-width: 375px) {
  .menu > li > a, .menu > li > button {
    font-size: 5.333vw;
    height: 60px;
  }
  .submenu li a {
    font-size: 4.533vw;
  }
  .submenu.sub02 li a {
    font-size: 4vw;
  }
}
/* ------------------------------------------------------
Footer
------------------------------------------------------ */
footer {
  background: #000;
  padding: 30px 0 50px;
}
.f_logo {
  text-align: center;
  margin-bottom: 16px;
}
.f_txt {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
footer .f_txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.75;
}
.copy_right {
  font-size: 14px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 35px 0 50px;
  }
  .f_logo {
    max-width: 125px;
    width: 100%;
    margin: 0 auto 9px;
  }
  .f_txt, .copy_right {
    font-size: 9px;
  }
  .f_txt {
    line-height: 1.8;
    margin-bottom: 10px;
  }
  footer .f_txt {
    font-size: 14px;
    font-weight: bold;
  }
}
/* ------------------------------------------------------
Side Banner
------------------------------------------------------ */
.side_banner {
  position: fixed;
  right: 0;
  top: 40%;
  width: 160px;
  height: 160px;
  text-align: right;
  /* background: #0564ff; */
  background: #ed7d31;
  border-radius: 100% 100% 0 100%;
  padding: 29px 15px 16px 0;
  z-index: 90;
}
.side_txt {
  display: inline-block;
  padding-right: 12px;
  margin-bottom: 12px;
}
.side_btn {
  font-size: 16px;
  /* font-family: 'Oswald', sans-serif; */
  /* color: #0564ff; */
  color: #ed7d31;
  background: #fff;
  width: 70px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-left: auto;
  transition: opacity 0.5s ease-in-out;
}
.side_btn:hover {
  opacity: 0.7;
}
/* ------------------------------------------------------
Login - Password
------------------------------------------------------ */
/* login_content */
.login_content {
  background: url("/media/images/tm/img_bg.jpg") center center no-repeat;
  background-size: cover;
  padding: 70px 0 60px;
}
.log_logo {
  text-align: center;
  margin: 0 auto 29px;
}
.apply .log_logo {
  margin: 0 auto;
}
.log_title {
  font-size: clamp(30px, 4vw, 45px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3d3a3a;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
}
.log_title:after {
  content: "";
  position: absolute;
  width: 115px;
  height: 1px;
  bottom: 0;
  left: 50%;
  background: #666;
  transform: translate(-50%, 0);
}
.log_title small {
  font-size: 33px;
}
.rect_mail {
  text-align: center;
}
.login_content .ex_tit {
  font-size: 35px;
  font-weight: 700;
  color: #0564ff;
  text-align: center;
  margin-bottom: 21px;
}
.login_content .ex_txt {
  letter-spacing: 0.05em;
  text-align: center;
}
.login_content .txt01 {
  margin-bottom: 30px;
  line-height: 2;
}
.apply .login_content .txt01 {
  margin-bottom: 42px;
}
.login_content .txt02 {
  margin-bottom: 9px;
}
.login_content .txt03 {
  line-height: 1.5;
  margin-bottom: 24px;
}
.apply .login_content .txt03 {
  margin-bottom: 42px;
}
.login_content .txt03 small {
  font-size: 13px;
  line-height: 1.5;
}
.login_content .txt04 {
  font-size: 17px;
  margin-bottom: 12px;
}
.login_content .ex_link {
  text-align: center;
}
.login_content .ex_link a {
  text-decoration: underline;
}
.login_content .ex_link a:hover {
  text-decoration: none;
}
.notice {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
  background: #f72828;
  text-align: center;
  max-width: 443px;
  width: 100%;
  margin: 0 auto 8px;
  padding: 6px 5px 7px;
}
.ico_warn {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url("/media/images/tm/ico_warning.png") no-repeat 0 0 / 100% 100%;
}
.log_box {
  max-width: 870px;
  width: 100%;
  margin: 0 auto 29px;
  padding: 35px 15px;
  background: #fff;
}
.apply .log_box {
  padding: 29px 15px 35px;
}
.log_box table {
  max-width: 536px;
  width: 100%;
  margin: 0 auto 31px;
}
.password .log_box table {
  max-width: 400px;
}
.log_box th {
  width: 27%;
  padding: 5px 5px 5px 0;
}
.password .log_box th {
  width: 45%;
}
.log_box th label {
  font-size: 17px;
  font-weight: 400;
}
.log_box td {
  width: 73%;
}
.password .log_box td {
  width: 55%;
}
.log_box td label, .log_box input {
  font-size: 14px;
  font-weight: 400;
}
.log_box .ip01, .log_box .ip02 {
  height: 39px;
  border: 1px solid #a5acb2;
  padding: 5px;
  margin-bottom: 16px;
}
.password .log_box .ip01, .password .log_box .ip02 {
  max-width: 219px;
}
.log_box .ip01 {
  max-width: 389px;
  width: 100%;
}
.log_box .ip02 {
  /* max-width: 169px; */
  width: 100%;
}
.cb {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 2px 0 2px 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cb input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  /* background-color: #fff; */
  border: 1px solid #808080;
  border-radius: 2px;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cb:hover input + .checkmark {
  background-color: #ccc;
}
.cb input:checked + .checkmark {
  background-color: #2196F3;
}
.cb input:checked + .checkmark:after {
  display: block;
}
.cb .checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.log_box button {
  max-width: 216px;
  height: 52px;
  border-radius: 10px;
  box-shadow: 10px 5px 5px #aaa;
}
.log_box button:hover {
  opacity: 0.7;
}
.log_box .totop_button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 216px;
  min-height: 52px;
  margin-block-start: 1rem;
  margin-inline: auto;
  background: #d71920;
  border-radius: 10px;
  box-shadow: 10px 5px 5px #aaa;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
}

.log_button {
  max-width: 400px;
  width: 100%;
  height: 42px;
  margin: 0 auto;
}
.log_button .btn {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #d71920;
  background: #fff;
  border: 2px solid #d71920;
  border-radius: 21px;
}
/* footer */
.login footer {
  background: #fff;
  padding: 30px 0 33px;
}
.login .f_logo {
  margin: 0 auto 16px;
}
.login .copy_right {
  color: #9e9e9f;
}
.error .header-ermesg,
#err_email {
  color: red;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  /* login_content */
  /* .login_content {
    min-height: 887px;
  } */
  .log_box ::-webkit-input-placeholder {
    /* WebKit browsers */
    opacity: 0;
  }
  .log_box :-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    opacity: 0;
  }
  .log_box ::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    opacity: 0;
  }
  .log_box :-ms-input-placeholder {
    /* Internet Explorer 10+ */
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  /* login_content */
  /* footer */
  .login_content {
    padding: 44px 0 57px;
  }
  .log_logo {
    max-width: 210px;
    width: 100%;
    margin: 0 auto 23px;
  }
  /* .log_title {
    font-size: 45px;
    padding-bottom: 23px;
    margin-bottom: 20px;
  } */
  .log_title:after {
    height: 1px;
    width: 65px;
  }
  .log_title small {
    font-size: 33px;
  }
  .login_content .ex_tit {
    font-size: 24px;
  }
  .login_content .ex_txt {
    font-size: 14px;
  }
  .login_content .txt01, .apply .login_content .txt01 {
    line-height: 1.5;
    margin-bottom: 19px;
  }
  .login_content .txt02 {
    margin-bottom: 16px;
  }
  .login_content .txt03 {
    text-align: left;
    line-height: 1.7;
  }
  .apply .login_content .txt03 {
    text-align: center;
  }
  .login_content .txt03 small {
    font-size: 14px;
  }
  .notice {
    font-size: 11px;
    max-width: 350px;
    padding: 5px 5px 6px;
  }
  .ico_warn {
    width: 19px;
    height: 19px;
    margin-right: 8px;
  }
  .log_box {
    padding: 17px 15px;
    margin: 0 auto 33px;
  }
  .apply .log_box {
    padding: 25px 9px;
  }
  .log_box table, .password .log_box table {
    max-width: 100%;
    margin: 0 auto 11px;
  }
  .log_box .ip01, .log_box .ip02, .password .log_box .ip01, .password .log_box .ip02 {
    max-width: 100%;
    height: 50px;
    margin-bottom: 13px;
    padding: 5px 10px;
  }
  .log_box table .last {
    text-align: center;
  }
  .cb {
    display: inline-block;
    padding: 6px 0 6px 41px;
  }
  .checkmark {
    width: 28px;
    height: 28px;
  }
  .cb .checkmark:after {
    left: 10px;
    top: 6px;
    width: 7px;
    height: 12px;
  }
  .log_box button {
    height: 50px;
  }
  .log_button {
    height: 50px;
  }
  .log_button .btn {
    border-radius: 7px;
  }
  .log_box .totop_button {
    max-width: 91%;
}
  .login .f_logo {
    margin: 0 auto 10px;
  }
}
/* ------------------------------------------------------
Pages
------------------------------------------------------ */
.p_title {
  font-size: 33px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 37px;
}
.form_title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #d71920;
  padding: 13px 22px 14px;
  margin: 0 auto 3px;
  max-width: 1000px;
  width: 100%;
  border-radius: 5px;
}
.title_center {
  text-align: center;
}
.form_sub_title {
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}
button {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: #d71920;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
}
.announcement {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 37px;
}
.announcement_link {
  color: red;
  text-decoration: underline;
}
@media screen and (max-width: 940px) {
  .form_title {
    width: 91%;
  }
}
@media screen and (max-width: 768px) {
  .p_title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 17px;
  }
  .form_title {
    font-size: 12px;
    padding: 9px 14px;
    margin: 0 auto 7px;
  }
  button {
    max-width: 91% !important;
    width: 100% !important;
  }
  .announcement {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 37px;
  }
}
/* ------------------------------------------------------
Entry
------------------------------------------------------ */
.p_info {
  margin: 30px;
  text-align: center;
  font-size: 20px;
}
.p_sub_info {
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
.p_sub_info_red {
  color: #d71920;
  font-size: 14px;
  text-align: center;
  margin-bottom: 30px;
}
.entry {
  /* background: #f9f9f9; */
  padding: 85px 0 142px;
}
.entry_form table {
  max-width: 940px;
  width: 100%;
  margin: 0 auto 73px;
}
.entry_form table.tb02 {
  margin: 0 auto 42px;
}
.entry_form tr {
  border-bottom: 1px solid #000;
}
.entry_form .tb02 tr:last-child {
  border: none;
}
.entry_form th, .entry_form td {
  font-size: 14px;
  font-weight: 400;
}
.entry_form th {
  width: 25%;
  line-height: 1.5;
  padding: 19px 5px 11px 0;
}
.entry_form .tb02 th {
  padding: 19px 5px 24px 0;
}
.entry_form th strong {
  font-size: 16px;
}
.entry_form th .req {
  position: relative;
  width: 100%;
  display: inline-block;
  padding-right: 45px;
}
.entry_form th .req:after {
  content: "※";
  position: absolute;
  font-size: 14px;
  color: #ff0000;
  top: 0;
  right: 0;
}
.entry_form td {
  padding: 19px 6px 21px;
}
.entry_form input, .entry_form textarea {
  font-size: 14px;
  border: 1px solid #a5acb2;
  background: #fff;
  padding: 5px;
  color: #333;
}
.entry_form textarea {
  max-width: 512px;
  width: 100%;
  height: 125px;
  overflow: auto;
  resize: none;
  padding: 13px 12px;
}
.entry_form input[type=text], .entry_form input[type=email] {
  max-width: 405px;
  width: 100%;
  height: 29px;
}
.entry_form input[type=radio] {
  margin: 10px 5px 10px 10px;
  cursor: pointer;
}
.entry_form select {
  font-size: 16px;
  /* font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, sans-serif; */
  max-width: 400px;
  width: 100%;
  height: 29px;
  border-radius: 5px;
  border: 1px solid #a5acb2;
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: auto;
}
select::-ms-expand {
  display: block;
}
.input_form01, .input_form03 {
  display: flex;
}
.c_input, .p_input {
  display: flex;
  align-items: center;
}
.input_form01 .p_input:not(:last-of-type) {
  margin-right: 5px;
}
.input_form01 .input_lable {
  margin-right: 4px;
  word-break: keep-all;
}
.input_form01 input {
  max-width: 120px !important;
}
.input_form02 .c_input:not(:last-of-type) {
  margin-bottom: 10px;
}
.input_form02 .c_input .input_lable {
  max-width: 118px;
  width: 100%;
}
.input_form02 .c_input span {
  padding-bottom: 13px;
}
.input_form03 .p_input:not(:last-of-type) {
  position: relative;
  margin-right: 13px;
}
.input_form03 .p_input:not(:last-of-type):after {
  content: "-";
  position: absolute;
  font-size: 14px;
  color: #000;
  top: 5px;
  right: -8px;
}
.input_form03 input {
  max-width: 122px !important;
}
.input_form04 .check_list li {
  width: 29.5%;
  margin-bottom: 4px;
  display: inline-block;
  vertical-align: top;
}
.input_form04 input[type=radio] {
  margin-right: 7px;
}
.entry_form button {
  max-width: 216px;
  height: 52px;
  border-radius: 10px;
  box-shadow: 10px 5px 5px #aaa;
}
.entry_form button:hover {
  opacity: 0.7;
}
.entry_form button:active {
  position: relative;
  top: 5px;
  left: 5px;
  box-shadow: -2px -2px 5px #aaa;
}
.entry_form button[disabled] {
  position: relative;
  top: 5px;
  left: 5px;
  box-shadow: -2px -2px 5px #aaa;
  cursor: default;
  background-color: #ccc;
}
.entry_form button[disabled]:hover {
  opacity: 1;
}
.per_infor {
  padding: 45px 0 39px;
}
.per_infor a {
  color: #00e;
}
.per_infor a:hover {
  text-decoration: underline;
}
.per_infor .inner {
  max-width: 802px;
}
div.entry_btn_area {
  border-top: 2px solid #e53747;
  padding: 45px 0 39px;
}
div.entry_btn_area p{
  text-align: center;
  margin-top: 40px;
}
div.entry_btn_area.two_btn {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
div.entry_btn_area.two_btn p{
  grid-column: span 2;
  text-align: center;
  margin-top: 40px;
}
div.entry_btn_area.two_btn > .back_btn {
  background: #888;
}
.pi_tit {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 9px;
}
.pi_cont {
  color: #333;
  line-height: 1.4;
  border: 1px solid #a5acb2;
  background: #f2f2f2;
  height: 160px;
  overflow: auto;
  padding: 3px 9px;
  margin-bottom: 22px;
}
.pi_check {
  font-size: 18px;
  font-weight: 700;
  max-width: 500px;
  width: 100%;
  padding-left: 50px;
  margin: 0 auto;
}
.pi_check .cb {
  padding: 0 0 0 32px;
}
.industory_hr {
  margin: 10px 0 30px 0;
}
@media screen and (max-width: 940px) {
  .entry_form table {
    width: 91%;
  }
}
@media screen and (max-width: 768px) {
  .p_info {
    text-align: left;
    font-size: 14px;
  }
  .entry {
    padding: 40px 0 70px;
  }
  .entry_form table {
    margin: 0 auto 47px;
  }
  .entry_form table.tb02 {
    margin: 0 auto 18px;
  }
  .entry_form th, .entry_form td {
    width: 100%;
    display: block;
  }
  .entry_form th {
    line-height: 1.3;
    padding: 13px 0 1px;
  }
  .entry_form .tb02 th {
    padding: 8px 0 1px;
  }
  .entry_form th .req {
    width: auto;
  }
  .entry_form td {
    padding: 12px 0 29px;
  }
  .entry_form input[type=text], .entry_form input[type=email], .entry_form select {
    height: 50px;
    max-width: 100%;
  }
  .entry_form select {
    appearance: none;
    background: url("/media/images/tm/select_bg_sp.png") center right no-repeat;
    padding: 0 64px 0 14px;
    border-radius: 3px;
  }
  .entry_form textarea {
    max-width: 100%;
    height: 165px;
  }
  .input_form01 input {
    max-width: 127px !important;
  }
  .input_form01 .p_input:not(:last-of-type) {
    margin-right: 14px;
  }
  .input_form01 .input_lable {
    margin-right: 6px;
  }
  .input_form02 .c_input {
    flex-direction: column;
    align-items: flex-start;
  }
  .input_form02 .c_input:not(:last-of-type) {
    margin-bottom: 11px;
  }
  .input_form02 .c_input02 {
    flex-direction: column-reverse;
  }
  .input_form02 .c_input span {
    padding-bottom: 9px;
  }
  .input_form02 .c_input .input_lable {
    padding: 6px 0 14px;
  }
  .input_form03 .p_input {
    width: calc((100% - 40px) / 3);
  }
  .input_form03 input {
    max-width: 100% !important;
  }
  .input_form03 .p_input:not(:last-of-type) {
    margin-right: 20px;
  }
  .input_form03 .p_input:not(:last-of-type):after {
    top: 17px;
    right: -12px;
  }
  .input_form04 .check_list {
    display: flex;
    flex-wrap: wrap;
  }
  .input_form04 .check_list li {
    width: 50%;
  }
  .per_infor {
    padding: 28px 0 35px;
  }
  .pi_cont {
    height: 400px;
    margin-bottom: 19px;
  }
  .pi_check {
    font-size: 14px;
    text-align: left;
    padding-left: 0px;
  }
}
/* ------------------------------------------------------
Question, Contact
------------------------------------------------------ */
.question {
  padding: 85px 0 124px;
  border-bottom: 2px solid #0564ff;
  background: #f9f9f9;
}
.qc_form .form_title {
  text-align: center;
  padding: 22px 22px 29px;
  margin: 0 auto 50px;
}
.qc_form .form_title .large {
  font-size: 27px;
  line-height: 1.5;
}
.qc_form .form_title .norm {
  font-weight: 400;
}
.qc_form dl {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
.qc_form02 dl {
  margin: 0 auto 113px;
}
.qc_form dd {
  border-bottom: 1px solid #000;
  margin-bottom: 46px;
}
.qc_title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #d71920;
  border-radius: 20px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9px 10px;
}
.qc_content {
  padding: 16px 0 31px;
}
.qc_txt {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.qc_ans {
  display: flex;
  justify-content: center;
}
.qc_list {
  max-width: 654px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -11px;
}
.qc_form02 .qc_list {
  max-width: 100%;
}
.qc_list li {
  width: calc((100% - 46px) / 2);
  margin-bottom: 11px;
}
.qc_form02 .qc_list li {
  width: calc((100% - 48px) / 3);
}
.qc_form01 .qc_list li:nth-child(2n-1) {
  margin-right: 46px;
}
.qc_form02 .qc_list li:not(:nth-child(3n)) {
  margin-right: 24px;
}
.qc_list li label {
  display: flex;
  align-items: center;
  height: 100%;
}
.qc_list li label input {
  margin-right: 10px;
}
.qc_list li label span {
  font-size: 20px;
  width: 100%;
  height: 100%;
  color: #333;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #e6e6e6;
  padding: 10px 20px 11px;
}
.qc_form02 .qc_list li label span {
  font-size: 18px;
  padding: 10px 19px 11px;
}
.qc_ans select {
  font-size: 20px;
  color: #333;
  border: 1px solid #64a0fb;
  border-radius: 3px;
  background: #fff url("/media/images/tm/ico_arrow.png") center right 24px no-repeat;
  max-width: 630px;
  width: 100%;
  height: 47px;
  padding: 0 40px 0 20px;
}
.qc_ans textarea {
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 10px;
  resize: none;
  max-width: 630px;
  width: 100%;
  height: 125px;
}
.qc_form02 .qc_ans textarea {
  height: 240px;
}
.rate {
  float: left;
}
.rate:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.rate:not(:checked) > label {
  float: right;
  width: 80px;
  height: 77px;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 30px;
  color: #ccc;
}
.rate:not(:checked) > label:before {
  content: "";
  position: absolute;
  background: url("/media/images/tm/ico_star.png") center center no-repeat;
  background-size: cover;
  width: 80px;
  height: 77px;
}
.rate > input:checked ~ label:before, .rate:not(:checked) > label:hover:before, .rate:not(:checked) > label:hover ~ label:before {
  background: url("/media/images/tm/ico_star_over.png") center center no-repeat;
  background-size: cover;
}
.star-cb-group {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.star-cb-group > input {
  display: none;
}
.star-cb-group > input + label {
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 80px;
  height: 77px;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  margin: 0 17px;
}
.star-cb-group > input + label:before {
  content: "";
  position: absolute;
  background: url("/media/images/tm/ico_star.png") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.star-cb-group > input:checked ~ label:before, .star-cb-group > input + label:hover ~ label:before, .star-cb-group > input + label:hover:before {
  background: url("/media/images/tm/ico_star_over.png") center center no-repeat;
  background-size: cover;
}
.star-cb-group > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}
.star-cb-group > .star-cb-clear + label:before {
  width: 0.5em;
}
.star-cb-group:hover > input + label:before {
  content: "";
  position: absolute;
  background: url("/media/images/tm/ico_star.png") center center no-repeat;
  background-size: cover;
  width: 80px;
  height: 77px;
  top: 0;
  left: 0;
}
.star-cb-group:hover > input + label:hover ~ label:before, .star-cb-group:hover > input + label:hover:before {
  background: url("/media/images/tm/ico_star_over.png") center center no-repeat;
  background-size: cover;
}
.qc_form button {
  width: 256px;
  height: 62px;
}
@media screen and (max-width: 940px) {
  .qc_form dl {
    width: 91%;
  }
}
@media screen and (max-width: 768px) {
  .question {
    padding: 50px 0 90px;
  }
  .qc_form02 dl {
    margin: 0 auto 60px;
  }
  .qc_form dd {
    margin-bottom: 30px;
  }
  .qc_form .form_title {
    padding: 9px 14px;
    margin: 0 auto 15px;
  }
  .qc_form .form_title .large {
    font-size: 15px;
  }
  .qc_title {
    font-size: 15px;
    width: 100px;
    padding: 6px 10px;
  }
  .qc_content {
    padding: 16px 0 21px;
  }
  .qc_txt {
    font-size: 14px;
    line-height: 1.4;
  }
  .qc_list li {
    width: 100% !important;
    margin: 0 0 10px !important;
  }
  .qc_list li label span, .qc_ans select {
    font-size: 16px !important;
  }
  .qc_ans select {
    height: 40px;
    background: #fff url("/media/images/tm/ico_arrow.png") center right 14px no-repeat;
  }
  .qc_form02 .qc_ans textarea {
    height: 125px;
  }
  .star-cb-group > input + label, .star-cb-group:hover > input + label:before {
    width: 9.115vw;
    height: 8.724vw;
  }
  .star-cb-group > input + label {
    margin: 0 1.042vw;
  }
  .qc_form button {
    height: 52px;
  }
}
/* ------------------------------------------------------
Video
------------------------------------------------------ */
.video {
  padding: 20px 0 150px;
}
.v_title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin: 5px auto 9px;
}
.v_title span {
  font-size: 12px;
  color: #fff;
  background: #000;
  width: 51px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 19px;
}
.v_content {
  display: flex;
  justify-content: center;
  height: 396px;
  margin-bottom: 9px;
}
.v_content iframe {
  border: none;
}
.v_video {
  width: 70%;
}
.v_chat {
  width: 30%;
}
.v_content iframe {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1001px) {
  .video02 .v_title {
    max-width: 700px;
  }
  .v_right {
    position: fixed;
    width: 30%;
    height: 65%;
    top: 213px;
    right: 180px;
  }
  .v_left {
    position: fixed;
    width: 20%;
    height: 65%;
    top: 213px;
    left: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .video {
    padding: 20px 0 75px;
  }
  .v_content {
    flex-direction: column;
    height: auto;
  }
  .v_video, .v_chat {
    width: 100%;
  }
  .v_video {
    height: 51vw;
  }
  .v_chat {
    height: 40vw;
  }
}
/* ------------------------------------------------------
Mypage
------------------------------------------------------ */
/* KVバナー（ズーム縮小時も全幅表示） */
.mypage-kv {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.mypage-kv picture {
  display: block;
  width: 100%;
}
.mypage-kv img {
  width: 100%;
  height: auto;
  display: block;
}
/* index */
.menu.mp {
  width: 100%;
  justify-content: center;
}
.menu.mp li {
  /* font-family: 'Noto Sans JP', sans-serif; */
  font-family: "Hiragino Sans", "Yu Gothic", sans-serif;
}
.menu.mp li > a, .menu.mp li > button {
  font-size: 16px;
  font-weight: 700;
}
.menu.mp li > button {
  max-width: 100% !important;
}
.menu.mp li:last-child > a::after, .menu.mp li:last-child > button::after {
  display: none;
}
.menu.mp li .frame {
  color: #fff;
  background: #0564FF;
  border: 1px solid #0564FF;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.menu.mp li:last-child > a:hover .frame, .menu.mp li:last-child > button:hover .frame {
  background: #fff;
  color: #0564FF;
}
.menu.mp li .print {
  width: 28px;
  height: 25px;
  margin-right: 5px;
  background: url("/media/images/tm/ico_print.png") no-repeat 0 0 / 100% auto;
}
.mypage {
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
  padding: 78px 0 60px;
}
.mypage .p_title {
  margin-bottom: 47px;
}
.block_mp {
  margin: 0 0 95px;
}
.block_mp .qc_title {
  width: auto;
  display: inline-block;
  padding: 9px 35px;
}
.block_mp.block02 .qc_title {
  margin: 0 0 20px;
}
.bm_tbl {
  margin: 0 0 49px;
}
.bm_tbl.tbl02 {
  padding: 0 20px;
  background: #F2F2F2;
}
.bm_tbl dl {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
}
.bm_tbl.tbl02 dl {
  padding: 27px 10px 21px 3px;
  border-bottom: 1px solid #ccc;
}
.bm_tbl.tbl02 dl:last-child {
  border: none;
}
.bm_tbl dt, .bm_tbl dd {
  font-size: 14px;
}
.bm_tbl.tbl01 dt {
  width: 188px;
  padding: 27px 0 28px;
}
.bm_tbl.tbl01 dd {
  width: calc(100% - 188px);
  padding: 27px 10px 28px 38px;
  word-break: break-all;
}
.bm_tbl.tbl02 dt {
  padding-left: 5px;
  width: 117px;
}
.bm_tbl.tbl02 dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  width: calc(100% - 117px);
}
.bm_tbl.tbl02 dd p {
  display: inline-block;
  width: 70%;
}
.bm_calendar {
  margin-left: 15px;
  padding: 10px 15px;
  width: 30%;
  background: #fff;
  font-size: 0.7rem;
  text-align: center;
  border-radius: 10px;
}
.bm_calendar ul {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.bm_calendar li {
  width: 20%;
}
.bm_calendar li + li {
  margin-left: 10px;
}
.bm_calendar a {
  display: block;
  transition: all 0.3s ease-in-out;
}
.bm_calendar a:hover {
  opacity: 0.7;
}
.bm_btn {
  width: 216px;
  height: 52px;
  margin: 0 auto;
}
.bm_btn .btn {
  font-size: 19px;
  font-weight: 700;
  color: #0564FF;
  border: 1px solid #0564FF;
  transition: all 0.3s ease-in-out;
}
.bm_btn .btn:hover {
  color: #fff;
  background: #0564FF;
  opacity: 1;
}
@media screen and (min-width: 1001px) {
  .menu.mp:last-of-type:after {
    display: none;
  }
  .menu.mp li:last-child::after {
    content: "";
    position: absolute;
    width: 1px;
    background: #4d4d4d;
    top: 14px;
    bottom: 14px;
    right: 0;
  }
}
@media screen and (max-width: 940px) {
  .mypage {
    width: 91%;
  }
}
@media screen and (max-width: 768px) {
  .mypage {
    padding: 48px 0 30px;
  }
  .mypage .p_title {
    margin-bottom: 27px;
  }
  .block_mp {
    margin: 0 0 55px;
  }
  .block_mp .qc_title {
    display: block;
    text-align: center;
  }
  .bm_tbl.tbl02 {
    padding: 2px 10px 10px;
  }
  .bm_tbl.tbl01 dt {
    width: 130px;
    padding: 20px 0 21px;
  }
  .bm_tbl.tbl01 dd {
    width: calc(100% - 130px);
    padding: 20px 5px 21px 18px;
  }
  .bm_tbl.tbl02 dt {
    width: 100px;
    padding: 21px 5px 15px 3px;
  }
  .bm_tbl.tbl02 dd {
    display: block;
    width: calc(100% - 100px);
    padding: 21px 5px 15px 13px;
  }
  .bm_calendar {
    display: block;
    width: 100%;
    margin-top: 15px;
    margin-left: 0;
    padding: 5px 10px;
  }
  .bm_tbl.tbl02 dd p {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .menu.mp li > a, .menu.mp li > button {
    font-size: 4.267vw;
  }
  .menu.mp li .print {
    width: 7.467vw;
    height: 6.667vw;
    margin-right: 1.333vw;
  }
}
/* session */
.session_block {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.session_block .form_title {
  margin: 0 auto 10px;
}
.session_block .bm_btn .btn {
  color: #fff;
  background: #0564FF;
}
.session_block .bm_btn .btn:hover {
  color: #0564FF;
  background: #fff;
}
.session_list {
  padding: 0 30px;
  margin: 0 auto 52px;
  max-width: 1000px;
  width: 100%;
}
.session_list li {
  font-size: 14px;
  position: relative;
  padding-left: 15px;
  margin-bottom: 6px;
}
.session_list li::before {
  content: "※";
  position: absolute;
  font-size: 14px;
  top: 1px;
  left: 0;
}
.session_tbl {
  margin: 0 50px 60px;
  padding: 0 20px 20px;
  background-color: #d1d3d4;
  border-radius: 10px;
}
.session_tbl .ses_date {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding: 15px;
  text-align: center;
}
.session_tbl_radius {
  border: 1px solid #d1d3d4;
  border-radius: 10px;
  margin: 10px;
  padding: 0;
  overflow: hidden;
}
.session_tbl table {
  margin: 0;
  max-width: none;
  width: 100%;
  table-layout: fixed;
}
.session_tbl tr {
  border: none;
}
.session_tbl th, .session_tbl td {
  position: relative;
  border: 1px solid #d1d3d4;
}
.session_tbl th {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #d71920;
  position: relative;
  border-bottom: 1px solid #d1d3d4;
  text-align: left;
  padding-left: 20px;
  width: 100%;
}
.session_tbl td {
  font-size: 14px;
  background-color: #fff;
  position: relative;
}
.session_tbl td::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.session_tbl td:hover::before {
  opacity: 0.1;
}
.session_tbl td.ses_large {
  width: 100%;
}
.session_tbl td.ses_middle {
  width: 50%;
}
.session_tbl td.ses_small {
  width: 33%;
}
.session_tbl td .cb {
  font-size: 18px;
  padding: 0 0 0 30px;
  margin-right: 17px;
  position: absolute;
  top: 20px;
  left: 19px;
  z-index: 5;
}
.session_tbl td .cb .checkmark {
  width: 23px;
  height: 23px;
}
.session_tbl td .cb .checkmark:after {
  left: 8px;
  top: 2px;
  width: 7px;
  height: 14px;
  border-width: 0 2px 2px 0;
}
.md_code {
  float: left;
  font-size: 16px;
  font-weight: 700;
  margin-right: 20px;
}
.md_time_cate {
  float: left;
  font-size: 16px;
  font-weight: 700;
  margin-right: 20px;
}
.session_tbl .btn-modal {
  display: block;
  padding: 15px 19px 100px;
  position: relative;
  z-index: 3;
}
.md_infor {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
  padding-left: 60px;
  min-height: 10px;
}
.md_infor .tag01 {
  margin-right: 8px;
}
.md_infor .tag01 i {
  display: inline-block;
  width: 16px;
  height: 14px;
  margin-right: 3px;
  background: url("/media/images/tm/ico_hphone.png") no-repeat 0 0 / 100% auto;
}
.md_infor .tag02 {
  font-size: 13px;
  color: #0564FF;
  border: 1px solid #0564FF;
  border-radius: 13px;
  padding: 4px 8px;
}
.md_infor .tag02.lb {
  color: #61C9EE;
  border: 1px solid #61C9EE;
}
.md_ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin: 10px 0 10px 0;
}
.md_venue {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  background-color: #6d6e71;
  margin: 10px 0 10px 0;
  padding: 5px 10px 2px;
  width: fit-content;
  border-radius: 8px;
}
.session-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #888;
  padding: 3px 8px;
  margin: 2px 4px 2px 0;
  border-radius: 12px;
  white-space: nowrap;
}
.md_img {
  width: 100px;
  border-radius: 50px;
  float: left;
  margin-right: 20px;
}
.md_content.dflex {
  display: flex;
  flex-wrap: wrap;
}
.md_content.dflex li {
  width: 400px;
  margin-bottom: 20px;
}
.md_content p {
  line-height: 1.4;
  margin-bottom: 7px;
}
.md_content.dflex p {
  margin-right: 28px;
}
.f_tag {
  font-size: 13px;
  font-weight: 900;
  color: #d71920;
  letter-spacing: -0.04em;
  text-align: center;
  position: absolute;
  right: 5px;
  bottom: -10px;
  width: 60px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: 2px solid #d71920;
}
.f_tag.bg {
  font-size: 18px;
  color: #fff;
  background: #d71920;
}
.session_form button {
  max-width: 216px;
  height: 52px;
  transition: all 0.3s ease-in-out;
}
.ses_info {
  margin: 0 0 30px 30px;
}
.full_mark {
  display: flex;
  font-size: 14px;
  color: #fff;
  background: #d71920;
  width: fit-content;
  text-align: center;
  padding: 2px 10px 2px 10px;
  justify-content: center;
  border-radius: 5px;
  white-space: nowrap;
}
.pre_full_mark {
  display: flex;
  font-size: 14px;
  color: #d71920;
  background: #fff;
  border: 1px solid #d71920;
  width: fit-content;
  text-align: center;
  padding: 2px 10px 2px 10px;
  justify-content: center;
  border-radius: 5px;
  white-space: nowrap;
}
.seminar_tags_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, max-content));
  gap: 10px;
  justify-content: start;
}
.seminar_tags_list li {
  padding: 4px 7px;
  border: solid 1px #757575;
  border-radius: 10px;
  font-size: 1rem;
  text-align: center;
  color: #757575;
}
@media screen and (max-width: 1400px) {
  .session_tbl td.ses_small {
    width: 100%;
  }
  .session_tbl td.ses_small .c_btn .btn {
    max-width: 80%;
    margin-inline: auto;
  }
  .md_content.dflex li {
    width: 330px;
  }
}
@media screen and (max-width: 1000px) {
  .session_tbl {
    margin: 0 5px 60px;
  }
  .session_list {
    margin-bottom: 35px;
  }
  .session_list li {
    font-size: 13px;
  }
  .session_list li::before {
    top: 0;
  }
  .ss_guide {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .session_tbl th, .session_tbl td {
    display: block;
    font-size: 13px;
    padding: 10px 10px 10px 20px;
  }
  .session_tbl .btn-modal {
    padding: 15px 0px 100px;
  }
  .session_tbl td.ses_middle, .session_tbl td.ses_small {
    width: 100%;
  }
  .md_content.dflex li {
    width: 330px;
  }
  .md_content.dflex p {
    margin-right: 0;
  }
  .md_ttl {
    margin: 22px 0 10px 0;
  }
}
@media screen and (max-width: 430px) {
  .session_tbl td .cb {
    top: 10px;
  }
  .md_content.dflex li {
    width: 270px;
  }
  .md_code {
    font-size: 14px;
    margin-right: 5px;
  }
  .md_time_cate {
    font-size: 14px;
    margin-right: 5px;
  }
}
/* modal */
.modal {
  max-width: 620px;
  width: 100%;
  background: #fff;
  padding: 30px 56px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.modal .m-container .m-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  background: url("/media/images/tm/ico_close.png") no-repeat 0 0 / 100% auto;
}
.m_ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  padding-bottom: 32px;
  margin-bottom: 18px;
  border-bottom: 1px solid #000;
}
.m_content {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 26px;
}
.m_list > p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}
.m_list > p::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 80%;
  background: #000;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.m_list ul {
  display: flex;
  flex-wrap: wrap;
}
.m_list ul li {
  width: calc((100% - 148px) / 2);
  margin: 0 74px 22px 0;
}
.m_list ul li figure {
  margin-bottom: 15px;
}
.m_list ul li p {
  font-size: 14px;
  line-height: 1.4;
}
.m_action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;

    .h_btn {
        width: auto;
        height: auto;
        margin-left: 0;
    }

    .btn {
        padding: 30px 90px;
        font-size: 18px;
        white-space: nowrap;
    }
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 30px 3.529vw 10px;
  }
  .modal .m-container .m-close {
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
  }
  .m_ttl {
    font-size: 15px;
    padding-bottom: 1.953vw;
    margin-bottom: 1.302vw;
  }
  .m_content {
    font-size: 13px;
    margin-bottom: 1.302vw;
  }
  .m_list > p {
    margin-bottom: 1.302vw;
  }
  .m_list ul li {
    width: calc((100% - 10.417vw) / 2);
    margin: 0 5.208vw 2.865vw 0;
  }
  .m_list ul li figure img {
    width: 50%;
  }
}
/* cart */
.cart {
  background: #f9f9f9;
  padding: 10px 0;
}
.cart_box {
  max-width: 1088px;
  width: 100%;
  background: #fff;
  margin: 0 auto;
}
.cb_inner {
  display: flex;
  padding: 0;
}
.cb_inner .c_block {
  margin-bottom: 10px;
}
.cb_inner .c_block div.download_info {
  text-align: center;
  font-size: 28px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  margin: 18px;
}
.cb_inner .c_block div.download_detail {
  text-align: center;
  font-size: 18px;
}
.cb_inner .c_block div.download_alert {
  text-align: left;
  font-size: 14px;
  padding-left: 80px;
}
.cb_inner hr.fold_line {
  border-top: 1px dotted #ccc;
  margin: 5px;
}
.cb_inner .col {
  width: 50%;
  padding: 0;
}
.cb_inner .col .col_main {
  padding: 0 10px;
}
.cb_inner .col .col_main .tk_no {
  text-align: center;
}
.cb_inner .col .upper_col_left {
  min-height: 616px;
}
.cb_inner .col .upper_col_right {
  min-height: 751px;
}
.cb_inner .belt {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin: 30px 50px;
  padding: 10px 50px;
}
.cb_inner .belt_gin {
  background-color: #6d6e71;
}
.cb_inner .belt_akebono {
  background-color: #d71920;
}
.cb_inner .belt_kinari {
  background-color: #fff;
  color: #000;
  border: 1px solid;
}
.cb_inner .belt_akane {
  background-color: #e67c60;
}
.cb_inner .cart_tb.tb01 {
  text-align: center;
  margin: 30px 0 50px;
}
.cb_inner .cart_tb.tb01 .tk_company, .cb_inner .cart_tb.tb01 .tk_divition {
  font-size: 32px;
}
.cb_inner .cart_tb.tb01 .tk_name {
  font-size: 40px;
}
.cb_inner .col:first-of-type {
  border-right: 1px dotted #CCCCCC;
}
.c_img {
  text-align: center;
}
.c_img.img01 {
  margin-bottom: 28px;
}
.c_img.img02 {
  margin: 30px 0;
}
.c_img.img03 {
  margin: 10px 0;
}
.cart_ttl {
  font-size: 19px;
  font-weight: 700;
  padding: 12px 23px;
  border-radius: 30px;
  margin-bottom: 8px;
  border: 1px solid #999999;
}
.cart_sub_ttl {
  font-size: 16px;
  font-weight: 700;
  padding: 10px;
}
.cart_tb {
  padding: 0 6px;
  margin-bottom: 5px;
}
.cart_tb.tb02 dl {
  margin-bottom: 5px;
}
.cart_tb.tb02 dt, .cart_tb.tb02 dd {
  font-size: 14px;
  line-height: 1.5;
}
.cart_tb.tb02 dt {
  background-color: #000;
  color: #fff;
  padding: 2px 20px;
  width: 200px;
  text-align: center;
  border-radius: 10px;
}
.cart_tb.tb02 dd span.ses_venue {
  margin-left: 10px;
  color: #fff;
  background-color: #111;
  display: inline-block;
  width: 130px;
  text-align: center;
}
.cart_tb.tb02 dd span.ses_id {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 700;
}
.cart_tb.tb02 dd span.ses_cate {
  font-size: 14px;
  margin-left: 10px;
  font-weight: 700;
}
.cart_tb.tb02 dd.ses_title {
  font-size: 12px;
  line-height: 1.3;
  margin: 5px 0;
}
.cart_txt {
  font-size: 14px;
  line-height: 1.5;
}
.cart_txt, .cart_list {
  padding: 0 18px;
  font-size: 14px;
}
.cart_list li {
  padding-left: 14px;
  margin-bottom: 5px;
  position: relative;
}
.cart_list.cl02 li {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 4px;
}
.cart_list li::before {
  content: "●";
  position: absolute;
  font-size: 10px;
  top: 3px;
  left: 0;
}
.cart_list.cl02 li::before {
  top: 4px;
}
.under_ses {
  color: red;
  float: left;
  padding-left: 20px;
  margin-bottom: 5px;
  text-align: center;
  width: 100%;
}
.under_ses img {
  width: 20px;
  height: 15px;
}
@media screen and (max-width: 1100px) {
  .cart_box {
    width: 91%;
  }
}
@media screen and (max-width: 768px) {
  .cart {
    padding: 40px 0 70px;
  }
  .cb_inner {
    display: block;
    padding: 60px 12px 70px;
  }
  .cb_inner .col {
    width: 100%;
    padding: 0 10px;
  }
  .cb_inner .col .upper_col_left {
    min-height: 100px;
  }
  .cb_inner .col .upper_col_right {
    min-height: 100px;
  }
  .cb_inner .col:first-of-type {
    border: none;
  }
  .c_img.img02 {
    margin-bottom: 30px;
  }
  .cart_tb, .cart_txt, .cart_list {
    margin-bottom: 30px;
  }
  .cart_ttl {
    font-size: 16px;
  }
  .cart_txt, .cart_list {
    padding: 0 15px;
  }
  .cart_txt {
    font-size: 14px;
  }
  .cart_list li, .cart_list.cl02 li {
    font-size: 12px;
    line-height: 1.4;
  }
  .cart_list li::before {
    font-size: 8px;
  }
  .cart_tb.tb02 dl {
    margin-bottom: 10px;
  }
  .cart_tb.tb02 dt, .cart_tb.tb02 dd {
    font-size: 14px;
    line-height: 1.4;
  }
  .cart_tb.tb02 dd {
    margin-bottom: 12px;
  }
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  header, footer {
    display: none;
  }
  .col .upper_col_left {
    min-height: 616px;
  }
  .col .upper_col_right {
    min-height: 751px;
  }
  .cart {
    background-color: #fff;
  }
  .cart_box {
    width: 1088px;
  }
}
/* ------------------------------------------------------
Booth
------------------------------------------------------ */
.menu.bth:last-of-type::after, .menu.bth li:not(:first-child) a::before {
  display: none;
}
.menu.bth li {
  width: 240px;
  position: relative;
}
.menu.bth li:first-child::after {
  content: "";
  position: absolute;
  width: 1px;
  background: #4d4d4d;
  top: 14px;
  bottom: 14px;
  right: 0;
}
.menu.bth li:not(:first-child) {
  margin-left: 10px;
}
.menu.bth li:nth-child(2) {
  margin-left: 20px;
}
.menu.bth li a {
  font-size: 18px;
}
.menu.bth li:not(:first-child) a:after {
  display: none;
}
.menu.bth li:not(:first-child) a span {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  border-radius: 8px;
  padding: 0 26px;
  position: relative;
  transition: opacity 0.3s ease-in-out;
  background: linear-gradient(45deg, #0564ff 0%, #43c29e 100%);
}
.menu.bth li:not(:first-child) a span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 16px;
  right: 14px;
  top: 50%;
  transform: translate(0, -50%);
  background: url("/media/images/tm/ico_menu_arrow_w.png") no-repeat 0 0 / 100% auto;
}
.menu.bth li:not(:first-child) a:hover span {
  opacity: 0.7;
}
@media screen and (max-width: 1000px) {
  .menu.bth li {
    width: 100%;
  }
  .menu.bth li:not(:first-child), .menu.bth li:nth-child(2) {
    margin-left: 0;
  }
  .menu.bth li:first-child::after {
    display: none;
  }
  .menu.bth li:not(:first-child) a {
    padding: 0 24px 0 14px;
    background: #1a1a1a;
    position: relative;
    transition: background 0.5s ease-in-out;
  }
  .menu.bth li:not(:first-child) a::after {
    content: "";
    position: absolute;
    display: block;
    opacity: 1;
    width: 11px;
    height: 17px;
    top: 50%;
    right: 8px;
    left: auto;
    transform: translate(0, -50%);
    background: url("/media/images/tm/ico_menu_arrow.png") no-repeat 0 0 / 100% 100%;
  }
  .menu.bth li:not(:first-child) a:hover {
    background: black;
  }
  .menu.bth li:not(:first-child) a span {
    width: auto;
    height: auto;
    padding: 0;
    background: none;
  }
  .menu.bth li:not(:first-child) a span::after {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .menu.bth li a {
    font-size: 4.8vw;
  }
  .menu.bth li:not(:first-child) a span {
    font-size: 4vw;
    height: 13.333vw;
  }
  .menu.bth li:not(:first-child) a span::after {
    width: 3.2vw;
    height: 4.267vw;
  }
}
/* A */
.ba_mv {
  background: url("/media/images/tm/booth/mv_bg_color.jpg") repeat-x 0 0;
  height: 680px;
}
.ba_mvInner {
  height: 100%;
  background: url("/media/images/tm/booth/mv_bg_A.jpg") no-repeat center center / auto 100%;
  position: relative;
}
.booth_mvtopic {
  padding: 10px;
  background: rgba(0, 20, 50, 0.2);
}
.booth_mvtopic .topic_inner {
  display: flex;
  align-items: center;
}
.booth_mvtopic .topic_inner figure {
  margin-right: 18px;
}
.booth_mvtopic .topic_inner dl {
  display: flex;
  align-items: center;
  color: #fff;
}
.booth_mvtopic .topic_inner dt {
  font-size: 20px;
  letter-spacing: 0.04em;
  padding-right: 15px;
  word-break: keep-all;
  position: relative;
}
.booth_mvtopic .topic_inner dt::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  right: 0;
  width: 1px;
  background: #fff;
}
.booth_mvtopic .topic_inner dd {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  padding-left: 15px;
}
.booth_mvinner {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 0;
  position: relative;
}
.b_video {
  max-width: 798px;
  width: 100%;
  margin: 0 215px 0 auto;
  padding: 10px;
  border-radius: 12px;
  background: rgba(0, 20, 50, 0.3);
}
.b_video .b_frame {
  padding: 4px;
  border-radius: 8px;
  background: #fff;
}
/*.b_video .b_frame iframe {
  max-width: 100%;
  height:auto;
}*/
@media (max-width: 768px) {
  .b_video .b_frame iframe {
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 769px) {
  .b_video .b_frame iframe {
    max-width: 100%;
    height: 410px;
  }
}
.booth_btn {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.booth_btn.back {
  left: 0;
}
.booth_btn.next {
  right: 0;
}
.booth_btn a {
  font-size: 12px;
  letter-spacing: 0.04em;
  width: 100px;
  height: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s ease-in-out;
  background-image: linear-gradient(45deg, #0564ff 0%, #43c29e 100%);
}
.booth_btn.back a {
  border-radius: 0 5px 5px 0;
}
.booth_btn.next a {
  border-radius: 5px 0 0 5px;
}
.booth_btn a:hover {
  opacity: 0.7;
}
.booth_btn a span {
  font-size: 18px;
  /* font-family: 'Oswald', sans-serif; */
  letter-spacing: 0.12em;
  margin: 4px 0 8px;
}
.booth_btn a i {
  width: 25px;
  height: 12px;
  display: inline-block;
}
.booth_btn.back a i {
  background: url("/media/images/tm/ico_back.png") no-repeat 0 0 / 100% auto;
}
.booth_btn.next a i {
  background: url("/media/images/tm/ico_next.png") no-repeat 0 0 / 100% auto;
}
.booth_container {
  max-width: 1440px;
  width: 100%;
  margin: -60px auto 0;
  padding-bottom: 73px;
}
.booth_list {
  display: flex;
  flex-wrap: wrap;
}
.booth_list .b_item {
  width: 100%;
  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1);
}
.booth_list .b_item a {
  display: block;
  background: #fff;
  padding: 0 20px 40px 0;
  position: relative;
}
.booth_list .b_item a::before, .b_list li a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  opacity: 0;
  border-radius: 8px;
  transition: opacity 0.3s ease-in-out;
  z-index: 3;
}
.booth_list .b_item:hover {
  box-shadow: none;
}
.booth_list .b_item:hover a::before, .b_list li:hover a::before {
  opacity: 0.3;
}
.b_item figure {
  margin-bottom: 15px;
  position: relative;
}
.b_item figure img {
  width: 100%;
}
.b_ttl, .b_txt {
  padding-left: 22px;
}
.b_ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
}
.b_txt {
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.b_btn {
  width: 69.5%;
  height: 40px;
  left: 0;
  bottom: 0;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out;
  background: linear-gradient(90deg, #00b7d6 0%, #0064da 100%);
}
.b_btn span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  /* font-family: 'Oswald', sans-serif; */
  color: #fff;
  padding-left: 27px;
  position: relative;
}
.b_btn span::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: url("/media/images/tm/ico_download_w.png") no-repeat 0 0 / 100% auto;
}
@media screen and (min-width: 769px) {
  .booth_list .b_item {
    margin: 0 10px;
    width: calc((100% - 80px) / 4);
  }
}
@media screen and (max-width: 800px) and (min-width: 769px) {
  .booth_container {
    margin: -15px auto 0;
  }
}
@media screen and (max-width: 1000px) and (min-width: 769px) {
  .booth_list .b_item {
    margin: 0 10px 20px;
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 1300px) and (min-width: 769px) {
  .booth_container {
    margin: -20px auto 0;
  }
}
@media screen and (max-width: 1500px) and (min-width: 769px) {
  .ba_mv {
    background: url("/media/images/tm/booth/mv_bg_A.jpg") no-repeat 0 0 / 100% auto;
    height: 45.333vw;
  }
  .booth_mvinner {
    padding: 2.667vw 0 0;
  }
  .b_video {
    max-width: 53.2vw;
    padding: 0.667vw;
    border-radius: 0.8vw;
    margin: 0 14.333vw 0 auto;
  }
  .b_video .b_frame {
    padding: 0.267vw;
    border-radius: 0.533vw;
  }
  .booth_btn a {
    font-size: 0.8vw;
    width: 6.667vw;
    height: 6.667vw;
  }
  .booth_btn.back a {
    border-radius: 0 0.333vw 0.333vw 0;
  }
  .booth_btn.next a {
    border-radius: 0.333vw 0 0 0.333vw;
  }
  .booth_btn a span {
    font-size: 1.2vw;
    margin: 0.267vw 0 0.533vw;
  }
  .booth_btn a i {
    width: 1.667vw;
    height: 0.8vw;
    display: inline-block;
  }
}
@media screen and (max-width: 940px) {
  .booth_container {
    width: 91%;
  }
}
@media screen and (max-width: 768px) {
  .ba_mv {
    height: 88.542vw;
  }
  .booth_mvinner {
    padding: 14.323vw 0 0;
  }
  .b_video {
    max-width: 69.01vw;
    margin: 0 auto;
    padding: 1.302vw;
    border-radius: 1.563vw;
  }
  .b_video .b_frame {
    padding: 0.521vw;
    border-radius: 1.042vw;
  }
  .booth_container {
    margin: -7.813vw auto 0;
    padding-bottom: 9.505vw;
  }
  .booth_list .b_item {
    margin-bottom: 10px;
  }
  .booth_btn a {
    font-size: 1.563vw;
    width: 13.021vw;
    height: 13.021vw;
  }
  .booth_btn a span {
    font-size: 2.344vw;
    margin: 0.521vw 0 1.042vw;
  }
  .booth_btn a i {
    width: 3.255vw;
    height: 1.563vw;
  }
  .booth_list .b_item a {
    padding: 0 10px 35px 0;
  }
  .b_item figure {
    margin-bottom: 10px;
  }
  .b_ttl, .b_txt {
    padding-left: 20px;
  }
  .b_ttl {
    margin-bottom: 1px;
  }
  .b_txt {
    margin-bottom: 20px;
  }
  .b_btn {
    width: 63%;
    height: 35px;
  }
}
/* B */
.bb_mv {
  background: url("/media/images/tm/booth/mv_bg_B.jpg") no-repeat 0 0 / cover;
}
.bb_mvinner {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 40px 0 0;
  display: flex;
}
.bb_side {
  width: 300px;
  background: #fff;
  padding: 10px 10px 34px;
  border-radius: 0 8px 0 0;
  box-shadow: 1.414px 1.414px 2px 0px rgba(0, 0, 0, 0.1);
}
.side_img {
  margin-bottom: 37px;
}
.side_content .sc_ttl {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 9px;
  position: relative;
}
.side_content .sc_ttl::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  background: linear-gradient(90deg, #0564ff 0%, #43c29e 100%);
}
.side_content .sc_txt {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 0.08em;
  text-align: center;
}
.bb_container {
  width: calc(100% - 300px);
  padding: 0 0 80px;
  position: relative;
}
.cont_block {
  display: flex;
  padding: 0 40px 40px;
  width: 100%;
  margin: 0 auto;
}
.cont_block .b_video {
  max-width: 100%;
  margin: 0;
}
.cont_block .b_video .b_frame figure img {
  width: 100%;
}
.cont_block .b_video .b_frame figure iframe {
  width: 100%;
}
.cont_block .b_bnr {
  width: 340px;
  margin-left: 20px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 1.414px 1.414px 2px 0px rgba(3, 0, 0, 0.2);
}
.cont_block .b_bnr .b_bnrInner {
  padding: 12px 10px 20px;
}
.cont_block .b_bnr .bnr_ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 10px;
}
.cont_block .b_bnr .bnr_txt {
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  background: #f2f4f6;
  padding: 15px 22px 18px;
  border-radius: 0 0 8px 8px;
  display: flex;
  flex-grow: 1;
}
.cont_block .b_bnr .bnr_img {
  margin-bottom: 20px;
  text-align: center;
}
.cont_block .b_bnr .bnr_btn {
  max-width: 220px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
}
.cont_block .b_bnr .bnr_btn a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  transition: opacity 0.3s ease-in-out;
  background: linear-gradient(90deg, #ff6400 0%, #ffb400 100%);
}
.cont_block .b_bnr .bnr_btn a:hover {
  opacity: 0.7;
}
.cont_block .b_bnr .bnr_btn a span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  padding-right: 30px;
  color: #fff;
  position: relative;
}
.cont_block .b_bnr .bnr_btn span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: url("/media/images/tm/ico_download_w.png") no-repeat 0 0 / 100% auto;
}
.bb_container .b_new {
  height: 80px;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  position: absolute;
  align-items: center;
}
.bb_container .b_new dt, .bb_container .b_new dd {
  height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
}
.bb_container .b_new dt {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.12em;
  /* font-family: 'Oswald', sans-serif; */
  width: 100px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.bb_container .b_new dd {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  padding: 0 10px 0 25px;
  width: calc(100% - 100px);
  background: rgba(0, 0, 0, 0.3);
}
.booth_B .et_title {
  padding-top: 50px;
}
.booth_B .et_title::before {
  height: 50px;
  background: linear-gradient(0deg, #00b7d6 0%, #0064da 100%);
}
#b_service {
  background: #f2f4f6;
  padding: 0 0 60px;
}
#b_recom {
  background: #ebeef0;
  padding: 0 0 80px;
}
.b_list {
  display: flex;
  flex-wrap: wrap;
}
.b_list li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 1.414px 1.414px 2px 0px rgba(3, 0, 0, 0.2);
}
.b_list li a {
  display: block;
  padding: 6px 6px 20px;
  border-radius: 8px;
  position: relative;
}
.b_list li a figure img {
  width: 100%;
}
.b_list li a .b_ttl, .b_list li a .b_txt {
  padding-left: 15px;
}
.s_btn {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #fff;
  width: 200px;
  height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  background: linear-gradient(90deg, #ff6400 0%, #ffb400 100%);
}
.s_btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 14px;
  top: 50%;
  transform: translate(0, -50%);
  background: url("/media/images/tm/ico_download_w.png") no-repeat 0 0 / 100% auto;
}
@media screen and (max-width: 1500px) and (min-width: 769px) {
  .cont_block {
    padding: 0 2.667vw 2.667vw;
  }
}
@media screen and (max-width: 1300px) and (min-width: 769px) {
  .bb_side {
    width: 250px;
  }
  .bb_container {
    width: calc(100% - 250px);
  }
  .cont_block .b_video {
    width: 46.154vw;
  }
  .cont_block .b_bnr {
    width: calc(100% - 47.487vw);
  }
}
@media screen and (min-width: 769px) {
  .cont_block .b_video {
    width: 50.667vw;
  }
  .cont_block .b_bnr {
    width: calc((100% - 50.667vw) - 20px);
  }
  .b_list {
    margin: 0 -10px;
  }
  .b_list li {
    margin: 0 10px;
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 1000px) {
  .bb_container .b_new dd {
    letter-spacing: 0;
  }
  .cont_block {
    display: block;
  }
  .cont_block .b_video {
    width: 460px;
    margin: 0 auto;
  }
  .cont_block .b_bnr {
    width: auto;
    margin: 20px 0 0;
    flex-direction: row;
  }
  .cont_block .b_bnr .b_bnrInner {
    width: 60%;
  }
  .cont_block .b_bnr .bnr_txt {
    width: 40%;
    border-radius: 0 8px 8px 0;
  }
}
@media screen and (max-width: 768px) {
  .bb_mvinner {
    flex-direction: column-reverse;
    padding: 5.208vw 0 0;
  }
  .bb_side {
    width: 100%;
    display: flex;
    border-radius: 1.042vw 1.042vw 0 0;
  }
  .side_img {
    height: 100px;
    margin: 0;
    padding-right: 5px;
  }
  .side_img img {
    object-fit: cover;
    /* font-family: "object-fit: cover"; */
    width: 100%;
    height: 100px;
  }
  .side_content {
    width: 100%;
  }
  .side_content .sc_ttl {
    font-size: 13px;
    margin-bottom: 5px;
    padding-bottom: 10px;
  }
  .side_content .sc_txt {
    font-size: 10px;
    line-height: 1.4;
  }
  .bb_container {
    width: 100%;
    padding: 0 0 5.208vw;
  }
  .cont_block {
    padding: 0;
    width: 91%;
  }
  .cont_block .b_bnr {
    margin: 5.208vw 0 0;
    border-radius: 1.042vw;
  }
  .cont_block .b_bnr .b_bnrInner {
    padding: 1.302vw;
    width: 50%;
  }
  .cont_block .b_bnr .bnr_ttl {
    font-size: 13px;
    margin-bottom: 0.651vw;
  }
  .cont_block .b_bnr .bnr_img {
    margin: 0 auto 0.651vw;
  }
  .cont_block .b_bnr .bnr_btn {
    height: 5.208vw;
  }
  .cont_block .b_bnr .bnr_btn a {
    border-radius: 3.906vw;
  }
  .cont_block .b_bnr .bnr_btn a span {
    font-size: 10px;
    padding-right: 15px;
  }
  .cont_block .b_bnr .bnr_btn span::after {
    width: 10px;
    height: 10px;
  }
  .cont_block .b_bnr .bnr_txt {
    font-size: 11px;
    line-height: 1.4;
    width: 50%;
    padding: 1.302vw;
    border-radius: 0 1.042vw 1.042vw 0;
  }
  .booth_B .et_title {
    padding-top: 33px;
  }
  .booth_B .et_title::before {
    height: 33px;
  }
  #b_service {
    padding: 0 0 30px;
  }
  #b_recom {
    padding: 0 0 40px;
  }
  .b_list li {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 375px) {
  .cont_block .b_bnr .bnr_txt {
    font-size: 10px;
  }
}
/* ------------------------------------------------------
archive
------------------------------------------------------ */
.no_archive_note {
  color: red;
  font-weight: bold;
  height: 10px !important;
}
@media screen and (max-width: 768px) {
  .no_archive_note {
    color: red;
    font-weight: bold;
    height: 0px !important;
  }
}
/*# sourceMappingURL=./tm_style.css.map */

/* ここから追加分 */
/* entry */
.invitation-code__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  max-width: 940px;
  width: 91%;
}

.invitation-code__container p {
  flex: 0 0 215px;
  line-height: 1.2;
}

.invitation-code__input {
  margin-right: 20px;
}

.invitation-code__input input {
  width: 300px;
  text-align: center;
  padding: 10px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .invitation-code__container {
    flex-direction: column;
    width: 95%;
  }

  .invitation-code__container p {
    flex: none;
    margin: 0 0 15px 0;
    text-align: center;
    padding-top: 0;
  }

  .invitation-code__input > input {
    width: 90%;
    max-width: 300px;
  }
}

/* 招待コード表示エリア */
.invitation-code-status {
  margin-top: 10px;
}

.invitation-code-valid {
  border-radius: 5px;
  padding: 10px;
}

.invitation-code-valid-message {
  color: #08f93c;
  font-weight: bold;
  margin: 0;
  display: flex;
  align-items: center;
}

.invitation-code-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #48bb78;
  margin-right: 10px;
}

.invitation-code-checkmark-icon {
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.invitation-code-invalid {
  margin-top: 10px;
  border-radius: 5px;
}

.invitation-code-invalid-message {
  color: #cc0000;
  margin: 0;
}

.seminar_tags_list.entry_session_tags li {
  background-color: #fff;
}

/* Executive Meeting Participation */
.executive-participation {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto 20px;
  padding-bottom: 15px;
  max-width: 940px;
  width: 91%;
}

.executive-participation-label {
  padding-top: 5px;
  margin-right: 30px;
  margin-bottom: 0;
}

.executive-participation-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.executive-participation-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.executive-participation-option input[type="radio"] {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .executive-participation {
    flex-direction: column;
    width: 95%;
  }

  .executive-participation-label {
    flex: none;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* mypage */
.bm_tbl.tbl02.profile dt {
  width: 210px;
}
