<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*-- 
==========================
COMMUDE PH - 2020 
==========================
--*/


/*-- PULL DOWN --*/
.pullDown__field {
  width: 100%;
  margin-bottom: 30px;
}

.pullDown {
  position: inherit;
  width: 100%;
  max-width: 800px;
  margin: auto;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.25);
}

.pullDown__head {
  width: 100%;
  text-align: center;
  background-color: #28B4B4;
  padding: 8px 15px;
  box-sizing: border-box;
  cursor: pointer;
}

.pullDown__headTextArea {
  font-size: 20px;
  color: #fff;
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

.pullDown__headText {
  font-size: 16px;
  color: #fff;
  box-sizing: border-box;
  padding-right: 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.pullDown__headText::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 10px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.pullDown.open .pullDown__headText::before {
  border-bottom: 0;
  border-right: 0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  top: 7px;
  bottom: 0;
}

.pullDown__body {
  display: none;
  background-color: #fff;
}

.pullDown__bodyContent {
  padding: 50px;
  box-sizing: border-box;
}


.counter {
  width: 100%;
  text-align: center;
}

.counter__text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  height: 40px;
  width: 40px;
  color: #fff;
  font-size: 25px;
  background-color: #28B4B4;
}



/*-- FLEX FIELD --*/

.flexField {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.ff_arrow {
  position: relative;
  right: -5px;
  height: 0;
  width: 0;
  margin: 100px auto 0;
  border: 40px solid transparent;
  border-left: 40px solid #F7B8C8;
  border-right: none;
}


/*-- IMAGE WRAPPER --*/
.imgWrap {
  width: 100%;
}

.imgWrap img {
  width: 100%;
  height: auto;
  margin-bottom: 5px;
}

.imgWrap.thumbnail {
  text-align: center;
}

.imgWrap.thumbnail img {
  border: 1px solid #000;
  box-sizing: border-box;
}

.thumbnail__text {
  margin: 0;
  font-size: 14px;
}

/*-- Specific images --*/
.s_img_01,
.s_img_02,
.s_img_03,
.s_img_05,
.s_img_06 {
  height: 29px;
  width: auto;
}

.s_img_04 {
  max-width: 393.5px;
  display: block;
  margin: 50px auto;
}

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





/*-- UTILITIES --*/

/*-- margins --*/
.mt-50 {
  margin-top: 50px;
}

.mt-40 {
  margin-top: 40px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.m-auto {
  margin: auto;
}

/*--paddings --*/
.pt-0 {
  padding-top: 0;
}


/*-- widths --*/
.mx-90 {
  max-width: 90%;
}

.mx-80 {
  max-width: 80%;
}

.mx-70 {
  max-width: 70%;
}

.block-center {
  display: block;
  margin: auto;
}

/*-- Column widths --*/
.ff-col-100 {
  width: 100%;
}

.ff-col-45 {
  width: 45%;
}

.ff-col-40 {
  width: 40%;
}

.ff-col-20 {
  width: 20%;
}

.ff-col-10 {
  width: 10%;
}



/*-- SP VIEW --*/
@media screen and (max-width: 768px) {

  /*-- PULL DOWN --*/
  .pullDown__headTextArea {
    font-size: 15px;
    padding-right: 25px;
  }

  .pullDown__headText {
    font-size: 12px;
    padding-right: 15px;
    top: 1px;
  }

  .pullDown__headText::before {

    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    bottom: 7px;
    width: 8px;
    height: 8px;
  }

  .pullDown.open .pullDown__headText::before {
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    top: 5px;
  }

  .pullDown__bodyContent {
    padding: 30px;
  }

  /*-- FLEX FIELD --*/
  .ff_arrow {
    right: 0;
    margin: 20px auto;
    border: 30px solid transparent;
    border-top: 30px solid #F7B8C8;
    border-bottom: none;
  }

  .sp-col-100 {
    width: 100%;
  }

  .sp-block-center {
    display: block;
    margin: auto;
  }

  .sp-mx-full {
    max-width: 100%;
  }

  .sp-mb-40 {
    margin-bottom: 40px;
  }

  .spf-mb-40 {
    margin-bottom: 40px !important;
  }


  /*-- Specific images --*/
  .s_img_01,
  .s_img_02,
  .s_img_03,
  .s_img_05,
  .s_img_06 {
    height: 3.5vw;
    max-width: 100%;
  }

  .s_img_04 {
    margin: 30px auto;
  }


  #l-cnt_01_icon {
    bottom: -50px;
  }
}



/*-- 
==========================
COMMUDE PH - 2020 - 2021
==========================
--*/


.u-img--title {
  max-width: 480px;
  width: 40vw;
}

@media screen and (max-width: 768px) {
  .u-img--title {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .img-button {
    min-height: 63px;
  }
}

.c-table tbody tr th.table-th-plain {
  min-width: 120px;
  text-align: center;
}

.c-table tbody tr th.table-th-tdBlue {
  min-width: 120px;
  vertical-align: top;
}

.c-table tbody tr td.table-bgBlue,
.c-table tbody tr th.table-bgBlue {
  background: #D9EAF6;
  color: #0075c2;
}

#l-kv #l-kv__bg {
  margin-bottom: 10px;
}

/*-- 
==========================
PageContents
==========================
--*/
#l-cnt_01 {
  background: rgba(170, 220, 250, .5);
}

#l-cnt_03_02 {
}

/* #l-cnt_03_03 {
  padding-top: 25px;
} */

#l-cnt_03_03 .u-fs--small.u-mb--x2 {
  margin-top: 20px;
  margin-bottom: 0;
}

.u-text--kerning_text {
  position: relative;
}

.u-text--kerning_textLabel {
  position: absolute;
  left: 10px;
  top: 12px;
}

.u-text--kerning_textIndent {
  padding-left: 200px;
  display: block;
}

.c-row_remark .u-fs--small {
  font-size: 11px;
}

.u-lsN02 {
  letter-spacing: -0.02em;
}

.u-lsN04 {
  letter-spacing: -0.04em;
}

.u-ls2 {
  letter-spacing: 0.2em;
}

.u-w46 {
  flex: 0 1 46% !important;
}

.u-w54 {
  flex: 0 1 54% !important;
}

.u-pd0515 {
  padding: 5px 15px !important;
}

.u-displayBlock {
  text-align: center;
}

.u-displayCenter {
  display: inline-grid;
  text-align: left;
}

.u-displayCenter p {
  display: inline-block;
}

.pdfButton {
  margin: 4px auto 0;
  display: flex;
  justify-content: center;
  max-width: 140px;
  align-items: center;
  color: #000 !important;
  transition: all .2s linear;
}

.pdfButton-img {
  max-width: 16px;
  margin-left: 3px;
}

.pdfButton-txt {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  #l-cnt_03_02 {
    padding-top: 60px;
  }

  #l-cnt_03_03 {
    padding-top: 25px;
  }

  #l-cnt_03_03 .u-fs--small.u-mb--x2 {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .u-text--kerning_text {
    position: relative;
  }

  .u-text--kerning_textLabel {
    position: absolute;
    left: 10px;
    top: 12px;
  }

  .u-text--kerning_textIndent {
    padding-left: 0;
    padding-top: 1.5em;
  }

  .c-row_remark .u-fs--small {
    font-size: 10px;
  }

  .mx-100_sp {
    max-width: 100%;
  }
}




/**CUSTOM**/
.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {

  small {
    font-size: 10px;
  }

  sup {
    position: relative;
    top: -3px;
  }

  /**C TABLE**/

  .table-td-tdBlue2 {
    width: 28%;
  }


  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}
</pre></body></html>