@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&display=swap");
:root {
  --nav-height: 6rem;
  --footer-height: 5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 4rem;
    --footer-height: 12rem;
  }
}

:root {
  --nav-height: 6rem;
  --footer-height: 5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 4rem;
    --footer-height: 12rem;
  }
}

nav {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--nav-height);
  background: #FFF;
  letter-spacing: 1px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
}
nav.logout .nav-login {
  display: none;
}
nav:not(.logout) .nav-logout {
  display: none;
}
nav .logo {
  position: absolute;
  display: block;
  left: 3rem;
  top: 50%;
  height: 40%;
  transform: translateY(-50%);
}
nav .nav-login,
nav .nav-logout {
  position: absolute;
  display: block;
  right: 3rem;
  padding-right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 500;
  color: #333333;
  transition: color 0.5s;
}
nav .nav-login img,
nav .nav-logout img {
  position: absolute;
  display: block;
  width: 1.5em;
  top: 50%;
  right: 0;
  transform: translateY(-45%);
  transition: filter 0.5s;
  filter: brightness(0);
}
nav .nav-dropdown {
  width: 100%;
}
nav .nav-dropdown .outer-b {
  max-width: calc(100% - 400px);
}
nav .nav-dropdown .nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 0 3rem;
}
nav .nav-dropdown .nav-flex .nav-search {
  position: relative;
  border: 1px solid #999999;
  flex: 1 0 0;
  max-width: 500px;
  padding: 0.25rem 2rem 0.25rem 0.5rem;
  border-radius: 24px;
  -webkit-border-radius: 24px;
}
nav .nav-dropdown .nav-flex .nav-search.active {
  border-color: transparent;
}
nav .nav-dropdown .nav-flex .nav-search .nav-search-btn {
  z-index: 1;
  position: absolute;
  display: block;
  width: 1rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
nav .nav-dropdown .nav-flex .nav-search input {
  z-index: 1;
  position: relative;
  border: 0;
  width: 100%;
}
nav .nav-dropdown .nav-flex .nav-search .nav-search-relative {
  display: none;
  position: absolute;
  background: #FFF;
  width: calc(100% + 2px);
  top: -1px;
  left: -1px;
  border: 1px solid #999999;
  padding: 3.5rem 1.5rem 1rem 1.5rem;
  border-radius: 23px;
  -webkit-border-radius: 23px;
}
nav .nav-dropdown .nav-flex .nav-search .nav-search-relative a {
  display: block;
  margin: 0.5rem 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.5s;
}
nav .nav-dropdown .nav-flex .nav-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1.5rem;
  white-space: nowrap;
}
nav .nav-dropdown .nav-flex .nav-content a {
  display: block;
  transition: color 0.5s;
}

@media only screen and (min-width: 1025px) {
  nav .nav-dropdown {
    padding: 0 !important;
    height: auto !important;
    display: block !important;
  }
  nav .nav-login:hover {
    color: #07B53B;
  }
  nav .nav-login:hover img {
    filter: none;
  }
  nav .nav-content a:hover,
  nav .nav-search-relative a:hover {
    color: #07B53B;
  }
}
@media only screen and (max-width: 1024px) {
  nav .logo {
    left: 1.5rem;
    height: 50%;
  }
  nav .nav-hamburger,
  nav .nav-close {
    display: block;
    position: absolute;
    top: 50%;
    width: 2rem;
    right: 1.5rem;
    transform: translateY(-50%);
  }
  nav .nav-close {
    display: none;
  }
  nav .nav-login {
    position: relative;
    right: 0;
    padding: 1.5rem 1rem;
    top: 0;
    transform: none;
    font-weight: 500;
    color: #333333;
    max-width: 480px;
    margin: auto;
  }
  nav .nav-login img {
    position: relative;
    display: inline-block;
    width: 1.25em;
    top: 0.25em;
    right: 0;
    margin-left: 0.25em;
    transform: none;
  }
  nav .nav-dropdown {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    padding: 0 3%;
    padding-top: 1.5rem;
    background: #FFF;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
  }
  nav .nav-dropdown .outer-b {
    width: 100%;
    max-width: 480px;
    margin: auto;
  }
  nav .nav-dropdown .nav-flex {
    display: block;
  }
  nav .nav-dropdown .nav-flex .nav-search {
    max-width: none;
  }
  nav .nav-dropdown .nav-flex .nav-search .nav-search-btn {
    width: 1.5rem;
  }
  nav .nav-dropdown .nav-flex .nav-search .nav-search-relative a {
    margin: 0.75rem 0;
  }
  nav .nav-dropdown .nav-flex .nav-content {
    display: block;
  }
  nav .nav-dropdown .nav-flex .nav-content a {
    border-bottom: 1px solid #ebebeb;
    padding: 1.5rem 1rem;
  }
}
:root {
  --nav-height: 6rem;
  --footer-height: 5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 4rem;
    --footer-height: 12rem;
  }
}

