@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap");
html {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #231815;
  --blue: #0093C1;
  --blue_dark: #014865;
  --green: #00A59B;
  --red_word:#E03E57;
}
@media all and (min-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media all and (min-width: 768px) {
  html {
    font-size: 20px;
  }
}
@media all and (min-width: 1024px) {
  html {
    font-size: 20px;
  }
}
@media all and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}
@media all and (min-width: 1320px) {
  html {
    font-size: 18px;
  }
}
@media all and (min-width: 1680px) {
  html {
    font-size: 18px;
  }
}
html * {
  box-sizing: border-box;
}
html img {
  display: block;
  width: 100%;
}
html img.cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html a {
  color: inherit;
  text-decoration: none;
}
html p {
  line-height: inherit;
}
html p ~ p {
  margin-top: 1em;
}
html body {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  html body:has(.hem.open) {
    overflow: hidden;
  }
}

._pc {
  display: none;
}

@media all and (min-width: 1200px) {
  ._pc {
    display: block;
  }
  ._mb {
    display: none;
  }
}
.c_red {
  color: var(--red_word);
}

.js_CTA {
  cursor: pointer;
}

header {
  z-index: 9;
  position: sticky;
  top: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
header.scroll {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
header .logo {
  width: 50%;
  align-content: center;
}
header .ham {
  position: relative;
  z-index: 2;
  width: 8vw;
  aspect-ratio: 1/1;
}
header .ham .line {
  position: absolute;
  width: 80%;
  height: 3px;
  background-color: #0093C1;
  border-radius: 99em;
  top: 50%;
  left: 10%;
  transition: all 0.3s ease-in-out;
}
header .ham .line._t {
  top: 20%;
}
header .ham .line._b {
  top: 80%;
}
header .tel {
  display: none;
}
@media screen and (max-width: 1199px) {
  header {
    padding: 0.5em 5%;
  }
  header nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: background-color 0.2s ease-in-out;
  }
  header nav .menu_list {
    position: absolute;
    background-color: #1f95a4;
    background: linear-gradient(120deg, #00A59B 0%, #1f95a4 50%, #0093C1 80%);
    transform: translateX(100%);
    right: 0;
    width: 100%;
    height: 100%;
    padding: 15vw 10%;
    transition: transform 0.7s ease-in-out;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1024px) {
  header nav .menu_list {
    max-width: 20em;
    padding: 13% 5% 0;
  }
}
@media screen and (max-width: 1199px) {
  header nav .menu_list > li a {
    position: relative;
    border-radius: 1em;
    background-color: #fff;
    border: 1px solid var(--blue);
    color: var(--blue_dark);
    position: relative;
    display: block;
    padding: 1em 2em;
  }
  header nav .menu_list > li a:after {
    content: "";
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    width: 0.5em;
    aspect-ratio: 1/1;
    border: 1px solid var(--blue_dark);
    border-width: 1px 1px 0 0;
  }
  header nav .menu_list > li a.active {
    color: var(--green);
    pointer-events: none;
  }
  header nav .menu_list > li a.active:before {
    content: "";
    position: absolute;
    width: 0.25em;
    aspect-ratio: 1/1;
    border-radius: 99em;
    background-color: var(--green);
    left: 1.3em;
    top: 52%;
    transform: translate(0%, -50%);
  }
  header nav .menu_list > li ~ li {
    margin-top: 1.5em;
  }
  header nav .menu_list > li dl dt {
    padding-left: 2.5em;
    font-size: 0.8em;
    color: #eee;
  }
  header nav .menu_list > li dl dd .sub_list li {
    margin-top: 0.5em;
  }
  header nav .menu_list > li dl dd .sub_list li a {
    display: block;
  }
  header nav .menu_list > li.social {
    border: 0;
    display: flex;
    gap: 1em;
    padding: 1em;
  }
  header nav .menu_list > li.social a {
    background-color: unset;
    border: 0;
    padding: 0;
    width: 20vw;
    max-width: 4em;
  }
  header nav .menu_list > li.social a::after {
    display: none;
  }
  header:has(.ham.open) nav {
    pointer-events: all;
    background-color: rgba(0, 0, 0, 0.6);
  }
  header:has(.ham.open) nav .menu_list {
    transform: translateX(0);
  }
  header:has(.ham.open) .ham .line {
    background-color: #fff;
    width: 70%;
    left: 15%;
  }
  header:has(.ham.open) .ham .line._t {
    top: 50%;
    transform: rotate(45deg);
  }
  header:has(.ham.open) .ham .line._b {
    top: 50%;
    transform: rotate(-45deg);
  }
  header:has(.ham.open) .ham .line._m {
    left: 50%;
    width: 0;
  }
  header .tel {
    display: block;
    flex-grow: 1;
  }
  header .tel a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--green);
    color: #fff;
    font-size: 3.5vw;
    margin: 0 3vw;
    border-radius: 0.35em;
  }
  header .tel .icon {
    width: 1.5em;
  }
}
@media screen and (max-width: 1199px) and (min-width: 1024px) {
  header .tel {
    display: flex;
    flex-direction: row-reverse;
  }
  header .tel a {
    width: -moz-max-content;
    width: max-content;
    padding: 0 1em 0 0.5em;
    font-size: 1.5em;
  }
}


@media all and (min-width: 1024px) {
  header .logo {
    max-width: 14em;
  }
  header .ham {
    width: 3em;
  }
  header .ham .line {
    height: 5px;
  }
}
@media all and (min-width: 1200px) {
  header {
    padding: 0 5%;
  }
  header nav .menu_list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
  }
  header nav .menu_list > li {
    font-size: 1.1111111111em;
    font-weight: 500;
  }
  header nav .menu_list > li > * {
    padding: 1.3em 0;
  }
  header nav .menu_list > li.social {
    display: flex;
    gap: 0.5em;
    margin-left: 3vw;
  }
  header nav .menu_list > li.social a {
    padding: 0;
    width: 2.5em;
    transition: all 0.1s ease-out;
  }
  header nav .menu_list > li.social a:hover {
    transform: scale(1.05);
  }
  header nav .menu_list > li dl {
    position: relative;
  }
  header nav .menu_list > li dl dt {
    display: block;
    position: relative;
    margin-right: 0.8em;
  }
  header nav .menu_list > li dl dt:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(150%, -50%);
    width: 0.5em;
    aspect-ratio: 1/0.75;
    background-color: var(--green);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  header nav .menu_list > li dl dd {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    padding-top: 1px;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    pointer-events: none;
  }
  header nav .menu_list > li dl dd .sub_list {
    background-color: #fff;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
  }
  header nav .menu_list > li dl dd .sub_list li a {
    position: relative;
    display: block;
    padding: 1em 2em;
  }
  header nav .menu_list > li dl dd .sub_list li a.active {
    color: var(--green);
    pointer-events: none;
  }
  header nav .menu_list > li dl dd .sub_list li a.active:before {
    content: "";
    position: absolute;
    width: 0.25em;
    aspect-ratio: 1/1;
    border-radius: 99em;
    background-color: var(--green);
    left: 1.3em;
    top: 52%;
    transform: translate(0%, -50%);
  }
  header nav .menu_list > li dl dd .sub_list li ~ li {
    border-top: 1px solid #ddd;
  }
  header nav .menu_list > li dl dd .sub_list li:hover a {
    transition: color 0.1s ease-out;
    color: var(--green);
  }
  header nav .menu_list > li:hover > a, header nav .menu_list > li:hover dt {
    transition: color 0.1s ease-out;
    color: var(--blue);
  }
  header nav .menu_list > li:hover dd {
    pointer-events: all;
    opacity: 1;
  }
  header nav .menu_list > li > a.active {
    pointer-events: none;
    transition: color 0.1s ease-out;
    color: var(--blue);
  }
  header .ham {
    display: none;
  }
}

