@charset "UTF-8";
/*========================================================
colors
========================================================*/
/*========================================================
fonts
========================================================*/
/*========================================================
spacing
========================================================*/
/*========================================================
breakpoint
========================================================*/
/*========================================================
mixin
========================================================*/
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  position: relative;
  padding-bottom: 3px;
  font-weight: 600;
  cursor: pointer;
  color: rgb(109, 109, 109);
  padding-inline: 3px;
}
@media (max-width: 1000px) {
  .read-more-btn {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .read-more-btn {
    font-size: 13px;
  }
}
.read-more-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: rgb(109, 109, 109);
}
.read-more-btn ._circle-arrow {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgb(109, 109, 109);
  position: relative;
  transition: 0.3s ease;
}
@media (max-width: 1000px) {
  .read-more-btn ._circle-arrow {
    width: 18px;
    height: 18px;
  }
}
.read-more-btn ._circle-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.read-more-btn:hover ._circle-arrow {
  background-color: rgb(0, 213, 191);
}

.read-more-wrapper._center {
  margin-top: 40px;
  text-align: center;
}

/*========================================================

========================================================*/
/*========================================================
modal
========================================================*/
#confirm-modal {
  display: none; /* 初期非表示を必ず指定 */
}

.confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(218, 216, 217);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.confirm-modal {
  background: #fff;
  padding: 100px 135px;
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin-inline: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
}
.confirm-modal h2 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid rgb(220, 220, 214);
}
.confirm-modal p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  text-align: justify;
  padding-inline: 35px;
}
.confirm-modal .confirm-btn {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.confirm-modal button {
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid;
  width: 200px;
  height: 80px;
}

@media (max-width: 820px) {
  .confirm-modal {
    padding-inline: 80px;
  }
}
@media (max-width: 640px) {
  .confirm-modal {
    padding-inline: 45px;
  }
  .confirm-modal button {
    width: 150px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .confirm-modal {
    padding-inline: 20px;
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: sans-serif;
  z-index: 10;
}
@media (max-width: 1680px) {
  .scroll-indicator {
    left: 15px;
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    left: 5px;
    bottom: 20px;
  }
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
  transform: rotate(180deg);
}

.scroll-line {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  background-color: rgb(23, 189, 201);
  border-radius: 50%;
  animation: scrollDotDrop 1.8s infinite ease;
  opacity: 0;
  position: relative;
}

@keyframes scrollDotDrop {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    transform: translateY(200px);
    opacity: 1;
  }
  100% {
    transform: translateY(200px);
    opacity: 0;
  }
}
.scroll-bar {
  width: 1px;
  height: 200px;
  background-color: rgb(87, 87, 87);
}

.breadcrumb {
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: 60px;
  margin-block: 20px;
  padding-block: 20px;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-inline: 20px;
    white-space: nowrap;
    overflow: scroll;
  }
}
.breadcrumb ol {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgb(101, 101, 101);
  font-weight: 600;
}
.breadcrumb li {
  display: flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: rgb(101, 101, 101);
  margin: 0 10px;
}
.breadcrumb li:last-of-type {
  padding-right: 60px;
}

body {
  color: rgb(101, 101, 101);
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 300;
}

body.menu-open {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}

a {
  cursor: pointer;
}

p {
  line-height: 1.8;
}
@media (max-width: 768px) {
  p {
    font-size: 13px;
  }
}

.__pc {
  display: flex;
}
@media (max-width: 768px) {
  .__pc {
    display: none !important;
  }
}

.__sp {
  display: none;
}
@media (max-width: 768px) {
  .__sp {
    display: flex;
  }
}

section h2 {
  font-size: 45px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  margin-top: 160px;
  margin-bottom: 120px;
  gap: 10px;
}
section h2 ._en {
  font-size: 20px;
}
@media (max-width: 768px) {
  section h2 ._en {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  section h2 {
    margin-top: 100px;
    font-size: 40px;
  }
}

.section-width {
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: 60px;
}
@media (max-width: 1000px) {
  .section-width {
    padding-inline: 40px;
  }
}
@media (max-width: 768px) {
  .section-width {
    padding-inline: 20px;
  }
}

.heading-section {
  background: rgb(212, 212, 212);
}
.heading-section h1 {
  max-width: 1560px;
  margin-inline: auto;
  padding-top: 300px;
  padding-bottom: 40px;
  padding-inline: 60px;
  font-size: 45px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  color: rgb(39, 39, 39);
  gap: 10px;
}
.heading-section h1 ._en {
  font-size: 20px;
}
@media (max-width: 768px) {
  .heading-section h1 ._en {
    font-size: 18px;
  }
}
@media (max-width: 1680px) {
  .heading-section h1 {
    padding-top: 200px;
  }
}
@media (max-width: 768px) {
  .heading-section h1 {
    font-size: 40px;
    padding-inline: 20px;
    line-height: 1.3;
  }
}

br.sp {
  display: none;
}
@media (max-width: 768px) {
  br.sp {
    display: block;
  }
}

._comming-soon_text {
  text-align: center;
  font-weight: 400;
  font-size: 28px;
  color: rgb(219, 217, 217);
}
@media (max-width: 768px) {
  ._comming-soon_text {
    font-size: 20px;
  }
}

.section-slider ._comming-soon_text {
  margin-right: 60px;
  margin-top: 25px;
}
@media (max-width: 768px) {
  .section-slider ._comming-soon_text {
    margin-right: 20px;
  }
}

/*========================================================
header
========================================================*/
.pc-only {
  display: flex;
}
@media (max-width: 1000px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 1000px) {
  .sp-only {
    display: flex !important;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 35px 30px 60px;
  position: fixed;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.3s ease;
}
@media (max-width: 1440px) {
  header {
    padding: 30px 35px;
  }
}
@media (max-width: 1200px) {
  header {
    padding: 30px 20px;
  }
}
header .logo {
  width: 165px;
}
@media (max-width: 1440px) {
  header .logo {
    width: 140px;
  }
}
@media (max-width: 1200px) {
  header .logo {
    width: 120px;
  }
}
@media (max-width: 1000px) {
  header .logo {
    position: static;
  }
}
header .header-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 40px;
}
@media (max-width: 1680px) {
  header .header-right {
    gap: 25px;
  }
}
@media (max-width: 1440px) {
  header .header-right {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  header .header-right {
    gap: 15px;
  }
}
header .header-right .nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin-left: auto;
}
@media (max-width: 1680px) {
  header .header-right .nav ul {
    gap: 25px;
  }
}
@media (max-width: 1440px) {
  header .header-right .nav ul {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  header .header-right .nav ul {
    gap: 15px;
  }
}
header .header-right .nav ul li {
  position: relative;
  color: rgb(39, 39, 39);
  font-size: 19px;
}
@media (max-width: 1680px) {
  header .header-right .nav ul li {
    font-size: 15px;
  }
}
@media (max-width: 1440px) {
  header .header-right .nav ul li {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  header .header-right .nav ul li {
    font-size: 13px;
  }
}
header .header-right .nav ul li a {
  transition: 0.3s ease;
}
header .header-right .nav ul li a:hover {
  opacity: 0.7;
}
header .header-right .nav ul li.has-dropdown .dropdown-arrow {
  display: inline-block;
  margin-top: -3px;
  margin-left: 6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform-origin: center;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
header .header-right .nav ul li.has-dropdown .dropdown {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: 3px 6px 15px rgba(0, 0, 0, 0.15);
  min-width: 100px;
  z-index: 1000;
  pointer-events: none;
}
header .header-right .nav ul li.has-dropdown.show .dropdown {
  opacity: 1;
  pointer-events: auto;
}
header .header-right .nav ul li.has-dropdown a {
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}
header .header-right .nav ul li.has-dropdown a:hover {
  opacity: 0.7;
}
header .header-right .nav ul li.has-dropdown.show .dropdown-arrow {
  transform: rotate(-135deg);
}
header .header-right .nav ul li.has-dropdown .dropdown a {
  display: block;
  padding-block: 12px;
  margin-inline: 12px;
  text-decoration: none;
  border-bottom: 1px solid white;
}
header .header-right .nav ul li.has-dropdown .dropdown a:last-of-type {
  border: none;
}
header .header-right .header-actions {
  display: flex;
  gap: 20px;
}
header .header-right .header-actions a {
  color: rgb(39, 39, 39);
  font-size: 19px;
  font-weight: 300;
  text-decoration: none;
  border: 1px solid;
  padding: 15px 30px;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 1680px) {
  header .header-right .header-actions a {
    font-size: 15px;
  }
}
@media (max-width: 1440px) {
  header .header-right .header-actions a {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  header .header-right .header-actions a {
    font-size: 13px;
    padding: 10px 20px;
  }
}
header .header-right .header-actions a:hover {
  background: rgb(101, 101, 101);
  color: white;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}

/* --- ハンバーガー --- */
.hamburger {
  flex-direction: column;
  gap: 6px;
  width: 30px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #333;
  transition: 0.3s;
  width: 100%;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(30deg) translate(3px, 3px);
}
.hamburger.active span:nth-child(2) {
  transform: rotate(-30deg) translate(3px, -3px);
}

/* SPナビ全体 */
.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background: rgb(219, 217, 217);
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  overflow-y: auto;
  padding: 0 30px;
  pointer-events: none;
}
.sp-nav.open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  padding-top: 140px;
}
.sp-nav .sp-nav-inner {
  display: flex;
  max-width: 500px;
  margin-inline: auto;
  gap: 80px;
}
@media (max-width: 768px) {
  .sp-nav .sp-nav-inner {
    flex-direction: column;
    gap: 0;
    margin: 0;
  }
}
.sp-nav ul {
  list-style: none;
  padding: 0;
}
.sp-nav ul li {
  margin-bottom: 20px;
  font-weight: 600;
}
.sp-nav ul li a {
  font-size: 18px;
  color: rgb(39, 39, 39);
  text-decoration: none;
  transition: 0.3s ease;
}
.sp-nav ul li a:hover {
  opacity: 0.7;
}
.sp-nav ul li .sub-menu {
  padding-left: 15px;
}
.sp-nav ul li .sub-menu li {
  margin: 8px 0;
}
.sp-nav ul ul {
  padding-left: 20px;
  gap: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.sp-nav ul ul li {
  position: relative;
  padding-left: 48px;
  font-size: 14px;
  color: rgb(39, 39, 39);
  margin-bottom: 0;
}
.sp-nav ul ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40px;
  height: 12px;
  border-left: 1px solid rgb(39, 39, 39);
  border-bottom: 1px solid rgb(39, 39, 39);
}
.sp-nav ul ul li a {
  font-weight: 300;
}

/*========================================================
footer
========================================================*/
footer {
  background: rgb(241, 241, 241);
  padding-block: 60px;
  padding-inline: 50px;
  margin-top: 350px;
  color: rgb(39, 39, 39);
}
@media (max-width: 1680px) {
  footer {
    padding-inline: 35px;
  }
}
@media (max-width: 1200px) {
  footer {
    padding-inline: 20px;
  }
}
@media (max-width: 768px) {
  footer {
    margin-top: 100px;
  }
}
footer .nav-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  footer .nav-wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
footer .nav-wrapper ._left img {
  width: 340px;
  margin-bottom: 42px;
}
@media (max-width: 1200px) {
  footer .nav-wrapper ._left img {
    width: 300px;
  }
}
@media (max-width: 1000px) {
  footer .nav-wrapper ._left img {
    width: 280px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  footer .nav-wrapper ._left img {
    width: 200px;
  }
}
footer .nav-wrapper ._left p {
  font-size: 22px;
  font-weight: 600;
  line-height: 40px;
}
@media (max-width: 1200px) {
  footer .nav-wrapper ._left p {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  footer .nav-wrapper ._left p {
    font-size: 18px;
  }
}
footer .nav-wrapper ._right {
  display: flex;
  align-items: baseline;
  gap: 150px;
}
@media (max-width: 1200px) {
  footer .nav-wrapper ._right {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  footer .nav-wrapper ._right {
    flex-wrap: wrap;
    gap: 35px;
  }
}
@media (max-width: 768px) {
  footer .nav-wrapper ._right nav {
    width: calc(50% - 18px);
  }
}
footer .nav-wrapper ._right nav ul {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
footer .nav-wrapper ._right nav ul li a {
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;
}
@media (max-width: 1680px) {
  footer .nav-wrapper ._right nav ul li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  footer .nav-wrapper ._right nav ul li a {
    font-size: 13px;
  }
}
footer .nav-wrapper ._right nav ul li a:hover {
  opacity: 0.7;
}
footer .nav-wrapper ._right nav ul ul {
  padding-left: 20px;
  gap: 20px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
footer .nav-wrapper ._right nav ul ul li {
  position: relative;
  padding-left: 48px;
  font-size: 14px;
  color: #333;
}
footer .nav-wrapper ._right nav ul ul li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40px;
  height: 12px;
  border-left: 1px solid #333;
  border-bottom: 1px solid #333;
}
footer .nav-wrapper ._right nav ul ul li a {
  font-weight: 300;
}
footer .link-wrapper {
  margin-top: 120px;
  display: flex;
  justify-content: end;
  gap: 40px;
}
@media (max-width: 768px) {
  footer .link-wrapper {
    flex-direction: column;
    margin-top: 40px;
  }
}
footer .colyright-wrapper {
  margin-top: 40px;
  padding-top: 10px;
  border-top: 1px solid;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 768px) {
  footer .colyright-wrapper {
    flex-direction: column;
    align-items: end;
    gap: 4px;
  }
}
footer .colyright-wrapper a {
  font-size: 12px;
  font-weight: 600;
}
footer .colyright-wrapper p {
  font-size: 10px;
  font-weight: 600;
}
footer .read-more-btn {
  font-size: 24px;
  color: rgb(39, 39, 39);
}
@media (max-width: 1440px) {
  footer .read-more-btn {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  footer .read-more-btn {
    font-size: 13px;
  }
}
footer .read-more-btn ._circle-arrow {
  background-color: rgb(39, 39, 39);
}
@media (max-width: 768px) {
  footer .read-more-btn ._circle-arrow {
    width: 12px;
    height: 12px;
  }
}
footer .read-more-btn ._circle-arrow::before {
  left: 42%;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 768px) {
  footer .read-more-btn ._circle-arrow::before {
    width: 5px;
    height: 5px;
  }
}

.mv-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      object-position: 62% 40%;
  } */
}
.mv-section .mv-img {
  width: 100%;
  height: 100vh;
  background: url(../img/Top/mv_img.png) no-repeat;
  background-size: cover;
  background-position: 25% 50%;
}
@media (max-width: 768px) {
  .mv-section .mv-img {
    background: url(../img/Top/main-sp.png) no-repeat;
    background-size: cover;
    background-position: center bottom;
  }
}

.copy-area {
  position: absolute;
  top: 50%;
  left: 330px;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 1440px) {
  .copy-area {
    left: 150px;
  }
}
@media (max-width: 1000px) {
  .copy-area {
    left: 100px;
  }
}
@media (max-width: 768px) {
  .copy-area {
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }
}
.copy-area p {
  font-weight: 600;
  color: rgb(39, 39, 39);
  text-shadow: 0.5px 0.5px 1px rgb(221, 219, 220);
}
.copy-area p:first-of-type {
  font-size: 45px;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .copy-area p:first-of-type {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .copy-area p:first-of-type {
    font-size: 14px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.copy-area p:last-of-type {
  font-size: 40px;
  line-height: 1.8;
  white-space: nowrap;
}
@media (max-width: 1440px) {
  .copy-area p:last-of-type {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .copy-area p:last-of-type {
    font-size: 16px;
    letter-spacing: 0.25em;
    font-feature-settings: "palt";
  }
}

.about_us-section {
  position: relative;
}
.about_us-section .section-width h2 {
  margin-left: 50px;
}
@media (max-width: 768px) {
  .about_us-section .section-width h2 {
    margin-left: 20px;
  }
}

.about_us-contents {
  display: flex;
  gap: 200px;
  padding-bottom: 200px;
  border-bottom: 1px solid;
  position: relative;
  padding-inline: 50px;
}
@media (max-width: 1440px) {
  .about_us-contents {
    gap: 150px;
  }
}
@media (max-width: 1000px) {
  .about_us-contents {
    gap: 80px;
    padding-inline: 20px;
  }
}
@media (max-width: 768px) {
  .about_us-contents {
    flex-direction: column;
  }
}
.about_us-contents ._left {
  width: 50%;
}
@media (max-width: 768px) {
  .about_us-contents ._left {
    order: 1;
    width: 100%;
  }
}
.about_us-contents ._left h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .about_us-contents ._left h3 {
    font-size: 25px;
  }
}
.about_us-contents ._left p {
  font-size: 18px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
  margin-top: 60px;
  margin-bottom: 100px;
}
@media (max-width: 1000px) {
  .about_us-contents ._left p {
    font-size: 13px;
  }
}
.about_us-contents ._left a {
  display: flex;
  flex-direction: column;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  transition: 0.3s ease;
}
.about_us-contents ._left a small {
  font-size: 12px;
  letter-spacing: 0.2em;
  position: relative;
  padding-right: 40px;
}
.about_us-contents ._left a small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: rgb(101, 101, 101);
  transition: 0.3s ease;
}
.about_us-contents ._left a small::before {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -15px;
  width: 15px;
  height: 13px;
  border-top: 1px solid;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
.about_us-contents ._left a:hover small::after {
  background-color: rgb(0, 213, 191);
}
.about_us-contents ._left a:hover small::before {
  border-color: rgb(0, 213, 191);
}
.about_us-contents ._right {
  width: 50%;
}
@media (max-width: 768px) {
  .about_us-contents ._right {
    width: 100%;
  }
}

.about_us-section .section-label {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 15px;
  letter-spacing: 0.2em;
  top: 50%;
  transform: translateX(-50%);
  color: rgb(197, 197, 197);
}
@media (max-width: 768px) {
  .about_us-section .section-label {
    font-size: 10px;
  }
}
.about_us-section .section-label.label_left {
  left: 10px;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .about_us-section .section-label.label_left {
    left: 4px;
  }
}
.about_us-section .section-label.label_right {
  right: 10px;
}
@media (max-width: 768px) {
  .about_us-section .section-label.label_right {
    right: 2px;
  }
}

.product-section {
  position: relative;
  margin-top: 200px;
  padding-inline: 50px;
}
@media (max-width: 768px) {
  .product-section {
    margin-top: 100px;
    padding-inline: 20px;
  }
}
.product-section h2 {
  margin-top: 0;
  margin-bottom: 120px;
  margin-left: 0;
}
@media (max-width: 768px) {
  .product-section h2 {
    margin-bottom: 100px;
  }
}
.product-section p {
  margin-top: 0;
  margin-bottom: 120px;
  font-size: 18px;
  line-height: 2;
}
@media (max-width: 1000px) {
  .product-section p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .product-section p {
    margin-bottom: 100px;
  }
}
.product-section ._sp {
  display: none;
}
@media (max-width: 768px) {
  .product-section ._sp {
    margin-top: 80px;
    margin-bottom: 80px;
    display: block;
  }
}
.product-section ._contents {
  display: flex;
  gap: 130px;
  align-items: center;
}
@media (max-width: 1000px) {
  .product-section ._contents {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .product-section ._contents {
    flex-direction: column;
    align-items: start;
  }
}
.product-section ._left {
  width: 35%;
}
@media (max-width: 768px) {
  .product-section ._left {
    width: 100%;
  }
}
.product-section ._left h3 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 110px;
}
@media (max-width: 768px) {
  .product-section ._left h3 {
    font-size: 25px;
    margin-bottom: 70px;
  }
}
.product-section ._left a {
  display: flex;
  flex-direction: column;
  font-size: 25px;
  font-weight: 600;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
}
.product-section ._left a small {
  font-size: 12px;
  letter-spacing: 0.2em;
  position: relative;
  padding-right: 111px;
}
.product-section ._left a small::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: rgb(101, 101, 101);
  transition: 0.3s ease;
}
.product-section ._left a small::before {
  content: "";
  position: absolute;
  right: 2px;
  bottom: -15px;
  width: 15px;
  height: 13px;
  border-top: 1px solid;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
.product-section ._left a:hover small::after {
  background-color: rgb(0, 213, 191);
}
.product-section ._left a:hover small::before {
  border-color: rgb(0, 213, 191);
}
.product-section ._right {
  width: 65%;
}
@media (max-width: 1200px) {
  .product-section ._right {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .product-section ._right {
    display: none;
  }
}
.product-section .section-label {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 15px;
  letter-spacing: 0.2em;
  top: 50%;
  transform: translateX(-50%);
  color: rgb(197, 197, 197);
}
@media (max-width: 768px) {
  .product-section .section-label {
    font-size: 10px;
  }
}
.product-section .section-label.label_left {
  left: 10px;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .product-section .section-label.label_left {
    left: 4px;
  }
}
.product-section .section-label.label_right {
  right: 10px;
}
@media (max-width: 768px) {
  .product-section .section-label.label_right {
    right: 2px;
  }
}

.product-grid-section {
  margin-top: 150px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .product-grid-section {
    margin-bottom: 0;
  }
}
.product-grid-section .content {
  margin-block: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .product-grid-section .content {
    margin-bottom: 40px;
  }
}
.product-grid-section .content h3 {
  font-size: 30px;
  display: inline-block;
  border-bottom: 1px solid rgb(210, 210, 210);
  padding-bottom: 10px;
  margin-inline: 0;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  .product-grid-section .content h3 {
    font-size: 25px;
  }
}
.product-grid-section .content ._item-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 100px;
  margin-bottom: 100px;
  gap: 20px;
  padding-inline: 20px;
  max-width: 1160px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .product-grid-section .content ._item-grid {
    flex-direction: column;
    gap: 80px;
  }
}
.product-grid-section .content ._item-grid ._item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  .product-grid-section .content ._item-grid ._item {
    width: 100%;
  }
}
.product-grid-section .content ._item-grid ._item img {
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1000px) {
  .product-grid-section .content ._item-grid ._item img {
    height: auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-grid-section .content ._item-grid ._item img {
    padding-inline: 80px;
  }
}
.product-grid-section .content ._item-grid ._item h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.67;
}
@media (max-width: 1440px) {
  .product-grid-section .content ._item-grid ._item h4 {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .product-grid-section .content ._item-grid ._item h4 {
    font-size: 13px;
  }
}
.product-grid-section .content ._title {
  text-align: center;
}
.product-grid-section .content ._title h2 {
  padding-inline: 25px;
  font-size: 50px;
  margin: 0;
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .product-grid-section .content ._title h2 {
    font-size: 25px;
    padding-inline: 20px;
  }
}
.product-grid-section .content ._title h2::before, .product-grid-section .content ._title h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: rgb(210, 210, 210);
  max-width: 250px;
  width: 100%;
}
@media (max-width: 768px) {
  .product-grid-section .content ._title h2::before, .product-grid-section .content ._title h2::after {
    width: auto;
  }
}
.product-grid-section .content ._title h2::before {
  margin-right: 25px;
}
.product-grid-section .content ._title h2::after {
  margin-left: 25px;
}
.product-grid-section .content ._title h2 img {
  width: 170px;
}
@media (max-width: 768px) {
  .product-grid-section .content ._title h2 img {
    width: 120px;
  }
}
.product-grid-section .content ._title p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.67;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  .product-grid-section .content ._title p {
    font-size: 13px;
    padding-inline: 20px;
    line-height: 1.8;
  }
}
.product-grid-section .content .read-more-wrapper {
  margin-block-start: 80px;
}
@media (max-width: 768px) {
  .product-grid-section .content .read-more-wrapper {
    margin-block-start: 40px;
  }
}
.product-grid-section .contents {
  display: flex;
}
@media (max-width: 768px) {
  .product-grid-section .contents {
    flex-direction: column;
  }
}
.product-grid-section .contents ._left,
.product-grid-section .contents ._right {
  width: 50%;
}
@media (max-width: 768px) {
  .product-grid-section .contents ._left,
  .product-grid-section .contents ._right {
    width: 100%;
  }
}
.product-grid-section .contents ._left {
  background: rgb(143, 143, 143);
  position: relative;
}
.product-grid-section .contents ._right {
  display: flex;
  flex-direction: column;
}
.product-grid-section .contents ._item h3 img {
  height: 40px;
  width: auto;
}
.product-grid-section .contents ._item p {
  font-size: 15px;
  font-weight: 600;
  color: rgb(39, 39, 39);
}
@media (max-width: 1440px) {
  .product-grid-section .contents ._item p {
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .product-grid-section .contents ._item p {
    font-size: 13px;
    text-shadow: 0px 0px 3px rgb(229, 230, 234);
  }
}
.product-grid-section .contents ._left ._item {
  position: relative;
  height: 100%;
}
.product-grid-section .contents ._left ._item a .img-wrapper {
  overflow: hidden;
  height: 100%;
}
.product-grid-section .contents ._left ._item a .img-wrapper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.product-grid-section .contents ._left ._item a ._item-info {
  position: absolute;
  top: 45px;
  left: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .product-grid-section .contents ._left ._item a ._item-info {
    top: 25px;
    left: 25px;
  }
}
@media (max-width: 1000px) {
  .product-grid-section .contents ._left ._item a ._item-info {
    top: 20px;
    left: 20px;
  }
}
.product-grid-section .contents ._left ._item a ._btn {
  background: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 25px 40px;
  position: absolute;
  bottom: 45px;
  left: 45px;
  color: rgb(43, 43, 43);
  transition: 0.3s ease;
}
@media (max-width: 1200px) {
  .product-grid-section .contents ._left ._item a ._btn {
    padding: 20px 30px;
    bottom: 25px;
    left: 25px;
  }
}
@media (max-width: 1000px) {
  .product-grid-section .contents ._left ._item a ._btn {
    padding: 15px 25px;
    bottom: 20px;
    left: 20px;
  }
}
.product-grid-section .contents ._left ._item a:hover img._scale-up {
  transform: scale(1.1);
}
.product-grid-section .contents ._left ._item a:hover ._btn {
  background: rgb(0, 213, 191);
  color: white;
}
.product-grid-section .contents ._right ._item {
  position: relative;
}
.product-grid-section .contents ._right ._item a .img-wrapper {
  overflow: hidden;
}
.product-grid-section .contents ._right ._item a .img-wrapper img {
  transition: transform 0.5s ease;
}
.product-grid-section .contents ._right ._item ._item-info {
  position: absolute;
  top: 45px;
  left: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1200px) {
  .product-grid-section .contents ._right ._item ._item-info {
    top: 25px;
    left: 25px;
  }
}
@media (max-width: 1000px) {
  .product-grid-section .contents ._right ._item ._item-info {
    top: 20px;
    left: 20px;
  }
}
.product-grid-section .contents ._right ._item ._item-info p {
  text-shadow: 0px 0px 3px rgb(193, 189, 190);
}
.product-grid-section .contents ._right ._item ._btn {
  background: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px;
  padding: 25px 40px;
  position: absolute;
  bottom: 45px;
  left: 45px;
  color: rgb(43, 43, 43);
}
@media (max-width: 1200px) {
  .product-grid-section .contents ._right ._item ._btn {
    padding: 20px 30px;
    bottom: 25px;
    left: 25px;
  }
}
@media (max-width: 1000px) {
  .product-grid-section .contents ._right ._item ._btn {
    padding: 15px 25px;
    bottom: 20px;
    left: 20px;
  }
}
.product-grid-section .contents ._right ._item:hover img._scale-up {
  transform: scale(1.1);
}
.product-grid-section .contents ._right ._item:hover ._btn {
  background: rgb(0, 213, 191);
  color: white;
}
.product-grid-section .contents ._right ._item:nth-of-type(2) p {
  text-shadow: 0px 0px 3px rgb(224, 224, 227);
}

.section-case_studies h2 {
  max-width: 1560px;
  padding-inline: 60px;
  margin-inline: auto;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-case_studies h2 {
    padding-inline: 20px;
  }
}
.section-case_studies .contents {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .section-case_studies .contents {
    flex-direction: column;
  }
}
.section-case_studies .contents .case-box {
  width: 20%;
}
@media (max-width: 768px) {
  .section-case_studies .contents .case-box {
    width: 100%;
  }
}
.section-case_studies .contents .case-box img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 384/298;
}
.section-case_studies .contents .case-box:nth-child(odd) ._details {
  background-color: rgb(241, 241, 241);
}
.section-case_studies .contents .case-box:nth-child(even) ._details {
  background-color: rgb(249, 249, 249);
}
.section-case_studies .contents .case-box ._details {
  padding: 30px 40px;
}
.section-case_studies .contents .case-box ._details ._date {
  font-size: 15px;
  font-weight: 600;
  color: rgb(43, 43, 43);
}
.section-case_studies .contents .case-box ._details h3 {
  color: rgb(43, 43, 43);
  font-size: 18px;
  text-align: justify;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1680px) {
  .section-case_studies .contents .case-box ._details h3 {
    font-size: 15px;
  }
}
.section-case_studies .contents .case-box ._details .read-more-wrapper {
  display: flex;
}
.section-case_studies .contents .case-box ._details .read-more-wrapper .read-more-btn {
  margin-left: auto;
}
.section-case_studies .contents .case-box:hover ._circle-arrow {
  background-color: rgb(0, 213, 191);
}
.section-case_studies .read-more-wrapper._center a ._text {
  font-size: 22px;
}
@media (max-width: 1440px) {
  .section-case_studies .read-more-wrapper._center a ._text {
    font-size: 18px;
  }
}
.section-case_studies .read-more-wrapper._center a ._circle-arrow {
  width: 24px;
  height: 24px;
}
@media (max-width: 1440px) {
  .section-case_studies .read-more-wrapper._center a ._circle-arrow {
    width: 20px;
    height: 20px;
  }
}
.section-case_studies .read-more-wrapper._center a::after {
  bottom: -4px;
}

.section-science {
  margin-bottom: 100px;
}
.section-science h2 {
  max-width: 1560px;
  padding-inline: 60px;
  margin-inline: auto;
  margin-top: 240px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .section-science h2 {
    padding-inline: 20px;
  }
}
.section-science .contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-science .contents .content-item {
  background: rgb(241, 241, 241);
  cursor: pointer;
}
.section-science .contents .content-item ._info {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-block: 20px;
  padding-inline: 60px;
}
@media (max-width: 768px) {
  .section-science .contents .content-item ._info {
    flex-direction: column;
    row-gap: 10px;
    padding-inline: 20px;
  }
}
.section-science .contents .content-item ._info ._date {
  font-size: 20px;
  font-weight: 600;
}
.section-science .contents .content-item ._info ._detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section-science .contents .content-item ._info ._detail span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
}
.section-science .contents .content-item ._info ._detail h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s ease;
}
.section-science .contents .content-item:hover h3 {
  color: rgb(0, 213, 191);
}
.section-science .read-more-wrapper._center {
  margin-top: 60px;
}
.section-science .read-more-wrapper._center a ._text {
  font-size: 22px;
}
@media (max-width: 1440px) {
  .section-science .read-more-wrapper._center a ._text {
    font-size: 18px;
  }
}
.section-science .read-more-wrapper._center a ._circle-arrow {
  width: 24px;
  height: 24px;
}
@media (max-width: 1440px) {
  .section-science .read-more-wrapper._center a ._circle-arrow {
    width: 20px;
    height: 20px;
  }
}
.section-science .read-more-wrapper._center a::after {
  bottom: -4px;
}

.section-slider {
  position: relative;
}
.section-slider h2 {
  margin-top: 200px;
  margin-bottom: 45px;
}
@media (max-width: 768px) {
  .section-slider h2 {
    margin-top: 100px;
    padding-right: 20px;
    line-height: 1.3;
  }
}
.section-slider .section-label {
  position: absolute;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 15px;
  letter-spacing: 0.2em;
  top: 50%;
  transform: translateX(-50%);
  color: rgb(197, 197, 197);
}
@media (max-width: 768px) {
  .section-slider .section-label {
    font-size: 10px;
  }
}
.section-slider .section-label.label_left {
  left: 10px;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .section-slider .section-label.label_left {
    left: 4px;
  }
}
.section-slider .section-contents {
  padding-left: 60px;
  margin-left: 300px;
  margin-right: 0;
}
@media (max-width: 1200px) {
  .section-slider .section-contents {
    margin-left: 200px;
  }
}
@media (max-width: 1000px) {
  .section-slider .section-contents {
    margin-left: 150px;
  }
}
@media (max-width: 768px) {
  .section-slider .section-contents {
    margin-left: 0px;
    padding-left: 20px;
  }
}
.section-slider .read-more-wrapper._right {
  margin-top: 60px;
}
.section-slider .read-more-wrapper._right a ._text {
  font-size: 22px;
}
@media (max-width: 1440px) {
  .section-slider .read-more-wrapper._right a ._text {
    font-size: 18px;
  }
}
.section-slider .read-more-wrapper._right a ._circle-arrow {
  width: 24px;
  height: 24px;
}
@media (max-width: 1440px) {
  .section-slider .read-more-wrapper._right a ._circle-arrow {
    width: 20px;
    height: 20px;
  }
}
.section-slider .read-more-wrapper._right a::after {
  bottom: -4px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: start;
  }
}

.section-slider .read-more-wrapper._right {
  display: flex;
  justify-content: end;
  padding-inline-end: 245px;
}
@media (max-width: 1680px) {
  .section-slider .read-more-wrapper._right {
    padding-inline-end: 60px;
  }
}
@media (max-width: 768px) {
  .section-slider .read-more-wrapper._right {
    padding-inline-end: 20px;
  }
}
.section-slider .swiper-pagination {
  position: relative !important;
  text-align: left !important;
  margin-top: 20px !important;
  top: 0 !important;
}
.section-slider .swiper-pagination-bullet-active {
  background: rgb(109, 109, 109) !important;
}
.section-slider .nav-arrows {
  display: flex;
  gap: 20px;
  padding-inline-end: 300px;
  margin-bottom: 45px;
}
@media (max-width: 1680px) {
  .section-slider .nav-arrows {
    padding-inline-end: 60px;
  }
}
@media (max-width: 768px) {
  .section-slider .nav-arrows {
    padding-inline-end: 20px;
    margin-left: auto;
    margin-bottom: 20px;
  }
}
.section-slider .swiper.news-slider {
  margin-bottom: 40px;
}
.section-slider .swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  position: static !important;
  color: rgb(101, 101, 101) !important;
  border: 1px solid !important;
  border-radius: 50% !important;
}
.section-slider .swiper-button-next {
  width: 40px !important;
  height: 40px !important;
  position: static !important;
  color: rgb(101, 101, 101) !important;
  border: 1px solid !important;
  border-radius: 50% !important;
}
.section-slider .swiper-button-next:after {
  font-size: 20px !important;
}
.section-slider .swiper-button-prev:after {
  font-size: 20px !important;
}
.section-slider .news-slider {
  padding: 40px 0;
  position: relative;
}
.section-slider .swiper-slide {
  background: rgb(241, 241, 241);
  padding: 60px 30px 100px 30px;
  /* width: 300px; */
  box-sizing: border-box;
  /* min-height: 400px; */
  display: flex !important;
  flex-direction: column;
  height: auto !important;
}
@media (max-width: 768px) {
  .section-slider .swiper-slide {
    padding: 30px 15px 60px 15px;
  }
}
.section-slider .swiper-slide:hover ._circle-arrow {
  background-color: rgb(0, 213, 191);
}
.section-slider .swiper-slide-item {
  height: 100% !important;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .news-card {
    gap: 15px;
  }
}
.news-card .date {
  font-size: 18px;
  font-weight: 600;
  color: rgb(39, 39, 39);
}
@media (max-width: 768px) {
  .news-card .date {
    font-size: 13px;
  }
}
.news-card .badge {
  color: rgb(39, 39, 39);
  display: inline-block;
  border: 1px solid rgb(112, 112, 112);
  padding: 15px 35px;
  border-radius: 999px;
  font-size: 18px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1680px) {
  .news-card .badge {
    font-size: 16px;
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .news-card .badge {
    font-size: 13px;
    padding: 8px 12px;
  }
}
.news-card h3 {
  font-size: 24px;
  color: rgb(39, 39, 39);
  line-height: 1.5;
  text-align: left;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1680px) {
  .news-card h3 {
    font-size: 18px;
  }
}

.swiper-slide .read-more-wrapper {
  position: absolute;
  bottom: 50px;
  right: 30px;
}
@media (max-width: 768px) {
  .swiper-slide .read-more-wrapper {
    bottom: 30px;
    right: 15px;
  }
}

.PHASE-III-STUDY-wrapper {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 60px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper {
    padding-inline: 20px;
  }
}
.PHASE-III-STUDY-wrapper ._heading-area {
  display: flex;
  flex-direction: column;
  gap: 60px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding-block: 80px;
  margin-top: 180px;
}
.PHASE-III-STUDY-wrapper ._heading-area ._head-jp {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._heading-area ._head-jp {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._heading-area ._head-jp {
    font-size: 18px;
  }
}
.PHASE-III-STUDY-wrapper ._heading-area ._head-en {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.7;
  font-feature-settings: "palt";
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._heading-area ._head-en {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._heading-area ._head-en {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._heading-area ._attention {
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._heading-area ._attention {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._heading-area ._attention {
    font-size: 12px;
  }
}
.PHASE-III-STUDY-wrapper ._content {
  margin-block: 100px;
}
.PHASE-III-STUDY-wrapper ._content h2 {
  text-align: center;
  font-size: 29px;
  margin: 0;
  margin-bottom: 35px;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content h2 {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content h2 {
    font-size: 18px;
  }
}
.PHASE-III-STUDY-wrapper ._content p {
  font-size: 20px;
  line-height: 1.75;
  text-align: justify;
  font-weight: 300;
  letter-spacing: 0.03em;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content p {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.6;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content h3 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content h3 {
    font-size: 16px;
  }
}
.PHASE-III-STUDY-wrapper ._content p._note {
  margin-top: 40px;
  line-height: 1.3;
}
.PHASE-III-STUDY-wrapper ._content p._note small {
  font-size: 15px;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content p._note small {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content p._note small {
    font-size: 12px;
  }
}
.PHASE-III-STUDY-wrapper ._content dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content dl {
    grid-template-columns: 1fr;
  }
}
.PHASE-III-STUDY-wrapper ._content dt {
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content dt {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content dt {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content dd {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  line-height: 1.75;
  text-align: justify;
  margin-top: -8px;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content dd {
    font-size: 16px;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content dd {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
.PHASE-III-STUDY-wrapper ._content dl dd > dl {
  -moz-column-gap: 0;
       column-gap: 0;
}
.PHASE-III-STUDY-wrapper ._content dl dd > dl dt {
  font-size: 20px;
  font-weight: 300;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content dl dd > dl dt {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content dl dd > dl dt {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content dl dd > dl dd {
  margin-top: 0;
}
.PHASE-III-STUDY-wrapper ._content ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.PHASE-III-STUDY-wrapper ._content ul li {
  position: relative;
  padding-left: 1.5em;
  text-indent: 0em;
  font-size: 20px;
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content ul li {
    font-size: 16px;
    letter-spacing: 0.03em;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ul li {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 15px;
  height: 15px;
  background-color: rgb(101, 101, 101);
  border-radius: 50%;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content ul li::before {
    top: 9px;
    width: 10px;
    height: 10px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._figure {
  margin-top: 60px;
}
.PHASE-III-STUDY-wrapper ._content ._figure h4 {
  font-size: 20px;
  border-bottom: 3px solid rgb(225, 225, 225);
  padding-bottom: 20px;
  padding-inline: 10px;
  line-height: 1.6;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content ._figure h4 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._figure h4 {
    font-size: 16px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._figure img {
  margin-top: 70px;
  margin-bottom: 120px;
}
.PHASE-III-STUDY-wrapper ._content ._table {
  position: relative;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._table {
    width: calc(100% + 20px);
  }
}
.PHASE-III-STUDY-wrapper ._content ._table .table-scroll {
  overflow-x: auto;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._table .table-scroll {
    padding-right: 20px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._table h4 {
  font-size: 20px;
  padding-left: 20px;
  line-height: 1.6;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content ._table h4 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._table h4 {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-bottom: 1px solid;
  font-size: 20px;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content ._table table {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._table table {
    font-size: 13px;
    width: calc(100% + 60px);
    padding-right: 60px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._table table th,
.PHASE-III-STUDY-wrapper ._content ._table table td {
  padding: 10px 20px;
  text-align: left;
  vertical-align: top;
}
.PHASE-III-STUDY-wrapper ._content ._table table th:nth-child(4),
.PHASE-III-STUDY-wrapper ._content ._table table td:nth-child(4) {
  width: 25%;
  white-space: normal;
  min-width: 200px;
}
.PHASE-III-STUDY-wrapper ._content ._table table td:nth-child(1),
.PHASE-III-STUDY-wrapper ._content ._table table td:nth-child(2),
.PHASE-III-STUDY-wrapper ._content ._table table td:nth-child(3),
.PHASE-III-STUDY-wrapper ._content ._table table th:nth-child(1),
.PHASE-III-STUDY-wrapper ._content ._table table th:nth-child(2),
.PHASE-III-STUDY-wrapper ._content ._table table th:nth-child(3) {
  white-space: nowrap;
  overflow: visible;
}
.PHASE-III-STUDY-wrapper ._content ._table table td._note {
  font-size: 10px;
  line-height: 1.5;
  vertical-align: bottom;
}
.PHASE-III-STUDY-wrapper ._content ._table table thead {
  border-top: 1px solid rgb(112, 112, 112);
  border-bottom: 1px solid rgb(112, 112, 112);
}
.PHASE-III-STUDY-wrapper ._content ._table table tbody tr {
  border: none;
}
.PHASE-III-STUDY-wrapper ._content ._table table tbody tr:first-of-type td {
  padding-top: 20px;
}
.PHASE-III-STUDY-wrapper ._content ._table table tbody tr:last-of-type td {
  padding-bottom: 20px;
}
.PHASE-III-STUDY-wrapper ._content ._table p._note {
  margin-top: 20px;
  font-size: 15px;
  padding-inline: 20px;
}
@media (max-width: 1440px) {
  .PHASE-III-STUDY-wrapper ._content ._table p._note {
    font-size: 12px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._table .two-table {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  width: 100%;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._table .two-table {
    padding-right: 20px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._table .two-table table {
  font-size: 15px;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._table .two-table table {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content ._table .two-table table th,
.PHASE-III-STUDY-wrapper ._content ._table .two-table table td {
  padding-block: 10px;
  padding-inline: 0;
  line-height: 1.5;
  vertical-align: middle;
}
.PHASE-III-STUDY-wrapper ._content h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content h5 {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content ol {
  list-style: none;
  counter-reset: ref;
  padding-left: 0;
}
.PHASE-III-STUDY-wrapper ._content ol li {
  font-size: 15px;
  line-height: 1.5;
  counter-increment: ref;
  position: relative;
  padding-left: 1em;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ol li {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content ol li::before {
  content: counter(ref) ")";
  position: absolute;
  left: 0;
}
.PHASE-III-STUDY-wrapper ._content ._foot p {
  font-size: 15px;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content ._foot p {
    font-size: 13px;
  }
}
.PHASE-III-STUDY-wrapper ._content .related-persons {
  font-size: 15px;
  border-top: 1px solid rgb(112, 112, 112);
  padding-top: 40px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 768px) {
  .PHASE-III-STUDY-wrapper ._content .related-persons {
    font-size: 13px;
  }
}

#page_productList .info-section {
  max-width: 1560px;
  margin-inline: auto;
  padding-inline: 60px;
  margin-top: 160px;
}
#page_productList .info-section .head-logo {
  width: 150px;
  display: flex;
  justify-content: flex-start;
  margin-left: -5px;
}
@media (max-width: 768px) {
  #page_productList .info-section .head-logo {
    width: 100px;
  }
}
@media (max-width: 768px) {
  #page_productList .info-section {
    padding-inline: 20px;
    margin-top: 100px;
  }
}
#page_productList .info-section h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  #page_productList .info-section h2 {
    font-size: 25px;
  }
}
#page_productList .info-section p {
  font-size: 18px;
  max-width: 450px;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  #page_productList .info-section p {
    font-size: 13px;
  }
}
#page_productList .info-section img {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
}
#page_productList .info-section img + .__pc {
  display: flex;
}
@media (max-width: 768px) {
  #page_productList .info-section img + .__pc {
    display: none !important;
  }
}
#page_productList .info-section img + .__sp {
  display: none;
}
@media (max-width: 768px) {
  #page_productList .info-section img + .__sp {
    display: flex;
  }
}
@media (max-width: 768px) {
  #page_productList .info-section img {
    margin-top: 40px;
  }
}
#page_productList .info-section .content {
  margin-block: 100px;
  text-align: center;
}
#page_productList .info-section .content h3 {
  font-size: 30px;
  display: inline-block;
  border-bottom: 1px solid rgb(210, 210, 210);
  padding-bottom: 10px;
  margin-inline: 0;
  padding-inline: 20px;
}
@media (max-width: 768px) {
  #page_productList .info-section .content h3 {
    font-size: 25px;
  }
}
#page_productList .info-section .content ._item-grid {
  display: flex;
  justify-content: space-around;
  margin-top: 100px;
  gap: 20px;
  padding-inline: 20px;
  max-width: 1160px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  #page_productList .info-section .content ._item-grid {
    flex-direction: column;
    gap: 40px;
  }
}
#page_productList .info-section .content ._item-grid ._item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  #page_productList .info-section .content ._item-grid ._item {
    width: 100%;
  }
}
#page_productList .info-section .content ._item-grid ._item img {
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1000px) {
  #page_productList .info-section .content ._item-grid ._item img {
    height: auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  #page_productList .info-section .content ._item-grid ._item img {
    padding-inline: 40px;
  }
}
#page_productList .info-section .content ._item-grid ._item h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.67;
}
@media (max-width: 1440px) {
  #page_productList .info-section .content ._item-grid ._item h4 {
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  #page_productList .info-section .content ._item-grid ._item h4 {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  #page_productList .info-section .content ._item-grid ._item h4 {
    font-size: 13px;
  }
}
#page_productList .product-introduction {
  margin-top: 280px;
}
@media (max-width: 768px) {
  #page_productList .product-introduction {
    margin-top: 120px;
  }
}
#page_productList .product-introduction ._title {
  text-align: center;
}
#page_productList .product-introduction ._title h2 {
  padding-inline: 25px;
  font-size: 50px;
  margin: 0;
  margin-bottom: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._title h2 {
    font-size: 25px;
  }
}
#page_productList .product-introduction ._title h2::before, #page_productList .product-introduction ._title h2::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: rgb(210, 210, 210);
  max-width: 250px;
  width: 100%;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._title h2::before, #page_productList .product-introduction ._title h2::after {
    width: auto;
  }
}
#page_productList .product-introduction ._title h2::before {
  margin-right: 25px;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._title h2::before {
    margin-right: 15px;
  }
}
#page_productList .product-introduction ._title h2::after {
  margin-left: 25px;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._title h2::after {
    margin-left: 15px;
  }
}
#page_productList .product-introduction ._title h2 img {
  width: 170px;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._title h2 img {
    width: 120px;
  }
}
#page_productList .product-introduction ._title p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.67;
  padding-inline: 40px;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._title p {
    font-size: 13px;
    line-height: 1.8;
    padding-inline: 20px;
  }
}
#page_productList .product-introduction ._product-grid {
  display: flex;
  margin-top: 130px;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._product-grid {
    flex-direction: column;
    margin-top: 40px;
  }
}
#page_productList .product-introduction ._product-grid ._grid-item {
  position: relative;
  display: flex;
  width: 33.3333333333%;
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._product-grid ._grid-item {
    width: 100%;
  }
}
#page_productList .product-introduction ._product-grid ._grid-item a {
  pointer-events: none;
}
#page_productList .product-introduction ._product-grid ._grid-item a .img-wrapper {
  overflow: hidden;
}
#page_productList .product-introduction ._product-grid ._grid-item a .img-wrapper img {
  transition: transform 0.5s ease;
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding-block: 40px;
  padding-inline: 40px;
}
@media (max-width: 1200px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info {
    padding-block: 20px;
    padding-inline: 20px;
  }
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info h2 {
  margin: 0;
  flex-direction: initial;
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info h2 img {
  height: 40px;
  width: auto;
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info p {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(39, 39, 39);
}
@media (max-width: 1440px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info p {
    font-size: 13px;
    text-shadow: 1px 1px 0px rgb(229, 230, 234);
  }
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info ._btn {
  background: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 1000px;
  padding: 26px 40px;
  color: rgb(39, 39, 39);
  position: absolute;
  bottom: 40px;
}
@media (max-width: 1440px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info ._btn {
    font-size: 13px;
    padding: 20px 30px;
    bottom: 20px;
  }
}
@media (max-width: 1000px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info ._btn {
    padding: 15px 25px;
  }
}
@media (max-width: 1440px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info:nth-of-type(2) p {
    text-shadow: 1px 1px 0px rgb(201, 197, 198);
  }
}
@media (max-width: 1440px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_info:nth-of-type(3) p {
    text-shadow: 1px 1px 0px rgb(224, 224, 227);
  }
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_txt {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  padding-block: 40px;
  padding-inline: 40px;
  flex-wrap: wrap;
}
@media (max-width: 1440px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_txt {
    padding-block: 10px;
    padding-inline: 10px;
  }
}
@media (max-width: 768px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_txt {
    align-items: flex-start;
  }
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_txt p {
  font-size: 12px;
}
@media (max-width: 1200px) {
  #page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_txt p {
    font-size: 10px;
  }
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_txt p:nth-child(odd) {
  width: 30%;
}
#page_productList .product-introduction ._product-grid ._grid-item a ._grid-item_txt p:nth-child(even) {
  width: 70%;
  text-indent: -1em;
  padding-left: 1em;
}
#page_productList .product-introduction ._product-grid ._grid-item:hover img._scale-up {
  transform: scale(1.1);
}
#page_productList .product-introduction ._product-grid ._grid-item:hover ._grid-item_info ._btn {
  background: rgb(0, 213, 191);
  color: white;
}
#page_productList .product-introduction ._download-link {
  margin-top: 100px;
  text-align: center;
}
#page_productList .product-introduction ._download-link a {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 30px 50px;
  border: 2px solid rgb(101, 101, 101);
  border-radius: 200px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (max-width: 1440px) {
  #page_productList .product-introduction ._download-link a {
    font-size: 15px;
    padding: 20px 30px;
  }
}

.page_article_category .section-width {
  margin-top: 230px;
}
.page_article_category .container__wrap {
  display: flex;
  gap: 50px;
}
@media (max-width: 1200px) {
  .page_article_category .container__wrap {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .page_article_category .container__wrap .container__aside .aside-category {
    display: flex;
    align-items: baseline;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__aside .aside-category {
    gap: 10px;
  }
}
.page_article_category .container__wrap .container__aside .aside-category dl dt {
  position: relative;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
  width: 170px;
  display: flex;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__aside .aside-category dl dt {
    font-size: 13px;
    width: 100px;
  }
}
.page_article_category .container__wrap .container__aside .aside-category dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 12px;
  height: 1px;
  background: rgb(101, 101, 101);
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s ease;
}
.page_article_category .container__wrap .container__aside .aside-category dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 1px;
  background: rgb(101, 101, 101);
  transform: translateY(-50%);
}
.page_article_category .container__wrap .container__aside .aside-category dl dt span {
  display: inline-flex;
  align-items: center;
}
.page_article_category .container__wrap .container__aside .aside-category dl dt span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 12px;
  border-radius: 50%;
  background-color: rgb(101, 101, 101);
}
.page_article_category .container__wrap .container__aside .aside-category dl dd {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease;
  margin-top: 10px;
  padding-left: 20px;
}
.page_article_category .container__wrap .container__aside .aside-category dl dd ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.page_article_category .container__wrap .container__aside .aside-category dl dd li {
  font-weight: 300;
  font-size: 15px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__aside .aside-category dl dd li {
    font-size: 12px;
  }
}
.page_article_category .container__wrap .container__aside .aside-category dl dd li a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.page_article_category .container__wrap .container__aside .aside-category dl.active dt::before {
  transform: translateY(-50%) rotate(180deg);
}
.page_article_category .container__wrap .container__aside .aside-category dl:last-of-type {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__aside .aside-category dl:last-of-type {
    margin-top: 20px;
  }
}
.page_article_category .container__wrap .container__body {
  flex: 1;
}
.page_article_category .container__wrap .container__body .news-index__items {
  display: flex;
  flex-direction: column;
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex {
  padding-block: 40px;
  padding-inline: 30px;
  border-top: 1px solid;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-inline: 15px;
    padding-block: 20px;
  }
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .date-title {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .date-title {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .date-title p {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .date-title p {
    font-size: 13px;
  }
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .date-title h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  display: block;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .date-title h2 {
    font-size: 16px;
  }
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .category-tag {
  display: flex;
  gap: 20px;
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .category-tag h3 {
  font-size: 12px;
  font-weight: 300;
  padding: 15px 30px;
  border: 1px solid;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-left .category-tag h3 {
    padding: 10px 12px;
  }
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-right {
  flex-shrink: 0;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex ._item-right {
    margin-left: auto;
  }
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item a.item-flex:hover .read-more-btn ._circle-arrow {
  background-color: rgb(0, 213, 191);
}
.page_article_category .container__wrap .container__body .news-index__items .entry-item:last-child a.item-flex {
  border-bottom: 1px solid;
}
.page_article_category .container__wrap .container__body .pagination {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
.page_article_category .container__wrap .container__body .pagination ul {
  display: flex;
  gap: 25px;
  padding: 0;
  list-style: none;
  justify-content: center;
  align-items: center;
}
.page_article_category .container__wrap .container__body .pagination ul li {
  margin: 0;
}
.page_article_category .container__wrap .container__body .pagination ul li .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgb(101, 101, 101);
  border-radius: 50%;
  color: rgb(101, 101, 101);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 0;
}
@media (max-width: 1440px) {
  .page_article_category .container__wrap .container__body .pagination ul li .page-numbers {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}
.page_article_category .container__wrap .container__body .pagination ul li .page-numbers:hover {
  opacity: 0.5;
}
.page_article_category .container__wrap .container__body .pagination ul li .page-numbers.current {
  background-color: rgb(101, 101, 101);
  color: #fff;
  pointer-events: none;
  cursor: default;
}
.page_article_category .container__wrap .container__body .pagination ul li .page-numbers.dots {
  border: none;
  background: none;
}

#page_case_category .container__wrap {
  flex-direction: column;
}
#page_case_category .container__wrap .container__body ._case__item {
  display: flex;
  align-items: center;
  background: rgb(239, 239, 235);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
#page_case_category .container__wrap .container__body ._case__item ._case_img {
  position: relative;
  margin-right: 60px;
}
#page_case_category .container__wrap .container__body ._case__item ._case_img span.uppercase {
  position: absolute;
  bottom: 0px;
  left: 0;
  font-size: 80px;
  color: white;
  opacity: 0.8;
  text-transform: uppercase;
}
#page_case_category .container__wrap .container__body ._case__item ._case_img ._case_case-num {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-90deg);
  position: absolute;
  right: -175px;
  top: 50%;
}
#page_case_category .container__wrap .container__body ._case__item ._case_img ._case_case-num span {
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
}
#page_case_category .container__wrap .container__body ._case__item ._case_img ._case_case-num span::before, #page_case_category .container__wrap .container__body ._case__item ._case_img ._case_case-num span::after {
  content: "";
  display: block;
  height: 1px;
  width: 100px;
  background-color: rgb(112, 112, 112);
}
#page_case_category .container__wrap .container__body ._case__item ._case_img ._case_case-num span::before {
  margin-right: 20px;
}
#page_case_category .container__wrap .container__body ._case__item ._case_img ._case_case-num span::after {
  margin-left: 20px;
}
#page_case_category .container__wrap .container__body ._case__item ._case-article {
  padding-block: 55px 40px;
  max-width: 600px;
  width: 100%;
}
#page_case_category .container__wrap .container__body ._case__item ._case-article ._case-article_date {
  font-size: 20px;
  font-weight: 600;
}
#page_case_category .container__wrap .container__body ._case__item ._case-article h2 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 55px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
#page_case_category .container__wrap .container__body ._case__item ._case-article ._case-article_text {
  font-size: 20px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 7;
}
#page_case_category .container__wrap .container__body ._case__item .read-more-wrapper {
  flex-shrink: 0;
  margin-inline: 100px;
}