.card-swiper,
.card-swiper-straight {
  position: relative;
  padding-top: 1rem;
}
.card-swiper .swiper-button-prev,
.card-swiper-straight .swiper-button-prev {
  left: -4rem;
}
.card-swiper .swiper-button-next,
.card-swiper-straight .swiper-button-next {
  right: -4rem;
}
.card-swiper .swiper-slide,
.card-swiper-straight .swiper-slide {
  height: auto;
  padding: 0 3px 15px 3px;
}
.card-swiper .swiper-slide a,
.card-swiper-straight .swiper-slide a {
  display: block;
  height: 100%;
  box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.card-swiper .swiper-slide a .card-img,
.card-swiper-straight .swiper-slide a .card-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.card-swiper .swiper-slide a .card-img div,
.card-swiper-straight .swiper-slide a .card-img div {
  width: 100%;
  padding-top: 57%;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  transition: transform 0.5s;
}
.card-swiper .swiper-slide a article,
.card-swiper-straight .swiper-slide a article {
  position: relative;
  padding: 1.5rem;
  text-align: justify;
}
.card-swiper .swiper-slide a article h3,
.card-swiper-straight .swiper-slide a article h3 {
  font-size: 1.375rem;
  line-height: 135%;
  height: 3.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-swiper .swiper-slide a article .card-time,
.card-swiper-straight .swiper-slide a article .card-time {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 1.75rem;
}
.card-swiper .swiper-slide a article .card-time::before,
.card-swiper-straight .swiper-slide a article .card-time::before {
  display: block;
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  top: 50%;
  left: 0;
  background: url("../img/icon/icon-clock.svg");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  transform: translateY(-45%);
}
.card-swiper .swiper-slide a article .card-time::after,
.card-swiper-straight .swiper-slide a article .card-time::after {
  content: "分";
}
.card-swiper .swiper-slide.arrow a article::before,
.card-swiper-straight .swiper-slide.arrow a article::before {
  display: block;
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  top: 1.5rem;
  right: 1rem;
  background: url("../img/icon/icon-more-blue.svg");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
  filter: brightness(0);
}
.card-swiper .swiper-slide.arrow a article h3,
.card-swiper-straight .swiper-slide.arrow a article h3 {
  padding-right: 2rem;
}
.card-swiper .swiper-slide.start a .card-img::before,
.card-swiper-straight .swiper-slide.start a .card-img::before {
  z-index: 1;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "START";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FFF;
  font-size: 1.375rem;
  line-height: 135%;
  background: rgba(0, 0, 0, 0.75);
}
.card-swiper .swiper-slide.done a .card-img::before,
.card-swiper-straight .swiper-slide.done a .card-img::before {
  z-index: 1;
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  background: url("../img/icon/icon-check-white.svg") no-repeat right 10% top 10%, linear-gradient(45deg, transparent 50%, #07B53B 50%);
  background-size: 45% 45%, auto;
}

.card-swiper-straight .swiper-wrapper {
  gap: 35px 50px;
  flex-wrap: wrap;
}
.card-swiper-straight .swiper-slide {
  width: calc((100% - 100px) / 3);
}

@media only screen and (min-width: 1025px) {
  .card-swiper .swiper-slide,
  .card-swiper-straight .swiper-slide {
    height: auto;
    padding: 0 3px 15px 3px;
  }
  .card-swiper .swiper-slide a:hover .card-img div,
  .card-swiper-straight .swiper-slide a:hover .card-img div {
    transform: scale(1.1);
  }
  .card-swiper .swiper-slide a:hover article h3,
  .card-swiper-straight .swiper-slide a:hover article h3 {
    text-decoration: underline;
  }
}
@media only screen and (max-width: 1024px) {
  .card-swiper,
  .card-swiper-straight {
    width: 100% !important;
    padding: 1.5rem 0;
  }
  .card-swiper .swiper-button-wrap,
  .card-swiper-straight .swiper-button-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 90%;
  }
  .card-swiper .swiper-button-prev,
  .card-swiper .swiper-button-next,
  .card-swiper .swiper-pagination,
  .card-swiper-straight .swiper-button-prev,
  .card-swiper-straight .swiper-button-next,
  .card-swiper-straight .swiper-pagination {
    position: static;
    margin: 0;
    transform: none;
  }
  .card-swiper .swiper-pagination,
  .card-swiper-straight .swiper-pagination {
    flex: 1 0 0;
    padding: 0 1rem;
  }
  .card-swiper .swiper-slide a,
  .card-swiper-straight .swiper-slide a {
    width: 90%;
    margin: auto;
  }
  .card-swiper .swiper-slide a article,
  .card-swiper-straight .swiper-slide a article {
    padding: 1rem;
  }
  .card-swiper .swiper-slide a article h3,
  .card-swiper-straight .swiper-slide a article h3 {
    height: auto;
    display: block;
  }
  .card-swiper .swiper-slide.arrow a article::before,
  .card-swiper-straight .swiper-slide.arrow a article::before {
    top: 1rem;
  }
  .card-swiper .swiper-slide.done a .card-img::before,
  .card-swiper-straight .swiper-slide.done a .card-img::before {
    width: 4rem;
    height: 4rem;
  }
  .card-swiper-straight .swiper-wrapper {
    display: block;
  }
  .card-swiper-straight .swiper-slide {
    width: 100%;
    margin-bottom: 1rem;
  }
  .card-swiper-straight .swiper-slide:last-child {
    margin: 0;
  }
}
:root {
  --nav-height: 6rem;
  --footer-height: 5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 4rem;
    --footer-height: 12rem;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}
.lightbox .lightbox-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1024px;
}
.lightbox .lightbox-block > div {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  text-align: center;
  color: #333333;
  background: #FFF;
  padding: 1.5rem;
}
.lightbox .lightbox-block > div .lightbox-scroll {
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.5rem 0;
}
.lightbox .lightbox-block > div .lightbox-scroll h3 {
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 135%;
}
.lightbox .lightbox-block > div .lightbox-scroll p {
  margin: 0.5rem auto;
}
.lightbox .lightbox-block > div .lightbox-scroll img {
  display: block;
  max-width: 100%;
  margin: 1rem auto;
}
.lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex.reverse {
  flex-direction: row-reverse;
}
.lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex a.btn {
  display: inline-block;
  padding: 1.25rem 5rem;
  text-align: center;
  color: #FFF;
  background: #07B53B;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  transition: filter 0.5s;
  font-size: 1.25rem;
  line-height: 135%;
}
.lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex a.btn.negative {
  background: #000;
}
@media only screen and (min-width: 1025px) {
  .lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex a.btn:hover {
    filter: contrast(0.8) brightness(1.2);
  }
}
@media only screen and (max-width: 1024px) {
  .lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex a.btn {
    display: block;
    width: 100%;
    padding: 1.25rem 0.5rem;
  }
}
.lightbox .lightbox-block .lightbox-close {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  color: #FFF;
  transform: translate(-50%, 200%);
}
.lightbox .lightbox-block .lightbox-close img {
  position: relative;
  display: inline-block;
  width: 0.9em;
  top: 0.1em;
  margin-right: 0.5rem;
  filter: invert(1);
}

@media only screen and (max-width: 1024px) {
  .lightbox .lightbox-block {
    width: 90 !important;
  }
  .lightbox .lightbox-block > div {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    padding: 0;
  }
  .lightbox .lightbox-block > div .lightbox-scroll {
    max-height: 60vh;
    padding: 1.5rem;
  }
  .lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex {
    display: block;
  }
  .lightbox .lightbox-block > div .lightbox-scroll .lightbox-btn-flex a.btn {
    margin: 1rem 0;
  }
}
:root {
  --nav-height: 6rem;
  --footer-height: 5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 4rem;
    --footer-height: 12rem;
  }
}

