@charset "UTF-8";
:root {
  --green:#30b4a5;
  --lgreen:#f4fbfa;
  --blue:#203457;
}

/* mixin */
* {
  box-sizing: border-box;
  font-family: "Rubik", "Noto Sans TC", "微軟正黑體", sans-serif;
}
*:focus {
  outline: none;
}

html {
  font-size: 16px;
}
html.fixed {
  height: 100vh;
  overflow: hidden;
}

body {
  font-family: "Rubik", "Noto Sans TC", "微軟正黑體", sans-serif;
  overflow-x: hidden;
  transition: 0.3s;
  position: relative;
  color: #222;
  -webkit-text-size-adjust: 100%;
}
body.fixed {
  height: 100vh;
  overflow: hidden;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
  transition: 0.3s;
}

button {
  font-family: "Rubik", "Noto Sans TC", "微軟正黑體", sans-serif;
}

.unreset {
  padding: 1px 0;
  color: #222;
  letter-spacing: 0.5px;
  font-family: "Rubik", "Noto Sans TC", "微軟正黑體", sans-serif;
}
.unreset:after {
  content: "";
  display: block;
  clear: both;
}

.unreset img {
  max-width: 100%;
  height: auto !important;
}

.unreset p {
  margin: 1.5em 0;
  line-height: 1.7;
}
.unreset p:first-child {
  margin-top: 0;
}
.unreset p:last-child {
  margin-bottom: 0;
}

.unreset table {
  display: table;
  border-collapse: separate;
  border-spacing: 2px;
  border: 1px solid;
  border-color: #222;
}

.unreset tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}

.unreset td,
.unreset th {
  display: table-cell;
  vertical-align: inherit;
  border: 1px solid;
  border-color: #222;
}

.unreset iframe {
  max-width: 100%;
  display: block;
}

