@charset "UTF-8";
body {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 0;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-family: "Hiragino Mincho ProN", YuMincho, serif;
  overflow-x: hidden;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

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

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.clrfx::after {
  content: "";
  display: block;
  clear: both;
}

p {
  margin: 0;
  line-height: 0;
  letter-spacing: 0.1em;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  margin: 0;
  line-height: 0;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  width: 100%;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

*:focus {
  outline: none;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
FONT
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.marumin {
  font-family: "MaruminOld StdN R";
}

.toppan {
  font-family: "ToppanBunkyuMidashiMinchoStd-ExtraBold";
}

.bodoniB {
  font-family: "BauerBodoniPro-Black";
}

.bodoniR {
  font-family: "BauerBodoniPro-Roman";
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ANIMATION
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(0, 0, 0)), color-stop(45%, rgba(0, 0, 0, 0.4)), color-stop(55%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(90deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(0, 0, 0)), color-stop(45%, rgba(0, 0, 0, 0.4)), color-stop(55%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, 0.4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  mask-size: 300% 300%;
  -webkit-mask-size: 300% 300%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 130% 130%;
  -webkit-mask-position: 130% 130%;
}

@-webkit-keyframes blurAnime {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
    mask-position: 130% 130%;
    -webkit-mask-position: 130% 130%;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    mask-position: 0;
    -webkit-mask-position: 0;
  }
}

@keyframes blurAnime {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
    mask-position: 130% 130%;
    -webkit-mask-position: 130% 130%;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    mask-position: 0;
    -webkit-mask-position: 0;
  }
}
.blurTrigger {
  opacity: 0;
}

.js-fadeIn {
  opacity: 0;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.js-fadeIn.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
COMMON
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.michi__pc {
  display: block;
}

.michi__sp {
  display: none;
}

.sec_ttl {
  font-size: 68px;
  font-size: 4.25rem;
  font-family: "BauerBodoniPro-Black";
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 100px;
}

@media screen and (max-width: 850px) {
  .michi__pc {
    display: none;
  }
  .michi__sp {
    display: block;
  }
  .sec_ttl {
    font-size: 52px;
    font-size: 3.25rem;
    letter-spacing: 0.15em;
  }
}
@media screen and (max-width: 500px) {
  .sec_ttl {
    font-size: 34px;
    font-size: 2.125rem;
    letter-spacing: 0.15em;
    margin-bottom: 60px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
LOADING
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100;
  background-color: #4d5aaf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#loading .loading_logo {
  width: 85%;
  max-width: 650px;
}
#loading .loading_logo_sp {
  display: none;
}

@media screen and (max-width: 750px) {
  #loading .loading_copy {
    width: 130px;
    margin-bottom: 80px;
    -webkit-transition: opacity 0.3s ease-in 1s;
    transition: opacity 0.3s ease-in 1s;
  }
  #loading .loading_copy.loading_logo_sp {
    display: block;
  }
  #loading .loading_logo {
    position: absolute;
    width: 50%;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: 50px;
  }
  #loading .loading_logo.loading_logo_pc {
    display: none;
  }
  #loading .loading_logo.loading_logo_sp {
    display: block;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
HEADER
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
.header.header_absolute {
  top: 0;
}
.header.header_fixed {
  position: fixed;
  top: -85px;
  left: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header .header_left {
  position: absolute;
  top: 35px;
  left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .header_left .header_logo {
  width: 180px;
  margin-right: 3.5vw;
}
.header .header_left .header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header_left .header_menu li a {
  height: 11px;
  padding: 0 1.5vw;
  border-right: 1px solid #ddd;
}
.header .header_left .header_menu li a img {
  height: 100%;
  width: auto;
}
.header .header_left .header_menu li:last-child a {
  border-right: none;
}
.header .header_lang {
  position: absolute;
  top: 35px;
  right: 35px;
}

.header_lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header_lang .jp {
  width: 26px;
  margin-right: 12px;
}
.header_lang .en {
  width: 30px;
}
.header_lang .lang_passive {
  opacity: 0.5;
}

.header_fixed {
  height: 45px;
  background-color: rgba(77, 90, 175, 0.95);
}
.header_fixed .header_left, .header_fixed .header_lang {
  top: 15px;
}

#header.isActive .header_fixed {
  top: 0;
}

#nav-drawer {
  width: 28px;
  height: 28px;
  z-index: 100;
  cursor: pointer;
  position: absolute;
  color: #fff;
  display: none;
}
#nav-drawer .nav_line {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 1px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
}
#nav-drawer .nav_line:nth-of-type(1) {
  top: 16px;
}
#nav-drawer .nav_line:nth-of-type(2) {
  top: 21px;
}
#nav-drawer .nav_line:nth-of-type(3) {
  top: 26px;
}
#nav-drawer.nav_open .nav_line:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 20px;
}
#nav-drawer.nav_open .nav_line:nth-of-type(2) {
  opacity: 0;
}
#nav-drawer.nav_open .nav_line:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 20px;
}