.breadcrumb {
  padding: 1em 5%;
  display: flex;
  align-items: center;
  gap: 0.5em;
  border: 1px solid #dedede;
  border-width: 1px 0;
  color: #555;
  font-size: 0.7em;
}
@media all and (min-width: 1200px) {
  .breadcrumb {
    font-size: 0.9em;
  }
}
.breadcrumb a {
  position: relative;
  color: #999;
}
.breadcrumb a:after {
  content: ">";
  margin-left: 0.5em;
}

.bookmark {
  z-index: 8;
  background-color: #fff;
  color: #fff;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 0.3em 0.5em;
  filter: drop-shadow(0 0 5px rgba(170, 170, 170, 0.5));
}
.bookmark .bookmark_btn {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 20%;
  padding: 2% 8%;
  background-color: #fff;
  border-radius: 0.5em;
  transform: translate(-50%, -70%);
}
.bookmark .bookmark_btn img {
  transition: transform 0.2s ease-out 0.1s;
}
.bookmark .bookmark_btn.close img {
  transform: rotate(180deg);
}
.bookmark ul {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}
.bookmark ul li a {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  padding: 0.5em;
  border-radius: 0.4em;
  color: #999;
  transition: background-color 0.2s ease-out;
}
.bookmark ul li a .icon {
  width: auto;
  height: 5vw;
  filter: grayscale(1) opacity(0.6);
}
.bookmark ul li a .icon img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.bookmark ul li a h3 {
  font-size: 3vw;
}
.bookmark ul li a.active, .bookmark ul li a:hover {
  background-color: rgba(0, 147, 193, 0.2);
  color: var(--blue);
}
.bookmark ul li a.active .icon, .bookmark ul li a:hover .icon {
  filter: none;
}
.bookmark .cta_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.bookmark .cta_btn {
  flex-grow: 1;
  margin-top: 0.3em;
}
.bookmark .cta_btn a {
  display: block;
  background: linear-gradient(to right, var(--blue) 0%, var(--green) 100%);
  padding: 0.65em;
  text-align: center;
  color: #fff;
  border-radius: 0.4em;
}
@media all and (min-width: 1024px) {
  .bookmark {
    position: sticky;
    background-color: var(--blue_dark);
    top: calc(3.8888888889em + 1px);
    padding: 0.5em;
    bottom: auto;
  }
  .bookmark .bookmark_btn {
    display: none;
  }
  .bookmark ul {
    justify-content: center;
    gap: 3%;
    display: flex !important;
  }
  .bookmark ul li a {
    flex-direction: row;
    border-radius: 99em;
    padding: 0.6em 1em;
    background-color: rgba(0, 147, 193, 0.15);
    color: #fff;
  }
  .bookmark ul li a .icon {
    width: 1em;
    height: auto;
    filter: grayscale(1) brightness(10);
    width: 1em;
  }
  .bookmark ul li a h3 {
    font-size: 1em;
  }
  .bookmark ul li a.active, .bookmark ul li a:hover {
    background-color: #0093c1;
    color: #fff;
  }
  .bookmark ul li a.active .icon, .bookmark ul li a:hover .icon {
    filter: grayscale(1) brightness(10);
  }
  .bookmark ul li a:hover {
    transition: all 0.1s ease-out;
    transform: scale(1.05);
  }
  .bookmark .cta_btn {
    display: none;
  }
}