#page_single .section-width .single-contents {
  max-width: 1000px;
  margin-inline: auto;
}
#page_single .section-width .single-contents ._item {
  margin-top: 185px;
  margin-bottom: 65px;
}
#page_single .section-width .single-contents ._item p {
  border-top: 1px solid;
  border-bottom: 1px solid;
  padding-block: 70px;
  padding-inline: 90px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 1440px) {
  #page_single .section-width .single-contents ._item p {
    font-size: 16px;
    padding-inline: 60px;
  }
}
@media (max-width: 768px) {
  #page_single .section-width .single-contents ._item p {
    font-size: 13px;
    padding-inline: 5px;
  }
}
#page_single .section-width .single-contents .nav-buttons {
  display: flex;
  justify-content: space-between;
}
#page_single .section-width .single-contents .nav-buttons .nav-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 20px;
  border: solid;
  transition: 0.5s ease;
}
@media (max-width: 1440px) {
  #page_single .section-width .single-contents .nav-buttons .nav-button {
    font-size: 16px;
    padding: 25px 30px;
  }
}
@media (max-width: 768px) {
  #page_single .section-width .single-contents .nav-buttons .nav-button {
    font-size: 13px;
    padding: 15px 20px;
  }
}
#page_single .section-width .single-contents .nav-buttons .nav-button::before {
  content: "";
  width: 12px;
  height: 12px;
  border: solid;
  border-width: 2px 2px 0px 0px;
  transition: 0.5s ease;
}
#page_single .section-width .single-contents .nav-buttons .nav-button:hover {
  opacity: 0.7;
}
#page_single .section-width .single-contents .nav-buttons .prev::before {
  margin-right: 10px;
  transform: rotate(-135deg);
}
#page_single .section-width .single-contents .nav-buttons .next::before {
  order: 1;
  margin-left: 10px;
  transform: rotate(45deg);
}
#page_single .section-width .single-contents .nav-buttons .disabled {
  opacity: 0.1;
}