#nav-content {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(77, 90, 175, 0.98);
  width: 100%;
  height: 100%;
  z-index: 10;
}
#nav-content .nav_inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 260px;
}
#nav-content .nav_inner .header_menu {
  text-align: center;
}
#nav-content .nav_inner .header_menu li a {
  height: 20px;
  padding: 20px 0;
}
#nav-content .nav_inner .header_menu li img {
  height: 100%;
  width: auto;
}
#nav-content .nav_inner .header_lang {
  position: relative;
  width: 70px;
  margin: 50px auto;
}

@media screen and (max-width: 750px) {
  .header.header_absolute {
    display: none;
  }
  .header.header_fixed {
    bottom: -45px;
    top: auto;
  }
  .header.header_fixed .header_left {
    left: 20px;
    top: 16px;
  }
  .header.header_fixed .header_left .header_menu {
    display: none;
  }
  .header.header_fixed .header_lang {
    display: none;
  }
  #header.isActive .header_fixed {
    bottom: 0;
    top: auto;
  }
  #nav-drawer {
    display: block;
    right: 20px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
FOOTER
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.footer {
  text-align: center;
  margin-top: 160px;
  margin-bottom: 50px;
}
.footer .footer_logo {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 45px;
}
.footer .footer_logo a {
  width: 100%;
}
.footer .footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  font-size: 14px;
  font-size: 0.875rem;
}
.footer .footer_menu li {
  margin-bottom: 15px;
  border-right: 1px solid #405266;
}
.footer .footer_menu li a {
  padding: 0 20px;
  color: #405266;
}
.footer .footer_menu li:last-child {
  border-right: none;
}
.footer .footer_sns {
  margin-top: 100px;
  margin-bottom: 50px;
}
.footer .footer_sns a {
  width: 52px;
  margin: 0 12px;
}
.footer .btn_privacy {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  color: #405266;
  border-bottom: 1px solid #405266;
  padding-bottom: 6px;
}
.footer .credit {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  margin-top: 60px;
  color: #828d99;
}

@media screen and (max-width: 750px) {
  .footer .footer_menu {
    max-width: 350px;
    margin: 0 auto;
    font-size: 13px;
    font-size: 0.8125rem;
  }
  .footer .footer_menu li:nth-child(3) {
    border-right: none;
  }
}
@media screen and (max-width: 650px) {
  .footer {
    margin: 120px auto 50px;
    padding: 0 30px;
  }
  .footer .footer_logo {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .footer {
    padding: 0 15px;
  }
  .footer .footer_logo {
    width: 90%;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
FV
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bg__grade_fv {
  position: relative;
  overflow: hidden;
}
.bg__grade_fv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/fv_bg_pc.webp);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  -webkit-animation: zoom 2s 1;
          animation: zoom 2s 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.bg__grade_fv .musbi_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

#p-michi__fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  min-height: 600px;
}
#p-michi__fv .fv_contents {
  width: 80%;
  max-width: 900px;
  margin-top: 50px;
  -webkit-animation: fvContents 0.7s 1;
          animation: fvContents 0.7s 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  opacity: 0;
}
@-webkit-keyframes fvContents {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fvContents {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#p-michi__fv .fv_contents .fv_sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .bg__grade_fv .musbi_bg {
    bottom: 10%;
  }
}
@media screen and (max-width: 750px) {
  .bg__grade_fv::before {
    background-image: url(../img/fv_bg_sp.webp);
  }
  .bg__grade_fv .musbi_bg {
    bottom: 25%;
  }
  #p-michi__fv .fv_contents {
    width: 70%;
    max-width: 300px;
    margin-top: 0;
  }
  #p-michi__fv .fv_contents .fv_pc {
    display: none;
  }
  #p-michi__fv .fv_contents .fv_sp {
    display: block;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