section {
  position: relative;
  overflow: hidden;
}
section .inner {
  width: 90%;
  margin: 0 auto;
}
@media all and (min-width: 1024px) {
  section .inner {
    width: 80%;
    max-width: 1200px;
  }
}
section .overflow {
  overflow: hidden;
}
.sec_title {
  text-align: center;
  margin-bottom: 2em;
}
.sec_title h2 {
  margin: 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  font-size: 2.2em;
  font-weight: 700;
  background: linear-gradient(to right, var(--blue), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec_title h2 span:not(._pc) {
  background: var(--red_word);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sec_title .sub {
  margin: 1em auto 0;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.3;
}
@media all and (min-width: 1024px) {
  .sec_title {
    font-size: 0.9em;
  }
  .sec_title h2 {
    font-size: 2.66em;
  }
  .sec_title ._mb {
    display: none;
  }
  .sec_title span._pc {
    display: inline;
  }
}

.appointment {
  padding: 15% 0;
  background: url("../img/ribbon.svg") no-repeat 100% 2%/250%;
}
.appointment._85, .appointment._index {
  background: unset;
}
.appointment._85 .bg ._L, .appointment._index .bg ._L {
  position: absolute;
  width: 15em;
  top: 10%;
  left: 0;
}
.appointment._85 .bg ._R, .appointment._index .bg ._R {
  position: absolute;
  width: 18em;
  bottom: 10%;
  right: 0;
}
@media all and (min-width: 1200px) {
  .appointment {
    background-position: 5% 10%;
    background-size: 120%;
  }
}
.appointment .inner .form {
  background-color: #fff;
  position: relative;
  border-radius: 1.35em;
  border: 1px solid var(--blue);
  padding: 3em 0.8em;
  font-weight: 500;
  margin-top: 5.5em;
}
.appointment .inner .form input:not([type=checkbox], [type=radio]), .appointment .inner .form select, .appointment .inner .form .radio, .appointment .inner .form .checkbox {
  padding: 1em 0.5em;
  border-radius: 7px;
  border: 1px solid #ddd;
  outline: none;
  width: 100%;
  font-size: 1em;
}
.appointment .inner .form .radio, .appointment .inner .form .checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  transition: all 0.1s ease-out;
}
.appointment .inner .form .radio input, .appointment .inner .form .checkbox input {
  width: 1.5em;
  height: 1.5em;
}
.appointment .inner .form .radio:hover, .appointment .inner .form .checkbox:hover {
  transform: scale(1.02);
  border: 1px solid #aaa;
}
.appointment .inner .form .radio:has(input:checked), .appointment .inner .form .checkbox:has(input:checked) {
  border: 1px solid var(--blue);
}
.appointment .inner .form select {
  cursor: pointer;
  padding-right: 1.5em;
}
.appointment .inner .form dl {
  margin-bottom: 1.5em;
}
.appointment .inner .form dl dt {
  margin-bottom: 0.7em;
  font-size: 0.96em;
}
.appointment .inner .form dl dt:not(.unecessary):after {
  content: "*";
  color: var(--red_word);
}
.appointment .inner .form dl.type dd, .appointment .inner .form dl.time dd {
  display: flex;
  gap: 0.5em;
}
.appointment .inner .form dl.type._hide, .appointment .inner .form dl.time._hide {
  display: none;
}
.appointment .inner .form dl.birth dd {
  display: flex;
  gap: 0.35em;
}
.appointment .inner .form dl.birth dd .year {
  width: 4em;
}
.appointment .inner .form dl.birth dd .month {
  width: 3em;
}
.appointment .inner .form dl.birth dd .day {
  width: 3em;
}
.appointment .inner .form dl.birth dd .select {
  flex-grow: 1;
}
.appointment .inner .form dl.verification dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35em;
  row-gap: 0.75em;
}
.appointment .inner .form dl.verification dd .line {
  align-content: center;
}
.appointment .inner .form dl.verification dd .input {
  position: relative;
  width: calc((100% - 2em) * 9 / 20);
  flex-grow: 1;
}
.appointment .inner .form dl.verification dd .input._first {
  width: calc((100% - 2em) * 5 / 20);
}
.appointment .inner .form dl.verification dd .verification_btn {
  cursor: pointer;
  align-content: center;
  letter-spacing: 0.1em;
  padding: 0.9em 1.5em;
  border-radius: 99em;
  background-color: #333;
  color: #fff;
  transition: all 0.1s ease-out;
}
.appointment .inner .form dl.verification dd .verification_btn:hover {
  background-color: #ff8933;
  transform: scale(1.02);
}
.appointment .inner .form .check {
  margin-top: 1.5em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5em;
}
.appointment .inner .form .check input[type=checkbox] {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 2em;
  border-radius: 10px;
}
.appointment .inner .form .check .dtl {
  font-size: 1em;
  line-height: 1.35;
}
.appointment .inner .form .check .dtl a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--green);
}
.appointment .inner .form .submit {
  margin-top: 3em;
}
.appointment .inner .form .submit button {
  cursor: pointer;
  position: relative;
  background-color: var(--blue);
  color: #fff;
  border: 0;
  width: 100%;
  border-radius: 99em;
  padding: 1em;
  font-size: 1.35em;
  transition: all 0.1s ease-out;
}
.appointment .inner .form .submit button::after {
  content: "";
  position: absolute;
  width: 0.5em;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-width: 2px 2px 0 0;
  top: 50%;
  right: 2em;
  transform: translate(0, -50%) rotate(45deg);
  transition: right 0.1s ease-out;
}
.appointment .inner .form .submit button:hover {
  background-color: var(--green);
  transform: scale(1.01);
}
.appointment .inner .form .submit button:hover:after {
  right: 1.5em;
}
.appointment .inner .form:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 1.35em;
  top: 0;
  rotate: 3deg;
  background-color: #ABE4E1;
}
.appointment .inner .form .boy ._mb {
  position: absolute;
  top: -4.8em;
  right: 10%;
  width: 10em;
}
.appointment .inner .form .boy ._mb > img {
  position: relative;
  z-index: -1;
}
.appointment .inner .form .boy ._mb .arm {
  position: absolute;
  z-index: 1;
  width: 130%;
  top: 2%;
  right: -25%;
}
@media all and (min-width: 1024px) {
  .appointment {
    padding: 10em 0 3em;
  }
  .appointment .inner {
    max-width: 800px;
  }
  .appointment .inner .form {
    margin-top: 3em;
    padding: 3em 4em;
    border-radius: 2em;
  }
  .appointment .inner .form::before {
    border-radius: 2em;
    left: 1%;
  }
  .appointment .inner .form dl {
    font-size: 1.1em;
  }
  .appointment .inner .form dl.verification dd {
    flex-wrap: nowrap;
  }
  .appointment .inner .form dl.verification dd .input {
    position: relative;
    width: calc((100% - 2em) * 9 / 20);
    flex-grow: 1;
  }
  .appointment .inner .form dl.verification dd .input._first {
    width: calc((100% - 2em) * 5 / 20);
  }
  .appointment .inner .form dl.verification dd .verification_btn {
    flex-shrink: 0;
    width: -moz-max-content;
    width: max-content;
  }
  .appointment .inner .form .boy ._mb {
    display: none;
  }
  .appointment .inner .form .boy ._pc {
    display: block;
    position: absolute;
    width: 30%;
    left: -26%;
    bottom: 5%;
  }
  .appointment .inner .form .boy ._pc .arm {
    position: absolute;
    z-index: -1;
    width: 30%;
    top: 15%;
    left: 60%;
  }
}