#page_single._case-section .case-hero-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 400px;
  overflow: hidden;
  background: #fff;
}
#page_single._case-section .case-hero-full .case-hero-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 60vh;
}
#page_single._case-section .case-hero-full .case-hero-container .case-hero-image {
  width: 60%;
  overflow: hidden;
}
#page_single._case-section .case-hero-full .case-hero-container .case-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page_single._case-section .case-hero-full .case-hero-container .case-hero-content {
  width: 40%;
  padding-inline: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#page_single._case-section .case-hero-full .case-hero-container .case-hero-content h2.hospital-name {
  font-size: 50px;
  margin: 0;
  margin-bottom: 80px;
}
#page_single._case-section .case-hero-full .case-hero-container .case-hero-content p.director-name,
#page_single._case-section .case-hero-full .case-hero-container .case-hero-content p.introduction-date {
  font-size: 25px;
  font-weight: 600;
  margin: 0;
}
#page_single._case-section .case-hero-full .case-hero-container .case-hero-content .description {
  font-size: 20px;
  margin-top: 80px;
}
#page_single._case-section .case-hero-content h2.hospital-name {
  font-size: 2rem;
  margin-bottom: 1rem;
}
#page_single._case-section .case-hero-content p,
#page_single._case-section .case-hero-content .description {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

