<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* header/nav */
.mA_header {
  position: relative;
  margin: 0 30px;
}
.mA_header_img img { width: 100%; }
.mA_header_heading {
  position: absolute;
  padding: 6px 8px 6px 12px;
  width: 100%;
  background: rgba(255,255,255,.8);
  bottom: 0;
  left: 0;
  line-height: 1.4;
}
.mA_header_heading--ttl {}
.mA_header_heading--date {
  display: block;
  float: right;
  margin-top: 12px;
  font-size: 12px;
}

.mA_nav &gt; ul {
  clear: both;
  display: flex;
  margin-top: 10px;
}
.mA_nav &gt; ul &gt; li {
  border-left: 1px solid #333;
  border-right: 1px solid #333;
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mA_nav &gt; ul &gt; li+li {
  margin-left: -1px;
  width: calc(25% + 1px);
}
.mA_nav &gt; ul &gt; li &gt; a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% - 4px);
  height: 100%;
  padding: 10px .5em;
  text-align: center;
  color: #333;
  transition: .1s;
}
.mA_nav &gt; ul &gt; li &gt; a:hover {
  color: #fff;
  background: #00aaa7;
  transition: .2s;
}

.mA_leading,
.mS_cancel {
  margin: 42px 0;
  line-height: 1.4;
}
.mA_leading--mb1,
.mS_cancel--mb1 {
  margin-bottom: 21px;
}
.mA_leading-link,
.mS_cancel-link {
  text-align: right;
  color: #052674;
}
.mA_leading-link a,
.mS_cancel-link a {
  color: #052674;
}
.mA_leading-link a:hover,
.mS_cancel-link a:hover {
  color: #005580;
  text-decoration: underline;
}