.conditions {
  padding: 15% 0;
}
.conditions .sec_title {
  margin-bottom: 0.5em;
}
.conditions .inner .conditions_list a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.conditions .inner .conditions_list dl dt {
  cursor: pointer;
  position: relative;
  padding: 1em 0.5em;
  font-weight: 500;
  font-size: 1.5em;
  border-bottom: 2px solid #ddd;
}
.conditions .inner .conditions_list dl dt:hover {
  background-color: #fafafa;
}
.conditions .inner .conditions_list dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  width: 0.5em;
  aspect-ratio: 1/1;
  border: 2px solid var(--blue);
  border-width: 2px 2px 0 0;
  transform: translate(0, -50%) rotate(135deg);
  transition: transform 0.3s ease-out;
}
.conditions .inner .conditions_list dl dt.open:after {
  transform: translate(0, -50%) rotate(-45deg);
}
.conditions .inner .conditions_list dl dd {
  padding: 1em 0;
  line-height: 1.5;
  font-size: 0.88em;
  color: #7c7c7c;
}
.conditions .inner .conditions_list dl dd ul._disc {
  margin-left: 1.5em;
  list-style: disc;
}
.conditions .inner .conditions_list dl dd ul li ~ li {
  margin-top: 0.75em;
}
@media all and (min-width: 1024px) {
  .conditions {
    padding: 3em 0 5em;
  }
  .conditions .sec_title {
    margin-bottom: 2em;
  }
}