LEAD
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#lead {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  margin: 180px auto 0;
  padding-bottom: 200px;
}
#lead .l_body p {
  line-height: 2.7;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.2em;
  height: 420px;
  margin-left: 3vw;
}
#lead a {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  line-height: 2;
  font-size: 16px;
  letter-spacing: 0.15em;
  padding-bottom: 20px;
  margin-right: 5vw;
  border-left: 1px solid;
  position: relative;
}
#lead a span {
  position: absolute;
  bottom: 0;
  left: 13px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 6px;
  height: 6px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
}

@media screen and (max-width: 1000px) {
  #lead .l_body p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 750px) {
  #lead {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: horizontal-tb;
            writing-mode: horizontal-tb;
    text-align: center;
    padding: 0 30px 120px;
    margin: 100px auto 0;
  }
  #lead .l_body {
    margin-bottom: 50px;
  }
  #lead .l_body p {
    height: auto;
    margin-left: 0;
    margin-bottom: 20px;
    line-height: 2.5;
  }
  #lead a {
    border-left: none;
    border-bottom: 1px solid;
    padding-bottom: 0;
    margin-right: 0;
    padding-right: 25px;
    font-size: 14px;
    font-size: 0.875rem;
  }
  #lead a span {
    left: auto;
    right: 5px;
    top: 12px;
    bottom: auto;
    -webkit-transform: translateY(-20%) rotate(45deg);
            transform: translateY(-20%) rotate(45deg);
  }
}
@media screen and (max-width: 500px) {
  #lead .l_body p {
    font-size: 17px;
    font-size: 1.0625rem;
    letter-spacing: 0.1em;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PROGRAM
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#program {
  max-width: 1050px;
  margin: 220px auto 140px;
  padding: 0 50px;
  color: #405266;
}
#program .sec_ttl {
  width: 440px;
  margin: 0 auto 140px;
}
#program .program_ttl {
  margin-bottom: 80px;
  padding-left: 33px;
  border-left: 2px solid #4f5aa9;
  font-size: 44px;
  font-size: 2.75rem;
}
#program .program_ttl .deco_en {
  font-size: 0.32em;
  line-height: 1;
  margin-bottom: 20px;
}
#program .program_ttl h3 {
  font-size: 1em;
  line-height: 1.2;
  margin-bottom: 15px;
}
#program .program_ttl h3 span {
  font-size: 0.7em;
}
#program .program_ttl .ttl_detail {
  font-size: 0.45em;
  line-height: 1.2;
}
#program .program_ttl .ttl_detail .date {
  font-size: 1.6em;
}
#program .program_ttl .ttl_detail .category {
  line-height: 1;
  color: #fff;
  font-size: 0.6em;
  padding: 3px 10px 4px;
  border-radius: 2px;
  padding: 2px 10px 3px;
}
#program .program_ttl .ttl_detail .category.category-a {
  background-color: #4d5aaf;
}
#program .program_ttl .ttl_detail .category.category-b {
  background-color: #cc8597;
}
#program .program_wrap .program_txt {
  font-size: 14px;
  font-size: 0.875rem;
}
#program .program_wrap .program_txt .program_sub_copy {
  font-size: 1.65em;
  line-height: 1.8;
  margin-bottom: 40px;
}
#program .program_wrap .program_txt .program_sub_copy span {
  font-size: 0.7em;
}
#program .program_wrap .program_txt .program_l_body {
  text-align: justify;
  letter-spacing: 0;
  line-height: 2;
}
#program .program_wrap .program_txt .program_l_body a {
  color: #405266;
  text-decoration: underline;
}
#program .program_wrap .program_txt .program_l_body_note {
  line-height: 1.5;
  font-size: 12px;
  font-size: 0.75rem;
  color: #405266;
  margin-top: 10px;
}
#program .program_wrap .program_txt .btn_application {
  width: 200px;
  margin-top: 30px;
}
#program .program_sec_l {
  margin-bottom: 160px;
}
#program .program_sec_l .program_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#program .program_sec_l .program_wrap .program_txt {
  width: 33%;
  min-width: 280px;
}
#program .program_sec_l .program_wrap .program_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 57%;
  height: 100%;
}
#program .program_sec_l .program_wrap .program_img.col4 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#program .program_sec_l .program_wrap .program_img.col4 .md-btn {
  width: calc(50% - 2px);
}
#program .program_sec_l .program_wrap .program_img.col2 .md-btn {
  width: calc(50% - 2px);
}
#program .program_sec_l .program_wrap .program_img.col6 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#program .program_sec_l .program_wrap .program_img.col6 .md-btn {
  width: calc(33.333% - 2px);
}
#program .program_sec_l .program_wrap .program_img .md-btn {
  position: relative;
  margin-bottom: 4px;
}
#program .program_sec_l .program_wrap .program_img .md-btn:hover {
  opacity: 1;
}
#program .program_sec_l .program_wrap .program_img .md-btn:hover img {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#program .program_sec_l .program_wrap .program_img .md-btn .prof_tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 70px;
}
#program .program_sec_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#program .program_sec_wrap .program_sec_s {
  width: 46%;
  margin-bottom: 150px;
}
#program .program_sec_wrap .program_sec_s .program_ttl {
  margin-bottom: 45px;
  font-size: 34px;
  font-size: 2.125rem;
}
#program .program_sec_wrap .program_sec_s .program_ttl .deco_en {
  margin-bottom: 10px;
}
#program .program_sec_wrap .program_sec_s .program_ttl .ttl_detail .category {
  font-size: 10px;
  font-size: 0.625rem;
  display: block;
  width: 82px;
  margin-top: 5px;
}
#program .program_sec_wrap .program_sec_s .program_wrap .program_img .md-btn {
  position: relative;
}
#program .program_sec_wrap .program_sec_s .program_wrap .program_img .md-btn .prof_tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 70px;
}
#program .program_sec_wrap .program_sec_s .program_wrap .program_txt .program_sub_copy {
  margin-top: 30px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  #program .program_ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
  #program .program_wrap .program_txt .program_sub_copy {
    font-size: 22px;
    font-size: 1.375rem;
  }
  #program .program_sec_wrap .program_sec_s .program_ttl {
    font-size: 29px;
    font-size: 1.8125rem;
  }
}
@media screen and (max-width: 850px) {
  #program .sec_ttl {
    width: 350px;
  }
  #program .program_sec_l .program_ttl .ttl_detail {
    font-size: 12px;
    font-size: 0.75rem;
  }
  #program .program_sec_l .program_ttl .ttl_detail .category {
    font-size: 10px;
    font-size: 0.625rem;
    display: block;
    width: 82px;
    margin-top: 5px;
  }
  #program .program_sec_l .program_wrap {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  #program .program_sec_l .program_wrap .program_txt {
    width: 100%;
    margin-top: 30px;
  }
  #program .program_sec_l .program_wrap .program_img {
    width: 100%;
  }
  #program .program_sec_wrap {
    display: block;
  }
  #program .program_sec_wrap .program_sec_s {
    width: 100%;
  }
  #program .program_sec_wrap .program_sec_s .program_wrap .program_txt .program_sub_copy {
    margin-bottom: 10px;
  }
  #program .program_sec_wrap .program_sec_s .program_ttl .ttl_detail {
    font-size: 12px;
    font-size: 0.75rem;
  }
  #program .program_sec_wrap .program_sec_s .program_ttl .ttl_detail .category {
    font-size: 10px;
    font-size: 0.625rem;
    display: block;
    width: 80px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 500px) {
  #program {
    padding: 0 30px;
    margin: 150px auto 100px;
  }
  #program .sec_ttl {
    width: 250px;
    margin: 0 auto 60px;
  }
  #program .program_ttl {
    font-size: 24px;
    font-size: 1.5rem;
    padding-left: 15px;
    margin-bottom: 45px;
    position: relative;
  }
  #program .program_ttl h3 {
    line-height: 1.4;
  }
  #program .program_wrap .program_txt .program_sub_copy {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }
  #program .program_wrap .program_txt .program_l_body {
    line-height: 1.75;
  }
  #program .program_sec_l {
    margin-bottom: 100px;
  }
  #program .program_sec_l .program_ttl .deco_en {
    margin-bottom: 5px;
  }
  #program .program_sec_l .program_ttl h3 {
    margin-bottom: 5px;
  }
  #program .program_sec_l .program_wrap .program_img .md-btn .prof_tag {
    width: 62px;
    right: 5px;
    bottom: 5px;
  }
  #program .program_sec_wrap .program_sec_s {
    margin-bottom: 100px;
  }
  #program .program_sec_wrap .program_sec_s .program_ttl {
    font-size: 23px;
    font-size: 1.4375rem;
  }
  #program .program_sec_wrap .program_sec_s .program_ttl h3 {
    margin-bottom: 5px;
  }
  #program .program_sec_wrap .program_sec_s .program_ttl .deco_en {
    margin-bottom: 5px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
