html {
  font-size: 62.5%;
  /* sets the base font to 10px for easier math */
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  font-size: 14px;
  color: #000;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media (min-width: 769px) {
  body {
    font-size: 16px;
  }
}
@media (max-width: 350px) {
  body {
    font-size: 12px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* -------------------------------------
common
----------------------------------------*/
a {
  color: inherit;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.ib {
  display: inline-block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

strong,
.fontBold {
  font-weight: 600;
}

.mode_pc,
.mode_pc_ib {
  display: none;
}

@media (min-width: 768px) {
  .mode_pc {
    display: block;
  }
  .mode_pc_ib {
    display: inline-block;
  }
}
.mode_minpc {
  display: none !important;
}

.mode_tbsp {
  display: block;
}

.mode_sp {
  display: block;
}

.mode_sp350 {
  display: none;
}

.mode_sp_ib {
  display: inline-block;
}

@media (min-width: 768px) {
  .mode_sp,
  .mode_sp_ib {
    display: none;
  }
}
@media (max-width: 350px) {
  .mode_sp350 {
    display: block;
  }
}
.mover {
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  zoom: 1;
}
.mover:hover {
  opacity: 0.7;
}

.exLink {
  position: relative;
}
.exLink span {
  position: inherit;
  display: inline-block;
  padding-right: 16px;
  line-height: 1.4;
  font-weight: bold;
}
.exLink span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  background-image: url(/img/common/blank.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.exLink.exLink--white span:after {
  background-image: url(/img/common/blank_white.svg);
}

.coralRedText {
  color: #e85b6b;
}

.greenText {
  color: #4ca535;
}

.anchor {
  margin-top: -51px;
  padding-top: 51px;
}
@media (min-width: 768px) {
  .anchor {
    margin-top: -8%;
    padding-top: 8%;
  }
}
@media (min-width: 1200px) {
  .anchor {
    margin-top: -110px;
    padding-top: 110px;
  }
}

.ta-c {
  text-align: center;
}

/* -------------------------------------
inner
----------------------------------------*/
.inner {
  width: 95%;
  margin: auto;
}
@media (min-width: 768px) {
  .inner {
    max-width: 1240px;
  }
}

.inner02 {
  width: 89%;
  margin: auto;
}
@media (min-width: 768px) {
  .inner02 {
    max-width: 1180px;
  }
}

.inner03 {
  width: 95%;
  margin: auto;
}
@media (min-width: 768px) {
  .inner03 {
    max-width: 945px;
  }
}

/* -------------------------------------
box
----------------------------------------*/
.box {
  margin: auto;
  background-color: #fff;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .box {
    max-width: 1240px;
    border-radius: 60px;
  }
}

/* -------------------------------------
btn
----------------------------------------*/
.btn {
  text-align: center;
  margin: auto;
}
.btn a {
  display: inline-block;
  border: 1px solid #000;
  padding: 7px 24px 6px;
  border-radius: 20px;
  text-align: center;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn a p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.42;
}
.btn.btn--bk--gradation {
  margin: 0;
}
.btn.btn--bk--gradation a {
  border: none;
  color: #fff;
  padding: 3px 25px 3px;
  background: -webkit-gradient(linear, left top, right top, from(#46b2e7), to(#5EA785));
  background: linear-gradient(to right, #46b2e7, #5EA785);
}
@media (min-width: 768px) {
  .btn.btn--bk--gradation a p {
    font-size: 16px;
    line-height: 1.5;
  }
}

.btn--center {
  text-align: center;
}
.btn--center a {
  margin: auto;
}

.btnGradation {
  position: relative;
}
.btnGradation a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#46b2e7), to(#5EA785));
  background: linear-gradient(to right, #46b2e7, #5EA785);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btnGradation a p {
  position: relative;
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.66;
}
.btnGradation a p::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(/img/ace/common/arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btnGradation.btn--smallText a {
  padding: 16px 10px;
}
.btnGradation.btn--smallText a p {
  font-size: 12px;
}
@media (min-width: 768px) {
  .btnGradation a {
    width: auto;
    padding: 17px 10px;
  }
  .btnGradation a p {
    font-size: 16px;
    padding: 0 44px;
  }
  .btnGradation a p::after {
    width: 25px;
    height: 25px;
  }
  .btnGradation.btn--smallText a {
    padding: 13px 10px;
  }
  .btnGradation.btn--smallText a P {
    font-size: 16px;
    padding: 0 54px;
  }
}

.borderBtn a {
  position: relative;
  display: inline-block;
  padding: 18px 20px;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #4ca535;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.borderBtn a p {
  position: relative;
  display: inline-block;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.5;
}
.borderBtn a p:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/img/ace/common/arrow_right02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .borderBtn a {
    max-width: 403px;
    padding: 24px 27px;
  }
  .borderBtn a p {
    font-size: 20px;
  }
  .borderBtn a p:after {
    width: 30px;
    height: 30px;
  }
  .borderBtn.borderBtn--textLeft a {
    text-align: left;
    padding: 24px 28px;
  }
  .borderBtn.borderBtn--textLeft p {
    font-size: 16px;
  }
}
@media (min-width: 890px) {
  .borderBtn a {
    padding: 24px 19px;
  }
  .borderBtn.borderBtn--textLeft p {
    font-size: 20px;
  }
}

.pdfBtn a {
  display: inline-block;
  max-width: 540px;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background: #e85b6b;
  border: 5px solid #f6b0b0;
}
.pdfBtn a P {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  padding: 0 38px 0 54px;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pdfBtn a P::before, .pdfBtn a P::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.pdfBtn a P::before {
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url(/img/ace/common/icon_pdf.png);
  background-size: 24px 30px;
}
.pdfBtn a P::after {
  right: 0;
  width: 18px;
  height: 20px;
  background-image: url(/img/ace/common/arrow_right03.png);
}
@media (min-width: 768px) {
  .pdfBtn a P {
    font-size: 20px;
    padding: 0 38px 0 84px;
  }
  .pdfBtn a P::before {
    width: 54px;
    height: 54px;
    background-size: 34px 40px;
  }
}

/* -------------------------------------
header
----------------------------------------*/
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}
header .searchArea {
  padding-top: 10px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(229, 0, 17, 0.4)), color-stop(rgba(89, 169, 215, 0.6)), to(rgba(76, 165, 53, 0.5)));
  background: linear-gradient(90deg, rgba(229, 0, 17, 0.4), rgba(89, 169, 215, 0.6), rgba(76, 165, 53, 0.5));
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .searchArea form.gsc-search-box {
  display: none;
}
header .menuArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  padding: 6px 2.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .menuArea .leftArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 65%;
}
header .menuArea .leftArea .logo {
  min-width: 140px;
  width: 39%;
  margin-right: 5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header .menuArea .leftArea .aceLogo {
  min-width: 90px;
  width: 60%;
}
header .menuArea .leftArea .aceLogo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2%;
}
header .menuArea .leftArea .aceLogo img {
  width: 80%;
  max-width: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (min-width: 768px) {
  header .menuArea .leftArea .aceLogo img {
    width: 30%;
  }
}
@media (min-width: 1200px) {
  header .menuArea .leftArea .aceLogo img {
    width: 90px;
  }
}
@media (min-width: 1400px) {
  header .menuArea .leftArea .aceLogo img {
    width: 111px;
    max-width: none;
  }
}
header .menuArea .leftArea .aceLogo img.text {
  min-width: 100px;
  width: 70%;
}
@media (min-width: 768px) {
  header .menuArea .leftArea .aceLogo img.text {
    max-width: 200px;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  header .menuArea .leftArea .aceLogo img.text {
    width: 160px;
  }
}
@media (min-width: 1400px) {
  header .menuArea .leftArea .aceLogo img.text {
    width: 200px;
  }
}
header .menuArea .aceMenuBtn {
  position: relative;
  width: 20px;
  height: 12px;
}
header .menuArea .aceMenuBtn .menuBtnWrap {
  position: relative;
  width: 100%;
  height: 100%;
}
header .menuArea .aceMenuBtn .menuBtnWrap span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  border-top: 2px solid #4ca535;
  border-radius: 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
header .menuArea .aceMenuBtn .menuBtnWrap span:first-of-type {
  top: 0;
}
header .menuArea .aceMenuBtn .menuBtnWrap span:nth-of-type(2) {
  bottom: 0;
  top: 0;
  margin: auto;
}
header .menuArea .aceMenuBtn .menuBtnWrap span:last-of-type {
  bottom: 0;
}
header.open .aceMenuBtn .menuBtnWrap span:first-of-type {
  -webkit-transform: translateY(5px) rotate(-45deg);
          transform: translateY(5px) rotate(-45deg);
}
header.open .aceMenuBtn .menuBtnWrap span:nth-of-type(2) {
  opacity: 0;
}
header.open .aceMenuBtn .menuBtnWrap span:last-of-type {
  -webkit-transform: translateY(-5px) rotate(45deg);
          transform: translateY(-5px) rotate(45deg);
}
header nav {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  padding: 40px 0;
  background-color: #4ca535;
}
header nav .scrollArea {
  height: 75vh;
  max-height: 680px;
  overflow-y: scroll;
  overflow-x: hidden;
}
header nav ul {
  width: 89%;
  margin: auto;
}
header nav ul p,
header nav ul a {
  display: block;
  width: 100%;
  padding: 0 0 10px 10px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
}
header nav ul p {
  position: relative;
  margin-bottom: 10px;
  border-bottom: 1px solid #fff;
}
header nav ul p::before, header nav ul p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header nav ul p::before {
  -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;
}
header nav .headerNav {
  margin-bottom: 40px;
}
header nav .headerNav > ul > li:not(.accordionMenu) {
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
header nav .headerNav > ul > li:not(.accordionMenu):last-of-type {
  margin-bottom: 0;
}
header nav .headerNav > ul .accordionMenu {
  margin-bottom: 10px;
}
header nav .headerNav > ul .accordionMenu ul {
  display: none;
  margin-bottom: 16px;
  width: 94%;
  margin-left: 26px;
  margin-bottom: 16px;
}
header nav .headerNav > ul .accordionMenu ul a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
  padding-left: 0;
}
header nav .headerNav > ul .accordionMenu.open > p::before {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
header nav .headerNav > ul .accordionMenu.open > p::after {
  opacity: 0;
}
header nav .headerNav .menuBox li {
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}
header nav .searchBox {
  display: block;
}
header nav .searchBox form.gsc-search-box {
  margin: auto;
  width: 90%;
}
header .menuBoxArea {
  display: none;
}
header .gsc-input .gsc-input-box {
  border-radius: 0;
  border: 1px solid #dfe1e5;
}
header .gsib_a {
  padding: 5px 50px 5px 10px;
  background-image: url(/img/ace/common/icon_search.png);
  background-size: 16px;
  background-position: right 16px center;
}
header .gsib_b {
  display: none;
}
@media (min-width: 1200px) {
  header .menuArea {
    width: 100%;
    max-width: 431px;
    padding: 5px 0 6px 20px;
  }
  header .menuArea .leftArea {
    width: 100%;
  }
  header .menuArea .aceMenuBtn {
    display: none;
  }
  header nav {
    position: relative;
    height: auto;
    display: block;
    padding: 0;
    background: transparent;
    width: 65%;
    padding: 0 73px 0 0;
  }
  header nav .scrollArea {
    height: auto;
    max-height: 100%;
    overflow-y: inherit;
    overflow-x: inherit;
  }
  header nav .headerNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 0;
  }
  header nav .headerNav > ul > li:not(.accordionMenu) {
    border: none;
    margin-bottom: 0;
  }
  header nav .headerNav > ul .navItemSub {
    display: none;
  }
  header nav .headerNav > ul .accordionMenu {
    position: relative;
    margin-bottom: 0;
  }
  header nav .headerNav > ul .accordionMenu:hover ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: auto;
  }
  header nav .headerNav > ul .accordionMenu ul {
    display: inline-block;
    position: absolute;
    top: 60px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 20px;
    margin-bottom: 0;
    width: 320px;
    right: -10px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: none;
  }
  header nav .headerNav > ul .accordionMenu ul li:first-of-type {
    border-right: none;
  }
  header nav .headerNav > ul .accordionMenu ul li:not(:last-of-type) {
    margin-bottom: 10px;
    border-bottom: 1px dotted #dcdcdc;
  }
  header nav .headerNav > ul .accordionMenu ul li:not(:last-of-type) a {
    padding: 0 0 10px 26px;
  }
  header nav .headerNav > ul .accordionMenu ul li:last-of-type a {
    padding: 0 0 0 26px;
  }
  header nav .headerNav > ul .accordionMenu ul a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
  }
  header nav .headerNav > ul .accordionMenu ul a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background-image: url(/img/ace/common/arrow_right04.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    margin: 0;
  }
  header nav ul:not(:last-of-type) {
    border-right: 1px dotted #dcdcdc;
  }
  header nav ul:not(.accordion) li:first-of-type {
    border-right: 1px dotted #dcdcdc;
  }
  header nav ul:not(.accordion) li a {
    font-size: 18px;
    line-height: 1.44;
    padding: 8px 40px;
  }
  header nav ul p,
  header nav ul a {
    font-size: 16px;
    color: #000;
  }
  header nav ul p {
    position: relative;
    padding: 8px 40px;
    margin-bottom: 0;
    border: none;
    line-height: 1.5;
    cursor: pointer;
  }
  header nav ul p::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
            transform: none;
    background: transparent;
  }
  header nav ul p:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: -12px;
    margin: auto;
    width: 12px;
    height: 7px;
    background-image: url(/img/ace/common/icon_arrow06.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
  }
  header nav .searchBox {
    display: none;
  }
  header .headerMenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: #fff;
  }
  header .searchArea {
    padding: 7px 115px;
    display: block;
  }
  header .searchArea .searchInner {
    margin: auto;
  }
  header .searchArea form.gsc-search-box {
    display: block;
    width: 38%;
    max-width: 300px;
    margin: 0 0 0 auto;
  }
  header .menuArea .leftArea .logo {
    max-width: 236px;
    width: 100%;
    margin-right: 20px;
  }
  header .menuArea .leftArea .aceLogo {
    max-width: 141px;
    width: 100%;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  header .menuArea .leftArea .aceLogo {
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  header .menuBoxArea {
    position: fixed;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 8px;
    background: #e85b6b;
    border-radius: 0 0 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .menuBoxArea .menuBoxList:not(:last-of-type) {
    margin-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  header .menuBoxArea .menuBoxList a {
    position: relative;
    display: block;
    width: 100%;
    padding: 26px 0 20px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.42;
    text-align: center;
  }
  header .menuBoxArea .menuBoxList a::before {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
  }
  header .menuBoxArea .menuBoxList.guidebook a::before {
    background-image: url(/img/ace/common/icon_book.png);
  }
  header .menuBoxArea .menuBoxList.contact a::before {
    background-image: url(/img/ace/common/icon_mail.png);
  }
  header .menuBoxArea .menuBoxList.access a::before {
    background-image: url(/img/ace/common/icon_access.png);
  }
  header .menuBoxArea .menuBoxList:last-of-type a {
    padding-bottom: 0;
  }
}
@media (min-width: 1400px) {
  header .menuArea {
    max-width: 600px;
  }
}

/* -------------------------------------
aboutUsBox
----------------------------------------*/
.aboutUsBox {
  position: relative;
  padding: 32px 3% 20px;
  text-align: center;
  border: 3px solid #5ea785;
  border-top: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.aboutUsBox h2,
.aboutUsBox h3 {
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  margin: auto;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.aboutUsBox h2::before, .aboutUsBox h2::after,
.aboutUsBox h3::before,
.aboutUsBox h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 1px;
  margin: auto;
  width: 6%;
  height: 1px;
}
.aboutUsBox h2::before,
.aboutUsBox h3::before {
  left: 0;
  border-top: 3px solid #5ea785;
}
.aboutUsBox h2::after,
.aboutUsBox h3::after {
  right: 0;
  border-top: 3px solid #5ea785;
}
.aboutUsBox .img {
  margin-bottom: 20px;
}
.aboutUsBox p {
  font-size: 12px;
  letter-spacing: 0.01em;
  line-height: 1.67;
}
@media (min-width: 768px) {
  .aboutUsBox {
    padding: 38px 57px 17px;
  }
  .aboutUsBox h2,
  .aboutUsBox h3 {
    font-size: 24px;
    letter-spacing: 0.06em;
  }
  .aboutUsBox h2::before, .aboutUsBox h2::after,
  .aboutUsBox h3::before,
  .aboutUsBox h3::after {
    top: -2px;
    width: 28%;
  }
  .aboutUsBox .img {
    width: 97%;
    margin: auto auto 1px;
  }
  .aboutUsBox p {
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.875;
  }
}
@media (max-width: 350px) {
  .aboutUsBox h2::before, .aboutUsBox h2::after,
  .aboutUsBox h3::before,
  .aboutUsBox h3::after {
    top: 8px;
  }
}

/* -------------------------------------
bannerArea
----------------------------------------*/
.bannerArea .bannerAreaWrap {
  padding: 40px 0;
  background-color: #F4F6FB;
}
.bannerArea .bannerAreaInner {
  max-width: 1240px;
  width: 95%;
  margin: auto;
}
.bannerArea .bannerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bannerArea .banner {
  background-color: #fff;
  width: 100%;
  text-align: center;
  padding: 17px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}
.bannerArea .banner:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .bannerArea .bannerAreaWrap {
    padding: 50px 0;
  }
  .bannerArea .bannerList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .bannerArea .banner {
    max-width: 392px;
    width: 32%;
    padding: 20px;
    margin-bottom: 0;
    margin-right: 2.5%;
  }
  .bannerArea .banner:last-of-type {
    margin-right: 0;
  }
}

/* -------------------------------------
footer
----------------------------------------*/
footer .footerWrap {
  border-top: 3px solid #4ca535;
  padding: 40px 0 60px;
}
@media (min-width: 768px) {
  footer .footerWrap {
    padding: 50px 0 60px;
  }
}
footer .footerInner {
  width: 89%;
  margin: auto;
}
@media (min-width: 768px) {
  footer .footerInner {
    max-width: 1395px;
  }
}
footer .footerLogoArea {
  text-align: center;
  margin-bottom: 40px;
}
footer .footerLogoArea .logo {
  margin: auto;
  text-align: center;
  width: 66%;
}
footer .footerLogoArea .logo + .aceLogo {
  width: 39%;
  margin: 10px auto auto;
}
@media (min-width: 768px) {
  footer .footerLogoArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 70px;
  }
  footer .footerLogoArea .logo {
    width: 20%;
    margin: 0;
  }
  footer .footerLogoArea .logo + .aceLogo {
    width: 12%;
    margin: 0 0 0 2%;
  }
}
footer .footerNav > ul > li {
  margin-bottom: 10px;
}
footer .footerNav > ul > li > p, footer .footerNav > ul > li:not(.accordionMenu) {
  border-bottom: 1px solid #DCDCDC;
}
footer .footerNav > ul > li.accordionMenu > p {
  position: relative;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.4;
  padding-left: 8px;
  padding-bottom: 10px;
}
footer .footerNav > ul > li.accordionMenu > p + ul {
  display: none;
  margin-top: 10px;
}
footer .footerNav > ul > li.accordionMenu > p::before, footer .footerNav > ul > li.accordionMenu > p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#46b2e7), to(#5EA785));
  background: linear-gradient(to right, #46b2e7, #5EA785);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
footer .footerNav > ul > li.accordionMenu > p::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
footer .footerNav > ul > li.accordionMenu ul {
  padding: 0 14px;
}
footer .footerNav > ul > li.accordionMenu ul li {
  margin-bottom: 10px;
}
footer .footerNav > ul > li.accordionMenu ul li a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}
footer .footerNav > ul > li.accordionMenu ul li:last-of-type {
  margin-bottom: 16px;
}
footer .footerNav > ul > li.accordionMenu.open > p::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
footer .footerNav > ul > li.accordionMenu.open > p::after {
  opacity: 0;
}
footer .footerNav > ul > li > a {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.4;
  padding: 0 8px 10px;
  display: block;
}
@media (min-width: 768px) {
  footer .footerNav {
    max-width: 1240px;
    width: 90%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .footerNav > ul {
    margin-right: 2%;
  }
  footer .footerNav > ul:not(.accordion) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(100% - 174px - 2% - 229px - 2%);
    width: 100%;
    margin-right: 0;
  }
  footer .footerNav > ul > li.accordionMenu p {
    font-size: 16px;
    padding: 0 0 15px;
  }
  footer .footerNav > ul > li.accordionMenu p::before, footer .footerNav > ul > li.accordionMenu p::after {
    display: none;
  }
  footer .footerNav > ul > li.accordionMenu p + ul {
    display: block;
  }
  footer .footerNav > ul > li.accordionMenu ul li a::before {
    content: "";
    position: absolute;
    left: -12px;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 7px solid #64c13d;
    border-top: 6px solid transparent;
    margin: auto;
    border-bottom: 6px solid transparent;
  }
  footer .footerNav > ul > li.accordionMenu ul {
    padding: 0 0 0 20px;
  }
  footer .footerNav > ul > li > p, footer .footerNav > ul > li:not(.accordionMenu) {
    border-bottom: none;
  }
  footer .footerNav > ul > li:not(.accordionMenu) {
    width: 180px;
  }
  footer .footerNav > ul > li > a {
    font-size: 16px;
    padding: 0;
  }
  footer .footerNav > ul:not(.accordion) li:not(:last-of-type) {
    margin-right: 2%;
  }
}
@media (min-width: 1100px) {
  footer .footerNav > ul {
    margin-top: 20px;
  }
  footer .footerNav > ul:not(.accordion) {
    width: 100%;
    width: calc(100% - 174px - 2% - 229px - 2%);
  }
}
footer .copylight {
  background-color: #4ca535;
  text-align: center;
  padding: 5px 0 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
footer .copylight small {
  color: #fff;
  font-weight: 500;
  font-size: 9px;
}
@media (min-width: 768px) {
  footer .copylight {
    padding: 7px 0 6px;
  }
  footer .copylight small {
    font-size: 12px;
  }
}/*# sourceMappingURL=ace_common.css.map */