form {
  margin: auto;
}
form .form-sub-block {
  margin-left: 1.75rem;
}
form .form-sub-block .form-block::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: -1rem;
  width: 2px;
  height: 170%;
  background: #999999;
  transform: translate(-100%, -50%);
}
form .form-block {
  position: relative;
  margin: 1rem 0;
}
form .form-block .wrong {
  display: none;
  position: relative;
  padding: 0.5rem 1rem;
  color: #FFF;
  background: #c86d57;
  margin-top: 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
form .form-block .wrong p {
  display: none;
}
form .form-block .wrong::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.5rem 0.75rem 0.5rem;
  border-color: transparent transparent #c86d57 transparent;
  bottom: 99%;
  left: 1.5rem;
}
form .form-check.center {
  display: flex;
  justify-content: center;
}
form .form-check.center label {
  position: relative;
  padding-left: 1.75em;
}
form .form-des-block {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
form .form-des-block a {
  font-weight: bold;
  text-decoration: underline;
}
form input {
  width: 100%;
}
form input.alert ~ .wrong {
  display: block;
}
form .form-notice {
  border: 1px solid #999999;
  padding: 1rem 0.5rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  text-align: justify;
}
form .form-notice .form-notice-scroll {
  padding: 0 1rem;
  max-height: 200px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
form .btn-send {
  display: inline-block;
  padding: 1.25rem 5rem;
  text-align: center;
  color: #FFF;
  background: #07B53B;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  transition: filter 0.5s;
  font-size: 1.25rem;
  line-height: 135%;
}
form .btn-send.negative {
  background: #000;
}
@media only screen and (min-width: 1025px) {
  form .btn-send:hover {
    filter: contrast(0.8) brightness(1.2);
  }
}
@media only screen and (max-width: 1024px) {
  form .btn-send {
    display: block;
    width: 100%;
    padding: 1.25rem 0.5rem;
  }
}
form .btn-send.disabled {
  pointer-events: none;
  background: #999999;
}
form .form-btn-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin: 3rem 0;
}
form .form-btn-flex.reverse {
  flex-direction: row-reverse;
}
form .form-btn-flex a {
  display: block;
  width: 16rem;
  padding: 1.25rem 0;
  text-align: center;
  color: #FFF;
  background: #07B53B;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  transition: filter 0.5s;
  font-size: 1.25rem;
  line-height: 135%;
}
form .form-btn-flex a.negative {
  background: #000;
}
@media only screen and (min-width: 1025px) {
  form .form-btn-flex a:hover {
    filter: contrast(0.8) brightness(1.2);
  }
}
@media only screen and (max-width: 1024px) {
  form .form-btn-flex a {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  form .form-btn-flex {
    display: block;
    margin: 3rem 0;
  }
  form .form-btn-flex a {
    margin: 1rem 0;
  }
}
:root {
  --nav-height: 6rem;
  --footer-height: 5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 4rem;
    --footer-height: 12rem;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--footer-height);
  width: 100%;
  padding: 0 3rem;
  color: #000;
  font-weight: 500;
  background: #FFF;
}
footer.gray {
  background: #F7F6F6;
}
footer > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 3rem;
}
footer:not(footer.cookie) .cookie-wrap {
  display: none !important;
}

