@charset "UTF-8";

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 300;
  src: url("https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Light.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  src: url("https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Regular.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 500;
  src: url("https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Medium.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 700;
  src: url("https://www.yuantabank.com.tw/bankwebIMG/event/fonts/NotoSansTC-Bold.otf") format("opentype");
  font-display: swap;
}

html,
body {
  font-family: "Noto Sans TC", sans-serif, Arial, Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}

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

  html.-menuOpen,
  body.-menuOpen {
    overflow: hidden;
  }
}

main {
  overflow: hidden;
}

a,
button {
  padding: 0;
  line-height: 1.5;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.footer a {
  color: #FFF;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/*
 * Browser Upgrade Prompt
 */
.browserupgrade {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  margin: 0.2em 0;
  background: #ccc;
  padding: 0.2em 0;
}

body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
}

.main {
  padding-top: 80px;
  background-color: #0B4368;
}

.main-wrap {
  position: relative;
}

.main-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1.45833vw solid #0B4368;
  border-bottom: none;
  pointer-events: none;
  z-index: 40;
}

.main p {
  padding: 0;
}

@media only screen and (max-width: 1023px) {
  .main {
    padding-top: 76px;
  }
}

@media only screen and (max-width: 767px) {
  .main {
    padding-top: 58px;
  }

  .main-wrap::before {
    border-width: 2.66667vw;
  }
}

.service {
  position: fixed;
  right: 20px;
  bottom: 148px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: url(../images/icon/yuan.svg);
  cursor: pointer;
  z-index: 50;
  transition: .3s;
}

.service-box {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  display: none;
  flex-direction: column;
  width: 186px;
  padding: 8px;
  font-size: 12px;
  color: #0072ff;
  line-height: 1.6;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.5);
  background: #fff;
  z-index: 10;
}

.service-box span {
  color: #707070;
}

@media only screen and (min-width: 768px) {
  .service:hover .service-box {
    display: flex;
  }
}

@media only screen and (max-width: 1279px) {
  .service {
    right: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .service {
    bottom: 172px;
    width: 43px;
    height: 43px;
  }
}

.line {
  position: fixed;
  right: 20px;
  bottom: 84px;
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: url(../images/icon/line.svg) no-repeat center/contain;
  cursor: pointer;
  text-decoration: none;
  z-index: 50;
  transition: .2s;
}

.line:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 1279px) {
  .line {
    right: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .line {
    bottom: 121px;
    width: 43px;
    height: 43px;
  }
}

.goTop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: url(../images/icon/top.svg);
  opacity: 1;
  cursor: pointer;
  z-index: 50;
  transition: .2s;
}

.goTop:hover {
  transform: scale(1.1);
}

@media only screen and (max-width: 1279px) {
  .goTop {
    right: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .goTop {
    bottom: 70px;
    width: 43px;
    height: 43px;
  }
}

.float {
  position: fixed;
  top: 160px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 50px;
  z-index: 50;
}

.float-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding: 20px 12px;
  border-radius: 10px;
  background-color: #CC4E31;
}

.float-item img {
  width: 22px;
}

.float-item div {
  color: #FFF;
  letter-spacing: 0.5px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

@media only screen and (min-width: 1024px) {
  .float-item {
    transition: .3s;
  }

  .float-item:hover {
    transform: scale(1.05);
  }
}

@media only screen and (max-width: 1279px) {
  .float {
    right: 12px;
    width: 40px;
  }

  .float-item {
    padding: 15px 10px;
  }

  .float-item img {
    width: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .float {
    display: flex;
    top: auto;
    bottom: 0;
    right: 0;
    flex-direction: row;
    gap: 0;
    width: 100%;
  }

  .float-item {
    flex: 1;
    flex-direction: row;
    justify-content: center;
    padding: 12px;
    border-radius: 0;
  }

  .float-item div {
    padding-bottom: 1px;
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
}

@-webkit-keyframes shake {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(5deg);
  }
}

@keyframes shake {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(5deg);
  }
}

@-webkit-keyframes float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(3%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(3%);
  }
}

