@charset "UTF-8";
/* header */
main {
  position: relative;
  z-index: 1;
  padding-top: 90px; }

header {
  position: relative;
  z-index: 98;
  width: 100%;
  max-width: 1340px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0;
  transition: all 0.12s ease-in 0s; }

.header_wrap {
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: 1340px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 0 20px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap; }
  .header_wrap .header_logo {
    padding-top: 33px;
    padding-left: 50px;
    transition: all 0.12s ease-in 0s; }
    .header_wrap .header_logo img {
      width: 262px;
      height: auto;
      transition: all 0.12s ease-in 0s; }
      @media all and (max-width: 1000px) {
        .header_wrap .header_logo img {
          width: 200px; } }
    @media all and (max-width: 1200px) {
      .header_wrap .header_logo {
        padding-left: 0px; } }
    .header_wrap .header_logo a:hover {
      opacity: 0.7;
      -moz-opacity: 0.7;
      filter: alpha(opacity=70); }
  .header_wrap .toggle_wrap {
    position: relative;
    z-index: 98;
    right: 0;
    width: 44px;
    padding-top: 38px; }

.header_navi {
  position: absolute;
  z-index: 11;
  display: inline-block;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  right: 90px;
  padding-top: 54px;
  box-sizing: border-box; }
  .header_navi.active {
    z-index: 9; }
  @media all and (max-width: 1100px) {
    .header_navi {
      right: 75px; } }
  @media all and (max-width: 900px) {
    .header_navi {
      display: none; } }
  .header_navi ul.navi {
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap; }
    .header_navi ul.navi > li {
      margin-left: 15px; }
      @media all and (max-width: 1100px) {
        .header_navi ul.navi > li {
          margin-left: 15px; } }
      .header_navi ul.navi > li > a {
        position: relative;
        display: block;
        padding-bottom: 12px;
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: -1px; }
        @media all and (max-width: 1100px) {
          .header_navi ul.navi > li > a {
            font-size: 1.4rem; } }
        .header_navi ul.navi > li > a:after {
          position: absolute;
          content: "";
          display: block;
          bottom: 0;
          left: 0;
          width: 0;
          height: 4px;
          background: #000;
          opacity: 0;
          transition: all 0.12s ease-in 0s; }
        .header_navi ul.navi > li > a:hover:after {
          opacity: 1;
          width: calc(100% + 0px); }

.globalMenuSp {
  position: absolute;
  z-index: 97;
  top: 28px;
  right: -10px;
  width: 0px;
  height: 0px !important;
  border-radius: 20px;
  background-color: #fff;
  padding: 50px 50px;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.12s ease-in 0s; }
  .globalMenuSp ul.sp_navi {
    width: 100%;
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.12s ease-in 0s; }
    .globalMenuSp ul.sp_navi > li {
      border-bottom: 1px solid #e5e5e5; }
      .globalMenuSp ul.sp_navi > li a {
        display: block;
        font-size: 1.6rem;
        letter-spacing: 0;
        box-sizing: border-box;
        padding: 40px 0;
        white-space: nowrap;
        word-break: break-all;
        overflow: hidden; }
        .globalMenuSp ul.sp_navi > li a:before {
          top: 38px; }
        .globalMenuSp ul.sp_navi > li a:after {
          top: 16px;
          right: 1px; }
      .globalMenuSp ul.sp_navi > li:last-child {
        border: none; }

/* このクラスを、jQueryで付与?削除する */
.globalMenuSp.active {
  width: 450px;
  height: 650px !important;
  opacity: 1.0;
  -moz-opacity: 1.0;
  filter: alpha(opacity=100); }
  .globalMenuSp.active ul {
    opacity: 1.0;
    -moz-opacity: 1.0;
    filter: alpha(opacity=100); }

.navToggle {
  display: block;
  position: relative;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 98;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  background-color: #000;
  border-radius: 50%; }

.navToggle span {
  display: block;
  position: absolute;
  border-bottom: solid 1px #fff;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  width: 18px;
  left: 13px; }

.navToggle span:nth-child(1) {
  top: 19px; }

.navToggle span:nth-child(2) {
  top: 25px; }

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
  top: 22px;
  -webkit-transform: rotate(45deg);
  -moz-transform: 45deg 45deg;
  transform: rotate(45deg); }

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2) {
  top: 22px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.globalMenuSp_bg {
  position: fixed;
  display: block;
  z-index: -999;
  width: 0;
  height: 0; }
  .globalMenuSp_bg:after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.12s ease-in 0s; }
  .globalMenuSp_bg.active {
    z-index: 90;
    width: 100%;
    height: 100%; }
    .globalMenuSp_bg.active:after {
      opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100); }