.pc_cta_btn {
  display: none;
}
@media all and (min-width: 1024px) {
  .pc_cta_btn {
    cursor: pointer;
    display: block;
    position: fixed;
    z-index: 8;
    width: 8em;
    right: 1em;
    top: 8em;
    transition: all 0.1s ease-out;
  }
  .pc_cta_btn:hover {
    transform: scale(1.05);
  }
  .pc_cta_btn ~ .pc_cta_btn {
    top: 16em;
  }
}

.pc_cta_tel {
  display: none;
}
@media all and (min-width: 1200px) {
  .pc_cta_tel {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
    position: fixed;
    z-index: 8;
    background-color: #fff;
    padding: 0.75em;
    border-radius: 0.75em;
    border: 1px solid var(--green);
    right: 1.6em;
    top: 8em;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  }
  .pc_cta_tel .icon {
    width: 2.5em;
  }
  .pc_cta_tel .content .caption {
    font-size: 0.7em;
    color: var(--green);
  }
  .pc_cta_tel .content .tel {
    line-height: 1.2;
    font-weight: 600;
    font-size: 1.5em;
    color: var(--blue_dark);
  }
  .pc_cta_tel ~ .pc_cta_btn {
    top: 13em;
  }
  .pc_cta_tel ~ .pc_cta_btn ~ .pc_cta_btn {
    top: 21em;
  }
}