モーダル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.modal .md-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  z-index: 999;
  cursor: pointer;
}
.modal .md-contents {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 95%;
  max-width: 1080px;
  height: auto;
  max-height: 90vh;
  overflow: scroll;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1000;
}
.modal .md-contents .md-xmark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}
.modal .md-contents .md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
}
.modal .md-contents .md-xmark span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.modal .md-contents .md-xmark span:nth-of-type(2) {
  bottom: 0;
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}
.modal .md-contents .md-inner {
  padding: 100px;
  background: #fff;
  height: auto;
  color: #405266;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal .md-contents .md-inner .prof_img {
  width: 38%;
}
.modal .md-contents .md-inner .prof_txt {
  width: 55%;
}
.modal .md-contents .md-inner .prof_txt .prof_name {
  font-family: "ToppanBunkyuMidashiMinchoStd-ExtraBold";
  line-height: 0.8;
  font-size: 38px;
  font-size: 2.375rem;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}
.modal .md-contents .md-inner .prof_txt .prof_name span {
  font-family: "BauerBodoniPro-Roman";
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}
.modal .md-contents .md-inner .prof_txt .prof_name span.post {
  font-family: "MaruminOld StdN R";
  font-size: 13px;
  font-size: 0.8125rem;
}
.modal .md-contents .md-inner .prof_txt .prof_body {
  font-family: "MaruminOld StdN R";
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.85;
}