/* 編輯器影片RWD */
.unreset .embeddedContent {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.unreset .embeddedContent iframe,
.unreset .embeddedContent object,
.unreset .embeddedContent embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-container {
  margin: 0 auto;
  width: 1440px;
  max-width: 100%;
  padding: 0 40px;
}

sup {
  vertical-align: super;
  font-size: small;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  font-weight: lighter;
}

select {
  font-family: "Rubik", "Noto Sans TC", "微軟正黑體", sans-serif;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 0;
  background: #ccc;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:horizontal {
  background: #000;
  border-radius: 10px;
}

/* 404 */
.error-row {
  background: url(../images/404/error-background.svg) no-repeat;
  background-position: center top;
  max-width: 1400px;
  padding: 60px 25px;
  margin: 40px auto 0 auto;
}
.error-row .img-box {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
}
.error-row .img-box img {
  display: block;
  width: 100%;
}
.error-row .img-box .error-code {
  color: #222;
  font-size: 120px;
  font-weight: bold;
  letter-spacing: 5px;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-57%);
}
.error-row .content {
  margin-top: 50px;
  text-align: center;
}
.error-row .content .title {
  color: #222;
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.error-row .content .des {
  margin-top: 25px;
}
.error-row .content .des p {
  color: #222;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
.error-row .content .des p:not(:last-child) {
  margin-bottom: 5px;
}
.error-row .btn-row {
  margin-top: 80px;
}
.error-row .btn-row .link {
  border-radius: 30px;
  background: #222;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 12px 13px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-decoration: inherit;
  text-transform: uppercase;
  transition: all 0.4s;
  width: 240px;
}
.error-row .btn-row .link:hover {
  background: var(--s-color);
}
@media (max-width: 1440px) {
  .error-row .img-box {
    max-width: 540px;
  }
  .error-row .img-box .error-code {
    font-size: 100px;
  }
  .error-row .btn-row {
    margin-top: 50px;
  }
}
@media (max-width: 1024px) {
  .error-row .img-box {
    max-width: 440px;
  }
  .error-row .img-box .error-code {
    font-size: 70px;
    top: 45%;
  }
  .error-row .btn-row {
    margin-top: 50px;
  }
}
@media (max-width: 640px) {
  .error-row {
    padding: 20px 25px 40px 25px;
    margin: 0 auto 20px auto;
  }
  .error-row .img-box .error-code {
    font-size: 50px;
    top: 45%;
  }
  .error-row .content {
    margin-top: 30px;
  }
  .error-row .content .title {
    font-size: 24px;
  }
  .error-row .content .des {
    margin-top: 15px;
  }
  .error-row .content .des p {
    font-size: 16px;
  }
  .error-row .btn-row {
    margin-top: 30px;
  }
  .error-row .btn-row .link {
    font-size: 17px;
    max-width: 170px;
  }
}

/* 空白狀態 */
.empty-row {
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  max-width: 640px;
}
.empty-row .img-box {
  max-width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.empty-row .img-box img {
  display: block;
  width: 100%;
}
.empty-row .content {
  margin-top: 40px;
  text-align: center;
}
.empty-row .content .title {
  color: #222;
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
.empty-row .content .des {
  color: #888;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  margin-top: 20px;
}
.empty-row .btn-row {
  margin-top: 40px;
}
.empty-row .btn-row .link {
  background: #000;
  color: #fff;
  display: block;
  font-size: 17px;
  margin-left: auto;
  margin-right: auto;
  padding: 13px;
  text-align: center;
  text-decoration: inherit;
  transition: all 0.4s;
  width: 120px;
}
.empty-row .btn-row .link:hover {
  background: #aaa;
}
@media (max-width: 640px) {
  .empty-row .content {
    margin-top: 30px;
  }
  .empty-row .content .title {
    font-size: 26px;
  }
  .empty-row .content .des {
    font-size: 16px;
    margin-top: 15px;
  }
  .empty-row .btn-row {
    margin-top: 30px;
  }
}

.cookies-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(110%);
  transition: all 0.3s;
  z-index: 1;
}
.cookies-box.show {
  transform: translateY(0);
}
.cookies-box .cookies-content {
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  padding: 15px 20px;
}
.cookies-box .cookies-content .des {
  padding-right: 20px;
  width: calc(100% - 100px);
}
.cookies-box .cookies-content .des p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.cookies-box .cookies-content .des a {
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: underline;
}
.cookies-box .cookies-content .des a:hover {
  opacity: 0.5;
}
.cookies-box .cookies-content .btn-confirm {
  border: 1px solid white;
  background: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: block;
  padding: 13px 10px;
  text-align: center;
  width: 100px;
}
.cookies-box .cookies-content .btn-confirm:hover {
  background: white;
  color: #333;
}
@media (max-width: 640px) {
  .cookies-box .cookies-content {
    padding: 20px;
    display: block;
  }
  .cookies-box .cookies-content .des {
    padding-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  .cookies-box .cookies-content .des p,
  .cookies-box .cookies-content .des a {
    font-size: 0.875rem;
  }
  .cookies-box .cookies-content .btn-confirm {
    padding: 10px 8px;
    font-size: 0.875rem;
    width: 100%;
  }
}

/*========== basic mobile ==========*/
@media (max-width: 1440px) {
  .page-container {
    padding: 0 25px;
  }
}
/*========= form ==========*/
.form-style form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.form-style .form-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: 0.3s;
  align-items: center;
}
.form-style .form-box .box-title {
  color: #222;
  margin-bottom: 10px;
  font-size: 1.125rem;
  position: relative;
  padding-left: 20px;
}
.form-style .form-box .box-title .must {
  color: #e60012;
  margin-left: 3px;
  font-size: 0.9375rem;
  transform: translateY(-5px);
}
.form-style .form-box .box-content {
  width: 100%;
}
.form-style .form-box .box-content input[type=text],
.form-style .form-box .box-content input[type=password],
.form-style .form-box .box-content input[type=email],
.form-style .form-box .box-content input[type=date],
.form-style .form-box .box-content input[type=number],
.form-style .form-box .box-content input[type=tel],
.form-style .form-box .box-content textarea {
  background: none;
  border-radius: 0;
  border: none;
  appearance: none;
  width: 100%;
  border: 1px solid #dddddd;
  padding: 8px 20px;
  font-size: 1.0625rem;
  background: #fff;
  color: #222;
  text-align: left;
  transition: 0.3s;
  border-radius: 50px;
}
.form-style .form-box .box-content input[type=text]::placeholder,
.form-style .form-box .box-content input[type=password]::placeholder,
.form-style .form-box .box-content input[type=email]::placeholder,
.form-style .form-box .box-content input[type=date]::placeholder,
.form-style .form-box .box-content input[type=number]::placeholder,
.form-style .form-box .box-content input[type=tel]::placeholder,
.form-style .form-box .box-content textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}
.form-style .form-box .box-content input[type=text]:disabled,
.form-style .form-box .box-content input[type=password]:disabled,
.form-style .form-box .box-content input[type=email]:disabled,
.form-style .form-box .box-content input[type=date]:disabled,
.form-style .form-box .box-content input[type=number]:disabled,
.form-style .form-box .box-content input[type=tel]:disabled,
.form-style .form-box .box-content textarea:disabled {
  background: none;
}
.form-style .form-box .box-content select {
  background: none;
  border-radius: 0;
  border: none;
  appearance: none;
  width: 100%;
  border: 1px solid #dddddd;
  padding: 8px 50px 8px 15px;
  font-size: 1.0625rem;
  color: #222;
  text-align: left;
  border-radius: 50px;
  background: #fff url(../images/select_arrow.svg) right 15px center no-repeat;
  background-size: 9px;
}
.form-style .form-box .box-content select:disabled {
  background: none;
  appearance: none;
}
.form-style .form-box .box-content input[type=text],
.form-style .form-box .box-content input[type=password],
.form-style .form-box .box-content input[type=email],
.form-style .form-box .box-content input[type=date],
.form-style .form-box .box-content input[type=number],
.form-style .form-box .box-content input[type=tel],
.form-style .form-box .box-content select {
  height: 50px;
}
.form-style .form-box .box-content input[type=text]:focus,
.form-style .form-box .box-content input[type=password]:focus,
.form-style .form-box .box-content input[type=email]:focus,
.form-style .form-box .box-content input[type=date]:focus,
.form-style .form-box .box-content input[type=number]:focus,
.form-style .form-box .box-content input[type=tel]:focus,
.form-style .form-box .box-content select:focus {
  border-color: var(--green);
}
.form-style .form-box .box-content textarea {
  padding: 20px;
}
.form-style .form-box .box-content textarea:focus {
  border-color: var(--green);
}
.form-style .form-box .box-content.radio {
  border: 1px solid #dddddd;
  padding: 11px 20px;
  min-height: 50px;
  border-radius: 50px;
}
.form-style .form-box .part {
  display: inline-block;
}
.form-style .form-box .part span {
  margin-left: 5px;
}
.form-style .form-box .part span b {
  font-weight: bold;
}
.form-style .form-box .part:not(:last-child) {
  margin-right: 10px;
}
.form-style .form-box .radiobox,
.form-style .form-box .checkbox {
  font-size: 1rem;
}
.form-style .form-box .radiobox input[type=radio] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  transform: translateY(-3px);
}
.form-style .form-box .checkbox input[type=checkbox] {
  border: 2px solid #222;
  width: 18px;
  height: 18px;
}
.form-style .form-box.half {
  width: calc((100% - 40px) / 2);
}
.form-style .form-box.one-third {
  width: calc((100% - 80px) / 3);
}
.form-style .form-box.quarter {
  width: calc((100% - 120px) / 4);
}
.form-style .form-box.short {
  width: calc((100% - 100px) / 2);
  margin-right: 50px;
}
.form-style .form-box.short .content input[type=text],
.form-style .form-box.short .content input[type=password],
.form-style .form-box.short .content input[type=email],
.form-style .form-box.short .content input[type=date],
.form-style .form-box.short .content input[type=number],
.form-style .form-box.short .content input[type=tel],
.form-style .form-box.short .content select {
  width: calc(100% - 75px);
}
.form-style .form-box.mid {
  width: calc((100% - 100px) / 2);
  margin-right: 50px;
}
.form-style .form-box.row {
  width: 100%;
}
.form-style .form-box:last-child {
  margin-right: 0;
}
.form-style .form-box.captcha {
  justify-content: center;
  margin-top: 20px;
}
.form-style .form-box.captcha .content {
  display: flex;
  align-items: center;
}
.form-style .form-box.captcha .content input {
  flex-shrink: 1;
}
.form-style .form-box.captcha .content img {
  display: inline-block;
  margin-left: 15px;
}
.form-style .form-row-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.form-style .captcha-group {
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-end;
  margin-top: 0px;
}
.form-style .form-btn-list {
  display: flex;
  width: 100%;
  column-gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.form-style .form-btn-list button, .form-style .form-btn-list a {
  background: none;
  border: none;
  cursor: pointer;
  appearance: none;
  display: block;
  transition: 0.3s;
  color: #fff;
  background: #222;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 50px;
  padding: 11px 40px;
}
.form-style .form-btn-list button.row, .form-style .form-btn-list a.row {
  width: 100%;
}
.form-style .form-btn-list .gray button, .form-style .form-btn-list .gray a {
  background: #aaa;
}
.form-style .form-btn-list .gray button:hover, .form-style .form-btn-list .gray a:hover {
  background: var(--blue);
}
.form-style .form-btn-list .send button, .form-style .form-btn-list .send a {
  background: var(--green);
}
.form-style .form-btn-list .send button:hover, .form-style .form-btn-list .send a:hover {
  background: var(--blue);
}
.form-style .form-btn-list .send.red button, .form-style .form-btn-list .send.red a {
  background: #c54040;
}
.form-style .form-btn-list .send.red button:hover, .form-style .form-btn-list .send.red a:hover {
  background: var(--blue);
}
.form-style.center {
  display: flex;
  justify-content: center;
}
.form-style.row {
  margin-top: 25px;
  width: 100%;
}

/*========== form mobile ==========*/
@media (max-width: 960px) {
  .form-style form {
    gap: 20px;
  }
  .form-style .form-box .box-title {
    font-size: 1.0625rem;
    margin-bottom: 5px;
  }
  .form-style .form-box .box-content input[type=text],
  .form-style .form-box .box-content input[type=password],
  .form-style .form-box .box-content input[type=email],
  .form-style .form-box .box-content input[type=date],
  .form-style .form-box .box-content input[type=number],
  .form-style .form-box .box-content input[type=tel],
  .form-style .form-box .box-content textarea {
    padding: 8px 15px;
  }
  .form-style .form-box .box-content input[type=text],
  .form-style .form-box .box-content input[type=password],
  .form-style .form-box .box-content input[type=email],
  .form-style .form-box .box-content input[type=date],
  .form-style .form-box .box-content input[type=number],
  .form-style .form-box .box-content input[type=tel],
  .form-style .form-box .box-content select {
    height: 45px;
  }
  .form-style .form-box.half {
    width: 100%;
  }
  .form-style .form-box.name > input {
    width: 250px;
  }
  .form-style .form-box.name .gender {
    margin-left: 15px;
  }
  .form-style .form-box.captcha {
    width: 100%;
  }
  .form-style .captcha-group {
    flex-wrap: wrap;
  }
  .form-style .form-btn-list {
    margin-top: 20px;
  }
  .form-style .form-btn-list button,
  .form-style .form-btn-list a {
    padding: 15px;
  }
}
@media (max-width: 640px) {
  .form-style .form-box .title {
    padding-left: 10px;
  }
  .form-style .form-box.captcha {
    margin-top: 0;
  }
  .form-style .form-btn-list {
    column-gap: 10px;
    margin-top: 0;
  }
  .form-style .form-btn-list button,
  .form-style .form-btn-list a {
    font-size: 0.9375rem;
    padding: 11px 20px;
  }
}
/*========== header ==========*/
:root {
  --header_h: 75px;
}

header {
  position: fixed;
  z-index: 11;
  width: 100%;
  top: 0;
  padding: 17px 0;
  transition: 1s;
  height: var(--header_h);
  align-items: center;
  display: flex;
}
header .logo {
  position: relative;
  transition: 0.3s;
}
header .logo a {
  display: block;
  /* aspect-ratio: 1406/213; */
  aspect-ratio: 539/103;
  width: 260px;
  background: url(../images/logo-w.svg) no-repeat;
  background-size: contain;
  background-position: center left;
}
header .logo a img {
  display: block;
  max-width: 100%;
}
header > .page-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.scroll {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
header.scroll .logo a {
  background: url(../images/logo.svg) no-repeat;
  background-size: contain;
  background-position: center left;
}
header.scroll .main-menu ul.layer1 > li > a {
  color: #111;
}
header.scroll .phone-bar .bar {
  background: #333;
}
header.scroll .phone-bar .bar::before, header.scroll .phone-bar .bar:after {
  background: #333;
}

.main-menu ul.layer1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  position: relative;
  gap: 0 20px;
}
.main-menu ul.layer1 > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul.layer1 > li {
  position: relative;
}
.main-menu ul.layer1 > li > a {
  font-size: 1.0625rem;
  color: #fff;
  padding: 10px 20px 11px 20px;
  line-height: 1;
  border-radius: 50px;
  display: block;
  border: 1px solid transparent;
}
.main-menu ul.layer1 > li.active > a {
  border-color: #eee;
  color: #111;
  background: #fff;
}
.main-menu ul.layer1 > li:hover > a {
  color: #111;
  background: #fff;
  border-color: #eee;
}
.main-menu ul.layer1 > li.registration-btn > a {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  border-color: var(--green);
}
.main-menu ul.layer1 > li.registration-btn > a:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.main-menu ul.layer2 {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 120px;
  top: 100%;
  padding-top: 5px;
  display: none;
}
.main-menu ul.layer2 > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul.layer2 > li {
  overflow: hidden;
}
.main-menu ul.layer2 > li > a {
  display: block;
  color: #111;
  padding: 8px 5px;
  text-align: center;
  background: #fff;
}
.main-menu ul.layer2 > li:hover > a {
  color: #fff;
  background: var(--green);
}
.main-menu ul.layer2 > li:first-child {
  border-radius: 5px 5px 0 0;
}
.main-menu ul.layer2 > li:last-child {
  border-radius: 0 0 5px 5px;
}
.phone-bar {
  z-index: 1;
  display: none;
}
.phone-bar.active .bar {
  transform: rotate(-315deg);
}
.phone-bar.active .bar::before {
  opacity: 0;
}
.phone-bar.active .bar::after {
  transform: rotate(90deg) translate(-35%);
}
.phone-bar .group {
  position: relative;
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.phone-bar .bar {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 1px;
  transition: 800ms all;
  background: #fff;
}
.phone-bar .bar::before, .phone-bar .bar::after {
  content: "";
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 1px;
  position: relative;
  transition: 400ms all;
  background: #fff;
}
.phone-bar .bar::before {
  top: -8px;
}
.phone-bar .bar::after {
  bottom: -6px;
}

.header-sns ul {
  justify-content: flex-end;
}

.sns-style ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  column-gap: 8px;
  justify-content: flex-end;
}
.sns-style ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sns-style ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #fff;
  width: 36px;
  height: 36px;
}
.sns-style ul li .pic {
  width: 16px;
  height: 16px;
  transition: 0.3s;
}
.sns-style ul li .pic img {
  display: block;
  max-width: 100%;
  margin: auto;
}
.sns-style ul li.facebook a .pic {
  background: url(../images/sns_facebook.svg) no-repeat center;
}
.sns-style ul li.facebook a:hover {
  border-color: #395693;
}
.sns-style ul li.facebook a:hover .pic {
  background: url(../images/sns_facebook_h.svg) no-repeat center;
}
.sns-style ul li.line a .pic {
  width: 19px;
  height: 19px;
  background: url(../images/sns_line.svg) no-repeat center;
}
.sns-style ul li.line a:hover {
  border-color: #4caf50;
}
.sns-style ul li.line a:hover .pic {
  background: url(../images/sns_line_h.svg) no-repeat center;
}
.sns-style ul li.mail a .pic {
  background: url(../images/sns_mail.svg) no-repeat center;
}
.sns-style ul li.mail a:hover {
  border-color: #30b4a5;
}
.sns-style ul li.mail a:hover .pic {
  background: url(../images/sns_mail_h.svg) no-repeat center;
}

/*========== header mobile ==========*/
@media (max-width: 1280px) {
  .main-menu ul.layer1 {
    gap: 0 15px;
  }
  .main-menu ul.layer1 > li > a {
    padding: 9px 14px 10px 14px;
    font-size: 1rem;
  }
}
@media (max-width: 1024px) {
  .main-menu ul.layer1 > li > a {
    padding: 9px 10px 10px 10px;
  }
}
@media (max-width: 960px) {
  .phone-bar {
    display: block;
  }
  header .right-block {
    background: #fff;
    position: absolute;
    top: var(--header_h);
    width: 100%;
    left: 0;
    border-top: 1px solid #eee;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.15);
    display: none;
  }
  .main-menu {
    margin-top: 0;
    padding: 25px;
  }
  .main-menu ul.layer1 {
    flex-wrap: wrap;
    gap: 0;
  }
  .main-menu ul.layer1 > li {
    width: 100%;
  }
  .main-menu ul.layer1 > li > a {
    padding: 12px 20px;
    text-align: center;
    font-weight: normal;
    color: #111;
  }
  .main-menu ul.layer1 > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .main-menu ul.layer2 {
    position: static;
    width: 100%;
    transform: none;
  }
  .main-menu ul.layer2 > li > a {
    background: #f1f1f1;
    padding: 12px 10px;
  }
  .main-menu ul.layer2 > li:first-child {
    border-radius: 15px 15px 0 0;
  }
  .main-menu ul.layer2 > li:last-child {
    border-radius: 0 0 15px 15px;
  }
  .header-sns {
    display: none;
  }
  .header-sns ul {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .sns-style ul {
    column-gap: 10px;
  }
  .sns-style ul li a {
    width: 45px;
    height: 45px;
  }
  .sns-style ul li .pic {
    width: 21px;
    height: 21px;
  }
  .sns-style ul li.line a .pic {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  :root {
    --header_h: 60px;
  }
  header {
    padding: 5px 0;
  }
  header .logo a {
    width: 200px;
    height: 38px;
  }
}
/*===== footer =====*/
footer {
  background: var(--blue);
  padding: 44px 0;
  line-height: 1.5;
}
footer > .page-container {
  display: flex;
  justify-content: space-between;
}

.footer-b {
  color: #fff;
  font-weight: 300;
}
.footer-b .company {
  font-weight: 500;
}
.footer-b ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.footer-b ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-b ul li.address a {
  color: #fff;
}
.footer-b ul li.address a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-b ul li.tel {
  display: inline-block;
  margin-right: 15px;
}
.footer-b ul li.email {
  display: inline-block;
}
.footer-b ul li.email a {
  color: #fff;
}
.footer-b ul li.email a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-b ul.sns {
  display: flex;
  gap: 10px 15px;
  margin-top: 5px;
  align-items: center;
}
.footer-b ul.sns li a {
  font-size: 1.125rem;
  color: #fff;
}
.footer-b ul.sns li.instagram a {
  font-size: 1.25rem;
}
.footer-b ul.sns li a:hover {
  opacity: .65;
}
.footer-b.footer-b3 {
  min-width: 350px;
}

.copyright-block {
  color: #fff;
  line-height: 1.5;
}
.copyright-block div:not(:last-child) {
  margin-bottom: 3px;
}

.copyright {
  text-align: right;
}

.iware {
  text-align: right;
  color: #fff;
  font-size: 0.8125rem;
}
.iware a {
  color: #fff;
}
.iware a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.iware a b {
  font-weight: normal;
}

/*========== footer mobile ==========*/
@media (max-width: 960px) {
  footer > .page-container {
    flex-wrap: wrap;
  }
  .footer-b {
    width: 50%;
  }
  .footer-b.footer-b3 {
    min-width: initial;
    width: 100%;
    margin-top: 20px;
  }
  .copyright {
    text-align: left;
  }
  .iware {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .footer-b {
    width: 100%;
  }
  .footer-b.footer-b2 {
    margin-top: 15px;
  }
  .footer-b.footer-b3 {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .footer-b {
    font-weight: normal;
  }
  .footer-b .company {
    font-size: 1.125rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
  }
  .iware {
    font-size: 1rem;
  }
}
/*===== page main =====*/
.page-article-block {
  padding: 60px 0 100px 0;
}

.breadCrumb-block {
  background: var(--lgreen);
  padding-top: 30px;
}

.page-main-title {
  color: #111;
  font-weight: 300;
  font-size: 2.125rem;
  letter-spacing: 2px;
  padding-bottom: 30px;
  position: relative;
  margin-top: 15px;
  line-height: 1;
}
.page-main-title:after {
  content: "";
  display: block;
  width: 60px;
  height: 10px;
  background: var(--green);
  position: absolute;
  left: 0;
  bottom: 0;
}

/*===== breadCrumb =====*/
.breadCrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.breadCrumb ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadCrumb ul li {
  color: var(--blue);
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: normal;
}
.breadCrumb ul li a {
  color: #999999;
  font-size: 1rem;
  font-weight: normal;
}
.breadCrumb ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.breadCrumb ul li:not(:last-child) {
  position: relative;
}
.breadCrumb ul li:not(:last-child):after {
  content: "";
  display: inline-block;
  margin: 0 15px 0 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999999;
  vertical-align: middle;
  transform: translateY(-2px);
}
.breadCrumb ul li.home {
  position: relative;
  padding-left: 25px;
}
.breadCrumb ul li.home::before {
  content: "";
  display: block;
  font-weight: bold;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 19px;
  background: url(../images/icon_home.svg) no-repeat center;
}
/*===== page banner =====*/
.page-banner {
  position: relative;
}
.page-banner img,
.page-banner source {
  display: block;
  max-width: 100%;
  margin: auto;
}
/*===== aside & 頁面框架 =====*/
aside {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}
aside .aside-title {
  color: var(--blue);
  font-size: 2.5rem;
}
aside ul.layer1 {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-left: auto;
  min-width: 50%;
  align-self: center;
  justify-content: flex-end;
}
aside ul.layer1 > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
aside ul.layer1 > li > a {
  color: var(--blue);
  background: #eeeeee;
  border-radius: 50px;
  padding: 15px 30px;
  line-height: 1;
  font-size: 1.25rem;
  display: block;
}
aside ul.layer1 > li > a:hover {
  background: #555;
  color: #fff;
}
aside ul.layer1 > li.active > a {
  color: #fff;
  background: var(--blue);
}
/*===== 頁面標題 =====*/
.article-detailinfo-block {
  background-image: linear-gradient(to top, #fff 0, #fff 15%, transparent 15%, transparent 100%), url(../images/bg_blue.jpg);
  padding-top: 60px;
  margin-top: -60px;
}
.article-detailinfo-block > .page-container {
  display: flex;
}
.article-detailinfo-block + .detailinfo-unreset {
  margin-top: 60px;
}

.page-detail-title-block {
  padding-left: 60px;
  padding-top: 60px;
  flex: 1;
}

.page-detail-title {
  font-size: 1.625rem;
  font-weight: bold;
  color: #222;
}

.page-detail-pic{
  width: calc(680 / 1360 * 100%);
}
.page-detail-pic figure{
  margin: 0;
}
.page-detail-pic figure .pic{
}
.page-detail-pic figure .pic img{
  display: block;
  max-width: 100%;
}


.page-detail-info .date {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--blue);
  border: 1px solid #e0e0e0;
  padding: 7px 15px;
  border-radius: 50px;
  display: inline-block;
  line-height: 1;
  margin: 10px 0;
  background: #fff;
}
.page-detail-info > div:not(:last-child) {
  margin-right: 20px;
}

.page-share {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.page-share .text {
  font-size: 1.0625rem;
  position: relative;
}
.page-share .text::before {
  content: "";
  display: inline-block;
  background: url(../images/icon_share.svg) no-repeat;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
  margin-right: 5px;
}
.page-share .a2a_kit {
  display: flex;
}
.page-share .a2a_kit a .pic {
  width: 30px;
  height: 30px;
}
.page-share .a2a_kit a .pic img {
  display: block;
  max-width: 100%;
  transition: 0.3s;
}
.page-share .a2a_kit a:not(:last-child) {
  margin-right: 10px;
}
.page-share .a2a_kit a:hover .pic img {
  transform: scale(1.2);
}

/*===== pagination =====*/
.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 80px;
}
.pagination .page_num {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 0.9375rem;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #222;
  border: 1px solid transparent;
}
.pagination .page_num.active {
  background: var(--blue);
  color: #fff;
}
.pagination .page_num.active:hover {
  background: var(--blue);
  color: #fff;
}
.pagination .page_num:hover {
  background: #eee;
}
.pagination .page_arrow {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
}
.pagination .page_arrow:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pagination .page_arrow.prev {
  margin-right: 20px;
}
.pagination .page_arrow.next {
  margin-left: 20px;
}
.pagination .page_arrow .text {
  display: inline-block;
}
.pagination .page_arrow .icon {
  width: 21px;
  height: 21px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}
.pagination .page_arrow .icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.pagination .page_dot {
  display: inline-block;
  padding: 10px;
  text-align: center;
  margin: 0 3px;
}
.pagination .page_select {
  display: inline-block;
  margin-left: 20px;
}
.pagination .page_select .num_input {
  background: none;
  border-radius: 0;
  border: none;
  appearance: none;
  font-size: 0.9375rem;
  width: 40px;
  height: 35px;
  padding: 3px 5px;
  border-radius: 30px;
  text-align: center;
  background: #f0f0f0;
  /* 隱藏箭頭 */
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
  -moz-appearance: textfield;
}
.pagination .page_select .num_input::-webkit-outer-spin-button, .pagination .page_select .num_input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pagination .page_select .txt {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

/*===== btn-style =====*/
.page-btn {
  text-align: center;
  margin-top: 60px;
}
.page-btn a {
  display: inline-block;
  color: #fff;
  background: var(--blue);
  border-radius: 50px;
  padding: 13px 40px;
  line-height: 1;
  font-size: 1.0625rem;
}
.page-btn a:hover {
  background: var(--green);
}
.page-btn button {
  appearance: none;
  background: none;
  border: none;
  display: block;
  cursor: pointer;
}
.page-btn-block {
  background: #edf5fa;
}
.page-btn-block .page-container {
  display: flex;
}
.page-btn-block .detail-btn a {
  display: inline-flex;
  align-items: center;
  padding: 18px 20px;
  color: #222222;
}
.page-btn-block .detail-btn a:hover {
  background: var(--blue);
  color: #fff;
}
.page-btn-block .detail-btn .icon {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}
.page-btn-block .detail-btn.prev .icon {
  background: url(../images/icon_prev.svg) no-repeat;
  margin-right: 5px;
}
.page-btn-block .detail-btn.prev:hover .icon {
  background: url(../images/icon_prev_w.svg) no-repeat;
}
.page-btn-block .detail-btn.next {
  margin-left: auto;
}
.page-btn-block .detail-btn.next .icon {
  background: url(../images/icon_next.svg) no-repeat;
  margin-left: 5px;
}
.page-btn-block .detail-btn.next:hover .icon {
  background: url(../images/icon_next_w.svg) no-repeat;
}

.temporary-pic img {
  display: block;
  max-width: 100%;
}

/*========== pageBasic mobile ==========*/
@media (max-width: 1280px) {
  .page-article-block {
    padding: 50px 0 80px 0;
  }
  .article-detailinfo-block {
    padding-top: 50px;
    margin-top: -50px;
  }
  .article-detailinfo-block {
    background-image: linear-gradient(to top, #fff 0, #fff 40px, transparent 40px, transparent 100%), url(../images/bg_blue.jpg);
  }
  .article-detailinfo-block + .detailinfo-unreset {
    margin-top: 50px;
  }
  .page-detail-pic {
    width: 40%;
  }
  .page-detail-title-block {
    padding-left: 40px;
    padding-top: 20px;
  }
  .page-detail-title {
    font-size: 1.375rem;
  }
  aside {
    margin-bottom: 40px;
  }
  aside .aside-title {
    font-size: 2.125rem;
  }
  aside ul.layer1 {
    gap: 10px;
  }
  aside ul.layer1 > li > a {
    font-size: 1.125rem;
    padding: 12px 20px;
  }
}
@media (max-width: 960px) {
  .page-main-title {
    font-size: 1.75rem;
    padding-bottom: 20px;
  }
  .page-main-title:after {
    height: 6px;
  }
  .breadCrumb-block {
    padding-top: 20px;
  }
  .page-detail-pic {
    width: 45%;
  }
  .article-detailinfo-block {
    background-image: linear-gradient(to top, #fff 0, #fff 20px, transparent 20px, transparent 100%), url(../images/bg_blue.jpg);
  }
  .article-detailinfo-block + .detailinfo-unreset {
    margin-top: 40px;
  }
  .page-detail-title-block {
    padding-left: 30px;
  }
  .page-detail-title {
    font-size: 1.25rem;
  }
  .page-btn {
    margin-top: 40px;
  }
  .page-btn a {
    padding: 11px 25px;
    font-size: 1rem;
  }
}
@media (max-width: 640px) {
  .page-banner .pic {
    height: 150px;
  }
  .page-banner img,
  .page-banner source {
    display: block;
    max-width: 100%;
    margin: auto;
    object-fit: cover;
    height: 100%;
    object-position: -100px center;
  }
  .page-article-block {
    padding: 40px 0 60px 0;
  }
  .article-detailinfo-block {
    padding-top: 40px;
    margin-top: -40px;
  }
  .article-detailinfo-block + .detailinfo-unreset {
    margin-top: 40px;
  }
  .pagination {
    margin-top: 40px;
  }
  .pagination .page_num {
    width: 35px;
    height: 35px;
    font-size: 0.875rem;
  }
  .pagination .page_arrow .text {
    display: none;
  }
  .pagination .page_arrow.prev {
    margin-right: 10px;
  }
  .pagination .page_arrow.next {
    margin-left: 10px;
  }
  .pagination .page_arrow .icon {
    width: 30px;
    height: 30px;
  }
  .pagination .page_select {
    display: block;
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .page-detail-pic {
    width: 100%;
  }
  .article-detailinfo-block {
    background-image: url(../images/bg_blue.jpg);
    padding-bottom: 40px;
  }
  .article-detailinfo-block > .page-container {
    flex-wrap: wrap;
  }
  .page-detail-title-block {
    padding: 20px 20px 0 20px;
  }
  .page-detail-title {
    font-weight: 500;
  }
  .breadCrumb ul li:not(:last-child):after {
    margin: 0 10px 0 7px;
  }
  aside {
    margin-bottom: 30px;
    gap: 15px;
  }
  aside .aside-title {
    font-size: 1.875rem;
  }
  aside ul.layer1 {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
  aside ul.layer1 > li > a {
    padding: 10px 15px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .page-article-block {
    padding: 40px 0 50px 0;
  }
  .page-main-title {
    font-size: 1.5rem;
    font-weight: normald;
  }
  .pagination .page_num {
    width: 30px;
    height: 30px;
  }
  .pagination .page_arrow.prev {
    margin-right: 5px;
  }
  .pagination .page_arrow.next {
    margin-left: 5px;
  }
  .pagination .page_arrow .icon {
    width: 26px;
    height: 26px;
  }
  .article-detailinfo-block {
    padding-bottom: 30px;
  }
  .page-detail-title-block {
    padding: 20px 10px 0 10px;
  }
  .page-btn {
    margin-top: 30px;
  }
  .page-btn a {
    font-size: 0.9375rem;
  }
  aside .aside-title {
    font-size: 1.625rem;
  }
}
/*========= index ==========*/
.index-block-title {
  text-align: center;
  color: #111111;
  font-size: 2.125rem;
  font-weight: 300;
  margin-bottom: 30px;
}
.index-block-title .en {
  color: var(--green);
  font-weight: bold;
  font-size: 0.875rem;
  margin-top: 10px;
}

/*========== index-banner ==========*/
.index-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.index-banner .swiper {
  transform-style: preserve-3d;
}
.index-banner .swiper-wrapper {
  position: relative;
}
.index-banner .swiper-slide {
  position: relative;
}
.index-banner .swiper-slide figure {
  margin: 0;
  padding: 0;
  display: block;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.index-banner .swiper-slide figure img {
  display: block;
  object-fit: cover;
  object-position: center;
  /* 上下左右置中 */
  aspect-ratio: 1920/1080;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
}
.index-banner .swiper-slide .content {
  position: absolute;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 40px;
  opacity: 0;
  top: 60%;
  transition: 1s;
}
.index-banner .swiper-slide .content .txt {
  font-size: 3.125rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.index-banner .swiper-slide .content .btn-list {
  margin-top: 40px;
  display: flex;
  gap: 10px 20px;
  justify-content: center;
}
.index-banner .swiper-slide .content .btn-list .btn-style a {
  font-size: 1.125rem;
  padding: 12px 20px;
  line-height: 1;
  border-radius: 50px;
}
.index-banner .swiper-slide .content .btn-list .btn-style.white a {
  color: #333;
  background: #fff;
  display: block;
  border: 1px solid #fff;
}
.index-banner .swiper-slide .content .btn-list .btn-style.white a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.index-banner .swiper-slide .content .btn-list .btn-style.e-white a {
  color: #fff;
  display: block;
  border: 1px solid #fff;
}
.index-banner .swiper-slide .content .btn-list .btn-style.e-white a:hover {
  background: var(--green);
  border-color: var(--green);
}
.index-banner .swiper-slide.video figure {
  position: relative;
  width: 100%;
}
.index-banner .swiper-slide.video figure iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.index-banner .swiper-slide.video figure video {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center center;
  background-size: contain;
  object-fit: cover;
}
.index-banner .swiper-slide.swiper-slide-active .content {
  top: 50%;
  opacity: 1;
  transition-timing-function: ease-in;
}
.index-banner .swiper-slide video::-webkit-media-controls-enclosure {
  display: none;
}
.index-banner .swiper-button-block {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 1;
}
.index-banner .swiper-pagination {
  position: absolute;
  bottom: 40px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
.index-banner .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.index-banner .swiper-pagination-bullet-active {
  background: var(--green);
}
.index-banner .swiper-button {
  position: static;
}
.index-banner .index-swiper-prev,
.index-banner .index-swiper-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.index-banner .index-swiper-prev img,
.index-banner .index-swiper-next img {
  width: 10px;
  aspect-ratio: 5/9;
  display: block;
}
.index-banner .index-swiper-prev:hover,
.index-banner .index-swiper-next:hover {
  background: var(--green);
}
.index-banner .index-swiper-prev.swiper-button-lock,
.index-banner .index-swiper-next.swiper-button-lock {
  display: none;
}
.index-banner .index-swiper-next {
  transform: rotate(180deg);
}

/*========== index-subjects ==========*/
.index-subjects {
  padding: 70px 0;
}
.index-subjects .swiper-button-block {
  display: flex;
  gap: 12px;
  z-index: 1;
  margin-top: 40px;
  justify-content: center;
}
.index-subjects .swiper-prev,
.index-subjects .swiper-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.index-subjects .swiper-prev img,
.index-subjects .swiper-next img {
  width: 10px;
  aspect-ratio: 5/9;
  display: block;
}
.index-subjects .swiper-prev:hover,
.index-subjects .swiper-next:hover {
  background: var(--green);
}
.index-subjects .swiper-prev.swiper-button-lock,
.index-subjects .swiper-next.swiper-button-lock {
  display: none;
}
.index-subjects .swiper-next {
  transform: rotate(180deg);
}

.index-subjects-list {
  overflow: hidden;
}

.index-subjects-box a:hover .content .title {
  bottom: 25%;
  transform: translate(-50%, -50%);
}
.index-subjects-box a:hover .content .more {
  opacity: 1;
}
.index-subjects-box figure {
  margin: 0;
  position: relative;
}
.index-subjects-box figure .pic {
  position: relative;
  padding-bottom: 166.1538461538%;
  text-align: center;
  overflow: hidden;
  height: 0;
}
.index-subjects-box figure .pic img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-subjects-box figure .pic iframe,
.index-subjects-box figure .pic object,
.index-subjects-box figure .pic embed {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.index-subjects-box .content {
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.4s;
}
.index-subjects-box .title {
  width: 100%;
  padding: 40px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.index-subjects-box .title .tw {
  font-size: 2.125rem;
  font-weight: bold;
}
.index-subjects-box .title .en {
  font-size: 1.125rem;
}
.index-subjects-box .more {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: #fff;
  opacity: 0;
  transition: 0.4s;
}
.index-subjects-box .more i {
  margin-left: 8px;
}

/*========== index-other-clinics ==========*/
.index-other-clinics {
  width: 100%;
  position: absolute;
  bottom: 90px;
  z-index: 1;
}

.index-other-clinics-list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.index-other-clinics-box {
  width: calc((100% - 60px) / 2);
  width: 570px;
  display: flex;
}
.index-other-clinics-box.box1 {
  background: var(--green);
}
.index-other-clinics-box.box2 {
  background: var(--blue);
}
.index-other-clinics-box .title {
  width: 100px;
  padding: 20px;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
}
.index-other-clinics-box .title span {
  display: block;
}
.index-other-clinics-box .content {
  flex: 1;
  padding: 14px 35px 15px 35px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.index-other-clinics-box .content .link ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.index-other-clinics-box .content .link ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.index-other-clinics-box .content .link ul li a {
  font-size: 1.0625rem;
  font-weight: 300;
  color: #111111;
}
.index-other-clinics-box .content .link ul li a:hover {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.index-other-clinics-box .content .link ul li:not(:last-child) {
  margin-bottom: 3px;
}
.index-other-clinics-box .content .sns-style {
  width: 125px;
}

/*========== index-clinics-hours ==========*/
.index-clinics-hours {
  background: url(../images/blue_bg.png) no-repeat top center;
  padding-top: 70px;
}

.index-clinics-hours-date {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: var(--blue);
  font-weight: 500;
}

.index-clinics-hours-table .table-bg {
  background: #fff;
  padding: 8px;
  border-radius: 8px;
}
.index-clinics-hours-table .table-rwd {
  width: 100%;
  overflow: auto;
}
.index-clinics-hours-table table {
  width: 100%;
  min-width: 800px;
  text-align: center;
  font-size: 1.0625rem;
  border-collapse: collapse;
}
.index-clinics-hours-table table .grid1 {
  width: 270px;
  font-weight: 300;
}
.index-clinics-hours-table table thead th {
  padding: 10px 20px;
  color: #fff;
  background: #757575;
  font-weight: 400;
  border: 1px solid #fff;
}
.index-clinics-hours-table table thead th .en {
  display: inline-block;
  margin-left: 5px;
  color: var(--green);
}
.index-clinics-hours-table table thead th .day {
  font-size: 0.8125rem;
  display: block;
}
.index-clinics-hours-table table thead th.grid1 {
  background: var(--green);
}
.index-clinics-hours-table table tbody tr:nth-child(even) td {
  background: #f7f7f7;
}
.index-clinics-hours-table table tbody td {
  border: 1px solid #eee;
  padding: 10px;
  font-weight: 400;
}
.index-clinics-hours-table .table-info {
  width: 100%;
  border-bottom: 1px solid #757575;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 18px 20px;
  color: #656565;
}
.index-clinics-hours-table .table-info > div:not(:last-child)::after {
  content: "/";
  display: inline-block;
  font-weight: 300;
  color: #cccccc;
  margin: 0 10px;
}
.index-clinics-hours-table .table-info .location a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.index-clinics-hours-table .table-info .location a:hover {
  color: var(--green);
}
.index-clinics-hours-table .table-info .other-txt {
  font-weight: 300;
}
.index-clinics-hours-table .table-info .other-txt.red {
  color: #d90000;
}

.index-clinics-hours-table2 .table-rwd {
  width: 100%;
  overflow: auto;
}
.index-clinics-hours-table2 table {
  width: 100%;
  text-align: center;
  font-size: 1.0625rem;
  border-collapse: collapse;
}
.index-clinics-hours-table2 table .grid1 {
  width: 110px;
}
.index-clinics-hours-table2 table thead th {
  padding: 10px 20px;
  color: #fff;
  background: #757575;
  border: 1px solid #fff;
  font-weight: 400;
}
.index-clinics-hours-table2 table thead th .day {
  font-size: 0.8125rem;
  display: block;
}
.index-clinics-hours-table2 table tbody tr:nth-child(even) td:not(.grid1) {
  background: #f7f7f7;
}
.index-clinics-hours-table2 table tbody td {
  border: 1px solid #eee;
  padding: 10px;
}
.index-clinics-hours-table2 table tbody td .en {
  display: block;
}
.index-clinics-hours-table2 table tbody td.grid1 {
  background: var(--green);
  color: #fff;
}
.index-clinics-hours-table2 table tbody td .subjects {
  display: block;
  color: var(--green);
}
.index-clinics-hours-table2 .table-info {
  width: 100%;
  border-bottom: 1px solid #757575;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: 18px 20px;
  color: #656565;
}
.index-clinics-hours-table2 .table-info > div:not(:last-child)::after {
  content: "/";
  display: inline-block;
  font-weight: 300;
  color: #cccccc;
  margin: 0 10px;
}
.index-clinics-hours-table2 .table-info .location a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.index-clinics-hours-table2 .table-info .location a:hover {
  color: var(--green);
}
.index-clinics-hours-table2 .table-info .other-txt.red {
  color: #d90000;
}

/*========== index-news ==========*/
.index-news {
  padding-top: 70px;
  padding-bottom: 70px;
}

/*========== index-service ==========*/
.index-service {
  padding-top: 70px;
}

.index-service-block {
  padding: 150px 0 140px 0;
  background: url(../images/index_service_bg.jpg) no-repeat;
  background-size: cover;
}

.index-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}

.index-service-box {
  background: #fff;
  border-radius: 10px;
  width: calc((100% - 45px) / 4);
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
.index-service-box.onethird {
  width: calc((100% - 30px) / 3);
}
.index-service-box.long {
  width: calc((100% - 15px) / 2);
}
.index-service-box figure {
  margin: 0;
  padding: 0;
  width: 80px;
  height: 80px;
}
.index-service-box figure .pic img {
  display: block;
  max-width: 100%;
}
.index-service-box .title {
  width: calc(100% - 80px);
  color: #111111;
  padding-left: 15px;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.6;
}
.index-service-box .title b {
  display: block;
}
.index-service-box.row {
  width: 100%;
}

.page-service-box {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px dashed #ccc;
  align-items: center;
}
.page-service-box .pic-left {
  width: 150px;
  padding: 20px;
  text-align: center;
  background: url(../images/bg_blue.jpg);
  border-radius: 10px;
}
.page-service-box .pic-left .title {
  margin-top: 10px;
  color: #111111;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.6;
}
.page-service-box .pic-left .title b {
  display: block;
}
.page-service-box figure {
  margin: auto;
  padding: 0;
  width: 80px;
  height: 80px;
}
.page-service-box figure .pic img {
  display: block;
  max-width: 100%;
}
.page-service-box .content {
  width: calc(100% - 150px);
  padding-left: 30px;
}
.page-service-box .content .box {
  display: flex;
  font-size: 18px;
}
.page-service-box .content .box:not(:last-child) {
  margin-bottom: 10px;
}
.page-service-box .content .box b {
  width: 80px;
}
.page-service-box .content .box p {
  flex: 1;
  margin: 0;
  color: #555;
}

/*========== index-link ==========*/
.index-link {
  padding: 16px 0;
  background: var(--lgreen);
}

.index-link-list {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 40px;
}
.index-link-list .swiper-next,
.index-link-list .swiper-prev {
  font-size: 1.125rem;
  color: #717978;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  z-index: 1;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.index-link-list .swiper-next:hover,
.index-link-list .swiper-prev:hover {
  background: var(--blue);
  color: #fff;
}
.index-link-list .swiper-prev {
  left: 0;
}
.index-link-list .swiper-next {
  right: 0;
}

.index-link-box a:hover figure {
  opacity: 0.65;
}
.index-link-box figure {
  margin: 0;
  transition: 0.3s;
}
.index-link-box figure .pic {
  position: relative;
  padding-bottom: 54.2857142857%;
  text-align: center;
  overflow: hidden;
  height: 0;
}
.index-link-box figure .pic img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-link-box figure .pic iframe,
.index-link-box figure .pic object,
.index-link-box figure .pic embed {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.index-link-box figure .pic img {
  width: initial;
  height: initial;
  max-width: 100%;
  max-height: 100%;
}

.index-location {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 10;
  display: none;
}
.index-location .flex-row {
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.index-location .map-block {
  width: 62.5%;
}
.index-location .map-block .map {
  display: block;
  width: 100%;
  height: 400px;
}
.index-location .map-block .map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.index-location .location-block {
  width: 37.5%;
  padding: 5%;
}
.index-location .index-block-title {
  text-align: left;
}
.index-location .index-location-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.0625rem;
  color: #111;
}
.index-location .index-location-info ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.index-location .index-location-info ul li:not(:last-child) {
  margin-bottom: 5px;
}
.index-location .index-location-info ul li.b {
  font-weight: bold;
}
.index-location .esc {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.index-location .esc::before, .index-location .esc:after {
  content: "";
  display: block;
  position: absolute;
  width: 22px;
  height: 1px;
  background: #111;
  transition: 0.3s;
}
.index-location .esc::before {
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 10px;
}
.index-location .esc::after {
  transform: rotate(135deg);
  left: 0;
  top: 10px;
}
.index-location .esc:hover::before, .index-location .esc:hover:after {
  background: var(--green);
}

.index-flex-group {
  display: flex;
  align-items: center;
}
.index-flex-group .text-block {
  width: 50%;
  padding: 60px;
}
.index-flex-group .btn-list {
  margin-top: 60px;
  display: flex;
  gap: 10px 20px;
}
.index-flex-group .btn-list .btn-style a {
  font-size: 1.125rem;
  padding: 12px 20px;
  line-height: 1;
  border-radius: 50px;
}
.index-flex-group .btn-list .btn-style.blue a {
  color: #fff;
  background: var(--blue);
  display: block;
}
.index-flex-group .btn-list .btn-style.blue a:hover {
  background: var(--green);
}
.index-flex-group .pic-block {
  width: 50%;
  height: 100vh;
  overflow: hidden;
}
.index-flex-group .pic-block figure {
  height: inherit;
  margin: 0;
}
.index-flex-group .pic-block figure .pic {
  height: inherit;
  position: relative;
  padding-bottom: 112.5%;
  text-align: center;
  overflow: hidden;
  height: 0;
}
.index-flex-group .pic-block figure .pic img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-flex-group .pic-block figure .pic iframe,
.index-flex-group .pic-block figure .pic object,
.index-flex-group .pic-block figure .pic embed {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.index-block3 {
  background: #f2f2f1;
}
.index-block3 .text-block {
  padding: 40px 10%;
}
.index-block3 .text-block .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--blue);
}
.index-block3 .text-block .content {
  margin-top: 20px;
}
.index-block3 .text-block .txt {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
}
.index-block3 .index-flex-group {
  flex-direction: row-reverse;
}

.index-block4 .text-block {
  /* padding: 40px 5%; */
  padding: 0;
}

.index-block4 .pic{}
.index-block4 .pic img{display: block;max-width: 100%;margin:auto;}

.index-block5 {
  background: var(--blue);
  padding: 80px 0;
  align-items: center;
}
.index-block5 .flex-row {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.index-block5 .pic-block {
  width: 50%;
}
.index-block5 .pic-block figure {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
}
.index-block5 .pic-block figure img {
  display: block;
  max-width: 100%;
  margin: auto;
}
.index-block5 .text-block {
  width: 50%;
  padding-right: 6%;
  color: #fff;
}
.index-block5 .text-block .title {
  font-size: 2.5rem;
  font-weight: bold;
}
.index-block5 .text-block .content {
  margin-top: 20px;
}
.index-block5 .text-block .txt {
  font-size: 1.25rem;
  line-height: 1.8;
}
.index-block5 .btn-list {
  margin-top: 60px;
  display: flex;
  gap: 10px 20px;
}
.index-block5 .btn-list .btn-style a {
  font-size: 1.125rem;
  padding: 12px 20px;
  line-height: 1;
  border-radius: 50px;
}
.index-block5 .btn-list .btn-style.white a {
  color: var(--blue);
  background: #fff;
  display: block;
  border: 1px solid #fff;
}
.index-block5 .btn-list .btn-style.white a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.index-block5 .btn-list .btn-style.e-white a {
  color: #fff;
  background: var(--blue);
  display: block;
  border: 1px solid #fff;
}
.index-block5 .btn-list .btn-style.e-white a:hover {
  background: var(--green);
  border-color: var(--green);
}

.index-number-list {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 80px;
}

.index-number-box {
  color: #fff;
  text-align: center;
}
.index-number-box .title {
  font-size: 1.5rem;
}
.index-number-box .num {
  font-size: 3.125rem;
  font-weight: 900;
  margin-top: 10px;
}

.index-block6 {
  background: #f2f2f1;
}
.index-block6 .text-block {
  padding: 40px 10%;
}
.index-block6 .text-block .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--blue);
}
.index-block6 .text-block .content {
  margin-top: 20px;
}
.index-block6 .text-block .txt {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
}
.index-block6 .index-flex-group {
  flex-direction: row-reverse;
}
.index-block6 .index-block6-swiper {
  position: relative;
  height: inherit;
}
.index-block6 .swiper-button-block {
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 40px;
  right: 50px;
  z-index: 1;
  display: none;
}
.index-block6 .swiper-pagination {
  position: absolute;
  bottom: 40px;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
}
.index-block6 .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.index-block6 .swiper-pagination-bullet-active {
  background: var(--green);
}
.index-block6 .swiper-button {
  position: static;
}
.index-block6 .block6-swiper-prev,
.index-block6 .block6-swiper-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue);
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.index-block6 .block6-swiper-prev img,
.index-block6 .block6-swiper-next img {
  width: 10px;
  aspect-ratio: 5/9;
  display: block;
}
.index-block6 .block6-swiper-prev:hover,
.index-block6 .block6-swiper-next:hover {
  background: var(--green);
}
.index-block6 .block6-swiper-prev.swiper-button-lock,
.index-block6 .block6-swiper-next.swiper-button-lock {
  display: none;
}
.index-block6 .block6-swiper-next {
  transform: rotate(180deg);
}

/*========== index mobile ==========*/
@media (max-width: 1440px) {
  .index-other-clinics {
    bottom: 40px;
  }
  .index-block3 .text-block {
    padding: 40px 5%;
  }
  .index-block6 .text-block {
    padding: 40px 5%;
  }
}
@media (max-width: 1280px) {
  .index-other-clinics {
    position: static;
    padding: 40px 0;
    background: var(--lgreen);
  }
  .index-clinics-hours {
    padding-top: 50px;
  }
  .index-news {
    padding-top: 50px;
  }
  .index-service {
    padding-top: 50px;
  }
  .index-block3 .text-block .title {
    font-size: 2.125rem;
  }
  .index-block3 .text-block .txt {
    font-size: 1.125rem;
  }
  .index-block4 .text-block {
    /* padding: 40px 3%; */
    padding: 0;
  }
  .index-block5 .text-block .title {
    font-size: 2.125rem;
  }
  .index-block5 .text-block .txt {
    font-size: 1.125rem;
  }
  .index-block6 .text-block .title {
    font-size: 2.125rem;
  }
  .index-block6 .text-block .txt {
    font-size: 1.125rem;
  }
}
@media (max-width: 1024px) {
  .index-clinics-hours-table table .grid1 {
    width: 220px;
  }
  .index-service-block {
    padding: 100px 0 90px 0;
  }
  .index-service-list {
    gap: 25px 15px;
  }
  .index-service-box {
    width: calc((100% - 30px) / 3);
  }
  .index-service-box.long {
    width: 100%;
  }
  .index-number-list {
    margin-top: 60px;
  }
  .index-number-box .title {
    font-size: 1.25rem;
  }
  .index-number-box .num {
    font-size: 2.5rem;
  }
}
@media (max-width: 960px) {
  .index-banner .swiper-slide .content .txt {
    font-size: 2.5rem;
    line-height: 1.3;
  }
  .index-banner .swiper-button-next,
  .index-banner .swiper-button-prev {
    --swiper-navigation-size: 14px;
    width: 35px;
    height: 35px;
  }
  .index-banner .swiper-button-next {
    right: 20px;
  }
  .index-banner .swiper-button-prev {
    left: 20px;
  }
  .index-other-clinics-box .content {
    padding: 14px 20px 15px 20px;
  }
  .index-block-title {
    font-size: 1.875rem;
  }
  .index-subjects {
    padding: 50px 0;
  }
  .index-flex-group {
    flex-wrap: wrap;
  }
  .index-flex-group .text-block {
    width: 100%;
  }
  .index-flex-group .pic-block {
    width: 100%;
    height: 400px;
  }
  .index-flex-group .btn-list {
    margin-top: 40px;
  }
  .index-block3 .text-block {
    padding: 30px 25px;
  }
  .index-block3 .text-block .title {
    font-size: 1.875rem;
  }
  .index-block4 .text-block {
    /* padding: 30px 25px; */
    padding: 0;
  }
  .index-block5 {
    padding: 50px 0;
  }
  .index-block5 .flex-row {
    flex-wrap: wrap;
  }
  .index-block5 .pic-block {
    width: 100%;
  }
  .index-block5 .text-block {
    width: 100%;
    margin-top: 40px;
  }
  .index-block5 .text-block .title {
    font-size: 1.875rem;
  }
  .index-number-list {
    flex-wrap: wrap;
    gap: 30px 20px;
  }
  .index-number-box {
    width: calc((100% - 20px) / 2);
  }
  .index-block6 .text-block {
    padding: 30px 25px;
  }
  .index-block6 .text-block .title {
    font-size: 1.875rem;
  }
  .index-block6 .swiper-pagination {
    bottom: 15px;
  }
}
@media (max-width: 768px) {
  .index-other-clinics-list {
    flex-wrap: wrap;
  }
  .index-other-clinics-box {
    width: 100%;
  }
  .index-other-clinics-box .title {
    font-size: 1.25rem;
  }
  .index-other-clinics-box .content .sns-style {
    width: 100%;
  }
  .index-other-clinics-box .content .sns-style ul {
    justify-content: flex-start;
  }
  .index-service-box {
    width: calc((100% - 15px) / 2);
  }
  .index-subjects-box .title {
    padding: 20px;
  }
  .index-subjects-box .title .tw {
    font-size: 1.75rem;
  }
}
@media (max-width: 640px) {
  .index-banner .swiper-slide .content {
    padding: 25px;
  }
  .index-banner .swiper-slide .content .txt {
    font-size: 2rem;
  }
  .index-banner .swiper-button-block {
    display: none;
  }
  .index-clinics-hours {
    padding-top: 40px;
  }
  .index-news {
    padding-top: 40px;
  }
  .index-service {
    padding-top: 40px;
  }
  .index-service-block {
    padding: 60px 0;
  }
  .index-service-list {
    gap: 15px;
  }
  .index-service-box {
    padding: 10px 15px;
    align-items: flex-start;
  }
  .index-service-box figure {
    width: 50px;
    height: 50px;
  }
  .index-service-box .title {
    width: calc(100% - 50px);
    font-size: 1.0625rem;
  }
  .index-service-list.page .title p {
    width: 100%;
  }
  .page-service-box {
    align-items: flex-start;
  }
  .page-service-box .pic-left {
    width: 120px;
    padding: 10px;
  }
  .page-service-box .content {
    width: calc(100% - 120px);
    padding-top: 0;
    padding-left: 20px;
  }
  .page-service-box .content .box {
    display: block;
  }
  .index-flex-group .btn-list .btn-style a {
    font-size: 1rem;
  }
  .index-flex-group .pic-block {
    height: 300px;
  }
  .index-block3 .text-block {
    padding: 30px 25px;
  }
  .index-block3 .text-block .title {
    font-size: 1.5rem;
  }
  .index-block3 .text-block .txt {
    font-size: 1rem;
  }
  .index-block5 .text-block .title {
    font-size: 1.5rem;
  }
  .index-block5 .text-block .txt {
    font-size: 1rem;
  }
  .index-block6 .text-block .title {
    font-size: 1.5rem;
  }
  .index-block6 .text-block .txt {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .index-other-clinics-box {
    flex-wrap: wrap;
  }
  .index-other-clinics-box .title {
    width: 100%;
    font-size: 1.125rem;
    padding: 12px;
  }
  .index-other-clinics-box .title span {
    display: inline;
  }
  .index-other-clinics-box .content {
    width: 100%;
    padding: 10px 15px;
  }
  .index-other-clinics-box .content .link ul li a {
    font-weight: normal;
  }
  .index-clinics-hours-table table {
    font-size: 1rem;
  }
  .index-clinics-hours-table table .grid1 {
    font-weight: normal;
  }
  .index-clinics-hours-table .table-info {
    justify-content: flex-start;
  }
  .index-clinics-hours-table .table-info .other-txt {
    font-weight: normal;
  }
  .index-block-title {
    font-weight: normal;
    font-size: 1.5rem;
  }
  .index-block-title .en {
    margin-top: 5px;
    font-weight: 500;
  }
  .index-service-block {
    padding: 40px 0;
  }
  .index-service-list {
    gap: 10px;
  }
  .index-service-box {
    width: 100%;
  }
  .index-link {
    padding: 20px 0;
  }
  .index-link-list .swiper-next,
  .index-link-list .swiper-prev {
    font-size: 1rem;
    width: 30px;
    height: 30px;
    background: var(--blue);
    color: #fff;
  }
  .index-link-list .swiper-prev {
    left: 0;
  }
  .index-link-list .swiper-next {
    right: 0;
  }
  .page-service-box .pic-left {
    width: 70px;
    padding: 0;
    background: none;
  }
  .page-service-box .pic-left .title {
    font-size: 1.0625rem;
    line-height: 1.2;
  }
  .page-service-box figure {
    width: 50px;
    height: 50px;
  }
  .page-service-box .content {
    width: calc(100% - 70px);
    padding-left: 20px;
  }
  .page-service-box .content .box {
    font-size: 16px;
  }
  .index-subjects-box .title {
    padding: 20px 10px;
  }
  .index-subjects-box .title .tw {
    font-size: 1.25rem;
  }
  .index-subjects-box .title .en {
    font-size: 1rem;
  }
  .index-clinics-hours-table2 table {
    font-size: 1rem;
  }
  .index-clinics-hours-table2 table .grid1 {
    width: 55px;
    font-size: 0.9375rem;
  }
  .index-clinics-hours-table2 table thead th {
    padding: 8px;
    font-size: 0.9375rem;
  }
  .index-clinics-hours-table2 table tbody td {
    padding: 8px;
    font-size: 0.9375rem;
  }
  .index-number-box .title {
    font-size: 1.125rem;
  }
  .index-number-box .num {
    font-size: 2.125rem;
  }
}
@media (max-width: 375px) {
  .index-clinics-hours {
    padding-top: 30px;
  }
  .index-news {
    padding-top: 30px;
  }
  .index-service {
    padding-top: 30px;
  }
  .index-block-title {
    font-weight: normal;
    font-size: 1.375rem;
  }
}
/*========= about ==========*/
.team-box {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.team-box:not(:last-child) {
  margin-bottom: 40px;
}
.team-box .name {
  font-size: 1.5rem;
  background: var(--blue) url(../images/bg_dblue.jpg);
  color: #fff;
  padding: 15px 30px;
}
.team-box .name .job-title {
  font-size: 1.125rem;
  display: inline-block;
  margin-left: 10px;
}
.team-box .info-list {
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
}
.team-box .info-pic {
  width: 200px;
}
.team-box .info-pic .pic {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
}
.team-box .info-pic .pic img {
  display: block;
  width: 100%;
}
.team-box .info-content {
  flex: 1;
  padding-left: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.team-box .info-box {
  width: calc((100% - 40px) / 2);
}
.team-box .info-box .title {
  font-size: 1.125rem;
  font-weight: bold;
}
.team-box .info-box .title::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 15px;
  background: var(--green);
  margin-right: 10px;
}
.team-box .info-box .content {
  margin-top: 10px;
}
.team-box .info-box .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-box .info-box .content ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-box .info-box .content ul li {
  margin-bottom: 5px;
}
.team-box .info-box.main-projects {
  width: 100%;
}
.team-box .other-info {
  border-top: 1px solid #eee;
  padding: 15px 30px;
  background: #f1f1f1;
}
.team-box .other-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.team-box .other-info ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-content .txt {
  margin: 30px 0;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.8;
}
.about-content .txt .green {
  color: var(--green);
}
.about-content .txt .b {
  font-weight: bold;
}
.about-content .txt:first-child {
  margin-top: 0;
}
.about-content .txt:last-child {
  margin-bottom: 0;
}

.about1-block {
  margin-top: 20px;
}
.about1-block .about-pic {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.about1-block .about-pic .pic {
  width: 1196px;
  max-width: 100%;
  position: relative;
}
.about1-block .about-pic .pic:after {
  content: "";
  display: block;
  width: 15px;
  height: 100%;
  background: url(../images/news_shadow.png) no-repeat top left;
  position: absolute;
  right: -15px;
  top: 0;
  background-size: contain;
}
.about1-block .about-pic img {
  display: block;
  max-width: 100%;
  border-radius: 20px;
  margin: auto;
}
.about1-block .about-content {
  padding: 130px 80px 100px 80px;
  background: url(../images/bg_blue.jpg);
  border-radius: 25px;
  position: relative;
  margin-top: -6.5%;
}

.team2-block {
  width: 1450px;
  max-width: calc(100% - 50px);
  margin: auto;
  border-radius: 25px;
  padding: 35px 120px 45px 120px;
  background: url(../images/team2-bg.jpg);
}

.team2-box {
  display: flex;
  align-items: flex-start;
}
.team2-box .team2-pic {
  /* width: 22.3140495868%; */
  width: 270px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 50px;
  padding-bottom: 50px;
}
.team2-box .team2-pic .pic{
  aspect-ratio:  1/ 1;
  width: 100%;
  overflow: hidden;
}
.team2-box .team2-pic .pic img {
  display: block;
  width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.team2-box .team2-pic .name {
  background: var(--green);
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 8px 5px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.team2-box .team2-content {
  /* width: 77.6859504132%; */
  width: calc(100% - 270px);
  /* padding-left: 7.4380165289%; */
  padding-left: 90px;
}
.team2-box .specialist-block .block-title span {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  border-radius: 25px;
  padding: 11px 25px;
  line-height: 1;
}
.team2-box .specialist-block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 90px;
  margin-top: 25px;
  padding-left: 30px;
}
.team2-box .specialist-block ul li {
  font-weight: 500;
  font-size: 1.125rem;
}
.team2-box .info-block {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 2px solid var(--green);
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.team2-box .info-block .half {
  width: calc((100% - 20px) / 2);
}
.team2-box .flexgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.team2-box .info-box .box-title {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 15px;
}
.team2-box .info-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team2-box .info-box ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team2-box .info-box ul li {
  color: #333333;
}
.team2-box .info-box ul li:not(:last-child) {
  margin-bottom: 10px;
}
.team2-box .info-box.experience {
  margin-top: 40px;
}
.team2-box table td {
  padding: 5px;
}
.team2-box table tr td:first-child {
  padding-left: 0;
}

.about2-article-block {
  padding-bottom: 0;
}

.about2-section .flexgroup {
  display: flex;
  flex-wrap: wrap;
}

.about2-title-block {
  color: var(--blue);
  border-left: 7px solid var(--blue);
  padding-left: 20px;
  line-height: 1;
}
.about2-title-block .tw {
  font-size: 2.5rem;
  font-weight: 500;
}
.about2-title-block .en {
  font-size: 2.25rem;
  font-weight: 100;
  margin-top: 15px;
}

.about2-block1,
.about2-block2 {
  align-items: center;
}
.about2-block1 .about2-pic,
.about2-block2 .about2-pic {
  width: 50%;
}
.about2-block1 .about2-pic .pic img,
.about2-block2 .about2-pic .pic img {
  display: block;
  max-width: 100%;
}
.about2-block1 .about2-text,
.about2-block2 .about2-text {
  width: 41.6666666667%;
  background: #eaf0f5;
}
.about2-block1 .about2-text .title,
.about2-block2 .about2-text .title {
  color: var(--green);
  font-size: 1.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.about2-block1 .about2-text .txt,
.about2-block2 .about2-text .txt {
  font-size: 1.25rem;
  line-height: 1.8;
}

.about2-block1 {
  margin-top: 60px;
  flex-direction: row-reverse;
}
.about2-block1 .about2-text {
  padding: 4% 9.5% 4% 4%;
}

.about2-block2 .about2-text {
  padding: 4% 4% 4% 10%;
}

.about2-block3 {
  background: var(--blue);
  color: #fff;
  padding: 4% 0 3.5% 0;
}
.about2-block3 .about2-block3-text .b {
  font-weight: 500;
}
.about2-block3 .about2-block3-text .title {
  font-size: 1.5rem;
}
.about2-block3 .about2-block3-text .txt {
  font-size: 1.25rem;
  margin-top: 5px;
}
.about2-block3 .about2-block3-title {
  text-align: center;
  margin: 7.5% 0 4% 0;
}
.about2-block3 .about2-block3-title span {
  display: inline-block;
  font-size: 1.5625rem;
  padding: 17px 40px 18px 40px;
  border-radius: 50px;
  background: var(--green);
  line-height: 1;
}
.about2-block3 .about2-block3-txt2 {
  gap: 0 20px;
  margin: 5% 0 3.5% 0;
}
.about2-block3 .about2-block3-txt2 ul {
  font-size: 1.375rem;
  margin: 0;
  font-weight: 100;
}
.about2-block3 .about2-block3-txt2 ul li {
  margin-bottom: 20px;
}
.about2-block3 .about2-block3-txt2 ul li::marker {
  color: var(--green);
}
.about2-block3 .other-page {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
}
.about2-block3 .other-page span {
  display: inline-block;
}
.about2-block3 .other-page span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  margin-top: 15px;
}

.about2-block4 {
  padding-top: 5%;
}
.about2-block4 .map-title {
  color: var(--green);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}
.about2-block4 .map-title .address {
  color: #333333;
  font-size: 1.25rem;
  font-weight: 300;
}
.about2-block4 .map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/*========== about mobile ==========*/
@media (max-width: 1440px) {
  .team2-block {
    padding: 35px 40px;
  }
  .about2-title-block .tw {
    font-size: 2rem;
  }
  .about2-title-block .en {
    font-size: 1.625rem;
  }
  .about2-block1 .about2-text,
  .about2-block2 .about2-text {
    width: 46.875%;
  }
  .about2-block1 .about2-text .title,
  .about2-block2 .about2-text .title {
    font-size: 1.625rem;
  }
  .about2-block1 .about2-text .txt,
  .about2-block2 .about2-text .txt {
    font-size: 1.125rem;
  }
  .about2-block1 .about2-text {
    padding: 3% 6% 3% 3%;
  }
  .about2-block2 .about2-text {
    padding: 3% 3% 3% 6%;
  }
  .about2-block3 .about2-block3-title {
    margin: 4% 0 2% 0;
  }
  .about2-block3 .about2-block3-title span {
    font-size: 1.375rem;
    padding: 16px 30px 17px 30px;
  }
  .about2-block3 .about2-block3-txt2 ul {
    font-size: 1.25rem;
  }
  .about2-block3 .about2-block3-txt2 ul li {
    margin-bottom: 15px;
  }
  .about2-block3 .other-page {
    font-size: 1.25rem;
  }
  .about2-block4 {
    padding-top: 4%;
  }
}
@media (max-width: 1280px) {
  .about1-block {
    margin-top: 0;
  }
  .about1-block .about-content {
    padding: 100px 60px 60px 60px;
  }
  .team2-box .team2-pic {
    width: 270px;
  }
  .team2-box .team2-pic .name {
    font-size: 1.25rem;
  }
  .team2-box .team2-content {
    padding-left: 50px;
    width: calc(100% - 270px);
  }
  .team2-box .specialist-block .block-title span {
    font-size: 1.25rem;
  }
  .team2-box .specialist-block ul {
    gap: 10px 60px;
  }
  .team2-box .info-box .box-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .team2-box .info-box ul:not(:last-child) {
    margin-bottom: 5px;
  }
  .team2-box .info-box.experience {
    margin-top: 20px;
  }
  .about2-title-block .tw {
    font-size: 1.625rem;
  }
  .about2-title-block .en {
    font-size: 1.375rem;
  }
  .about2-block1 .about2-text .title,
  .about2-block2 .about2-text .title {
    font-size: 1.5rem;
  }
  .about2-block1 .about2-text {
    padding: 35px 35px 35px 35px;
  }
  .about2-block2 .about2-text {
    padding: 35px 35px 35px 35px;
  }
}
@media (max-width: 1100px) {
  .team2-box.team1 .info-box.expertise .half {
    width: 100%;
  }
  .team2-box.team1 .info-box.expertise .half:last-child {
    margin-top: 5px;
  }
}
@media (max-width: 960px) {
  .about-content .txt {
    font-size: 1.125rem;
  }
  .about1-block .about-content {
    padding: 80px 40px 60px 40px;
  }
  .team2-block {
    padding: 30px;
  }
  .team2-box .team2-pic {
    width: 220px;
  }
  .team2-box .team2-content {
    width: calc(100% - 220px);
    padding-left: 40px;
  }
  .team2-box .info-block .half {
    width: 100%;
  }
  .team2-box .info-block .info-box.expertise {
    margin-top: 20px;
  }
  .about2-title-block .en {
    margin-top: 8px;
  }
  .about2-block1 {
    margin-top: 40px;
  }
  .about2-block1 .about2-text .title,
  .about2-block2 .about2-text .title {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .about2-block1 .about2-text .txt,
  .about2-block2 .about2-text .txt {
    font-size: 1rem;
  }
  .about2-block3 {
    padding: 40px 0 60px 0;
  }
  .about2-block3 .about2-block3-text .b {
    font-weight: bold;
  }
  .about2-block3 .about2-block3-text .title {
    font-size: 1.25rem;
  }
  .about2-block3 .about2-block3-text .txt {
    font-size: 1.125rem;
  }
  .about2-block3 .about2-block3-title span {
    font-size: 1.25rem;
    padding: 10px 20px;
    font-size: 1.125rem;
  }
  .about2-block3 .about2-block3-txt2 {
    margin: 30px 0;
  }
  .about2-block3 .about2-block3-txt2 ul {
    font-size: 1.125rem;
    font-weight: normal;
  }
  .about2-block3 .about2-block3-txt2 ul li {
    margin-bottom: 10px;
  }
  .about2-block4 {
    padding-top: 40px;
  }
  .about2-block4 .map-title {
    font-size: 1.25rem;
  }
  .about2-block4 .map-title .address {
    font-size: 1.125rem;
    font-weight: normal;
  }
}
@media (max-width: 768px) {
  .team-box .info-box {
    width: 100%;
  }
  .about-content .txt {
    font-size: 1rem;
  }
  .about1-block .about-content {
    margin-top: -40px;
    padding: 60px 40px 40px 40px;
  }
  .team2-box {
    flex-wrap: wrap;
  }
  .team2-box .team2-pic {
    width: 270px;
    margin-right: auto;
    margin-top: 0;
  }
  .team2-box .team2-content {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 640px) {
  .team-box:not(:last-child) {
    margin-bottom: 20px;
  }
  .team-box .info-list {
    padding: 20px;
  }
  .team-box .info-pic {
    width: 150px;
  }
  .team-box .info-content {
    padding-left: 20px;
  }
  .team-box .name {
    padding: 15px 20px;
    font-size: 1.25rem;
  }
  .team-box .name .job-title {
    font-size: 1rem;
  }
  .team-box .other-info {
    padding: 15px 20px;
  }
  .team2-box .team2-pic .name {
    font-size: 1.125rem;
  }
  .team2-box .specialist-block .block-title span {
    font-size: 1.125rem;
    padding: 10px 20px;
  }
  .team2-box .specialist-block ul {
    gap: 10px 30px;
    margin: 15px 0;
  }
  .team2-box .specialist-block ul li {
    font-size: 1rem;
  }
  .team2-box .info-block {
    margin-top: 15px;
    padding-top: 15px;
  }
  .about2-title-block {
    border-width: 5px;
    padding-left: 15px;
  }
  .about2-title-block .tw {
    font-size: 1.375rem;
  }
  .about2-title-block .en {
    font-size: 1.125rem;
    font-weight: 300;
  }
  .about2-block1 .about2-pic,
  .about2-block2 .about2-pic {
    width: 100%;
  }
  .about2-block1 .about2-text,
  .about2-block2 .about2-text {
    width: 100%;
  }
  .about2-block1 .about2-text {
    padding: 30px 25px;
  }
  .about2-block2 .about2-text {
    padding: 30px 25px;
  }
  .about2-block3 .about2-block3-text .txt {
    font-size: 1rem;
  }
  .about2-block3 .about2-block3-txt2 ul {
    font-size: 1rem;
  }
  .about2-block3 .other-page {
    font-size: 1.125rem;
  }
  .about2-block4 .map iframe {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .team-box .info-list {
    display: block;
  }
  .team-box .info-pic {
    width: 200px;
  }
  .team-box .info-content {
    padding-left: 0;
    margin-top: 20px;
    gap: 10px;
  }
  .about1-block .about-pic .pic::after {
    display: none;
  }
  .about1-block .about-content {
    padding: 55px 20px 30px 20px;
  }
  .team2-block {
    padding: 20px;
  }
}
/*========= health ==========*/
.health-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 40px;
  margin-bottom: 140px;
}

.health-box {
  width: calc((100% - 40px) / 2);
}
.health-box:nth-child(even) {
  transform: translateY(60px);
}
.health-box a {
  display: block;
  position: relative;
}
.health-box a:hover figure .date {
  background: var(--green);
}
.health-box a:hover figure .title {
  background: rgba(0, 0, 0, 0.7);
}
.health-box figure {
  margin: 0;
  position: relative;
}
.health-box figure .pic {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 51.4285714286%;
  text-align: center;
  overflow: hidden;
  height: 0;
}
.health-box figure .pic img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.health-box figure .pic iframe,
.health-box figure .pic object,
.health-box figure .pic embed {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.health-box figure:after {
  content: "";
  display: block;
  width: 15px;
  height: 100%;
  background: url(../images/news_shadow.png) no-repeat top left;
  position: absolute;
  right: -15px;
  top: 0;
  background-size: contain;
}
.health-box .date {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 0.875rem;
  font-weight: 300;
  background: var(--blue);
  border: 1px solid #e0e0e0;
  padding: 7px 15px;
  border-radius: 50px;
  display: inline-block;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}
.health-box .title {
  color: #fff;
  font-size: 1.1875rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 30px 19px 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  line-height: 1;
  transition: 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*========== health mobile ==========*/
@media (max-width: 1280px) {
  .health-list {
    gap: 40px 30px;
    margin-bottom: 120px;
  }
  .health-box {
    width: calc((100% - 30px) / 2);
  }
  .health-box:nth-child(even) {
    transform: translateY(40px);
  }
}
@media (max-width: 960px) {
  .health-list {
    gap: 30px;
    margin-bottom: 110px;
  }
  .health-box figure:after {
    height: 70%;
  }
  .health-box .date {
    right: 15px;
    top: 15px;
  }
  .health-box .title {
    padding: 15px 20px 14px 20px;
    font-size: 1.0625rem;
  }
}
@media (max-width: 640px) {
  .health-list {
    gap: 15px;
    margin-bottom: 55px;
  }
  .health-box {
    width: calc((100% - 15px) / 2);
  }
  .health-box:nth-child(even) {
    transform: translateY(15px);
  }
  .health-box a:hover figure .title {
    background: none;
    color: var(--green);
  }
  .health-box .title {
    position: static;
    background: none;
    color: #111;
    padding: 15px 0 0 0;
  }
}
@media (max-width: 480px) {
  .health-list {
    gap: 30px;
    margin-bottom: 0;
  }
  .health-box {
    width: 100%;
  }
  .health-box:nth-child(even) {
    transform: none;
  }
}
/*========= news ==========*/
.news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 65px 75px;
}

.news-box {
  width: calc((100% - 150px) / 3);
}
.news-box a:hover .content .title {
  color: var(--green);
}
.news-box figure {
  margin: 0;
  position: relative;
}
.news-box figure .pic {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 51.4285714286%;
  text-align: center;
  overflow: hidden;
  height: 0;
}
.news-box figure .pic img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-box figure .pic iframe,
.news-box figure .pic object,
.news-box figure .pic embed {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.news-box figure:after {
  content: "";
  display: block;
  width: 15px;
  height: 100%;
  background: url(../images/news_shadow.png) no-repeat top left;
  position: absolute;
  right: -15px;
  top: 0;
  background-size: contain;
}
.news-box .content {
  margin-top: 20px;
}
.news-box .content .title {
  color: #111;
  font-weight: 500;
  font-size: 1.1875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
}
.news-box .content .date {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--blue);
  border: 1px solid #e0e0e0;
  padding: 7px 15px;
  border-radius: 50px;
  display: inline-block;
  line-height: 1;
  margin: 10px 0;
  background: #fff;
}
.news-box .content .txt {
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.6;
}
.news-box.big {
  width: 100%;
}
.news-box.big figure {
  width: 50%;
  position: relative;
  z-index: 1;
}
.news-box.big .content {
  width: 83.3333333333%;
  padding: 60px 60px 100px 38.3333333333%;
  background: url(../images/bg_blue.jpg);
  border-radius: 10px;
  margin-left: auto;
  margin-top: -21%;
  position: relative;
}
.news-box.big .content:after {
  content: "";
  display: block;
  background: url(../images/news_decorate.svg);
  position: absolute;
  right: 50px;
  bottom: 0;
  height: 83px;
  width: 160px;
}
.news-box.big .content .txt {
  -webkit-line-clamp: 3;
}

/*========== news mobile ==========*/
@media (max-width: 1280px) {
  .news-list {
    gap: 40px 60px;
  }
  .news-box {
    width: calc((100% - 120px) / 3);
  }
}
@media (max-width: 1024px) {
  .news-list {
    gap: 40px 40px;
  }
  .news-box {
    width: calc((100% - 80px) / 3);
  }
}
@media (max-width: 960px) {
  .news-list {
    gap: 30px 25px;
  }
  .news-box {
    width: calc((100% - 50px) / 3);
  }
  .news-box .content {
    margin-top: 10px;
  }
  .news-box .content .title {
    font-size: 1.0625rem;
  }
  .news-box .content .date {
    padding: 5px 10px;
    margin: 8px 0;
  }
  .news-box .content .txt {
    font-size: 0.9375rem;
  }
  .news-box.big .content {
    padding: 40px 40px 100px 37%;
  }
}
@media (max-width: 640px) {
  .news-list {
    gap: 0;
  }
  .news-box {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .news-box:not(:last-child) {
    margin-bottom: 20px;
  }
  .news-box a {
    display: flex;
    gap: 0;
  }
  .news-box figure {
    width: 180px;
  }
  .news-box figure:after {
    height: 70%;
  }
  .news-box .content {
    width: calc(100% - 180px);
    padding-left: 20px;
  }
  .news-box.big a {
    display: block;
  }
  .news-box.big figure {
    width: 300px;
    max-width: 100%;
  }
  .news-box.big .content {
    width: 90%;
    padding: 26% 30px 100px 30px;
  }
}
@media (max-width: 480px) {
  .news-box figure {
    width: 120px;
  }
  .news-box figure:after {
    height: 50%;
  }
  .news-box .content {
    width: calc(100% - 120px);
    padding-left: 15px;
    margin-top: 5px;
  }
  .news-box.big figure {
    width: 90%;
    margin: auto;
  }
  .news-box.big .content {
    width: 100%;
    padding: 26% 25px 60px 25px;
  }
  .news-box.big .content:after {
    width: 100px;
    height: 52px;
  }
}
@media (max-width: 375px) {
  .news-box a {
    display: block;
  }
  .news-box figure {
    width: 100%;
  }
  .news-box .content {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
}
/*========= registration ==========*/
.page-registration-block {
  background: url(../images/blue_bgbottom.png) no-repeat bottom center;
}

.registration-block {
  width: 800px;
  max-width: calc(100% - 50px);
  margin: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  border: 1px solid #eeeeee;
}

.registration-bg {
  position: relative;
  background: url(../images/online_pic.png) no-repeat center bottom;
}

.registration-form-title {
  background: url(../images/bg_dblue.jpg);
  border-radius: 20px 20px 0 0;
  padding: 34px 20px;
}
.registration-form-title .pic {
  width: 355px;
  margin: auto;
  max-width: 100%;
}
.registration-form-title .pic img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.registration-form-block {
  padding: 40px 60px 80px 60px;
}

.registration-form-txt {
  background: #edf5fa;
  color: #555555;
  font-size: 1.0625rem;
  padding: 1px 10px;
}
.registration-tab {
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 40px;
}
.registration-tab ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.registration-tab ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.registration-tab ul li {
  width: 50%;
  position: relative;
}
.registration-tab ul li:after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: var(--green);
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translate(-50%);
}
.registration-tab ul li a {
  display: block;
  color: #111111;
  font-size: 1.1875rem;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.registration-tab ul li a::before {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
  filter: grayscale(100%);
}
.registration-tab ul li a:after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  z-index: 1;
  opacity: 0;
}
.registration-tab ul li.appointment a::before {
  background: url(../images/icon_appointment.svg) no-repeat;
}
.registration-tab ul li.check a::before {
  background: url(../images/icon_check.svg) no-repeat;
}
.registration-tab ul li.active:after {
  width: 100%;
}
.registration-tab ul li.active a::before {
  filter: grayscale(0%);
}
.registration-tab ul li.active a:after {
  opacity: 1;
}

.registration-form {
  margin-top: 40px;
}
.registration-form .form-box .box-content .text {
  padding: 13px 20px;
  font-size: 1.0625rem;
  background: #f1f1f1;
  color: #222;
  text-align: left;
  transition: 0.3s;
  border-radius: 50px;
  position: relative;
}
.registration-form .form-box .box-content .text .green {
  display: inline-block;
  margin-left: 10px;
  color: var(--green);
}

.appointment_date .input-box {
  position: relative;
}
.appointment_date .form-control-alternate {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
}
.appointment_date .form-control-alternate-txt {
  color: #222;
}
.appointment_date .text-submain {
  color: var(--green);
  margin-left: 5px;
}
.appointment_date input.form-control {
  color: transparent !important;
}
.appointment_date.disabled .form-control-alternate .form-control-alternate-txt {
  color: #ccc;
}
.appointment_date.disabled .form-control-alternate .text-submain {
  color: #ccc;
  margin-left: 5px;
}
/* date */
.ui-datepicker table {
  table-layout: fixed;
}

.ui-widget.ui-widget-content {
  border-radius: 1.5em;
  margin-top: 10px;
  padding: 1em;
}

@media (min-width: 1101px) {
  .ui-widget.ui-widget-content {
    width: 100%;
    max-width: 22.5em;
  }
}
@media (max-width: 1100px) {
  .ui-widget.ui-widget-content {
    width: 80% !important;
  }
}
.ui-widget.ui-widget-content {
  border-color: #ddd !important;
}

.ui-widget.ui-widget-content,
.ui-datepicker td span,
.ui-datepicker td a {
  font-size: 0.875rem;
  padding: 5px !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  color: #555 !important;
}

.ui-datepicker .ui-datepicker-header {
  background: transparent;
  border: none;
}

.ui-datepicker th,
.ui-datepicker-week-end:first-child a {
  color: #222 !important;
}

.ui-datepicker th {
  padding: 5px 0 !important;
  font-weight: 400 !important;
  border-bottom: 1px solid #eee !important;
}

.ui-datepicker td span,
.ui-datepicker td a {
  text-align: center !important;
  border: none !important;
  background: transparent !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight,
.ui-state-active,
.ui-widget-content .ui-state-active {
  position: relative;
  z-index: 1;
}

.ui-state-highlight::before,
.ui-widget-content .ui-state-highlight::before,
.ui-widget-header .ui-state-highlight::before,
.ui-state-active::before,
.ui-widget-content .ui-state-active::before {
  content: "";
  display: block;
  width: 60%;
  height: 0;
  padding-bottom: 60%;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, calc(-50% + 1px));
  z-index: -1;
  top: 50%;
}

@media (max-width: 1100px) {
  .ui-state-highlight,
  .ui-widget-content .ui-state-highlight,
  .ui-widget-header .ui-state-highlight,
  .ui-state-active,
  .ui-widget-content .ui-state-active {
    font-size: 1.05em !important;
  }
}
.ui-state-highlight::before,
.ui-widget-content .ui-state-highlight::before,
.ui-widget-header .ui-state-highlight::before {
  background: #eee !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active {
  color: #fff !important;
}

.ui-state-active::before,
.ui-widget-content .ui-state-active::before {
  background-color: var(--green) !important;
}

.ui-datepicker .ui-icon {
  background-image: none !important;
  background-position: center;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background: transparent !important;
  border: none !important;
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url("../images/icon_prev.svg") !important;
  width: 24px;
  height: 24px;
}

.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url("../images/icon_next.svg") !important;
  width: 24px;
  height: 24px;
}

.ui-timepicker-standard {
  border: none !important;
  border-radius: 1.5em;
}

.ui-timepicker-viewport {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ui-timepicker-standard .ui-menu-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100% !important;
}

.ui-timepicker-standard a {
  font-family: "Rubik", sans-serif;
  font-size: 0.9em;
}

/* time */
.appointment_time .timepicker__result .timepicker__result-time {
  display: block;
  width: 100%;
  border: 1px solid #dddddd;
  padding: 10px 20px;
  font-size: 1.0625rem;
  background: #fff;
  color: #222;
  text-align: left;
  transition: 0.3s;
  border-radius: 50px;
  height: 50px;
}
.appointment_time .timepicker__result .timepicker__result-time small {
  color: var(--green);
}
.appointment_time.disabled .timepicker__result .timepicker__result-time {
  color: #ccc;
}

.timepicker {
  width: 100%;
  color: #808080;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.timepicker__result {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.timepicker__result-time {
  float: left;
}

.timepicker__result-time .timepicker-num {
  display: none;
}

.timepicker__times {
  display: none;
  max-height: 30em;
  overflow: hidden;
  overflow-y: auto;
  position: absolute;
  z-index: 2;
  width: 100%;
  min-width: 350px;
  left: 50%;
  transform: translateX(-50%);
  top: 60px;
  background: #fff;
  border: solid 1px #D6D6D6;
  border-radius: 1.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.timepicker__times.open {
  display: block;
}

.timepicker__times::-webkit-scrollbar {
  width: 1em;
}

.timepicker__times::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.timepicker__times::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.timepicker__head {
  color: var(--blue);
  font-size: 15px;
  line-height: 2;
  text-align: center;
  font-weight: bold;
}

.timepicker__time:after {
  content: "";
  display: table;
  clear: both;
}

.timepicker__time-minutes {
  cursor: pointer;
  text-align: center;
  padding: 0.5em 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .timepicker__time-minutes {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}
.timepicker__time-minute {
  width: 100% !important;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
  color: #666666;
  font-family: "Rubik", sans-serif, "微軟正黑體";
  font-size: 0.875rem;
  line-height: 2;
  background-color: #fff;
  border-radius: 1.5em;
}

.timepicker__time-minute > small {
  display: none;
}

.timepicker__time-minute.cur {
  color: #fff;
  background-color: var(--green);
}

.timepicker__time-minute.disabled {
  color: #d6d6d6;
}

.timepicker__time-minute .small.timepicker-num {
  font-size: 0.875rem;
}

.timepicker__time-minute .small.timepicker-num::before {
  content: "|";
  font-size: 0.75em;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  padding: 0 6px 0 2px;
}

.input-group-calendar.currentDisabled {
  padding-left: 1.25em;
}

.input-group-calendar.currentDisabled .form-control-alternate {
  position: static;
  width: 100%;
}

.input-group-calendar.currentDisabled .timepicker__result {
  cursor: default;
}

.input-group-calendar-box {
  padding-left: 1em;
}

/*========== registration mobile ==========*/
@media (max-width: 960px) {
  .registration-bg {
    background: none;
  }
  .registration-form-block {
    padding: 30px 40px 40px 40px;
  }
  .registration-tab {
    margin-bottom: 30px;
  }
  .registration-form {
    margin-top: 30px;
  }
  .registration-form-title {
    padding: 24px 20px;
  }
  .registration-form-title .pic {
    width: 320px;
    max-width: 85%;
  }
  .registration-form .form-box .box-content .text {
    padding: 10px 20px;
  }
}
@media (max-width: 640px) {
  .registration-block {
    max-width: calc(100% - 40px);
  }
  .registration-form-block {
    padding: 25px 20px 35px 20px;
  }
  .registration-form-txt {
    padding: 1px 20px;
    font-size: 1rem;
  }
  .registration-form-txt ul {
    padding-left: 20px;
  }
  .registration-tab ul li a {
    font-size: 1.0625rem;
    padding-bottom: 15px;
  }
  .registration-tab ul li a::before {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .registration-form-title {
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  .timepicker__times {
    min-width: 95vw;
  }
}
@media (max-width: 320px) {
  .registration-form-block {
    padding: 20px 10px 30px 10px;
  }
}
/*========= treatment ==========*/
.treatment-block {
  display: flex;
}

.treatment-aside {
  width: 320px;
  background: #f4fbfa;
}
.treatment-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.treatment-aside ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.treatment-aside ul li {
  border-bottom: 4px solid #fff;
}
.treatment-aside ul li a {
  display: block;
  font-size: 1.25rem;
  color: #000;
  padding: 22px 35px;
  position: relative;
}
.treatment-aside ul li a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 40px;
  top: 35px;
  opacity: 0;
}
.treatment-aside ul li:hover a, .treatment-aside ul li.active a {
  background: var(--green);
  color: #fff;
  padding: 22px 35px 22px 60px;
}
.treatment-aside ul li:hover a::before, .treatment-aside ul li.active a::before {
  opacity: 1;
}
.treatment-aside + .treatment-article {
  width: calc(100% - 320px);
  padding-left: 85px;
}

.treatment-article {
  width: 100%;
}

.treatment-article-title {
  border-top: 1px solid #e6e6e6;
  margin: 0 145px 30px 70px;
  position: relative;
}
.treatment-article-title span {
  display: inline-block;
  border-top: 1px solid var(--green);
  font-size: 1.625rem;
  color: var(--green);
  font-weight: 500;
  padding-top: 10px;
  position: relative;
  top: -1px;
}
.treatment-article-title:after {
  content: "";
  display: block;
  background: url(../images/treatment_title_pic.svg) no-repeat;
  aspect-ratio: 64/71;
  width: 64px;
  position: absolute;
  right: -80px;
  top: -15px;
}

.treatment-article-unreset {
  background: url(../images/bg_blue.jpg);
  padding: 40px 70px;
  border-radius: 40px;
  overflow: hidden;
}

/*========== treatment mobile ==========*/
@media (max-width: 1280px) {
  .treatment-aside {
    width: 260px;
  }
  .treatment-aside ul li a {
    font-size: 1.125rem;
    padding: 15px 20px;
  }
  .treatment-aside ul li a::before {
    left: 20px;
    top: 27px;
  }
  .treatment-aside ul li:hover a, .treatment-aside ul li.active a {
    padding: 15px 20px 15px 40px;
  }
  .treatment-aside + .treatment-article {
    width: calc(100% - 260px);
    padding-left: 40px;
  }
  .treatment-article-title {
    margin: 0 100px 20px 40px;
  }
  .treatment-article-title span {
    font-size: 1.375rem;
  }
  .treatment-article-title:after {
    width: 50px;
    top: -5px;
  }
  .treatment-article-unreset {
    padding: 30px 40px 40px 40px;
  }
}
@media (max-width: 960px) {
  .treatment-block {
    flex-wrap: wrap;
  }
  .treatment-aside {
    width: 100%;
    background: none;
  }
  .treatment-aside ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .treatment-aside ul li {
    border-bottom: none;
  }
  .treatment-aside ul li a {
    padding: 10px 25px;
    background: #f4fbfa;
    border-radius: 50px;
    border: 1px solid var(--green);
  }
  .treatment-aside ul li a::before {
    display: none;
  }
  .treatment-aside ul li:hover a, .treatment-aside ul li.active a {
    padding: 10px 25px;
  }
  .treatment-aside + .treatment-article {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 640px) {
  .treatment-aside ul li a {
    font-size: 1rem;
    padding: 5px 15px;
  }
  .treatment-aside ul li:hover a, .treatment-aside ul li.active a {
    padding: 5px 15px;
  }
  .treatment-aside + .treatment-article {
    margin-top: 30px;
  }
  .treatment-article-title {
    margin: 0 70px 20px 20px;
  }
  .treatment-article-title span {
    font-size: 1.25rem;
  }
  .treatment-article-title:after {
    width: 40px;
    right: -60px;
  }
  .treatment-article-unreset {
    padding: 20px;
    border-radius: 15px;
  }
}
/*========= service ==========*/
.service2-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 85px 70px;
}

.service2-box {
  width: 240px;
}
.service2-box a {
  display: block;
  background: #eaf0f5;
  border-radius: 10px;
  padding: 40px 10px;
  position: relative;
}
.service2-box a:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.35);
}
.service2-box figure {
  margin: 0;
}
.service2-box figure .pic {
  width: 100px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.service2-box figure .pic img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.service2-box .title {
  font-size: 1.5rem;
  color: #000000;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}
.service2-box:nth-child(1) a::before, .service2-box:nth-child(1) a::after, .service2-box:nth-child(3) a::before, .service2-box:nth-child(3) a::after, .service2-box:nth-child(6) a::before, .service2-box:nth-child(6) a::after, .service2-box:nth-child(8) a::before, .service2-box:nth-child(8) a::after, .service2-box:nth-child(9) a::before, .service2-box:nth-child(9) a::after, .service2-box:nth-child(11) a::before, .service2-box:nth-child(11) a::after {
  content: "";
  display: block;
  aspect-ratio: 209/12;
  width: 90%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.service2-box:nth-child(1) a::before, .service2-box:nth-child(3) a::before, .service2-box:nth-child(6) a::before, .service2-box:nth-child(8) a::before, .service2-box:nth-child(9) a::before, .service2-box:nth-child(11) a::before {
  background: url(../images/nail_top.svg) no-repeat center;
  top: 20px;
}
.service2-box:nth-child(1) a::after, .service2-box:nth-child(3) a::after, .service2-box:nth-child(6) a::after, .service2-box:nth-child(8) a::after, .service2-box:nth-child(9) a::after, .service2-box:nth-child(11) a::after {
  background: url(../images/nail_bottom.svg) no-repeat center;
  bottom: 20px;
}

.service2-article {
  width: 100%;
}

.service2-title-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0 80px;
}

.service2-article-title {
  position: relative;
}
.service2-article-title span {
  display: inline-block;
  border-top: 2px solid var(--green);
  font-size: 1.625rem;
  color: var(--green);
  font-weight: 500;
  padding-top: 10px;
  position: relative;
  top: -1px;
}

.service2-detail-pic {
  z-index: 1;
  position: relative;
}
.service2-detail-pic .pic {
  width: 330px;
  aspect-ratio: 330/115;
  border-radius: 10px;
  overflow: hidden;
}
.service2-detail-pic .pic img {
  display: block;
  max-width: 100%;
}

.service2-article-unreset {
  background: url(../images/bg_blue.jpg);
  padding: 40px 70px;
  border-radius: 40px;
  overflow: hidden;
  margin-top: -35px;
}

/*========== service mobile ==========*/
@media (max-width: 1280px) {
  .service2-list {
    gap: 30px;
  }
  .service2-box {
    width: 220px;
  }
  .service2-box a {
    padding: 30px 10px;
  }
  .service2-box figure .pic {
    width: 80px;
  }
  .service2-box .title {
    font-size: 1.375rem;
  }
  .service2-title-group {
    margin: 0 40px;
  }
  .service2-article-title span {
    font-size: 1.375rem;
  }
  .service2-article-unreset {
    padding: 50px 40px 40px 40px;
  }
}
@media (max-width: 1030px) {
  .service2-box {
    width: 190px;
  }
}
@media (max-width: 910px) {
  .service2-box:nth-child(5) a::before, .service2-box:nth-child(5) a::after, .service2-box:nth-child(7) a::before, .service2-box:nth-child(7) a::after {
    content: "";
    display: block;
    aspect-ratio: 209/12;
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .service2-box:nth-child(5) a::before, .service2-box:nth-child(7) a::before {
    background: url(../images/nail_top.svg) no-repeat center;
    top: 20px;
  }
  .service2-box:nth-child(5) a::after, .service2-box:nth-child(7) a::after {
    background: url(../images/nail_bottom.svg) no-repeat center;
    bottom: 20px;
  }
  .service2-box:nth-child(6) a::before, .service2-box:nth-child(6) a::after, .service2-box:nth-child(8) a::before, .service2-box:nth-child(8) a::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .service2-title-group {
    flex-wrap: wrap;
  }
  .service2-article-title {
    width: 100%;
  }
  .service2-detail-pic {
    width: 100%;
  }
}
@media (max-width: 690px) {
  .service2-box {
    width: 160px;
  }
  .service2-box figure .pic {
    width: 60px;
  }
  .service2-box .title {
    font-size: 1.125rem;
  }
  .service2-box:nth-child(1) a::before, .service2-box:nth-child(1) a::after, .service2-box:nth-child(2) a::before, .service2-box:nth-child(2) a::after, .service2-box:nth-child(3) a::before, .service2-box:nth-child(3) a::after, .service2-box:nth-child(4) a::before, .service2-box:nth-child(4) a::after, .service2-box:nth-child(5) a::before, .service2-box:nth-child(5) a::after, .service2-box:nth-child(6) a::before, .service2-box:nth-child(6) a::after, .service2-box:nth-child(7) a::before, .service2-box:nth-child(7) a::after, .service2-box:nth-child(8) a::before, .service2-box:nth-child(8) a::after, .service2-box:nth-child(9) a::before, .service2-box:nth-child(9) a::after, .service2-box:nth-child(10) a::before, .service2-box:nth-child(10) a::after, .service2-box:nth-child(11) a::before, .service2-box:nth-child(11) a::after {
    content: "";
    display: block;
    aspect-ratio: 209/12;
    width: 90%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .service2-box:nth-child(1) a::before, .service2-box:nth-child(2) a::before, .service2-box:nth-child(3) a::before, .service2-box:nth-child(4) a::before, .service2-box:nth-child(5) a::before, .service2-box:nth-child(6) a::before, .service2-box:nth-child(7) a::before, .service2-box:nth-child(8) a::before, .service2-box:nth-child(9) a::before, .service2-box:nth-child(10) a::before, .service2-box:nth-child(11) a::before {
    background: url(../images/nail_top.svg) no-repeat center;
    top: 20px;
  }
  .service2-box:nth-child(1) a::after, .service2-box:nth-child(2) a::after, .service2-box:nth-child(3) a::after, .service2-box:nth-child(4) a::after, .service2-box:nth-child(5) a::after, .service2-box:nth-child(6) a::after, .service2-box:nth-child(7) a::after, .service2-box:nth-child(8) a::after, .service2-box:nth-child(9) a::after, .service2-box:nth-child(10) a::after, .service2-box:nth-child(11) a::after {
    background: url(../images/nail_bottom.svg) no-repeat center;
    bottom: 20px;
  }
}
@media (max-width: 640px) {
  .service2-article-title span {
    font-size: 1.25rem;
  }
  .service2-title-group {
    margin: 0 20px;
  }
  .service2-detail-pic .pic {
    max-width: 100%;
  }
  .service2-article-unreset {
    padding: 50px 20px 20px 20px;
    border-radius: 15px;
  }
}
@media (max-width: 480px) {
  .service2-list {
    gap: 15px;
  }
  .service2-box {
    width: 150px;
  }
  .service2-box a {
    padding: 25px 10px;
  }
  .service2-box figure .pic {
    width: 50px;
  }
  .service2-box .title {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .service2-list {
    gap: 10px;
  }
  .service2-box {
    width: 140px;
  }
  .service2-box a {
    padding: 20px 10px;
  }
  .service2-box .title {
    font-weight: 500;
  }
}
@media (max-width: 320px) {
  .service2-box {
    width: 130px;
  }
}