footer {
  position: relative;
  background-color: var(--blue_dark);
  color: #fff;
  padding-bottom: calc(8em + 5%);
}
footer .treasure {
  position: absolute;
  top: 0;
  width: 10em;
  right: 3%;
  transform: translateY(-90%);
  display: none;
}
@media all and (min-width: 1680px) {
  footer .treasure {
    display: block;
  }
}
footer .heart {
  position: absolute;
  top: 0;
  width: 10em;
  right: 3%;
  transform: translateY(-60%);
  display: none;
}
@media all and (min-width: 1680px) {
  footer .heart {
    display: block;
  }
}
footer .goback {
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 2em 0;
  text-align: center;
  color: var(--blue_dark);
  transition: all 0.5s ease-out;
  overflow: hidden;
  background-color: #FFC94F;
}
footer .goback:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 50%;
  height: 150%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) skew(-40deg);
  background: linear-gradient(90deg, transparent 0%, #ffae22 50%, transparent 100%);
  transition: opacity 0.5s ease-out;
  opacity: 0;
}
footer .goback .goback_btn {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  transition: all 0.1s ease-out;
}
footer .goback .goback_btn .arrow {
  margin-left: 1em;
  width: 1em;
  aspect-ratio: 1/1;
  background: url("../img/backTop_arrow.svg") no-repeat center center/contain;
}
footer .goback:hover {
  background-color: #ffd062;
}
footer .goback:hover::before {
  opacity: 1;
}
footer .goback:hover .goback_btn {
  font-weight: 500;
}
footer .goback:hover .goback_btn .arrow {
  animation: arrow-move 0.3s infinite alternate ease-in-out;
}
@keyframes arrow-move {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
footer .logo {
  margin: 0 auto;
  padding: 3em 0;
  width: 70%;
}
footer .cpr {
  font-size: 0.7em;
  text-align: center;
  line-height: 1.5;
  padding: 1em 0;
  border-top: 1px solid #107198;
}
footer .cpr span {
  display: block;
}
@media all and (min-width: 1024px) {
  footer {
    padding-bottom: 0;
  }
  footer .logo {
    padding: 2em 0;
    width: 15em;
  }
  footer .cpr span {
    display: inline-block;
  }
}

.remarkPopup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  font-size: 0.85em;
  display: none;
}
.remarkPopup .mask {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}
.remarkPopup .popupContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1200px;
  background-color: #fff;
  border-radius: 2em;
  padding: 1.5em;
}
.remarkPopup .popupContainer .close {
  position: absolute;
  cursor: pointer;
  border-radius: 99em;
  font-size: 2.5em;
  line-height: 1;
  background-color: var(--green);
  color: #fff;
  width: 1.3em;
  aspect-ratio: 1/1;
  text-align: center;
  align-content: center;
  rotate: 45deg;
  right: -0.35em;
  top: -0.5em;
}
.remarkPopup .popupContainer .popupScroll {
  height: -moz-max-content;
  height: max-content;
  max-height: 70vh;
  overflow-y: auto;
  padding: 0.5em;
}
.remarkPopup .popupContainer .popupScroll::-webkit-scrollbar {
  background-color: #eee;
  width: 5px;
  border-radius: 99em;
}
.remarkPopup .popupContainer .popupScroll::-webkit-scrollbar-thumb {
  border-radius: 99em;
  background-color: #ccc;
}
.remarkPopup .popupContainer dl dt {
  line-height: 1.3;
  font-weight: 600;
  font-size: 1.2em;
  margin-bottom: 0.5em;
}
.remarkPopup .popupContainer dl dd {
  line-height: 1.8;
}
.remarkPopup .popupContainer dl dd ol {
  list-style: decimal;
  padding-left: 1em;
}
.remarkPopup .popupContainer dl dd ol li h5 {
  line-height: 1.5;
  font-weight: 500;
  font-size: 1.1em;
  margin-bottom: 0.3em;
}
.remarkPopup .popupContainer dl dd ol li ~ li {
  margin-top: 0.7em;
}
.remarkPopup .popupContainer dl ~ dl {
  margin-top: 2em;
}
.remarkPopup._open {
  display: block;
}