@media screen and (max-width: 750px) {
  .modal .md-contents .md-inner {
    padding: 60px 30px;
    display: block;
  }
  .modal .md-contents .md-inner .prof_img {
    width: 100%;
  }
  .modal .md-contents .md-inner .prof_txt {
    width: 100%;
    margin-top: 40px;
  }
  .modal .md-contents .md-inner .prof_txt .prof_name {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
背景
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bg__grade_bottoms {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(77, 90, 175)), to(rgba(195, 13, 35, 0.3)));
  background-image: linear-gradient(0deg, rgb(77, 90, 175), rgba(195, 13, 35, 0.3));
  padding-top: 200px;
  padding-bottom: 180px;
}

@media screen and (max-width: 500px) {
  .bg__grade_bottoms {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
TIMETABLE
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#timetable .timetable_pc {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px 0 30px;
}
#timetable .timetable_sp {
  display: none;
}
#timetable a {
  max-width: 900px;
  margin: 50px auto 0;
  display: block;
  padding: 0 80px 0 30px;
  color: #fff;
  font-size: 12px;
  /* border-bottom: 1px solid; */
  text-decoration: underline;
}

@media screen and (max-width: 500px) {
  #timetable .timetable_pc {
    display: none;
  }
  #timetable a {
    margin: 20px auto 0;
  }
  #timetable .timetable_sp {
    display: block;
  }
  #timetable .timetable_sp .content_area {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 15px;
  }
  #timetable .timetable_sp .tab-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #timetable .timetable_sp .tab-container .tab {
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1;
    width: 32.5%;
    padding: 8px 0 6px;
    background-color: #a9afd1;
    cursor: pointer;
  }
  #timetable .timetable_sp .tab-container .tab.active {
    background-color: #4D5AAF;
  }
  #timetable .timetable_sp .content-container {
    height: 420px;
    overflow: scroll;
    background-color: rgba(255, 255, 255, 0.2);
  }
  #timetable .timetable_sp .content-container .content {
    display: none;
    width: 90%;
    margin: 20px auto;
  }
  #timetable .timetable_sp .content-container .content.show {
    display: block;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ACCESS
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#access {
  max-width: 1050px;
  margin: 200px auto;
  padding: 0 50px;
}
#access .access_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#access .access_wrap .access_map {
  width: 48%;
}
#access .access_wrap .access_map iframe {
  aspect-ratio: 4/3;
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(0.5);
          filter: grayscale(0.5);
}
#access .access_wrap .access_txt {
  width: 44%;
  font-size: 15px;
  font-size: 0.9375rem;
}
#access .access_wrap .access_txt .acces_address {
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 60px;
}
#access .access_wrap .access_txt .acces_address span {
  font-size: 0.65em;
}
#access .access_wrap .access_txt .access_directions {
  line-height: 1.55;
  margin-bottom: 18px;
}
#access .access_wrap .access_txt .access_directions span {
  font-size: 0.8em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1000px) {
  #access .access_wrap {
    display: block;
    max-width: 600px;
    margin: 0 auto;
  }
  #access .access_wrap .access_map {
    width: 100%;
  }
  #access .access_wrap .access_txt {
    width: 100%;
    margin-top: 80px;
  }
  #access .access_wrap .access_txt .acces_address {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 500px) {
  #access {
    padding: 0 30px;
    margin: 120px auto;
  }
  #access .access_wrap .access_txt {
    margin-top: 40px;
  }
  #access .access_wrap .access_txt .acces_address {
    font-size: 16px;
    font-size: 1rem;
  }
  #access .access_wrap .access_txt .acces_address span {
    font-size: 12px;
    font-size: 0.75rem;
  }
  #access .access_wrap .access_txt .access_directions {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #access .access_wrap .access_txt .access_directions span {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