.cookie-wrap {
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: #FFF;
}
.cookie-wrap .cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 5%;
  margin: auto;
}
.cookie-wrap .cookie-inner div {
  width: 75%;
}
.cookie-wrap .cookie-inner div > p {
  font-size: 1.375rem;
  line-height: 135%;
  margin-bottom: 0.5rem;
}
.cookie-wrap .cookie-inner div article a {
  text-decoration: underline;
}
.cookie-wrap .cookie-inner .cookie-agree {
  display: inline-block;
  padding: 1.25rem 5rem;
  text-align: center;
  color: #FFF;
  background: #07B53B;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  transition: filter 0.5s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 0.75rem 3rem;
}
.cookie-wrap .cookie-inner .cookie-agree.negative {
  background: #000;
}
@media only screen and (min-width: 1025px) {
  .cookie-wrap .cookie-inner .cookie-agree:hover {
    filter: contrast(0.8) brightness(1.2);
  }
}
@media only screen and (max-width: 1024px) {
  .cookie-wrap .cookie-inner .cookie-agree {
    display: block;
    width: 100%;
    padding: 1.25rem 0.5rem;
  }
}

@media only screen and (min-width: 1025px) {
  footer > div a:hover {
    text-decoration: underline;
  }
}
@media only screen and (max-width: 1024px) {
  footer {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 1rem 0;
    padding: 0 1rem;
    color: #000;
  }
  footer > div {
    width: 100%;
    justify-content: center;
    gap: 0;
  }
  footer > div:first-child {
    flex-direction: row-reverse;
  }
  .cookie-wrap .cookie-inner {
    display: block;
    padding: 1.5rem 5%;
  }
  .cookie-wrap .cookie-inner div {
    width: 100%;
  }
  .cookie-wrap .cookie-inner .cookie-agree {
    width: 8rem !important;
    padding: 1rem 0;
    margin: auto;
    margin-top: 1.5rem;
  }
}
@font-face {
  font-family: "LINESeedSans";
  src: url("../fonts/LINESeedSans_W_Rg.woff") format("woff");
}
@font-face {
  font-family: "LINESeedSans";
  src: url("../fonts/LINESeedSans_W_Bd.woff") format("woff");
  font-weight: 500;
}
html {
  font-size: 15px;
}

