@charset "UTF-8";
/* ==== 宣告 ==== */
:root {
  --line-height-default: 2;
  --gap: max(2.2vw, 10px);
  --padding-spac: 25px;
  --container-900: calc(900px + (var(--padding-spac) * 2));
  --container-1080: calc(1080px + (var(--padding-spac) * 2));
  --container-1400: calc(1400px + (var(--padding-spac) * 2));
  --header-w: 90px;
  --banner-h: 19.532%;
  --box-space: max(4.5vw, 30px);
}

@media (max-width: 1079px) {
  :root {
    --line-height-default: 1.8;
  }
}
@media (max-width: 991px) {
  :root {
    --header-w: 65px;
    --banner-h: 260px;
  }
}
@media (max-width: 575px) {
  :root {
    --banner-h: 200px;
  }
}
/* ==== 全域 ==== */
.cke_wysiwyg_frame html {
  font-size: 10px;
  line-height: 10px;
}

body.cke_editable {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif TC", serif;
  font-size: 1.6rem;
  color: #333333;
  word-wrap: break-word;
  line-height: var(--line-height-default);
  background-color: #fff;
  overflow-x: hidden !important;
}
body.cke_editable * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body.cke_editable img {
  max-width: 100%;
  height: auto !important;
  text-decoration: none;
  vertical-align: top;
  border: 0;
}
body.cke_editable a {
  color: #333333;
  outline: none;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
body.cke_editable a:hover, body.cke_editable a:visited, body.cke_editable a:focus, body.cke_editable a:active {
  color: #333333;
  text-decoration: none;
}
body.cke_editable .reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  body.cke_editable img {
    max-width: 70%;
  }
}
/*==== 共用 ====*/
.txt-center {
  text-align: center;
}

.edit-wrap a {
  color: rgb(33, 31, 31);
}
.edit-wrap a:visited, .edit-wrap a:hover, .edit-wrap a:focus, .edit-wrap a:active {
  color: rgb(33, 31, 31);
  text-decoration: underline;
}
.edit-wrap p {
  margin: 0;
  padding: 5px 0;
  word-break: normal;
}
.edit-wrap img {
  margin: 25px 0;
  overflow: hidden;
}

.edit__notice {
  width: 100%;
}
.edit__notice li {
  position: relative;
  padding: 0 8px 0 16px;
  line-height: 1.8;
}
.edit__notice li::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 12px;
  left: 3px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: rgba(33, 31, 31, 0.75);
}
.edit__notice li:not(:last-child) {
  margin-bottom: 6px;
}

.edit__activity .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: max(8px, 1.5vw);
  margin-top: 20px;
}
.edit__activity .icon li {
  width: auto;
  height: 62px;
}
.edit__activity .icon li img {
  margin: 0;
  width: auto !important;
  height: 62px !important;
}

@media (min-width: 768px) {
  .edit-wrap img {
    max-width: 70%;
  }
  .edit-wrap .edit__activity img {
    max-width: 100%;
  }
}
/* ==== privacy ====*/
.edit-privacy.edit-style {
  padding: 0;
}
.edit-privacy > p {
  padding: 0 max(1vw, 15px) !important;
}
.edit-privacy a {
  padding: 0 3px;
}
.edit-privacy ul.ul-list {
  margin-top: 35px;
}
.edit-privacy ul.ul-list > li {
  padding: 0 max(1vw, 15px);
}
.edit-privacy ul.ul-list > li:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: #ccc solid 1px;
}
.edit-privacy ul.ul-list > li .ti {
  margin-bottom: 10px;
  font-size: 1.8rem;
  color: #000;
}
.edit-privacy ol {
  margin: 0;
  padding: 0 0 0 20px;
}

@media (max-width: 767px) {
  .edit-privacy .headline {
    margin-bottom: 10px;
  }
}