/* ---------------------------------------------
*   csr2023
--------------------------------------------- */
body {
  min-width: 1263px;
}

.load-top {
  opacity: 0;
  transition: 0.4s;
}
.load-top.show {
  opacity: 1;
}

@media screen and (max-width: 750px) {
  body {
    min-width: 0;
  }
}
#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 30;
}

#loader {
  height: 100vh;
  width: 100vw;
  cursor: progress;
  z-index: 31;
}
#loader::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5em;
  height: 5em;
  margin-top: -2.5em;
  margin-left: -2.5em;
  border-radius: 50%;
  border: 0.25em solid #CCC;
  border-top-color: #16539A;
  animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.csr-cont .overlay {
  display: none;
  position: fixed;
  z-index: 5;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  background: #2b2e38;
  opacity: 0.9;
}
.csr-cont .footer-pagetop {
  z-index: 4;
}
.csr-cont .order {
  display: flex;
  flex-flow: column;
}
.csr-cont .text-block {
  margin-top: 10px;
}
.csr-cont .text-block .more {
  display: none;
}
.csr-cont .footer-pagetop__link {
  background: url("/en/sus_conf/2024/img/ico_pagetop.png") no-repeat left top;
  background-size: cover;
}
.csr-cont .footer-pagetop__link img {
  display: none;
}
@media screen and (max-width: 750px) {
  .csr-cont .order {
    margin-top: 20px;
  }
  .csr-cont .order .text-block {
    order: 1;
    height: 240px;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    margin-top: 0;
  }
  .csr-cont .order .text-block .more {
    display: block;
    position: absolute;
    bottom: 0;
    left: 15px;
    background: url("/en/sus_conf/2024/img/bg_line_01.png") no-repeat left bottom 23px #133863;
    background-size: 75px;
    width: 100%;
    padding: 30px 0 10px 90px;
  }
  .csr-cont .order .text-block.cur {
    height: auto;
  }
  .csr-cont .order .c-sec-csr--keyvisual-1--wrap--menu {
    order: 0;
  }
  .csr-cont .footer {
    margin-top: 0 !important;
  }
}

/*--------------------------------
header
---------------------------------*/
.img-max {
  width: 100%;
  height: auto;
}