#product-detail .product-section .product-swiper {
  max-width: 1160px;
  margin-inline: auto;
}
#product-detail .product-section .product-swiper .swiper-wrapper {
  align-items: center;
}
#product-detail .product-section .product-swiper .swiper-slide {
  background: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 80px;
}
@media (max-width: 768px) {
  #product-detail .product-section .product-swiper .swiper-slide {
    padding-inline: 0;
  }
}
#product-detail .product-section .product-swiper .swiper-button-prev,
#product-detail .product-section .product-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px !important;
  height: 40px !important;
  color: rgb(101, 101, 101) !important;
  border: 1px solid !important;
  border-radius: 50% !important;
}
#product-detail .product-section .product-swiper .swiper-button-prev:after,
#product-detail .product-section .product-swiper .swiper-button-next:after {
  font-size: 20px !important;
}
#product-detail .product-section .product-swiper .swiper-button-prev {
  left: 20px;
}
#product-detail .product-section .product-swiper .swiper-button-next {
  right: 20px;
}
#product-detail .product-section .product-swiper .swiper-pagination {
  margin-top: 35px;
  position: relative;
  z-index: 5;
}
#product-detail .product-section .product-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin-inline: 7px;
}
#product-detail .product-section .product-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: rgb(106, 106, 106);
}
#product-detail .product-section .product-swiper .swiper {
  position: relative;
  max-width: 100%;
  display: flex;
  justify-content: center;
}
#product-detail .product-section .product-swiper ._image-text {
  writing-mode: horizontal-tb;
  transform: rotate(-90deg);
  transform-origin: left top;
  white-space: nowrap;
  color: rgb(220, 220, 220);
  font-size: 20px;
  font-weight: 600;
  position: absolute;
  top: 145px;
  left: 30px;
  z-index: 10;
}
@media (max-width: 768px) {
  #product-detail .product-section .product-swiper ._image-text {
    font-size: 14px;
    font-weight: 400;
    top: 110px;
    left: 0px;
    color: white;
  }
}
#product-detail .product-section .product-info {
  margin-top: 80px;
  max-width: 1000px;
  margin-inline: auto;
}
#product-detail .product-section .product-info h2 {
  font-size: 35px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
#product-detail .product-section .product-info p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 10px;
}
#product-detail .product-section .product-info .product-note {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
#product-detail .product-section .product-info ._download-link {
  margin-top: 100px;
  text-align: center;
  display: flex;
  justify-content: end;
}
#product-detail .product-section .product-info ._download-link a {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 30px 50px;
  border: 2px solid rgb(101, 101, 101);
  border-radius: 200px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1440px) {
  #product-detail .product-section .product-info ._download-link a {
    font-size: 15px;
    padding: 20px 30px;
  }
}