main.active {
  padding-top: 45px; }

.pankuzu_wrap {
  position: absolute;
  right: 16px;
  bottom: 30px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box; }
  .pankuzu_wrap ul {
    padding: 6px 0px 7px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap; }
    .pankuzu_wrap ul li {
      position: relative;
      display: table-cell;
      font-size: 1.2rem;
      font-weight: 500;
      letter-spacing: 0;
      vertical-align: middle;
      padding-left: 40px; }
      .pankuzu_wrap ul li a {
        text-decoration: underline !important; }
        .pankuzu_wrap ul li a:hover {
          text-decoration: none !important; }
    .pankuzu_wrap ul li:before {
      content: "";
      position: absolute;
      display: inline-block;
      left: 10px;
      top: 7px;
      width: 20px;
      height: 1px;
      background-color: #000; }
    .pankuzu_wrap ul li:first-child:before {
      display: none; }

/* header */
/* common */
.article_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding: 0 0 100px; }

.section_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative; }

.content_wrap {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px 0;
  box-sizing: border-box; }

.content_wrap_l {
  position: relative;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px 0;
  box-sizing: border-box; }

.content_wrap_s {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 0;
  box-sizing: border-box; }

.h2_d_sub {
  position: relative;
  text-align: left;
  color: #000;
  font-family: "Barlow", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1px;
  margin-bottom: 40px; }
  .h2_d_sub span {
    display: block;
    color: #96989a;
    font-family: "游ゴシック", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    font-size: 1.6rem;
    line-height: 100%;
    letter-spacing: -1px;
    padding-left: 15px;
    margin-bottom: 5px; }
    .h2_d_sub span:before {
      content: "";
      position: absolute;
      display: inline-block;
      left: 0px;
      top: 5px;
      width: 6px;
      height: 6px;
      background-color: #96989a;
      border-radius: 50%; }

.h2_text {
  position: relative;
  text-align: left;
  color: #000;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 140%;
  margin-top: 60px;
  margin-bottom: 40px;
  padding-bottom: 40px; }

.h3_text {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 120%;
  padding-left: 39px;
  margin-bottom: 20px;
  margin-top: 40px; }