body {
  position: relative;
  width: 100%;
  margin: auto;
  background: #FFF;
  font-family: "LINESeedSans", "Noto Sans TC";
  min-height: 100vh;
}
body.fix {
  overflow: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
}
*::-webkit-scrollbar {
  width: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
*::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.wrap {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--nav-height));
}
.wrap .wrap-content {
  flex: 1;
}

.outer-b {
  width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .outer-b {
    width: 90vw;
  }
}

.outer-s {
  width: 700px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .outer-s {
    width: 80vw;
  }
}

.padding-nav {
  height: var(--nav-height);
}

h1.title,
h2.title,
h3.title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2rem;
  line-height: 125%;
}
@media only screen and (max-width: 1024px) {
  h1.title,
  h2.title,
  h3.title {
    font-size: 1.75rem;
  }
}
h1.title.center,
h2.title.center,
h3.title.center {
  justify-content: center;
}
h1.title a,
h2.title a,
h3.title a {
  font-weight: normal;
  font-size: 1.375rem;
  line-height: 135%;
}
h1.title a img,
h2.title a img,
h3.title a img {
  display: inline-block;
  width: 1.5em;
  margin-left: 0.5em;
  transition: transform 0.5s;
}
h1.title a.negative,
h2.title a.negative,
h3.title a.negative {
  filter: grayscale(1);
  opacity: 0.8;
}
h1.title a.reverse img,
h2.title a.reverse img,
h3.title a.reverse img {
  margin-left: 0;
  margin-right: 0.5em;
  transform: scale(-1, 1);
}
@media only screen and (min-width: 1025px) {
  h1.title a:hover img,
  h2.title a:hover img,
  h3.title a:hover img {
    transform: translateX(0.5em);
  }
  h1.title a:hover.reverse img,
  h2.title a:hover.reverse img,
  h3.title a:hover.reverse img {
    transform: translateX(-0.5em) scale(-1, 1);
  }
}