/*メインコンテンツ*/
.mainSection {
  margin-bottom: 50px;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.mainSection &gt; h3 {
  margin-bottom: 1.5em;
  padding: .25em 1em;
  background: #00aaa7;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}
.mainSection &gt; p {}

/* 7つの感染防止対策 */
.mS_seven {
  /*margin-bottom: 22px;*/
}
.mS_sevenList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 14px;
  counter-reset: svn_count;
}
.mS_sevenList &gt; li {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 28px;
  width: 47.5%;
}
.mS_sevenList &gt; li &gt; p:first-child {
  counter-increment: svn_count;
  padding-bottom: 1em;
}
.mS_sevenList &gt; li &gt; p:first-child::before {
  content: counter(svn_count) ". ";
}
.mS_sevenList &gt; li &gt; p &gt; img {
  width: 100%;
}
.mS_seven_sticker {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 16px;
  border: 3px solid #00aaa7;
}

.mS__sticker_txt {
  width:calc(100% - 353px);
}
.mS__sticker_txt &gt; *:last-child { margin-bottom: 0; }

.mS__sticker_innerTxt { margin-bottom: 20px; }

.mS__sticker_img {width:333px;}
@media screen and (max-width: 599px) {
  .mS__sticker_txt {
    margin-bottom: 12px;
    width:100%;
  }
}

/* 受講者様へのお願い */
.mS_askList {
  margin-top: 1.5em;
}
.mS_askList &gt; li {
  display: block;
  position: relative;
  margin-left: 1.5em;
}
.mS_askList &gt; li::before {
  content: "●";
  display: block;
  position: absolute;
  top: 0;
  left: -1.5em;
  color: #00aaa7;
}


/* キャンセルについて（基本は、.mA_leadingと同じ） */
.mS_cancel_notice {
  display: block;
}

/* よくあるご質問 */
.mS_faq-Toggle {
  margin-bottom: 4px;
}
.mS_faq-Toggle &gt; dt {
  margin-top: 4px;
}
.mS_faq-Toggle &gt; dt,
.mS_faq-Toggle &gt; dd {
  position: relative;
  padding-left: 2em;
}
/*.faq-Q {
  padding-left: -2em;
  color: #11248F;
}
.faq-A {
  padding-left: -2em;
  color: #A70002;
}*/
.mS_faq-Toggle &gt; dt:hover {
  cursor: pointer;
}
.mS_faq-Toggle &gt; dt::before,
.mS_faq-Toggle &gt; dd::before {
  position: absolute;
  display: block;
  width: 2em;
  overflow: hidden;
  top: 0;
  left: 0;
  background: #fff;
}
.mS_faq-Toggle &gt; dt::before {
  content: "Ｑ．";
  color: #11248F;
}
.mS_faq-Toggle &gt; dd::before {
  content: "Ａ．";
  color: #A70002;
}
.mS_faq-answerComment {
  display: block;
  font-size: 12px;
}


.mS_faqAside {
  margin-top: 20px;
}
.mS_faqAside-Link {
  text-align: right;
}
.mS_faqAside-Link+.mS_faqAside-Link {
  margin-top: 6px;
}
.mS_faqAside-Link &gt; a {
  display: inline-block;
  padding: 4px;
  width: 100%;
  max-width: 26em;
  background: #475189;
  border: 2px solid #475189;
  color: #fff;
  text-align: center;
  transition: .3s
}
.mS_faqAside-Link &gt; a:hover {
  background: #fff;
  color: #475189;
  transition: .5s;
}
.mS_faqAside-Link &gt; a &gt; span {
  display: inline-block;
  padding: 0 .5em;
}

.mA_last {
  margin-top: 60px;
}
.mA_lastInquiry {
  margin-top: 16px;
  padding-left: 1em;
}
.mA_lastInquiry &gt; p &gt; span {
  display: inline-block;
  padding-left: .5em;
}
.mA_lastInquiry &gt; p+p {
  margin-top: 3px;
}

@media screen and (min-width:768px){
  /*.u_PCmt4 { margin-top: 4px; }
  .u_PCmt8 { margin-top: 8px; }
  .u_PCmt16 { margin-top: 16px; }*/
}

@media screen and (max-width:768px){
  .mA_header {
    margin-top:30px;
    /*margin: 15px 0 0;*/
  }
  .mA_header_heading {
    position: static;
    background: none;
    /*padding: 0 30px;*/
  }
  .mA_header_heading--date {
    margin-top: 8px;
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 600px){
  .spOnly { display: none; }
}


@media screen and (max-width: 599px){
  /*
  .mA_nav &gt; ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mA_nav &gt; ul &gt; li {
    position: relative;
    margin-bottom: 6px;
    width: 50%;
  }
  .mA_nav &gt; ul &gt; li+li {
    margin-left: 0;
    width: 50%;
  }
  .mA_nav &gt; ul &gt; li:nth-child(odd) {
    border-right: none;
    width: calc(50% - 1px);
  }
  .mA_nav &gt; ul &gt; li &gt; a {
    padding: 5px;
  }
  /*.mA_nav &gt; ul &gt; li:nth-child(n+3):before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    border-top: 1px dashed #333;
  }*/
  
  .mS_sevenList {
    justify-content: space-around;
  }
  .mS_sevenList &gt; li {
    margin-bottom: 28px;
    width: 100%;
    max-width: 375px;
  }
  
  .mA_lastInquiry &gt; p &gt; span {
    display: block;
    padding-left: 3em;
  }
}



/**********
utility
**********/
.u_inBlk { display: inline-block; }



nav+header {
  margin-top: 80px;
}

@media screen and (max-width: 599px){
  .mA_nav--2x2 &gt; ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .mA_nav--2x2 &gt; ul &gt; li {
    position: relative;
    margin-bottom: 6px;
    width: 50%;
  }
  .mA_nav--2x2 &gt; ul &gt; li+li {
    margin-left: 0;
    width: 50%;
  }
  .mA_nav--2x2 &gt; ul &gt; li:nth-child(odd) {
    border-right: none;
    width: calc(50% - 1px);
  }
  .mA_nav--2x2 &gt; ul &gt; li &gt; a {
    padding: 5px;
  }
  .mA_nav--2x2--solidBdr &gt; ul &gt; li:nth-child(n+3):before {
    content: "";
    position: absolute;
    top: -3px;
    left: 2px;
    display: block;
    width: calc(100% - 4px);
    height: 1px;
    border-top: 1px solid #333;
  }
  .mA_nav--2x2--solidBdr4 &gt; ul &gt; li::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 2px;
    display: block;
    width: calc(100% - 4px);
    height: 1px;
    border-top: 1px solid #333;
  }
  .mA_nav--2x2--solidBdr4 &gt; ul &gt; li:last-child:after,
  .mA_nav--2x2--solidBdr4 &gt; ul &gt; li:nth-last-child(2):after{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 2px;
    display: block;
    width: calc(100% - 4px);
    height: 1px;
    border-top: 1px solid #333;
  }
  
  .mA_nav--2x2--color &gt; ul &gt; li {
    border-color: #fff;
    margin-bottom: 2px;
    background: #00aaa7;
  }
  .mA_nav--2x2--color &gt; ul &gt; li &gt; a {
    color: #fff;
  }
  
}</pre></body></html>