.csr-header {
  padding: 0;
  background: #fff;
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
  min-width: 100%;
}
.csr-header .csr-header-inner {
  margin: 0 auto;
  position: relative;
  text-align: right;
  min-height: 49px;
}
.csr-header .csr-header-menu {
  display: none;
}
.csr-header nav ul {
  text-align: center;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.csr-header nav ul li {
  display: block;
  text-align: center;
  padding: 0;
  width: 16.7%;
  position: relative;
}
.csr-header nav ul li::before {
  content: "";
  width: 1px;
  height: 67%;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: #E6E6E6;
  position: absolute;
  display: block;
}
.csr-header nav ul li:last-child::before {
  display: none;
}
.csr-header nav ul li.dropdown {
  position: relative;
  cursor: pointer;
  background-size: 20px auto;
  min-width: 320px;
  max-width: 320px;
}
.csr-header nav ul li.dropdown a {
  background: url("/en/sus_conf/2024/img/ico_plus_03.png") no-repeat right 20px center;
  background-size: 20px auto;
}
.csr-header nav ul li.dropdown a:hover {
  background: url("/en/sus_conf/2024/img/ico_plus_01.png") no-repeat right 20px center #16539A;
  background-size: 20px auto;
}
.csr-header nav ul li.dropdown a:focus-within {
  background: url("/en/sus_conf/2024/img/ico_plus_01.png") no-repeat right 20px center #16539A;
  background-size: 20px auto;
}
.csr-header nav ul li.dropdown em {
  padding-right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.csr-header nav ul li.dropdown em::after {
  display: none !important;
}
.csr-header nav ul li.dropdown.cur a {
  background: url("/en/sus_conf/2024/img/ico_minus_01.png") no-repeat right 20px center #16539A;
  background-size: 20px auto;
  color: #fff;
}
.csr-header nav ul li.dropdown.cur a:hover {
  background: url("/en/sus_conf/2024/img/ico_minus_01.png") no-repeat right 20px center #16539A;
  background-size: 20px auto;
}
.csr-header nav ul li.dropdown.cur .dropdown-list {
  opacity: 1 !important;
  left: 0 !important;
  pointer-events: auto;
}
.csr-header nav ul li.dropdown .dropdown-list {
  display: block;
  opacity: 0 !important;
  pointer-events: none;
  position: absolute;
  top: 32px;
  left: 20px !important;
  transition: 0.6s;
  z-index: 4;
  padding-top: 40px;
}
.csr-header nav ul li.dropdown .dropdown-list li {
  display: block;
  background: #F2F2F2;
  width: 320px;
  margin: 0;
  padding: 0;
  position: relative;
}
.csr-header nav ul li.dropdown .dropdown-list li::before {
  display: none !important;
}
.csr-header nav ul li.dropdown .dropdown-list li:hover {
  background: #16539A;
}
.csr-header nav ul li.dropdown .dropdown-list li:focus-within {
  background: #16539A;
}
.csr-header nav ul li.dropdown .dropdown-list li a {
  padding: 15px 20px 15px 55px;
  margin: 0;
  text-align: left;
  font-size: 14px;
  color: #133863;
  background: url("/en/sus_conf/2024/img/ico_blank_01_blue.png") no-repeat left 25px center;
}
.csr-header nav ul li.dropdown .dropdown-list li a::after {
  display: none !important;
}
.csr-header nav ul li.dropdown .dropdown-list li a:hover {
  color: #fff;
  background: url("/en/sus_conf/2024/img/ico_blank_01.png") no-repeat left 25px center #133863;
}
.csr-header nav ul li a {
  font-size: 16px;
  display: block;
  white-space: nowrap;
  padding: 22px 0 22px;
  position: relative;
  color: #133863;
  transition: 0.4s;
}
.csr-header nav ul li a .w1540 {
  display: none;
}
.csr-header nav ul li a em {
  font-weight: bold;
}
.csr-header nav ul li a::after {
  display: none !important;
}
.csr-header nav ul li a:hover {
  background: #16539A;
  color: #fff;
}
.csr-header nav ul li a:focus-within {
  background: #16539A;
  color: #fff;
}
@media screen and (max-width: 1540px) {
  .csr-header nav ul li a.wcol2 {
    padding: 8px 0;
  }
  .csr-header nav ul li a .w1540 {
    display: inline-block;
  }
}
.csr-header nav ul li.cur a em::before {
  width: 100%;
}
.csr-header nav ul li.hide a {
  pointer-events: none;
  opacity: 0.5;
}
.csr-header nav ul li:first-child {
  padding-left: 0;
}

@media screen and (max-width: 750px) {
  .csr-header {
    padding: 3px 15px;
    background: #fff;
    min-width: 100%;
  }
  .csr-header .csr-header-inner {
    display: table;
    width: 100%;
    padding: 0;
    min-height: auto;
  }
  .csr-header .csr-header-menu {
    display: block;
    font-size: 16px;
    color: #133863;
    text-align: center;
    vertical-align: middle;
  }
  .csr-header .csr-header-menu::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url("/en/sus_conf/2024/img/ico_plus_03.png") no-repeat right center;
    background-size: 18px auto;
    margin: -4px 0 0 5px;
    vertical-align: middle;
  }
  .csr-header .csr-header-menu.cur::after {
    background: url("/en/sus_conf/2024/img/ico_minus_03.png") no-repeat right center;
    background-size: 18px auto;
  }
  .csr-header .sp-hide-menu {
    display: none;
    position: absolute;
    top: 31px;
    left: -15px;
    width: calc(100% + 30px);
    background: #fff;
    z-index: 8;
    padding: 0 15px;
  }
  .csr-header nav ul {
    text-align: left;
    display: block;
    margin: 0 auto;
  }
  .csr-header nav ul li {
    display: block;
    text-align: left;
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
  }
  .csr-header nav ul li::before {
    width: 100%;
    height: 1px;
    top: auto;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
  }
  .csr-header nav ul li::last-child {
    margin-bottom: 0;
  }
  .csr-header nav ul li.dropdown {
    min-width: 0;
    max-width: 100%;
  }
  .csr-header nav ul li.dropdown::before {
    display: none;
  }
  .csr-header nav ul li.dropdown a {
    background: url("/en/sus_conf/2024/img/ico_plus_03.png") no-repeat right 10px top 22px;
    background-size: 20px auto;
  }
  .csr-header nav ul li.dropdown a:hover {
    background: url("/en/sus_conf/2024/img/ico_plus_03.png") no-repeat right 10px top 22px;
    background-size: 20px auto;
  }
  .csr-header nav ul li.dropdown em {
    justify-content: flex-start;
  }
  .csr-header nav ul li.dropdown em::after {
    display: none;
  }
  .csr-header nav ul li.dropdown a::after {
    width: 0 !important;
    opacity: 0 !important;
  }
  .csr-header nav ul li.dropdown.cur {
    background: none;
  }
  .csr-header nav ul li.dropdown.cur a {
    background: url("/en/sus_conf/2024/img/ico_minus_03.png") no-repeat right 10px top 22px !important;
    background-size: 20px auto !important;
    color: #133863 !important;
  }
  .csr-header nav ul li.dropdown.cur .dropdown-list {
    display: block;
    opacity: 1;
    left: 0;
    pointer-events: auto;
  }
  .csr-header nav ul li.dropdown .dropdown-list {
    display: none;
    opacity: 0;
    pointer-events: none;
    position: static;
    top: 0;
    left: 0;
    transition: 0.6s;
    z-index: 4;
    padding-top: 0;
  }
  .csr-header nav ul li.dropdown .dropdown-list:hover {
    opacity: 1;
    left: 0;
    pointer-events: auto;
  }
  .csr-header nav ul li.dropdown .dropdown-list li {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
  }
  .csr-header nav ul li.dropdown .dropdown-list li a {
    padding: 15px 0 15px 55px;
    margin: 0;
    text-align: left;
    font-size: 14px;
    background: url(/en/sus_conf/2024/img/ico_blank_01_blue.png) no-repeat left 25px center !important;
  }
  .csr-header nav ul li a {
    font-size: 16px;
    padding: 18px 0;
    margin: 2px;
  }
  .csr-header nav ul li a:focus-within {
    background: none;
    color: #133863;
  }
  .csr-header nav ul li a.wcol2 {
    padding: 18px 0;
  }
  .csr-header nav ul li a .w1540 {
    display: none;
  }
}
.search-csr {
  position: relative;
  z-index: 7;
  max-width: 320px;
  min-width: 320px;
}
.search-csr .search-csr-btn-2024 {
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  background: url("/en/sus_conf/2024/img/ico_search_01.png") no-repeat right 20px center #16539A;
  background-size: 20px auto;
  padding: 22px 0;
  transition: 0.4s;
}
.search-csr .search-csr-btn-2024:hover {
  background: url("/en/sus_conf/2024/img/ico_search_01.png") no-repeat right 20px center #133863;
  background-size: 20px auto;
}
.search-csr .search-csr-btn-2024.cur {
  background: url("/en/sus_conf/2024/img/ico_search_01.png") no-repeat right 20px center #133863;
  background-size: 20px auto;
}
.search-csr .btn-hide {
  display: none;
  width: 320px;
  margin-left: auto;
  position: absolute;
  top: 73px;
  right: 1px;
  background: #fff;
}
.search-csr .btn-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.search-csr .btn-area--clear {
  display: flex;
  width: 63px;
  background: url("/en/sus_conf/2024/img/ico_close.png") no-repeat center right;
  background-size: 19px auto;
  margin-right: 25px;
  font-size: 13px;
  cursor: pointer;
}
.search-csr .btn-area--filter {
  display: block;
  width: 63px;
  background: #16539A;
  color: #fff;
  font-weight: bold;
  padding: 5px 0;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}
.search-csr .btn-list {
  margin: 0;
  display: block;
}
.search-csr .btn-list--item {
  display: block;
  font-size: 16px;
  font-weight: bold;
  background: url("/en/sus_conf/2024/img/ico_plus_02.png") no-repeat right 20px top 30px;
  background-size: 20px auto;
  cursor: pointer;
}
.search-csr .btn-list--item span {
  display: block;
  padding: 25px 20px;
  text-align: left;
  background: url("/en/sus_conf/2024/img/ico_plus_03.png") no-repeat center right 20px #fff;
  color: #133863;
}
.search-csr .btn-list--item.cat-btn {
  background: #F4F4F4;
  background-size: 20px auto;
  border-top: 1px solid #B5B5B5;
  border-bottom: 1px solid #B5B5B5;
  padding: 0;
  width: 100%;
}
.search-csr .btn-list--item.cur span {
  background: url("/en/sus_conf/2024/img/ico_minus_03.png") no-repeat center right 20px #F4F4F4;
}
.search-csr .btn-list--category {
  background: #F4F4F4;
  padding: 0 20px 15px 20px;
  position: relative;
  z-index: 5;
  display: none;
}
.search-csr .btn-list--category.cur {
  display: block;
}
.search-csr .btn-list--category--item {
  display: block;
  font-size: 15px;
  font-weight: normal;
  padding: 15px 0 15px 45px !important;
  background: url("/en/sus_conf/2024/img/ico_check_01.png") no-repeat left center;
  background-size: 24px auto;
  width: 100%;
  text-align: left;
  color: #133863;
}
.search-csr .btn-list--category--item.cur {
  background: url("/en/sus_conf/2024/img/ico_check_02.png") no-repeat left center;
  background-size: 24px auto;
}
.search-csr .btn-list--category li::before {
  display: none;
}

.thumb-list-1 {
  width: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  max-width: 1540px;
  min-width: 1194px;
}
@media screen and (max-width: 1540px) {
  .thumb-list-1 {
    margin: 0 35px;
  }
}
@media screen and (max-width: 750px) {
  .thumb-list-1 {
    padding-right: 0;
    width: auto;
    margin: 0 0 30px 15px;
    max-width: inherit;
    min-width: inherit;
  }
}
.thumb-list-1 li {
  margin-right: 0;
  width: 20%;
}
@media screen and (max-width: 750px) {
  .thumb-list-1 li {
    margin-right: 15px;
    margin-bottom: 20px;
    width: calc(50% - 15px);
  }
}
.thumb-list-1 li a {
  display: block;
  background: none;
  padding: 15px 5px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .thumb-list-1 li a {
    padding: 0;
  }
}
.thumb-list-1 li a img {
  transition: 0.3s;
  border-radius: 10px;
}
.thumb-list-1 li a strong {
  transition: 0.2s;
  opacity: 0;
  position: absolute;
  top: 87%;
  left: -15px;
  display: block;
  color: #fff;
  z-index: 3;
  height: 80%;
  width: 87%;
  padding: 15px 10px 15px 20px;
  font-size: 14px;
  line-height: 1.3;
  pointer-events: none;
  font-weight: bold;
  word-wrap: break-word;
}
@media screen and (max-width: 750px) {
  .thumb-list-1 li a strong {
    display: none;
  }
}
.thumb-list-1 li a strong span {
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.thumb-list-1 li a strong::after {
  content: "";
  width: 46px;
  height: 46px;
  display: block;
  background: url("/en/sus_conf/2024/img/ico_bullet_01.png") no-repeat right center;
  background-size: 46px auto;
  position: absolute;
  top: 32%;
  transform: translateY(-50%);
  right: -48px;
}
.thumb-list-1 li a::before {
  transition: 0.2s;
  opacity: 0;
  content: "";
  background: #16539A;
  position: absolute;
  top: 90%;
  left: 0;
  display: block;
  width: 100%;
  height: 58%;
  transform: scale(1.16, 1.15);
  z-index: 2;
  box-shadow: 6px 4px 16px -1px rgba(0, 0, 0, 0.7);
  pointer-events: none;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1540px) {
  .thumb-list-1 li a::before {
    height: 70%;
  }
}
@media screen and (max-width: 750px) {
  .thumb-list-1 li a::before {
    display: none;
  }
}
.thumb-list-1 li a:hover strong {
  opacity: 1;
  pointer-events: auto;
}
.thumb-list-1 li a:hover img {
  transform: scale(1.2, 1.2);
  box-shadow: 6px 1px 16px -1px rgba(0, 0, 0, 0.7);
  position: relative;
  top: -30px;
  z-index: 1;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 1540px) {
  .thumb-list-1 li a:hover img {
    top: -1.7vw;
  }
}
.thumb-list-1 li a:hover::before {
  opacity: 1;
}
.thumb-list-1 li.noLink a {
  pointer-events: none;
}
.thumb-list-1 li:nth-child(7n) {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .thumb-list-1 li:nth-child(7n) {
    margin-right: 15px;
  }
}

@media screen and (max-width: 750px) {
  .search-csr {
    width: auto;
    margin: 0 auto 50px;
    max-width: inherit;
    min-width: inherit;
    padding-right: 0;
  }
  .search-csr .search-csr-btn-2024 {
    color: #fff;
    font-weight: bold;
    width: 100%;
    margin-left: auto;
    padding: 15px 20px;
    cursor: pointer;
    border: none;
    top: 0;
  }
  .search-csr .search-csr-btn-2024:hover {
    background: url("/en/sus_conf/2024/img/ico_search_01.png") no-repeat right 20px center #16539A;
    background-size: 20px auto;
  }
  .search-csr .search-csr-btn-2024.cur {
    background: url(/en/sus_conf/2024/img/ico_search_01.png) no-repeat right 20px center #16539A;
    background-size: 20px auto;
  }
  .search-csr .btn-hide {
    display: none;
    width: 100%;
    margin-left: auto;
    right: 0;
    top: 55px;
  }

  .thumb-list-1 li a:hover img {
    transform: none;
    top: 0;
  }
  .thumb-list-1 li a::before {
    display: none;
  }
  .thumb-list-1 li span {
    font-size: 1.2rem;
    padding-top: 5px;
  }
}
.desc-box-1 {
  width: 870px;
  margin: 0 auto;
}
.desc-box-1 h2 {
  font-size: 30px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
}
.desc-box-1 .text-box-1 {
  margin-bottom: 35px;
}
.desc-box-1 p {
  line-height: 2;
  font-size: 16px;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}

.c-btn-col {
  text-align: center;
}
.c-btn-col li {
  display: inline-block;
  padding: 0 20px;
}

.text-btn01 {
  line-height: 1.4;
  display: block;
  width: 295px;
  font-size: 16px;
  background: url("/en/sus_conf/2024/img/icon_arrow_r_w_01.png") no-repeat right center #2a75c9;
  background-size: 32px auto;
  cursor: pointer;
  border: 1px solid #2a75c9;
  position: relative;
  border-radius: 100px;
  overflow: hidden;
  margin: 0 auto;
  z-index: 5;
}
.text-btn01 span {
  display: block;
  color: #fff;
  padding: 12px;
  position: relative;
  z-index: 4;
  overflow: hidden;
}
.text-btn01 span::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -10px;
  width: 0%;
  height: 106%;
  display: block;
  background: #fff;
  transition: 0.6s;
  z-index: -1;
}
.text-btn01 span::after {
  content: "";
  background: url("/en/sus_conf/2024/img/icon_arrow_r_b_01.png") no-repeat right center;
  background-size: 32px auto;
  width: 32px;
  height: 17px;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  opacity: 0;
  transition: 0.3s;
}

.text-btn01:hover span {
  color: #2a75c9;
}
.text-btn01:hover span::before {
  width: 110%;
  left: -10px;
}
.text-btn01:hover span::after {
  right: 0;
  opacity: 1;
  transition-delay: .5s;
}

.text-btn02 {
  width: 275px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 32px 10px 0;
  text-align: center;
  display: table;
  margin: 145px 0 0;
}
.text-btn02 span::before {
  content: "";
  background: url("/en/sus_conf/2024/img/icon_arrow_l_w_01.png") no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
.text-btn02:hover {
  background: #fff;
  color: #133863;
}
.text-btn02:hover span::before {
  content: "";
  background: url("/en/sus_conf/2024/img/icon_arrow_l_b_01.png") no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

@media screen and (max-width: 750px) {
  .c-btn-col {
    margin-top: 40px;
  }
  .c-btn-col li {
    display: block;
    padding: 0 20px;
    width: 100%;
    margin-bottom: 20px;
  }

  .desc-box-1 {
    width: auto;
    margin: 0 20px;
  }
  .desc-box-1 h2 {
    font-size: 16px;
    margin-bottom: 15px;
    text-align: left;
  }
  .desc-box-1 .text-box-1 {
    margin-bottom: 20px;
  }
  .desc-box-1 p {
    line-height: 2;
    font-size: 14px;
    margin-bottom: 10px;
    text-align: left;
  }

  .text-btn01 {
    min-width: 252px;
    width: auto;
  }

  .text-btn02 {
    width: calc(100% - 50px);
    padding: 10px 32px 10px 0;
    margin: 60px auto 0;
  }
}
.c-btn-fix {
  position: fixed;
  top: 280px;
  right: 0;
  width: 320px;
  z-index: 5;
}

.c-btn-fix-list {
  text-align: right;
  margin: 0 0 0 auto;
  transform: rotate(90deg);
  width: 598px;
}
.c-btn-fix-list li {
  display: inline-block;
  width: 156px;
  margin: 0 5px;
}
.c-btn-fix-list li a {
  line-height: 1.4;
  display: block;
  width: 100%;
  font-size: 16px;
  background: #2a75c9;
  cursor: pointer;
  border-radius: 0 0 20px 20px;
  z-index: 5;
  color: #fff;
  font-weight: normal;
  padding: 10px;
  text-align: center;
  transition: 0.4s;
}
.c-btn-fix-list li a span {
  font-weight: normal;
}
.c-btn-fix-list li a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 750px) {
  .c-btn-fix {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 5;
  }

  .c-btn-fix.stack {
    position: static;
  }

  .c-btn-fix-list {
    text-align: left;
    margin: 0 0 0 12px;
    overflow: hidden;
    transform: rotate(0);
    width: 100%;
  }
  .c-btn-fix-list li {
    display: inline-block;
    width: calc(47% - 30px);
    margin: 0 5px;
  }
  .c-btn-fix-list li a {
    line-height: 1.4;
    display: block;
    width: 100%;
    font-size: 14px;
    background: #2a75c9;
    cursor: pointer;
    border-radius: 20px 20px 0 0;
    z-index: 5;
    color: #fff;
    font-weight: bold;
    padding: 10px;
  }
  .c-btn-fix-list li a span {
    font-weight: bold;
  }
}
.c-sec-csr--1 {
  background: #133863;
  padding: 50px 0 100px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--1 {
    padding: 30px 0 30px;
  }
}
.c-sec-csr--2 {
  background: #051222;
  padding: 100px 0 85px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--2 {
    padding: 50px 0 95px;
    background: #133863;
  }
}
.c-sec-csr--keyvisual-1 {
  position: relative;
  background: #133863;
  height: 45vw;
  min-height: 1020px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1 {
    height: auto;
    min-height: 0;
    background: #133863;
  }
}
.c-sec-csr--keyvisual-1::before {
  content: "";
  background: url("/en/sus_conf/2024/img/bg_cover_01_pc.png") no-repeat right center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-width: 1600px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1::before {
    display: none;
  }
}
.c-sec-csr--keyvisual-1--img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  min-width: 1300px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--img {
    min-width: 100%;
  }
  .c-sec-csr--keyvisual-1--img::before {
    position: absolute;
    bottom: 0;
    left: 0;
    background: url("/en/sus_conf/2024/img/bg_cover_01_sp.png") no-repeat right center;
    background-size: cover;
    min-width: 100%;
    height: 100%;
    display: block;
    content: "";
  }
}
.c-sec-csr--keyvisual-1--wrap {
  position: relative;
  z-index: 3;
  color: #fff;
  width: 1600px;
  margin: 0 auto;
  padding-left: 30px;
  height: 34vw;
  min-height: 730px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap {
    width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 0;
    padding-left: 0;
  }
}
.c-sec-csr--keyvisual-1--wrap--ttl-1 {
  width: 830px;
  font-size: 25px;
  font-weight: bold;
  padding-top: 130px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--ttl-1 {
    width: auto;
    font-size: 18px;
    padding-top: 47vw;
    margin: 0 15px;
  }
}
.c-sec-csr--keyvisual-1--wrap--txt-1 {
  width: 830px;
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--txt-1 {
    width: auto;
    font-size: 16px;
    margin: 0 15px;
  }
}
.c-sec-csr--keyvisual-1--wrap--txt-2 {
  width: 830px;
  font-size: 16px;
  line-height: 2;
  margin-top: 40px;
}
.c-sec-csr--keyvisual-1--wrap--txt-2 span.sup {
  vertical-align: top;
  display: inline-block;
  font-size: .7em;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--txt-2 {
    width: auto;
    font-size: 16px;
    line-height: 2;
    margin: 40px 15px 0 15px;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu {
  margin-top: 15px;
  display: flex;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu {
    flex-wrap: wrap;
    margin-top: 0;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1 {
    width: 100%;
    margin-bottom: 20px;
    padding: 0 15px;
    justify-content: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item {
    width: 50%;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .play {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .play {
    justify-content: left;
    margin-top: 5px;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .play span {
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .play span {
    padding-left: 73px;
    padding-top: 13px;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .play span::before {
  content: "";
  background: url("/en/sus_conf/2024/img/ico_play_01.png") no-repeat center;
  background-size: 80px auto;
  width: 100px;
  height: 100px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  transition: 0.2s;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .play span::before {
    background-size: 65px auto;
    width: 65px;
    height: 65px;
    position: absolute;
    display: block;
    left: 0;
    top: -4px;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .play:hover span::before {
  background: url("/en/sus_conf/2024/img/ico_play_02.png") no-repeat center;
  background-size: 100px auto;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .play:hover span::before {
    background-size: 65px auto;
    width: 65px;
    height: 65px;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .iine {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 40px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .iine {
    margin-left: 0;
    justify-content: left;
    flex-wrap: wrap;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .iine span {
  font-size: 30px;
  font-weight: bold;
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .iine span::before {
  content: "";
  background: url("/en/sus_conf/2024/img/ico_iine_01.png") no-repeat center;
  background-size: 80px auto;
  width: 100px;
  height: 100px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  transition: 0.2s;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .iine span::before {
    background-size: 65px auto;
    width: 65px;
    height: 65px;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .iine.disabled {
  pointer-events: none;
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .iine.disabled span::before {
  background: url("/en/sus_conf/2024/img/ico_iine_03.png") no-repeat center;
  background-size: 80px auto;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .iine.disabled span::before {
    background-size: 65px auto;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .iine:hover span::before {
  background: url("/en/sus_conf/2024/img/ico_iine_02.png") no-repeat center;
  background-size: 100px auto;
}
.c-sec-csr--keyvisual-1--wrap--menu--1--item .text {
  font-size: 14px;
  line-height: 1.5;
  display: block;
  margin-left: 20px;
  color: #f4f4f4;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--1--item .text {
    font-size: 13px;
    margin: 15px 0 0 0;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--2 {
  display: block;
  width: 815px;
  font-size: 0;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--2 {
    width: 100%;
    margin: 5px 5px 5px 15px;
    display: block;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--2--item {
  margin-right: 10px;
  width: calc(20% - 8px);
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--2--item {
    margin-bottom: 18px;
    width: calc(50% - 12px);
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--2--item .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  height: 65px;
  padding: 0 12px;
  font-size: 15px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--2--item .btn {
    width: auto;
    padding: 0 5px;
  }
}
.c-sec-csr--keyvisual-1--wrap--menu--2--item .btn .pdf {
  position: absolute;
  right: -3px;
  bottom: -1px;
  width: 24px;
}
.c-sec-csr--keyvisual-1--wrap--menu--2--item .btn .pdf img {
  width: 100%;
}
.c-sec-csr--keyvisual-1--wrap--menu--2--item .btn:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #133863;
}
.c-sec-csr--keyvisual-1--wrap--menu--2--item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--keyvisual-1--wrap--menu--2--item:nth-child(2n) {
    margin-right: 0;
  }
}
.c-sec-csr--detail {
  color: #fff;
  text-align: center;
  background: #133863;
  padding: 0 0 85px;
  margin-top: -120px;
  position: relative;
  z-index: 3;
}
.c-sec-csr--detail--tab {
  display: block;
  margin-bottom: 60px;
}
.c-sec-csr--detail--tab--item {
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  opacity: 0.5;
  cursor: pointer;
  margin: 0 40px;
}
.c-sec-csr--detail--tab--item.cur {
  border-bottom: 1px solid #fff;
  pointer-events: none;
  opacity: 1;
}
.c-sec-csr--detail--scroll {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 0 0 30px 0;
  margin-left: 30px;
  width: auto;
}
.c-sec-csr--detail--scroll::-webkit-scrollbar {
  display: block;
  height: 15px;
}
.c-sec-csr--detail--scroll::-webkit-scrollbar-track {
  background-color: #ccc;
}
.c-sec-csr--detail--scroll::-webkit-scrollbar-thumb {
  background-color: #050525;
}
.c-sec-csr--detail--practices {
  overflow: hidden;
  font-size: 0;
  width: auto;
  margin: 0 auto;
  display: inline-flex;
  flex-wrap: nowrap;
  width: auto;
}
.c-sec-csr--detail--practices::-webkit-scrollbar {
  display: block;
}
.c-sec-csr--detail--practices::-webkit-scrollbar-track {
  background-color: #ccc;
}
.c-sec-csr--detail--practices::-webkit-scrollbar-thumb {
  background-color: #17585d;
}
.c-sec-csr--detail--practices--item {
  width: 225px;
  display: none;
  margin-right: 10px;
  margin-top: 20px;
  vertical-align: top;
}
.c-sec-csr--detail--practices--item.show01 {
  display: inline-flex;
}
.c-sec-csr--detail--practices--item.show02 {
  display: inline-flex;
}
.c-sec-csr--detail--practices--item a {
  display: block;
  transition: 0.4s;
  position: relative;
  margin: 2px;
  font-size: 16px;
}
.c-sec-csr--detail--practices--item a img {
  border-radius: 10px;
}
.c-sec-csr--detail--practices--item a:hover {
  opacity: 0.6;
}
.c-sec-csr--detail--practices--item.pdf a::after {
  content: "";
  width: 30px;
  height: 37px;
  background: url("/en/sus_conf/2024/img/ico_pdf.png") no-repeat 0 0;
  background-size: 30px auto;
  position: absolute;
  right: 1px;
  bottom: 1px;
  z-index: 3;
}
.c-sec-csr--detail--practices--item.movie a::after {
  content: "";
  width: 61px;
  height: 61px;
  background: url("/en/sus_conf/2024/img/ico_movie.png") no-repeat 0 0;
  background-size: 61px auto;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  margin-left: -30px;
  margin-top: -30px;
}
@media screen and (max-width: 750px) {
  .c-sec-csr--detail {
    padding: 50px 0 85px;
    margin: 0;
  }
  .c-sec-csr--detail--tab {
    margin-bottom: 20px;
  }
  .c-sec-csr--detail--tab--item {
    display: inline-block;
    width: 40%;
    font-size: 16px;
    font-weight: bold;
    margin: 0 10px;
  }
  .c-sec-csr--detail--tab--item a img {
    border-radius: 5px;
  }
  .c-sec-csr--detail--scroll {
    padding: 0 0 20px 0;
    margin-left: 20px;
  }
  .c-sec-csr--detail--practices {
    width: auto;
    margin: 0;
  }
  .c-sec-csr--detail--practices--item {
    width: 142px;
    margin-right: 5px;
    margin-top: 10px;
  }
  .c-sec-csr--detail--practices.pdf a::after {
    content: "";
    width: 18px;
    height: 22px;
    background: url("/en/sus_conf/2024/img/ico_pdf.png") no-repeat 0 0;
    background-size: 18px auto;
    position: absolute;
    right: 1px;
    bottom: 1px;
    z-index: 3;
  }
  .c-sec-csr--detail--practices.movie a::after {
    content: "";
    width: 36px;
    height: 36px;
    background: url("/en/sus_conf/2024/img/ico_movie.png") no-repeat 0 0;
    background-size: 36px auto;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    margin-left: -18px;
    margin-top: -18px;
  }
}

/* ---------------------------------------------
*   message
--------------------------------------------- */
.c-message-ttl-1 {
  text-align: center;
  font-size: 25px;
  margin: 40px 0;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-message-ttl-1 {
    font-size: 18px;
    margin: 25px 0;
  }
}

.c-keyvisual-message {
  min-width: 1240px;
  background: url("/en/sus_conf/2024/img/message/bg_kv.jpg") no-repeat 0 0;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message {
    min-width: 0;
    background: url("/en/sus_conf/2024/img/message/bg_kv_sp.jpg") no-repeat 0 0;
    background-size: cover;
    padding: 10px 0 15px;
  }
}
.c-keyvisual-message ul {
  display: block;
  position: relative;
  width: 100%;
  height: 25vw;
  min-width: 1280px;
  max-height: 472px;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul {
    width: 1920px;
    height: 472px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul {
    width: 1280px;
    height: 320px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul {
    min-width: 0;
    width: 375px;
    height: 480px;
    margin: 0 auto;
  }
}
.c-keyvisual-message ul .kv-1 {
  max-width: 217px;
  max-height: 217px;
  width: 11.5vw;
  top: 10vw;
  left: 6vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-1 {
    width: 217px;
    height: 217px;
    top: 160px;
    left: 134px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-1 {
    width: 147px;
    height: 147px;
    top: 128px;
    left: 68px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-1 {
    width: 108px;
    height: 108px;
    top: 64px;
    left: 12px;
  }
}
.c-keyvisual-message ul .kv-2 {
  max-width: 217px;
  max-height: 217px;
  width: 11.5vw;
  top: 1vw;
  left: 16vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-2 {
    width: 217px;
    height: 217px;
    top: 20px;
    left: 353px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-2 {
    width: 147px;
    height: 147px;
    top: 12px;
    left: 197px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-2 {
    width: 108px;
    height: 108px;
    top: 10px;
    left: 134px;
  }
}
.c-keyvisual-message ul .kv-3 {
  max-width: 217px;
  max-height: 217px;
  width: 11.5vw;
  top: 11vw;
  left: 25vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-3 {
    width: 217px;
    height: 217px;
    top: 224px;
    left: 501px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-3 {
    width: 147px;
    height: 147px;
    top: 140px;
    left: 314px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-3 {
    width: 108px;
    height: 108px;
    top: 64px;
    left: 250px;
  }
}
.c-keyvisual-message ul .kv-4 {
  max-width: 428px;
  max-height: 428px;
  width: 22.5vw;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-keyvisual-message ul .kv-4 .kv-text-box .text {
  bottom: 40px;
  left: 5vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-4 {
    width: 428px;
    height: 428px;
    top: 20px;
    left: 735px;
    transform: translate(0%, 0%);
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-4 {
    width: 288px;
    height: 288px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-4 {
    width: 180px;
    height: 180px;
  }
}
.c-keyvisual-message ul .kv-5 {
  max-width: 217px;
  max-height: 217px;
  width: 11.5vw;
  top: 11.5vw;
  left: 62vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-5 {
    width: 217px;
    height: 217px;
    top: 200px;
    left: 1191px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-5 {
    width: 147px;
    height: 147px;
    top: 147px;
    left: 797px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-5 {
    width: 108px;
    height: 108px;
    top: 264px;
    left: -3px;
  }
}
.c-keyvisual-message ul .kv-6 {
  max-width: 217px;
  max-height: 217px;
  width: 11.5vw;
  top: 1vw;
  left: 68.5vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-6 {
    width: 217px;
    height: 217px;
    top: 20px;
    left: 1352px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-6 {
    width: 147px;
    height: 147px;
    top: 13px;
    left: 881px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-6 {
    width: 108px;
    height: 108px;
    top: 360px;
    left: 69px;
  }
}
.c-keyvisual-message ul .kv-7 {
  max-width: 217px;
  max-height: 217px;
  width: 11.5vw;
  top: 12vw;
  left: 77vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-7 {
    width: 217px;
    height: 217px;
    top: 236px;
    left: 1490px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-7 {
    width: 147px;
    height: 147px;
    top: 152px;
    left: 990px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-7 {
    width: 108px;
    height: 108px;
    top: 360px;
    left: 198px;
  }
}
.c-keyvisual-message ul .kv-8 {
  max-width: 217px;
  max-height: 217px;
  width: 11.5vw;
  top: 2vw;
  left: 85vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul .kv-8 {
    width: 217px;
    height: 217px;
    top: 57px;
    left: 1666px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul .kv-8 {
    width: 147px;
    height: 147px;
    top: 24px;
    left: 1093px;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul .kv-8 {
    width: 108px;
    height: 108px;
    top: 260px;
    left: 270px;
  }
}
.c-keyvisual-message ul li {
  position: absolute;
}
.c-keyvisual-message ul li a {
  display: block;
  outline: none;
}
.c-keyvisual-message ul li a .kv-text-box {
  opacity: 0;
  transition: 1s;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(37, 111, 197, 0.8);
  width: 100%;
  height: 100%;
  border-radius: 17vw;
}
.c-keyvisual-message ul li a .kv-text-box .text {
  width: 69%;
  font-size: 11px;
  text-align: left;
  position: absolute;
  bottom: 21px;
  left: 2vw;
  color: #fff;
  line-height: 1.3;
}
.c-keyvisual-message ul li a .kv-text-box .text strong {
  font-size: 16px;
  display: block;
  margin-top: 3px;
  font-weight: bold;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul li a .kv-text-box .text strong {
    font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul li a .kv-text-box .text strong {
    font-size: 13px;
  }
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul li a .kv-text-box .text {
    font-size: 12px;
    bottom: 28px;
    left: 40px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul li a .kv-text-box .text {
    font-size: 10px;
    bottom: 21px;
    left: 2vw;
  }
}
.c-keyvisual-message ul li a .kv-text-box .text.big {
  bottom: 3vw;
  left: 4vw;
}
@media screen and (min-width: 1920px) {
  .c-keyvisual-message ul li a .kv-text-box .text.big {
    bottom: 55px;
    left: 83px;
  }
}
@media screen and (max-width: 1280px) {
  .c-keyvisual-message ul li a .kv-text-box .text.big {
    bottom: 3vw;
    left: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul li a .kv-text-box {
    display: none;
  }
}
.c-keyvisual-message ul li a:focus-visible {
  outline: 2px solid #333;
  border-radius: 20vw;
}
.c-keyvisual-message ul li a:hover {
  outline: none;
}
.c-keyvisual-message ul li a:hover .kv-text-box {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 750px) {
  .c-keyvisual-message ul li a:hover .kv-text-box {
    opacity: 0 !important;
  }
}
.c-keyvisual-message ul li a img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
}

.c-sec-message--1 {
  width: 1620px;
  margin: 130px auto 300px;
}
@media screen and (max-width: 1530px) {
  .c-sec-message--1 {
    width: 100%;
    margin: 130px auto 300px;
  }
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 {
    width: 100%;
    margin: 70px 0 20px;
  }
}
.c-sec-message--1 .box-comment--1 {
  display: flex;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 {
    display: block;
  }
}
.c-sec-message--1 .box-comment--1 .img-thumb {
  width: 750px;
  margin-right: 60px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .img-thumb {
    width: 100%;
    margin-right: 0;
    margin-left: 50px;
  }
}
.c-sec-message--1 .box-comment--1 .img-thumb .box-name {
  position: absolute;
  top: 390px;
  left: 15px;
  background: #133863;
  padding: 25px 20px 25px 0;
  color: #fff;
  display: flex;
  width: 240px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .img-thumb .box-name {
    position: relative;
    margin-top: -20px;
    display: block;
    margin-right: 180px;
    padding: 15px 20px 15px 50px;
    top: auto;
    left: -50px;
    z-index: 3;
  }
}
.c-sec-message--1 .box-comment--1 .img-thumb .box-name p {
  position: relative;
  z-index: 3;
  font-size: 15px;
  padding-right: 40px;
  margin-right: 0;
  border-right: none;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .img-thumb .box-name p {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    font-size: 12px;
  }
}
.c-sec-message--1 .box-comment--1 .img-thumb .box-name p strong {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  display: block;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .img-thumb .box-name p strong {
    font-size: 16px;
  }
}
.c-sec-message--1 .box-comment--1 .img-thumb .box-name p:nth-child(2) {
  border-right: none;
  margin-right: 50px;
  padding-right: 0;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .img-thumb .box-name p:nth-child(2) {
    margin-right: 0;
    margin-top: 15px;
  }
}
.c-sec-message--1 .box-comment--1 .img-thumb .box-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: -160px;
  background: #133863;
  width: 160px;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .img-thumb .box-name::before {
    display: none;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment {
  width: calc(100% - 830px);
  min-width: 250px;
  max-width: 720px;
  font-size: 16px;
  line-height: 2;
  padding: 60px 20px 0 0;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment {
    width: auto;
    margin: 30px 15px 0;
    padding: 0;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc {
  max-height: 240px;
  overflow: hidden;
  padding-bottom: 80px;
  position: relative;
  transition: max-height 0.8s;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc {
    max-height: 145px;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc.pc-acc-none {
  max-height: none;
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc.pc-acc-none .btn-more {
  display: none;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc {
    padding-bottom: 50px;
    margin-bottom: 60px;
  }
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc.pc-acc-none {
    max-height: 145px;
  }
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc.pc-acc-none .btn-more {
    display: block;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc.cur {
  max-height: 700px;
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-more {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 75px;
  padding-top: 5px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-more {
    height: 50px;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-more span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-more span {
    font-size: 14px;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-more span:hover {
  opacity: 0.7;
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-more span::before {
  content: "";
  background: #000;
  display: inline-block;
  width: 75px;
  height: 1px;
  vertical-align: middle;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-more span::before {
    width: 30px;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-close {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 75px;
  padding-top: 5px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-close {
    height: 50px;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-close span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-close span {
    font-size: 14px;
  }
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-close span:hover {
  opacity: 0.7;
}
.c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-close span::before {
  content: "";
  background: #000;
  display: inline-block;
  width: 75px;
  height: 1px;
  vertical-align: middle;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--1 .box-comment--1 .box-comment .box-acc .btn-close span::before {
    width: 30px;
  }
}
.c-sec-message--2 {
  width: 1350px;
  margin: -80px auto 200px;
  padding-top: 80px;
}
@media screen and (max-width: 1530px) {
  .c-sec-message--2 {
    width: 100%;
    margin: -80px auto 200px;
    padding-left: 115px;
  }
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 90px;
  }
}
@media screen and (max-width: 1530px) {
  .c-sec-message--2.right {
    padding-left: 15px;
  }
}
.c-sec-message--2.right .box-comment--1 .img-thumb {
  order: 2;
  margin-left: 60px;
  margin-right: 0;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2.right .box-comment--1 .img-thumb {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .c-sec-message--2.right .box-comment--1 .img-thumb img {
    width: 188px;
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
}
.c-sec-message--2.right .box-comment--1 .img-thumb .box-name {
  left: 225px;
  right: auto;
  padding-left: 70px;
  width: 400px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2.right .box-comment--1 .img-thumb .box-name {
    left: auto;
    right: 0;
    top: 30px;
    padding: 15px 20px;
    margin: 0;
    width: calc(100% - 170px);
    position: absolute;
  }
}
.c-sec-message--2.right .box-comment--1 .img-thumb .box-name::before {
  display: none;
}
.c-sec-message--2.right .box-comment--1 .box-comment {
  order: 1;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 {
    width: 100%;
    margin: -40px 0 0;
  }
}
.c-sec-message--2 .box-comment--1 {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1530px) {
  .c-sec-message--2 .box-comment--1 {
    justify-content: left;
  }
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 {
    display: block;
  }
}
.c-sec-message--2 .box-comment--1 .img-thumb {
  width: 420px;
  margin-right: 60px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .c-sec-message--2 .box-comment--1 .img-thumb img {
    width: 188px;
    display: block;
    margin-left: auto;
  }
}
.c-sec-message--2 .box-comment--1 .img-thumb .box-name {
  position: absolute;
  top: 390px;
  left: -25px;
  background: #133863;
  padding: 25px 20px 25px 0;
  color: #fff;
  line-height: 1.5;
  display: flex;
  width: 300px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb .box-name {
    left: 0;
    right: auto;
    top: 30px;
    padding: 15px 20px;
    margin: 0;
    width: calc(100% - 170px);
    position: absolute;
    display: block;
  }
}
.c-sec-message--2 .box-comment--1 .img-thumb .box-name p {
  position: relative;
  z-index: 3;
  font-size: 15px;
  padding-right: 40px;
  margin-right: 0;
  border-right: none;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb .box-name p {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    font-size: 12px;
  }
}
.c-sec-message--2 .box-comment--1 .img-thumb .box-name p strong {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  display: block;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb .box-name p strong {
    font-size: 16px;
  }
}
.c-sec-message--2 .box-comment--1 .img-thumb .box-name p:nth-child(2) {
  border-right: none;
  margin-right: 50px;
  padding-right: 0;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb .box-name p:nth-child(2) {
    margin-right: 0;
    margin-top: 15px;
  }
}
.c-sec-message--2 .box-comment--1 .img-thumb .box-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100px;
  background: #133863;
  width: 100px;
  height: 100%;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb .box-name::before {
    display: none;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment {
  width: 50vw;
  max-width: 810px;
  min-width: 250px;
  font-size: 16px;
  line-height: 2;
  padding-top: 115px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment {
    width: auto;
    max-width: 100%;
    min-width: 0;
    margin: 30px 15px 0;
    padding: 0;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc {
  max-height: 240px;
  overflow: hidden;
  padding-bottom: 80px;
  position: relative;
  transition: max-height 0.8s;
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .italic {
  font-style: italic;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc {
    max-height: 145px;
    padding-bottom: 50px;
    margin-bottom: 30px;
  }
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc.bottom {
    margin-top: 75px;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc.cur {
  max-height: 1200px;
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-more {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 75px;
  padding-top: 5px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-more {
    height: 50px;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-more span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-more span {
    font-size: 14px;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-more span:hover {
  opacity: 0.7;
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-more span::before {
  content: "";
  background: #000;
  display: inline-block;
  width: 75px;
  height: 1px;
  vertical-align: middle;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-more span::before {
    width: 30px;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-close {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 75px;
  padding-top: 5px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-close {
    height: 50px;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-close span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-close span {
    font-size: 14px;
  }
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-close span:hover {
  opacity: 0.7;
}
.c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-close span::before {
  content: "";
  background: #000;
  display: inline-block;
  width: 75px;
  height: 1px;
  vertical-align: middle;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .box-comment .box-acc .btn-close span::before {
    width: 30px;
  }
}

.text-btn03 {
  width: 275px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 32px 10px 0;
  text-align: center;
  display: table;
  margin: 0 0 50px;
}
.text-btn03 span {
  color: #fff;
}
.text-btn03 span::before {
  content: "";
  background: url(/en/sus_conf/2024/img/icon_arrow_l_w_01.png) no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
@media screen and (max-width: 750px) {
  .text-btn03 {
    width: calc(100% - 50px);
    padding: 10px 32px 10px 0;
    margin: 0 auto 50px;
  }
  .text-btn03 span {
    font-size: 14px;
  }
}

.text-btn04 {
  width: 275px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  text-align: center;
  display: table;
  margin: 0 0 50px;
  position: relative;
}
.text-btn04 span {
  color: #fff;
}
.text-btn04 span::before {
  content: "";
  background: url(/en/sus_conf/2024/img/icon_arrow_r_w_01.png) no-repeat;
  background-size: 32px auto;
  width: 32px;
  height: 17px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
@media screen and (max-width: 750px) {
  .text-btn04 {
    width: calc(100% - 50px);
    padding: 10px 32px 10px 0;
    margin: 0 auto 50px;
  }
  .text-btn04 span {
    font-size: 14px;
  }
}

.c-sec-message--2 .box-comment--1 .img-thumb .box-name .outside-1 {
  position: absolute;
  bottom: -70px;
  color: #707070;
  font-size: 14px;
  left: 0;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb .box-name .outside-1 {
    left: 10px;
    right: 0;
    bottom: -115px;
    width: calc(100% - 30px);
  }
}

.c-sec-message--2 .box-comment--1 .img-thumb .box-name .outside-2 {
  position: absolute;
  bottom: -30px;
  color: #707070;
  font-size: 14px;
  right: 76px;
}
@media screen and (max-width: 750px) {
  .c-sec-message--2 .box-comment--1 .img-thumb .box-name .outside-2 {
    right: auto;
    left: 0;
  }
}

/* ---------------------------------------------
*   TOP-KV
--------------------------------------------- */
a:focus, button:focus, [type=button]:focus, [type=image]:focus, [type=submit]:focus, iframe:focus {
  outline: 2px solid #fff;
}

.slideblock01 {
  display: block;
  margin: 0 auto;
  padding-top: 0;
  margin-bottom: 0;
  position: relative;
  min-width: 1263px;
  background: #133863;
}
.slideblock01 .topSlider {
  display: block;
  overflow: hidden;
}
.slideblock01 .topSlider img {
  width: 100%;
  transition: 0.6s;
  transform: scale(1, 1);
}
.slideblock01 .topSlider img:hover {
  opacity: 0.7;
}
.slideblock01 .topSlider .noHov img {
  opacity: 1 !important;
}
.slideblock01 .topSlider a:focus img {
  opacity: 0.7;
}
.slideblock01 p.caution {
  font-size: 14px;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

@media screen and (max-width: 768px) {
  .slideblock01 {
    display: block;
    margin-bottom: 0;
    position: relative;
    min-width: 100%;
  }
  .slideblock01 .topSlider {
    max-height: inherit;
    width: 100%;
    display: block;
  }
  .slideblock01 .topSlider img {
    max-height: inherit;
    width: 100%;
    height: auto;
  }
  .slideblock01 .bg {
    max-height: inherit;
    max-width: 100%;
    position: relative;
    top: 0;
    right: 0;
  }
  .slideblock01 .bg img {
    max-height: inherit;
    width: 100%;
    height: auto;
  }
  .slideblock01 p.caution {
    font-size: 14px;
    position: static;
    margin: 15px 20px 0;
    left: 0;
    transform: none;
  }
}
/* ---------------------------------------------
*   awardreview
--------------------------------------------- */
.review {
  max-width: 1235px;
  margin: 0 auto;
}
.review .c-message-ttl-1 {
  margin: 70px auto 100px;
}
.review .c-message-ttl-1 h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 50px;
}
.review .c-message-ttl-1 h1 small {
  display: block;
  font-size: 20px;
}
.review .c-message-ttl-1 p.lead {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px !important;
  font-weight: normal;
  width: 1100px;
  margin: 50px auto 0;
}
.review .c-sec-review--1 {
  margin-bottom: 210px;
}
.review .c-sec-review--1 h2 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.review .c-sec-review--1 .box-comment--1 {
  display: flex;
  justify-content: space-between;
}
.review .c-sec-review--1 .box-comment--1 .img-thumb {
  width: 420px;
  position: relative;
  margin-left: 50px;
}
.review .c-sec-review--1 .box-comment--1 .img-thumb .box-name {
  background: #133863;
  position: absolute;
  top: 360px;
  left: 15px;
  padding: 25px 20px 25px 0;
  color: #fff;
  display: flex;
  width: 320px !important;
}
.review .c-sec-review--1 .box-comment--1 .img-thumb .box-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: -62%;
  background: #133863;
  width: 90%;
  height: 100%;
  z-index: 2;
}
.review .c-sec-review--1 .box-comment--1 .img-thumb .box-name p {
  font-size: 15px;
  position: relative;
  z-index: 3;
  padding-right: 0;
  margin-right: 40px;
}
.review .c-sec-review--1 .box-comment--1 .img-thumb .box-name p strong {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  display: block;
}
.review .c-sec-review--1 .box-comment--1 .img-thumb .box-name p:nth-child(2) {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.review .c-sec-review--1 .box-comment--1 .img-thumb .outside-1 {
  display: block;
  position: absolute;
  top: 535px;
  color: #707070;
  font-size: 14px;
}
.review .c-sec-review--1 .box-comment--1 .box-comment {
  width: calc(100% - 535px);
  line-height: 2;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc {
  max-height: 175px;
  overflow: hidden;
  padding-bottom: 80px;
  position: relative;
  transition: max-height 0.8s;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc.big {
  max-height: 370px;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc.middle {
  max-height: 240px;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p {
  font-size: 16px;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-more {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 75px;
  padding-top: 5px;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-more span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-more span:before {
  content: "";
  background: #000;
  display: inline-block;
  width: 75px;
  height: 1px;
  vertical-align: middle;
  margin-right: 15px;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-close {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 75px;
  padding-top: 5px;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-close span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  transition: 0.5s;
}
.review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-close span:before {
  content: "";
  background: #000;
  display: inline-block;
  width: 75px;
  height: 1px;
  vertical-align: middle;
  margin-right: 15px;
}
.review #comment02.c-sec-review--1 {
  margin-top: 150px !important;
}
.review #comment03.c-sec-review--1 {
  margin-top: 220px !important;
}
.review .anchorList01 {
  margin-bottom: 50px;
}
.review .anchorList01 ul {
  display: flex;
}
.review .anchorList01 ul li {
  text-align: center;
  margin: 0 15px;
  width: 20%;
}
.review .anchorList01 ul li a {
  font-size: 13px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #000;
  padding: 10px 5px 30px;
  background: url(/en/sus_conf/2024/img/icon_arrow_b_01.png) no-repeat bottom 10px center;
  background-size: 17px auto;
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 88px;
}
.review .anchorList01 ul li a:hover {
  opacity: 0.6;
}
.review .c-sec-review--2 {
  margin-top: 60px;
  padding-top: 60px;
}
.review .c-sec-review--2:focus-visible {
  outline: none !important;
  border: none !important;
}
.review .c-sec-review--2.mt-0 {
  margin-top: 0 !important;
}
.review .c-sec-review--2.pt-0 {
  padding-top: 0 !important;
}
.review .c-sec-review--2 h2 {
  font-size: 20px;
  background: #133863;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  font-weight: bold;
  padding: 11px 0;
}
.review .c-sec-review--2 h2.mb-0 {
  margin-bottom: 0 !important;
}
.review .c-sec-review--2 .reviewBox01 {
  margin-bottom: 50px !important;
  padding-bottom: 50px;
  border-bottom: 1px solid #333;
  width: 980px;
  margin: 0 auto;
  position: relative;
}
.review .c-sec-review--2 .reviewBox01.mvp::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 114px;
  height: 94px;
  background: url(/en/sus_conf/2024/img/icon_mvp_01.png) no-repeat;
  background-size: 100% auto;
  display: block;
}
.review .c-sec-review--2 .reviewBox01:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.review .c-sec-review--2 .reviewBox01 h3 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 110px;
}
.review .c-sec-review--2 .reviewBox01 p.company {
  font-size: 16px;
  text-align: center;
  color: #333333;
  margin-bottom: 70px;
}
.review .c-sec-review--2 .reviewBox01 p.company span {
  display: block;
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
  line-height: 1;
}
.review .c-sec-review--2 .reviewBox01 .col2 {
  display: flex;
  flex-wrap: wrap;
}
.review .c-sec-review--2 .reviewBox01 .col2 p.thumb {
  width: 490px;
  margin-right: 50px;
}
.review .c-sec-review--2 .reviewBox01 .col2 p.thumb a {
  display: block;
  transition: 0.4s;
  position: relative;
  /*&::before{ content: "Learn More"; font-size: 14px; background: url(/en/sus_conf/2024/img/icon_arrow_r_b_02.png) no-repeat right 15px center rgba(255, 255, 255, 0.7); background-size: 8px auto; padding: 8px 38px; color: #000; position: absolute; bottom: 0; right: 0;}*/
}
.review .c-sec-review--2 .reviewBox01 .col2 p.thumb a strong {
  transition: 0.6s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 3;
  height: 100%;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
  background: rgba(19, 56, 99, 0.9);
}
.review .c-sec-review--2 .reviewBox01 .col2 p.thumb a:hover {
  opacity: 0.6;
}
.review .c-sec-review--2 .reviewBox01 .col2 p.thumb a:hover strong {
  opacity: 1;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right {
  width: calc(100% - 540px);
}
.review .c-sec-review--2 .reviewBox01 .col2 .right ul {
  display: flex;
  margin-bottom: 30px;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right ul li {
  width: calc(50% - 10px);
  margin-right: 20px;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right ul li:nth-child(2n) {
  margin-right: 0;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right p {
  margin-bottom: 65px;
  line-height: 2;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right p.lim03 {
  height: 70px;
  overflow: hidden;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right p.btn {
  width: 275px;
  margin-bottom: 0;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a {
  display: block;
  background: #b2b2b2;
  text-align: center;
  transition: 0.4s;
  padding: 10px 0;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a span {
  font-size: 14px;
  color: #fff;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a span:after {
  content: "";
  background: url(/en/sus_conf/2024/img/ico_plus_01.png) no-repeat;
  background-size: 20px auto;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  margin-top: -5px;
}
.review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a:hover {
  opacity: 0.6;
}
.review .c-sec-review--2 .reviewCol2 {
  display: flex;
  flex-wrap: wrap;
  width: 1030px;
  margin: 0 auto;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol {
  width: calc(50% - 20px);
  margin-right: 40px;
  margin-bottom: 70px;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol:nth-child(2n) {
  margin-right: 0;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol a {
  display: block;
  transition: 0.4s;
  position: relative;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol a::before {
  content: "Learn More";
  font-size: 14px;
  background: url(/en/sus_conf/2024/img/icon_arrow_r_b_02.png) no-repeat right 15px center rgba(255, 255, 255, 0.7);
  background-size: 8px auto;
  padding: 8px 38px;
  color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol a strong {
  transition: 0.6s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 3;
  height: 100%;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
  background: rgba(19, 56, 99, 0.9);
}
.review .c-sec-review--2 .reviewCol2 .reviewCol a:hover {
  opacity: 0.6;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol a:hover strong {
  opacity: 1;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 25px;
}
.review .c-sec-review--2 .reviewCol2 .reviewCol p.company {
  font-size: 16px;
  color: #333333;
}
.review .c-sec-review--2 .reviewCol3 {
  display: flex;
  flex-wrap: wrap;
}
.review .c-sec-review--2 .reviewCol3 .reviewCol {
  width: calc(33% - 16px);
  margin-right: 30px;
  margin-top: 35px;
}
.review .c-sec-review--2 .reviewCol3 .reviewCol:nth-child(3n) {
  margin-right: 0;
}
.review .c-sec-review--2 .reviewCol3 .reviewCol a {
  display: block;
  transition: 0.4s;
  position: relative;
}
.review .c-sec-review--2 .reviewCol3 .reviewCol a strong {
  transition: 0.6s;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  z-index: 3;
  height: 100%;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  font-weight: normal;
  background: rgba(19, 56, 99, 0.9);
}
.review .c-sec-review--2 .reviewCol3 .reviewCol a:hover {
  opacity: 0.6;
}
.review .c-sec-review--2 .reviewCol3 .reviewCol a:hover strong {
  opacity: 1;
}
.review .c-sec-review--2 .reviewCol3 .reviewCol h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 20px;
}
.review .c-sec-review--2 .reviewCol3 .reviewCol p.company {
  font-size: 16px;
  color: #333333;
  line-height: 1;
}
.review .c-sec-review--3 {
  margin: 90px 0 170px;
}
.review .c-sec-review--3 h2 {
  font-size: 20px;
  background: #256FC5;
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
  font-weight: bold;
  padding: 10px 0;
}
.review .c-sec-review--3 .PhotoWrap01 {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
}
.review .c-sec-review--3 .PhotoWrap01 p {
  width: calc(50% - 15px);
  margin-right: 30px;
  margin-bottom: 30px;
}
.review .c-sec-review--3 .PhotoWrap01 p:nth-child(2n) {
  margin-right: 0;
}
.review .c-sec-review--3 .PhotoWrap01 p img {
  width: 100%;
  height: auto;
}
.review .c-sec-review--3 .PhotoWrap02 {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
}
.review .c-sec-review--3 .PhotoWrap02 p {
  width: calc(33% - 16px);
  margin-right: 30px;
  margin-bottom: 30px;
}
.review .c-sec-review--3 .PhotoWrap02 p:nth-child(3n) {
  margin-right: 0;
}
.review .c-sec-review--3 .PhotoWrap02 p img {
  width: 100%;
  height: auto;
}
.review .c-btn-col {
  margin-top: 200px;
}
.review .c-btn-col.big .text-btn04 {
  padding: 19px 0;
  margin-bottom: 30px;
}
.review .c-btn-col.mt-0 {
  margin-top: 0;
}

@media screen and (max-width: 1560px) {
  .c-sec-review--1 {
    margin-bottom: 250px !important;
  }
  .c-sec-review--1 .box-comment--1 .img-thumb .box-name {
    left: 15px !important;
    width: 405px !important;
  }
  .c-sec-review--1 .box-comment--1 .img-thumb .box-name p {
    margin-right: 22px !important;
    padding-right: 10px !important;
  }
  .c-sec-review--1 .box-comment--1 .img-thumb .box-name p:nth-child(2) {
    width: 50%;
  }

  .review #comment02.c-sec-review--1 {
    margin-top: 150px !important;
  }

  .review #comment03.c-sec-review--1 {
    margin-top: 280px !important;
  }
}
@media screen and (max-width: 768px) {
  .review {
    max-width: 100%;
  }
  .review .c-message-ttl-1 {
    margin: 20px auto 50px;
  }
  .review .c-message-ttl-1 h1 {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .review .c-message-ttl-1 h1 small {
    display: block;
    font-size: 16px;
    margin-top: 10px;
  }
  .review .c-message-ttl-1 p.lead {
    font-size: 16px;
    width: auto;
    margin: 20px 20px 130px !important;
    text-align: left;
  }
  .review .c-sec-review--1 {
    margin-bottom: 100px !important;
  }
  .review .c-sec-review--1 h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .review .c-sec-review--1 .box-comment--1 {
    display: block;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb {
    width: 100%;
    margin: 0 0 30px 0 !important;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb img {
    width: 285px;
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb .box-name {
    left: auto !important;
    right: 0;
    top: 20px;
    padding: 15px 20px;
    margin: 0 20px 0 0;
    width: calc(100% - 220px) !important;
    position: absolute;
    display: block;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb .box-name::before {
    display: none;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb .box-name p {
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-right: none;
    font-size: 12px;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb .box-name p strong {
    font-size: 16px;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb .box-name p:nth-child(2) {
    margin-right: 0 !important;
    margin-top: 15px;
    width: 100%;
  }
  .review .c-sec-review--1 .box-comment--1 .img-thumb .outside-1 {
    position: static;
    margin: 15px 20px 0 0;
    text-align: right;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment {
    width: auto;
    max-width: 100%;
    min-width: 0;
    margin: 30px 20px 0;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc {
    padding-bottom: 50px;
    margin-bottom: 30px;
    max-height: 145px;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc.big {
    max-height: 115px;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc.middle {
    max-height: 115px;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-more {
    height: 50px;
    padding-top: 20px;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-more span:before {
    width: 30px;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-close {
    height: 50px;
    padding-top: 20px;
  }
  .review .c-sec-review--1 .box-comment--1 .box-comment .box-text .box-acc p.btn-close span:before {
    width: 30px;
  }
  .review #comment02.c-sec-review--1 {
    margin-top: 100px !important;
  }
  .review #comment03.c-sec-review--1 {
    margin-top: 100px !important;
  }
  .review .anchorList01 {
    margin-bottom: 70px;
  }
  .review .anchorList01 ul {
    display: block;
  }
  .review .anchorList01 ul li {
    margin: 0 15px 20px;
    width: auto;
    display: block;
  }
  .review .anchorList01 ul li a {
    font-size: 14px;
    padding: 15px 0 28px;
    background: url(/en/sus_conf/2024/img/icon_arrow_b_01.png) no-repeat bottom 12px center;
    background-size: 17px auto;
    width: 100%;
    display: block;
  }
  .review .c-sec-review--2 {
    margin-top: 40px;
    padding-top: 40px;
  }
  .review .c-sec-review--2.spMar {
    margin: 0 20px;
  }
  .review .c-sec-review--2.mt-0 {
    margin-top: 0 !important;
  }
  .review .c-sec-review--2 h2 {
    font-size: 18px;
    margin-bottom: 50px;
    padding: 10px 0;
  }
  .review .c-sec-review--2 .reviewBox01 {
    margin: 0 20px 50px !important;
    padding-bottom: 50px;
    width: auto;
    margin: 0 auto;
    position: relative;
  }
  .review .c-sec-review--2 .reviewBox01.mvp::before {
    content: "";
    position: static;
    width: 114px;
    height: 94px;
    background: url(/en/sus_conf/2024/img/icon_mvp_01_sp.png) no-repeat;
    background-size: 100% auto;
    display: block;
    margin: 0 auto 30px;
  }
  .review .c-sec-review--2 .reviewBox01:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .review .c-sec-review--2 .reviewBox01 h3 {
    font-size: 18px;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 0;
  }
  .review .c-sec-review--2 .reviewBox01 p.company {
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
  }
  .review .c-sec-review--2 .reviewBox01 p.company span {
    font-size: 13px;
    margin-top: 5px;
    text-align: left;
    margin-left: 1em;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 {
    display: flex;
    flex-wrap: wrap;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 p.thumb {
    width: auto;
    margin-right: 0;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 p.thumb a {
    display: block;
    transition: 0.4s;
    position: relative;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 p.thumb a::before {
    font-size: 14px;
    padding: 3px 24px;
    background: url(/en/sus_conf/2024/img/icon_arrow_r_b_02.png) no-repeat right 10px center rgba(255, 255, 255, 0.7);
    background-size: 8px auto;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 p.thumb a strong {
    display: none;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 p.thumb a:hover::before {
    display: none;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right {
    width: auto;
    margin-top: 30px;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right ul {
    display: flex;
    margin-bottom: 25px;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right h4 {
    margin-bottom: 10px;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right p {
    margin-bottom: 40px;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right p.lim03 {
    height: 92px;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right p.btn {
    margin-left: 0;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a {
    display: block;
    background: #b2b2b2;
    text-align: center;
    transition: 0.4s;
    padding: 10px 0;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a span {
    font-size: 14px;
    color: #fff;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a span:after {
    content: "";
    background: url(/en/sus_conf/2024/img/ico_plus_01.png) no-repeat;
    background-size: 20px auto;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
    margin-top: -5px;
  }
  .review .c-sec-review--2 .reviewBox01 .col2 .right p.btn a:hover {
    opacity: 0.6;
  }
  .review .c-sec-review--2 .reviewCol2 {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    margin: 0 20px;
  }
  .review .c-sec-review--2 .reviewCol2 .reviewCol {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 60px;
  }
  .review .c-sec-review--2 .reviewCol2 .reviewCol:nth-child(2n) {
    margin-right: 0;
  }
  .review .c-sec-review--2 .reviewCol2 .reviewCol a::before {
    padding: 3px 24px;
    background: url(/en/sus_conf/2024/img/icon_arrow_r_b_02.png) no-repeat right 10px center rgba(255, 255, 255, 0.7);
    background-size: 8px auto;
  }
  .review .c-sec-review--2 .reviewCol2 .reviewCol a strong {
    display: none;
  }
  .review .c-sec-review--2 .reviewCol2 .reviewCol h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  .review .c-sec-review--2 .reviewCol2 .reviewCol p.company {
    font-size: 14px;
    color: #333333;
  }
  .review .c-sec-review--2 .reviewCol3 {
    display: flex;
    flex-wrap: wrap;
    width: auto;
    margin: 0;
  }
  .review .c-sec-review--2 .reviewCol3 .reviewCol {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
  }
  .review .c-sec-review--2 .reviewCol3 .reviewCol a strong {
    display: none;
  }
  .review .c-sec-review--2 .reviewCol3 .reviewCol h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  .review .c-sec-review--2 .reviewCol3 .reviewCol p.company {
    font-size: 15px;
  }
  .review .c-sec-review--3 {
    margin: 90px 0 0px;
  }
  .review .c-sec-review--3 h2 {
    font-size: 20px;
    background: #256FC5;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    font-weight: bold;
    padding: 10px 0;
  }
  .review .c-sec-review--3 .PhotoWrap01 {
    display: block;
    flex-wrap: wrap;
    font-size: 0;
    margin: 0 20px;
  }
  .review .c-sec-review--3 .PhotoWrap01 p {
    width: 100%;
    margin-right: 30px;
    margin-bottom: 15px;
  }
  .review .c-sec-review--3 .PhotoWrap01 p:nth-child(2n) {
    margin-right: 0;
  }
  .review .c-sec-review--3 .PhotoWrap01 p img {
    width: 100%;
    height: auto;
  }
  .review .c-sec-review--3 .PhotoWrap02 {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
    margin: 0 20px;
  }
  .review .c-sec-review--3 .PhotoWrap02 p {
    width: calc(50% - 8px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .review .c-sec-review--3 .PhotoWrap02 p:nth-child(2n) {
    margin-right: 0;
  }
  .review .c-sec-review--3 .PhotoWrap02 p:nth-child(3n) {
    margin-right: 15px;
  }
  .review .c-sec-review--3 .PhotoWrap02 p:nth-child(6n) {
    margin-right: 0;
  }
  .review .c-sec-review--3 .PhotoWrap02 p img {
    width: 100%;
    height: auto;
  }
  .review .c-btn-col {
    margin-top: 130px;
  }
}
.remodal.awardModal {
  max-width: 100%;
  width: 1235px;
  padding-top: 80px;
}
.remodal.awardModal .remodal-close {
  top: 100px;
  right: 20px;
  width: 53px;
  height: 53px;
  background: url(/en/sus_conf/2024/img/btn_modal_close.png) no-repeat 0 0 !important;
  z-index: 2;
  background-size: 100% auto !important;
}
.remodal.awardModal .modalWrap .modalInner {
  background: #fff;
  padding: 70px 75px 15px;
  position: relative;
}
.remodal.awardModal .modalWrap .modalInner.mvp::before {
  content: "";
  position: absolute;
  top: 80px;
  right: 130px;
  width: 114px;
  height: 94px;
  background: url(/en/sus_conf/2024/img/icon_mvp_01.png) no-repeat;
  background-size: 100% auto;
  display: block;
}
.remodal.awardModal .modalWrap .modalInner h3 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 200px;
}
.remodal.awardModal .modalWrap .modalInner h3.long {
  padding: 0 100px;
}
.remodal.awardModal .modalWrap .modalInner p.company {
  font-size: 16px;
  text-align: center;
  color: #333333;
  margin-bottom: 100px;
}
.remodal.awardModal .modalWrap .modalInner p.company span {
  display: block;
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
  line-height: 1;
}
.remodal.awardModal .modalWrap .modalInner .col2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.remodal.awardModal .modalWrap .modalInner .col2 .left {
  width: 350px;
  margin-right: 50px;
}
.remodal.awardModal .modalWrap .modalInner .col2 .left ul li {
  margin-bottom: 30px;
}
.remodal.awardModal .modalWrap .modalInner .col2 .right {
  width: calc(100% - 400px);
}
.remodal.awardModal .modalWrap .modalInner .col2 .right h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}
.remodal.awardModal .modalWrap .modalInner .col2 .right p {
  margin-bottom: 30px;
  text-align: left;
  line-height: 2;
}
.remodal.awardModal .modalWrap .modalInner .right.col1 h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: left;
}
.remodal.awardModal .modalWrap .modalInner .right.col1 p {
  margin-bottom: 30px;
  text-align: left;
  line-height: 2;
}

.yt_contents {
  margin: 200px auto;
}
.yt_contents .col2 {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
}
.yt_contents .col2 .col {
  width: calc(50% - 20px);
  margin-right: 20px;
}
.yt_contents .col2 .col:nth-child(2n) {
  margin-left: 20px;
  margin-right: 0;
}
.yt_contents .col2 .col h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  line-height: 2;
}
.yt_contents .col2 .col .thumb {
  position: relative;
  transition: 0.4s;
}
.yt_contents .col2 .col .thumb::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  background: url("/en/sus_conf/2024/img/archive/icon_movie_01.png") no-repeat;
  background-size: 100% auto;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.yt_contents .col2 .col .thumb:hover {
  opacity: 0.6;
}
.yt_contents .col2 .col .thumb img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .yt_contents {
    margin: 100px 20px;
  }

  .yt_contents .col2 {
    flex-wrap: wrap;
  }

  .yt_contents .col2 .col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .yt_contents .col2 .col:nth-child(2n) {
    margin-left: 0;
    margin-bottom: 0;
  }

  .yt_contents .col2 .col h2 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 400px) {
  .review .c-sec-review--1 .box-comment--1 .img-thumb .outside-1 {
    margin-top: 40px;
  }
}
/* ---------------------------------------------
*   archive
--------------------------------------------- */
.csr-archive h2 {
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
}
.csr-archive .archiveThumb {
  margin: 30px auto 0;
  display: table;
  text-align: center;
}
.csr-archive .archiveThumb a {
  display: block;
  transition: 0.4s;
}
.csr-archive .archiveThumb a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .csr-archive h2 {
    font-size: 14px;
  }
  .csr-archive .archiveThumb {
    margin: 30px 15px 0;
  }
}
.archive {
  max-width: 1235px;
  margin: 0 auto;
}
.archive .c-archive-ttl-1 {
  margin: 70px auto 90px;
}
.archive .c-archive-ttl-1 h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}
.archive .c-archive-ttl-1 p.lead {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px !important;
  font-weight: normal;
  width: 1040px;
  margin: 0 auto;
}
.archive .c-sec-archive--1 {
  padding-bottom: 40px;
}
.archive .c-sec-archive--1 h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.archive .c-sec-archive--1 .archiveCol3 {
  display: flex;
  flex-wrap: wrap;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol {
  width: 390px;
  margin-right: 30px;
  margin-bottom: 110px;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol:nth-child(3n) {
  margin-right: 0;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol .thumb {
  position: relative;
  transition: 0.4s;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol .thumb::before {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  background: url("/en/sus_conf/2024/img/archive/icon_movie_01.png") no-repeat;
  background-size: 100% auto;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol .thumb:hover {
  opacity: 0.6;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol .thumb img {
  width: 100%;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol ul li {
  display: block;
  width: calc(50% - 5px);
  margin-right: 10px;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol ul li:last-child {
  margin-right: 0;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol ul li a {
  border-radius: 5px;
  background: url(/en/sus_conf/2024/img/icon_play_03.png) no-repeat right 15px center #B5B5B5;
  background-size: 17px auto;
  width: 100%;
  display: block;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 5px 0;
  font-weight: bold;
  transition: 0.4s;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol ul li a:hover {
  opacity: 0.6;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  line-height: 1.5;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol p.company {
  font-size: 16px;
  margin-top: 20px;
}
.archive .c-sec-archive--1 .archiveCol3 .archiveCol p.company span {
  font-size: 14px;
  display: block;
}

@media screen and (max-width: 768px) {
  .mt0-sp {
    margin-top: 0 !important;
  }

  .archive {
    max-width: 100%;
  }
  .archive .c-archive-ttl-1 {
    margin: 30px 0 45px;
  }
  .archive .c-archive-ttl-1 h1 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .archive .c-archive-ttl-1 p.lead {
    font-size: 18px;
    width: auto;
    margin: 0 15px 80px !important;
    text-align: left;
  }
  .archive .c-sec-archive--1 {
    margin: 0 20px;
    padding-bottom: 90px;
  }
  .archive .c-sec-archive--1.pb-0 {
    padding-bottom: 0 !important;
  }
  .archive .c-sec-archive--1 h2 {
    font-size: 18px;
  }
  .archive .c-sec-archive--1 .archiveCol3 {
    display: block;
  }
  .archive .c-sec-archive--1 .archiveCol3 .archiveCol {
    margin-bottom: 60px;
    width: 100%;
  }
  .archive .c-sec-archive--1 .archiveCol3 .archiveCol ul li a {
    font-size: 15px;
  }
  .archive .c-sec-archive--1 .archiveCol3 .archiveCol h3 {
    font-size: 16px;
    margin-top: 10px;
  }
  .archive .c-sec-archive--1 .archiveCol3 .archiveCol p.company {
    font-size: 14px;
  }
  .archive .c-sec-archive--1 .archiveCol3 .archiveCol p.company span {
    font-size: 12px;
  }

  .remodal.awardModal {
    width: auto;
    padding-top: 65px;
    margin: 0 20px;
  }
  .remodal.awardModal .remodal-close {
    top: 85px;
    right: 20px;
    width: 30px;
    height: 30px;
  }
  .remodal.awardModal .modalWrap .modalInner {
    padding: 15px;
  }
  .remodal.awardModal .modalWrap .modalInner.mvp::before {
    content: "";
    position: static;
    width: 66px;
    height: 54px;
    background: url(/en/sus_conf/2024/img/icon_mvp_01_sp.png) no-repeat;
    background-size: 100% auto;
    display: block;
    margin: 0 0 25px;
  }
  .remodal.awardModal .modalWrap .modalInner h3 {
    font-size: 16px;
    text-align: left;
    margin-bottom: 15px;
    padding: 0;
  }
  .remodal.awardModal .modalWrap .modalInner h3.long {
    padding: 0;
  }
  .remodal.awardModal .modalWrap .modalInner p.company {
    font-size: 14px;
    text-align: left;
    margin-bottom: 30px;
  }
  .remodal.awardModal .modalWrap .modalInner p.company span {
    font-size: 13px;
    text-align: left;
    margin-left: 1em;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 {
    display: block;
    margin-bottom: 160px;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .left {
    width: auto;
    margin-right: 0;
    margin-bottom: 0;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .left ul {
    display: flex;
    flex-wrap: wrap;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .left ul li {
    width: calc(50% - 8px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .left ul li:nth-child(2n) {
    margin-right: 0;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .left ul li.spCol1 {
    width: 100%;
    margin-right: 0;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .right {
    width: auto;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .right h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
  }
  .remodal.awardModal .modalWrap .modalInner .col2 .right p {
    margin-bottom: 30px;
    text-align: left;
    font-size: 16px;
    line-height: 2;
  }
  .remodal.awardModal .modalWrap .modalInner .right.col1 h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
  }
  .remodal.awardModal .modalWrap .modalInner .right.col1 p {
    margin-bottom: 30px;
    text-align: left;
    font-size: 16px;
    line-height: 2;
  }
}