a.btn_arrow {
  position: relative;
  color: #000;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0px;
  padding: 23px 103px 23px 0;
  box-sizing: border-box; }
  a.btn_arrow:before {
    content: "";
    position: absolute;
    display: block;
    right: 30px;
    top: 35%;
    width: 54px;
    height: 10px;
    background: url(/themes/kagawa_mmdsai/assets/images/c_a.svg) repeat-x right bottom;
    transition: all 0.22s ease-in 0s; }
  a.btn_arrow:after {
    content: "";
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: url(/themes/kagawa_mmdsai/assets/images/c.svg) repeat-x left bottom;
    transition: all 0.22s ease-in 0s; }
  a.btn_arrow:hover {
    color: #232584; }
    a.btn_arrow:hover:before {
      width: 64px;
      right: 20px;
      background: url(/themes/kagawa_mmdsai/assets/images/c_a_blue.svg) repeat-x right bottom; }
    a.btn_arrow:hover:after {
      right: -8px;
      transform: scale(0.8, 0.8) rotate(-180deg);
      background: url(/themes/kagawa_mmdsai/assets/images/c_blue.svg) repeat-x left bottom; }

_::-webkit-full-page-media, _:future, :root a.btn_arrow:hover:after {
  transform: scale(0.8, 0.8) rotate(0deg); }

table.table01 {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px; }
  table.table01 th, table.table01 td {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 140%;
    letter-spacing: 0.5px;
    vertical-align: top; }
  table.table01 th {
    position: relative;
    text-align: left;
    padding: 16px 30px;
    border-bottom: 1px solid #2e6cff;
    box-sizing: border-box; }
  table.table01 td {
    padding: 16px 30px;
    border-bottom: 1px solid #2e6cff;
    box-sizing: border-box; }

table.sp-col th {
  white-space: nowrap; }

ul.disc {
  margin-bottom: 30px;
  margin-left: 20px;
  position: relative; }
  ul.disc li {
    position: relative;
    margin-bottom: 10px;
    line-height: 150%; }
  ul.disc li:before {
    content: "?";
    color: #232584;
    left: -15px;
    top: 0;
    width: 0;
    position: absolute;
    display: inline-block; }

ol.decimal {
  margin-bottom: 30px;
  margin-left: 30px;
  list-style-type: decimal;
  position: relative; }
  ol.decimal li {
    margin-bottom: 10px;
    line-height: 150%; }

.img_hover {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  max-width: 100%; }

.img_hover img {
  height: auto;
  transition: transform 1.0s ease; }

.img_hover:hover img {
  transform: scale(1.05, 1.05); }

/* common */
/* main */
.main_wrap {
  position: relative;
  width: 1240px;
  height: 885px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box; }
  .main_wrap .text_box {
    position: absolute;
    z-index: 2;
    top: 292px; }
    .main_wrap .text_box h1 {
      font-size: 5.0rem;
      line-height: 138%;
      letter-spacing: 1px;
      margin-bottom: 25px; }
      .main_wrap .text_box h1 i {
        font-style: normal;
        letter-spacing: 5px; }
      .main_wrap .text_box h1 span {
        display: block;
        color: #6c6b6b;
        font-family: "Barlow", sans-serif;
        font-size: 1.35rem;
        font-weight: 600;
        line-height: 130%;
        padding-bottom: 17px; }
    .main_wrap .text_box p {
      font-size: 1.6rem;
      line-height: 220%;
      margin-bottom: 54px; }

.main_bg_wrap {
  position: fixed;
  width: 1240px;
  height: 885px;
  margin: 0 auto;
  box-sizing: border-box;
  z-index: -1; }
  .main_bg_wrap > div {
    position: absolute;
    display: block;
    box-sizing: border-box;
    visibility: hidden;
    z-index: -1; }
  .main_bg_wrap .c01 {
    top: -218px;
    left: 21.2vw;
    width: 418px;
    height: 418px;
    border-radius: 50%;
    background-color: #ffa1ef; }
  .main_bg_wrap .c02 {
    top: 137px;
    left: 50.7vw;
    width: 273px;
    height: 273px;
    border-radius: 50%;
    border: 1px solid #000; }
  .main_bg_wrap .c03 {
    top: 375px;
    left: 50.4vw;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background-color: #eeeef6; }
  .main_bg_wrap .c04 {
    top: 450px;
    left: 63.5vw;
    width: 445px;
    height: 445px;
    border-radius: 50%;
    background: url(/themes/kagawa_mmdsai/assets/images/bg_dotto.png);
    background-repeat: repeat;
    background-position: left top; }
  .main_bg_wrap .s01 {
    top: 80px;
    left: 47.17vw;
    width: 386px;
    height: 386px;
    border: 1px solid #000; }
  .main_bg_wrap .s02 {
    top: 655px;
    left: 34vw;
    width: 232px;
    height: 232px;
    background-color: #ccccf2;
    background-color: rgba(204, 204, 242, 0.4);
    -webkit-transform: rotate(45deg);
    -moz-transform: 45deg 45deg;
    transform: rotate(45deg); }
  .main_bg_wrap .s03 {
    top: 255px;
    left: 59.6vw;
    width: 207px;
    height: 435px;
    background-color: #dfff3a;
    transform: skewX(-27deg); }
  .main_bg_wrap .s04 {
    top: 62px;
    left: 75.2vw;
    width: 229px;
    height: 276px;
    border-radius: 100px 0 0 0;
    background-color: #2e6cff; }
  .main_bg_wrap .s05 {
    top: -90px;
    left: -19.3vw;
    width: 211px;
    height: 345px;
    background: url(/themes/kagawa_mmdsai/assets/images/bg_dotto.png);
    background-repeat: repeat;
    background-position: left top; }
  .main_bg_wrap .l01 {
    top: 220px;
    left: 50.35vw;
    width: 1px;
    height: 388px;
    background-color: #000;
    -webkit-transform: rotate(45deg);
    -moz-transform: 45deg 45deg;
    transform: rotate(45deg); }
  .main_bg_wrap .l02 {
    top: 22px;
    left: 61.0vw;
    width: 313px;
    height: 814px;
    border-top: 1px solid #000;
    border-right: 1px solid #000; }
  .main_bg_wrap .b01 {
    top: 590px;
    left: 46.85vw;
    width: 382px;
    height: 188px;
    background: url(/themes/kagawa_mmdsai/assets/images/main_pic01.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto; }
  .main_bg_wrap .b02 {
    top: 48px;
    left: 20.5vw;
    width: 287px;
    height: 305px;
    background: url(/themes/kagawa_mmdsai/assets/images/main_pic02.png);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% auto; }

.main_bg_blur {
  position: absolute;
  z-index: 1;
  display: block;
  width: 200vw;
  height: 200%;
  top: -20px;
  left: -50%;
  -ms-filter: blur(8px);
  -webkit-filter: blur(8px);
  filter: blur(8px);
  backdrop-filter: brightness(1.01) blur(1px);
  -webkit-backdrop-filter: brightness(1.01) blur(1px); }

/* main */
/* top */
.top_news {
  position: relative;
  z-index: 3;
  margin-bottom: 88px; }
  .top_news .content_wrap {
    z-index: 2; }
  .top_news:before {
    content: '';
    background: inherit;
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px);
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1; }
  .top_news .title_wrap {
    position: relative; }
    .top_news .title_wrap .btn {
      position: absolute;
      right: 0;
      top: 32px; }

ul.news_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap; }
  ul.news_list li {
    width: 29.2%; }
    ul.news_list li .img {
      position: relative;
      cursor: pointer;
      overflow: hidden;
      width: 100%;
      max-width: 100%;
      height: 230px;
      margin-bottom: 18px; }
      ul.news_list li .img img {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        max-width: 100%;
        height: auto;
        transition: transform 0.8s ease; }
    ul.news_list li .date_wrap {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      margin-bottom: 10px;
      font-size: 1.4rem;
      font-weight: 500; }
      ul.news_list li .date_wrap .category {
        font-weight: 700;
        font-size: 1.35rem;
        letter-spacing: -1px; }
    ul.news_list li p {
      text-decoration: none !important;
      font-weight: 700;
      font-size: 1.6rem;
      line-height: 180%; }
    ul.news_list li a:hover {
      color: #232584; }
      ul.news_list li a:hover .img img {
        transform: scale(1.05, 1.05); }
  ul.news_list:after {
    content: "";
    display: block;
    width: 29.2%; }

.top_program {
  position: relative;
  z-index: 3;
  padding: 60px 0 73px;
  background-color: #f4f4f9; }
  .top_program .img_wrap {
    position: absolute;
    top: -120px;
    left: 622px; }
  .top_program .left_wrap {
    width: 540px;
    padding-right: 40px;
    box-sizing: border-box; }
    .top_program .left_wrap h2 {
      margin-bottom: 20px; }
  .top_program ul.list li {
    border-bottom: 1px solid #e5e5e5; }
    .top_program ul.list li a {
      display: block;
      font-size: 1.6rem;
      letter-spacing: 0;
      box-sizing: border-box;
      padding: 40px 0; }
      .top_program ul.list li a:before {
        top: 38px; }
      .top_program ul.list li a:after {
        top: 16px; }
  .top_program .join_wrap {
    max-width: 900px;
    margin: -80px auto 0; }
    .top_program .join_wrap h2 {
      left: 30%;
      margin-bottom: 30px; }
    .top_program .join_wrap p {
      font-size: 1.6rem;
      line-height: 220%;
      margin-bottom: 55px; }
    .top_program .join_wrap .btn_list {
      display: flex;
      justify-content: center;
      flex-wrap: nowrap;
      padding-bottom: 20px; }
      .top_program .join_wrap .btn_list li {
        margin: 0 15px; }
  .top_program._lower {
    background-color: transparent; }
    .top_program._lower h2::before {
      content: none; }
    .top_program._lower h2 span {
      position: relative; }
    .top_program._lower ul li::before {
      content: none; }
    .top_program._lower .join_wrap .btn_list {
      padding-bottom: 30px; }

/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-100%); } }

.text_scroll {
  position: relative;
  text-align: center;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 50px 0 0; }
  .text_scroll .text {
    display: inline-block;
    color: #fff;
    padding-left: 100%;
    white-space: nowrap;
    animation: animate-banner 30s linear infinite; }
    .text_scroll .text p {
      font-size: 15.0rem;
      font-weight: 500;
      font-family: "Barlow", sans-serif;
      line-height: 100%; }
    .text_scroll .text > * {
      display: inline-block; }

ul.university_logo_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 60px; }
  ul.university_logo_list li {
    margin: 0 30px 25px 0 !important; }
    ul.university_logo_list li a:hover {
      opacity: 0.7;
      -moz-opacity: 0.7;
      filter: alpha(opacity=70); }

/* top */
/* content */
.cnt_main_wrap {
  position: relative;
  display: block;
  width: 1240px;
  height: 230px;
  padding: 0 10px;
  margin: 0 auto;
  box-sizing: border-box; }
  .cnt_main_wrap .text_box {
    position: absolute;
    z-index: 2;
    top: 32%; }
    .cnt_main_wrap .text_box h1 {
      font-size: 4.0rem;
      line-height: 138%;
      letter-spacing: 2px;
      margin-bottom: 25px; }
  .cnt_main_wrap .main_bg_wrap {
    position: fixed;
    width: 1240px;
    height: 412px;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: -1; }
    .cnt_main_wrap .main_bg_wrap > div {
      position: absolute;
      display: block;
      box-sizing: border-box;
      visibility: hidden; }
    .cnt_main_wrap .main_bg_wrap .c01 {
      top: -217px;
      left: 21.8vw;
      width: 418px;
      height: 418px;
      border-radius: 50%;
      background-color: #ffa1ef; }
    .cnt_main_wrap .main_bg_wrap .c03 {
      top: 165px;
      left: -4.4vw;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background-color: #eeeef6; }
    .cnt_main_wrap .main_bg_wrap .s03 {
      top: 95px;
      left: 60.2vw;
      width: 207px;
      height: 435px;
      background-color: #dfff3a;
      transform: skewX(-27deg); }
    .cnt_main_wrap .main_bg_wrap .s04 {
      top: -180px;
      left: 75.8vw;
      width: 229px;
      height: 276px;
      border-radius: 100px 0 0 100px;
      background-color: #2e6cff; }
    .cnt_main_wrap .main_bg_wrap .s05 {
      top: -90px;
      left: -18.6vw;
      width: 211px;
      height: 345px;
      background: url(/themes/kagawa_mmdsai/assets/images/bg_dotto.png);
      background-repeat: repeat;
      background-position: left top; }
    .cnt_main_wrap .main_bg_wrap .b02 {
      top: 50px;
      left: 31.5vw;
      width: 287px;
      height: 305px;
      background: url(/themes/kagawa_mmdsai/assets/images/main_pic02.png);
      background-repeat: no-repeat;
      background-position: left top;
      background-size: 100% auto; }

.content_wrap_cnt {
  position: relative;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px 0 320px;
  margin: 0px auto 70px;
  box-sizing: border-box; }
  .content_wrap_cnt *:first-child {
    margin-top: 0; }
  @media all and (max-width: 1000px) {
    .content_wrap_cnt {
      padding-left: 100px; } }

.cnt_wrap {
  padding: 75px 0 20px;
  background-color: #fff; }
  .cnt_wrap > .content_wrap_cnt h2:first-child {
    margin-top: 0; }
  .cnt_wrap img {
    /*width: 100%;*/
    max-width: 100%;
    height: auto; }
  .cnt_wrap .wt100p_wrap {
    position: relative;
    width: calc(100vw - 60px);
    max-width: 1200px;
    left: -300px; }
    @media all and (max-width: 1000px) {
      .cnt_wrap .wt100p_wrap {
        left: -80px; } }
  .cnt_wrap h2 {
    position: relative;
    width: 132%;
    max-width: 1180px;
    left: -300px;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 145%;
    padding-left: 36px;
    margin: 70px 0 20px; }
    @media all and (max-width: 1000px) {
      .cnt_wrap h2 {
        left: -80px;
        width: 105%; } }
    .cnt_wrap h2:before {
      position: absolute;
      content: "";
      display: block;
      left: 0;
      top: 14px;
      width: 18px;
      height: 18px;
      border: 5px solid #ffd700;
      border-radius: 50%;
      box-sizing: border-box; }
  .cnt_wrap h3 {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 160%;
    margin: 70px 0 25px; }
  .cnt_wrap h4 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 160%;
    margin: 70px 0 25px; }
  .cnt_wrap mark {
    background: linear-gradient(rgba(255, 215, 0, 0) 60%, gold 70%, gold 80%, rgba(255, 215, 0, 0) 80%, rgba(255, 215, 0, 0)); }
  .cnt_wrap figure {
    margin: 0 0 30px; }
  .cnt_wrap table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px; }
    .cnt_wrap table thead th {
      background-color: #eee;
      text-align: center;
      vertical-align: middle;
      font-size: 400;
      line-height: 180%;
      padding: 14px 10px 13px;
      box-sizing: border-box;
      word-break: break-all;
      white-space: nowrap; }
    .cnt_wrap table tbody th, .cnt_wrap table tbody td {
      vertical-align: top;
      text-align: left;
      line-height: 180%;
      border-bottom: 1px solid #eee;
      padding: 23px 20px 23px 20px;
      box-sizing: border-box; }
      .cnt_wrap table tbody th a, .cnt_wrap table tbody td a {
        color: #232584 !important;
        text-decoration: underline !important; }
        .cnt_wrap table tbody th a:hover, .cnt_wrap table tbody td a:hover {
          color: #2e6cff !important;
          text-decoration: none !important; }
    .cnt_wrap table tbody th {
      font-weight: 700; }
  .cnt_wrap ul {
    position: relative;
    margin: 0 0 30px 30px; }
    .cnt_wrap ul li {
      position: relative;
      margin-bottom: 5px;
      line-height: 160%; }
      .cnt_wrap ul li a {
        color: #232584 !important;
        text-decoration: underline !important; }
        .cnt_wrap ul li a:hover {
          color: #2e6cff !important;
          text-decoration: none !important; }
      .cnt_wrap ul li:before {
        content: "";
        position: absolute;
        display: inline-block;
        left: -24px;
        top: 8px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #232584; }
  .cnt_wrap ol {
    position: relative;
    counter-reset: my-counter;
    ??list-style: none;
    margin: 0 0 30px 30px; }
    .cnt_wrap ol li {
      position: relative;
      margin-bottom: 5px;
      line-height: 160%; }
      .cnt_wrap ol li a {
        color: #232584 !important;
        text-decoration: underline !important; }
        .cnt_wrap ol li a:hover {
          color: #2e6cff !important;
          text-decoration: none !important; }
      .cnt_wrap ol li:before {
        position: absolute;
        content: counter(my-counter);
        counter-increment: my-counter;
        display: flex;
        justify-content: center;
        align-items: center;
        top: 3px;
        left: -30px;
        height: 20px;
        width: 20px;
        color: #fff;
        font-family: "Barlow", sans-serif;
        font-size: 1.4rem;
        line-height: 100%;
        background-color: #232584;
        border-radius: 50%;
        box-sizing: border-box; }
  .cnt_wrap blockquote {
    position: relative;
    padding: 0 90px 0 0;
    box-sizing: border-box;
    background: url(/themes/kagawa_mmdsai/assets/images/blockquote_bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 45px auto;
    margin: 0 0 30px; }
    .cnt_wrap blockquote p {
      color: #032473; }
  .cnt_wrap cite {
    position: absolute;
    display: inline-block;
    bottom: -10px;
    right: 0;
    color: #7e93c4;
    text-align: right;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 120%; }
    .cnt_wrap cite:before {
      position: relative;
      content: "";
      display: block;
      left: -40px;
      top: 7px;
      width: 30px;
      height: 1px;
      background-color: #ccc; }

.cnt_detail {
  padding-left: 25%;
  margin: 20px 0 70px;
  box-sizing: border-box; }
  .cnt_detail *:first-child {
    margin-top: 0; }
  @media all and (max-width: 1000px) {
    .cnt_detail {
      padding-left: 12%; } }

ul.link_list {
  padding-top: 5px;
  margin: 0 0 25px; }
  ul.link_list li {
    margin-bottom: 5px; }
    ul.link_list li:before {
      display: none; }
    ul.link_list li a {
      position: relative;
      display: inline-block;
      padding-left: 48px;
      line-height: 140%;
      color: #232584;
      text-decoration: underline !important; }
      ul.link_list li a:before {
        content: "";
        position: absolute;
        display: block;
        left: 0px;
        top: 7px;
        width: 30px;
        height: 9px;
        background: url(/themes/kagawa_mmdsai/assets/images/c_a.svg) repeat-x right bottom;
        transition: all 0.12s ease-in 0s; }
      ul.link_list li a:hover {
        text-decoration: none !important; }
        ul.link_list li a:hover:before {
          width: 35px; }

ul.link_bottom_list {
  width: 100%;
  margin: 0 0 40px;
  padding: 0; }
  ul.link_bottom_list li {
    margin: 0; }
    ul.link_bottom_list li:before {
      display: none; }
    ul.link_bottom_list li a {
      position: relative;
      width: 100%;
      display: block;
      background-color: #f2f2f2;
      text-decoration: none !important;
      color: #000 !important;
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 140%;
      padding: 25px 70px 25px 30px;
      box-sizing: border-box; }
      ul.link_bottom_list li a.s {
        background-color: #fff;
        font-size: 1.6rem;
        font-weight: 400; }
      ul.link_bottom_list li a:before {
        content: "";
        position: absolute;
        display: block;
        right: 30px;
        top: 42%;
        width: 50px;
        height: 9px;
        background: url(/themes/kagawa_mmdsai/assets/images/c_a.svg) repeat-x right bottom;
        transition: all 0.12s ease-in 0s; }
      ul.link_bottom_list li a:hover {
        color: #232584 !important; }
        ul.link_bottom_list li a:hover:before {
          right: 22px; }

.teacher_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px; }
  .teacher_list > div {
    width: 50%;
    margin-bottom: 30px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    padding-right: 20px;
    box-sizing: border-box; }
    .teacher_list > div img {
      width: 150px;
      max-width: 100%;
      height: auto;
      border-radius: 100%; }
    .teacher_list > div p {
      padding-left: 20px;
      margin: 0;
      box-sizing: border-box;
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 140%; }
      .teacher_list > div p span {
        display: block;
        font-size: 1.35rem;
        font-weight: 400; }

.faq_list {
  border-top: 1px solid #e3e5f2;
  border-bottom: 1px solid #e3e5f2;
  padding: 30px 0;
  line-height: 1.8; }
  .faq_list dt {
    font-weight: bold;
    margin-bottom: 20px; }
  .faq_list dd {
    background-color: rgba(241, 242, 249, 0.6);
    padding: 30px;
    font-size: 90%; }

/* card list */
.cnt_wrap .card_list {
  display: flex;
  gap: 80px;
  margin-bottom: 30px; }
  .cnt_wrap .card_list-item {
    width: 100%;
    display: flex; }
  .cnt_wrap .card_list-link {
    display: flex;
    flex-direction: column-reverse; }
    .cnt_wrap .card_list-link:hover {
      color: #2e6cff; }
      .cnt_wrap .card_list-link:hover img {
        transform: scale(1.05, 1.05); }
  .cnt_wrap .card_list-img {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 5 / 2.8; }
    .cnt_wrap .card_list-img img {
      transition: 0.3s; }
  .cnt_wrap .card_list-title {
    left: auto;
    padding-top: 1rem;
    padding-left: 0;
    width: 100%;
    text-align: center;
    font-size: 2rem; }
    .cnt_wrap .card_list-title::before {
      content: none; }

/* footer */
footer {
  position: relative;
  z-index: 3;
  width: 100%; }
  footer .footer_top {
    background-color: #282828;
    padding: 56px 0 52px; }
    @media all and (max-width: 900px) {
      footer .footer_top {
        padding: 36px 0 32px; } }
    footer .footer_top .content_wrap_l {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      align-items: center; }
    footer .footer_top .logo img {
      transition: all 0.12s ease-in 0s; }
    @media all and (max-width: 1000px) {
      footer .footer_top .logo img {
        width: 190px;
        height: auto; } }
    footer .footer_top .link {
      transition: all 0.12s ease-in 0s; }
      @media all and (max-width: 900px) {
        footer .footer_top .link {
          width: 50%; } }
      footer .footer_top .link ul {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap; }
        footer .footer_top .link ul li {
          margin-top: 10px;
          margin-bottom: 10px; }
          footer .footer_top .link ul li a {
            color: #fff;
            font-size: 1.4rem;
            letter-spacing: -1px;
            margin-left: 30px; }
            footer .footer_top .link ul li a:hover {
              text-decoration: underline !important; }
  footer .footer_bottom {
    background-color: #fff;
    padding: 30px 0 28px; }
    footer .footer_bottom .content_wrap_l {
      display: flex;
      justify-content: space-between;
      flex-wrap: nowrap;
      align-items: center; }
    footer .footer_bottom .copy {
      font-size: 1.18rem;
      font-weight: 500;
      font-family: "Barlow", sans-serif;
      letter-spacing: 0.5px; }