@-webkit-keyframes petal {
  0% {
    transform: translateY(0) rotate(0);
  }

  25% {
    transform: translateY(-5%) rotate(-3deg);
  }

  50% {
    transform: translateY(0) rotate(0);
  }

  75% {
    transform: translateY(5%) rotate(3deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes petal {
  0% {
    transform: translateY(0) rotate(0);
  }

  25% {
    transform: translateY(-5%) rotate(-3deg);
  }

  50% {
    transform: translateY(0) rotate(0);
  }

  75% {
    transform: translateY(5%) rotate(3deg);
  }

  100% {
    transform: translateY(0) rotate(0);
  }
}

.banner {
  position: relative;
  padding-bottom: 700px;
  overflow: hidden;
  background-color: #EFDCD8;
}

.banner::before,
.banner::after {
  content: '';
  position: absolute;
  top: 0;
  width: 14.16667vw;
  height: 14.16667vw;
  background-color: #0B4368;
  border-radius: 50%;
  z-index: 1;
}

.banner::before {
  left: 0;
  transform: translate(-50%, -50%);
}

.banner::after {
  right: 0;
  transform: translate(50%, -50%);
}

.banner-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.banner-bg img {
  width: auto;
  height: 100%;
}

.banner-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  height: 100%;
  font-size: 0;
  z-index: 41;
}

.banner-wrap>div {
  position: absolute;
}

.banner-wrap img {
  width: 100%;
}

.banner-tit {
  top: 22.28571%;
  left: 50%;
  transform: translateX(-50%);
  width: 56.59722%;
}

.banner-dialog {
  position: absolute;
  top: 0;
  right: 7.97546%;
  width: 17.66871%;
  transform-origin: bottom left;
  -webkit-animation: shake 0.5s ease-in-out infinite alternate;
  animation: shake 0.5s ease-in-out infinite alternate;
}

.banner-flower01 {
  top: 0;
  left: -8.05556%;
  width: 27.84722%;
  -webkit-animation: float 1.5s ease-in-out infinite alternate;
  animation: float 1.5s ease-in-out infinite alternate;
}

.banner-flower02 {
  bottom: 7.57143%;
  right: -11.94444%;
  width: 26.66667%;
  animation: float 1.5s ease-in-out infinite alternate-reverse;
}

.banner-petal01 {
  bottom: 12%;
  left: 1.45833%;
  width: 5.55556%;
  transform-origin: top center;
  -webkit-animation: petal 2s linear infinite;
  animation: petal 2s linear infinite;
}

.banner-petal02 {
  bottom: 24.42857%;
  left: 11.59722%;
  width: 7.70833%;
  transform-origin: top center;
  animation: petal 2s linear infinite reverse;
}

.banner-petal03 {
  top: 19.14286%;
  right: 19.02778%;
  width: 4.375%;
  transform-origin: top center;
  -webkit-animation: petal 2s linear infinite;
  animation: petal 2s linear infinite;
}

.banner-petal04 {
  bottom: 17%;
  right: 23.05556%;
  width: 4.09722%;
  transform-origin: top center;
  animation: petal 2s linear infinite reverse;
}

@media only screen and (min-width: 1921px) {
  .banner-bg {
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }

  .banner-bg img {
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 1439px) {
  .banner {
    padding-bottom: 48.61111%;
  }
}

@media only screen and (max-width: 767px) {
  .banner {
    padding-bottom: 144.26667%;
  }

  .banner::before,
  .banner::after {
    width: 32vw;
    height: 32vw;
  }

  .banner-tit {
    left: 12.26667%;
    transform: none;
    top: 6.28466%;
    width: 79.2%;
  }

  .banner-dialog {
    right: 0;
    width: 36.02694%;
  }

  .banner-flower01 {
    display: none;
  }

  .banner-flower02 {
    bottom: 13.12384%;
    right: -2.66667%;
    width: 37.33333%;
  }

  .banner-petal01 {
    bottom: 12.939%;
    left: -2.13333%;
    width: 14.4%;
  }

  .banner-petal02 {
    bottom: 3.32717%;
    left: 22.93333%;
    width: 13.86667%;
  }

  .banner-petal03 {
    display: none;
  }

  .banner-petal04 {
    bottom: 64.69501%;
    right: 90.66667%;
    width: 12.26667%;
  }
}

.link {
  color: #007fe0 !important;
}

.btn {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  gap: 13px;
  width: 200px;
  height: 46px;
  background: #CC4E31;
  border-radius: 100px;
  cursor: pointer;
}

.btn span {
  flex: 0 0 auto;
  font-size: 19px;
  font-weight: 500;
  line-height: 160%;
  color: #FFFFFF;
}

.btn::after {
  content: '';
  flex: 0 0 auto;
  width: 10px;
  height: 11px;
  background: url("../images/icon/arrow.svg") no-repeat center/contain;
}

.btn_l {
  width: 300px;
  height: 55px;
}

.btn_l span {
  font-size: 24px;
}

.btn_l::after {
  width: 15px;
  height: 16px;
}

.btn.-sub {
  background-color: #EE6242;
}

@media only screen and (min-width: 1024px) {
  .btn::after {
    transition: transform .3s;
  }

  .btn:hover::after {
    transform: translateX(150%);
  }
}

@media only screen and (max-width: 1023px) {
  .btn {
    padding: 6px;
    gap: 10px;
    width: 151px;
    height: 35px;
  }

  .btn span {
    font-size: 15px;
  }

  .btn::after {
    width: 7px;
    height: 8px;
  }
}

.anchor {
  transform: translateY(-80px);
}

@media only screen and (max-width: 1023px) {
  .anchor {
    transform: translateY(-76px);
  }
}

@media only screen and (max-width: 767px) {
  .anchor {
    transform: translateY(-58px);
  }
}

.info {
  padding-bottom: calc(12px + 9.6875vw);
  background-color: #EFDCD8;
}

.info-wrap {
  position: relative;
  max-width: 928px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: center;
  z-index: 1;
}

.info-wrap>div {
  width: 100%;
  padding: 25px 0;
}

.info-tit {
  margin-bottom: 20px;
}

.info-tit img {
  width: 200px;
}

.info-txt {
  font-size: 24px;
  line-height: 160%;
  color: #565656;
}

.info-txt b {
  font-size: 30px;
}

.info-txt ol {
  text-align: left;
  list-style: decimal;
}

@media only screen and (max-width: 1023px) {
  .info {
    padding-bottom: 6.4vw;
  }

  .info-wrap {
    padding: 0 40px;
  }

  .info-tit img {
    width: 158px;
  }

  .info-txt {
    font-size: 16px;
  }

  .info-txt b {
    font-size: 19px;
  }
}

@-webkit-keyframes cloud {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

@keyframes cloud {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

.flow {
  position: relative;
  padding-top: 53px;
  padding-bottom: calc(121px + 4.16667vw);
  background-color: #EFBEB3;
}

.flow::before {
  content: '';
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: 9.6875vw;
  background: url("../images/flow/arc.svg") no-repeat top center/cover;
}

.flow-wrap {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.flow-wrap::before,
.flow-wrap::after {
  content: '';
  position: absolute;
  width: 142px;
  height: 43px;
  background: url("../images/other/cloud.svg") no-repeat center/contain;
  -webkit-animation: cloud 3s linear infinite alternate;
  animation: cloud 3s linear infinite alternate;
}

.flow-wrap::before {
  top: 167px;
  right: calc(50% + 634px);
}

.flow-wrap::after {
  top: 647px;
  left: calc(50% + 644px);
  animation-direction: alternate-reverse;
}

.flow-tit {
  margin-bottom: 50px;
  text-align: center;
}

.flow-tit img {
  max-width: 751px;
}

.flow-step {
  margin: 0 -20px;
  padding: 0 20px;
}

.flow-note {
  margin: 50px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  color: #565656;
  text-align: center;
}

.flow-note a {
  display: inline-block;
  font-weight: 500;
  line-height: 160%;
  color: #007FE0;
}

.flow-rule {
  max-width: 970px;
  margin: 0 auto;
}

@media only screen and (max-width: 1023px) {
  .flow {
    padding-top: 27px;
    padding-bottom: calc(27px + 9.6vw);
  }

  .flow::before {
    height: 9.6vw;
  }

  .flow-tit {
    margin-bottom: 26px;
  }

  .flow-tit img {
    max-width: 240px;
  }

  .flow-note {
    margin: 18px 0;
    font-size: 16px;
  }

  .flow-rule {
    padding: 0 18px;
  }
}

.step-item {
  position: relative;
  text-align: center;
}

.step-item p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  line-height: 210%;
  color: #0B4368;
}

.step-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: calc(100% + 26px);
  transform: translateY(-50%);
  width: 22px;
  height: 24px;
  background: url("../images/flow/arrow.svg") no-repeat center/contain;
}

@media only screen and (max-width: 1023px) {
  .step {
    max-width: 728px;
  }

  .step-item p {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .step {
    overflow: visible;
  }

  .step-item {
    max-width: 191px;
    margin: 0 auto;
  }

  .step-item::after {
    content: none;
  }
}

.swiper-pagination {
  position: static;
  margin-top: 26px;
  line-height: 0;
}

.swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 6px;
  background-color: #DEDEDE;
  opacity: 1;
  transition: background-color .3s;
}

.swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #0E6EA4;
}

.rule {
  display: flex;
  align-items: center;
  padding: 33px;
  gap: 50px;
  background: #EFDCD8;
  border-radius: 50px;
}

.rule-pic {
  flex: 0 0 auto;
  width: 188px;
}

.rule-content {
  flex: 1;
}

.rule-tit {
  display: inline-block;
  padding: 0px 44px;
  font-size: 24px;
  font-weight: 700;
  line-height: 160%;
  color: #FFFFFF;
  background: #0B4368;
  border-radius: 50px;
}

.rule-txt {
  margin-top: 8px;
  font-size: 20px;
  line-height: 160%;
  color: #565656;
}

.rule-txt>div {
  display: flex;
}

.rule-txt>div>span:nth-child(1) {
  flex: 0 0 auto;
}

.rule-txt>div>span:nth-child(1).-star {
  position: relative;
}

.rule-txt>div>span:nth-child(1).-star::before {
  content: '*';
  position: absolute;
  top: 0;
  right: 100%;
}

.rule-txt>div>span:nth-child(2) {
  flex: 1;
}

.rule-txt div+div {
  margin-top: 8px;
}

.rule-txt a {
  display: inline;
  font-weight: 400;
  line-height: 160%;
  color: #007FE0;
}

@media only screen and (max-width: 1023px) {
  .rule {
    box-sizing: border-box;
    display: block;
    max-width: 435px;
    padding: 30px;
    margin: 0 auto;
    gap: 0;
    text-align: center;
    border-radius: 30px;
  }

  .rule-pic {
    display: inline-block;
    width: 114px;
    margin-bottom: -17px;
  }

  .rule-tit {
    padding: 0px 30px;
    font-size: 19px;
  }

  .rule-txt {
    font-size: 14px;
    text-align: left;
  }
}

.digital {
  position: relative;
  padding-top: 26px;
  padding-bottom: calc(80px + 4.89583vw);
  background-color: #EFDCD8;
}

.digital::before {
  content: '';
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: 4.16667vw;
  background: url("../images/digital/arc.svg") no-repeat top center/cover;
}

.digital-wrap {
  padding: 0 20px;
  text-align: center;
}

.digital-wrap::before {
  content: '';
  position: absolute;
  top: 195px;
  right: calc(50% + 700px);
  width: 174px;
  height: 40px;
  background: url("../images/other/cloud-l.svg") no-repeat center/contain;
  -webkit-animation: cloud 3s linear infinite alternate;
  animation: cloud 3s linear infinite alternate;
}

.digital-wrap::after {
  content: '';
  position: absolute;
  top: 568px;
  left: calc(50% + 700px);
  width: 142px;
  height: 43px;
  background: url("../images/other/cloud.svg") no-repeat center/contain;
  animation: cloud 3s linear infinite alternate-reverse;
}

.digital-head {
  position: relative;
  margin-bottom: 60px;
  z-index: 1;
}

.digital-head img {
  max-width: 832px;
}

.digital-content {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 80px;
  z-index: 1;
}

.digital-item {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: 325px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}

.digital-tit {
  font-size: 30px;
  font-weight: 700;
  line-height: 160%;
  color: #0B4368;
}

.digital-tit::after {
  content: '';
  display: block;
  width: 221px;
  height: 17px;
  margin: 2px auto 14px;
  background: url("../images/digital/line.svg") no-repeat center/contain;
}

.digital-txt {
  font-size: 18px;
  line-height: 125%;
  color: #0B4368;
}

.digital-pic {
  margin-top: 16px;
}

.digital-pic img {
  max-width: 237px;
}

.digital-note {
  margin-top: 16px;
  font-size: 16px;
  line-height: 160%;
  color: #787878;
}

.digital-content+.digital-note {
  display: inline-block;
  margin-top: 24px;
  text-align: left;
}

.digital-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

@media only screen and (max-width: 1023px) {
  .digital {
    padding-top: 38px;
    padding-bottom: calc(32px + 5.86667vw);
  }

  .digital::before {
    height: 6.93333vw;
    background-image: url("../images/digital/arc-m.svg");
  }

  .digital-wrap::before {
    top: 57px;
    right: calc(50% + 145px);
    width: 77px;
    height: 25px;
  }

  .digital-wrap::after {
    top: 152px;
    left: calc(50% + 100px);
    width: 112px;
    height: 37px;
  }

  .digital-head {
    margin-bottom: 22px;
  }

  .digital-head img {
    max-width: 282px;
  }

  .digital-content {
    gap: 20px;
    flex-wrap: wrap;
  }

  .digital-item {
    width: 245px;
    padding: 22px 18px;
    border-radius: 15px;
  }

  .digital-tit {
    font-size: 23px;
  }

  .digital-tit::after {
    width: 166px;
    height: 11px;
    margin: 2px auto 10px;
  }

  .digital-txt {
    font-size: 16px;
  }

  .digital-pic {
    margin-top: 12px;
  }

  .digital-pic img {
    max-width: 179px;
  }

  .digital-note {
    margin-top: 12px;
    font-size: 12px;
  }

  .digital-content+.digital-note {
    margin-top: 18px;
  }

  .digital-action {
    gap: 6px;
    margin-top: 12px;
  }
}

.notice {
  position: relative;
  padding-bottom: 80px;
  background-color: #D1EFFA;
}

.notice::before {
  content: '';
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: 4.89583vw;
  background: url("../images/notice/arc.svg") no-repeat top center/cover;
}

.notice-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

@media only screen and (max-width: 1023px) {
  .notice {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .notice::before {
    height: 5.86667vw;
    background-image: url("../images/notice/arc-m.svg");
  }
}

.collapse {
  padding: 0 30px;
  border-radius: 10px;
  background-color: #FFF;
}

.collapse .collapse-action {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 25px 0;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #2C2C2C;
  text-decoration: none;
}

.collapse .collapse-action::after {
  content: '＋';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  font-size: 1.2em;
  transition: .3s;
}

.collapse-content {
  display: none;
  padding: 25px 0;
  font-size: 16px;
  color: #2C2C2C;
  border-top: 1px solid #2C2C2C;
}

.collapse.is-open .collapse-action::after {
  content: '－';
  transform: translateY(-50%) rotate(180deg);
}

@media only screen and (max-width: 1023px) {
  .collapse {
    padding: 0 15px;
    border-radius: 10px;
  }

  .collapse .collapse-action {
    padding: 20px 0;
    font-size: 16px;
  }

  .collapse-content {
    padding: 20px 0;
    font-size: 14px;
  }
}

ol {
  font-weight: inherit;
  line-height: 1.7;
  margin: 0;
  padding-left: 1.5625em;
}

ol b {
  font-weight: bold;
}

ol a {
  display: inline;
}

ol table {
  width: 100%;
  margin: 0.25em 0;
  border-collapse: collapse;
  border-spacing: 0;
}

ol table th,
ol table td {
  padding: 0.25em;
  border: 1px solid #000;
}

ol.chinese {
  list-style-type: none;
  padding-left: 2em;
}

ol.chinese>li {
  position: relative;
}

ol.chinese>li::before {
  content: "(" attr(data-num) ")";
  position: absolute;
  top: 0;
  left: -0.3125em;
  transform: translateX(-100%);
}

ol.brackets {
  list-style-type: none;
}

ol.brackets>li {
  position: relative;
  counter-increment: section;
}

ol.brackets>li::before {
  content: "(" counter(section, decimal) ")";
  position: absolute;
  top: 0;
  left: -0.3125em;
  transform: translateX(-100%);
  min-width: 1.25em;
  text-align: center;
}

ol.cjk {
  list-style-type: none;
  padding-left: 2em;
}

ol.cjk>li {
  position: relative;
}

ol.cjk>li::before {
  content: attr(data-num) "、";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 1em;
}

p {
  margin: 0;
}

b {
  font-weight: bold;
}

.-rdText {
  color: #ff704a;
}

.-buText {
  color: #005bab;
}

.-gText {
  display: inline-block;
}

@media only screen and (max-width: 1023px) {
  .-pc {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .-pc-pad {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .-pad {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .-pad {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .-mb-pad {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .-mb {
    display: none;
  }
}

.-hidden {
  display: none !important;
}