INFO
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#info .info_wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}
#info .info_wrap li {
  padding: 20px 0;
  background-image: linear-gradient(to right, #ddd 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
#info .info_wrap li .ac_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  cursor: pointer;
  position: relative;
}
#info .info_wrap li .ac_header:before, #info .info_wrap li .ac_header:after {
  position: absolute;
  content: "";
  top: 1px;
  right: 30px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #fff;
}
#info .info_wrap li .ac_header:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#info .info_wrap li .ac_header.active:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
#info .info_wrap li .ac_header .info_date {
  font-size: 0.8em;
  width: 18%;
  min-width: 90px;
  line-height: 1;
}
#info .info_wrap li .ac_header .info_ttl {
  width: 70%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1;
  padding-right: 30px;
}
#info .info_wrap li .ac_content {
  display: none;
  padding-top: 20px;
  font-size: 0.9em;
  line-height: 1.8;
}

@media screen and (max-width: 1000px) {
  #info .info_wrap {
    max-width: 600px;
  }
}
@media screen and (max-width: 500px) {
  #info .info_wrap {
    padding: 0 30px;
  }
  #info .info_wrap li .ac_header {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #info .info_wrap li .ac_header p {
    letter-spacing: 0.05em;
  }
  #info .info_wrap li .ac_header:before, #info .info_wrap li .ac_header:after {
    right: 0;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
SPONSOR
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#sponsor {
  margin-top: 150px;
  color: #405266;
}
#sponsor .sponsor_logo {
  max-width: 700px;
  width: 85%;
  margin: 0 auto;
}
#sponsor .sponsors {
  max-width: 450px;
  margin: 80px auto 0;
}
#sponsor .sponsors li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13px 0;
}
#sponsor .sponsors li p {
  font-size: 14px;
  font-size: 0.875rem;
}
#sponsor .sponsors li p.tt {
  width: 90px;
  margin-right: 5%;
  margin-bottom: 0;
  line-height: 1;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
#sponsor .sponsors li p.td {
  text-align: left;
  line-height: 1;
}

@media screen and (max-width: 500px) {
  #sponsor {
    margin-top: 80px;
  }
  #sponsor .sponsors {
    padding: 0 30px;
    margin: 30px auto 0;
  }
  #sponsor .sponsors li {
    padding: 8px 0;
  }
  #sponsor .sponsors li p.tt, #sponsor .sponsors li p.td {
    line-height: 1.4;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
下層
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.lower .ttl_lower {
  padding-top: 230px;
  padding-bottom: 200px;
  background-color: #4D5AAF;
  text-align: center;
  font-size: 30px;
  font-size: 1.875rem;
}
.lower .ttl_lower .lower_h2 {
  line-height: 1;
  letter-spacing: 0.4em;
  margin-bottom: 35px;
}
.lower .ttl_lower p {
  line-height: 1;
  letter-spacing: 0.25em;
  font-size: 0.55em;
}
.lower .lower_grade {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(77, 90, 175)), to(rgba(195, 13, 35, 0.25)));
  background-image: linear-gradient(180deg, rgb(77, 90, 175), rgba(195, 13, 35, 0.25));
  padding-bottom: 220px;
}
.lower .return {
  display: block;
  width: 200px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  line-height: 1;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
}