h3.title {
  font-size: 1.375rem;
  line-height: 135%;
}

.swiper {
  z-index: 0;
}

.swiper-button {
  z-index: 0;
  width: 3rem;
  height: auto;
}
.swiper-button.white {
  filter: brightness(0) invert(1);
}
.swiper-button::after {
  display: none;
}

.swiper-pagination {
  z-index: 0;
  bottom: 1rem !important;
}
.swiper-pagination .swiper-pagination-bullet {
  background: #FFF;
}
.swiper-pagination.dark .swiper-pagination-bullet {
  background: #333333;
}

a {
  text-decoration: none;
  color: inherit;
}

.blue {
  color: #285CD9;
}

.green {
  color: #07B53B;
}

.red {
  color: #F00;
}

.fullimg {
  display: block;
  width: 100%;
}

.fullimgHeight {
  display: block;
  height: 100%;
  margin: auto;
}

.clear {
  clear: both;
}

input {
  background: none;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "LINESeedSans", "Noto Sans TC";
  padding: 0.5rem 1rem;
  border: 1px solid #999999;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  font-size: 1rem;
}
input:focus {
  outline: none;
}
input.alert {
  border-color: #c86d57;
}
input.alert::-moz-placeholder {
  color: #c86d57;
}
input.alert::placeholder {
  color: #c86d57;
}

select {
  font-family: "LINESeedSans", "Noto Sans TC";
  letter-spacing: 0.05rem;
  padding: 0.5rem 2rem 0.5rem 1rem;
  background: url("../img/icon/icon-select.svg") no-repeat center right 0.75rem;
  background-size: auto 25%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font-size: 1rem;
  border: 1px solid #999999;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
select.alert {
  border-color: #c86d57;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:disabled + label p {
  opacity: 0.5;
}

input[type=checkbox] + label {
  display: block;
  margin-left: 1.75em;
  cursor: pointer;
}
input[type=checkbox] + label p {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  width: 1.25em;
  height: 1.25em;
  margin: 0;
  background-color: #FFF;
  transform: translateY(-48%);
  border: 1px solid #999999;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
input[type=checkbox] + label span {
  display: inline-block;
}

input[type=checkbox] + label a {
  border-bottom: 1px solid #999999;
}

input[type=checkbox] + label.alert p {
  border: 1px solid #c86d57;
  background-color: #c86d57;
}

input[type=checkbox]:checked + label p {
  background: url("../img/icon/icon-check.svg") no-repeat center center;
  background-size: contain;
}

input::-webkit-date-and-time-value {
  color: #000;
  text-align: left;
}

ul {
  list-style: none;
  margin-left: 1rem;
}
ul li {
  position: relative;
}
ul li::before {
  position: absolute;
  content: "・";
  left: -1rem;
}

.ytVideo {
  display: block;
  width: 1920px;
  height: 1080px;
  overflow: hidden;
}

.btn-back {
  display: inline-block;
  color: #285CD9;
  margin-bottom: 1.5rem;
}
.btn-back img {
  display: inline-block;
  width: 1.5em;
  margin-left: 0.5em;
  transition: transform 0.5s;
}
.btn-back.negative {
  filter: grayscale(1);
  opacity: 0.8;
}
.btn-back.reverse img {
  margin-left: 0;
  margin-right: 0.5em;
  transform: scale(-1, 1);
}
@media only screen and (min-width: 1025px) {
  .btn-back:hover img {
    transform: translateX(0.5em);
  }
  .btn-back:hover.reverse img {
    transform: translateX(-0.5em) scale(-1, 1);
  }
}

@media only screen and (min-width: 1025px) {
  .for-m {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .for-pc {
    display: none !important;
  }
  html {
    font-size: 22px;
  }
  h2.title {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 18px;
  }
}
@media only screen and (max-width: 640px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 14px;
  }
}
@media only screen and (max-width: 320px) {
  html {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */