@charset "utf-8";

@import "reset.css";
@import "utility.css?var=20220816";
@import "exvalidation.css";
@import "animations.css";
@import "animate.css";
@import "skins/flat/grey.css";
@import "tsg-webfont.css";
@import "jquery.mCustomScrollbar.css";

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * html/body
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* リンクなどの要素をタップした時の色を消す */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 長押しした際に表示されるポップアップメニューを消す */
* {
  -webkit-touch-callout: none;
}

/* 行頭禁則文字 */
* {
  word-break: break-word;
  word-wrap: break-word;
}

body {
  width: 100%;
  position: relative;
  background: #ffffff;
  font-family: "YuGothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #181e24;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
}
@media (max-width: 520px) {
  body {
    font-size: 12px;
  }
  body._active{
    overflow: hidden;
  }
  a {
    word-break: break-all;
  }
}

/*
.is-ie body{
	font-family: "Meiryo","ＭＳ Ｐゴシック","MS PGothic", sans-serif;
}
*/

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * module(全ページ共通のパーツ)
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* display
-------------------------------------------------------------*/

.disp {
  display: block !important;
}

.disp-none {
  display: none !important;
}

.disp-table {
  display: table !important;
}

.disp-inline {
  display: inline !important;
}

.disp-inline-block {
  display: inline-block !important;
}

/* visibility
-------------------------------------------------------------*/

.visibility-hidden {
  visibility: hidden !important;
}

.visibility-visibile {
  visibility: visible !important;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * header
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.header {
  /* position: relative; */
  position: fixed;
  width: 100%;
  min-width: 1080px;
  height: 70px;
  margin: 0 auto;
  padding: 0;
  z-index: 9;
}
@media (max-width: 520px) {
  .header {
    position: fixed;
    height: 50px;
    min-width: 100%;
    z-index: 99;
    background: #fff;
    border-bottom: 1px solid #ddd;
    transition: 400ms ease-out;
  }
  .header.top-sp{
    background: none;
    border-bottom: none;
    transition: 600ms ease-out;
  }
}

@media (max-width: 520px) {
  .hamburgerbox {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 15px;
    z-index: 99999999;
  }

  .hamburgerbox._active {
    position: fixed;
  }
}

@media (max-width: 520px) {
  .hamburgerbox span {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 18px;
    height: 2px;
    margin: auto;
    background: #333;
  }
  .hamburgerbox span:first-child {
    top: 7px;
    transition: top 0.5s, 0.5s;
  }
  .hamburgerbox span:nth-child(2) {
    top: 13px;
  }
  .hamburgerbox span:nth-child(3) {
    top: 19px;
    transition: 0.5s, bottom 0.5s;
  }

  .hamburgerbox.top-sp span{
    background: #fff;
  }

  /* active */
  .hamburgerbox._active span {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 18px;
    height: 2px;
    margin: auto;
    background: #fff;
  }
  .hamburgerbox._active span:first-child {
    top: 15px;
    transform: rotate(45deg);
  }
  .hamburgerbox._active span:nth-child(2) {
    display: none;
  }
  .hamburgerbox._active span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
  }
  .noborder a:before{
    content:none!important;
  }
}

.fixed-header {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 1000;
  height: 50px;
  box-shadow: 0 0 1px rgba(0,0,0,0.2);
}

@media (max-width: 520px) {
  .fixed-header {
    background: #fff;
  }
}

.header-logo-box{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  animation: logobox_cl .1s ease-in-out;
}
.header-logo-box._active{
  animation: logobox_op .1s ease-in-out;
  z-index: 98;
}
.header-logo-box._active h1{
  opacity: .7;
}
.header-big-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 180px;
  z-index: 100;
  opacity: 1;
  animation: BIGLOGO_st .2s ease-in-out;
}
.header-big-logo._active{
  left: -100px;
  opacity: 0;
  animation: BIGLOGO_bk .2s ease-in-out;
}

@keyframes logobox_op{
  from{
    z-index: 100;
    opacity: 1;
  }
  to{
    z-index: 98;
    opacity: .5;
  }
}
@keyframes logobox_cl{
  from{
    z-index: 98;
    opacity: .5;
  }
  to{
    z-index: 100;
    opacity: 1;
  }
}

@media (max-width: 520px) {
  .header-big-logo {
    width: 100px;
    height: 100px;
    left: 0;
    opacity: 1;
    animation: BIGLOGO_st .2s ease-in-out;
  }
  .header-big-logo img {
    width: 100%;
    height: auto;
  }
  .header-big-logo._active{
    left: -100px;
    opacity: 0;
    animation: BIGLOGO_bk .2s ease-in-out;
  }
}
@keyframes BIGLOGO_st{
  from{
    left: -100px;
    opacity: 0;
  }
  top{
    left: 0;
    opacity: 1;
  }
}
@keyframes BIGLOGO_bk{
  from{
    left: 0;
    opacity: 1;
  }
  top{
    left: -100px;
    opacity: 0;
  }
}
.header-small-logo,.header-small-logo-sub {
  position: absolute;
  top: 0;
  left: -152px;
  opacity: 0;
  width: 152px;
  height: 50px;
  z-index: 1001;
  animation: SMOLLLOGO_bk .1s ease-in-out;
}
.header-small-logo-sub{
  left: 0;
  opacity: 1;
}
.header-small-logo._active{
  left: 0;
  opacity: 1;
  animation: SMOLLLOGO_st .1s ease-in-out;
}
@media (max-width: 520px) {
  .header-small-logo a,.header-small-logo-sub a {
    display: block;
  }
  .header-small-logo a img,.header-small-logo-sub a img {
    width: 100% !important;
    height: auto !important;
  }
}
@keyframes SMOLLLOGO_st{
  from{
    left: -152px;
    opacity: 0;
  }
  top{
    left: 0;
    opacity: 1;
  }
}
@keyframes SMOLLLOGO_bk{
  from{
    left: 0;
    opacity: 1;
  }
  top{
    left: -152px;
    opacity: 0;
  }
}
/*-------------------------  main-visual ------------------------- */

.main-visual {
  position: relative;
  width: 100%;
  min-width: 1080px;
  min-height: 800px;
  overflow: hidden;
  background: linear-gradient(73deg, #222226 8.58%, #8E8E8E 72.99%);
  height: 66.1vw;
  min-height: 800px;
  max-height: 846px;
}
@media (max-width: 520px) {
  .main-visual {
    width: 100%;
    min-width: 100%;
    max-height: initial;
    height: auto!important;
    min-height: 179vw; /* フォールバック。実測値はJSで正確に上書きされる */
  }
  .main-visual:before,.main-visual:after{
    content: '';
    display: block;
    position: absolute;
    width: 56.27vw;
    height: 47.73vw;
    margin: auto;
    background: rgba(217, 217, 217, 0.30);
    filter: blur(19.73vw);
    border-radius: 83.47vw;
  }
  .main-visual:before {
    bottom: 28.53vw;
    left: -15.2vw;
  }

  .main-visual:after {
    top: 63.2vw;
    right: -9.6vw;
    z-index: -1;
  }
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
}

.spinner span {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #222222;
  border-top-color: #666666;
  -webkit-animation: spinner 0.5s infinite ease-in;
  -moz-animation: spinner 0.5s infinite ease-in;
  -o-animation: spinner 0.5s infinite ease-in;
  -ms-animation: spinner 0.5s infinite ease-in;
}

.loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  line-height: 100px;
  text-align: center;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 14px;
  color: #666666;
}

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@-moz-keyframes spinner {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-o-keyframes spinner {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-ms-keyframes spinner {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}

.overlay {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 800px;
}
@media (max-width: 520px) {
  .overlay {
    display: block;
    height: auto!important;
    min-height: auto!important;
  }
}

.main-visual-pic {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 520px){
  .main-visual-pic {
    height: 179vw;
    min-height: 179vw;
    margin-top: 22%;
  }
}
.main-visual-pic div{
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;

}

@media (max-width: 520px) {
  .main-visual-pic div {
    background-position: top center!important;
    background-size: 100%!important;
  }
}
.main-visual-pic-slide {
  visibility: hidden;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 800px;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  z-index: 1;
}
@media (max-width: 520px){
  .main-visual-pic-slide{
    min-height:auto;
  }
}

.main-visual-contents-wrap {
  display: none;
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  max-width: 1590px;
  margin: auto;
  max-height: 960px;
  right: 0;
}
@media (max-width: 520px) {
  .main-visual-contents-wrap {
    position: initial;
    top: 0;
    height: 164vw;
    min-height: 159vw;
    max-height: 179vw;
  }
}

.main-visual-contents-inner {
  position: absolute;
  top: 0;
  width: 100% !important;
  height: 100%;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 520px) {
  .main-visual-contents-inner {
    top: 0;
    bottom: 0;
    display: table;
    width: 100%;
    height: fit-content;
    min-height: fit-content;
    padding: 0;
  }
}
.main-visual-contents-inner:after{
  content: '';
  display: block;
  position: absolute;
  bottom: -130px;
  right: 9.5%;
  left: 0;
  width: 313px;
  height: 265px;
  margin: auto;
  border-radius: 313px;
  background: rgba(217, 217, 217, 0.30);
  filter: blur(74px);
  z-index: -1;
}
@media (max-width: 520px){
  .main-visual-contents-inner:after{
    content: none;
    filter: blur(3.5px);
  }
}
.main-visual-contents {
  position: absolute;
  bottom: 50px;
  padding: 0 48px 0 114px;
  width: 100%;
}
@media (max-width: 520px) {
  .main-visual-contents {
    display: table-cell;
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 179vw;
    padding: 0;
    color: #ffffff;
    vertical-align: middle;
    text-align: center;
  }
}
.main-visual-contents figure{
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .main-visual-contents figure{
    margin-left: 5px;
  }
}
@media (max-width: 520px){
  .mv-textbox-sp{
    position: relative;
    max-width: 89.33vw;
    width: 100%;
    margin: 0 auto 8.8vw;
  }
  .mv-text-svg{
    width: 60%;
  }
  .mv-textbox-sp figure img{
    width: 100%;
  }
}
.mv-textbox{
  margin-top: 22px;
}
@media (max-width: 520px){
  .mv-textbox{
    position: absolute;
    right: 0;
    bottom: 11%;
    left: 0;
    margin-top: 0;
  }
}

.main-visual-copy {
  width: 394px;
  margin: 2px 0 0 -3px;
}

.main-visual-copy img {
  width: 100%;
}
.main-visual-copy span {
  display: block;
  width: 222px;
  height: auto;
  margin: 0 0 22px 0;
}
.main-visual-title{
  position: absolute;
  top: 55px;
  right: 0;
  left: 0;
  color: #FFF;
  text-align: center;
  text-shadow: 0 0 21.82px rgba(169, 169, 169, 0.60);
  font-family: Roboto;
  font-size: 128px;
  font-weight: 300;
  line-height: normal;
  margin: auto;
  z-index: 10;
  transition: font-size .3s;
  opacity: 0.9;
}
@media (max-width: 1260px){
  .main-visual-title{
    font-size: 100px;
  }
}
@media (max-width: 520px){
  .main-visual-title{
    font-size: 10.67vw;
    margin-top: 13%;
    transition: initial;
  }
}
.main-visual-title-shadow{
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  margin: 50px auto auto;
  color: #FFF;
  font-family: Roboto;
  font-size: 167px;
  font-weight: 400;
  line-height: normal;
  mix-blend-mode: color-dodge;
  filter: blur(12.305000305175781px);
  filter: brightness(24.61px);
  text-align: center;
  z-index: 10;
  opacity: .6;
  transition: font-size .3s;
}
@media (max-width: 1260px){
  .main-visual-title-shadow{
    font-size: 147px;
  }
}
@media (max-width: 520px){
  .main-visual-title-shadow{
    margin: 26% -25vw 0;
    font-size: 15.3vw;
    filter: blur(3.5px);
    transition: initial;
  }
}
.main-visual-text {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 520px) {
  .main-visual-text {
    position: relative;
    right: -5.33vw;
    display: block;
    width: 80%;
    margin: 0 auto;
    padding: 4vw 0;
    bottom: 3.73vw;
  }
  .main-visual-text:before{
    content: '';
    position: absolute;
    top: -1.6vw;
    right: -5.6vw;
    display: block;
    width: 88.15vw;
    height: 37.73vw;
    background-image: url(../images/mv_text_bk_sp.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
  }
}
.main-visual-text2 {
  margin-right: auto;
}
@media (max-width: 520px) {
  .main-visual-text2 {
    display: none;
  }
}
.main-visual-text3 {
  position: absolute;
  right: 93px;
  bottom: -17px;
  width: 448px;
  padding: 28px 0px 35px 75px;
  box-sizing: border-box;
  background-image: url(../images/mv_text_bk.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media (max-width: 520px){
  .main-visual-text3{
    display: grid;
    position: initial;
    width: 100%;
    margin: 0 0 0 14%;
    padding: 0;
    border: none;
    background: none;
  }
}
.main-visual-text3 p{
  width: auto;
  margin:0!important;
  text-align: left;
}
@media (max-width: 520px){
  .main-visual-text3 p{
    text-align: left;
  }
}
.main-visual-text p + p {
  margin-top: 28px;
}
.main-visual-bodycopy {
  width: 485px;
  word-break: normal;
  word-wrap: break-word;
  line-height: 1.8;
  font-size: 11px;
  font-weight: 600;
  color: #000;
}
.main-visual-bodycopy:first-of-type{
  margin-top: 32px;
  margin-bottom: 2px !important;
}
.main-visual-bodycopy + .main-visual-bodycopy {
  margin-top: 19px;
}
.main-visual-bodycopy strong {
  display: block;
  font-size: 32.218px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 3.222px;
  color: #fff;
}
@media (max-width: 520px) {
  .main-visual-bodycopy strong{
    font-size: 6.66vw;
    line-height: 150%;
    font-weight: 700;
    letter-spacing: 0.67vw;
    color: #fff;
  }
}
.main-visual-bodycopy._sub {
  margin-top: -3px !important;
  text-align: left;
}
@media (max-width: 520px) {
  .main-visual-bodycopy._sub {
    margin: 1.33vw 0!important;
    margin-bottom: 5.33vw;
    font-size: 2.67vw;
    font-weight: normal;
  }
}
.main-visual-bodycopy.mv-right{
  width: auto;
  font-size: 11.634px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.163px;
  color: #fff;
}
@media (max-width: 520px) {
  .main-visual-bodycopy.mv-right{
    margin: 0 0 0.53vw 0 !important;
    font-size: 2.4vw;
    line-height: 180%;
    font-weight: 700;
    letter-spacing: 0.24vw;
    color: #fff;
    text-align: left;
  }
}
.main-visual-text2 p.main-visual-bodycopy{
  color: #fff;
}
.mv-deadline-date{
  margin: 0!important;
  color: #fff;
  text-align: center;
  font-size: 25.058px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 2.506px;
}
@media (max-width: 520px) {
  .mv-deadline-date{
  font-size: 4.77vw;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 0.48vw;
    color: #fff;
  }
}
.mv-deadline-date span{
  font-size: 20px;
}
@media (max-width: 520px){
  .mv-deadline-date span{
    font-size: 13.871px;
    letter-spacing: 1.387px;
  }
}
@media (max-width: 520px) {
  .top-copy {
    margin: 117px auto 20px;
  }
  .top-copy-img {
    width: 100%;
  }
}
.main-visual-btn {
  margin: 32px 0 0;
  z-index: 5;
  width: 100%;
}

.main-visual-btn a {
  display: block;
  width: 200px;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #BDBDBD;
  border-radius: 3px;
  line-height: 50px;
  text-decoration: none;
  text-align: right;
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  position: relative;
  background: rgba(255, 255, 255, 0.20);
}

.main-visual-btn a::before{
  content: "";
  display: block;
  width: 18px;
  height: 19px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  mask-image: url('../images/icon_top_mv_allow.svg');
  background-color: #fff;
}

.main-visual a:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
  opacity: 0.5;
  position: absolute;
  bottom: 30px;
  /*left: 0;*/
  right: 20px;
  z-index: 5;
  width: 100%;
  width: 80px;
  margin-bottom: 0;
  text-align: center;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 12px;
  color: #ffffff;
}
@media (max-width: 520px) {
  .scroll-arrow {
    display: none;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * nav
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

nav {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0;
  background: #ffffff;
  box-shadow: none;
  border-bottom: 1px solid #ddd;
}

.fixed-header nav {
  height: 50px;
}

nav ul {
  display: block;
  clear: both;
  float: right;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  border-top: 2px solid #e81b2c;
  -moz-transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
  -o-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
}

nav ul li {
  float: left;
  position: relative;
  list-style-type: none;
  width: auto;
  height: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  border-right: 1px solid #dddddd;
}

/*
Pre-Entery を目立たせる
*/
nav ul li.page-pre-entry {
  background: #e81b2c;
}

nav ul li.page-pre-entry:hover:before {
  background: #fff;
}

nav ul li.page-pre-entry a {
  color: #fff !important;
}

nav ul li.page-pre-entry a:hover {
  color: #fff;
}

nav ul li:nth-of-type(1) {
  border-left: 1px solid #dddddd;
}

nav ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 2px;
  width: 100%;
  width: -webkit-calc(100% + 2px);
  width: -moz-calc(100% + 2px);
  width: -ms-calc(100% + 2px);
  width: -o-calc(100% + 2px);
  width: calc(100% + 2px);
  margin-left: -50%;
  margin-left: -webkit-calc(-50% - 1px);
  margin-left: -moz-calc(-50% - 1px);
  margin-left: -ms-calc(-50% - 1px);
  margin-left: -o-calc(-50% - 1px);
  margin-left: calc(-50% - 1px);
  background: #e81b2c;
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -o-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

nav ul li.current_on:before,
nav ul li:hover:before {
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

nav ul li a {
  display: block;
  position: relative;
  height: 100%;
  margin: 0;
  padding: 18px 16px 0px;
  border-left: none;
  box-shadow: none;
  line-height: 1;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #181e24;
  -moz-transform: skew(20deg);
  -webkit-transform: skew(20deg);
  -o-transform: skew(20deg);
  -ms-transform: skew(20deg);
  transform: skew(20deg);
}

.fixed-header nav ul li a {
  padding: 10px 30px 0;
  font-size: 13px;
}

@media (max-width: 1279px) {
  nav ul li a {
    padding: 20px 14px 0;
  }

  .fixed-header nav ul li a {
    padding: 10px 15px 0;
  }
}

nav ul li a > span {
  font-family: "YuGothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 10px;
  font-weight: lighter;
}

nav ul li.nav-sns-icon {
  border: none;
}

nav ul li.nav-sns-icon.twitter {
  margin-left: 20px;
}

nav ul li.nav-sns-icon a {
  display: block;
  width: 28px;
  height: 28px;
  margin: 20px 10px 0 0;
  padding: 0;
  border-radius: 50%;
  background: #101f33;
  line-height: 28px;
  text-align: center;
  vertical-align: middle;
  font-size: 13px;
  color: #ffffff;
  opacity: 1;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.fixed-header nav ul li.nav-sns-icon a {
  margin: 10px 10px 0 0;
}

nav ul li.current_on a,
nav ul li a:hover {
  position: relative;
  text-decoration: none;
  color: #e81b2c;
}

nav ul li.nav-sns-icon a:hover {
  opacity: 0.7;
  color: #ffffff;
}

nav ul li.nav-sns-icon:hover:before {
  display: none;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * footer
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

footer {
  position: relative;
  width: 100%;
  min-width: 1080px;
  /* margin-top: 80px; */
  background: #101f33;
  color: #ffffff;
}
@media (max-width: 520px) {
  footer {
    min-width: 100%;
    /* margin-top: 70px; */
  }
}

footer a {
  color: #ffffff;
}

footer a:hover {
  color: #ffffff;
}

.footer-inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 16px 0 14px;
  border-top: 1px solid #080f19;
  box-shadow: inset 0 1px 1px #182f4d;
}
@media (max-width: 520px) {
  .footer-inner {
    padding: 15px 0 10px;
  }
}

.footer-read{
  width: 100%;
  margin: 0 auto;
  padding: 12px 0 14px;
  border-top: 1px solid #080f19;
  box-shadow: inset 0 1px 1px #182f4d;
}

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

.sns-link__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .sns-link__container {
    margin-right: 0;
  }
}

.sns-link__title {
  margin: 0;
  font-size: 16px;
  padding: 0 20px 0 0;
}
.sns-link__list {
  display: flex;
}

.sns-link__list a {
  display: inline-block;
  margin: 0 10px;
  width: 50px;
  height: 50px;
  opacity:1;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (max-width: 520px) {
  .sns-link__list a {
    width: 40px;
    height: 40px;
  }
}
.sns-link__list a:hover{
  opacity: .7;
}
.sns-link__list a img {
  width: 100%;
  height: auto;
}

.footer-content {
  position: relative;
  text-align: left;
  width: 1000px;
  margin: 0 auto;
  padding: 13px 0 17px;
  display: flex;
  flex-wrap: wrap;
}
  .ut-weaken--non {
    line-height: 1.8;
    font-size: 12px;
  }
@media (max-width: 520px) {
  .footer-content {
    display: block;
    width: 100%;
    padding: 0;
  }

  .footer-inner .ut-talign-center.ut-weaken--non.ut-mb0 {
    padding: 0 15px 5px;
  }
}

.footer-mm-ttl {
  display: table-cell;
  position: relative;
  width: 360px;
  vertical-align: middle;
}

.footer-mm-ttl > p {
  position: relative;
  margin: 0;
  padding-top: 5px;
  padding-left: 150px;
  line-height: 1.5em;
  font-size: 14px;
  font-weight: lighter;
  color: #ffffff;
}

.footer-mm-ttl > p:before {
  content: "\E8AE";
  position: absolute;
  top: 50%;
  left: 50px;
  margin-top: -10px;
  font-family: "tsg-webfont";
  font-size: 80px;
  color: #ffffff;
}

.footer-mm-ttl > p > span {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 28px;
}

.footer-mm-form {
  display: table-cell;
  width: 640px;
  padding-left: 40px;
  vertical-align: middle;
  color: #ffffff;
}

.footer-menu {
  position: relative;
  width: 600px;
  margin: 0 auto;
  text-align: left;
  font-size: 12px;
}
@media (max-width: 520px) {
  .footer-menu {
    width: 100%;
  }
}

.footer-menu > ul {
  float: left;
  width: 150px;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  list-style-type: none;
  position: relative;
  margin: 0;
  padding: 1px 0 10px;
}
@media (max-width: 520px) {
  .footer-menu li:first-child {
    margin: 0 15px 0 0;
  }
}
@media (max-width: 520px) {
  .footer-menu._sp {
    display: flex;
    width: fit-content;
    margin: 10px auto 0 auto;
  }
}

.footer-sns {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.footer-sns a {
  margin: 0 4px !important;
  display: block;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 2px;
  background: #999999;
  text-decoration: none;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: #ffffff;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.footer-sns a img {
  width: 100%;
  height: auto;
}

.footer-sns a:hover {
  opacity: 0.7;
}

.icon-sns-gp {
  font-size: 16px;
}

.sns-num {
  display: inline-block;
  position: relative;
  height: 30px;
  margin: 0;
  margin-right: 20px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 2px;
  background: #ffffff;
  line-height: 30px;
  font-size: 12px;
  color: #333333;
}

.sns-num a {
  display: inline;
  background: none;
  color: #333333;
}

.sns-num a:hover {
  color: #333333;
}

.sns-num-last {
  display: inline-block;
  position: relative;
  height: 30px;
  margin: 0;
  margin-left: 6px;
  margin-right: 0px;
  padding: 0 6px;
  border-radius: 2px;
  background: #ffffff;
  line-height: 30px;
  font-size: 12px;
  color: #333333;
}

.sns-num:after,
.sns-num-last:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  height: 0;
  width: 0;
  margin-top: -4px;
  border: solid transparent;
  border-right-color: #ffffff;
  border-width: 4px;
  pointer-events: none;
}

.footer-mail {
  margin: 0;
  padding: 0;
  width: 400px;
  color: #ffffff;
}
@media (max-width: 520px) {
  .footer-mail {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  }
}

.footer-mail__head {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 5px;
  padding: 0 0 13px;
  font-size: 16px;
}

.footer-mail__desc {
  font-size: 12px;
}

.footer-mail > .link-btn-red-border {
  font-size: 12px;
  width: 220px;
  height: 35px;
  line-height: 35px;
}

.copyright {
  position: relative;
  clear: both;
  padding: 15px 0;
  width: 100%;
  background: #ffffff;
}
@media (max-width: 520px) {
  .copyright {
    padding: 8px 0;
  }
}
.copyright-inner {
  display: table;
  position: relative;
  width: 1000px;
  height: 36px;
  margin: 0 auto;
  line-height: 36px;
}
@media (max-width: 520px) {
  .copyright-inner {
    display: flex;
    width: 100%;
    height: auto;
    padding: 0 15px;
  }
}

.footer-etic-logo {
  display: table-cell;
  width: 400px;
  margin: 0;
  padding: 0;
  color: #181e24;
}
@media (max-width: 520px) {
  .footer-etic-logo {
    display: block;
    width: 30%;
    height: auto;
    line-height: 1;
  }
}

@media (max-width: 520px) {
  .footer-etic-logo a img {
    width: 47px;
    height: 21px;
  }
}

.copyright small {
  display: table-cell;
  width: 600px;
  text-align: right;
  font-size: 12px;
  color: #666666;
}
@media (max-width: 520px) {
  .copyright small {
    display: grid;
    width: 70%;
    height: auto;
    font-size: 10px;
    color: #737d8b;
    line-height: 180%;
    vertical-align: middle;
    align-content: center;
  }
}

.logotext{
  margin-left: -2px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * article/section
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

article {
  position: relative;
  width: 100%;
  min-width: 1080px;
  height: auto;
  margin: 0;
  padding: 0;
}
@media (max-width: 520px) {
  article {
    min-width: auto;
  }
}

section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

section.bt {
  border-top: 1px solid #dddddd;
}

section img {
  max-width: 100%;
}
@media (max-width: 520px) {
  section img {
    width: 100%;
    height: auto;
  }
}

.section-header {
  position: relative;
  padding: 20px 0;
  background: #101f33;
  background: -webkit-linear-gradient(60deg, #e81b2c, #009);
  background: -moz-linear-gradient(60deg, #e81b2c, #009);
  background: -o-linear-gradient(60deg, #e81b2c, #009);
  background: -ms-linear-gradient(60deg, #e81b2c, #009);
  background: linear-gradient(60deg, #e81b2c, #009);
  color: #ffffff;
}
@media (max-width: 520px) {
  .section-header {
    width: 100%;
    padding: 60px 15px;
  }
}

.section-header-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0 auto;
}

.section-header-inner-narrow {
  position: relative;
  z-index: 3;
  width: 800px;
  margin: 0 auto;
}
.section-header-inner-narrow {
  width: 100%;
}

.section-inner {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 520px) {
  .section-inner {
    width: 100%;
    padding: 50px 0 30px;
  }
}
.section-inner.syllabus{
  padding: 50px 0 45px;
}
@media (max-width: 520px) {
  .section-inner.syllabus {
    padding: 50px 0 30px;
  }
}
@media (max-width: 520px) {
  .section-inner.people,.section-inner.app,.section-inner.faq {
    padding: 50px 0 30px;
    text-align: center;
  }
}
.section-inner.top{
  padding: 50px 0;
}
@media (max-width: 520px) {
  .section-inner.top {
    padding: 25px 0 30px;
  }
}

@media (max-width: 520px) {
  .section-inner.app {
    overflow: hidden;
  }
}

@media (max-width: 520px){
  .faqbox{
    padding: 0 15px;
    text-align: left;
  }
}

.section-inner-narrow {
  position: relative;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 520px) {
  .section-inner-narrow {
    padding: 50px 15px;
  }
}

.section-inner-wide {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 50px 0;
}

.ut-lead.about{
  margin-bottom: 17px;
}
@media screen and (max-width: 520px) {
  .ut-lead {
    margin-bottom: 0;
    font-size: 16px;
  }
}

.ut-lead.syllabus{
  margin-bottom: 30px;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * heading
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.top-h2 {
  position: relative;
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.top-h2-red {
  margin: 20px auto 0 auto;
  border-top: 1px solid #e81b2c;
  color: #e81b2c;
}
@media (max-width: 520px) {
  .top-h2-red {
    margin: 20px auto 10px auto;
  }
}
.top-h2-narrow {
  width: 1000px;
}
@media (max-width: 520px) {
  .top-h2-narrow {
    width: 100%;
  }
}

.top-h2-text-bg-wht {
  display: inline-block;
  position: relative;
  top: -20px;
  margin: 0;
  padding: 0 30px;
  background: #ffffff;
  font-size: 16px;
}

.top-h2-text-bg-blk {
  display: inline-block;
  position: relative;
  top: -20px;
  margin: 0;
  padding: 0 30px;
  background: #101f33;
  font-size: 16px;
}
@media (max-width: 520px) {
  .top-h2-text-bg-blk {
    font-size: 16px;
  }
}

.top-h2-text-bg-gry {
  display: inline-block;
  position: relative;
  top: -20px;
  margin: 0;
  padding: 0 30px;
  background: #f5f6f7;
  font-size: 16px;
}

.top-h2-eng {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 36px;
}

.top-h3 {
  margin-top: 50px;
  margin-bottom: 30px;
  line-height: 1.5;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #b2bfcc;
}

.top-h3 span {
  position: relative;
}

.top-h3 span:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #b2bfcc;
  border-radius: 10px;
}

.page-h2 {
  margin: 0;
  padding: 25px 0;
  line-height: 1.5;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
}
@media (max-width: 520px) {
  .page-h2 {
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
    font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  }
}

.page-h2 > span {
  letter-spacing: 3px;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 100;
  font-size: 45px;
}
@media (max-width: 520px) {
  .page-h2 > span {
    font-size: 25px;
    font-family: "Helvetica", "aktiv-grotesk-std", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic";
  }
}

.page-h2._syllabus {
  padding: 0 0 5px;
}

.page-h2._syllabus span {
  display: block;
  font-weight: bold;
}

.page-h2._syllabus .title {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif !important;
  font-size: 30px !important;
  line-height: 1.97;
  letter-spacing: 3px;
}

.page-h2._syllabus .sub {
  font-family: "YuGothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  margin: -16px 0 5px;
  font-size: 14px;
  line-height: 2.07;
  letter-spacing: 1.4px;
}

.page-h2._syllabus .schedule {
  font-family: "YuGothic", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 2.2px;
}

.page-h3 {
  position: relative;
  margin: 30px 0 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e81b2c;
  line-height: 1;
  font-size: 22px;
  font-weight: bold;
  color: #e81b2c;
}
.page-h3.syllabus-cnt02{
  margin: 20px 0 21px;
  padding-bottom: 15px;
}
.page-h3.syllabus_cnt02-02{
  margin: 27px 0 40px;
  padding-bottom: 15px;
}
.page-h3.cheerteam{
  padding-bottom: 17px;
  margin: 20px 0 40px;
}
@media (max-width: 520px) {
  .page-h3.cheerteam {
    padding-bottom: 10px;
  }
}

.page-h3.basecamp{
  margin: 60px 0 40px;
  padding-bottom: 16px;
}
.syllabus_cnt02-02_textbox p{
  margin-bottom: 29px;
}
.syllabus_cnt02-02_textbox p:last-child{
  margin-bottom: 39px;
}
@media screen and (max-width: 520px) {
  .page-h3 {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #e81b2c;
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    color: #e81b2c;
  }
  .page-h3.syllabus_cnt02-02,.page-h3.syllabus-cnt02,.page-h3.cheerteam{
    font-size: 20px;
  }
  .syllabus-contents .page-h3{
    margin-top: 0;
    line-height: 1.6;
  }

  .syllabus-contents .page-h3.syllabus-cnt02{
    margin-top: 0!important;
  }
}

.page-h4 {
  position: relative;
  margin: 40px auto 10px;
  color: #f12545;
  font-size: 17px;
  font-weight: bold;
}

.page-h4-num{
  text-align: center;
  padding-left: 0;
}

.page-h4-num,.page-h4-num02,.page-h4-num.syllabus {
  position: relative;
  margin-bottom: 10px;
  padding-left: 38px;
  font-weight: bold;
  font-size: 18px;
  color: #101f33;
}
.page-h4-num.top{
  padding-left: 0;
}
.page-h4-num.syllabus{
  padding-left: 0;
}
.page-h4-num.about{
  text-align: left;
  padding-left: 38px;
}
@media (max-width: 520px) {
  .page-h4-num.syllabus {
    text-align: center;
  }
}

.syllabus-cnt02-02-imgbox{
  width: 600px;
  margin: 30px auto;
}
@media (max-width: 520px) {
  .syllabus-cnt02-02-imgbox{
    width: 100%;
    margin: 30px auto;
  }
}

.syllabus-cnt02-02-imgbox.cheer{
  margin: 38px auto 42px auto;
}
.syllabus-cnt02-02-imgbox.basecamp{
  margin: 40px auto;
}

.page-h4-num > span,.page-h4-num02 > span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border: 1px solid #101f33;
  border-radius: 4px;
  line-height: 28px;
  text-align: center;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  color: #101f33;
}
.page-h4-num.syllabus > span{
  line-height: 26px;
}
.page-h4-num.ut-talign-center > span,.page-h4-num02.ut-talign-center > span {
  margin: 0;
  position: absolute;
  left: 0;
}
@media (max-width: 520px){
  .page-h4-num.ut-talign-center > span,.page-h4-num02.ut-talign-center > span {
    float: left;
  }
}
@media (max-width: 520px) {
  .page-h4-num,.page-h4-num02 {
    position: relative;
    font-size: 18px;
    line-height: 24px;
  }
  .page-h4-num > span,.page-h4-num02 > span {
    border-radius: 3px;
  }
}

@media (max-width: 520px) {
  .page-h4-num {
    text-align: left;
    line-height: 1.6;
    height: auto!important;
  }
  .page-h4-num span{
    margin-right: 0;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * common parts
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.link-btn-red {
  display: inline-block;
  outline: none;
  position: relative;
  z-index: 2;
  width: 300px;
  height: 60px;
  background-color: #e81b2c;
  border: 1px solid #e81b2c;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  font-size: 18px;
  color: #ffffff;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (max-width: 520px) {
  .link-btn-red {
    width: 100%;
    height: 45px;
    font-size: 14px;
    line-height: 45px;
  }
}
.link-btn-red._small {
  width: 300px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}


@media (max-width: 520px) {
  .link-btn-red._medium {
    display: block;
    top: -3px;
    right: 0;
    left: 0;
    width: 87%;
    height: auto;
    margin: auto;
    padding: 8px 0;
    font-size: 18px;
  }
}
.link-btn-red100 {
  width: 100%;
}

.link-btn-red::before,
.link-btn-red::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
  background-color: #e81b2c;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.link-btn-red::before {
  right: 0;
}
.link-btn-red::after {
  left: 0;
}

.link-btn-red:hover {
  background-color: transparent;
  border-color: #e81b2c;
  color: #e81b2c;
}

.link-btn-red:hover::before,
.link-btn-red:hover::after {
  width: 0;
  background-color: #e81b2c;
}

.link-btn-red-border {
  display: inline-block;
  outline: none;
  /* overflow: hidden; */
  position: relative;
  z-index: 2;
  width: 300px;
  height: 60px;
  background-color: transparent;
  border: 1px solid #e81b2c;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  font-size: 18px;
  color: #e81b2c;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.link-btn-red-border.preentry{
  color: #fff;
  border: 1px solid #fff;
  width: 240px;
  height: 51px;
  line-height: 50px;
  font-size: 16px;
}
@media (max-width: 520px) {
  .link-btn-red-border {
    /* max-width: 300px; */
    width: 100%;
    height: 63px;
    font-size: 18px;
    line-height: 63px;
  }
}

.link-btn-red-border::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.link-btn-red-border:hover {
  color: #ffffff;
}

.link-btn-red-border:hover::after {
  background-color: #e81b2c;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.link-btn-black {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 60px;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  background: #1f262e;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}

.link-btn-black:hover {
  opacity: 0.7;
}

.link-btn-grey {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 60px;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  background: #5a738b;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}

.link-btn-grey:hover {
  opacity: 0.7;
}

.link-btn-grey-border {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 60px;
  margin: 0;
  padding: 0;
  border: 1px solid #b2bfcc;
  border-radius: 4px;
  background: #181e24;
  box-shadow: 0 0 10px #b2bfcc;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: #b2bfcc;
}

.link-btn-grey-border:hover {
  box-shadow: 0 0 20px #b2bfcc;
  color: #ffffff;
}

.link-btn-grey-middle {
  margin-left: 10px;
  padding: 10px;
  border-radius: 2px;
  background: #737d8b;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

.link-btn-grey-middle:hover {
  opacity: 0.7;
}

.link-btn-grey.student{
  position: absolute;
  width: 190px;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  background: #737D8B;
  bottom: -25px;
}

.link-btn-grey.student:before{
  content:'';
  display: block;
}

.link-btn-grey.student a{
  color: #fff;
  font-weight: bold;
}
.link-btn-grey.student a:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.link-btn-red-middle {
  margin-left: 10px;
  padding: 10px;
  border-radius: 2px;
  background: #e81b2c;
  color: #ffffff;
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}

.link-btn-red-middle:hover {
  opacity: 0.7;
}

.link-btn-white-small {
  padding: 5px 20px;
  border-radius: 2px;
  background: #ffffff;
  text-decoration: none;
  color: #5769f0;
  font-size: 12px;
}

.link-btn-white-small:hover {
  opacity: 0.7;
}

.link-btn-red-small {
  padding: 5px 20px;
  border-radius: 2px;
  background: #e81b2c;
  text-decoration: none;
  color: #ffffff;
  font-size: 12px;
}

.link-btn-red-small:hover {
  opacity: 0.7;
}

.link-btn-grey-small {
  margin-left: 10px;
  padding: 5px;
  border-radius: 2px;
  background: #737d8b;
  color: #ffffff;
  font-size: 10px;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 520px) {
  .link-btn-grey-small {
    padding: 3px 7px 3px 4px;
    margin-left: 0;
  }
  ._weblink{
    margin-left: 6px;
  }
}

.link-btn-grey-small:hover {
  opacity: 0.7;
}

blockquote {
  width: 90%;
  margin: 20px auto;
  padding: 30px;
  background: #fafafa;
  line-height: 1.5em;
  border: 3px solid #dddddd;
  border-radius: 6px;
}

.atten {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  box-shadow: 0 3px 0 #f5f6f7;
  font-size: 12px;
}

.fieldset {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 0;
  margin-top: 40px;
  padding: 20px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  box-shadow: 0 0 0 2px #f5f6f7;
  line-height: 1.8;
}
@media (max-width: 520px) {
  .fieldset {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .link-btn-grey-small.ut-transition200 {
    white-space: nowrap;
  }
}

.legend {
  position: relative;
  z-index: 1;
  margin: -35px 0 7px -10px;
  padding: 0 10px;
  background: #ffffff;
  font-size: 16px;
  font-weight: bold;
}

.caution {
  vertical-align: super;
  font-size: 10px;
}

@media screen and (min-width: 521px) {
  ._sp {
    display: none !important;
  }
}
@media (max-width: 520px) {
  ._pc {
    display: none !important;
  }
}

/*-------------------------  modal ------------------------- */

.lock {
  overflow: hidden;
}

.modal-content {
  position: relative;
  display: none;
  width: 600px;
  margin: 30px auto 0;
  padding: 10px 30px 50px;
  color: #ffffff;
}
@media (max-width: 520px) {
  .modal-content {
    width: 100%;
    padding: 0 15px 30px 15px!important;
  }
}

.modal-content.student{
  padding: 0;
}

.modal-content-wide {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.modal-overlay {
  z-index: 10000;
  position: fixed;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 120%;
  background: #101f33;
  opacity: 0;
}

.modal-wrap {
  z-index: 11000;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 520px) {
  .modal-close {
    width: 100%;
    font-size: 20px;
  }
}
@media (max-width: 520px){
  .icon-btn-cancel{
    margin: -40px 10px 0 0;
  }
}
.modal-close.wide {
  position: fixed;
  top: 40px;
  width: 100%;
  z-index: 10000;
}

.modal-close span {
  display: none;
}

.lt-ie9 .modal-close i {
  display: none;
}

.lt-ie9 .modal-close span {
  display: block;
}

/*-------------------------  accordion-menu ------------------------- */

.accordion-menu {
  position: relative;
  width: 100%;
}
@media (max-width: 520px) {
  .accordion-menu {
    padding: 0 15px 0 0;
  }
}

@media (max-width: 520px) {
  .ut-lead2.ut-talign-center.ut-mb50 {
    padding: 0 15px;
    margin-bottom: 30px !important;
    /* font-size: 14px; */
    font-size: 18px;
  }
}

.accordion-box{
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 0px 30px;
  margin-bottom: 55px;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 3px;
}
@media (max-width: 520px) {
  .accordion-box{
    margin-bottom: 25px;
  }
}

.accordion-box:before{
    display: block;
    position: absolute;
    bottom: -50px;
    left: 0;
    content: '';
    width: 100px;
    height: 50px;
    background-image: url('../images/syllabus_homebase.svg');
    z-index: 1;
}
@media (max-width: 520px) {
  .accordion-box:before{
    width: 40px;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

.accordion-number{
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    padding-top: 13px;
    color: #fff;
    font-size: 70px;
    z-index: 999;
    font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
    text-align: center;
    background: #e81b2c;
    z-index: 5;
}
@media (max-width: 520px) {
  .accordion-number{
    width: 40px;
    font-size: 30px;
  }
}

.accordion-menu .headlinebox{
  position: relative;
  width: 100%;
  padding-left: 130px;
  cursor: pointer;
}
@media (max-width: 520px) {
  .accordion-menu .headlinebox{
    padding-left: 40px;
  }
}

.accordion-menu .headlinebox__inner{
  width: 100%;
  max-width: 795px;
  padding: 28px 0 9px;
}
@media (max-width: 520px){
  .accordion-menu .headlinebox__inner{
    width: 100%;
    max-width: 100%;
    padding: 15px;
  }
}
@media (max-width: 520px){
  .accordion-menu .headlinebox__inner h2{
    display: block;
    height: auto;
    padding-right: 45px;
    font-size: 20px;
    line-height: 1.4;
  }
}

.accordion-menu .headlinebox__inner p{
  margin-top: 11px;
  font-size: 16px;
}
@media (max-width: 520px){
  .accordion-menu .headlinebox__inner p{
    margin-bottom: 0;
  }
}

.accordion-menu h2 {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 4px;
  line-height: 1.5;
  color: #E81B2C;
  font-size: 22px;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 520px) {
  .accordion-menu h2 {
    height: 55px;
    font-size: 14px;
    line-height: 55px;
  }
}

.accordion-headline{
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 17px 10px 16px 50px;
  border-radius: 4px;
  line-height: 1.5;
  color: #181e24;
  font-size: 22px;
  font-weight: normal;
  border: 1px solid #737d8b;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-headline:hover{
  background: #f5f6f7;
  cursor:pointer;
}
.accordion-headline:before{
  content: "\E831";
  position: absolute;
  top: 50%;
  left: 10px;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  border-radius: 50%;
  background: #101f33;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  font-family: "tsg-webfont";
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
}
.accordion-headline.active{
  color: #fff;
  background: #101f33;
}

.accordion-headline.active:before{
  color: #101f33;
  background: #fff;
  transform: rotate(45deg);
}

.accordion-menu .headlinebox:hover {
  background: #f5f6f7;
}

.accordion-menu h2.active {
  background: #101f33;
  color: #ffffff;
}

@media (max-width: 520px) {
  .accordion-headline.app-guide {
    text-align: left;
  }
}

.accordion-menu .headlinebox:after {
  content: "\E831";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  border-radius: 50%;
  background: #101f33;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  font-family: "tsg-webfont";
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.5, 1) 0s;
}
@media (max-width: 520px) {
  .accordion-menu .headlinebox:after {
    top: 27px;
    right: 15px;
    margin-top: 0;
  }
}

.accordion-menu .headlinebox.active:after{
  transform: rotate(45deg);
}

.ut-lead2.ut-talign-center.ut-mb50.sllabus{
  font-size: 20px;
  line-height: 1.8;
}
@media (max-width: 520px) {
  .ut-lead2.ut-talign-center.ut-mb50.sllabus{
    font-size: 18px;
  }
}

.sllabus-linkbox,.sllabus-linkbox02{
  position: relative;
  padding: 26px 31px 22px;
  margin-bottom: 65px;
  border: 1px solid #ddd;
  background: #F7F7F7;
  font-size: 16px;
  font-weight: bold;
}
.sllabus-linkbox{
  padding: 26px 30px 18px;
}
.sllabus-linkbox02{
  width: 780px;
  margin: 20px 60px 25px 160px;
  background: #fff;
}

.sllabus-linkbox-lead{
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
}

.sllabus-linkbox .ut-mt50.ut-mb0.ut-talign-center,.sllabus-linkbox02 .ut-mt50.ut-mb0.ut-talign-center{
  position: absolute;
  left: 30px;
  bottom: -25px;
  width: 225px;
  height: 50px;
  background: #fff;
}

.sllabus-linkbox .ut-mt50.ut-mb0.ut-talign-center a,.sllabus-linkbox02 .ut-mt50.ut-mb0.ut-talign-center a{
  width: 100%;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
}

.sllabus-linkbox02 .ut-mt50.ut-mb0.ut-talign-center{
  width: 200px;
  bottom: -29px;
}

.sllabus-linkbox .ut-mt50.ut-mb0.ut-talign-center{
  width: 200px;
}

.syllabus-contents{
  width: 780px;
  margin: 0 auto;
}
.ut-lead.s_contents{
  margin: 22px 0 40px;
}
@media (max-width: 520px) {
  .syllabus-contents{
    width: 100%;
    margin: 0;
  }
  .syllabus-contents .ut-lead.s_contents{
    padding-bottom: 40px;
  }
}

.syllabus01-imgbox{
  width: 600px;
  margin: 20px auto 42px auto;
}
@media (max-width: 520px){
  .syllabus01-imgbox{
    width: 100%;
    margin: 0 0 40px 0;
  }
}

.syllabus01-imgbox img{
  width: 100%;
  height: auto;
}

.syllabus01-img-contents{
  width: 100%;
  margin-top: 107px;
  padding-bottom: 48px;
  /* padding-bottom: 30px; */
  background: #F7F7F7;
}
@media (max-width: 520px) {
  .syllabus01-img-contents {
    margin-top: 0;
    padding-bottom: 0;
    background: none;
  }
}

.ut-mt30.ut-mb0.s_cnt04_link{
  margin-top: 18px!important;
}
.ut-mt30.ut-mb0.s_cnt04_link a{
  height: 50px;
  line-height: 50px;
  width: 307px;
  letter-spacing: -1px;
}

.syllabus01-img-contents.yamada{
  padding-bottom: 30px;
}

.syllabus01-img-contents .syllabus01-img-contents-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 0px 60px;
  width: 780px;
  margin: 0 60px 0 160px;
}
@media (max-width: 520px) {
  .syllabus01-img-contents .syllabus01-img-contents-inner{
    position: relative;
    display: block;
    width: 100%;
    padding: 0 15px 50px;
    margin: 0 auto;
  }
  .syllabus01-img-contents .syllabus01-img-contents-inner:before{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: calc(100% - 80px);
    background: #F7F7F7;
    content: '';
    z-index: -1;
  }
  .syllabus01-img-contents.syllabus .syllabus01-img-contents-inner{
    padding-bottom: 20px;
  }
  .syllabus01-img-contents.syllabus .sllabus-linkbox02{
    width: 93%;
    margin: auto;
  }
}

@media (max-width: 520px) {
  .sllabus-box{
    padding-bottom: 75px;
    background: #f7f7f7;
  }
}

.syllabus01-parson{
  width: 360px;
  margin-top: -80px;
}
@media (max-width: 520px) {
  .syllabus01-parson{
    width: 100%;
    margin: 50px 0 0 0;
  }
  .syllabus01-parson:last-of-type{
    width: 100%;
    margin-top: 40px;
  }
}
@media (max-width: 520px) {
  .syllabus-cnt01box{
    margin-top: 40px;
  }
}

.syllabus01-parson.contents2{
  width: 100%;
}

.syllabus01-parson figure{
  width: 160px;
  height: 160px;
  margin: 0 auto;
}

.syllabus01-parson-introducebox{
  margin-top: 20px;
  text-align: center;
}

.syllabus01-parson-company{
  margin: 0;
  font-size: 12px;
}

.syllabus01-parson-name{
  font-size: 18px;
  font-weight: bold;
}

.syllabus01-parson-scholl{
  margin: 5px 0 0 0;
  font-size: 12px;
}

.syllabuc-img-contents{
  list-style:none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 43px;
}
@media (max-width: 520px) {
  .syllabuc-img-contents {
    display: block;
    margin-top: 0;
  }
}

.syllabuc-img-contents li{
  list-style:none;
  width: 385px;
  margin: 0;
}
@media (max-width: 520px){
  .syllabuc-img-contents li{
    width: 100%;
    margin-bottom: 10px;
  }
}

.syllabus_link_btn{
  width: 300px;
  height: 63px;
  margin: 0 0 10px 0!important;
  line-height: 63px;
  background: #E81B2C;
  border-radius: 5px;
}
@media (max-width: 520px) {
  .syllabus_link_btn {
    width: 100%;
    margin: 20px 0 50px!important;
  }
}
.syllabus_link_btn.s_cnt03{
  display: block;
  letter-spacing: 1px;
  bottom: 2px;
}
.link-btn-red-border.ut-transition200.s_cnt04{
  width: 307px;
  height: 52px;
  line-height: 52px;
}
@media (max-width: 520px){
  .link-btn-red-border.ut-transition200.s_cnt04{
    width: 100%;
  }
}

.syllabus_link_btn a{
  width: 100%!important;
  height: 63px!important;
  line-height: 63px!important;
}

.syllabus_contents4{
  border-top: 1px solid #ddd;
  padding: 38px 0 0 0;
}

.syllabus_contents4.s_contents{
  padding: 40px 0;
}

.syllabus_contents4 .ut-lead{
  margin: 0;
}

.syllabus_contents4-imglist{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
}
@media (max-width: 520px) {
  .syllabus_contents4-imglist {
    display: block;
  }
}

.syllabus_contents4-imglist li{
  list-style:none;
  width: 385px;
  margin: 0!important;
}
@media (max-width: 520px){
  .syllabus_contents4-imglist li{
    width: 100%;
    margin-bottom: 10px!important;
  }
}

.s_cnt04{
  font-size: 16px!important;
}

.accordion-menu h2.active:after {
  background: #ffffff;
  color: #101f33;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.syllabus01-parson-textbox{
  margin-top: 18px;
}

.syllabus01-parson-textbox p{
  margin: 0;
}

.accordion-menu-date {
  font-size: 18px;
  color: #181E24;
}
@media (max-width: 520px) {
  .accordion-menu-date {
    display: block;
  }
}

.accordion-menu-eng {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.accordion-menu-content {
  width: 100%;
  display: none;
}

.accordion-menu-content.narrow {
  padding-bottom: 0;
}
@media (max-width: 520px) {
  .accordion-menu-content.narrow {
    padding: 0 0 0 40px;
  }
}

.accordion-menu-content.narrow.app{
  padding: 30px 60px 40px;
}
.accordion-menu-content.demoday{
  padding: 0 50px;
}
@media (max-width: 520px){
  .accordion-menu-content.demoday{
    padding: 0 15px;
  }
}

@media (max-width: 520px) {
  .accordion-menu-content.narrow.app{
    padding: 0px 15px 20px;
    text-align: left;
  }
  .accordion-menu-content.narrow.app h4.page-h4-num.ut-mt0.app{
    padding-left: 0;
  }
  .accordion-menu-content.narrow.app.app-guidelines03{
    padding: 0px 15px;
  }
}

.syllabus-inner,.syllabus-inner02,.syllabus-inner03,.syllabus-inner04{
  width: 840px;
  padding: 30px 0 40px;
  margin: 0 30px 0 auto;
  border-top: 1px solid #ddd;
}
.syllabus-inner{
  padding: 30px 0 26px;
}
.syllabus-inner02{
  border-top:none;
  padding-bottom: 35px;
}
.syllabus-inner02.cheer{
  padding: 36px 0 13px;
}
.syllabus-inner03{
  padding: 0 0 45px;
  border-top:none;
}
.syllabus-inner.s_cnt03{
  padding: 30px 0 38px;
}
.syllabus-inner04{
  padding: 30px 0 41px;
}
@media (max-width: 520px) {
  .syllabus-inner,.syllabus-inner02,.syllabus-inner03,.syllabus-inner04{
    width: calc(100% - 30px);
    padding: 50px 0 0;
    margin: 0 auto;
  }
  .syllabus-inner04{
    padding-bottom: 50px;
  }
  .syllabus-inner03{
    border: none;
  }
}
.syllabus-inner.demoday{
  border:none;
}

@media (max-width: 520px) {
  .ut-ps30.ut-strong.ut-lead1 {
    font-size: 11px;
  }
  .ut-strong.ut-lead1 {
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .accordion-menu.ut-mt50 {
    margin-top: 30px !important;
  }
}

.half-box-wrap,
.one-third-box-wrap,
.one-quarter-box-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 9px 30px;
}
.one-quarter-box-wrap.top{
  margin-top: 40px;
}
@media (max-width: 520px) {
  .one-quarter-box-wrap.top{
    margin-top: 0;
  }
}
.one-third-box-wrap{
  gap: 0 3%;
}
.half-box-wrap.syllabus{
  gap: 0px 30px;
  padding: 0;
}
@media (max-width: 520px) {
  .one-quarter-box-wrap {
    overflow-y: auto;
  }
}
@media (max-width: 520px) {
  .one-third-box-wrap {
    display: block;
  }
}
@media (max-width: 520px){
  .one-quarter-inner{
    width: fit-content;
    display: flex;
  }
  .one-quarter-inner.top{
    display: block;
  }
}
@media (max-width: 520px){
  .one-quarter-box.top{
    margin: 0 0 30px;
    width: 100%;
  }
  .page-h4-num.ut-talign-center.top{
    text-align: center;
    padding-left: 0;
  }

  .one-quarter-box.top figure{
    width: 85%;
    margin: 0 auto 20px auto;
  }
}

.one-quarter-box.top p:last-child{
  margin:0;
}

.half-box-wrap .syllabus{
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .half-box-wrap{
    padding: 0 15px 30px;
  }
  .half-box-wrap.app{
    padding: 0;
  }
}
@media (max-width: 521px) {
  .half-box-wrap .half-box {
    width: 100%;
  }
}
@media (max-width: 520px) {
  .half-box-wrap.about {
    width: 100%;
    background: rgba(247, 247, 247, 0.9);
  }
}

.half-box {
  display: table-cell;
  width: 375px;
}

.half-box.bb {
  border-bottom: 1px solid #dddddd;
}

.half-box:nth-of-type(1) {
  padding-right: 20px;
}

.half-box:nth-of-type(2) {
  padding-left: 20px;
}

.half-box:nth-of-type(1),.half-box:nth-of-type(2){
  padding: 0;
}

.one-third-box {
  width: 31.3333%;
  margin-bottom: 3%;
}
.one-third-box p{
  font-size: 14px;
}
.section-about-inner .one-third-box-wrap .one-third-box{
  margin-bottom: 1%;
}
@media (max-width: 520px) {
  .section-about-inner .one-third-box-wrap .one-third-box {
    margin-bottom: 30px;
  }
}
@media (max-width: 520px) {
  .one-third-box {
    display: block;
    width: 100%;
    padding-right: 0;
    margin-bottom: 28px;
  }
}

.theme-arc-wrap--blank {
  position: relative;
  background: #101f33;
}

.theme-arc-wrap--blank > .blank-image {
  position: absolute;
  width: 210px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  filter: invert(1);
}
@media (max-width: 520px) {
  .top-theme.top-theme--blank > .blank-image {
    width: 57%;
    height: auto;
  }
}
@media (max-width: 520px) {
  .theme-arc-wrap--blank > .blank-image {
    filter: none;
  }
}

.one-third-box--blank {
  pointer-events: none;
}

/* .one-third-box:nth-of-type(1),.one-third-box:nth-of-type(4) {
  padding-right: 30px;
}
@media (max-width: 520px) {
  .one-third-box:nth-of-type(1),.one-third-box:nth-of-type(4) {
    padding-right: 0;
  }
} */

/* .one-third-box:nth-of-type(3) {
  padding-left: 30px;
}
@media (max-width: 520px) {
  .one-third-box:nth-of-type(3) {
    padding-left: 0;
  }
} */

.one-quarter-box {
  display: table-cell;
  width: 25%;
  vertical-align: top;
  padding: 0 15px;
}
@media (max-width: 520px) {
  .one-quarter-box {
    display: block;
    width: 260px;
    margin: 0 30px 30px 0;
    padding: 0;
  }

  .one-quarter-box:last-child {
    margin-bottom: 0;
  }

  .one-quarter-box:last-child p:last-child {
    margin-bottom: 0;
  }

  .one-quarter-box p{
    font-size: 14px;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *top page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*-------------------------  section update ------------------------- */

#section-top-update {
  position: relative;
  width: 100%;
  min-width: 1080px;
  margin: 0 auto;
  padding: 0;
  background: #ffffff;
}
@media (max-width: 520px) {
  #section-top-update {
    min-width: auto;
  }
}
.top-update {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 520px) {
  .top-update {
    display: block;
    padding: 0 15px;
  }
}
.top-update-newinfo {
  display: table;
  width: 100%;
  min-width: 1080px;
  color: #fff;
  background: #111d2d;
  z-index: 9;
}
@media (max-width: 520px) {
  .top-update-newinfo {
    position: relative;
    display: block;
    min-width: auto;
    margin-top: -18vw;
    background: none;
    z-index: 9;
  }
}

.top-update-newinfo-ttl {
  align-items: center;
  background: #2e3843;
  box-sizing: border-box;
  display: table-cell;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 87%;
  font-weight: bold;
  justify-content: flex-end;
  padding-right: 5px;
  position: relative;
  text-align: right;
  vertical-align: middle;
  height: 65px;
}
@media (max-width: 520px) {
  .top-update-newinfo-ttl {
    display: table-cell;
    width: 50px;
    height: 37px;
    padding: 0 0 0 15px;
    text-align: left;
    font-size: 12px;
    vertical-align: middle;
    position: absolute;
    top: -37px;
    line-height: 38px;
  }
}

.top-update-newinfo-ttl:after {
  border-right: 25px solid transparent;
  border-top: 65px solid #2e3843;
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  height: 0;
  width: 0;
}
@media (max-width: 520px) {
  .top-update-newinfo-ttl:after {
    top: initial;
    right: -13px;
    bottom: 0;
    width: 10px;
    border-top: none;
    border-right: 14px solid transparent;
    border-bottom: 38px solid #2e3843;
    z-index: -1;
  }
}

.top-update-newinfo-block {
  align-items: center;
  box-sizing: border-box;
  display: table-cell;
  flex-wrap: wrap;
  padding-left: 40px;
  width: 80%;
  min-width: 950px;
  border: 1px solid #333;
}
@media (max-width: 520px) {
  .top-update-newinfo-block {
    display: block;
    min-width: auto;
    width: 100%;
    padding: 15px;
    margin: 0;
    border: none;
    flex-wrap: initial;
    vertical-align: middle;
    background: #0F1D2C;
  }
}

.top-update-newinfo-date {
  display: table-cell;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 87%;
  vertical-align: middle;
  height: 65px;
  width: 80px;
}
@media (max-width: 520px) {
  .top-update-newinfo-date {
    display: block;
    width: 100%;
    height: auto;
    font-size: 12px;
    line-height: 1.3;
  }
}

.top-update-newinfo-text {
  display: table-cell;
  padding-right: 3%;
  vertical-align: middle;
  height: 65px;
  width: 800px;
}
@media (max-width: 520px) {
  .top-update-newinfo-text {
    display: -webkit-box;
    width: 100%;
    height: auto;
    margin-top: 5px;
    padding: 0;
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
.top-update-newinfo-text a {
  color: #fff;
}
.top-update-newinfo-text a:hover {
  text-decoration: underline;
}

.top-update-information {
  overflow: hidden;
  position: relative;
  width: 485px;
  height: 290px;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 4px;
  background: #fafafa;
}
@media (max-width: 520px) {
  .top-update-information {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
}

.top-update-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 520px) {
  .top-update-banner {
    display: block;
    padding: 15px;
    overflow-y: scroll;
  }
}

.top-update-banner p + p {
  margin: 0 0 20px 20px;
}
@media (max-width: 520px) {
  .top-update-banner p + p {
    margin: 0;
  }
}
.top-update-banner p:last-child {
  margin-left: 0;
}
.half-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 520px) {
  .half-wrap {
    width: 1320px;
    flex-wrap: initial;
    justify-content: initial;
  }
}
@media (max-width: 520px) {
  .top-update-banner .half {
    display: inline-block;
    width: 49%;
    text-align: center;
  }
  .top-update-banner .half {
    display: block;
    width: 320px;
    margin: 0 10px 0 0;
  }
  .top-update-banner .half img {
    width: 100%;
    height: auto;
  }
}

.top-update-info-ttl {
  height: 40px;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 3px solid #dddddd;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
}
@media (max-width: 520px) {
  .top-update-info-ttl {
    font-size: 18px;
    color: #181E24;
  }
}

.top-update-info-ttl strong{
  margin-right: 2px;
}

.top-update-info-contents {
  height: 280px;
  padding: 10px 0;
}
@media (max-width: 520px) {
  .top-update-info-contents {
    height: auto;
    padding: 0;
  }
}

.top-update-info {
  display: table;
  width: 409px;
  border-bottom: 1px solid #ddd;
}
@media (max-width: 520px) {
  .top-update-info {
    display: block;
    width: 100%;
    padding: 15px 0;
  }
}

.top-update-info:last-of-type{
  border-bottom: none;
}

.top-update-info-date {
  display: table-cell;
  width: 85px;
  padding: 10px 0;
  vertical-align: top;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 12px;
}
@media (max-width: 520px) {
  .top-update-info-date {
    display: block;
    padding: 0;
  }
}

.top-update-info-cat {
  display: table-cell;
  width: 100px;
  padding: 10px 0;
  vertical-align: middle;
}

.top-update-info-text {
  display: table-cell;
  width: 324px;
  padding: 10px 5px 10px 0;
  vertical-align: top;
}
@media (max-width: 520px) {
  .top-update-info-text {
    width: calc(100% - 85px);
    padding: 3px 0 0 0;
  }
}

.top-update-info-text a {
  color: #181e24;
}
@media (max-width: 520px) {
  .top-update-info-text a {
    font-size: 12px;
  }
}

.top-update-info-text a:hover {
  text-decoration: underline;
  color: #181e24;
}

.info-cat {
  padding: 2px 10px 0 10px;
  display: inline-block;
  border-radius: 3px;
  text-align: center;
  line-height: 25px;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 12px;
  color: #ffffff;
}

.info-cat._news {
  /*background: #bd1321;*/
  background: #e81b2c;
}

.info-cat._activity {
  background: #5125ad;
}

.top-update-info-arc {
  position: absolute;
  top: 40px;
  right: 30px;
  margin: 0;
  text-align: right;
  line-height: 1;
  font-size: 12px;
}
@media (max-width: 520px){
  .top-update-info-arc{
    top: 38px;
  }
}

.top-update-info-arc > a {
  margin-left: 20px;
  color: #E81B2C;
}
@media (max-width: 520px) {
  .top-update-info-arc > a {
    color: #E81B2C;
    font-size: 12px;
  }
}

.top-update-info-arc > a:hover {
  text-decoration: underline;
}

.top-update-info-arc > a.blog {
  color: #E81B2C;
}

.top-update-banner img {
  border-radius: 4px;
}

.top-update-banner img:hover {
  opacity: 0.7;
}

/*-------------------------  section about ------------------------- */

#section-top-about {
  position: relative;
  min-width: 1080px;
  padding: 30px;
  border-top: 1px solid #e3e3e3;
  background: #f5f6f7;
}
@media (max-width: 520px) {
  #section-top-about {
    min-width: auto;
    padding: 30px 15px;
  }
}

#section-inner-top-about {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  cursor: pointer;
}
@media (max-width: 520px) {
  #section-inner-top-about {
    height: 591px;
  }
}

.top-about-bg {
  width: 100%;
  height: 500px;
  background: url(../images/top-about-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}
@media (max-width: 520px) {
  .top-about-bg {
    height: 100%;
    background: url(../images/top-about-bg_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.top-about-contents {
  display: table;
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 100%;
}
@media (max-width: 520px) {
  .top-about-contents {
    top: initial;
    bottom: 0;
    width: 100%;
    height: auto;
  }
}

.top-about-contents-inner {
  display: table-cell;
  width: 100%;
  height: 100%;
  padding: 20px;
  vertical-align: middle;
  font-size: 14px;
  color: #ffffff;
}
@media (max-width: 520px) {
  .top-about-contents-inner {
    padding: 30px;
  }
}

.top-about-ttl {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 46px;
  font-weight: 100;
  color: #ffffff;
}
@media (max-width: 520px) {
  .top-about-ttl {
    line-height: 1.3;
  }
}

@media (max-width: 520px) {
  .top-about-contents-inner p {
    font-size: 14px;
  }
}

.top-about-ttl > span {
  color: #e81b2c;
  font-weight: 700;
}

.top-about-ttl:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  height: 3px;
  width: 100%;
  margin-left: -50%;
  background: #e81b2c;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -moz-transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -o-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.top-about-ttl.on:after {
  -moz-transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -o-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.top-about-seemore {
  margin-bottom: 0;
}

.top-about-seemore a {
  position: relative;
  padding: 15px 20px;
  border-radius: 3px;
  border: 1px solid #ffffff;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media (max-width: 520px){
  .top-about-seemore a{
    display: block;
    width: 200px;
    padding: 10px 20px;
    border-radius: 3px;
    text-align: center;
  }
}

.top-about-seemore a:before,
.top-about-seemore a:after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  z-index: 2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.top-about-seemore a:before {
  border-top: 2px solid #e81b2c;
  border-bottom: 2px solid #e81b2c;
  -moz-transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  border-radius: 5px;
}

.top-about-seemore a:after {
  border-right: 2px solid #e81b2c;
  border-left: 2px solid #e81b2c;
  -moz-transform: scale(1, 0);
  -webkit-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  border-radius: 5px;
}

.top-about-seemore.on a {
  color: #e81b2c;
}

.top-about-seemore.on a:after,
.top-about-seemore.on a:before {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

/*-------------------------  section syllabus ------------------------- */

#section-top-syllabus {
  position: relative;
  width: 100%;
  min-width: 1080px;
  margin: 0 auto;
  padding: 50px 15px;
  border-top: 1px solid #e3e3e3;
  background: #ffffff;
}
@media (max-width: 520px) {
  #section-top-syllabus {
    min-width: auto;
  }
}

#section-inner-top-syllabus {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/*-------------------------  section syllabus detail ------------------------- */
.section-inner._syllabus {
  width: 800px;
  padding: 50px 0 45px;
  margin: 58px auto 50px;
  border-top: 1px solid #d8d8d8;
}

.sec-syllabus {
  padding: 0 0 50px;
  border-bottom: 1px solid #d8d8d8;
}

.sec-syllabus figure {
  margin: 0;
  padding: 0;
}

.sec-syllabus + .sec-syllabus {
  margin: 50px 0 0;
}

.page-h3._syllabus {
  display: flex;
  align-items: center;
  margin: 0;
  padding-bottom: 0;
  border-bottom: none;
  font-weight: bold;
  color: #181e24;
}

.page-h3._syllabus .index {
  width: 80px;
  min-width: 80px;
  height: 80px;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 40px;
  font-weight: 100;
  line-height: 80px;
  text-align: center;
  color: #fff;
  background-color: #111d2d;
}

.page-h3._syllabus .txt {
  padding: 0 0 0 28px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
}

.syllabus-headline4{
  display: flex;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #181E24;
}
@media (max-width: 520px) {
  .syllabus-headline4{
    margin-top: 40px;
  }
  .syllabus_contents4 .syllabus-headline4{
    margin-top: 0;
  }
}

.syllabus-headline4 span{
  width: 28px;
  height: 28px;
  border: 1px solid #181E24;
  text-align: center;
  display: table;
  border-radius: 3px;
  margin-right: 11px;
}

.syllabus-headline4box .ut-lead{
  margin: 0;
}

@media (max-width: 520px) {
  .syllabus-headline4box .syllabus-headline4{
    margin-top: 0;
  }
}

.syllabus-contents5box{
  position: relative;
  margin-top: 36px;
  height: 605px;
}
.syllabus-contents5box.anri{
  height: 518px;
}
@media (max-width: 520px) {
  .syllabus-contents5box.anri{
    height: auto;
  }
}
.syllabus-contents5box.cw{
  margin-top: 40px;
  height: 463px;
}
@media (max-width: 520px){
  .syllabus-contents5box.cw{
    height: auto;
  }
}
@media (max-width: 520px) {
  .syllabus-contents5box{
    height: auto;
    padding: 0 15px;
  }
}

.syllabus-contents5box.coconara{
  margin-top: 0;
}
@media (max-width: 520px) {
  .syllabus-contents5box.coconara{
    margin-top: 50px;
    padding: 0 15px;
  }
}

.syllabus-contents5box::before{
  display: block;
  position: absolute;
  bottom: 0;
  content: '';
  width: 100%;
  /* height: 351px; */
  height: 460px;
  background: #F7F7F7;
  z-index: 1;
}
.syllabus-contents5box.anri::before{
  height: 378px;
}
.syllabus-contents5box.cw::before{
  height: 319px;
}
@media (max-width: 520px) {
  .syllabus-contents5box::before{
    /* left: 0;
    z-index: -1; */
    content: none;
  }
}

.syllabus-contents5box.syllabus02::before{
  height: 380px;
}

.syllabus-contents5box.syllabus03::before{
  height: 335px;
}

.syllabus-contents5box-inner{
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    flex-wrap: wrap;
    gap: 0px 60px;
    width: 780px;
    margin: 0 60px 0 160px;
    padding-bottom: 50px;
    z-index: 1;
}
@media (max-width: 520px) {
  .syllabus-contents5box-inner{
    position: initial;
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
.syllabus-contents5box-inner h5{
  line-height: 1.8;
}
.syllabus-contents5box-figure{
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: 19px;
}
.syllabus-contents5box-figure.cw{
  margin-top: 18px;
}

.syllabus-contents5box-figure figure{
  width: 385px;
  margin-bottom: 0;
}
@media (max-width: 520px) {
  .syllabus-contents5box-figure figure{
    width: 100%;
    margin-bottom: 10px;
  }
}

.syllabus-contents5box h5{
  font-size: 18px;
  font-weight: bold;
  color: #E81B2C;
}

.syllabus-contents5box-impressions{
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin-top: 30px;
}
@media (max-width: 520px) {
  .syllabus-contents5box-impressions{
    position: relative;
    padding-bottom: 50px;
  }
}
.syllabus-contents5box-impressions.cw{
  margin-top: 28px;
}
@media (max-width: 520px) {
  .syllabus-contents5box-impressions:before{
    display: block;
    position: absolute;
    right: -200px;
    bottom: 0;
    left: -200px;
    width: 200%;
    height: calc(100% - 80px);
    margin: auto;
    content: '';
    background: #f7f7f7;
    z-index: -1;

  }
}

.syllabus-contents5box-impressions figure{
  width: 160px;
  margin: 0;
}
@media (max-width: 520px){
  .syllabus-contents5box-impressions figure{
    margin: 0 auto;
  }
}
.syllabus-contents5box-impressions figure img{
  width: 100%;
  height:auto;
}
.syllabus-contents5box-introduce{
  width: 600px;
}
@media (max-width: 520px) {
  .syllabus-contents5box-introduce{
    width: 100%;
    margin-top: 20px;
  }
}
.syllabus-contents5box-introduce p{
  margin: 0;
}

.syllabus-contents5box-campany,.syllabus-contents5box-scholl{
  font-size: 12px;
}
.syllabus-contents5box-name{
  font-size: 18px;
  font-weight: bold;
  color: #181E24;
}
@media (max-width: 520px) {
  .syllabus-contents5box-campany,.syllabus-contents5box-scholl,.syllabus-contents5box-name{
    text-align: center;
  }
}
@media (max-width: 520px){
  .syllabus-otherbox{
    padding-bottom: 40px;
  }
}
.syllabus-other-contents{
  width: 780px;
  margin: 0 0 0 160px;
  padding: 40px 0 0;
}
@media (max-width: 520px) {
  .syllabus-other-contents{
    width: 100%;
    /* margin: 40px 0 30px; */
    margin: 40px 0 0;
    padding: 0 15px;
  }
}
.syllabus-other-title{
  margin-bottom: 0;
  font-size: 14px;
  font-weight: bold;
  color: #181E24;
}

.syllabus-other-ul{
  /* margin: 10px 0 30px; */
  margin: 13px 0 0;
}
.syllabus-other-ul li{
  padding-left: 3px;
  margin: 0 0 8px 22px;
  letter-spacing: 2px;
}
@media (max-width: 520px){
  .syllabus-other-ul li{
    font-size: 16px;
  }
  .syllabus-other-ul li:last-child{
    margin-bottom: 0;
  }
}

.syllabus-contents.contents-section2{
  border-top: 1px solid #F7F7F7;
  padding-top: 40px;
}

.syllabus-mentorul{
  display: flex;
  flex-wrap: wrap;
  gap: 21px 30px;
  margin-top: 20px;
}
@media (max-width: 520px) {
  .syllabus-mentorul{
    display: flex;
    width: initial;
    padding-bottom: 30px;
    overflow-x: scroll;
    flex-wrap: initial;
    gap: 10px;
  }
}
.syllabus-contents5box-textbox{
  margin-top: 16px;
}
@media (max-width: 520px) {
  .syllabus-contents5box-textbox{
    margin-top: 20px;
  }
}
.syllabus-contents5box-textbox.cw{
  margin-top: 18px;
}

.syllabus-contents5box-textbox p + p{
  margin-top: 12px;
}

@media (max-width: 520px) {
  .syllabus-contents5box-textbox p{
    font-size: 14px;
  }
}

.syllabus-mentorli{
  position: relative;
  list-style: none;
  width: 240px;
  margin: 0;
  padding: 0 15px 8px 15px;
  background: url(../images/syllabus_cnt2.png) no-repeat;
  background-size: cover;
  border-radius: 0 0 5px 5px;
}
@media (max-width: 520px) {
  .syllabus-mentorli{
    flex-shrink: 0;
  }
}

.syllabus-mentorli.s_img02{
  /* background: url('../images/syllabus_cnt2_s_img02.png') no-repeat; */
  background: url('../images/syllabus_cnt2_s_img02.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img03{
  background: url('../images/syllabus_cnt2_s_img03.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img04{
  background: url('../images/syllabus_cnt2_s_img04.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img05{
  background: url('../images/syllabus_cnt2_s_img05.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img06{
  background: url('../images/syllabus_cnt2_s_img06.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img07{
  background: url('../images/syllabus_cnt2_s_img07.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img08{
  background: url('../images/syllabus_cnt2_s_img08.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img09{
  background: url('../images/syllabus_cnt2_s_img09.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img10{
  background: url('../images/syllabus_cnt2_s_img10.png') no-repeat;
  background-size: cover;
}
.syllabus-mentorli.s_img11{
  background: url('../images/syllabus_cnt2_s_img11.png') no-repeat;
  background-size: cover;
}

.syllabus-mentorli h3{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding-top: 185px;
}

.syllabus-mentorli p{
  margin: 0;
  padding: 10px 0 26px;
  color: #fff;
  font-size: 14px;
}

.syllabus-mentorli span{
  display: block;
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  width: 32px;
  height: 32px;
  margin: auto;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.syllabus-mentorli.tw:before{
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: -14px;
  left: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
}

.syllabus-mentorli span:hover{
  opacity:.7;
}

.sec-syllabus .sec-inner {
  padding: 24px 0 0 108px;
}

.sec-syllabus .sec-inner p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.81;
  color: #181e24;
}
.sec-syllabus .sec-inner li {
  font-size: 14px;
  line-height: 1.5;
  color: #181e24;
  list-style-type: disc;
  margin-left: 30px;
  margin-bottom: 10px;
}

.sec-syllabus .sec-inner figure + p {
  margin: 25px 0 0 !important;
}

.syllabus-case {
  padding: 12px 0 0;
  color: #181e24;
}

.syllabus-case h4 {
  margin: 0 0 25px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

.syllabus-case div {
  display: flex;
}

.syllabus-case div + div {
  margin: 30px 0 0;
}

.syllabus-case figure {
  width: 280px;
  min-width: 280px;
}

.syllabus-case figure img {
  width: 250px;
  height: auto;
}

.syllabus-case dl {
}

.syllabus-case dt {
  margin: -4px 0 5px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}

.syllabus-case dd {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.81;
}

.syllabus-case dd a {
  color: #181e24;
}
.syllabus-case dd a:hover {
  text-decoration: underline;
}

.syllabus-case dd + dt {
  margin: 23px 0 0;
}

.sec-syllabus .sec-inner figure + .syllabus-case {
  margin: 20px 0 0;
}

.syllabus-case + p {
  margin: 15px 0 0 !important;
}

/*-------------------------  section mentors ------------------------- */

#section-top-mentors {
  position: relative;
  width: 100%;
  min-width: 1080px;
  margin: 0 auto;
  padding: 50px 15px;
  background: #101f33;
  color: #ffffff;
}
@media (max-width: 520px) {
  #section-top-mentors {
    min-width: auto;
  }
}

#section-inner-top-mentors {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

.makers-interview .section-inner .ut-lead {
  padding: 0 15px;
}

.ut-lead3.about{
  display: block;
  margin: 10px 0 47px;
}
@media (max-width: 520px) {
  .ut-lead3.about{
    margin: 19px 0px;
    font-size: 22px;
  }
}
@media (max-width: 520px) {
  .ut-lead3 {
    font-size: 20px;
    line-height: 1.5;
  }
}

.themes-ttlbox.makers{
  margin-bottom: 40px;
}

.ut-lead2.ut-strong.ut-talign-center.ut-lh18.about{
  margin-bottom: 0;
}

.top-mentors-table,.top-makers-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

@media (max-width: 520px) {
  .top-mentors-table,.top-makers-table {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: space-between;
  }
}

@media (max-width: 520px) {
  .top-makers-table{
    margin-top: 0;
  }
}

.top-makers-table a{
  margin-top: auto;
}
@media (max-width: 520px){
  .top-makers-table a{
    margin-top: 0;
  }
}

.section-inner-wide .top-mentors-table:first-of-type, .section-inner-wide .top-makers-table:first-of-type{
  margin-top: 40px;
}

@media (max-width: 520px) {
  .section-inner-wide.ut-ps50{
    padding: 50px 15px!important;
  }
}

.top-mentors-cell,.top-makers-cell {
  display: table-cell;
  width: 25%;
  height: auto;
  /* padding: 0 10px; */
  padding: 0 15px;
}
@media (max-width: 520px) {
  .top-mentors-cell,.top-makers-cell {
    display: block;
    width: 48%;
    margin: 10px 0 0;
    padding: 0;
  }
  .top-mentors-cell:nth-child(1),
  .top-mentors-cell:nth-child(2),
  .top-makers-cell:nth-child(1),
  .top-makers-cell:nth-child(2) {
    margin-top: 0;
  }
}
.top-makers-cell{
  display: flex;
  flex-direction: column;
}

.top-job-discription{
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-family: Yu Gothic Pr6N;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: 0em;
  text-align: center;
  color: #181E24;
  white-space: break-spaces
}

@media (max-width: 520px){
  .top-job-discription{
    font-size: 16px;
  }
}
.top-job-discription:before{
    display: block;
    position: absolute;
    bottom: -19px;
    right: 0;
    left: 0;
    width: 100%;
    height: 22px;
    margin: auto;
    background: url(../images/top_makers_line.svg) no-repeat center center;
    z-index: 9;
    content: '';
}

@media (max-width: 520px) {
  .ut-lead.ut-talign-center.ut-mb50 {
    margin-bottom: 20px !important;
  }
}

@media (max-width: 520px) {
  .one-third-box-wrap.ut-mt50 {
    margin-top: 20px !important;
  }
}

.top-mentors {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.top-mentors:hover {
  -moz-transform: scale(0.97);
  -webkit-transform: scale(0.97);
  -o-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.top-mentors:before {
  content: "";
  display: block;
  padding-top: 100%; /* 1:1 */
}

.top-mentors-inner,.top-makers-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
}

.top-mentors-inner > img, .top-makers-inner > img {
  width: 100%;
  border-radius: 3px;
  -webkit-filter: brightness(0.7);
  -moz-filter: brightness(0.7);
  -o-filter: brightness(0.7);
  -ms-filter: brightness(0.7);
  filter: brightness(0.7);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.top-mentors:hover .top-mentors-inner > img,.top-makers:hover .top-makers-inner > img {
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -o-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
}

.top-mentors-text,.top-makers-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  padding: 40px 15px 15px;
  background: -webkit-gradient(linear, bottom, top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.4)), color-stop(100%, rgba(0, 0, 0, 0.6)));
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  text-align: center;
  color: #ffffff;
}
@media (max-width: 520px) {
  .top-mentors-text,.top-makers-text {
    position: initial;
    padding: 10px 5px 5px;
    background: none;
  }
}

.top-mentors-text p{
  margin: 0;
  text-align: center;
}
.top-mentors-name{
  margin-bottom: 10px!important;
  font-size: 18px;
  font-weight: bold;
}
.top-mentors-org{
  font-size: 12px;
}
.top-makers-text p{
  text-align: center;
}

@media screen and (max-width: 520px) {
  .top-makers-text {
    color: #181E24!important;
  }
}

.top-mentors-name,.top-makers-name {
  margin-bottom: 10px;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .top-mentors-name,.top-makers-name {
    margin-bottom: 5px;
    font-size: 18px !important;
  }
}

.top-mentors-org,.top-makers-org {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .top-mentors-name,.top-makers-name{
    font-size: 16px;
  }

  .top-mentors-org,.top-makers-org {
    text-align: left;
  }

  .top-mentors-org br,.top-makers-org br {
    display: none;
  }
}

@media (max-width: 520px) {
  .top-mentors-org,.top-makers-org {
    font-size: 12px;
    text-align: center;
  }

  .top-mentors-org br,.top-makers-org br{
    display: block;
  }
}

.top-mentors-plus,.top-makers-plus {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px;
  text-shadow: 0px 0px 5px #000;
  font-size: 30px;
  color: #ffffff;
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (max-width: 520px) {
  .top-mentors-plus,.top-makers-plus {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 50px;
  }
}

.top-mentors:hover .top-mentors-plus,.top-makers:hover .top-makers-plus {
  opacity: 1;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.pop-mentor-pic {
  margin-top: 23px;
  text-align: center;
}

.pop-mentor-pic img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

.pop-mentor-name {
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.2;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}

.pop-mentor-name span {
  display: block;
  margin: 6px 0 0;
  font-size: 14px;
  font-weight: lighter;
}

.pop-mentor-cat {
  padding: 10px;
  display: inline-block;
  border-top: 1px solid #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  text-align: center;
}

/*-------------------------  section themes ------------------------- */

#section-top-themes {
  position: relative;
  width: 100%;
  min-width: 1080px;
  padding: 0 15px;
  background: #ffffff;
}
@media (max-width: 520px) {
  #section-top-themes {
    min-width: 100%;
    padding: 0 15px;
  }
}

.top-theme {
  float: left;
  position: relative;
  overflow: hidden;
  width: 33.33%;
  height: auto;
  cursor: pointer;
}
@media (max-width: 520px) {
  .top-theme {
    width: 50%;
  }
}
@media (max-width: 520px) {
  .top-theme-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    padding: 0 10px;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
}
.top-theme--blank {
  cursor: inherit;
  background: #101f33;
}
.top-theme--blank.last {
  position: relative;
}
.top-theme--blank.last:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.12);
}

.top-theme--blank .blank-image {
  position: absolute;
  width: 210px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
}

.top-theme:before {
  content: "";
  display: block;
  padding-top: 70%; /* 白銀比 */
}
@media (max-width: 520px) {
  .top-theme--blank.last {
    display: none;
  }
}
.top-theme-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}

#theme-internet {
  background-image: url("../images/bg-top-theme-net.png");
}

#theme-dev {
  background-image: url("../images/bg-top-theme-dev.png");
}

#theme-local {
  background-image: url("../images/bg-top-theme-local.png");
}

#theme-edu {
  background-image: url("../images/bg-top-theme-edu.png");
}

#theme-fintech {
  background-image: url("../images/bg-top-theme-fintech.png");
}

#theme-tech {
  background-image: url("../images/bg-top-theme-tech.png");
}

#theme-social {
  background-image: url("../images/bg-top-theme-social-innovation.jpg");
}

.top-theme-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15% 20px 20px;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.top-theme-num {
  text-align: center;
}
@media (max-width: 520px) {
  .top-theme-num {
    margin-bottom: 0;
  }
}

.top-theme-num > span {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 1px solid #ffffff;
  box-shadow: 0 0 3px #333333;
  line-height: 58px;
  text-align: center;
  text-shadow: 0 0 3px #000000;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 24px;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.top-theme-ttl {
  line-height: 1.2;
  text-align: center;
}

.top-theme-desc {
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 3px #000000;
  font-size: 14px;
}

@media (max-width: 1280px) {
  .top-theme-num > span {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
  }

  .top-theme-ttl {
    font-size: 14px;
  }

  .top-theme-ttl > a span {
    font-size: 20px;
  }

  .top-theme-desc {
    font-size: 12px;
  }
}
@media (max-width: 520px) {
  .top-theme-num > span {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 27px !important;
    height: 27px;
    font-size: 15px;
    line-height: 25px;
  }
}
@media (max-width: 520px) {
  .top-theme-ttl {
    margin-bottom: 10px;
  }
}

.top-theme-ttl > a {
  text-shadow: 0 0 3px #000000;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}
@media (max-width: 520px) {
  .top-theme-ttl > a {
    font-size: 13px;
  }
}

.top-theme-ttl > a span {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 520px) {
  .top-theme-ttl {
    margin-bottom: 5px;
  }
}
@media (max-width: 520px) {
  .top-theme-ttl > a span {
    font-size: 13px;
  }
}
@media (max-width: 520px) {
  .top-theme-ttl > a span {
    font-size: 14px;
  }
}
@media (max-width: 520px) {
  .top-theme-desc {
    font-size: 10px;
    margin-bottom: 0;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *page
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/*-------------------------  Common parts ------------------------- */

.g-recaptcha {
  margin: 0 auto;
  text-align: center;
  width: 300px;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  width: 100%;
  margin: 20px auto 50px;
  border-top: 1px solid #dddddd;
}

.table-white {
  position: relative;
  width: 100%;
  margin: 0 auto 50px;
  border-top: none;
  border-radius: 6px;
  background: #ffffff;
}

.course-table {
  position: relative;
  width: 100%;
  margin: 0 auto 50px;
  border: 1px solid #dddddd;
}

.left-td {
  position: relative;
  width: 20%;
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid #dddddd;
  vertical-align: middle;
}

.right-td {
  position: relative;
  width: 80%;
  padding: 10px 0;
  border-bottom: 1px solid #dddddd;
  vertical-align: middle;
}

.left-td2 {
  position: relative;
  width: 253px;
  padding: 23px 19px;
  font-size: 12px;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  background: #f7f7f7;
  vertical-align: top;
}
@media (max-width: 520px) {
  .left-td2 {
    border-bottom: none;
  }
}

.left-td2 .ut-lead2.ut-strong{
  color: #181E24;
}

.right-td2 {
  position: relative;
  width: 528px;
  padding: 23px 19px;
  border-bottom: 1px solid #dddddd;
  vertical-align: middle;
}

.ut-list-narrow{
  width: 488px;
  margin: 0 auto;
  list-style: none;
  font-size: 16px;
}
@media (max-width: 520px) {
  .ut-list-narrow{
    width: 100%;
  }
}

.ut-list-narrow li{
    position: relative;
    padding-left: 17px;
    margin: 0 0 3px 0!important;
    list-style: none;
}

.ut-list-narrow li:before{
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.dt-unit {
  display: flex;
  align-items: center;
}
.dt-unit + .dt-unit {
  margin-top: 20px;
}
.dt-unit label {
  padding: 0;
}
label {
  white-space: nowrap;
}
label + input[type="text"],
label + input[type="tel"],
label + input[type="email"] {
  margin: 0 0 0 7px;
}

@media (max-width: 520px) {
  tr {
    display: flex;
    flex-direction: column;
  }
  .left-td,
  .right-td,
  .left-td2,
  .right-td2 {
    width: 100%;
  }
  .left-td,
  .right-td {
    padding: 10px;
  }
  .left-td {
    background: #f7f7f7;
  }
  .left-td2 {
    border-right: none;
  }
}

.chkcheckbox {
  display: flex;
}
.chkcheckbox label {
  padding-left: 7px;
}
@media (max-width: 520px) {
  .chkcheckbox label {
    white-space: initial;
  }
}

.dflex {
  display: flex;
}

.center-td {
  position: relative;
  width: 100%;
  padding: 20px 0 20px 10px;
  border-bottom: 1px solid #dddddd;
  background: #f7f7f7;
  vertical-align: middle;
  font-size: 18px;
  font-weight: bold;
  color: #3f51b5;
}

.center-td-first {
  position: relative;
  width: 100%;
  padding: 20px 0 20px 10px;
  border-bottom: 1px solid #dddddd;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background: #f7f7f7;
  vertical-align: middle;
  font-size: 18px;
  font-weight: bold;
  color: #3f51b5;
}

.center-td-last {
  position: relative;
  width: 100%;
  padding: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #f7f7f7;
  vertical-align: middle;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  clear: both;
  overflow: auto;
  max-width: 350px;
  width: 100% !important;
  height: 40px;
  margin: 0;
  padding: 0 5px;
  font-size: 14px;
}

@media (max-width: 520px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    max-width: none;
  }
}

label {
  padding-left: 7px;
  cursor: pointer;
}

textarea {
  clear: both;
  width: 400px;
  margin: 0;
  padding: 10px;
  resize: none;
  font-size: 14px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  outline: none;
  border: 2px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 2px solid #7bc1f7;
  box-shadow: 0px 0px 5px #7bc1f7;
  background: #dbeefd;
}

.select {
  height: 30px;
  width: 150px;
  margin: 0;
  padding: 0;
  border: 1px solid #dddddd;
  color: #333333;
  line-height: 30px;
  text-align: left;
  vertical-align: middle;
}

.select.select--narrow {
  width: 80px;
}

.select.select--wide200 {
  width: 200px;
}

.select.select--wide300 {
  width: 300px;
}
@media (max-width: 520px) {
  .select.select--narrow,
  .select.select--wide200,
  .select.select--wide300 {
    width: 100%;
  }
}

.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  display: inline-block;
  outline: none;
  border: none;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button.buttun--large {
  width: 100%;
  padding: 20px;
  border-radius: 3px;
  background: #737d8b;
  border: 1px solid #5c646f;
  box-shadow: inset 0 1px 0 #989faa, 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.button.buttun--middle {
  height: 54px;
  padding: 0 100px;
  border-radius: 3px;
  background: #737d8b;
  border: 1px solid #5c646f;
  box-shadow: inset 0 1px 0 #989faa, 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.button.buttun--small {
  height: 30px;
  padding: 0 20px;
  border-radius: 3px;
  border: 1px solid #5c646f;
  background: #737d8b;
  box-shadow: inset 0 1px 0 #989faa, 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

.button.buttun--sub {
  height: 30px;
  padding: 0 10px;
  border-radius: 3px;
  border: 1px solid #cccccc;
  background: #f7f7f7;
  box-shadow: inset 0 1px 0 #f7f7f7, 1px 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #555555;
}

.buttun--large:hover,
.buttun--middle:hover,
.buttun--small:hover {
  background: #646c78;
  text-decoration: none;
  color: #ffffff;
}

.buttun--sub:hover {
  background: #e6e6e6;
  text-decoration: none;
  color: #454b53;
}

.button:active {
  text-decoration: none;
  box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  top: 1px;
}

.button:disabled {
  border: 1px solid #e7e7e7;
  box-shadow: inset 0 1px 0 #ffffff;
  background: #efefef;
  font-weight: bold;
  color: #cccccc;
  cursor: not-allowed;
}

.button:disabled:hover {
  opacity: 1;
  color: #cccccc;
}

.form-required {
  color: #ef3252;
  font-weight: lighter;
}

.str-count-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
  text-align: right;
}

.str-count {
  margin-left: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #cccccc;
}

.str-count-subscript {
  font-size: 12px;
  color: #cccccc;
}

.tablenav {
  clear: both;
  height: 40px;
  margin: 40px auto 0;
  padding: 0;
  text-align: center;
  color: #737d8b;
}

@media (max-width: 520px) {
  .tablenav {
    width: 100%;
  }
}

.page-numbers,
.tablenav .current,
.tablenav .next,
.tablenav .prev {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 3px;
  line-height: 40px;
  border: solid 1px #737d8b;
  border-radius: 3px;
  box-shadow: 0 2px 0 #f5f6f7;
  background-color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #737d8b;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.page-numbers:hover,
.tablenav .next:hover,
.tablenav .prev:hover {
  border: solid 1px #737d8b;
  background: #f5f6f7;
  text-decoration: none;
  color: #454b53;
}

@media (max-width: 520px) {
  .page-numbers,
  .tablenav .next,
  .page-numbers,
  .tablenav .current {
    width: 35px;
    height: 35px;
    margin-bottom: 4px;
    line-height: 35px;
  }
}

.tablenav .current {
  border: solid 1px #737d8b;
  box-shadow: 0 2px 0 #e2e5e8;
  background: #737d8b;
  color: #ffffff;
}

.crumbs-pd{
  padding-top: 69px;
}
@media screen and (max-width: 520px) {
  .crumbs-pd {
    padding-top: 49px;
  }
}

/*----- crumbs ----- */

.crumbs {
  overflow: hidden;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  padding: 0 20px;
  background: #ffffff;
  line-height: 40px;
  font-size: 11px;
  color: #888888;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 520px) {
  .crumbs {
    /* border: none; */
    display: none;
  }
}

.crumbs a,
.crumbs a:hover {
  color: #e81b2c;
}

.crumbs a:hover {
  text-decoration: underline;
}

/*------------------------- about page ------------------------- */

#section-header-about {
  padding: 100px 0;
  background: #101f33 url("../images/bg-section-header-about.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  color: #ffffff;
}

@media screen and (max-width: 520px) {
  #section-header-about {
    padding: 53px 0;
  }
  #section-header-about .about-title-img{
    width: 63%;
    margin: 0 auto;
  }
  #section-header-about .ut-lead2.ut-strong.ut-talign-center.ut-lh18.about{
    font-size: 14px;
  }
}

.about-h2 {
  width: 100%;
  text-align: center;
  line-height: 1.2;
  font-size: 18px;
}

.about-h2 > span {
  text-align: center;
  letter-spacing: 5px;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 50px;
  font-weight: 100;
}

.about-h2.red {
  color: #e81b2c;
}

#section-inner-about-movie {
  overflow: hidden;
  position: relative;
  height: 500px;
  padding: 0;
  color: #ffffff;
}

.bg-section-about-movie-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) url("../images/pattern.png") 0 0 repeat;
}

.bg-section-about-movie {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  margin-top: -100px;
}

.bg-section-about-movie-alt {
  z-index: 0;
  width: 100%;
  height: 100%;
  background: url(../movies/makers-intro.gif);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.movie-ttl {
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 2;
}

.movie-play-btn {
  position: absolute;
  top: 160px;
  left: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  font-size: 100px;
}

.movie-play-btn a {
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.movie-play-btn a:hover {
  opacity: 0.5;
}

.youtube-iflame-wrap {
  padding-top: 56.25%;
}

.youtube-iflame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

#section-about-desc {
  padding: 0 15px;
  background: #ffffff;
}

#section-about-vision {
  padding-bottom: 3px;
  border-top: 1px solid #dddddd;
  background: #f7f7f7 url("../images/bg-section-about-vision.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto;
  -moz-background-size: auto;
  -webkit-background-size: auto;
  -o-background-size: auto;
  -ms-background-size: auto;
}
@media (max-width: 520px) {
  #section-about-vision {
    padding-bottom: 0;
  }
}

#section-about-vision .section-about-inner.about{
  padding: 48px 0 28px;
}

#section-about-vision-text {
  width: 431px;
  background: rgba(247, 247, 247, 0.9);
}
@media (max-width: 520px) {
  #section-about-vision-text {
    width: 100%;
    background: none;
  }
}

.about-vision-bnr {
  background: #132a43;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 222px;
}
.about-vision-bnr-txt {
  padding: 35px 0 0 40px;
  position: relative;
  width: 62%;
}
.about-vision-bnr-lead {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1;
}
.about_representative_bnner{
  position: relative;
  margin: 40px 0 15px;
  padding: 29px 30px 46px;
  border: 1px solid #737D8B;
  box-sizing: border-box;
}
@media (max-width: 520px){
  .about_representative_bnner{
    padding: 29px 30px 30px;
  }
}
.about-vision-bnr-title {
  margin-bottom: 0;
  font-size: 34px;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 520px) {
  .about-vision-bnr-title {
    margin-bottom: 14px;
    font-size: 24px;
  }
}
.about-vision-bnr-link {
  position: absolute;
  left: 29px;
  bottom: -52px;
  width: fit-content;
  border-radius: 5px;
  background: #101F33;
}
.about-vision-bnr-link.about{
  position: absolute!important;
}
@media (max-width: 520px){
  .about-vision-bnr-link{
    position: absolute!important;
    right: 0;
    left: 0;
    margin: auto;
    width: 87%;
    bottom: -32px;
    border-radius: 5px;
  }
}
.about-vision-bnr-link a {
  width: 300px !important;
  height: 63px !important;
  line-height: 60px;
  font-size: 18px;
}
@media (max-width: 520px) {
  .about-vision-bnr-link a {
    width: 100%!important;
  }
}
.about-vision-bnr-pic {
  font-size: 0;
  margin: 0;
  padding: 0;
  width: 418px;
}
.about-vision-bnr-pic span {
  display: inline-block;
  background: url("/asset/themes/makers2022/images/pic-about04.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  width: 50%;
  height: 222px;
}
.about-vision-bnr-pic span + span {
  background: url("/asset/themes/makers2022/images/pic-about05.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 1248px) {
  .about-vision-bnr {
    height: 322px;
  }
  .about-vision-bnr-link {
    position: static;
  }
  .about-vision-bnr-pic {
    width: 47%;
  }
  .about-vision-bnr-pic span {
    height: 322px;
  }
  .about_lead{
    font-size: 14px;
  }

  .ut-mt80.ut-strong.about{
    font-size: 14px;
  }
}

#section-about-voice {
  border-top: 1px solid #dddddd;
}

.about-people-makers-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 30px 0 0;
  justify-content: space-between;
}

.about-people-makers-item {
  display: flex;
  flex-direction: column;
  width: 24%;
  padding: 15px;
  margin: 0 0 30px;
  border-top: 3px solid #e81b2c;
  box-shadow: 0 0 3px #999999;
  color: #000;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media screen and (max-width: 1120px) {
  .about-people-makers-item {
    width: 48%;
  }
}

.about-people-makers-name {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin: 10px 0 16px;
}

.about-people-makers-org {
  font-size: 16px;
  font-weight: 600;
}

.about-people-makers-year {
  font-size: 16px;
  font-weight: 600;
}

.about-people-makers-title {
  border-top: 1px solid #dddddd;
  line-height: 1.5;
  font-size: 15px;
  font-weight: bold;
  padding: 10px 0;
}

.about-people-makers-tag-list {
  padding: 10px;
  margin-top: auto;
  background-color: #f5f5f5;
}

.about-people-makers-link {
  font-size: 18px;
  font-weight: 600;
}

.section-about_representative{
  position: relative;
  background-color: #101F33;
}

.section-about_representative:before{
  display: block;
  position: absolute;
  width: 418px;
  height: 444px;
  background-image: url(../images/about_message.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 100%;
  content: "";
}
@media (max-width: 520px) {
  .section-about_representative:before{
    width: 100%;
  }
}

.section-about-inner{
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0 28px;
}
#section-about-desc .section-about-inner{
  padding: 50px 0 19px;
}
@media (max-width: 520px) {
  .section-about-inner {
    width: 100%;
    padding: 44px 15px 30px;
  }

  .section-about-inner h2{
    font-size: 24px;
  }

  .section-about-inner.about{
    padding: 44px 0 0;
  }
  .section-about-inner.about h2{
    padding: 0 15px;
  }
}
.section-about-inner02{
  width: 1000px;
  margin: 0 auto;
}

.section-about_representative .section-inner-wide.ut-ps100{
  position: relative;
}

.section-about_representative .section-inner-wide.ut-ps100::before{
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 418px;
  height: 862px;
  background-image: url(../images/about_message02.png);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  content: "";
}

.section-inner-wide.ut-ps100.about{
  padding: 54px 0 66px;
  overflow: hidden;
}

@media (max-width: 520px) {
  .section-inner-wide.ut-ps100.about{
    padding: 0!important;
  }
  .section-inner-wide.ut-ps100.about .section-about-inner02{
    width: 100%;
    padding: 52px 15px 75px;
  }
}

.about_representative_box{
  position: relative;
  width: 618px;
  margin-left: auto;
}
@media (max-width: 520px) {
  .about_representative_box{
    width: 100%;
  }
}

.about_representative_title,.about_representative_read{
  color:#fff;
}

.about_representative_title{
  margin-bottom: 39px;
  font-size: 34px;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 520px) {
  .about_representative_title {
    margin-bottom: 34px;
    font-size: 24px;
    line-height: 2;
  }
}
.about_representative_title span.sub-title{
  margin-top: 6px;
  font-size: 14px;
  font-weight: normal;
}
.about_representative_title span{
  display: block;
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .about_representative_title span{
    font-size: 18px;
  }
}

.about_representative_read{
  margin-bottom: 24px;
  font-size: 14px;
}
.about_representative_read._right{
  text-align: right;
}
.about_representative_name{
  display: block;
}


.voice-wrap {
  width: 100%;
  padding: 30px;
  border-top: 3px solid #e81b2c;
  box-shadow: 0 0 3px #999999;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (max-width: 520px) {
  .voice-wrap {
    padding: 15px;
  }
  .voice-wrap.student .ut-talign-center{
    width: 200px;
    min-width: 200px;
    height: 200px;
    min-height: 200px;
    margin: 0px auto 12px auto;
  }
}

.voice-wrap:hover {
  box-shadow: 0 0 6px #999999;
  -moz-transform: scale(0.97);
  -webkit-transform: scale(0.97);
  -o-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.voice-wrap a {
  color: #333;
}

.voice-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dddddd;
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .voice-title {
    font-size: 14px;
  }
}

.voice-name {
  margin-bottom: 5px;
}

.voice-org {
  margin-bottom: 0;
  font-size: 12px;
}

.voice-year {
  font-size: 12px;
}

.modal-content.voice-modal-content {
  width: 65% !important;
  max-width: 800px !important;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 0 5px #000000;
  background: #ffffff;
  color: #181e24;
}

.modal-content.voice-modal-content .modal-close {
  top: 20px;
  right: 15%;
  color: #ffffff;
}

@media (max-width: 1280px) {
  .modal-content.voice-modal-content .modal-close {
    top: 20px;
    right: 10%;
  }
}

.student_linkbox{
  position: relative;
  padding: 30px;
  border: 1px solid #737D8B;
}

.student_linkbox p{
  font-weight: bold;
  font-size: 18px;
}

.voice-modal-title {
  padding: 0 0 20px;
  text-align: left;
  line-height: 1.5em;
  font-size: 24px;
  font-weight: bold;
  word-break: normal;
  word-wrap: break-word;
}
@media (max-width: 520px) {
  .voice-modal-title {
    padding: 0 0 15px;
    font-size: 20px;
  }
}

.voice-modal-content img {
  max-width: 100%;
  width: 100%;
  padding: 0;
  border-radius: 4px;
}
@media (max-width: 520px) {
  .voice-modal-content p img,
  .voice-modal-content p a img {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .voice-modal-content img {
    padding: 0 15px;
  }
}

@media (max-width: 520px) {
  .voice-modal-content {
    padding: 0 15px;
    text-align: left;
  }
}

.voice-modal-name {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #e81b2c;
}

.voice-modal-org {
  margin-bottom: 5px;
  font-size: 12px;
}

.voice-modal-year {
  margin-bottom: 20px;
  font-size: 12px;
}

@media (max-width: 520px) {
  img　.size-full {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
}

.voice-modal-h3 {
  margin: 40px 0 10px;
  font-size: 16px;
  font-weight: bold;
  color: #e81b2c;
}

.voice-modal-profile-wrap {
  display: table;
  width: 100%;
  margin: 60px auto 0;
  padding: 20px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-shadow: 0 2px 0 #f5f6f7;
  font-size: 12px;
}
@media (max-width: 520px) {
  .voice-modal-profile-wrap {
    display: block;
    padding: 15px;
    box-sizing: border-box;
  }
}

.voice-modal-profile-head {
  position: relative;
  margin-bottom: 5px;
  font-size: 20px;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 700;
}
@media (max-width: 520px) {
  .voice-modal-profile-head {
    margin: 15px 0 3px;
    font-size: 18px;
    text-align: left;
  }
}

.voice-modal-profile-pic {
  display: table-cell;
  width: 120px;
  padding-right: 20px;
  vertical-align: top;
}
@media (max-width: 520px) {
  .voice-modal-profile-pic {
    display: block;
    margin: 0 auto;
    padding-right: 0;
  }
}

.voice-modal-profile-text {
  display: table-cell;
  vertical-align: top;
}
@media (max-width: 520px) {
  .voice-modal-profile-text {
    margin-top: 20px;
  }
}

.voice-modal-profile-pic img {
  margin: 0;
  border-radius: 50%;
}
@media (max-width: 520px) {
  .voice-modal-profile-pic img {
    width: 100%;
    padding: 0;
  }
}

/*------------------------- theme page ------------------------- */

.theme-arc-wrap {
  position: relative;
  width: 100%;
  box-shadow: 0 0 3px #999999;
  cursor: pointer;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.theme-arc-wrap--blank {
  position: relative;
  height: 100%;
  background: #f5f5f5;
}
.theme-arc-wrap:hover {
  box-shadow: 0 0 6px #999999;
  -moz-transform: scale(0.97);
  -webkit-transform: scale(0.97);
  -o-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.theme-arc-pic {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.theme-arc-pic:before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 */
}

.theme-arc-pic-inner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
}

.theme-arc-pic-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.theme-arc-num {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  text-align: center;
}

.theme-arc-num > span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  line-height: 48px;
  text-align: center;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 520px) {
  .theme-arc-num > span {
    top: 4px;
    left: 4px;
    width: 27px !important;
    height: 27px;
    font-size: 16px;
    line-height: 27px;
  }
}

.theme-arc-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  margin: auto;
  padding: 0 10px;
  width: 100％;
  height: 70px;
  text-align: center;
}

.theme-arc-title a {
  text-shadow: 0 0 3px #000000;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

.theme-arc-title a span {
  font-size: 32px;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 700;
}

.theme-arc-text {
  padding: 20px;
}

.theme-arc-desc {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .theme-arc-desc {
    font-size: 14px;
    margin-bottom: 0;
  }
}

@media (max-width: 1279px) {
  .theme-arc-title a span {
    font-size: 24px;
  }

  .theme-arc-desc br {
    display: none;
  }
}

@media (max-width: 520px) {
  .theme-arc-title a span {
    font-size: 20px;
  }
}

.theme-arc-keyword {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid #dddddd;
  font-size: 10px;
  color: #666666;
}

.theme-arc-keyword-ttl {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.section-header-theme {
  padding: 100px 0;
  background-position: center center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
}

.section-header-theme:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) url("../images/pattern.png") 0 0 repeat;
}

#section-header-internet {
  background: url("../images/bg-page-theme-net.png");
}
@media (max-width: 520px) {
  #section-header-internet {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

#section-header-dev {
  background: url("../images/bg-page-theme-dev.png");
}
@media (max-width: 520px) {
  #section-header-dev {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

#section-header-local {
  background: url("../images/bg-page-theme-local.png");
}
@media (max-width: 520px) {
  #section-header-local {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

#section-header-education {
  background: url("../images/bg-page-theme-education.png");
}
@media (max-width: 520px) {
  #section-header-education {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

#section-header-fintech {
  background: url("../images/bg-page-theme-fintech.png");
}
@media (max-width: 520px) {
  #section-header-fintech {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

#section-header-tech {
  background: url("../images/bg-page-theme-tech.png");
}
@media (max-width: 520px) {
  #section-header-tech {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

#section-header-social-innovation {
  background: url("../images/bg-page-theme-social-innovation.jpg");
  background-position: center;
  background-size: cover;
}
@media (max-width: 520px) {
  #section-header-social-innovation {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.theme-page-num {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 80px;
  height: 80px;
  line-height: 1.1;
  margin-top: -35px;
  padding-top: 10px;
  background: #e81b2c;
  text-align: center;
  font-size: 10px;
  color: #ffffff;
}

.theme-page-num > span {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #ffffff;
}

.page-h2-theme {
  margin-left: 110px;
  line-height: 1.3;
  text-align: left;
  text-shadow: 0 0 3px #000000;
  font-size: 22px;
  font-weight: bold;
}

.page-h2-theme > span {
  letter-spacing: normal;
  font-weight: 700;
}

.theme-mentor-wrap {
  display: table;
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid #dddddd;
}
@media (max-width: 520px) {
  .theme-mentor-wrap {
    display: block;
    padding: 20px 15px;
    max-width: 100%;
  }
}
.supporter .theme-mentor-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.theme-mentor-pic {
  display: table-cell;
  width: 25%;
  vertical-align: top;
}
@media (max-width: 520px) {
  .theme-mentor-pic {
    display: block;
    width: 200px;
    margin: 0 auto;
  }
}

.theme-mentor-pic img {
  max-width: 200px;
}

.theme-mentor-text {
  display: table-cell;
  width: 75%;
  padding-left: 30px;
  vertical-align: top;
}
@media (max-width: 520px) {
  .theme-mentor-text {
    padding: 0;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .theme-mentor-text p.ut-mb0 {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .theme-mentor-text .ut-lead.ut-strong.ut-mb5 {
    padding-bottom: 12px;
    text-align: left;
  }
}

.keyword-tag {
  display: inline-block;
  height: 20px;
  margin-right: 3px;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 0 7px;
  line-height: 18px;
  border: 1px solid #dddddd;
  border-radius: 30px;
  background: #f7f7f7;
  font-size: 12px;
}

#section-inner-other-themes {
  width: 100%;
  padding: 30px 0;
  border-top: 1px solid #dddddd;
  background: #f7f7f7;
}

.other-theme-h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 16px;
}
@media (max-width: 520px) {
  .other-theme-h2 {
    margin-bottom: 30px;
    font-size: 12px;
    line-height: 1.4;
  }
}

.other-theme-h2 > span {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
}

@media (max-width: 520px) {
  .other-theme-h2 > span {
    font-size: 20px;
  }
}

.other-themes-wrap {
  display: table;
  width: 100%;
}
@media (max-width: 520px) {
  .other-themes-wrap {
    display: flex;
    flex-wrap: wrap;
  }
}

.other-theme {
  display: table-cell;
  overflow: hidden;
  position: relative;
  width: 16.666%;
  height: auto;
  cursor: pointer;
}
@media (max-width: 520px) {
  .other-theme {
    display: block;
    width: 50%;
  }
}

.other-theme:before {
  content: "";
  display: block;
  padding-top: 100%; /* 1:1 */
}

.other-theme-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.other-theme-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.other-theme:hover .other-theme-inner {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.other-theme:hover .other-theme-inner:before {
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.other-theme-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 70px;
  margin: auto;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 3px #000000;
  font-size: 14px;
}
@media (max-width: 520px) {
  .other-theme-title {
    height: fit-content;
    font-size: 12px;
  }
}
.other-theme-title span {
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 520px) {
  .other-theme-title span {
    font-size: 18px;
  }
}

.other-theme-title a {
  color: #ffffff;
}
@media (max-width: 1248px) {
  .other-theme-title a {
    font-size: 11px;
  }
}
@media (max-width: 520px) {
  .ut-mt30.ut-mb0.ut-talign-center.themes {
    padding: 0 15px;
  }
}
/*------------------------- people top ------------------------- */
.people {
  display: flex;
}
@media (max-width: 520px) {
  .people {
    display: block;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 15px;
  }
}
.section-inner.people.detail{
  display: block;
}
@media (max-width: 520px) {
  .peopledetailBtn {
    padding: 0 15px;
  }
}
.people--other {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
  justify-content: center;
}
@media (max-width: 520px) {
  .people--other {
    width: 100%;
    padding: 40px 15px;
  }
}

.people-item {
  width: calc(100% / 4);
}
@media (max-width: 520px) {
  .people-item {
    /* width: calc((100% / 2) - 7.5px); */
    width: 100%;
    margin-bottom: 15px!important;
  }
  .people-item a {
    height: 100%;
  }
}

.people-item + .people-item {
  margin: 0 0 0 30px;
}
@media (max-width: 520px) {
  .people-item + .people-item {
    margin: 0;
  }
}

.people-item a {
  display: block;
  background: #fff;
  color: #181e24;
  text-decoration: none;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
  box-shadow: 0 0 3px #999999;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.people-item a:hover {
  box-shadow: 0 0 6px #999999;
  -moz-transform: scale(0.97);
  -webkit-transform: scale(0.97);
  -o-transform: scale(0.97);
  -ms-transform: scale(0.97);
  transform: scale(0.97);
}

.people-pic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}
.people-pic img {
  width: 100%;
}
@media (max-width: 520px) {
  .people-pic {
    height: auto;
  }
}

.people-title {
  margin: 0;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 520px) {
  .people-title {
    font-size: 14px;
  }
}

.people-text {
  margin: 0;
  padding: 0 20px 19px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 520px) {
  .people-text {
    font-size: 12px;
  }
}

/*------------------------- people-makers top ------------------------- */
.people-makers {
  background: #f6f6f6;
}

.people-makers .section-inner {
  width: 1080px;
}

.people-makers .ut-lead span {
  font-size: 88%;
}
@media (max-width: 520px) {
  .people-makers-tabbox {
    width: 100%;
    overflow-y: hidden;
  }
}
@media (max-width: 520px) {
  .people-tabbox{
    overflow-y: scroll;
    height: 45px;
    margin-left: 15px;
  }
}
.people-makers-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  width: 1000px;
}
@media (max-width: 520px) {
  .people-makers-tab {
    overflow: hidden;
    width: 245vw;
    padding-right: 15px;
  }
  .people-makers-tab.bb{
    border-bottom: 1px solid #d8d8d8;
  }
}
.people-makers-tab-bottom {
  padding-bottom: 50px;
}
@media (max-width: 520px) {
  .people-makers-tab-bottom {
    padding-bottom: 10px;
  }
}
.people-makers-tab li {
  font-size: 140%;
  font-weight: bold;
  list-style-type: none;
  margin: 0 0 -1px;
  text-align: center;
  /* width: 13%; */
  width: 8.65%;
}
@media (max-width: 520px){
  .people-makers-tab li{
    margin: 0 0 0;
    /* width: 105px; */
    width: 20vw;
    margin-right: 5px;
  }

  .people-makers-tab li:last-child{
    margin-right: 0;
  }
}
.people-makers-tab-bottom li {
  margin: -1px 0 0;
}

.people-makers-tab li span {
  background: #fff;
  border-left: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  border-radius: 3px 3px 0 0;
  color: #e51827;
  display: block;
  line-height: 1;
  padding: 20px 0;
}
@media (max-width: 520px) {
  .people-makers-tab li span {
    padding: 8px 0;
    font-size: 12px;
    line-height: 1.3;
  }
}
.people-makers-tab-bottom li span {
  border-top: 0;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 0 0 3px 3px;
}

.people-makers-tab li a {
  background: #2e3843;
  border-left: 1px solid #2e3843;
  border-top: 1px solid #2e3843;
  border-right: 1px solid #2e3843;
  border-radius: 3px 3px 0 0;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 20px 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 520px) {
  .people-makers-tab li a {
    padding: 10px 0;
    font-size: 12px;
  }
}
.people-makers-tab li a:hover {
  opacity: 0.8;
}
.people-makers-tab-bottom li a {
  border-top: 0;
  border-bottom: 1px solid #2e3843;
  border-radius: 0 0 3px 3px;
}

.people-makers-voice {
  background: #fff;
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 520px) {
  .people-makers-voice {
    padding: 0 15px;
    border-top: none;
  }
}

.people-makers-voice-inner {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 50px 0 20px;
  width: 1000px;
  gap: 30px;
}
@media screen and (max-width: 520px) {
  .people-makers-voice-inner {
    display: block;
    width: 100%;
    padding: 30px 0 20px;
    gap: 15px;
  }
}
@media screen and (max-width: 520px){
  .people-makers-voice-inner.st{
    padding: 25px 0 20px;
  }
}
.people-makers-voice-inner .one-third-box {
  display: block;
  padding: 0;
  width: calc((100% - 60px) / 3);
}
@media screen and (max-width: 520px) {
  .people-makers-voice-inner .one-third-box {
    /* width: calc((100% - 15px) / 2); */
    width: 100%;
  }
}
.people-makers-voice-inner .one-third-box:nth-child(3n) {
  margin-right: 0;
}

/*------------------------- people-makers page ------------------------- */
.people-makers-page {
}

.people-makers-page .section-inner {
  width: 800px;
}

.people-makers-page .voice-modal-title {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 40px;
}
@media screen and (max-width: 520px) {
  .people-makers-page .voice-modal-title {
    padding: 0 15px;
    font-size: 20px;
  }
}

/*------------------------- makersfile page  ------------------------- */
@media (max-width: 520px) {
  .people-makers-listbox {
    width: 100%;
    overflow-y: scroll;
  }
}

.people-makers-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 50px;
  width: 450px;
}
@media (max-width: 520px) {
  .people-makers-list {
    margin: 0 auto 30px;
    padding: 10px 15px 0;
    justify-content: initial;
  }
}
.people-makers-list li {
  font-size: 100%;
  list-style-type: none;
  margin: 0 0 -1px;
  text-align: center;
}
@media (max-width: 520px) {
  .people-makers-list li {
    margin-right: 5px;
  }
}
.people-makers-list li a {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 6px 20px;
  color: #181e24;
  transition: opacity 0.3s ease;
}
.people-makers-list li a:hover {
  opacity: 0.8;
}
.people-makers-list li span {
  background: #e81b2c;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 6px 20px;
  color: #fff;
}

/*------------------------- mentor page ------------------------- */
.mentor {
}

.mentor-entry {
  display: flex;
  width: 800px;
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
}
@media (max-width: 520px) {
  .mentor-entry {
    display: block;
    width: 100%;
    padding: 30px 15px;
  }
}
.mentor-entry:nth-of-type(1) {
  border-top: 1px solid #dddddd;
}

.mentor-pic {
  width: 200px;
  min-width: 200px;
  height: 200px;
  min-height: 200px;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}
@media (max-width: 520px) {
  .mentor-pic {
    margin: 0 auto;
  }
}

.mentor-pic img {
  border-radius: 50%;
}

.mentor-def {
  margin: -5px 0 0 30px;
}
@media (max-width: 520px) {
  .mentor-def {
    margin: 25px 0 0 0;
  }
}

.mentor-name {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #181e24;
}
@media (max-width: 520px) {
  .mentor-name {
    font-size: 18px;
    text-align: center;
  }
}

.mentor-name span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.79;
  color: #181e24;
}

.mentor-title {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.81;
  color: #181e24;
}

.mentor-lead {
  margin: 0 0 23px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.79;
  color: #181e24;
}

/*------------------------- supporter page  ------------------------- */
.supporter {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .supporter {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .supporter .ut-lead.ut-mb40 {
    margin-bottom: 25px !important;
    padding: 0 15px;
  }
}

/*------------------------- information page ------------------------- */

.blogs-entry {
  position: relative;
  padding: 30px 0;
  border-bottom: 1px solid #dddddd;
  margin: 0 100px;
  display: flex;
}
@media (max-width: 520px) {
  .blogs-entry {
    display: block;
    margin: 0 10px;
    padding: 30px 15px;
  }
}
.blogs-entry:nth-of-type(1) {
  border-top: 1px solid #dddddd;
}

.blogs-pic {
  width: 250px;
  min-width: 250px;
  margin: 0;
  padding: 0;
  line-height: 0;
}
@media (max-width: 520px) {
  .blogs-pic {
    width: 100%;
    height: fit-content;
    margin: 0 auto;
  }
}

.blogs-def {
  width: 520px;
  min-width: 520px;
  margin: 0 0 0 30px;
}
@media (max-width: 520px) {
  .blogs-def {
    width: 100%;
    min-width: 100%;
    margin: 10px 0 0 0;
  }
}

.blogs-def dt {
  margin: -3px 0 4px 0;
  font-size: 16px;
  font-weight: bold;
}

.blogs-def dt span {
  display: inline-block;
  margin: 0 0 18px -7px;
  font-weight: normal;
  font-size: 14px;
  color: #666666;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
}
@media (max-width: 520px) {
  .blogs-def dt span {
    margin: 0 0 10px -7px;
  }
}
@media (max-width: 520px) {
  .blogs-def dt p {
    margin: 0 0 10px 0;
  }
}
.blogs-category a {
  margin-left: 5px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  padding: 2px 8px;
}
.blogs-category a._activity {
  background: #5125ad !important;
  color: #fff !important;
}
.blogs-category a._news {
  background: #e81b2c !important;
  color: #fff !important;
}

.blogs-entry dd {
  font-size: 14px;
  line-height: 1.79;
  color: #181e24;
}

.blogs-entry dd + dd {
  margin: 22px 0 0;
}

/* detail-btn */
.detail-btn {
  display: block;
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 50px;
  margin: 0 auto;
  border-radius: 3px;
  border: solid 1px #2e3843;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  color: #181e24;
  line-height: 50px;
  text-align: center;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 520px) {
  .detail-btn {
    width: 60%;
  }
}

.detail-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.detail-btn:hover {
  color: #fff;
}
.detail-btn:hover::after {
  background-color: #2e3843;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.detail-btn .icon-right-1 {
  margin: 0 5px 0 0;
}

/*------------------------- demoday2016 page ------------------------- */

#section-header-demo-day2016 {
  position: relative;
  padding: 100px 0;
  background: #101f33 url("../images/bg-section-header-about.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  color: #ffffff;
}

#section-header-demo-day2016:after {
  opacity: 0.5;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(60deg, #e81b2c, #009);
  background: -moz-linear-gradient(60deg, #e81b2c, #009);
  background: -o-linear-gradient(60deg, #e81b2c, #009);
  background: -ms-linear-gradient(60deg, #e81b2c, #009);
  background: linear-gradient(60deg, #e81b2c, #009);
}

.limeted-mark {
  display: inline-block;
  height: 60px;
  padding: 0 20px;
  border: 3px solid #ffffff;
  line-height: 54px;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
}

.event-sns {
  display: table;
  width: auto;
  margin: 0 auto 30px;
  padding-top: 5px;
  border-radius: 3px;
  /* background: rgba(0, 0, 0, 0.4); */
}

@media (max-width: 520px) {
  .event-sns {
    margin: 0 auto 40px;
  }
}

.event-sns-btn {
  display: table-cell;
  width: auto;
  margin: 0;
  padding: 0 5px;
  vertical-align: top;
}

.finalist-semi-title {
  display: inline-block;
  width: 250px;
  height: 40px;
  margin: 0 0 0 50px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  background: #666666;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}
@media (max-width: 520px) {
  .finalist-semi-title {
    width: 100%;/**/
    margin-left: 0;
  }
}

.finalist-semi-title.komata {
  background: #920783;
}

.finalist-semi-title.samata {
  background: #0068b7;
}

.finalist-semi-title.ogasawara {
  background: #009e96;
}

.finalist-semi-title.maru {
  background: #e60012;
}

.finalist-semi-title.mizuno {
  background: #fcc800;
}

.finalist-semi-title.takahashi {
  background: #8fc31f;
}

.finalist-semi-title.samata {
  background: #009944;
}

.finalist-semi-title.ono {
  background: #7cb305;
}

.finalist-semi-title.kurokoshi {
  background: #04698e;
}

.finalist-semi-title.narita {
  background: #e28200;
}

.finalist-semi-title.ikoma {
  background: #8a06fc;
}

.finalist-semi-title.matsuda {
  background: #00a0e9;
}

.finalist-semi-title.konuma {
  background: #1d2088;
}
.finalist-semi-title.uemura {
  background: #5289e0;
}
.finalist-semi-title.ogiwara {
  background: #e05252;
}
.finalist-semi-title.komazaki {
  background: #de660e;
}

.finalist-wrap {
  width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px 20px;
  box-shadow: 0 0 5px #cccccc;
}
@media (max-width: 520px) {
  .finalist-wrap {
    width: 100%;
    padding: 0;
  }
}

.finalist-wrap.komata {
  border-top: 3px solid #920783;
}

.finalist-wrap.samata {
  border-top: 3px solid #0068b7;
}

.finalist-wrap.ogasawara {
  border-top: 3px solid #009e96;
}

.finalist-wrap.maru {
  border-top: 3px solid #e60012;
}

.finalist-wrap.mizuno {
  border-top: 3px solid #fcc800;
}

.finalist-wrap.takahashi {
  border-top: 3px solid #8fc31f;
}

.finalist-wrap.samata {
  border-top: 3px solid #009944;
}

.finalist-wrap.ono {
  border-top: 3px solid #7cb305;
}

.finalist-wrap.kurokoshi {
  border-top: 3px solid #04698e;
}

.finalist-wrap.shiraki {
  border-top: 3px solid #e28200;
}

.finalist-wrap.miyagi {
  border-top: 3px solid #8a06fc;
}

.finalist-wrap.matsuda {
  border-top: 3px solid #00a0e9;
}

.finalist-wrap.konuma {
  border-top: 3px solid #1d2088;
}

.finalist-wrap.narita {
  border-top: 3px solid #e28200;
}

.finalist-wrap.uemura {
  border-top: 3px solid #5289e0;
}

.finalist-wrap.ogiwara {
  border-top: 3px solid #e05252;
}
.finalist-wrap.komazaki {
  border-top: 3px solid #de660e;
}

.finalist {
  display: table;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #e3e3e3;
}
@media (max-width: 520px) {
  .finalist {
    display: block;
  }
}

.finalist-desc {
  display: table-cell;
  width: auto;
  padding-right: 30px;
  vertical-align: middle;
}
@media (max-width: 520px) {
  .finalist-desc {
    display: block;
    padding: 0;
  }
}
.finalist-pic {
  display: table-cell;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 520px) {
  .finalist-pic {
    width: 65%;
    margin: 8px auto 0 auto;
    text-align: center;
    display: block;
  }
}

.finalist-title {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .finalist-title {
    font-size: 18px;
    margin: 0 20px;
    padding: 0 0 20px 0;
  }
}

.finalist-name {
  margin-bottom: 0;
  font-size: 12px;
}
@media (max-width: 520px) {
  .finalist-name {
    padding: 0 20px;
    text-align: center;
  }
}

.finalist-name span {
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .finalist-name span {
    display: block;
    margin: 0 auto 8px auto;
    text-align: center;
  }
}

.finalist-mentor {
  width: 100%;
  padding: 10px;
  background: #f7f7f7;
}

.finalist-mentor-title {
  display: inline-block;
  height: 20px;
  margin-bottom: 0;
  line-height: 50px;
}
/* @media (max-width: 520px) {
  .finalist-name span {
    position: absolute;
  }
} */

.finalist-mentor-title span {
  display: inline-block;
  height: 26px;
  padding: 0 10px;
  border: 1px solid #dddddd;
  border-radius: 30px;
  background: #fafafa;
  line-height: 24px;
  font-size: 10px;
}

.finalist-mentor-name {
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 0;
  line-height: 50px;
  font-size: 12px;
}
@media (max-width: 520px) {
  .finalist-mentor-name {
    margin: 0;
    width: 100%;
    text-align: center;
    line-height: 2;
  }
}

.finalist-mentor-name span {
  margin-right: 10px;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .finalist-mentor-name span {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
  }
}

.finalist-mentor-pic {
  display: inline-block;
  margin-left: 20px;
  margin-bottom: 0;
  line-height: 50px;
}
@media (max-width: 520px) {
  .finalist-mentor-pic {
    width: 65%;
    margin: 8px auto 0 auto;
    text-align: center;
    display: block;
  }

  .finalist-mentor-pic img {
    text-align: center;
  }
}

.talksession {
  margin: 0 auto 40px;
  padding: 28px 28px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 0 5px #ddd;
}

.talksession h4 {
  padding: 12px;
  color: #fff;
  font-weight: bold;
  margin: 0 0 18px 0;
  background: #df0023;
  font-size: 18px;
  border-radius: 4px;
}

.talksession .sessioninner {
  margin: 18px;
}

.talksession .lead {
  font-size: 16px;
  font-weight: bold;
}

.talksession h5 {
  font-weight: bold;
  margin: 36px auto 8px;
  background: #efefef;
  padding: 6px;
  border-top: 2px solid #df0023;
}

.talksession .menterprofile {
  background: #efefef;
  padding: 18px 28px;
  margin-bottom: 48px;
  border-bottom: #ddd solid 1px;
  border-top: #ddd solid 1px;
}
.talksession .menterprofile::after {
  clear: both;
  display: block;
  height: 0;
  content: "";
}

.talksession .menterprofile .mentor-pic {
  float: left;
  margin: 0 12px 0 0;
}
.talksession .mentor-name {
  margin: 8px 0 0 0;
}

.talksession .mentor-name span {
  font-size: 18px;
  font-weight: bold;
  padding-right: 12px;
}
.talksession .speakerprofile {
  margin: 24px 48px 24px;
  border-bottom: 1px solid #efefef;
  padding: 0 0 8px 0;
}

.talksession .speakerprofile:last-child {
  margin-bottm: 0px;
  border-bottom: none;
  padding: 0;
}

.talksession .profilephoto {
  float: right;
  margin-left: 24px;
}
.talksession .speaker-name {
  margin: 0 0 12px 0;
  font-size: 12px;
}

.talksession .speaker-name span {
  font-size: 16px;
  font-weight: bold;
  padding-right: 12px;
}
.talksession .speakerprofile p {
  line-height: 1.8em;
  overflow: hidden;
}

.talksession .underbar {
  height: 4px;
  background: #df0023;
}

.joinmembers {
  margin: 0 auto 40px;
}

.joinmembers h3 {
  border-bottom: 2px solid #df0023;
  color: #df0023;
  padding-bottom: 0.3em;
  font-size: 1.8em;
}
@media (max-width: 520px) {
  .joinmembers h3 {
    font-size: 16px;
  }
}

.joinmembers ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.joinmembers ul li {
  width: 18%;
  list-style: none;
  margin: 0 1% 2em;
}
@media (max-width: 520px) {
  .joinmembers ul li {
    width: 48%;
    margin: 0 1% 2em;
  }
}

.joinmembers ul li .profilephoto {
  text-align: center;
}

.joinmembers ul li .catch {
  font-weight: bold;
  font-feature-settings: "palt";
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.6;
}

.joinmembers ul li .speaker-name span {
  display: block;
  line-height: 1.3em;
  font-size: 0.9em;
}
.ut-lead.ut-mb50.demoday{
  margin-top: 30px;
}

.support ul {
  text-align: center;
}
.support ul li {
  display: inline-block;
  width: 120px;
  margin: 20px;
  vertical-align: middle;
}

/*------------------------- page sitemap ------------------------- */

.sitemap,
.sitemap ul {
  sitemap-style-type: none;
  margin: 0;
  padding: 0;
  list-style-type: none;
  list-style: none;
}

.sitemap ul {
  position: relative;
  margin-left: 40px;
}

.sitemap ul:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  border-left: 1px solid #cccccc;
}

.sitemap li {
  list-style-type: none;
  position: relative;
  margin: 0;
  padding: 3px 0 3px 60px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 40px;
  font-weight: 400;
  font-size: 16px;
}

.sitemap li a {
  position: relative;
  padding: 5px 20px;
  border: 1px solid #191919;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 20px;
  font-weight: bold;
  color: #000000;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}

.sitemap li a > span {
  font-weight: lighter;
  font-size: 14px;
}

.sitemap li ul li ul li a {
  padding: 0;
  border: none;
  font-size: 14px;
}

.sitemap li a:hover {
  border: 1px solid #f12545;
  background: #f12545;
  color: #ffffff;
}

.sitemap li ul li ul li a:hover {
  background: none;
  text-decoration: underline;
  color: #f12545;
}

.sitemap ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 23px;
  left: 0;
  width: 55px;
  height: 0;
  border-top: 1px solid #cccccc;
}

.sitemap ul li:last-child:before {
  top: 23px;
  bottom: 0;
  background: #ffffff;
  height: auto;
}

/*------------------------- single info ------------------------- */

.single-date {
  margin-bottom: 30px;
  padding: 30px 0 0;
  font-family: "Helvetica Neue", Roboto, Arial, sans-serif;
  font-size: 14px;
  color: #666666;
}

.single-h2 {
  padding: 0 0 30px;
  border-bottom: 1px solid #dddddd;
  text-align: left;
  line-height: 1.5em;
  font-size: 24px;
  font-weight: bold;
  word-break: normal;
  word-wrap: break-word;
}
@media (max-width: 520px) {
  .single-h2 {
    font-size: 20px;
  }
}

.sg-sns {
  margin: 0 auto;
  margin-bottom: 40px;
  padding: 10px 0 5px;
  border-bottom: 3px solid #dddddd;
  text-align: right;
  line-height: 20px;
}
@media screen and (max-width: 520px) {
  .sg-sns {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0 5px;
    overflow: hidden;
  }
}

.sg-sns-btn {
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  margin-left: 10px;
}

.sg-sns-btn.gp {
  width: 57px;
}

.sg-sns-btn.po {
  width: 100px;
}

.single-contents {
  padding-top: 0;
  font-size: 16px;
}
@media (max-width: 520px) {
  .single-contents {
    font-size: 14px;
  }
}

.single-contents h5 {
  position: relative;
  margin: 40px auto 20px;
  padding-left: 10px;
  border-left: 3px solid #181e24;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}

.single-contents hr {
  position: relative;
  height: 0;
  margin: 20px 0;
  padding: 0 0 30px;
  border: none;
}

.single-contents hr:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #181e24;
}

.single-contents img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 20px auto;
  border-radius: 6px;
  clear: both;
}

@media (max-width: 520px) {
  .single-contents img {
    margin: 20px 0 0;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  margin-bottom: 20px;
  height: 0;
  /*  overflow: hidden; */
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-----------------------cross-interview-------------------------*/
.cross-interview {
  width: 100% !important;
}
.cross-interview a {
  color: #e81b2c;
}
.cross-interview .kou {
  color: #0ea8a8;
}
.cross-interview .kondo {
  color: #92aa0e;
}
.cross-interview .komata {
  color: #e81b2c;
}
.cross-interview img {
  border-radius: 0;
}
.cross-interview .sg-sns {
  border-bottom: none !important;
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .cross-interview .sg-sns {
    width: 100%;
  }
}
.cross-interview .ci_head {
  position: relative;
  width: 1000px;
  height: 760px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .cross-interview .ci_head {
    width: 100%;
    /* height: 750px; */
    height: 560px;
  }
}
.cross-interview .ci_head_box {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  top: 386px;
  width: 600px;
  height: 230px;
  z-index: 3;
}
@media (max-width: 520px) {
  .cross-interview .ci_head_box {
    top: 186px;
    width: 83%;
    height: 200px;
    padding-left: 15px;
  }
}
.cross-interview .ci_head_logo {
  position: absolute;
  z-index: 1;
  top: -75px;
  left: -35px;
}
@media (max-width: 520px) {
  .cross-interview .ci_head_logo {
    top: -72px;
    left: -6px;
  }
}
.cross-interview .ci_head_title {
  position: absolute;
  padding: 39px 0 0;
  font-size: 40px;
  font-weight: bold;
  line-height: 64px;
  z-index: 2;
}
@media (max-width: 520px) {
  .cross-interview .ci_head_title {
    width: 100%;
    font-size: 24px;
    line-height: 1.8;
  }
}
.cross-interview .ci_head_pic {
  position: absolute;
  right: 0;
  top: 0;
}
.cross-interview .ci_head_pic img {
  width: 800px;
  height: auto;
}
@media (max-width: 520px) {
  .cross-interview .ci_head_pic img {
    width: 100%;
    padding: 0;
  }
}
.cross-interview .ci_head_lead {
  position: absolute;
  top: 650px;
  padding: 0 100px;
  text-align: justify;
}
@media (max-width: 520px) {
  .cross-interview .ci_head_lead {
    top: 402px;
    padding: 0 15px;
  }
}
.cross-interview .ci_profile {
  margin: 20px 0 0;
  background: linear-gradient(180deg, #f8f8f8, white);
}
.cross-interview .ci_profile_inner {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_inner {
    width: 100%;
  }
}
.cross-interview .ci_profile_inner::after {
  content: "";
  display: block;
  clear: both;
}
.cross-interview .ci_profile a {
  color: #e81b2c;
}
.cross-interview .ci_profile_title {
  position: relative;
  background: #e81b2c;
  display: inline;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 20px;
  top: -10px;
}
.cross-interview .ci_profile_menter {
  position: relative;
  margin: 26px 0 0;
  padding-bottom: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.cross-interview .ci_profile_menter::after {
  content: "";
  display: block;
  clear: both;
}
.cross-interview .ci_profile_menter_pic {
  margin: 0;
  padding-right: 40px;
  width: 100%;
  text-align: left;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_menter_pic {
    width: 45%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }
}
.cross-interview .ci_profile_menter_pic img {
  display: block;
  width: 140px;
  float: left;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_menter_pic img {
    float: none;
    width: 100%;
    margin: 0;
  }
}
.cross-interview .ci_profile_menter figcaption {
  margin: 10px 0 0;
  padding-left: 20px;
  text-align: left;
  width: 240px;
  float: left;
  vertical-align: middle;
  font-size: 20px;
  font-weight: bold;
  display: block;
}

@media (max-width: 520px) {
  .cross-interview .ci_profile_menter figcaption {
    float: none;
    width: 100%;
    padding: 0;
    font-size: 16px;
    text-align: center;
  }

  .cross-interview .ci_profile_menter figcaption span {
    font-size: 12px;
    margin: 0 0 0px -23px;
  }
}
.cross-interview .ci_profile_menter figcaption._komata:before {
  content: "";
  width: 4px;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  background: #e81b2c;
  margin: 0 15px 2px 5px;
  text-align: center;
  transform: skewX(-40deg);
}
.cross-interview .ci_profile_menter figcaption span {
  font-size: 14px;
  display: block;
  margin-left: 20px;
}
.cross-interview .ci_profile_menter_des {
  position: absolute;
  top: 74px;
  left: 160px;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_menter_des {
    position: initial;
    width: 95%;
    margin: 10px auto 0 auto;
  }
}
.cross-interview .ci_profile_makers {
  margin: 26px 0 0;
  width: 380px;
  float: left;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_makers {
    width: 100%;
  }
}
.cross-interview .ci_profile_makers:first-child {
  margin-right: 40px;
}
.cross-interview .ci_profile_makers_pic {
  margin: 0;
  padding-right: 40px;
  width: 100%;
  display: table;
  text-align: left;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_makers_pic {
    width: 100%;
    padding-right: 0;
  }
}
.cross-interview .ci_profile_makers_pic img {
  width: 120px;
  display: table-cell;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_makers_pic img {
    width: 95%;
    padding: 0;
  }
}
.cross-interview .ci_profile_makers_pic figcaption {
  padding-left: 20px;
  width: 240px;
  display: table-cell;
  vertical-align: middle;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .cross-interview .ci_profile_makers_pic figcaption {
    width: 68%;
  }
}
.cross-interview .ci_profile_makers_pic figcaption:before {
  content: "";
  width: 4px;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  margin: 0 15px 2px 5px;
  text-align: center;
  transform: skewX(-40deg);
}
.cross-interview .ci_profile_makers_pic figcaption._kou:before {
  background: #0ea8a8;
}
.cross-interview .ci_profile_makers_pic figcaption._kondo:before {
  background: #92aa0e;
}
.cross-interview .ci_profile_makers_pic figcaption span {
  font-size: 14px;
  display: block;
  margin-left: 20px;
}
.cross-interview .ci_profile_makers_des {
  margin: 20px 0 0;
  display: block;
}
.cross-interview .ci_article {
  margin: 80px 0 0;
}
.cross-interview .ci_sec {
  margin-bottom: 250px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec {
    margin-bottom: 0;
  }
}
.cross-interview .ci_sec._mbtm {
  margin-bottom: 80px;
}
.cross-interview .ci_sec._bg1 {
  background: url(/asset/uploads/2019/10/sec_bg1.png) center top no-repeat;
}
.cross-interview .ci_sec._bg2 {
  background: url(/asset/uploads/2019/10/sec_bg2.png) center top no-repeat;
}
.cross-interview .ci_sec._bg3 {
  background: url(/asset/uploads/2019/10/sec_bg3.png) center top no-repeat;
}
.cross-interview .ci_sec._bg4 {
  background: url(/asset/uploads/2019/10/sec_bg4.png) center top no-repeat;
}
.cross-interview .ci_sec._bg5 {
  background: url(/asset/uploads/2019/10/sec_bg5.png) center top no-repeat;
}
.cross-interview .ci_sec_inner {
  width: 1000px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner {
    width: 100%;
  }
}
.cross-interview .ci_sec_inner p {
  text-align: justify;
}
.cross-interview .ci_sec_inner p span {
  font-weight: bold;
}
.cross-interview .ci_sec_inner img {
  width: 400px;
  height: auto;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner img {
    width: 100%;
  }
}
.cross-interview .ci_sec_inner._l {
  padding: 75px 0 0;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._l {
    padding: 10px 0 0;
  }
}
.cross-interview .ci_sec_inner._l h2 {
  margin-left: 100px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._l h2 {
    margin: 10px 0 10px 15px;
  }
}
.cross-interview .ci_sec_inner._l p {
  margin-left: 240px;
  width: 660px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._l p {
    width: 100%;
    margin-left: 0;
    padding: 0 15px;
  }
}
.cross-interview .ci_sec_inner._l .ci_sec_pic img {
  top: -220px;
  right: 0;
}
@media screen and (max-width: 520px) {
  .cross-interview .ci_sec_inner._l .ci_sec_pic img {
    top: 0;
    width: 100%;
  }
}
.cross-interview .ci_sec_inner._l2 {
  padding: 75px 0 0;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._l2 {
    padding: 35px 0 0;
  }
}
.cross-interview .ci_sec_inner._l2 .ci_sec_title {
  margin-left: 100px;
  margin-bottom: 262px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._l2 .ci_sec_title {
    margin-left: 15px;
    margin-bottom: 0;
    padding: 10px 0;
  }
}
.cross-interview .ci_sec_inner._l2 p {
  margin-left: 240px;
  width: 660px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._l2 p {
    width: 100%;
    margin-left: 0;
    padding: 0 10px;
  }
}
.cross-interview .ci_sec_inner._l2 .ci_sec_pic img {
  top: 80px;
  right: 0;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._l2 .ci_sec_pic img {
    top: 0;
  }
}
.cross-interview .ci_sec_inner._r {
  padding: 155px 0 0;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._r {
    padding: 0;
  }
}
.cross-interview .ci_sec_inner._r .ci_sec_title {
  margin-left: 440px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._r .ci_sec_title {
    margin: 10px 0 15px;
    padding: 0 10px;
  }
}
.cross-interview .ci_sec_inner._r p {
  margin-left: 100px;
  width: 660px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._r p {
    width: 100%;
    margin-left: 0;
    padding: 0 10px;
  }
}
.cross-interview .ci_sec_inner._r .ci_sec_pic img {
  /* top: -328px; */
  top: -308px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_inner._r .ci_sec_pic img {
    top: 0;
  }
}

@media (max-width: 520px) {
  .ut-lead2.ut-strong.ut-mb5 {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .ut-lead2 {
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .ut-lead2.ut-talign-center.ut-mb5 {
    /* font-size: 12px; */
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .ut-lead2 {
    font-size: 20px;
  }
}

.cross-interview .ci_sec .ci_sec_title {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 42px;
  font-weight: bold;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec .ci_sec_title {
    font-size: 21px;
    line-height: 32px;
  }
}
.cross-interview .ci_sec p + p {
  margin-top: 40px;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec p + p {
    margin-top: 20px;
  }
}
.cross-interview .ci_sec_pic {
  position: relative;
  width: 1000px;
  margin: 0;
  padding: 0;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_pic {
    width: 100%;
    padding: 0 10px;
  }
}
.cross-interview .ci_sec_pic img {
  position: absolute;
}
@media (max-width: 520px) {
  .cross-interview .ci_sec_pic img {
    position: relative;
  }
}
@media (max-width: 520px) {
  .ci_sec_pic img {
    padding: 0 5px;
  }
}

.cross-interview .ci_aside {
  width: 1000px;
  margin: 0 auto;
  padding: 0 100px;
}
@media (max-width: 520px) {
  .cross-interview .ci_aside {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/*-----------------------cross-interview2-------------------------*/

.cross-interview2 {
  width: 100% !important;
}
.cross-interview2 a {
  color: #e81b2c;
}
.cross-interview2 .yoshida {
  color: #92aa0e;
}
.cross-interview2 .watabe {
  color: #8c0eaa;
}
.cross-interview2 .tamura {
  color: #0e6da8;
}
.cross-interview2 .kurokoshi {
  color: #e81b2c;
}
.cross-interview2 img {
  border-radius: 0;
}
.cross-interview2 .sg-sns {
  border-bottom: none !important;
  width: 800px;
  margin: 0 auto;
}
.cross-interview2 .ci_pic img {
  width: 100%;
}
.cross-interview2 .ci_head {
  position: relative;
  width: 1000px;
  height: 860px;
  margin: 0 auto;
}
.cross-interview2 .ci_head_box {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  top: 386px;
  width: 700px;
  height: 230px;
  z-index: 3;
}
.cross-interview2 .ci_head_logo {
  position: absolute;
  z-index: 1;
  top: -75px;
  left: -35px;
}
.cross-interview2 .ci_head_title {
  position: absolute;
  padding: 39px 0 0;
  font-size: 40px;
  font-weight: bold;
  line-height: 64px;
  z-index: 2;
}
.cross-interview2 .ci_head_pic {
  position: absolute;
  right: 0;
  top: 0;
}
.cross-interview2 .ci_head_pic img {
  width: 800px;
  height: auto;
}
.cross-interview2 .ci_head_lead {
  position: absolute;
  top: 650px;
  padding: 0 100px;
  text-align: justify;
}
.cross-interview2 .ci_profile {
  margin: 20px 0 0;
  background: linear-gradient(180deg, #f8f8f8, white);
}
.cross-interview2 .ci_profile_inner {
  width: 800px;
  margin: 0 auto;
}
.cross-interview2 .ci_profile_inner::after {
  content: "";
  display: block;
  clear: both;
}
.cross-interview2 .ci_profile a {
  color: #e81b2c;
}
.cross-interview2 .ci_profile_title {
  position: relative;
  background: #e81b2c;
  display: inline;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 20px;
  top: -10px;
}
.cross-interview2 .ci_profile_menter {
  position: relative;
  margin: 26px 0 0;
  padding-bottom: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.cross-interview2 .ci_profile_menter::after {
  content: "";
  display: block;
  clear: both;
}
.cross-interview2 .ci_profile_menter_pic {
  margin: 0 20px 0 0;
  width: 150px;
  text-align: left;
  float: left;
}
.cross-interview2 .ci_profile_menter_pic img {
  width: 100% !important;
}
.cross-interview2 .ci_profile_menter_title {
  margin: 10px 0;
  text-align: left;
  width: 630px;
  float: left;
  vertical-align: middle;
  font-size: 20px;
  line-height: 1.6;
  font-weight: bold;
  display: block;
}
.cross-interview2 .ci_profile_menter_title._kurokoshi:before {
  content: "";
  width: 4px;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  background: #e81b2c;
  margin: 0 15px 2px 5px;
  text-align: center;
  transform: skewX(-40deg);
}
.cross-interview2 .ci_profile_menter_title span {
  font-size: 14px;
  display: block;
  margin-left: 25px;
}
.cross-interview2 .ci_profile_menter_des {
  margin: 0;
  float: left;
  width: 630px;
}
.cross-interview2 .ci_profile_makers {
  position: relative;
  margin: 26px 0 0;
  padding-bottom: 50px;
  width: 100%;
}
.cross-interview2 .ci_profile_makers::after {
  content: "";
  display: block;
  clear: both;
}
.cross-interview2 .ci_profile_makers_pic {
  margin: 0 20px 0 0;
  width: 120px;
  text-align: left;
  float: left;
}
.cross-interview2 .ci_profile_makers_pic img {
  width: 100%;
}
.cross-interview2 .ci_profile_makers_title {
  margin: 10px 0;
  text-align: left;
  width: 632px;
  float: left;
  font-size: 20px;
  line-height: 1.6;
  font-weight: bold;
  display: block;
}
.cross-interview2 .ci_profile_makers_title:before {
  content: "";
  width: 4px;
  display: inline-block;
  vertical-align: middle;
  height: 20px;
  margin: 0 15px 2px 5px;
  text-align: center;
  transform: skewX(-40deg);
}
.cross-interview2 .ci_profile_makers_title._yoshida:before {
  background: #92aa0e;
}
.cross-interview2 .ci_profile_makers_title._watabe:before {
  background: #8c0eaa;
}
.cross-interview2 .ci_profile_makers_title._tamura:before {
  background: #0e6da8;
}
.cross-interview2 .ci_profile_makers_title span {
  font-size: 14px;
  display: block;
  margin-left: 25px;
}
.cross-interview2 .ci_profile_makers_des {
  margin: 0 0 0 27px;
  float: left;
  width: 630px;
}
.cross-interview2 .ci_article {
  margin: 80px 0 0;
}
.cross-interview2 .ci_sec_inner {
  margin: 0 auto;
}
.cross-interview2 .ci_sec_inner p {
  text-align: justify;
}
.cross-interview2 .ci_sec_heading {
  background: url(/asset/uploads/2019/11/ci2_bg1.png) top center no-repeat;
}
.cross-interview2 .ci_sec_heading_box {
  position: relative;
  width: 800px;
  margin: 0 auto;
}
.cross-interview2 .ci_sec_title {
  position: absolute;
  font-size: 16px;
  line-height: 32px;
  font-weight: bold;
  margin: 0 auto;
  text-align: left;
}
.cross-interview2 .ci_sec_title span {
  display: block;
  color: #e81b2c;
}
.cross-interview2 .ci_sec_answer_inner:nth-child(odd) {
  background: url(/asset/uploads/2019/11/ci2_bg2.png) top center no-repeat;
}
.cross-interview2 .ci_sec_answer_inner:nth-child(even) {
  background: url(/asset/uploads/2019/11/ci2_bg3.png) top center no-repeat;
}
.cross-interview2 .ci_sec_answer p {
  line-height: 28px;
}
.cross-interview2 .ci_sec_answer_box {
  position: relative;
  width: 800px;
  margin: 0 auto;
}
.cross-interview2 .ci_sec_answer_box span {
  font-weight: bold;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_heading_box {
  height: 280px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_title {
  left: 440px;
  top: 80px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner p {
  position: absolute;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(1) {
  height: 212px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(1) p {
  left: 290px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(2) {
  height: 280px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(2) p {
  left: 0;
  top: 40px;
  width: 400px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(3) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(3) p {
  left: 340px;
  top: 40px;
  width: 460px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(4) {
  height: 378px;
}
.cross-interview2 .ci_sec._sec1 .ci_sec_answer_inner:nth-child(4) p {
  left: 0;
  top: 40px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_heading_box {
  height: 280px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_title {
  left: 480px;
  top: 80px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner p {
  position: absolute;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(1) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(1) p {
  left: 360px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(2) {
  height: 223px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(2) p {
  left: 0;
  top: 40px;
  width: 400px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(3) {
  height: 223px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(3) p {
  left: 340px;
  top: 40px;
  width: 460px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(4) {
  height: 280px;
}
.cross-interview2 .ci_sec._sec2 .ci_sec_answer_inner:nth-child(4) p {
  left: 0;
  top: 40px;
  width: 480px;
}
.cross-interview2 .ci_sec._sec3 {
  margin: 120px 0 0;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_heading_box {
  height: 280px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_title {
  left: 360px;
  top: 80px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner p {
  position: absolute;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(1) {
  height: 310px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(1) p {
  left: 360px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(2) {
  height: 223px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(2) p {
  left: 0;
  top: 40px;
  width: 500px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(3) {
  height: 223px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(3) p {
  left: 360px;
  top: 40px;
  width: 460px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(4) {
  height: 280px;
}
.cross-interview2 .ci_sec._sec3 .ci_sec_answer_inner:nth-child(4) p {
  left: 0;
  top: 40px;
  width: 560px;
}
.cross-interview2 .ci_sec._sec4 {
  margin: 120px 0 0;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_heading_box {
  height: 280px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_title {
  left: 480px;
  top: 80px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner p {
  position: absolute;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(1) {
  height: 205px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(1) p {
  left: 340px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(2) {
  height: 195px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(2) p {
  left: 0;
  top: 40px;
  width: 500px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(3) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(3) p {
  left: 300px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(4) {
  height: 240px;
}
.cross-interview2 .ci_sec._sec4 .ci_sec_answer_inner:nth-child(4) p {
  left: 0;
  top: 40px;
}
.cross-interview2 .ci_sec._sec5 {
  margin: 0;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_heading_box {
  height: 280px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_title {
  left: 440px;
  top: 80px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner p {
  position: absolute;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(1) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(1) p {
  left: 340px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(2) {
  height: 223px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(2) p {
  left: 0;
  top: 40px;
  width: 460px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(3) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(3) p {
  left: 360px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(4) {
  height: 292px;
}
.cross-interview2 .ci_sec._sec5 .ci_sec_answer_inner:nth-child(4) p {
  left: 0;
  top: 40px;
}
.cross-interview2 .ci_sec._sec6 {
  margin: 0;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_heading_box {
  height: 280px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_title {
  left: 480px;
  top: 80px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner p {
  position: absolute;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(1) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(1) p {
  left: 360px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(2) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(2) p {
  left: 0;
  top: 40px;
  width: 480px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(3) {
  height: 220px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(3) p {
  left: 340px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(4) {
  height: 320px;
}
.cross-interview2 .ci_sec._sec6 .ci_sec_answer_inner:nth-child(4) p {
  left: 0;
  top: 40px;
  width: 460px;
}
.cross-interview2 .ci_sec._sec7 {
  margin: 0;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_heading_box {
  height: 280px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_title {
  left: 340px;
  top: 80px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner p {
  position: absolute;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(1) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(1) p {
  left: 340px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(2) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(2) p {
  left: 0;
  top: 40px;
  width: 500px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(3) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(3) p {
  left: 300px;
  top: 40px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(4) {
  height: 200px;
}
.cross-interview2 .ci_sec._sec7 .ci_sec_answer_inner:nth-child(4) p {
  left: 0;
  top: 40px;
  width: 480px;
}
.cross-interview2 .ci_sec._sec8 {
  margin: 120px 0 0;
}
.cross-interview2 .ci_sec._sec8 .ci_sec_heading {
  background: url(/asset/uploads/2019/11/ci2_bg4.png) center top no-repeat;
}
.cross-interview2 .ci_sec._sec8 .ci_sec_heading_box {
  height: 240px;
}
.cross-interview2 .ci_sec._sec8 .ci_sec_title {
  font-size: 28px;
  line-height: 42px;
  left: 0;
  top: 60px;
}
.cross-interview2 .ci_sec._sec8 .ci_sec_answer_inner {
  background: none;
  margin-bottom: 60px;
}
.cross-interview2 .ci_sec._sec9 {
  margin: 100px 0 0;
}
.cross-interview2 .ci_sec._sec9 .ci_sec_heading {
  background: url(/asset/uploads/2019/11/ci2_bg5.png) center top no-repeat;
}
.cross-interview2 .ci_sec._sec9 .ci_sec_heading_box {
  height: 240px;
}
.cross-interview2 .ci_sec._sec9 .ci_sec_title {
  font-size: 28px;
  line-height: 42px;
  left: 0;
  top: 60px;
}
.cross-interview2 .ci_sec._sec9 .ci_sec_answer_inner {
  background: none;
  margin-bottom: 160px;
}
.cross-interview2 .ci_sec .txt {
  position: absolute;
}
.cross-interview2 .ci_sec ._t1 {
  top: -10px;
  width: 400px;
}
.cross-interview2 .ci_sec ._t2 {
  top: -26px;
  width: 250px;
}
.cross-interview2 .ci_sec ._t3 {
  top: -24px;
  right: 0;
  width: 360px;
}
.cross-interview2 .ci_sec ._t4 {
  top: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t5 {
  top: 26px;
  width: 440px;
}
.cross-interview2 .ci_sec ._t6 {
  top: -26px;
  width: 320px;
}
.cross-interview2 .ci_sec ._t7 {
  top: -13px;
  left: 500px;
  width: 300px;
}
.cross-interview2 .ci_sec ._t8 {
  top: -13px;
  left: 0;
  width: 260px;
}
.cross-interview2 .ci_sec ._t9 {
  top: -20px;
  left: 500px;
  width: 280px;
}
.cross-interview2 .ci_sec ._t10 {
  top: 32px;
  width: 320px;
}
.cross-interview2 .ci_sec ._t11 {
  top: -20px;
  width: 300px;
}
.cross-interview2 .ci_sec ._t12 {
  top: 7px;
  right: 0;
  width: 260px;
}
.cross-interview2 .ci_sec ._t13 {
  top: -45px;
  width: 320px;
}
.cross-interview2 .ci_sec ._t14 {
  top: 0;
  right: 0;
  width: 200px;
}
.cross-interview2 .ci_sec ._t15 {
  top: 11px;
  left: 0;
  width: 400px;
}
.cross-interview2 .ci_sec ._t16 {
  top: -16px;
  left: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t17 {
  top: 11px;
  right: 0;
  width: 320px;
}
.cross-interview2 .ci_sec ._t18 {
  top: -53px;
  left: 0;
  width: 260px;
}
.cross-interview2 .ci_sec ._t19 {
  top: 32px;
  left: 0;
  width: 400px;
}
.cross-interview2 .ci_sec ._t20 {
  top: -36px;
  left: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t21 {
  top: -29px;
  right: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t22 {
  top: 23px;
  left: 0;
  width: 320px;
}
.cross-interview2 .ci_sec ._t23 {
  top: 69px;
  left: 0;
  width: 400px;
}
.cross-interview2 .ci_sec ._t24 {
  top: 17px;
  left: 0;
  width: 320px;
}
.cross-interview2 .ci_sec ._t25 {
  top: -14px;
  right: 0;
  width: 280px;
}
.cross-interview2 .ci_sec ._t26 {
  top: -25px;
  left: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t27 {
  top: 32px;
  right: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t28 {
  top: 52px;
  left: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t29 {
  top: -23px;
  left: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t30 {
  top: -23px;
  right: 0;
  width: 300px;
}
.cross-interview2 .ci_sec ._t31 {
  top: 37px;
  left: 0;
  width: 280px;
}
.cross-interview2 .ci_sec ._t32 {
  top: 0px;
  right: 0;
  width: 280px;
}
.cross-interview2 .ci_aside {
  width: 1000px;
  margin: 0 auto;
  padding: 0 100px;
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 *Wordpress Settings
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.alignnone {
  clear: both;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: left;
}

.aligncenter {
  clear: both;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: left;
}

.alignleft {
  clear: both;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: left;
}

.alignright {
  clear: both;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: left;
}

.wp-caption-text {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 10px;
  text-align: center;
}

span.shimekiri {
  display: inline-block;
  width: 200px;
  height: 30px;
  padding: 0;
  margin: 0 auto;
  color: #ffffff;
  font-size: 14px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  background: #e74c3c;
}

@media (max-width: 520px) {
  .form {
    width: 100%;
  }

  .form tbody {
    display: block;
    width: 100%;
  }

  .form tbody tr {
    display: flex;
    flex-direction: column;
  }

  .form tbody tr td,
  .form tbody tr td select {
    width: 100% !important;
  }
}

@media (max-width: 520px) {
  .ut-lead2.ut-strong.ut-talign-center.ut-lh18 {
    padding: 0 15px;
  }

  td.right-td .ut-lead2.ut-strong {
    font-size: 12px;
  }
}
.ut-lead.basecamp{
  margin-bottom: 15px;
}
.syllabus-otherbox{
  margin-top: 24px;
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * hamburger
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hamburger__ul{
  display: none;
}
@media (max-width: 520px) {
  .header._active {
    height: 100vh;
    background: rgba(15, 29, 44, 0.9);
    border: none;
  }
  .hamburger {
    display: block;
    position: fixed;
    top: -100vh;
    right: 0;
    left: 0;
    z-index: 99999;
    height: 100vh;
    margin: auto;
    padding-top: 50px;
  }
  .hamburger._active {
    opacity: 1;
    top: 0;
    animation: slideIn .4s ease-in-out;
  }
  .hamburger._not-active {
    opacity: 1;
    animation: slideOut .4s ease-in-out;
  }
  @keyframes slideIn {
    from {
      opacity: 0;
      height: 0;
      background: #fff;
    }
    to {
      opacity: 1;
      height: 100vh;
      background: rgba(15, 29, 44, 0.9);

    }
  }
  @keyframes slideOut {
    from {
      opacity: 1;
      top: 0;
      background: rgba(15, 29, 44, .9);
    }
    to {
      opacity: 0;
      top: -100%;
      background: #fff;
    }
  }
  @keyframes changeBkStrat{
    from{
      background: #fff;
      height: 50px;
    }
    to{
      background: rgba(15, 29, 44, .9);
      height: 100vh;
    }
  }
  @keyframes changeBk_bk{
    from{
      background: rgba(15, 29, 44, .9);
      height: 100vh;
    }
    to{
      background: #fff;
      height: 50px;
    }
  }
  .hamburger__ul {
    position: absolute;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999;
    float: none;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    padding-bottom: 80px;
    list-style: none;
    overflow-y: scroll;
    border: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 0;
    animation: ulfadeOut .3s ease-in-out;
  }
  .hamburger__ul._active{
    display: block;
    width: 100%;
    opacity: 1;
    animation: ulfadeIn .4s ease-in-out;
  }
  @keyframes ulfadeIn {
    from {
      display: none;
      opacity: 0;
    }
    to {
      display: block;
      opacity: 1;
    }
  }
    @keyframes ulfadeOut {
    from {
      display: block;
      opacity: 1;
    }
    to {
      display: none;
      opacity: 0;
    }
  }
  .hamburger._active .hamburger__ul {
    animation: fadeIn 1s ease-in-out;
  }
  @keyframes fadeIn {
    from {
      display: none;
      opacity: 0;
    }
    to {
      display: block;
      opacity: 1;
    }
  }
  .bk{
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    height:0;
  }
  .bk._active{
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;
    height:100vh;
    background: #fff;
    animation: all .4s ease-in-out;
    animation: bkSlideIn .4s ease-in-out;
  }
  @keyframes bkSlideIn {
    from {
      display: block;
      top: 50px;
      height:0;
      background: #fff;
    }
    to {
      display: none;
      height:100vh;
      background: none;
    }
  }
  @keyframes bkSlideOut {
    from {
      display: none;
      height:100vh;
      background: none;
    }
    to {
      display: block;
      top: 50px;
      height:0;
      background: #fff;
    }
  }
  .hamburger__ul{
    display: none;
  }
  .hamburger__ul li {
    float: none;
    height: auto;
    border: none;
    margin: 0;
    list-style: none;
  }
  .hamburger__ul li:before {
    content: none;
  }
  .hamburger__ul li a {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding: 15px 0;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    /* border-bottom: 1px solid #264062; */
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;

  }
  .hamburger__ul li a:before{
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    width: 280px;
    border-bottom: 1px solid #264062;
    margin: auto;
  }
  .hamburger__ul li:nth-child(n + 7) a {
    border: none !important;
  }
  .hamburger__ul li:last-of-type a:before{
    border: none;
  }
  .page-pre-entry,
  .page-contact {
    /* margin-top: 15px !important; */
    border-radius: 4px;
    width: 280px;
    margin: 15px auto 0 auto !important;
  }
  .page-pre-entry a,
  .page-contact a {
    padding: 15px 0 !important;
  }
  .page-pre-entry {
    margin-top: 15px!important;
    background: #e81b2c;
  }
  .page-contact {
    background: #737d8b;
  }
}

/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 * 
 * pagetop
 * 
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pagetop{
  position: relative;
  bottom: 0;
  width: 100%;
  min-width: 1080px;
  z-index: 10;
  opacity: 0;
 /*  animation: pt_fadeOut 0.5s ease-in-out; */
}
.pagetop span{
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
  background: #2C3842;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 520px) {
  .pagetop span{
    width: 70px;
    height: 70px;
  }
}
.pagetop span:hover{
  background: #425160;
}
.pagetop a{
  display: block;
  line-height: 70px;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media (max-width: 520px) {
  .pagetop a{
    line-height: 60px;
  }
}
.pagetop a:hover{
  line-height: 60px;
}
.pagetop a:after{
    content: 'PAGE TOP';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    margin-left: -50%;
    padding-top: 51px;
    line-height: 1;
    text-align: center;
    font-size: 10px;
    font-family: 'Helvetica Neue', Roboto, Arial, sans-serif;
    color: #ffffff;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
@media (max-width: 520px) {
  .pagetop a:after{
    padding-top: 48px;
  }
}
.pagetop a i{
  display: block;
  position: relative;
  width: 28px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
}

.pagetop._fadeIn{
  opacity: 1;
  animation: pt_fadeIn 0.5s ease-in-out;
}
.pagetop._fadeIn._fixed{
  opacity: 1;
  animation: pt_fadeIn 0.5s ease-in-out;
  position: fixed;
}
.pagetop._fadeOut{
  opacity: 0;
  animation: pt_fadeOut 0.5s ease-in-out;
  position: fixed;
}
@keyframes pt_fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pt_fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.pagetop a img{
  width: 100%;
  height: auto;
}
@media (max-width: 520px) {
  .pagetop {
    width: 70px;
    height: 70px;
    min-width: 100%;
  }
  .pagetop._fadeIn{
    position: absolute;
    top: -70px;
  }
  .pagetop._fadeIn._fixed{
    position:fixed;
  }
  .pagetop._fixed{
    top: initial;
    bottom: 0;
  }
  .pagetop a{
    width: 70px;
    height: 70px;
  }
}
.student_twitter_link{
  padding-bottom: 3px;
  color: #fff;
  box-sizing: border-box;
}

#top_preentry_box{
  width: 100%;
  min-width: 1080px;
  margin: 0 auto;
  padding: 50px 0 41px;
  background-color: #E81B2C;
  background-image: url("../images/top_footer_logo.png");
  background-repeat: no-repeat;
  background-size: 348px;
  background-position: top center;
}
@media (max-width: 520px){
  #top_preentry_box{
    width: 100%;
    min-width: 100%;
    padding: 50px 0 120px;
    background-size: contain;
    background-size: 93%;
  }
}

.top_preentry_inner{
  width: 575px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
@media (max-width: 520px){
  .top_preentry_inner{
    width: 100%;
    padding: 0 15px;
  }
}

.top_preentry_inner h2{
  font-size: 20px;
  font-weight: bold;
}

.top_preentry_inner h2 span{
  display: block;
  width: 225px;
  margin: 0 auto;
  font-size: 28px;
  border-bottom: 1px solid #fff;
}

.top_preentry_inner p{
  margin: 22px 0 19px;
  font-size: 16px;
  font-weight: bold;
}
.ut-mt50.ut-mb0.ut-talign-center{
  margin-top: 0!important;
}

.top_preentry_inner div a{
    display: flex;
    width: 260px;
    margin: 0 auto;
    padding: 15px 0 15px 30px;
    font-size: 16px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 3px;
}
.top_preentry_inner div a:before{
    content: '';
    display: block;
    width: 20px;
    background-image: url(../images/arrow_white.svg);
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 520px){
  .top_preentry_inner div a{
    display: flex;
    font-size: 18px;
  }
}

.student_snsbox{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 86px;
  margin: 80px auto 0 auto;
  justify-content: center;
}

@media (max-width: 520px) {
  .wrapper{
    padding: 0 15px;
  }
}

@media (max-width: 520px) {
  .ut-strong.ut-mb10.app{
    margin-bottom: 0!important;
  }
}

@media (max-width: 520px) {
  .ut-mb10.ut-strong.ut-lead1{
    font-size: 16px;
  }
}

.top_moreBtn{
  margin-top: 50px;
}
.link{
  color: #fff;
  text-decoration: underline;
}
.link_black{
  color: #181e24;
  text-decoration: underline;
}

.txt-lft{
  text-align: left;
}
.txt-lft02{
  text-align: left;
  padding: 0;
}
.page-h4-num02.js-height-target_PC{
    margin-bottom: 0;
}
.js-change-height_PC{
  margin-bottom: 10px;
}
@media (max-width: 520px) {
  .js-change-height_SP,.js-change-height_PC{
    margin-bottom: 10px;
  }
}
.common-link-box{
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid #737d8b;
  position: relative;
}
.common-link-box a{
  position: absolute;
  bottom: -25px;
  width: 190px;
  height: 50px;
  color: #fff;
  font-size: 16px;
  line-height: 50px;
  background: #737D8B;
  text-align: center;
  border-radius: 4px;
}
.common-link-box a:hover{
  opacity: .7;
  cursor: pointer;
}
.common-link-box:before{
  display: block;
  position: absolute;
  bottom: -25px;
  left: 30px;
  width: 190px;
  height: 50px;
  background: #fff;
  content: '';
}
@media (max-width: 520px) {
  .common-link-box p{
    font-weight: bold;
    font-size: 18px!important;
  }
}

@media (min-width: 521px){
  .js-change-height_SP01,.js-change-height_SP02,.js-change-height_SP03,.js-change-height_SP04,.js-change-height_SP05,.js-change-height_SP06,.js-change-height_SP07,.js-change-height_SP08,.js-change-height_SP09,.js-change-height_SP10{
    height: fit-content!important;
    margin-bottom: 0!important;
  }
}
.slideBox{
  position: relative;
  width: 100%;
  padding: 20px 0 50px 0;
}
@media (max-width: 520px){
  .slideBox{
    padding-top: 0;
  }
}
@media (max-width: 520px){
  .slideBox-wrap{
    width: 100%;
    max-width: 313px;
    margin: 0 auto;
  }
}
.slideBox:before{
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  content: "";
  width: 100%;
  height: 386px;
  background: rgba(247, 247, 247, 1);
}
@media (max-width: 520px){
  .slideBox:before{
    content: none;
  }
}
.slideBox-inner{
  position: relative;
  display: block;
  width: 100%;
  max-width: 600px;
  height: 0;
  padding-top: 47.3%;
  padding-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(63, 69, 81, 0.16);
  overflow: hidden;
  border-radius: 8px;
  will-change: transform;
  margin: 10px auto 0 auto;
}
@media (max-width: 520px){
  .slideBox-inner{
    height: auto;
    max-width: 290px;
    padding: 0 0 50px 0;
    margin: 0 auto;
    aspect-ratio: 1.44265 / 1;
  }
}
.slideBox-inner iframe{
  top: -1px!important;
}
@media (max-width: 520px){
  .slideBox-inner._sp{
    position: absolute;
    right: -500px;
    bottom: 0;
  }
  .slideBox-inner._sp._active{
    position: initial;
    right: initial;
    bottom: initial;
  }
}

.slideshare{
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 600px;
  height: 466px;
  text-align: center;
}
@media (max-width: 520px){
  .slideshare{
    width: 100%;
    height: 71vw;
  }
}
.ss-text{
  position: relative;
  padding: 8px 0 38px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 520px){
  .ss-text{
    padding-bottom: 32px;
    text-align: center;
  }
}
.ss-text:before{
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  content: "";
  width: 100%;
  height: 22px;
  background: url(../images/icon_appguid_border.svg) no-repeat center center;
}
@media (max-width: 520px){
  .ss-text:before{
    height: 17px;
    background: url(../images/icon_appguid_border_SP.svg) no-repeat center center;
  }
}
@media (max-width: 520px){
  .slide{
    width: 100%;
    height: 100%;
  }
}
.form_inputBox{
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 520px){
  .form_inputBox{
    display: flex;
    align-items: baseline;
  }
}

@media (max-width: 520px){
  .seminar-box{
    padding: 0 15px;
  }
}

@media (max-width: 520px){
  .accordion.demoday{
    padding: 0 15px;
  }
}

@media (max-width: 520px){
  .ut-lead.ut-mb50.demoday{
    padding: 0 15px;
  }
}
.demoday-title-img,.demoday-title{
  margin-bottom: 0!important;
}
.demoday-title{
  margin-top: 12px;
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: .1em;
}
@media (max-width: 520px){
  .demoday-title{
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
  }
}

.demoday-title span{
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: .1em;
  line-height: 33px;
  font-weight: 400;
  font-family: Helvetica Neue;
}
@media (max-width: 520px){
  .demoday-title span{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
  }
}
.hybridbox{
  width: 420px;
  margin: 0 auto;
}
@media (max-width: 520px){
  .hybridbox{
    padding: 0 38px;
    width: 100%;
  }
}

.narrow-m{
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.demoday-mv-text,.about-mv-text{
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.8 !important;
  text-align: center;
  font-weight: bold;
}
.about-mv-text{
  font-size: 20px;
}
@media (max-width: 520px){
  .about-mv-text{
    font-size: 16px;
  }
}

.briefing-thanks-read{
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.demoday-mv-text + .demoday-mv-text,.about-mv-text + .about-mv-text{
  margin-top: 33px;
}

.briefing-thanks-read + .briefing-thanks-read{
  margin-top: 30px;
}

.briefing-lead{
  font-size: 16px;
  line-height: 1.8;
}
.briefing-lead + .briefing-lead{
  margin-top: 50px;
}

@media (max-width: 520px){
  .briefing-lead + .briefing-lead{
    margin: 28px 0 0;
  }
}

.pp_link{
  display:block;
  margin: 20px 0 25px;
}

.pp_link02{
  display:block;
  margin: 0 0 20px;
}

.demoday-thanks-lead{
  font-size: 16px;
  line-height: 1.8;
}

.demoday-thanks-lead + .demoday-thanks-lead,.preentry-lead + .preentry-lead{
  margin: 30px 0 0;
}

.demoday-venue{
  display: block;
  margin-top: 18px;
}

.entry-thanks-lead,.preentry-lead{
  margin-bottom: 0;
  font-size: 16px;
}

.entry-thanks-lead + .entry-thanks-lead{
  margin-top: 28px;
}
.mailnews-inputbox{
  display: block;
}

.mailnews-inputbox + .mailnews-inputbox{
  margin-top: 17px;
}

@media (max-width: 520px){
  .slide.current.loaded picture{
    height: auto!important;
    width: 100%!important;
  }
  .slide-image{
    height: auto!important;
    width: 100%!important;
  }
}