@media screen and (max-width: 850px) {
  .lower .ttl_lower {
    font-size: 26px;
    font-size: 1.625rem;
  }
  .lower .ttl_lower .lower_h2 {
    letter-spacing: 0.25em;
  }
}
@media screen and (max-width: 500px) {
  .lower .ttl_lower {
    padding-top: 120px;
    padding-bottom: 100px;
    font-size: 22px;
    font-size: 1.375rem;
  }
  .lower .ttl_lower .lower_h2 {
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ABOUT
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.michi__about_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  width: 800px;
  margin: 0 auto 200px;
}
.michi__about_contents .michi__about_ttl {
  width: 40%;
  margin-right: 8%;
}
.michi__about_contents .michi__about_ttl p {
  font-size: 1.35rem;
  line-height: 2.27;
  margin-bottom: 35px;
}
.michi__about_contents .michi__about_txt {
  width: 52%;
  text-align: justify;
}
.michi__about_contents .michi__about_txt p {
  line-height: 1.9;
  margin-bottom: 20px;
}

@media screen and (max-width: 850px) {
  .michi__about_contents {
    display: block;
    width: 100%;
    padding: 0 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .michi__about_contents .michi__about_ttl {
    width: 100%;
    text-align: center;
    margin-bottom: 150px;
    margin-right: 0;
  }
  .michi__about_contents .michi__about_txt {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .michi__about_contents .michi__about_ttl p {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .michi__about_contents .michi__about_txt p {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: justify;
    letter-spacing: 0;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
プライバシーポリシー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.privacy_contents {
  font-family: "Hiragino Mincho ProN", YuMincho, serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.85;
  text-align: justify;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 30px 130px;
}
.privacy_contents a {
  color: #fff;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ENGLISH PAGE
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.page_en .michi__about_contents {
  font-size: 14px;
  font-size: 0.875rem;
}
.page_en .michi__about_contents .michi__about_ttl p {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.page_en .lower .ttl_lower .lower_h2 {
  letter-spacing: 0.2em;
}

.page_en #p-michi__fv .fv_contents {
  max-width: 800px;
}
.page_en #lead {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  text-align: center;
}
.page_en #lead a {
  margin-top: 40px;
  margin-right: 0;
  border-left: none;
  border-bottom: 1px solid;
  line-height: 1;
  padding-bottom: 5px;
}
.page_en #lead a:hover {
  opacity: 0.5;
}
.page_en #lead a span {
  display: none;
}
.page_en #lead .l_body p {
  height: auto;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.page_en #program .program_wrap .program_txt .program_sub_copy {
  font-size: 1.5em;
  letter-spacing: 0.05em;
}
.page_en #program .program_wrap .program_txt .program_l_body {
  text-align: left;
}
.page_en #program .program_sec_s .program_wrap .program_txt .program_l_body {
  text-align: justify;
}
.page_en #program .program_wrap .program_img .md-btn .prof_tag {
  line-height: 1;
  color: #fff;
  width: auto !important;
  font-size: 11px;
  font-family: "BauerBodoniPro-Roman";
  padding: 5px 5px 4px 5px;
  background-image: -webkit-gradient(linear, right top, left top, from(rgb(77, 90, 175)), to(rgba(195, 13, 35, 0.5)));
  background-image: linear-gradient(270deg, rgb(77, 90, 175), rgba(195, 13, 35, 0.5));
  border-radius: 2px;
}
.page_en #sponsor .sponsors li {
  display: block;
}
.page_en #sponsor .sponsors li p {
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .page_en #loading .loading_logo {
    width: 85%;
    max-width: 650px;
    position: relative;
    bottom: 0;
  }
  .page_en #lead a {
    padding-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .page_en .lower .ttl_lower .lower_h2 {
    letter-spacing: 0.1em;
    font-size: 1.3rem;
  }
  .page_en .michi__about_contents .michi__about_ttl p {
    font-size: 1.15rem;
  }
  .page_en #lead .l_body p {
    letter-spacing: 0.05em;
    font-size: 0.9rem;
  }
  .page_en #program .program_wrap .program_txt .program_sub_copy {
    font-size: 1.3em;
    line-height: 1.4;
    margin-bottom: 35px;
  }
  .page_en #program .program_wrap .program_txt .program_l_body {
    font-size: 13px;
    font-size: 0.8125rem;
    text-align: justify;
  }
  .page_en #sponsor .sponsors li p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}/*# sourceMappingURL=global.css.map */