@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%; }

body {
  margin: 0;
  line-height: 1.6; }

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none; }

img,
picture,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: top; }

a {
  color: inherit;
  text-decoration: none; }

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit; }

input,
textarea,
select {
  font: inherit; }

:root {
  --size-p: max(1.8rem, 14px);
  --size-small: max(1.4rem, 12px);
  --size-h1: max(3rem, 22px);
  --size-h2: max(2.8rem, 20px);
  --size-h3: max(2.5rem, 18px);
  --size-h4: max(2rem, 16px);
  --font-size-html: 0.521105vw;
  --space-xs: 1.5rem;
  --space-sm: 2rem;
  --space-md: 2.5rem;
  --space-lg: 6rem;
  --space-xl: 8.5rem;
  --space-2xl: 12rem; }
  @media screen and (max-width: 960px) {
    :root {
      --size-p: max(1.5rem, 14px);
      --size-h1: max(2.2rem, 20px);
      --size-h2: max(2rem, 18px);
      --size-h3: max(1.8rem, 16px);
      --size-h4: max(1.6rem, 15px);
      --font-size-html: 10px;
      --space-xs: 1rem;
      --space-sm: 1.2rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-xl: 6rem;
      --space-2xl: 8rem; } }
  @media (max-width: 1440px) and (min-width: 961px) {
    :root {
      --font-size-html: 0.694444vw; } }
  @media (max-width: 370px) {
    :root {
      --font-size-html: 2.703vw; } }

html {
  font-size: var(--font-size-html); }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; } }
body {
  font-family: "Zen Old Mincho", serif, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: var(--size-p);
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p {
  font-size: var(--size-p);
  line-height: 195%;
  letter-spacing: 0.05rem;
  font-weight: 400; }
  @media (max-width: 960px) {
    p {
      line-height: 185%;
      letter-spacing: 0em;
      text-align: justify; } }

/* ==========================================================================
   Object - Utility (u-)
   ========================================================================== */
.u-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important; }

.u-hidden {
  display: none !important; }

@media screen and (min-width: 961px) {
  .u-sp-only {
    display: none !important; } }

@media screen and (max-width: 960px) {
  .u-pc-only {
    display: none !important; } }

.hv-o {
  transition: all 0.35s; }
  .hv-o:hover {
    opacity: 0.8; }

.d-block {
  display: block; }

.d-inline {
  display: inline; }

.d-inline-block {
  display: inline-block; }

.d-flex {
  display: flex;
  flex-wrap: wrap; }

.d-inline-flex {
  display: inline-flex; }

.d-grid {
  display: grid; }

.d-inline-grid {
  display: inline-grid; }

.d-none {
  display: none; }

.justify-start {
  justify-content: flex-start; }

.justify-center {
  justify-content: center; }

.justify-end {
  justify-content: flex-end; }

.justify-between {
  justify-content: space-between; }

.justify-around {
  justify-content: space-around; }

.items-start {
  align-items: flex-start; }

.items-center {
  align-items: center; }

.items-end {
  align-items: flex-end; }

.items-stretch {
  align-items: stretch; }

@media (max-width: 960px) {
  .hv-o:hover {
    opacity: 1; } }
.u-mt-0 {
  margin-top: 0; }

.u-mt-xs {
  margin-top: var(--space-xs) !important; }

.u-mt-sm {
  margin-top: var(--space-sm) !important; }

.u-mt-md {
  margin-top: var(--space-md) !important; }

.u-mt-lg {
  margin-top: var(--space-lg) !important; }

.u-mt-xl {
  margin-top: var(--space-xl) !important; }

.u-mt-2xl {
  margin-top: var(--space-2xl) !important; }

.u-mb-0 {
  margin-bottom: 0 !important; }

.u-mb-xs {
  margin-bottom: var(--space-xs) !important; }

.u-mb-sm {
  margin-bottom: var(--space-sm) !important; }

.u-mb-md {
  margin-bottom: var(--space-md) !important; }

.u-mb-lg {
  margin-bottom: var(--space-lg) !important; }

.u-mb-xl {
  margin-bottom: var(--space-xl) !important; }

.u-mb-2xl {
  margin-bottom: var(--space-2xl) !important; }

.u-text-center {
  text-align: center; }

.u-text-left {
  text-align: left; }

.u-text-right {
  text-align: right; }

.u-text-sm {
  font-size: 1.5rem; }

.u-text-lg {
  font-size: 2rem; }

.u-text-bold {
  font-weight: 700; }

.u-text-muted {
  color: #333333; }

.u-text-primary {
  color: #17b99c; }

.u-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.u-truncate-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal; }

.u-truncate-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  white-space: normal; }

/* ==========================================================================
   Layout
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12.45rem; }

.site-branding {
  flex: 1 1 auto;
  min-width: 0; }

.site-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4; }
  .site-title a {
    color: #17b99c;
    text-decoration: none; }
    @media (hover: hover) {
      .site-title a:hover {
        opacity: 0.7; } }

.p-header {
  gap: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 1.3rem 3.3rem;
  transition: all 0.35s; }
  .p-header.active {
    background-color: rgba(255, 255, 255, 0.95); }
  .p-header__left .site-branding a img {
    width: 45rem;
    transition: all 0.35s; }
  .p-header__right {
    display: flex;
    align-items: center; }
    .p-header__right .p-header__menu li a {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding: 0 3.7rem;
      transition: all 0.35s;
      position: relative;
      z-index: 0;
      color: #17b99c;
      font-size: 1.8rem;
      font-weight: 600;
      line-height: 150%;
      letter-spacing: 0; }
      .p-header__right .p-header__menu li a .en {
        color: #e4ad75;
        font-size: var(--size-small);
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.266rem; }
      .p-header__right .p-header__menu li a::before {
        content: "";
        position: absolute;
        width: 1px;
        height: 3.5rem;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: #e4ad75;
        z-index: -1; }
      .p-header__right .p-header__menu li a::after {
        content: "";
        position: absolute;
        width: 0;
        height: 2px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.4rem;
        background: #17b99c;
        z-index: -1;
        transition: all 0.35s; }
      .p-header__right .p-header__menu li a:hover::after {
        width: 4rem; }
    .p-header__right .p-header__menu li:last-child a::before {
      display: none; }
    .p-header__right .p-header__menu > li.current_page_item > a::after {
      width: 4rem; }
  .p-header__list {
    gap: 2.4rem;
    margin-left: -1.5rem;
    transition: all 0.35s; }
    .p-header__list .address {
      text-align: end;
      padding-left: 4.5rem;
      position: relative;
      z-index: 0;
      display: flex;
      flex-direction: column; }
      .p-header__list .address .item {
        color: #535353;
        font-size: var(--size-small);
        font-weight: 400;
        line-height: 143%;
        letter-spacing: 0; }
      .p-header__list .address::before {
        content: "";
        position: absolute;
        width: 3.9rem;
        height: 3.9rem;
        background: url(assets/img/localtion.svg) no-repeat center/cover;
        z-index: -1;
        left: 0;
        top: 50%;
        transform: translateY(-50%); }
    .p-header__list .btn-tel a {
      position: relative;
      z-index: 0;
      padding-left: 5rem;
      display: block; }
      .p-header__list .btn-tel a .txt {
        color: #17b99c;
        font-size: 3.5rem;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0; }
      .p-header__list .btn-tel a::before {
        content: "";
        position: absolute;
        width: 3.9rem;
        height: 3.9rem;
        background: url(assets/img/tel.svg) no-repeat center/cover;
        z-index: -1;
        left: 0;
        top: 50%;
        transform: translateY(-50%); }
  .p-header.vz-02 {
    display: none; }

.c-nav-fix {
  position: fixed;
  top: 7.9rem;
  right: 0; }
  .c-nav-fix__item a {
    width: 8rem;
    height: 7.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #17B99C;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    position: relative;
    z-index: 0;
    opacity: 1;
    padding-top: 2.5rem; }
    .c-nav-fix__item a::before {
      content: "";
      position: absolute;
      width: 2.1rem;
      height: 2.1rem;
      left: 50%;
      transform: translateX(-50%);
      top: 1.5rem;
      background: url(assets/img/tel-no_border.svg) no-repeat center/cover;
      z-index: -1; }
  .c-nav-fix__item.c-acf_time a {
    background: #36C7B0; }
    .c-nav-fix__item.c-acf_time a::before {
      width: 2.2rem;
      height: 2.2rem;
      background: url(assets/img/time.svg) no-repeat center/cover; }
  .c-nav-fix__item.c-access-site a {
    background: #CE8F50; }
    .c-nav-fix__item.c-access-site a::before {
      width: 2.5rem;
      height: 2.5rem;
      background: url(assets/img/address.svg) no-repeat center/cover; }

@media (min-width: 960.5px) {
  .p-header__menu > li {
    position: relative; }
  .p-header__menu li .sub-menu {
    pointer-events: none;
    position: absolute;
    z-index: 0;
    opacity: 0;
    right: 0;
    padding: 1.5rem;
    left: -2rem;
    top: 100%;
    transition: all 0.3s ease;
    width: 30rem; }
    .p-header__menu li .sub-menu::before {
      content: "";
      position: absolute;
      width: 100%;
      height: calc(100% - 1.6rem);
      left: 0;
      bottom: 0;
      z-index: -1;
      background: #17b99c; }
    .p-header__menu li .sub-menu li {
      margin-left: 0;
      padding: 0;
      border-bottom: 1px solid #fff;
      border-right: 0; }
      .p-header__menu li .sub-menu li:last-child {
        border-width: 0; }
      .p-header__menu li .sub-menu li a {
        display: block;
        padding: 1.5rem 1.5rem 1.5rem 3rem;
        border-right: 0;
        color: #fff !important;
        font-size: 1.6rem;
        position: relative;
        transition: all 0.35s;
        width: 100%;
        text-align: left; }
        .p-header__menu li .sub-menu li a::before {
          content: none; }
        .p-header__menu li .sub-menu li a::after {
          content: "";
          position: absolute;
          top: 2.3rem;
          -webkit-mask: url(assets/img/icon_arrow-02.svg) center/100% no-repeat;
          mask: url(assets/img/icon_arrow-02.svg) center/100% no-repeat;
          background: #fff;
          left: 1rem;
          width: 1rem;
          height: 1rem;
          clip-path: inherit;
          transform: initial; }
        .p-header__menu li .sub-menu li a:hover {
          opacity: 0.8; }
          .p-header__menu li .sub-menu li a:hover::after {
            width: 1rem; }
  .p-header__menu li.vz-02 {
    position: initial; }
    .p-header__menu li.vz-02 .sub-menu {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      left: 0;
      top: calc(100% - 1.6rem);
      padding: 5rem 10rem !important; }
      .p-header__menu li.vz-02 .sub-menu::before {
        left: 0;
        bottom: 0;
        z-index: -1;
        background: #17b99c; }
      .p-header__menu li.vz-02 .sub-menu li {
        width: calc((100% - 6.001rem) / 3);
        margin-right: 3rem; }
        .p-header__menu li.vz-02 .sub-menu li:nth-child(3n) {
          margin-right: 0; }
        .p-header__menu li.vz-02 .sub-menu li:last-child {
          border-width: 1px; }
  .p-header__menu li.vz-03 .sub-menu {
    left: auto;
    right: -1.5rem;
    width: 31rem; }
  .p-header__menu li:hover .sub-menu {
    opacity: 1;
    pointer-events: auto;
    padding: 1.3rem 0 0; }
  .p-header.vz-01 {
    padding: 1.2rem 9.6rem 1.2rem 5rem;
    justify-content: space-between;
    transition: all 0.35s;
    position: absolute; }
    .p-header.vz-01 .p-header__left .site-branding a img {
      width: 53.3rem; }
    .p-header.vz-01 .p-header__right {
      flex-direction: column-reverse;
      align-items: flex-end; }
    .p-header.vz-01 .p-header__right .p-header__menu > li > a {
      padding: 0 6rem; }
    .p-header.vz-01 .p-header__right .p-header__menu > li:last-child > a {
      padding: 0 0 0 6rem; }
    .p-header.vz-01 .p-header__right .p-header__menu > li:last-child > a::after {
      left: 70%; }
    .p-header.vz-01 .p-header__list {
      margin-left: 0;
      margin-right: 0.3rem; }
  .p-header.vz-02 {
    display: flex;
    opacity: 0;
    top: -100%;
    transition: ease all 0.5s;
    padding-right: 8rem; }
    .p-header.vz-02.active {
      opacity: 1;
      top: 0; }
  .p-header.active .p-header__menu li.vz-03 .sub-menu {
    right: 0; }
  .p-header:not(.active) .p-header__menu li.vz-02 .sub-menu {
    top: calc(100% - 1rem); }
  .p-header:not(.active) .p-header li > a:hover::after {
    width: 4rem; }
  .p-header:not(.active) .p-header__menu li a {
    color: #17b99c; }
  .p-header:not(.active) .p-header__menu li .sub-menu {
    top: 100%;
    padding: 1rem 0 0; }
    .p-header:not(.active) .p-header__menu li .sub-menu.vz-02 {
      top: calc(100% - 2rem); }
    .p-header:not(.active) .p-header__menu li .sub-menu::before {
      height: calc(100% - 1rem); }
  .p-header:not(.active) .p-header__menu li.current_page_item a {
    color: #17b99c; }
  .p-header:not(.active) .p-header:hover .sub-menu {
    padding: 2.6rem 0 0; }

  .c-nav-fix__item.c-acf_banner_2 {
    display: none; }

  .home .site-header {
    height: auto; }

  .p-header__menu li .sub-menu::before {
    height: calc(100% - 1.3rem); } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .site-header {
    height: 11rem; }

  .p-header {
    padding: 1.3rem 1rem;
    gap: 1rem; }
    .p-header.vz-01 .p-header__left .site-branding a img {
      width: 36.3rem; }
    .p-header.vz-01 .p-header__right .p-header__menu > li > a {
      padding: 0 4rem; }

  .p-header__right .p-header__menu li a {
    padding: 0 1rem; }

  .p-header__list .btn-tel a .txt {
    font-size: 2.5rem; }

  .p-header__right .p-header__menu li a {
    font-size: 1.6rem; }

  .p-header__right .p-header__menu li a .en {
    font-size: 1.5rem; }

  .p-header__list {
    gap: 1rem;
    margin-left: 0rem; }

  .p-header__left .site-branding a img {
    width: 40rem; }

  .p-header__list .address .item {
    font-size: 1.4rem; }

  .p-header__menu li .sub-menu li {
    padding: 1rem 0; }

  .p-header__menu li .sub-menu li a::after {
    top: 50%;
    transform: translateY(-50%); }

  .p-header__menu li .sub-menu li a {
    padding: 0.5rem 1.5rem 0.5rem 3rem; } }
@media (max-width: 960px) {
  .p-header__right {
    display: none; }

  .p-header__left .site-branding a img {
    width: 33rem; }

  .p-header {
    justify-content: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.5); }

  .site-header {
    height: auto; }

  .c-nav-fix {
    top: auto;
    bottom: 0;
    display: flex;
    width: 100%; }
    .c-nav-fix__item {
      width: calc((100% - 7.5rem) / 2);
      border-right: #FFF solid 1px; }
      .c-nav-fix__item a {
        width: 100%;
        height: 6rem;
        padding-top: 3rem;
        font-size: 1.5rem; }
      .c-nav-fix__item.c-access-site, .c-nav-fix__item.c-acf_time {
        display: none; }

  .c-nav-fix__item a::before {
    top: 1rem; }
  .c-nav-fix__item.c-acf_banner_2 a::before {
    background-image: url(assets/img/icon-tooth.png); } }
@media (max-width: 767px) {
  .p-header {
    justify-content: center; }
    .p-header__left .site-branding a img {
      width: 33rem; } }
.c-slide {
  overflow: hidden;
  position: relative; }
  .c-slide__list {
    display: flex;
    width: max-content;
    animation: slide-left 20s linear infinite; }
  .c-slide__item {
    position: relative;
    z-index: 0; }
    .c-slide__item img {
      width: 42.1rem;
      border-radius: 0; }

@keyframes slide-left {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
.p-top_info__table dl {
  display: flex;
  padding: 1.3rem 0; }
  .p-top_info__table dl:first-child {
    position: relative;
    margin-bottom: 1rem;
    padding: 1.6rem 0; }
    .p-top_info__table dl:first-child::before {
      content: "";
      position: absolute;
      width: calc(100% - 1.2rem);
      height: 1px;
      bottom: 0;
      right: 0;
      background: #fff; }
  .p-top_info__table dl dt {
    width: 12rem; }
  .p-top_info__table dl dd {
    width: calc((100% - 12rem) / 7);
    text-align: center;
    position: relative; }
    .p-top_info__table dl dd .line {
      width: 2.2rem;
      height: 2px;
      background: #fff;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.c-text__top--01 p {
  color: #535353;
  font-size: var(--size-p);
  font-weight: 400;
  line-height: 175%;
  letter-spacing: 0; }

.p-footer {
  position: relative;
  padding: 9rem 0 6.2rem;
  background: url(assets/img/footer-bg01.jpg) no-repeat center top; }
  .p-footer__title {
    color: #17b99c;
    font-size: 3rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0;
    margin-bottom: 0.8rem; }
  .p-footer__list {
    max-width: 105.7rem;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
    margin-bottom: 9rem; }
    .p-footer__list li {
      width: calc((100% - 4.001rem) / 3); }
      .p-footer__list li img {
        width: 100%; }
  .p-footer__wrap {
    padding-left: 8.5rem; }
  .p-footer__gp {
    margin-bottom: 6.4rem; }
    .p-footer__gp--item:first-child {
      width: 55.5rem; }
    .p-footer__gp--item:last-child {
      margin-top: -1.4rem;
      padding-left: 4rem;
      width: calc(100% - 55.5rem); }
  .p-footer__nav {
    grid-template-columns: 0.7fr 1fr 1fr; }
    .p-footer__nav--title {
      color: #535353;
      font-size: 3rem;
      font-weight: 700;
      line-height: 175%;
      letter-spacing: 0.35rem;
      margin-bottom: 3.2rem; }
    .p-footer__nav--list {
      gap: 1.3rem; }
      .p-footer__nav--list li a {
        color: #535353;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 175%;
        letter-spacing: 0;
        position: relative;
        padding-left: 2.2rem;
        transition: all 0.35s; }
        .p-footer__nav--list li a::before {
          content: "";
          position: absolute;
          width: 0.5rem;
          height: 0.5rem;
          top: 1.2rem;
          left: 0;
          background: #17b99c;
          border-radius: 100%; }
        .p-footer__nav--list li a:hover {
          opacity: 0.8; }
      .p-footer__nav--list.vz-02 {
        grid-template-columns: 27rem 27rem; }
  .p-footer__logo {
    margin-bottom: 3rem; }
    .p-footer__logo img {
      width: 34.7rem;
      display: inline-block; }
  .p-footer__calenda {
    background: #ce8f50;
    margin-bottom: 1.6rem; }
    .p-footer__calenda--item:first-child {
      width: 3.6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      padding-top: 1.2rem; }
      .p-footer__calenda--item:first-child p {
        writing-mode: vertical-lr;
        letter-spacing: 1.2rem; }
    .p-footer__calenda--item:last-child {
      padding: 0.3rem 2rem 1.5rem 1.2rem;
      width: calc(100% - 3.6rem);
      background: #e4ad75; }
    .p-footer__calenda--item * {
      color: #fff;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0; }
  .p-footer__table--info dl {
    display: flex;
    position: relative; }
    .p-footer__table--info dl::before {
      content: "";
      position: absolute;
      width: calc(100% - 7.6rem);
      height: 1px;
      bottom: 0;
      left: 0;
      background: #fff; }
    .p-footer__table--info dl dt,
    .p-footer__table--info dl dd {
      color: #535353;
      font-size: var(--size-p);
      font-weight: 400;
      line-height: 175%;
      letter-spacing: 0;
      padding: 2rem 0; }
    .p-footer__table--info dl dt {
      width: 9rem;
      position: relative; }
      .p-footer__table--info dl dt::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -0.5px;
        left: 0;
        background: #36c7b0; }
    .p-footer__table--info dl dd {
      padding-left: 3.5rem;
      width: calc(100% - 9rem); }
  .p-footer__table--info.vz-02 dl::before {
    background: #d8d8d8; }
  .p-footer__bottom {
    background: #17b99c;
    padding: 1.8rem; }
  .p-footer__credit {
    margin-right: 2rem; }
    .p-footer__credit img {
      width: 19rem; }
  .p-footer__copy {
    color: #fff;
    font-size: var(--size-p);
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0; }

.footer-link-fix {
  position: fixed;
  bottom: 4.8rem;
  right: 11.3rem;
  z-index: 5;
  gap: 3rem; }
  .footer-link-fix li {
    position: relative; }
    .footer-link-fix li .box img {
      width: 37.7rem; }
    .footer-link-fix li .close {
      width: 2.6rem;
      height: 2.6rem;
      background: #ea4861;
      position: absolute;
      border: #fff solid 1px;
      top: -1.3rem;
      right: -1.3rem;
      cursor: pointer;
      z-index: 1;
      border-radius: 100%; }
      .footer-link-fix li .close::before {
        content: "";
        position: absolute;
        width: 1.1rem;
        height: 1.1rem;
        -webkit-mask: url(assets/img/icon-close.svg) center/100% no-repeat;
        mask: url(assets/img/icon-close.svg) center/100% no-repeat;
        background: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
    .footer-link-fix li.active {
      display: none; }

.c-pagetop {
  position: absolute;
  bottom: 1.2rem;
  right: 1.3rem;
  width: 8.4rem;
  height: 8.4rem;
  opacity: 0;
  border: 0;
  background: #ce8f50 url(assets/img/page-top.png) no-repeat center;
  background-size: 3.9rem;
  border-radius: 100%;
  cursor: pointer;
  outline: none;
  transition: all 0.35s;
  z-index: 50; }
  .c-pagetop::before {
    content: "";
    position: absolute;
    width: 2.4rem;
    height: 1.2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff; }
  .c-pagetop.show {
    opacity: 1; }
    .c-pagetop.show:hover {
      opacity: 0.8; }
  .c-pagetop.fixed {
    position: fixed; }
  @media (max-width: 960px) {
    .c-pagetop {
      right: 1.5rem;
      bottom: 1rem;
      width: 5rem;
      height: 5rem;
      background-size: 2.4rem; }
      .c-pagetop.fixed {
        bottom: 6.5rem; } }

@media (min-width: 1440.5px) {
  .p-footer__table--info.vz-02 dl dd {
    padding-left: 7rem; }
  .p-footer__table--info.vz-02 dl:last-child {
    width: calc(100% + 3.5rem); }
    .p-footer__table--info.vz-02 dl:last-child::before {
      width: calc(100% - 11.1rem); } }
@media (max-width: 1440px) and (min-width: 960.5px) {
  .footer-link-fix li .box img {
    width: 31rem; } }
@media (max-width: 960px) {
  .site-footer {
    padding-bottom: 6rem; }

  .c-slide__item img {
    width: 25rem; }

  .footer-link-fix {
    right: auto;
    left: 1.5rem;
    bottom: 7rem; }
    .footer-link-fix li .box img {
      width: 24rem; }

  .p-footer {
    overflow: hidden;
    padding: 6rem 0; }
    .p-footer__wrap {
      padding-left: 0; }
    .p-footer__gp {
      gap: 3rem;
      margin-bottom: 0; }
      .p-footer__gp--item:first-child {
        width: 100%; }
      .p-footer__gp--item:last-child {
        width: 100%;
        padding-left: 0;
        margin-top: 0; }
    .p-footer__logo img {
      width: 25rem; }
    .p-footer__list {
      gap: 1rem;
      margin-bottom: 5rem; }
      .p-footer__list li {
        width: calc((100% - 1.001rem) / 2); }
    .p-footer__calenda--item:last-child {
      padding: 0.3rem 1rem 0.5rem 1rem; }
    .p-footer__title {
      font-size: 2.4rem; }
    .p-footer__nav {
      display: none; }
    .p-footer__credit img {
      width: 14rem; }
    .p-footer__table--info dl::before {
      width: 100%; }
    .p-footer__table--info dl dt,
    .p-footer__table--info dl dd {
      padding: 1rem 0; }
    .p-footer__table--info dl dt {
      width: 8rem; }
    .p-footer__table--info dl dd {
      width: calc(100% - 8rem);
      padding-left: 1.5rem; }

  .p-top_info__table dl dt {
    width: 9rem; }
  .p-top_info__table dl dd {
    width: calc((100% - 9rem) / 7); }
    .p-top_info__table dl dd .line {
      width: 1.8rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-top_info__table dl dt {
    width: 15rem; }
  .p-top_info__table dl dd {
    width: calc((100% - 15rem) / 7); } }
@media (max-width: 767px) {
  .footer-link-fix {
    gap: 1.5rem;
    position: relative;
    left: auto;
    bottom: auto;
    padding: 1.5rem; }
    .footer-link-fix li {
      width: 100%; }
      .footer-link-fix li .box img {
        width: 100%; }
      .footer-link-fix li .close {
        display: none; } }
[class^="grid-"],
[class*="grid-"] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.l-grid-1173 {
  max-width: 120.3rem; }
.l-grid-1185 {
  max-width: 121.5rem; }
.l-grid-1200 {
  max-width: 123rem; }
.l-grid-1320 {
  max-width: 135rem; }
.l-grid-1480 {
  max-width: 151rem; }
.l-grid-1500 {
  max-width: 153rem; }
.l-grid-1620 {
  max-width: 165rem; }

.hv-o {
  transition: all 0.35s; }
  .hv-o:hover {
    opacity: 0.8; }

.wow_custom {
  opacity: 0;
  -webkit-transform: translate(0, 35px);
  transform: translate(0, 35px);
  transition: all 0.5s ease; }
  .wow_custom.show {
    opacity: 1;
    -webkit-transform: none;
    transform: none; }
    .wow_custom.show.wow_vz_02 {
      animation: fade_in_0 500ms 500ms linear;
      animation-fill-mode: forwards; }
    .wow_custom.show.wow_vz_03 {
      animation: fade_in_0 500ms 1000ms linear;
      animation-fill-mode: forwards; }
    .wow_custom.show.wow_vz_04 {
      animation: fade_in_0 500ms 1500ms linear;
      animation-fill-mode: forwards; }
    .wow_custom.show.wow_vz_05 {
      animation: fade_in_0 500ms 2000ms linear;
      animation-fill-mode: forwards; }

.anchor_fixtop,
.u-anchor-offset {
  display: block;
  position: relative;
  top: -15rem;
  width: 100%;
  visibility: hidden; }

@media (max-width: 960px) {
  .anchor_fixtop,
  .u-anchor-offset {
    top: -8rem; } }
.l-container {
  width: 100%;
  max-width: 128rem;
  margin-inline: auto; }
  @media screen and (max-width: 960px) {
    .l-container {
      padding-inline: 3rem; } }
  @media screen and (max-width: 767px) {
    .l-container {
      padding-inline: 1.5rem; } }

.l-content {
  display: flex;
  gap: 0;
  margin-block: 4rem 8rem; }
  @media screen and (max-width: 960px) {
    .l-content {
      flex-direction: column;
      gap: 0;
      margin-block: 2rem 4rem; } }
  .l-content__main {
    width: calc(100% - 30rem);
    min-width: 0; }
    @media screen and (max-width: 960px) {
      .l-content__main {
        width: 100%;
        margin-bottom: 6rem; } }
  .l-content__sidebar {
    width: 30rem;
    padding-left: 5rem;
    min-width: 0; }
    @media screen and (max-width: 960px) {
      .l-content__sidebar {
        width: 100%;
        padding-left: 0; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-slide {
  transition: transform 0.4s linear;
  /* Chuyển động tuyến tính */ }

.slick-list {
  overflow: hidden;
  /* Ẩn các phần slide bên ngoài */ }

.slick-track {
  display: flex; }

/* ==========================================================================
   Object - Component (c-)
   ========================================================================== */
.c-hamburger {
  position: relative;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  background: #FFF;
  border: 0; }
  @media (hover: hover) {
    .c-hamburger:hover {
      opacity: 0.9; } }
  .c-hamburger__line {
    display: block;
    width: 4.322rem;
    height: 0.2rem;
    background-color: #17B99C;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
    margin-bottom: 0.7rem; }
    .c-hamburger__line:nth-child(2) {
      width: 3.561rem;
      margin-bottom: 0rem; }
  .c-hamburger__menu {
    transition: transform 0.35s ease, opacity 0.25s ease; }
  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    transform: translateY(1.5rem) rotate(45deg);
    width: 3.561rem; }
  .c-hamburger.is-active .c-hamburger__line:nth-child(2) {
    transform: translateY(0.6rem) rotate(-45deg);
    margin-bottom: 1rem; }
  .c-hamburger.is-active .c-hamburger__menu {
    transform: translateY(0.5rem);
    opacity: 0.7; }

.p-header__fix {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 7.9rem;
  background-color: #FFF;
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-direction: column; }
  .p-header__fix .c-hamburger__menu {
    color: #535353;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-left: .8rem; }

@media (max-width: 960px) {
  .p-header__fix {
    width: 7.5rem;
    height: 6rem;
    top: auto;
    bottom: 0;
    z-index: 15; }
    .p-header__fix .c-hamburger__menu {
      margin-left: 0; }

  .c-hamburger .c-hamburger__line {
    width: 3.4rem; }

  .c-hamburger .c-hamburger__line:nth-child(2) {
    width: 2.6rem; }

  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    width: 2.6rem; } }
@media (max-width: 767px) {
  .p-header__fix .c-hamburger .c-hamburger__menu {
    font-size: 1.2rem; } }
.c-heading {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.08rem;
  color: #17b99c; }
  @media screen and (max-width: 960px) {
    .c-heading {
      letter-spacing: 0.02rem; } }
  .c-heading--frame {
    position: relative;
    padding: 2rem 3rem;
    text-align: center; }
    .c-heading--frame::before, .c-heading--frame::after {
      content: "";
      position: absolute;
      width: 2.4rem;
      height: 2.4rem;
      border: 0.2rem solid #17b99c; }
    .c-heading--frame::before {
      top: 0;
      left: 0;
      border-right: 0;
      border-bottom: 0; }
    .c-heading--frame::after {
      bottom: 0;
      right: 0;
      border-left: 0;
      border-top: 0; }
  .c-heading--diamond {
    position: relative;
    padding-left: 3rem; }
    .c-heading--diamond::before {
      content: "";
      position: absolute;
      left: 0.2rem;
      top: 2rem;
      width: 1.2rem;
      height: 1.2rem;
      background-color: #17b99c;
      transform: translateY(-50%) rotate(45deg); }
      @media screen and (max-width: 960px) {
        .c-heading--diamond::before {
          top: 1.5rem; } }
    .c-heading--diamond::after {
      content: "";
      position: absolute;
      left: 1.8rem;
      top: 2rem;
      width: 0.6rem;
      height: 0.6rem;
      background-color: #17b99c;
      opacity: 0.4;
      transform: translateY(-50%) rotate(45deg); }
      @media screen and (max-width: 960px) {
        .c-heading--diamond::after {
          top: 1.5rem; } }
  .c-heading--tab {
    display: inline-block;
    position: relative;
    padding: 1rem 2.4rem 1rem 3.6rem;
    background-color: #17b99c;
    color: #fff;
    border-radius: 0.5rem;
    clip-path: polygon(1.6rem 0, 100% 0, 100% 100%, 0 100%); }
  .c-heading--center-diamond {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
    text-align: center; }
    .c-heading--center-diamond::before, .c-heading--center-diamond::after {
      content: "";
      display: inline-block;
      width: 0.8rem;
      height: 0.8rem;
      background-color: #17b99c;
      transform: rotate(45deg); }
  .c-heading--block-num {
    counter-increment: c-heading-block;
    display: flex;
    align-items: center;
    gap: 2rem; }
    .c-heading--block-num::before {
      content: counter(c-heading-block,decimal-leading-zero);
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 6rem;
      height: 6rem;
      background-color: #17b99c;
      color: #fff;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 2.6rem;
      font-weight: 900;
      font-style: italic;
      letter-spacing: -0.1rem;
      border-radius: 0.5rem;
      box-shadow: 0.3rem 0.3rem 0 rgba(23, 185, 156, 0.35); }
  .c-heading--layered {
    position: relative;
    padding-top: 1.6rem; }
    .c-heading--layered::before {
      content: attr(data-en);
      position: absolute;
      top: 0;
      left: 0;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 4.8rem;
      font-weight: 900;
      font-style: italic;
      letter-spacing: -0.1rem;
      color: rgba(23, 185, 156, 0.18);
      line-height: 1;
      -webkit-text-stroke: 0.05rem rgba(23, 185, 156, 0.4); }
  .c-heading--section {
    text-align: center;
    margin-bottom: 4rem; }
    .c-heading--section .ja {
      display: block;
      font-size: 2.8rem;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 1rem; }
    .c-heading--section .en {
      display: inline-flex;
      align-items: center;
      gap: 1.2rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: #17b99c;
      letter-spacing: 0.3rem;
      text-transform: uppercase; }
      .c-heading--section .en::before, .c-heading--section .en::after {
        content: "";
        display: inline-block;
        width: 3rem;
        height: 0.1rem;
        background-color: #17b99c; }
  .c-heading--hy-lv1 {
    position: relative;
    padding: 0 0 2rem;
    margin-bottom: 4rem;
    text-align: center;
    font-size: var(--size-h1);
    line-height: 150%; }
    .c-heading--hy-lv1::before {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 7rem;
      height: 1.2rem;
      transform: translateX(-50%);
      border-bottom: 6px dotted #17b99c; }
    @media screen and (max-width: 960px) {
      .c-heading--hy-lv1 {
        padding-bottom: 1.6rem;
        margin-bottom: 3rem; }
        .c-heading--hy-lv1::before {
          width: 6rem; } }
    @media screen and (max-width: 960px) and (max-width: 767px) {
      .c-heading--hy-lv1::before {
        width: 3rem; } }

  .c-heading--hy-lv1-alt {
    padding: 0 0 0 2rem;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.5;
    border-left: 0.6rem solid #17b99c; }
    @media screen and (max-width: 960px) {
      .c-heading--hy-lv1-alt {
        font-size: 2rem;
        padding-left: 1.6rem; } }
  .c-heading--hy-lv2 {
    position: relative;
    padding: 1.5rem 2rem;
    background: #17b99c;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    border: 1px dashed #fff;
    outline: 0.6rem solid #17b99c;
    width: calc(100% - 1.2rem);
    margin-left: 0.6rem; }
    @media screen and (max-width: 960px) {
      .c-heading--hy-lv2 {
        padding: 1rem 1.5rem;
        font-size: 1.8rem;
        text-align: justify; } }
  .c-heading--hy-lv2-alt {
    padding: 0 5rem 0 0;
    background: transparent;
    color: #17b99c;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.2rem; }
  .c-heading--hy-lv3 {
    position: relative;
    padding: 0 0 1.5rem;
    color: #17b99c;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4; }
    .c-heading--hy-lv3::before, .c-heading--hy-lv3::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 0.2rem;
      background: #17b99c; }
    .c-heading--hy-lv3::before {
      width: 10%;
      z-index: 2; }
    .c-heading--hy-lv3::after {
      width: 100%;
      opacity: 0.1; }
  .c-heading--hy-lv4 {
    position: relative;
    padding: 0 0 0 2.5rem;
    color: #17b99c;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: justify; }
    .c-heading--hy-lv4::before {
      content: "";
      position: absolute;
      top: 0.7rem;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      background: #17b99c; }
  .c-heading--sizev1 {
    font-size: var(--size-h1); }
  .c-heading--sizev2 {
    font-size: var(--size-h2); }
  .c-heading--sizev3 {
    font-size: var(--size-h3); }
  .c-heading--sizev4 {
    font-size: var(--size-h4); }

.c-heading-counter {
  counter-reset: c-heading-bignum c-heading-block; }

.c-media {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem; }
  @media screen and (max-width: 960px) {
    .c-media {
      gap: 3rem;
      flex-direction: column; } }
  @media screen and (max-width: 767px) {
    .c-media {
      gap: 2.5rem; } }
  .c-media--right {
    flex-direction: row-reverse; }
    @media screen and (max-width: 960px) {
      .c-media--right {
        flex-direction: column; } }
  .c-media--center {
    align-items: center; }
  .c-media__image {
    flex: 0 0 35%;
    max-width: 35%; }
    @media screen and (max-width: 960px) {
      .c-media__image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        padding-top: 0.5rem; } }
    .c-media__image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0.8rem; }
    .c-media__image .c-pa p {
      font-size: 2rem;
      line-height: 150%;
      letter-spacing: 0;
      font-weight: 500; }
      @media screen and (max-width: 960px) {
        .c-media__image .c-pa p {
          font-size: 1.8rem; } }
    .c-media__image.tn-02 {
      position: relative;
      z-index: 0; }
      .c-media__image.tn-02 .c-pa {
        position: absolute;
        z-index: 0;
        bottom: 16.5rem;
        right: 1.5rem; }
        @media screen and (max-width: 960px) {
          .c-media__image.tn-02 .c-pa {
            bottom: 12.5rem; } }
  .c-media--narrow .c-media__image {
    flex: 0 0 30%;
    max-width: 30%; }
    @media screen and (max-width: 960px) {
      .c-media--narrow .c-media__image {
        flex: 1 1 100%;
        max-width: 100%; } }
  .c-media__body {
    flex: 1 1 auto;
    min-width: 0; }
    @media screen and (max-width: 960px) {
      .c-media__body {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%; } }
    .c-media__body > :first-child {
      margin-top: 0; }
    .c-media__body > :last-child {
      margin-bottom: 0; }
    .c-media__body h2,
    .c-media__body h3,
    .c-media__body h4 {
      margin-bottom: 1.6rem; }
    .c-media__body p {
      margin-bottom: 1.4rem; }

.c-columns {
  display: grid;
  gap: 4.5rem 3rem;
  margin-bottom: 4rem; }
  @media screen and (max-width: 960px) {
    .c-columns {
      gap: 4rem; } }
  @media screen and (max-width: 960px) and (max-width: 767px) {
    .c-columns {
      gap: 3rem; } }

  .c-columns--2 {
    grid-template-columns: repeat(2, 1fr); }
    @media screen and (max-width: 960px) {
      .c-columns--2 {
        grid-template-columns: 1fr; } }
  .c-columns--3 {
    grid-template-columns: repeat(3, 1fr); }
    @media screen and (max-width: 960px) {
      .c-columns--3 {
        grid-template-columns: 1fr; } }
  .c-columns--4 {
    grid-template-columns: repeat(4, 1fr); }
    @media screen and (max-width: 960px) {
      .c-columns--4 {
        grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 960px) {
    .c-columns--sp-2 {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 960px) {
    .c-columns--sp-3 {
      gap: 2rem;
      grid-template-columns: repeat(3, 1fr); } }
  @media screen and (max-width: 767px) {
    .c-columns--sp-3 {
      gap: 0.8rem; } }
  .c-columns__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    margin-bottom: 2rem; }
    @media screen and (max-width: 960px) {
      .c-columns__item img {
        border-radius: 0.5rem;
        margin-bottom: 1.5rem; } }

.c-dot-list {
  list-style: none;
  margin-bottom: -2.5rem !important;
  padding: 0; }
  @media screen and (max-width: 960px) {
    .c-dot-list {
      margin-bottom: 0 !important; } }
  .c-dot-list > li {
    position: relative;
    padding: 0 0 1rem 2.4rem;
    font-size: var(--size-p);
    line-height: 195%;
    letter-spacing: 0.05rem;
    font-weight: 400;
    border-bottom: 1px dashed rgba(51, 51, 51, 0.3);
    margin-bottom: 2.5rem; }
    @media (max-width: 960px) {
      .c-dot-list > li {
        line-height: 185%;
        letter-spacing: 0em;
        text-align: justify; } }
    @media screen and (max-width: 960px) {
      .c-dot-list > li:last-child {
        padding-bottom: 0;
        border-bottom: 0;
        margin-bottom: 0; } }
    .c-dot-list > li::before {
      content: "";
      position: absolute;
      top: 1rem;
      left: 0;
      width: 1rem;
      height: 1rem;
      background-color: #333333;
      border-radius: 50%; }
  .c-dot-list--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    row-gap: 0; }
    @media screen and (max-width: 960px) {
      .c-dot-list--2col {
        grid-template-columns: 1fr;
        column-gap: 0; } }
  .c-dot-list--plain > li:not(:last-child) {
    border-bottom: 0;
    margin-bottom: 0; }
  .c-dot-list--square > li::before {
    border-radius: 0; }

.c-check-list {
  list-style: none;
  margin: 0 0 4rem;
  padding: 0; }
  .c-check-list > li {
    position: relative;
    padding: 0.4rem 0 0.4rem 3rem;
    font-size: var(--size-p);
    line-height: 195%;
    letter-spacing: 0.05rem;
    font-weight: 400; }
    @media (max-width: 960px) {
      .c-check-list > li {
        line-height: 185%;
        letter-spacing: 0em;
        text-align: justify; } }
    .c-check-list > li:not(:last-child) {
      margin-bottom: 0.6rem; }
    .c-check-list > li::before {
      content: "";
      position: absolute;
      top: 1rem;
      left: 0;
      width: 2rem;
      height: 1.1rem;
      border-left: 0.3rem solid #17b99c;
      border-bottom: 0.3rem solid #17b99c;
      transform: rotate(-45deg); }
  .c-check-list--2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem; }
    @media screen and (max-width: 960px) {
      .c-check-list--2col {
        grid-template-columns: 1fr; } }
  .c-check-list--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4rem; }
    @media screen and (max-width: 960px) {
      .c-check-list--3col {
        grid-template-columns: 1fr; } }

.c-info-table {
  border-top: 1px dashed rgba(51, 51, 51, 0.2); }
  @media screen and (max-width: 960px) {
    .c-info-table--rowsp .c-info-table__row {
      grid-template-columns: 11rem 1fr; } }
  .c-info-table--pc21 .c-info-table__row {
    grid-template-columns: 21rem 1fr; }
    @media screen and (max-width: 960px) {
      .c-info-table--pc21 .c-info-table__row {
        grid-template-columns: 11rem 1fr; } }
  .c-info-table__row {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 2rem;
    padding: 2rem 0rem;
    border-bottom: 1px dashed rgba(51, 51, 51, 0.2); }
    @media screen and (max-width: 960px) {
      .c-info-table__row {
        grid-template-columns: 7rem 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0rem; } }
    .c-info-table__row dt,
    .c-info-table__row dd {
      font-size: var(--size-p);
      line-height: 195%;
      letter-spacing: 0.05rem;
      font-weight: 400;
      margin: 0;
      color: #333333; }
      @media (max-width: 960px) {
        .c-info-table__row dt,
        .c-info-table__row dd {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
    .c-info-table__row dt {
      font-weight: 700; }
  .c-info-table--filled .c-info-table__row {
    align-items: start; }
    .c-info-table--filled .c-info-table__row dt {
      display: inline-block;
      width: max-content;
      max-width: 100%;
      padding: 0.4rem 1.4rem;
      background-color: #17b99c;
      color: #fff;
      border-radius: 0.4rem;
      font-size: 1.4rem; }
  .c-info-table--bordered {
    border: 1px solid #17b99c;
    border-top-width: 1px;
    padding: 0 2rem; }
    .c-info-table--bordered .c-info-table__row {
      border-bottom: 1px solid rgba(23, 185, 156, 0.3); }
      .c-info-table--bordered .c-info-table__row:last-child {
        border-bottom: 0; }
      .c-info-table--bordered .c-info-table__row dt {
        position: relative;
        padding-left: 1.6rem; }
        .c-info-table--bordered .c-info-table__row dt::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0.8rem;
          width: 0.4rem;
          height: 1.6rem;
          background-color: #17b99c;
          border-radius: 0.2rem; }
  .c-info-table--striped {
    border-top: 0; }
    .c-info-table--striped .c-info-table__row {
      border-bottom: 0;
      padding: 1.4rem 2rem; }
      .c-info-table--striped .c-info-table__row:nth-child(odd) {
        background-color: rgba(23, 185, 156, 0.2); }
      .c-info-table--striped .c-info-table__row:nth-child(even) {
        background-color: rgba(23, 185, 156, 0.06); }
      @media screen and (max-width: 960px) {
        .c-info-table--striped .c-info-table__row {
          padding: 1rem 1.4rem; } }
  .c-info-table--card {
    border-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem; }
    .c-info-table--card .c-info-table__row {
      background-color: #fff;
      border: 1px solid rgba(23, 185, 156, 0.3);
      border-bottom: 1px solid rgba(23, 185, 156, 0.3);
      border-radius: 0.6rem;
      padding: 1.6rem 2rem;
      box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.04); }
  .c-info-table--vertical .c-info-table__row {
    grid-template-columns: 1fr;
    gap: 0.6rem; }
    .c-info-table--vertical .c-info-table__row dt {
      font-size: 1.4rem;
      letter-spacing: 0.1rem; }
  .c-info-table--compact .c-info-table__row {
    padding: 0.8rem 0.6rem;
    grid-template-columns: 14rem 1fr;
    gap: 1.2rem; }
    @media screen and (max-width: 960px) {
      .c-info-table--compact .c-info-table__row {
        grid-template-columns: 1fr;
        padding: 0.6rem 0.4rem; } }

.c-box {
  padding: 3rem;
  margin-bottom: 4rem;
  border-radius: 0.8rem; }
  @media screen and (max-width: 960px) {
    .c-box {
      padding: 2rem 1.6rem; } }
  .c-box > :first-child {
    margin-top: 0; }
  .c-box > :last-child {
    margin-bottom: 0; }
  .c-box--bg {
    background-color: rgba(23, 185, 156, 0.08); }
  .c-box--bg-primary {
    background-color: #17b99c;
    color: #fff; }
    .c-box--bg-primary h2,
    .c-box--bg-primary h3,
    .c-box--bg-primary h4,
    .c-box--bg-primary h5,
    .c-box--bg-primary h6,
    .c-box--bg-primary a {
      color: #fff; }
    .c-box--bg-primary a {
      text-decoration: underline; }
  .c-box--bg-dark {
    background-color: #333333;
    color: #fff; }
    .c-box--bg-dark h2,
    .c-box--bg-dark h3,
    .c-box--bg-dark h4,
    .c-box--bg-dark h5,
    .c-box--bg-dark h6 {
      color: #fff; }
  .c-box--border {
    background-color: #fff;
    border: 0.2rem solid #17b99c; }
  .c-box--border-thin {
    background-color: #fff;
    border: 0.1rem solid rgba(23, 185, 156, 0.5); }
  .c-box--frame {
    position: relative;
    padding: 5rem;
    background-color: #fff;
    border: 6px solid #17b99c;
    border-radius: 0; }
    @media screen and (max-width: 960px) {
      .c-box--frame {
        padding: 2rem 2rem;
        border: 2px solid #17b99c; } }
  .c-box--rounded {
    border-radius: 2rem; }
  .c-box--callout {
    background-color: rgba(23, 185, 156, 0.08);
    border-left: 0.6rem solid #17b99c;
    padding-left: 2.6rem; }
    @media screen and (max-width: 960px) {
      .c-box--callout {
        padding-left: 1.8rem; } }
  .c-box__title {
    margin: 0 0 1.4rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333333; }

.c-schedule {
  width: 100%;
  margin: 0 0 4rem;
  border-collapse: collapse;
  border: 1px solid rgba(23, 185, 156, 0.4);
  text-align: center; }
  .c-schedule th,
  .c-schedule td {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(23, 185, 156, 0.4);
    font-size: var(--size-p);
    line-height: 195%;
    letter-spacing: 0.05rem;
    font-weight: 400;
    text-align: center; }
    @media (max-width: 960px) {
      .c-schedule th,
      .c-schedule td {
        line-height: 185%;
        letter-spacing: 0em;
        text-align: justify; } }
    @media screen and (max-width: 960px) {
      .c-schedule th,
      .c-schedule td {
        text-align: center;
        line-height: 150%;
        padding: 0.8rem 0.5rem; } }
  .c-schedule thead th {
    background-color: #17b99c;
    color: #fff;
    font-weight: 700;
    border-left: 0; }
    .c-schedule thead th:not(:last-child) {
      border-right: 1px solid rgba(255, 255, 255, 0.4); }
  .c-schedule tbody th {
    background-color: rgba(23, 185, 156, 0.2);
    color: #17b99c;
    font-weight: 700;
    text-align: left;
    padding-left: 1.4rem;
    white-space: nowrap; }
  .c-schedule tbody td {
    color: #333333; }
  .c-schedule .is-closed {
    color: #333333; }

.c-section {
  margin-bottom: 8rem;
  scroll-margin-top: 8rem; }
  @media screen and (max-width: 960px) {
    .c-section {
      margin-bottom: 5rem;
      scroll-margin-top: 6rem; } }
  .c-section__anchor {
    position: relative;
    top: -8rem;
    visibility: hidden; }
  .c-section__title {
    margin-bottom: 3rem; }
  .c-section__body > :first-child {
    margin-top: 0; }
  .c-section__body > :last-child {
    margin-bottom: 0; }

.c-faq {
  margin: 0 0 4rem; }
  .c-faq__item {
    margin-bottom: 1.6rem;
    border: 1px solid rgba(23, 185, 156, 0.4);
    background-color: #fff; }
    .c-faq__item[open] .c-faq__q::after {
      transform: rotate(225deg); }
  .c-faq__q {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 5rem 1.6rem 5rem;
    background-color: rgba(23, 185, 156, 0.2);
    font-size: var(--size-p);
    font-weight: 700;
    line-height: 1.5;
    color: #333333;
    transition: background-color 0.25s ease; }
    .c-faq__q::-webkit-details-marker {
      display: none; }
    .c-faq__q::before {
      content: "Q.";
      position: absolute;
      left: 1.6rem;
      top: 50%;
      transform: translateY(-50%);
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: #17b99c; }
    .c-faq__q::after {
      content: "";
      position: absolute;
      right: 2rem;
      top: 50%;
      width: 0.9rem;
      height: 0.9rem;
      border-right: 0.2rem solid #17b99c;
      border-bottom: 0.2rem solid #17b99c;
      transform: translateY(-70%) rotate(45deg);
      transition: transform 0.3s ease; }
    @media (hover: hover) {
      .c-faq__q:hover {
        background-color: rgba(23, 185, 156, 0.25); } }
  .c-faq__a {
    position: relative;
    padding: 1.6rem 2rem 1.6rem 5rem;
    font-size: var(--size-p);
    line-height: 1.85;
    color: #333333; }
    .c-faq__a::before {
      content: "A.";
      position: absolute;
      left: 1.6rem;
      top: 1.5rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: #c44; }
    .c-faq__a > :first-child {
      margin-top: 0; }
    .c-faq__a > :last-child {
      margin-bottom: 0; }

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background-color: #17b99c;
  color: #fff;
  font-size: var(--size-p);
  line-height: 195%;
  letter-spacing: 0.05rem;
  font-weight: 400;
  text-decoration: none;
  border: 0.1rem solid #17b99c;
  border-radius: 5rem;
  cursor: pointer;
  transition: all 0.3s ease; }
  @media (max-width: 960px) {
    .c-btn {
      line-height: 185%;
      letter-spacing: 0em;
      text-align: justify; } }
  @media (hover: hover) {
    .c-btn:hover {
      background-color: #fff;
      color: #17b99c; } }
  .c-btn--outline {
    background-color: transparent;
    color: #17b99c; }
    @media (hover: hover) {
      .c-btn--outline:hover {
        background-color: #17b99c;
        color: #fff; } }
  .c-btn--lg {
    min-width: 32rem;
    height: 6.4rem;
    font-size: 1.8rem;
    border-radius: 3.2rem; }
    @media screen and (max-width: 960px) {
      .c-btn--lg {
        min-width: 24rem;
        height: 5.4rem;
        font-size: 1.5rem; } }
  .c-btn--block {
    width: 100%;
    min-width: 0; }
  .c-btn--arrow::after {
    content: "";
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    margin-left: 0.4rem;
    border-top: 0.2rem solid currentColor;
    border-right: 0.2rem solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease; }
  @media (hover: hover) {
    .c-btn--arrow:hover::after {
      transform: translateX(0.4rem) rotate(45deg); } }
  .c-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.6rem;
    margin: 2rem 0 0; }
    @media screen and (max-width: 960px) {
      .c-btn-group {
        gap: 1rem; } }

.c-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 0 0 4rem;
  overflow: hidden;
  border-radius: 0.8rem; }
  @media screen and (max-width: 960px) {
    .c-map {
      aspect-ratio: 4 / 3;
      margin-bottom: 2rem; } }
  .c-map iframe,
  .c-map img,
  .c-map embed,
  .c-map object {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block; }
  .c-map--square {
    aspect-ratio: 1 / 1; }
    @media screen and (max-width: 960px) {
      .c-map--square {
        aspect-ratio: 1 / 1; } }
  .c-map--tall {
    aspect-ratio: 3 / 4; }

.c-flow {
  display: flex;
  align-items: stretch;
  gap: 1.6rem;
  list-style: none;
  margin: 0 0 4rem;
  padding: 0; }
  @media screen and (max-width: 960px) {
    .c-flow {
      flex-direction: column;
      gap: 2.4rem; } }
  .c-flow__item {
    position: relative;
    flex: 1 1 0;
    padding: 2rem;
    background-color: rgba(23, 185, 156, 0.2);
    border-top: 0.4rem solid #17b99c;
    text-align: center;
    border-radius: 0; }
    .c-flow__item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -1.35rem;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 1.2rem solid transparent;
      border-bottom: 1.2rem solid transparent;
      border-left: 1rem solid #17b99c;
      z-index: 2; }
    @media screen and (max-width: 960px) {
      .c-flow__item {
        border-radius: 0.8rem; }
        .c-flow__item:not(:last-child)::after {
          top: auto;
          right: 50%;
          bottom: -1.8rem;
          transform: translateX(50%);
          border-top: 1rem solid #17b99c;
          border-bottom: 0;
          border-left: 1.2rem solid transparent;
          border-right: 1.2rem solid transparent; } }
  .c-flow__num {
    display: block;
    margin-bottom: 0.2rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #17b99c;
    letter-spacing: 0.2rem; }
  .c-flow__title {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #17b99c;
    line-height: 150%; }
  .c-flow p {
    margin: 1rem 0 0;
    font-size: var(--size-p);
    line-height: 195%;
    letter-spacing: 0.05rem;
    font-weight: 400;
    color: #555; }
    @media (max-width: 960px) {
      .c-flow p {
        line-height: 185%;
        letter-spacing: 0em;
        text-align: justify; } }
  .c-flow.tn-02 {
    justify-content: center;
    flex-wrap: wrap; }
    .c-flow.tn-02 .c-flow__item {
      flex: 1 1 auto; }
      @media screen and (max-width: 960px) {
        .c-flow.tn-02 .c-flow__item {
          padding: 2rem 1rem; } }

.c-step {
  counter-reset: c-step;
  list-style: none;
  margin: 0 0 4rem;
  padding: 0; }
  .c-step__item {
    counter-increment: c-step;
    position: relative;
    display: flex;
    gap: 2.4rem;
    padding-bottom: 4rem; }
    @media screen and (max-width: 960px) {
      .c-step__item {
        gap: 1.6rem;
        padding-bottom: 3rem; } }
    .c-step__item:not(:last-child)::before {
      content: "";
      position: absolute;
      top: 8rem;
      left: 4.5rem;
      bottom: 0;
      width: 0.2rem;
      background-color: rgba(23, 185, 156, 0.35); }
      @media screen and (max-width: 960px) {
        .c-step__item:not(:last-child)::before {
          top: 5.5rem;
          left: 2.75rem; } }
    .c-step__item:last-child {
      padding-bottom: 0; }
  .c-step__num {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 9rem;
    height: 9rem;
    background-color: #17b99c;
    color: #fff;
    border-radius: 50%;
    line-height: 1; }
    .c-step__num > br {
      display: none; }
    @media screen and (max-width: 960px) {
      .c-step__num {
        width: 6.5rem;
        height: 6.5rem; } }
    .c-step__num .label {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.2rem; }
      @media screen and (max-width: 960px) {
        .c-step__num .label {
          font-size: 0.9rem; } }
    .c-step__num .num {
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      font-style: italic;
      letter-spacing: -0.05rem; }
      @media screen and (max-width: 960px) {
        .c-step__num .num {
          font-size: 1.6rem; } }
    .c-step__num--auto::after {
      content: counter(c-step,decimal-leading-zero);
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 2.4rem;
      font-weight: 900;
      font-style: italic; }
  .c-step__body {
    flex: 1 1 auto;
    min-width: 0; }
    .c-step__body h4 {
      margin: 0 0 1rem;
      font-size: 2rem;
      font-weight: 700;
      color: #333333;
      line-height: 1.4; }
      @media screen and (max-width: 960px) {
        .c-step__body h4 {
          font-size: 1.7rem; } }
    .c-step__body p {
      margin: 0; }
      .c-step__body p:not(:last-child) {
        margin-bottom: 1rem; }
    .c-step__body img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 1.2rem 0;
      border-radius: 0.6rem; }

/* ==========================================================================
   Object - Project (p-)
   ========================================================================== */
.p-page-banner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .p-page-banner__content {
    position: relative; }
    .p-page-banner__content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--grits-banner-overlay, rgba(239, 154, 0, 0.1));
      z-index: 1; }
  .p-page-banner__image {
    margin: 0;
    line-height: 0; }
    .p-page-banner__image img {
      display: block;
      width: 100%;
      height: 40rem;
      object-fit: cover;
      filter: blur(var(--grits-banner-blur, 0.3rem)); }
  .p-page-banner__title {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #fff;
    text-align: center; }
    .p-page-banner__title .ja {
      display: block;
      font-size: 3.8rem;
      font-weight: 700;
      text-shadow: 0.3rem 0.3rem 0.4rem #333; }
      @media screen and (max-width: 960px) {
        .p-page-banner__title .ja {
          font-size: 2.4rem; } }

@media (max-width: 960px) {
  .p-page-banner__image img {
    height: 20rem; } }
.p-page-section {
  margin-bottom: var(--space-2xl); }
  @media screen and (max-width: 960px) {
    .p-page-section {
      margin-bottom: var(--space-xl); } }

.p-breadcrumb {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: var(--size-p); }
  .p-breadcrumb__list {
    display: inline;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0; }
  .p-breadcrumb__item {
    display: inline;
    position: relative;
    font-size: inherit;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05rem; }
    .p-breadcrumb__item:not(:last-child) {
      padding-right: 1.5rem;
      margin-right: 1.5rem; }
      .p-breadcrumb__item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 49%;
        width: 0.8rem;
        aspect-ratio: 1 / 1;
        border-top: 1px solid #353535;
        border-right: 1px solid #353535;
        transform: translateY(-47%) rotate(45deg); }
    .p-breadcrumb__item a {
      color: #454545;
      text-decoration: none; }
      @media (hover: hover) {
        .p-breadcrumb__item a:hover {
          opacity: 1;
          text-decoration: underline; } }
    .p-breadcrumb__item.is-current {
      color: #999; }

.p-news-list {
  list-style: none;
  margin: 0 0 6rem;
  padding: 0;
  width: 100%; }
  @media screen and (max-width: 960px) {
    .p-news-list {
      margin-bottom: 0rem; } }
  .p-news-list__item {
    padding: 2rem 0;
    margin-bottom: 1.5rem;
    background-color: rgba(23, 185, 156, 0.2);
    transition: background-color 0.3s ease; }
    .p-news-list__item:last-child {
      margin-bottom: 0; }
    .p-news-list__item:nth-child(odd) {
      background-color: #17b99c; }
      .p-news-list__item:nth-child(odd) .p-news-list__date,
      .p-news-list__item:nth-child(odd) .p-news-list__title {
        color: #fff; }
    @media (hover: hover) {
      .p-news-list__item:hover {
        background-color: rgba(183, 162, 102, 0.5); }
        .p-news-list__item:hover .p-news-list__date,
        .p-news-list__item:hover .p-news-list__title {
          color: #333333; } }
  .p-news-list__link {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #333333;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease; }
    @media (hover: hover) {
      .p-news-list__link:hover {
        color: #17b99c; } }
    @media screen and (max-width: 960px) {
      .p-news-list__link {
        gap: 0; } }
  .p-news-list__date {
    display: inline-block;
    flex: 0 0 auto;
    min-width: 13rem;
    padding-inline: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    color: #333333;
    font-family: "Zen Kaku Gothic New", sans-serif; }
    @media screen and (max-width: 960px) {
      .p-news-list__date {
        font-size: 1.5rem;
        min-width: 11rem;
        padding-left: 1rem;
        padding-right: 0; } }
  .p-news-list__title {
    flex: 1 1 auto;
    padding-right: 2rem;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #333333;
    word-break: break-word; }
    @media screen and (max-width: 960px) {
      .p-news-list__title {
        font-size: 1.5rem;
        padding-right: 1rem; } }
  .p-news-list__empty {
    padding: 2.4rem;
    text-align: center;
    color: #333333; }

.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-block: 4rem; }
  .pagination .page-numbers,
  .nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    min-width: 4rem;
    padding: 0 1rem;
    border: 0.1rem solid #17b99c;
    background-color: #fff;
    color: #333333;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.2s ease; }
    @media (hover: hover) {
      .pagination .page-numbers:hover,
      .nav-links .page-numbers:hover {
        background-color: #17b99c;
        color: #fff; } }
    .pagination .page-numbers.current,
    .nav-links .page-numbers.current {
      background-color: #17b99c;
      color: #fff; }
    .pagination .page-numbers.dots,
    .nav-links .page-numbers.dots {
      border: 0;
      background: none; }

.p-sidebar {
  display: flex;
  flex-direction: column; }
  .p-sidebar__widget {
    border: 0.1rem solid #17b99c;
    margin-bottom: 3rem;
    background-color: #fff; }
    @media screen and (max-width: 960px) {
      .p-sidebar__widget {
        margin-bottom: 1.5rem; } }
    .p-sidebar__widget:last-child {
      margin-bottom: 0; }
  .p-sidebar__title {
    position: relative;
    margin: 0;
    padding: 1rem 4rem 1rem 1rem;
    background-color: #17b99c;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer; }
    .p-sidebar__title::before {
      content: "";
      position: absolute;
      top: 50%;
      right: 1.5rem;
      width: 0.8rem;
      height: 0.8rem;
      border-top: 0.1rem solid #fff;
      border-right: 0.1rem solid #fff;
      transform: translateY(-50%) rotate(135deg);
      transition: transform 0.35s ease; }
    .p-sidebar__title.is-active::before {
      transform: translateY(-50%) rotate(315deg); }
    .p-sidebar__title span {
      display: inline; }
  .p-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0 1.5rem;
    max-height: 32rem;
    overflow: auto; }
    .p-sidebar__list li {
      border-bottom: 0.1rem solid #17b99c; }
      .p-sidebar__list li:last-child {
        border-bottom: 0; }
      .p-sidebar__list li a {
        display: block;
        padding: 1rem 0;
        color: #333;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0;
        text-decoration: none;
        transition: color 0.2s ease; }
        @media (hover: hover) {
          .p-sidebar__list li a:hover {
            color: #17b99c; } }
        @media screen and (max-width: 960px) {
          .p-sidebar__list li a {
            font-size: 1.5rem; } }
      .p-sidebar__list li ul {
        list-style: none;
        margin: 0;
        padding-left: 1.5rem;
        border-top: 0.1rem solid #17b99c; }

.p-single__header {
  background-color: rgba(23, 185, 156, 0.08);
  padding: 3rem;
  margin-bottom: 0;
  border-radius: 0.5rem; }
  @media screen and (max-width: 960px) {
    .p-single__header {
      padding: 1rem; } }
.p-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-bottom: 1rem; }
.p-single__date {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3rem;
  color: #17b99c; }
  @media screen and (max-width: 960px) {
    .p-single__date {
      font-size: 1.5rem; } }
.p-single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0; }
.p-single__category a {
  display: inline-block;
  padding: 0.3rem 1.4rem;
  background-color: #17b99c;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: opacity 0.3s ease; }
  @media (hover: hover) {
    .p-single__category a:hover {
      opacity: 0.85; } }
  @media screen and (max-width: 960px) {
    .p-single__category a {
      font-size: 1.2rem;
      padding: 0.2rem 1rem; } }
.p-single__title {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  color: #17b99c; }
  @media screen and (max-width: 960px) {
    .p-single__title {
      font-size: 2rem; } }
.p-single__content {
  padding: 4rem 0; }
  .p-single__content :is(h1, h2, h3, h4, h5, h6) {
    margin: 0 0 2.5rem;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.1rem;
    color: #17b99c;
    scroll-margin-top: 6rem; }
    .p-single__content :is(h1, h2, h3, h4, h5, h6):target {
      animation: grits-toc-flash 1.6s ease-out 1; }
  .p-single__content h1 {
    border-bottom: 2px solid #17b99c;
    padding-bottom: 1rem; }
    @media screen and (max-width: 960px) {
      .p-single__content h1 {
        font-size: 2.6rem; } }
  .p-single__content h2 {
    font-size: 2.6rem;
    background-color: #17b99c;
    color: #fff;
    padding: 1.7rem 1.5rem;
    border-radius: 0.5rem; }
    @media screen and (max-width: 960px) {
      .p-single__content h2 {
        font-size: 2.4rem; } }
  .p-single__content h3 {
    position: relative;
    font-size: 2.4rem;
    padding-left: 2.3rem; }
    .p-single__content h3::before {
      content: "";
      position: absolute;
      top: 1rem;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      background-color: #17b99c;
      border-radius: 50%; }
    @media screen and (max-width: 960px) {
      .p-single__content h3 {
        font-size: 2.2rem; } }
  .p-single__content h4 {
    font-size: 2.2rem;
    border-left: 2px solid #17b99c;
    padding-left: 2rem; }
    @media screen and (max-width: 960px) {
      .p-single__content h4 {
        font-size: 2rem; } }
  .p-single__content h5 {
    position: relative;
    font-size: 2rem;
    padding-bottom: 1rem; }
    .p-single__content h5::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 8rem;
      height: 2px;
      background-color: #17b99c; }
    @media screen and (max-width: 960px) {
      .p-single__content h5 {
        font-size: 1.8rem; } }
  .p-single__content h6 {
    font-size: 1.8rem; }
    @media screen and (max-width: 960px) {
      .p-single__content h6 {
        font-size: 1.6rem; } }
  .p-single__content :is(p, td, li, th, blockquote) {
    margin: 0 0 2.5rem;
    font-size: var(--size-p);
    line-height: 195%;
    letter-spacing: 0.05rem;
    font-weight: 400;
    color: #333333; }
    @media (max-width: 960px) {
      .p-single__content :is(p, td, li, th, blockquote) {
        line-height: 185%;
        letter-spacing: 0em;
        text-align: justify; } }
    @media screen and (max-width: 960px) {
      .p-single__content :is(p, td, li, th, blockquote) {
        font-size: 1.5rem;
        line-height: 1.85; } }
  .p-single__content a {
    color: #0073aa;
    text-decoration: underline; }
    @media (hover: hover) {
      .p-single__content a:hover {
        opacity: 0.7; } }
  .p-single__content ul,
  .p-single__content ol {
    margin: 0 0 2.5rem 2.2rem; }
  .p-single__content ul {
    list-style: disc; }
  .p-single__content ol {
    list-style: decimal; }
  .p-single__content li {
    margin-bottom: 0; }
    .p-single__content li:not(:last-child) {
      margin-bottom: 1rem; }
  .p-single__content blockquote {
    position: relative;
    background-color: #eeeeee;
    padding: 5rem 4rem 4rem 7rem; }
    @media screen and (max-width: 960px) {
      .p-single__content blockquote {
        padding: 4rem 1.5rem 1.5rem 5rem; } }
    .p-single__content blockquote::before {
      content: "\201C";
      position: absolute;
      top: 1.5rem;
      left: 1.8rem;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 7rem;
      font-weight: 700;
      line-height: 1;
      color: #17b99c; }
      @media screen and (max-width: 960px) {
        .p-single__content blockquote::before {
          top: -1.2rem;
          left: 1rem;
          font-size: 5rem; } }
    .p-single__content blockquote p:last-child {
      margin-bottom: 0; }
  .p-single__content hr {
    border: 0;
    border-top: 0.1rem solid #cccccc;
    margin: 2rem 0; }
  .p-single__content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2.5rem; }
.p-single__footer {
  margin-bottom: 10rem; }
  @media screen and (max-width: 960px) {
    .p-single__footer {
      margin-bottom: 4rem; } }

@keyframes grits-toc-flash {
  0% {
    background-color: rgba(183, 162, 102, 0.45); }
  100% {
    background-color: transparent; } }
.p-single-nav {
  margin-top: 5rem; }
  @media screen and (max-width: 960px) {
    .p-single-nav {
      margin-top: 0; } }
  .p-single-nav__list {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0; }
    @media screen and (max-width: 960px) {
      .p-single-nav__list {
        flex-wrap: wrap;
        gap: 1.5rem; } }
  @media screen and (max-width: 960px) {
    .p-single-nav__item {
      width: calc((100% - 1.5rem) / 2); }
      .p-single-nav__item--back {
        order: 1;
        width: 100%; } }
  .p-single-nav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30rem;
    height: 6.5rem;
    font-size: 1.6rem;
    color: #fff;
    background-color: #17b99c;
    border: 0.1rem solid #17b99c;
    border-radius: 3.3rem;
    text-decoration: none;
    transition: all 0.3s ease; }
    @media (hover: hover) {
      .p-single-nav__link:hover {
        opacity: 0.85; } }
    @media screen and (max-width: 960px) {
      .p-single-nav__link {
        width: 100%;
        height: 5rem;
        font-size: 1.5rem; } }
    .p-single-nav__link--disabled {
      opacity: 0.5;
      cursor: not-allowed;
      pointer-events: none; }

@media (max-width: 960px) {
  .p-single__content :is(p, td, li, th, blockquote, a) {
    font-size: 1.5rem;
    line-height: 185%; }
  .p-single__content h1 {
    font-size: 2rem; }
  .p-single__content h2 {
    font-size: 1.9rem;
    padding: 1.2rem 1.5rem; }
  .p-single__content h3 {
    font-size: 1.8rem; }
  .p-single__content h4 {
    font-size: 1.7rem; }
  .p-single__content h5 {
    font-size: 1.6rem; }
  .p-single__content h6 {
    font-size: 1.5rem; }
  .p-single__content blockquote {
    padding: 1.5rem; }
  .p-single__date {
    font-size: 1.5rem; }
  .p-single__title {
    font-size: 2rem; }
  .p-single-nav {
    margin-top: 0; }
    .p-single-nav__link {
      width: 20rem;
      height: 5rem;
      font-size: 1.5rem; } }
@media (max-width: 767px) {
  .p-single__header {
    padding: 1rem; }
  .p-single-nav__list {
    flex-wrap: wrap;
    gap: 1.5rem; }
  .p-single-nav__link {
    width: 100%; }
  .p-single-nav__item {
    width: calc((100% - 1.501rem) / 2); }
    .p-single-nav__item.p-single-nav__item--back {
      order: 1;
      width: 100%; } }
img {
  border-radius: 0.8rem;
  overflow: hidden; }

.p-column {
  margin-block: 4rem 8rem; }
  @media screen and (max-width: 960px) {
    .p-column {
      margin-block: 2rem 4rem; } }
  .p-column__list {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0; }
    @media screen and (max-width: 960px) {
      .p-column__list {
        gap: 5rem 1rem; } }
  .p-column__item {
    flex: 0 0 calc((100% - 4.5rem) / 4);
    box-sizing: border-box; }
    @media screen and (max-width: 960px) {
      .p-column__item {
        flex: 0 0 calc((100% - 1rem) / 2); } }

.c-column-card {
  display: flex;
  flex-direction: column; }
  .c-column-card__thumb-link {
    display: block;
    text-decoration: none; }
    @media (hover: hover) {
      .c-column-card__thumb-link:hover {
        opacity: 0.85; } }
  .c-column-card__thumb {
    position: relative;
    margin: 0 0 1rem;
    line-height: 0;
    aspect-ratio: 4 / 2.8;
    border-radius: 1.5rem;
    overflow: hidden; }
    @media screen and (max-width: 960px) {
      .c-column-card__thumb {
        border-radius: 0.8rem; } }
    .c-column-card__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
    .c-column-card__thumb--placeholder {
      background-color: rgba(23, 185, 156, 0.2); }
      .c-column-card__thumb--placeholder::after {
        content: "NO IMAGE";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #17b99c;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.2rem;
        line-height: 1;
        opacity: 0.6; }
  .c-column-card__content {
    display: flex;
    flex-direction: column; }
  .c-column-card__date {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    background-color: #17b99c;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 175%;
    letter-spacing: 0.1rem;
    border-radius: 0.5rem;
    text-decoration: none; }
    @media screen and (max-width: 960px) {
      .c-column-card__date {
        font-size: 1rem;
        padding: 0.6rem;
        line-height: 120%;
        margin-top: -3.4rem;
        z-index: 1;
        margin-bottom: 1.5rem; } }
  .c-column-card__title {
    margin: 0 0 1rem; }
    .c-column-card__title a {
      display: inline-block;
      font-size: var(--size-p);
      line-height: 195%;
      letter-spacing: 0.05rem;
      font-weight: 400;
      color: #333333;
      font-weight: bold;
      text-align: justify;
      text-decoration: none !important;
      transition: opacity 0.3s ease; }
      @media (max-width: 960px) {
        .c-column-card__title a {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
      @media (hover: hover) {
        .c-column-card__title a:hover {
          opacity: 0.7; } }
      @media screen and (max-width: 960px) {
        .c-column-card__title a {
          line-height: 130%; } }
  .c-column-card__excerpt {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.1rem;
    color: #333333;
    text-align: justify; }
    @media screen and (max-width: 960px) {
      .c-column-card__excerpt {
        font-size: 1.4rem;
        letter-spacing: 0;
        line-height: 165%; } }

.p-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s; }
  .p-drawer.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s ease, visibility 0s linear 0s; }
  .p-drawer__inner {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 4rem; }
    @media screen and (max-width: 960px) {
      .p-drawer__inner {
        padding: 9rem 2rem 12rem;
        align-items: flex-start; } }
  .p-drawer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    width: 100%;
    max-width: 140rem; }
    .p-drawer__columns--asymmetric {
      grid-template-columns: repeat(3, 1fr); }
    @media screen and (max-width: 960px) {
      .p-drawer__columns {
        grid-template-columns: 1fr;
        gap: 3rem; } }
  .p-drawer__col {
    min-width: 0; }
  .p-drawer__heading {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin: 0 0 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #17b99c; }
    .p-drawer__heading-icon {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 6rem;
      height: 6rem;
      color: #17b99c; }
      .p-drawer__heading-icon svg,
      .p-drawer__heading-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block; }
      @media screen and (max-width: 960px) {
        .p-drawer__heading-icon {
          width: 4.8rem;
          height: 4.8rem; } }
    .p-drawer__heading-text {
      flex: 1 1 auto;
      min-width: 0; }
    .p-drawer__heading .ja {
      display: block;
      font-size: 1.8rem;
      font-weight: 500;
      color: #17b99c;
      line-height: 1;
      margin-bottom: 0.8rem;
      letter-spacing: 0.1rem; }
    .p-drawer__heading .en {
      display: block;
      font-size: 3.4rem;
      font-weight: 700;
      color: #333333;
      font-family: "Zen Kaku Gothic New", sans-serif;
      letter-spacing: 0.2rem;
      line-height: 1; }
      @media screen and (max-width: 960px) {
        .p-drawer__heading .en {
          font-size: 2.6rem; } }
  .p-drawer__menu {
    list-style: none;
    margin: 0;
    padding: 0; }
    .p-drawer__menu--split {
      column-count: 2;
      column-gap: 4rem; }
      @media screen and (max-width: 960px) {
        .p-drawer__menu--split {
          column-count: 1;
          column-gap: 0; } }
      .p-drawer__menu--split > li {
        break-inside: avoid;
        page-break-inside: avoid;
        -webkit-column-break-inside: avoid; }
    .p-drawer__menu > li > a {
      position: relative;
      display: block;
      padding: 1rem 0 1rem 1.8rem;
      color: #333333;
      font-size: var(--size-p);
      line-height: 195%;
      letter-spacing: 0.05rem;
      font-weight: 400;
      text-decoration: none;
      transition: color 0.25s ease, padding-left 0.25s ease; }
      @media (max-width: 960px) {
        .p-drawer__menu > li > a {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
      .p-drawer__menu > li > a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 0;
        height: 0;
        border-top: 0.45rem solid transparent;
        border-bottom: 0.45rem solid transparent;
        border-left: 0.7rem solid #17b99c;
        transform: translateY(-50%);
        transition: transform 0.25s ease; }
      .p-drawer__menu > li > a.active {
        color: #17b99c; }
      @media (hover: hover) {
        .p-drawer__menu > li > a:hover {
          color: #17b99c;
          padding-left: 2.6rem; }
          .p-drawer__menu > li > a:hover::before {
            transform: translateY(-50%) translateX(0.4rem); } }
      @media screen and (max-width: 960px) {
        .p-drawer__menu > li > a {
          padding: 0.5rem 0 0.5rem 1.6rem;
          font-weight: 500; } }
    .p-drawer__menu .sub-menu {
      list-style: none;
      margin: 0 0 1rem 1.6rem;
      padding: 0; }
      .p-drawer__menu .sub-menu li {
        border-bottom: 0; }
        .p-drawer__menu .sub-menu li a {
          position: relative;
          display: block;
          padding: 0.6rem 0 0.6rem 1.6rem;
          font-size: var(--size-p);
          font-weight: 500;
          color: #666;
          text-decoration: none;
          transition: color 0.25s ease, padding-left 0.25s ease; }
          .p-drawer__menu .sub-menu li a::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 0.9rem;
            height: 0.1rem;
            background-color: #17b99c;
            transform: translateY(-50%);
            transition: width 0.25s ease; }
          @media (hover: hover) {
            .p-drawer__menu .sub-menu li a:hover {
              color: #17b99c;
              padding-left: 2.2rem; }
              .p-drawer__menu .sub-menu li a:hover::before {
                width: 1.5rem; } }

.l-author-container {
  margin-block: 6rem;
  padding: 4.5rem;
  background: rgba(23, 185, 156, 0.1); }
  @media screen and (max-width: 960px) {
    .l-author-container {
      padding: 1rem;
      margin-block: 4rem; } }

.c-author {
  display: flex;
  gap: 0;
  padding: 3rem;
  margin-bottom: 3rem;
  background: #fff;
  border: 0.1rem solid #17b99c; }
  .c-author:last-child {
    margin-bottom: 0; }
  @media screen and (max-width: 960px) {
    .c-author {
      flex-direction: column;
      padding: 2rem 1.5rem; } }
  .c-author__info {
    width: calc(100% - 33rem);
    padding-right: 6rem; }
    @media screen and (max-width: 960px) {
      .c-author__info {
        order: 1;
        width: 100%;
        padding-right: 0; } }
  .c-author__avatar {
    flex-shrink: 0;
    width: 33rem; }
    .c-author__avatar.tn-02 {
      position: relative;
      z-index: 0; }
    .c-author__avatar img {
      width: 100%;
      display: block;
      border-radius: 0.5rem; }
    @media screen and (max-width: 960px) {
      .c-author__avatar {
        width: 100%;
        margin-bottom: 2rem; } }
  .c-author__title {
    margin: 0 0 3rem;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.15rem;
    color: #17b99c; }
    .c-author__title.vz-02 {
      font-size: 2.4rem;
      margin-bottom: 1.5rem; }
    @media screen and (max-width: 960px) {
      .c-author__title {
        font-size: 2rem;
        margin-bottom: 1.5rem; }
        .c-author__title.vz-02 {
          font-size: 1.8rem; } }
  .c-author__name {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.1rem dashed #333333; }
    .c-author__name p {
      margin: 0 0 0.4rem;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      color: #333333; }
      .c-author__name p:nth-child(2) {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.1rem; }
        @media screen and (max-width: 960px) {
          .c-author__name p:nth-child(2) {
            font-size: 1.8rem; } }
    @media screen and (max-width: 960px) {
      .c-author__name {
        margin-bottom: 2.5rem; }
        .c-author__name p {
          font-size: 1.5rem; } }
  .c-author__list {
    margin: 0 0 3.5rem; }
    .c-author__list ul,
    .c-author__list ol {
      list-style: none;
      margin: 0;
      padding: 0; }
    .c-author__list li {
      position: relative;
      margin-bottom: 1.5rem;
      padding-left: 1.6rem;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0.1rem;
      color: #333333;
      list-style: none; }
      .c-author__list li:last-child {
        margin-bottom: 0; }
      .c-author__list li::before {
        content: "";
        position: absolute;
        top: 1.2rem;
        left: 0;
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 50%;
        background: #17b99c; }
    @media screen and (max-width: 960px) {
      .c-author__list {
        margin-bottom: 2.5rem; }
        .c-author__list li {
          margin-bottom: 0.5rem;
          padding-left: 1.4rem;
          font-size: 1.5rem; }
          .c-author__list li::before {
            top: 1rem; } }
  .c-author__desc {
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(23, 185, 156, 0.2); }
    .c-author__desc p {
      margin: 0;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0.1rem;
      color: #333333; }
    @media screen and (max-width: 960px) {
      .c-author__desc {
        padding: 1.5rem;
        margin-bottom: 3rem; } }
  .c-author__link ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0; }
    .c-author__link ul li a {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 6rem;
      font-size: var(--size-p);
      font-weight: 400;
      line-height: 175%;
      color: #fff;
      background: #17b99c;
      text-decoration: none;
      transition: opacity 0.2s ease; }
      @media (hover: hover) {
        .c-author__link ul li a:hover {
          opacity: 0.85; } }
  .c-author__link.vz-02 ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; }
  @media screen and (max-width: 960px) {
    .c-author__link ul, .c-author__link.vz-02 ul {
      grid-template-columns: 1fr;
      gap: 1rem; }
    .c-author__link ul li a {
      height: 5.5rem; } }
  .c-author__table {
    margin: 0 0 3rem;
    border: 0.1rem solid #999; }
    .c-author__table dl {
      display: flex;
      margin: 0;
      border-bottom: 0.1rem solid #999; }
      .c-author__table dl:last-child {
        border-bottom: 0; }
      .c-author__table dl dt,
      .c-author__table dl dd {
        margin: 0;
        padding: 1rem 2rem;
        font-size: var(--size-p);
        font-weight: 500;
        line-height: 175%;
        letter-spacing: 0.1rem;
        color: #333333; }
      .c-author__table dl dt {
        width: 16rem;
        background: #17b99c;
        color: #fff; }
      .c-author__table dl dd {
        flex: 1; }
    @media screen and (max-width: 960px) {
      .c-author__table dl dt,
      .c-author__table dl dd {
        padding: 0.7rem;
        font-size: 1.5rem; }
      .c-author__table dl dt {
        width: 9rem; } }

#toc_container {
  counter-reset: toc;
  width: 100%;
  max-width: 100%;
  margin: 3rem 0 8rem;
  padding: 2.4rem 3rem 2rem;
  background: rgba(23, 185, 156, 0.08);
  border: 1px solid rgba(23, 185, 156, 0.5);
  border-radius: 0.6rem;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.04);
  box-sizing: border-box; }
  @media screen and (max-width: 960px) {
    #toc_container {
      padding: 1.8rem 1.6rem 1.4rem;
      margin: 2rem 0 6rem; } }
  #toc_container p.toc_title {
    position: relative;
    margin: 0;
    padding: 0 0 1rem 3rem;
    font-size: var(--size-p);
    line-height: 195%;
    letter-spacing: 0.05rem;
    font-weight: 400;
    font-weight: bold;
    color: #333333;
    border-bottom: 0.2rem solid #17b99c;
    text-align: left;
    margin-bottom: 1.6rem; }
    @media (max-width: 960px) {
      #toc_container p.toc_title {
        line-height: 185%;
        letter-spacing: 0em;
        text-align: justify; } }
    #toc_container p.toc_title::before {
      content: "";
      position: absolute;
      top: 0.6rem;
      left: 0;
      width: 2rem;
      height: 2rem;
      background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
      background-size: 1.4rem 0.25rem, 1.4rem 0.25rem, 1.4rem 0.25rem;
      background-position: 0 0.4rem, 0 0.9rem, 0 1.4rem;
      background-repeat: no-repeat;
      color: #17b99c; }
    @media screen and (max-width: 960px) {
      #toc_container p.toc_title {
        font-size: 1.6rem; } }
  #toc_container .toc_list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important; }
    #toc_container .toc_list li {
      position: relative;
      margin: 0 !important;
      padding: 1.2rem 0 1.2rem 2.4rem;
      border-bottom: 1px dashed rgba(23, 185, 156, 0.35);
      list-style: none !important; }
      @media screen and (max-width: 960px) {
        #toc_container .toc_list li {
          padding: 0.8rem 0 0.8rem 2.2rem; }
          #toc_container .toc_list li:last-child {
            border-bottom: none; } }
      #toc_container .toc_list li::before {
        content: "";
        position: absolute;
        left: 0.4rem;
        top: 2.5rem;
        width: 0;
        height: 0;
        border-top: 0.5rem solid transparent;
        border-bottom: 0.5rem solid transparent;
        border-left: 0.7rem solid #17b99c; }
        @media screen and (max-width: 960px) {
          #toc_container .toc_list li::before {
            top: 1.4rem; } }
      #toc_container .toc_list li ul {
        list-style: none !important;
        margin: 0.6rem 0 0 0 !important;
        padding: 0 !important;
        border-top: 1px dashed rgba(23, 185, 156, 0.35); }
        #toc_container .toc_list li ul li {
          padding: 0.6rem 0 0.6rem 2rem;
          border-bottom: 0;
          font-size: 1.4rem; }
          #toc_container .toc_list li ul li::before {
            content: "";
            top: 1.2rem;
            width: 0.7rem;
            height: 0.7rem;
            border: 0.15rem solid #17b99c;
            border-radius: 50%;
            background: transparent; }
      #toc_container .toc_list li a {
        color: #333333;
        font-size: var(--size-p);
        line-height: 195%;
        letter-spacing: 0.05rem;
        font-weight: 400;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease, padding-left 0.2s ease; }
        @media (max-width: 960px) {
          #toc_container .toc_list li a {
            line-height: 185%;
            letter-spacing: 0em;
            text-align: justify; } }
        @media (hover: hover) {
          #toc_container .toc_list li a:hover {
            color: #17b99c; } }
        @media screen and (max-width: 960px) {
          #toc_container .toc_list li a {
            font-size: 1.5rem;
            line-height: 150%; } }
  #toc_container.toc--circle .toc_list > li::before {
    top: 1.7rem;
    border: 0;
    width: 0.9rem;
    height: 0.9rem;
    background: #17b99c;
    border-radius: 50%; }
  #toc_container.toc--cols-2 .toc_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    row-gap: 0; }
    @media screen and (max-width: 960px) {
      #toc_container.toc--cols-2 .toc_list {
        grid-template-columns: 1fr; } }
  #toc_container.toc--cols-3 .toc_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
    row-gap: 0; }
    @media screen and (max-width: 1024px) {
      #toc_container.toc--cols-3 .toc_list {
        grid-template-columns: repeat(2, 1fr); } }
    @media screen and (max-width: 960px) {
      #toc_container.toc--cols-3 .toc_list {
        grid-template-columns: 1fr; } }
  #toc_container.toc--button .toc_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.2rem; }
    @media screen and (max-width: 960px) {
      #toc_container.toc--button .toc_list {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem; } }
    #toc_container.toc--button .toc_list > li {
      border: 0.1rem solid #17b99c;
      background: #fff;
      padding: 1.4rem 3rem 1.4rem 1.6rem;
      border-radius: 0.4rem;
      transition: background 0.25s ease, transform 0.2s ease; }
      #toc_container.toc--button .toc_list > li::before {
        display: none; }
      #toc_container.toc--button .toc_list > li::after {
        content: "";
        position: absolute;
        right: 1.4rem;
        top: 50%;
        width: 0.7rem;
        height: 0.7rem;
        border-top: 0.2rem solid #17b99c;
        border-right: 0.2rem solid #17b99c;
        transform: translateY(-50%) rotate(45deg);
        transition: right 0.2s ease; }
      @media (hover: hover) {
        #toc_container.toc--button .toc_list > li:hover {
          background: #17b99c; }
          #toc_container.toc--button .toc_list > li:hover::after {
            border-color: #fff;
            right: 1rem; }
          #toc_container.toc--button .toc_list > li:hover a {
            color: #fff; } }
      #toc_container.toc--button .toc_list > li a {
        display: block; }

.catalogue-list {
  margin: 2rem 0; }
  @media screen and (max-width: 960px) {
    .catalogue-list {
      margin: 1.6rem 0; } }
  .catalogue-list > :first-child {
    margin-top: 0; }
  .catalogue-list > :last-child {
    margin-bottom: 0; }
  .catalogue-list h2,
  .catalogue-list h3,
  .catalogue-list h4,
  .catalogue-list h5 {
    margin: 2rem 0 1.2rem;
    padding: 0 0 0.8rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333333;
    border-bottom: 0.2rem solid #17b99c; }
    .catalogue-list h2:first-child,
    .catalogue-list h3:first-child,
    .catalogue-list h4:first-child,
    .catalogue-list h5:first-child {
      margin-top: 0; }
    @media screen and (max-width: 960px) {
      .catalogue-list h2,
      .catalogue-list h3,
      .catalogue-list h4,
      .catalogue-list h5 {
        font-size: 1.5rem; } }
  .catalogue-list ul,
  .catalogue-list ol {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; }
    .catalogue-list ul:last-child,
    .catalogue-list ol:last-child {
      margin-bottom: 0; }
    .catalogue-list ul li,
    .catalogue-list ol li {
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important; }
      .catalogue-list ul li a,
      .catalogue-list ol li a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 4.6rem;
        padding: 1rem 2.5rem;
        background: #fff;
        color: #17b99c;
        border: 0.15rem solid #17b99c;
        border-radius: 0;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.4;
        text-decoration: none !important;
        box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
        white-space: nowrap; }
        @media (hover: hover) {
          .catalogue-list ul li a:hover,
          .catalogue-list ol li a:hover {
            background: #17b99c;
            color: #fff;
            box-shadow: 0 0.2rem 0.6rem rgba(23, 185, 156, 0.3); } }
        @media screen and (max-width: 960px) {
          .catalogue-list ul li a,
          .catalogue-list ol li a {
            min-height: 3.8rem;
            padding: 0.6rem 1.4rem;
            font-size: 1.3rem;
            white-space: normal; } }
      .catalogue-list ul li.is-current a,
      .catalogue-list ol li.is-current a {
        background: #17b99c;
        color: #fff;
        border-color: #17b99c;
        box-shadow: 0 0.2rem 0.6rem rgba(23, 185, 156, 0.25);
        cursor: default;
        pointer-events: none; }
    @media screen and (max-width: 960px) {
      .catalogue-list ul,
      .catalogue-list ol {
        justify-content: flex-start; } }
  @media screen and (max-width: 960px) and (max-width: 767px) {
    .catalogue-list ul,
    .catalogue-list ol {
      gap: 0.5rem; } }
    @media screen and (max-width: 960px) {
        .catalogue-list ul li,
        .catalogue-list ol li {
          width: calc((100% - 2rem) / 3); }
          .catalogue-list ul li a,
          .catalogue-list ol li a {
            width: 100%;
            text-align: center;
            min-height: 100%;
            padding: 1.5rem; } }
    @media screen and (max-width: 960px) and (max-width: 767px) {
      .catalogue-list ul li,
      .catalogue-list ol li {
        width: calc((100% - 0.5rem) / 2); }
        .catalogue-list ul li a,
        .catalogue-list ol li a {
          padding: 1rem 1.5rem; } }

  .catalogue-list--stacked ul, .catalogue-list--stacked ol {
    flex-direction: column;
    gap: 0; }
    .catalogue-list--stacked ul li, .catalogue-list--stacked ol li {
      border-bottom: 0.1rem dashed rgba(23, 185, 156, 0.35); }
      .catalogue-list--stacked ul li:last-child, .catalogue-list--stacked ol li:last-child {
        border-bottom: 0; }
    .catalogue-list--stacked ul a, .catalogue-list--stacked ol a {
      display: block;
      background: transparent;
      border: 0;
      border-radius: 0;
      padding: 0.9rem 0 0.9rem 2rem;
      font-size: var(--size-p);
      position: relative; }
      .catalogue-list--stacked ul a::before, .catalogue-list--stacked ol a::before {
        content: "";
        position: absolute;
        left: 0.4rem;
        top: 50%;
        width: 0;
        height: 0;
        border-top: 0.4rem solid transparent;
        border-bottom: 0.4rem solid transparent;
        border-left: 0.6rem solid #17b99c;
        transform: translateY(-50%); }
      @media (hover: hover) {
        .catalogue-list--stacked ul a:hover, .catalogue-list--stacked ol a:hover {
          background: transparent;
          color: #17b99c;
          padding-left: 2.4rem; } }
  .catalogue-list--cols-2 ul, .catalogue-list--cols-2 ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr); }
    @media screen and (max-width: 960px) {
      .catalogue-list--cols-2 ul, .catalogue-list--cols-2 ol {
        grid-template-columns: 1fr; } }
  .catalogue-list--cols-3 ul, .catalogue-list--cols-3 ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr); }
    @media screen and (max-width: 1024px) {
      .catalogue-list--cols-3 ul, .catalogue-list--cols-3 ol {
        grid-template-columns: repeat(2, 1fr); } }
    @media screen and (max-width: 960px) {
      .catalogue-list--cols-3 ul, .catalogue-list--cols-3 ol {
        grid-template-columns: 1fr; } }

.c-sitemap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-block: 4rem 8rem; }
  @media screen and (max-width: 960px) {
    .c-sitemap {
      gap: 2.4rem;
      margin-block: 2.4rem 4rem; } }
  .c-sitemap__group {
    width: 100%; }
  .c-sitemap__title {
    margin: 0 0 1.6rem;
    padding: 0 0 1rem;
    border-bottom: 0.2rem solid #17b99c;
    line-height: 1.3; }
    .c-sitemap__title .ja {
      display: inline-block;
      margin-right: 1rem;
      font-size: 2.2rem;
      font-weight: 700;
      color: #17b99c;
      vertical-align: middle; }
      @media screen and (max-width: 960px) {
        .c-sitemap__title .ja {
          font-size: 1.8rem; } }
    .c-sitemap__title .en {
      display: inline-block;
      position: relative;
      top: 0.4rem;
      font-family: "Zen Kaku Gothic New", sans-serif;
      font-size: 1.6rem;
      font-weight: 500;
      color: #17b99c;
      letter-spacing: 0.2rem;
      vertical-align: middle; }
      @media screen and (max-width: 960px) {
        .c-sitemap__title .en {
          font-size: 1.4rem; } }
  .c-sitemap__list {
    list-style: none;
    margin: 0;
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3rem;
    row-gap: 0;
    background: #f1f1f1;
    border-radius: 0.5rem; }
    @media screen and (max-width: 1024px) {
      .c-sitemap__list {
        grid-template-columns: repeat(2, 1fr); } }
    @media screen and (max-width: 960px) {
      .c-sitemap__list {
        padding: 1rem 1.5rem; } }
    @media screen and (max-width: 767px) {
      .c-sitemap__list {
        grid-template-columns: 1fr; } }
    .c-sitemap__list > li {
      position: relative;
      padding: 1rem 0 1rem 1.6rem;
      border-bottom: 0.1rem dashed rgba(23, 185, 156, 0.35);
      line-height: 1.5; }
      @media screen and (max-width: 767px) {
        .c-sitemap__list > li:last-child {
          border-bottom: none; } }
      .c-sitemap__list > li::before {
        content: "";
        position: absolute;
        top: 2.3rem;
        left: 0;
        width: 0;
        height: 0;
        border-top: 0.4rem solid transparent;
        border-bottom: 0.4rem solid transparent;
        border-left: 0.6rem solid #17b99c; }
        @media screen and (max-width: 960px) {
          .c-sitemap__list > li::before {
            top: 2rem; } }
      .c-sitemap__list > li > a {
        color: #333333;
        font-size: var(--size-p);
        line-height: 195%;
        letter-spacing: 0.05rem;
        font-weight: 400;
        text-decoration: none;
        transition: ease all 0.2s; }
        @media (max-width: 960px) {
          .c-sitemap__list > li > a {
            line-height: 185%;
            letter-spacing: 0em;
            text-align: justify; } }
        @media (hover: hover) {
          .c-sitemap__list > li > a:hover {
            color: #17b99c; } }
  .c-sitemap__sub {
    list-style: none;
    margin: 0.8rem 0 0;
    padding: 0 0 0 1rem; }
    .c-sitemap__sub li {
      position: relative;
      padding: 0.4rem 0 0.4rem 1.4rem;
      font-size: 1.4rem;
      line-height: 1.5; }
      .c-sitemap__sub li::before {
        content: "─";
        position: absolute;
        left: 0;
        top: 0.4rem;
        color: #17b99c;
        font-weight: 700; }
      .c-sitemap__sub li a {
        color: #555;
        text-decoration: none;
        transition: color 0.2s ease; }
        @media (hover: hover) {
          .c-sitemap__sub li a:hover {
            color: #17b99c;
            text-decoration: underline; } }

.home img {
  border-radius: 0; }

.p-doctor-info p {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0; }

.p-message {
  background: #F6FFFE;
  padding: 11.5rem 0 3rem 0;
  position: relative;
  z-index: 0; }
  .p-message::before {
    content: "";
    position: absolute;
    width: 58.9rem;
    height: 56rem;
    background: url(assets/img/message_img04.png) no-repeat center/cover;
    z-index: -1;
    top: 9rem;
    right: 0; }
  .p-message__imgs {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap; }
    .p-message__imgs--item {
      width: calc(100% / 3);
      position: relative;
      z-index: 0; }
      .p-message__imgs--item img {
        width: 100%; }
      .p-message__imgs--item::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(246, 255, 254, 0) 0%, #f6fffe 100%);
        z-index: 1; }
  .p-message__container {
    max-width: 81.7rem;
    margin-left: auto;
    margin-right: 0;
    margin-top: -38.2rem;
    position: relative;
    z-index: 0; }
    .p-message__container--subtitle {
      display: block;
      color: #FFF;
      font-size: 3rem;
      font-weight: 600;
      line-height: 150%;
      letter-spacing: 0;
      text-align: center;
      padding: 0rem 2rem;
      background: rgba(206, 143, 80, 0.52);
      width: 39.1rem;
      margin-right: 0;
      margin-left: auto;
      margin-bottom: -6rem; }
    .p-message__container--title {
      color: rgba(54, 199, 175, 0.68);
      font-size: 12rem;
      font-weight: 700;
      line-height: 150%;
      letter-spacing: 1.2rem;
      text-align: right;
      margin-left: auto;
      margin-right: 0; }
    .p-message__container--content {
      background: #F6FFFE;
      padding: 6.6rem .7rem 4.6rem 8.1rem;
      margin-top: -3.8rem;
      position: relative; }
      .p-message__container--content h4 {
        color: #17B99C;
        font-size: 3rem;
        font-weight: 600;
        line-height: 150%;
        letter-spacing: 0;
        margin-bottom: 3.8rem;
        padding-right: 4rem; }
      .p-message__container--content p {
        color: #535353;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 167%;
        letter-spacing: 0;
        margin-bottom: 5rem; }
        .p-message__container--content p .ct-color {
          color: #17B99C;
          font-weight: 700; }
      .p-message__container--content .p-message-btn {
        display: flex;
        gap: 3rem;
        justify-content: flex-start;
        flex-wrap: wrap; }
        @media (min-width: 960.5px) {
          .p-message__container--content .p-message-btn {
            width: calc(100% + 5rem); } }

.p-doctor {
  background: #F6FFFE;
  padding: 2.5rem 0 5.5rem 0;
  position: relative;
  z-index: 0; }
  .p-doctor::before {
    content: "";
    position: absolute;
    width: 67.1rem;
    height: 22.5rem;
    background-color: #36C7B0;
    opacity: 0.15;
    bottom: 14rem;
    left: 0;
    z-index: -1; }
  .p-doctor__container {
    display: flex;
    justify-content: center;
    gap: 6.3rem; }
    .p-doctor__container .p-interview-title.tn-02 {
      text-align: left;
      margin-bottom: 3rem; }
      .p-doctor__container .p-interview-title.tn-02 .p-interview-title-en {
        color: #36C7B0;
        opacity: 0.3; }
      .p-doctor__container .p-interview-title.tn-02 .p-interview-title-ja {
        color: #17B99C; }
    .p-doctor__container--item:first-child {
      width: calc(100% - 56.4rem - 6.5rem);
      position: relative;
      z-index: 0;
      padding-left: 27rem; }
      .p-doctor__container--item:first-child .item-content {
        color: #535353;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 167%;
        letter-spacing: 0;
        margin-bottom: 5rem; }
      .p-doctor__container--item:first-child img {
        width: 100%; }
      .p-doctor__container--item:first-child .img01 {
        position: absolute;
        top: 16.5rem;
        left: -5.7rem;
        z-index: -1;
        width: 25.7rem; }
      .p-doctor__container--item:first-child .img02 {
        margin-left: -7rem;
        width: 37.1rem; }
      .p-doctor__container--item:first-child .p-doctor-btn {
        gap: 3rem;
        margin-bottom: 3rem; }
    .p-doctor__container--item:last-child {
      width: 56.4rem;
      margin-top: 12.5rem; }
      .p-doctor__container--item:last-child .img03 {
        position: relative;
        z-index: 0; }
        .p-doctor__container--item:last-child .img03::before {
          content: "";
          position: absolute;
          width: 17.4rem;
          height: 14.1rem;
          background-color: #36C7B0;
          opacity: 0.15;
          top: -4.7rem;
          right: 0;
          z-index: -1; }
        .p-doctor__container--item:last-child .img03 img {
          width: 100%; }
        .p-doctor__container--item:last-child .img03 .doctor-info {
          flex-direction: column;
          justify-content: flex-start;
          align-items: center;
          position: absolute;
          z-index: 1;
          bottom: 0rem;
          right: 0rem;
          background: rgba(23, 185, 155, 0.74);
          border-top: 1px solid #FFF;
          border-left: 1px solid #FFF;
          padding: 2.8rem 3.5rem 2.5rem 4rem; }
          .p-doctor__container--item:last-child .img03 .doctor-info .position {
            border-bottom: 1px solid #FFF;
            width: 100%;
            padding: 1rem 0;
            margin-bottom: 1rem; }
            .p-doctor__container--item:last-child .img03 .doctor-info .position p {
              color: #fff;
              font-size: var(--size-p);
              font-weight: 400;
              line-height: 111%;
              letter-spacing: 0; }
          .p-doctor__container--item:last-child .img03 .doctor-info .name {
            display: flex;
            gap: 2rem;
            justify-content: flex-start;
            align-items: center;
            width: 100%; }
            .p-doctor__container--item:last-child .img03 .doctor-info .name .ja-name {
              color: #fff;
              font-size: 3rem;
              font-weight: 600;
              line-height: 150%;
              letter-spacing: 0;
              display: block; }
            .p-doctor__container--item:last-child .img03 .doctor-info .name .en-name {
              color: #fff;
              font-size: var(--size-p);
              font-weight: 400;
              line-height: 111%;
              letter-spacing: 0.522rem;
              display: block; }

.ud_flow {
  padding-bottom: 1rem; }

.ud_flow .flow_box {
  position: relative;
  z-index: 1;
  padding: 5rem;
  margin-bottom: 5rem; }
  @media screen and (max-width: 960px) {
    .ud_flow .flow_box {
      padding: 2rem; } }

.ud_flow .flow_box::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  inset: 1rem;
  background-color: white;
  border: 1px solid #17b99c; }

.ud_flow .flow_box::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -2;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  min-height: 10rem;
  background-color: #17b99c; }

.ud_flow .flow_box .step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  width: 6em;
  height: 6em;
  font-size: 1.3rem;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  background-color: #17b99c;
  color: #FFF; }

.ud_flow .flow_box .step::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  inset: .5rem;
  border: 1px solid white;
  opacity: 0.8; }

.ud_flow .flow_box .step .num {
  margin-top: 0;
  font-size: 2.7em;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0; }

.ud_flow .flow_box h3.flow_ttl::after {
  display: none; }

.ud_flow .flow_box h4.flow_ttl {
  padding: 0;
  border-bottom: none;
  background-color: transparent; }

.ud_flow .flow_box h4.flow_ttl::before {
  display: none; }

.ud_flow .flow_box h5.flow_ttl {
  padding: 0;
  border-bottom: none; }

.ud_flow .flow_box .flow_ttl {
  text-align: center;
  color: #17b99c;
  line-height: 1.4; }

.ud_flow .flow_box .ct_area {
  display: flex;
  justify-content: center;
  align-items: center; }
  .ud_flow .flow_box .ct_area img {
    width: 100%;
    object-fit: cover;
    height: 35rem; }
    @media screen and (max-width: 960px) {
      .ud_flow .flow_box .ct_area img {
        height: auto; } }

.ud_flow .flow_box .ct_area::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-3em + 1px);
  display: block;
  margin: 0 auto;
  width: 7em;
  height: 3em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  font-size: 1.6rem;
  background-color: #17b99c; }

.ud_flow .flow_box:last-child {
  margin-bottom: 0; }

.ud_flow .flow_box:last-child .ct_area::after {
  display: none; }

@media (max-width: 1440px) and (min-width: 960px) {
  .p-doctor__container {
    gap: 3rem; }
    .p-doctor__container--item:first-child {
      width: calc(100% - 53rem); }
      .p-doctor__container--item:first-child .img01 {
        width: 24rem;
        margin-left: 6rem; }
    .p-doctor__container--item:last-child {
      width: 50rem; } }
@media (min-width: 960.5px) {
  .home .site-header {
    height: auto;
    transition: all 0.35s; } }
@media (max-width: 960px) {
  .p-message__container--content {
    padding: 1.5rem 0; }
    .p-message__container--content h4 {
      padding-right: 0; }

  .p-message__container--content .p-message-btn {
    justify-content: center; }

  .p-message::before {
    display: none;
    width: 10rem;
    height: 10rem; }

  .p-doctor {
    padding-bottom: 3.5rem; }
    .p-doctor::before {
      display: none; }

  .p-doctor__container--item:last-child .img03::before {
    display: none; }

  .p-doctor__container {
    flex-wrap: wrap;
    gap: 0; }
    .p-doctor__container--item:first-child {
      width: 100%;
      display: contents;
      flex-wrap: wrap; }
      .p-doctor__container--item:first-child .img01 {
        position: relative;
        top: 0;
        left: 0;
        order: 1;
        width: 50%; }
      .p-doctor__container--item:first-child .img02 {
        width: 50%;
        margin-left: 0; }
      .p-doctor__container--item:first-child .p-doctor-btn {
        gap: 1rem;
        justify-content: center;
        order: 5; }
      .p-doctor__container--item:first-child .item-content {
        order: 3;
        margin-bottom: 3rem; }
    .p-doctor__container--item:last-child {
      width: 100%;
      margin-top: 0;
      order: 2;
      margin-bottom: 4rem; }
      .p-doctor__container--item:last-child .img03 .doctor-info {
        padding: 1.5rem; }
        .p-doctor__container--item:last-child .img03 .doctor-info .name .en-name {
          letter-spacing: .2rem; }
        .p-doctor__container--item:last-child .img03 .doctor-info .name .ja-name {
          font-size: 2.4rem; }
    .p-doctor__container .p-interview-title.tn-02 {
      text-align: center;
      width: 100%;
      order: 1; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-message__container {
    margin-top: -26.2rem; } }
@media (max-width: 960px) {
  .p-doctor__container--item--img {
    order: 4;
    gap: 1rem;
    margin-bottom: 2rem;
    display: flex;
    width: 100%; }

  .p-doctor__container--item:first-child img {
    height: 24rem; } }
@media (max-width: 767px) {
  .p-message {
    padding: 1.5rem 0 3rem 0; }

  .p-doctor__container--item:first-child img {
    height: 14rem; }

  .p-message__imgs--item {
    width: calc(100% / 2); }
    .p-message__imgs--item.vz-02 {
      display: none; }

  .p-message__imgs--item:first-child {
    width: 100%;
    height: 40rem; }
    .p-message__imgs--item:first-child img {
      object-fit: cover;
      height: 100%; }

  .p-message__container {
    margin-top: -2.2rem; }

  .p-message__container--title {
    font-size: 6rem;
    margin-bottom: 4rem;
    margin-top: 3rem;
    text-align: center; }

  .p-message__container--content {
    padding: 0; }

  .p-message__container--subtitle {
    width: 100%;
    font-size: 2.5rem;
    margin-bottom: -5rem; }

  .p-message__container--content h4 {
    font-size: 2.1rem;
    margin-bottom: .5rem; }

  .p-message__container--content p {
    font-size: 1.5rem;
    line-height: 185%;
    margin-bottom: 2rem; }

  .p-message__container--content .p-message-btn {
    gap: 1.5rem;
    justify-content: center; }

  .p-doctor__container--item--img {
    display: none; } }
.p-interview {
  position: relative;
  padding: 8.5rem 0 13.5rem;
  background: #fff;
  overflow: hidden; }
  .p-interview-title {
    text-align: center;
    margin-bottom: 5.4rem; }
    .p-interview-title-en {
      color: #36C7B0;
      font-size: 12rem;
      font-weight: 400;
      line-height: 102%;
      letter-spacing: 1.2rem;
      opacity: 0.3; }
    .p-interview-title-ja {
      color: #17B99C;
      font-size: 3rem;
      font-weight: 600;
      line-height: 150%;
      letter-spacing: 0; }
  .p-interview__container {
    counter-reset: section; }
    .p-interview__container-01 {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 5.8rem;
      position: relative;
      z-index: 0; }
      .p-interview__container-01:last-child {
        margin-bottom: 0; }
      .p-interview__container-01::before {
        content: "";
        position: absolute;
        width: 38.1rem;
        height: 28.9rem;
        background-image: url(assets/img/icon_interview.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: -1; }
      .p-interview__container-01:nth-child(odd)::before {
        left: -38rem;
        top: 19rem; }
      .p-interview__container-01:nth-child(even)::before {
        right: -38rem;
        top: 15rem;
        transform: scaleX(-1); }
      .p-interview__container-01 .item-01 {
        position: relative;
        z-index: 2;
        padding: 0;
        display: flex;
        flex-direction: column;
        width: 56rem;
        padding-right: 5.5rem;
        padding-top: 2rem; }
        .p-interview__container-01 .item-01 .item_text {
          color: #17B99C;
          font-size: 3rem;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0;
          margin-bottom: 7rem;
          padding-left: 14rem;
          position: relative;
          display: flex;
          align-items: center;
          min-height: 10rem;
          padding-top: 2rem; }
          .p-interview__container-01 .item-01 .item_text::after {
            content: "";
            position: absolute;
            width: calc(100% + 5.5rem);
            height: 1px;
            background-color: rgba(23, 185, 156, 0.3);
            bottom: -4rem;
            left: 0; }
          .p-interview__container-01 .item-01 .item_text::before {
            counter-increment: section;
            content: counter(section,decimal-leading-zero);
            position: absolute;
            color: #F1E2D4;
            font-size: 12rem;
            font-weight: 400;
            line-height: 150%;
            letter-spacing: 0;
            top: -3.8rem;
            left: 0rem;
            opacity: 1; }
        .p-interview__container-01 .item-01 .item_desc {
          color: #535353;
          font-size: 1.8rem;
          font-weight: 400;
          line-height: 165%;
          letter-spacing: 0;
          margin-bottom: 6rem;
          max-width: 48.2rem; }
        .p-interview__container-01 .item-01 .items-btn {
          display: flex;
          flex-wrap: wrap;
          gap: 3rem; }
      .p-interview__container-01 .item-02 {
        width: calc(100% - 56rem + 35.2rem);
        margin-right: -35.2rem;
        position: relative;
        z-index: 0; }
        .p-interview__container-01 .item-02::before {
          content: "";
          position: absolute;
          width: calc(100% + 3rem);
          height: calc(100% - 1rem);
          right: 0;
          top: 4rem;
          z-index: 0;
          transition: transform 0.4s ease;
          background-color: #36C7B0;
          opacity: 0.15;
          z-index: -1; }
        .p-interview__container-01 .item-02 img {
          width: 100%; }

.p-top-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: 23.7rem;
  height: 6rem;
  color: #535353;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  border: 1px solid #17B99C;
  background: #fff;
  text-align: center;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.1); }
  .p-top-btn a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    border-style: solid;
    border-width: 0 0 1.7rem 1.7rem;
    border-color: transparent transparent #17B99C transparent; }
  .p-top-btn a:hover {
    border: 1px solid #CE8F50;
    background: #CE8F50;
    color: #fff; }
    .p-top-btn a:hover::after {
      border-color: transparent transparent #E4AD75 transparent; }

@media (min-width: 960.5px) {
  .p-interview__container-01:nth-child(2n) {
    flex-direction: row-reverse; }
    .p-interview__container-01:nth-child(2n) .item-01 {
      width: 58.5rem;
      padding-left: 7.9rem;
      padding-right: 0; }
      .p-interview__container-01:nth-child(2n) .item-01 .item_text::after {
        left: -7.9rem;
        width: calc(100% + 7.9rem - 2.4rem); }
    .p-interview__container-01:nth-child(2n) .item-02 {
      width: calc(100% - 58.5rem + 36rem);
      margin-left: -36rem; }
      .p-interview__container-01:nth-child(2n) .item-02::before {
        bottom: auto;
        left: 0; }
  .p-interview__container-01.vz-02 .item-01 .item_desc {
    margin-bottom: 2.7rem; }
  .p-interview__container-01.vz-02 .item-01 .item_text {
    padding-left: 15rem; }
  .p-interview__container-01.vz-03 .item_desc {
    margin-bottom: 2.7rem; }
  .p-interview__container-01.vz-03 .item_text {
    padding-left: 15rem; }
  .p-interview__container-01.vz-04 .item-01 .item_desc {
    max-width: 100%;
    margin-bottom: 2.7rem; }
  .p-interview__container-01.vz-04 .item-01 .item_text {
    white-space: nowrap; }
  .p-interview__container-01.vz-05 .item-01 .item_desc {
    max-width: 50.4rem; }
  .p-interview__container-01.vz-05 .item-01 .item_text {
    white-space: nowrap; }
  .p-interview__container-01.vz-05 .item_desc {
    margin-bottom: 2.7rem; }
  .p-interview__container-01.vz-05 .item_text {
    padding-left: 15rem;
    padding-top: 2rem; } }
.p-pickup {
  position: relative;
  padding-bottom: 16rem; }
  .p-pickup__visual {
    max-width: 160rem;
    margin-left: auto;
    margin-right: auto;
    position: relative; }
    .p-pickup__visual__cards {
      margin-top: -13.5rem;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      align-items: flex-end;
      overflow: hidden;
      overflow: visible !important; }
  .p-pickup-bg {
    background-image: url(assets/img/bg_pickup.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 56rem;
    position: relative;
    z-index: 0; }

.p-pickup .p-interview-title-en {
  color: #FFFFFF;
  letter-spacing: 1.2rem;
  opacity: 0.3; }

.p-pickup .p-interview-title-ja {
  color: #FFFFFF; }

.p-pickup .p-interview-title {
  padding-top: 19.5rem; }
  .p-pickup .p-interview-title::before {
    content: "";
    position: absolute;
    width: 12.4rem;
    height: 12.4rem;
    background-image: url(assets/img/icon_pickup.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%); }

.p-card__body {
  padding: 7.2rem 1rem 0;
  max-width: 53rem;
  position: relative; }
  .p-card__body .p-card__text01 {
    color: #535353;
    font-size: 3rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0rem;
    margin-bottom: 1.7rem;
    text-align: center;
    min-height: 7.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0.3rem 0.3rem #fff; }
  .p-card__body .p-card__text02 {
    color: #535353;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 166%;
    letter-spacing: 0rem;
    margin: 0 auto;
    padding: 0 2.5rem;
    margin-bottom: 4rem; }

.p-card {
  position: relative; }
  .p-card__icon img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.8rem;
    width: 19.6rem; }

.p-card__image {
  position: absolute;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  box-shadow: 0 -1.4rem 2rem rgba(0, 0, 0, 0.09); }
  .p-card__image::before {
    content: ""; }
  .p-card__image::after {
    content: 'PICKUP';
    position: absolute;
    z-index: 3;
    writing-mode: sideways-lr;
    top: 1.5rem;
    left: 1rem;
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 2.04rem;
    opacity: 0.46; }
  .p-card__image img {
    width: 100%;
    height: auto;
    display: block; }

.p-pickup__visual__cards .items-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: 53rem;
  justify-content: center; }
.p-pickup__btn--list {
  gap: 2rem 3rem;
  display: none; }

@media (min-width: 960.5px) {
  .p-card__body.vp-01 {
    padding-top: 4.5rem; }

  .p-pickup__visual__cards .p-top-btn.vz-02 {
    position: absolute;
    bottom: -8rem; }
  .p-pickup__visual__cards .p-top-btn.vz-03 a {
    width: max-content !important;
    padding-left: 1rem;
    padding-right: 1rem; } }
@media (max-width: 1440px) and (min-width: 960.5px) {
  .p-pickup__visual__cards .items-btn .p-top-btn a {
    width: 21.5rem; }

  .p-pickup__visual__cards {
    padding: 1.5rem; }
    .p-pickup__visual__cards .items-btn {
      gap: 2rem; }

  .p-card__body .p-card__text02 {
    padding: 0 0.7rem; }

  .p-pickup__btn--list {
    gap: 1rem; }
    .p-pickup__btn--list .p-top-btn a {
      width: 22.5rem; } }
@media (max-width: 960px) {
  .p-interview {
    padding: 3rem 0 2rem; }

  .p-interview-title {
    margin-bottom: 3rem; }

  .p-interview-title-en {
    font-size: 6rem;
    text-align: center;
    letter-spacing: .2rem; }

  .p-interview-title-ja {
    font-size: 2rem; }

  .p-interview__container-01 {
    flex-direction: column-reverse; }

  .p-interview__container-01::before {
    display: none; }

  .p-interview__container-01 .item-02 {
    width: calc(100% + 3rem);
    margin-right: 0;
    left: -1.5rem; }

  .p-interview__container-01 .item-01 {
    width: 100%;
    padding-right: 0; }

  .p-interview__container-01 .item-02::before {
    display: none; }

  .p-interview__container-01 .item-01 .item_text::before {
    font-size: 7rem; }

  .p-interview__container-01 .item-01 .item_text {
    font-size: 2.4rem;
    padding-top: 6rem;
    padding-left: 0;
    margin-bottom: 1rem; }

  .p-interview__container-01 .item-01 .item_text::after {
    top: 1.7rem;
    left: 8.8rem;
    width: 28%; }

  .p-interview__container-01 .item-01 .item_desc {
    padding-right: 0;
    margin-bottom: 3rem;
    font-size: 1.5rem;
    max-width: 100%; }

  .p-top-btn a {
    font-size: 1.5rem;
    height: 5rem;
    width: 20.7rem; }

  .p-pickup {
    padding-bottom: 6rem; }

  .p-pickup-bg {
    height: auto;
    padding-bottom: 3rem; }

  .p-pickup .p-interview-title::before {
    width: 7rem;
    height: 7rem;
    top: 4rem; }

  .p-pickup .p-interview-title {
    padding-top: 10rem; }

  .p-pickup__visual__cards {
    flex-direction: column;
    padding: 1.5rem;
    align-items: center;
    margin-top: -4.5rem;
    gap: 5rem 2rem; }

  .p-pickup__visual__cards .items-btn {
    gap: 1rem; }

  .p-card__body {
    padding: 3rem 1rem 0; }
    .p-card__body .p-card__text02 {
      padding: 0 0;
      font-size: 1.5rem;
      line-height: 185%;
      margin-bottom: 2rem; }
      .p-card__body .p-card__text02.vp-02 {
        padding: 0 0; }
  .p-card__icon img {
    width: 12rem; }
  .p-card__image img {
    object-fit: cover;
    object-position: center bottom;
    height: 36rem; }

  .p-pickup__btn--list {
    gap: 1rem; }

  .p-interview__container-01 .item-01 .items-btn {
    justify-content: center;
    gap: 1rem; } }
@media (max-width: 960px) and (min-width: 768px) {
  .p-interview__container-01 .item-01 .items-btn {
    flex-direction: row;
    justify-content: center; }

  .p-card--orange .p-card__image::before,
  .p-card--lightorange .p-card__image::before,
  .p-card--blue .p-card__image::before {
    width: 15rem;
    height: 15rem;
    top: 3rem; } }
@media (max-width: 767px) {
  .p-card__image::after {
    font-size: 2rem;
    letter-spacing: 1rem; }

  .p-top-btn a {
    width: 16rem;
    font-size: 1.4rem; }
    .p-top-btn a.vt-01 {
      width: 17rem; } }
.c-heading--container {
  padding: 2.5rem 2.5rem 2.5rem 1.5rem;
  background: #17b99c;
  border-radius: .5rem;
  margin-bottom: 5rem;
  position: relative;
  z-index: 0; }
  .c-heading--container::before {
    content: "";
    position: absolute;
    width: 4.5rem;
    height: 2rem;
    background: #17b99c;
    top: 99%;
    left: 6rem;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 50% 100%); }
    @media screen and (max-width: 767px) {
      .c-heading--container::before {
        left: 50%;
        transform: translateX(-50%); } }
  .c-heading--container.tn-02::before {
    left: auto;
    right: 6rem; }
    @media screen and (max-width: 767px) {
      .c-heading--container.tn-02::before {
        left: 50%;
        right: auto;
        transform: translateX(-50%); } }
  @media screen and (max-width: 767px) {
    .c-heading--container {
      padding: 1.5rem;
      margin-bottom: 4rem; } }
.c-heading--tn {
  color: #FFF;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08rem;
  position: relative;
  z-index: 0;
  padding-left: 6rem; }
  @media screen and (max-width: 960px) {
    .c-heading--tn {
      font-size: 1.8rem;
      text-align: justify; } }
  .c-heading--tn::before {
    position: absolute;
    content: "Q";
    color: #17b99c;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.08rem;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background: #ffffff;
    clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%); }

.c-beffore--a {
  position: relative;
  z-index: 0;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5)); }
  .c-beffore--a::before {
    position: absolute;
    content: "A";
    color: #ff0000;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0.08rem;
    z-index: 0;
    top: -2rem;
    right: -2rem;
    width: 5rem;
    height: 5rem;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: .4rem;
    clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%); }
    @media screen and (max-width: 960px) {
      .c-beffore--a::before {
        top: -1rem;
        right: -0.5rem; } }
  .c-beffore--a.tn-02::before {
    left: -2rem;
    right: auto; }
    @media screen and (max-width: 960px) {
      .c-beffore--a.tn-02::before {
        left: -0.5rem; } }

.c-beffore--bg {
  padding: 3.5rem;
  border-radius: 1rem;
  background: rgba(23, 185, 156, 0.11); }
  @media screen and (max-width: 960px) {
    .c-beffore--bg {
      padding: 1.5rem; } }
  @media screen and (max-width: 767px) {
    .c-beffore--bg .c-media {
      gap: 1.5rem; } }
  .c-beffore--bg .c-media__image {
    margin-top: 1rem; }
    @media screen and (max-width: 767px) {
      .c-beffore--bg .c-media__image {
        padding-top: 0; } }

.p-interview-title.vz-02 .p-interview-title-en {
  color: #fff;
  opacity: 0.3; }
.p-interview-title.vz-02 .p-interview-title-ja {
  color: #fff; }

.c-btn__gp--01 {
  gap: 3rem; }

.p-mv {
  position: relative; }
  .p-mv__cont {
    position: absolute;
    left: 5rem;
    bottom: 5rem;
    padding: 3.5rem 3rem;
    width: 89.7rem;
    background: url(assets/img/mv-bg01.png) no-repeat center;
    background-size: cover; }
    .p-mv__cont h2 {
      color: #fff;
      font-size: 6rem;
      font-weight: 700;
      line-height: 150%;
      letter-spacing: 0;
      margin-bottom: 1.2rem;
      text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.55); }
    .p-mv__cont p {
      color: #fff;
      font-size: 3rem;
      font-weight: 700;
      line-height: 150%;
      letter-spacing: 0;
      text-shadow: 0 0.4rem 0.4rem rgba(0, 0, 0, 0.55); }
  .p-mv__slide .slick-slide img {
    width: 100%; }

.p-feature {
  padding: 10rem 0 8.5rem;
  background: url(assets/img/feature-bg01.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 0;
  transition: all 0.35s; }
  .p-feature::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #535353 url(assets/img/feature-bg02.png) no-repeat top 6rem right;
    background-size: 78.1rem;
    opacity: 0.4; }
  .p-feature.vz-02 {
    background-image: url(assets/img/feature-bg03.jpg); }
  .p-feature.vz-03 {
    background-image: url(assets/img/feature-bg04.jpg); }
  .p-feature.vz-04 {
    background-image: url(assets/img/feature-bg05.jpg); }
  .p-feature.vz-05 {
    background-image: url(assets/img/feature-bg06.jpg); }
  .p-feature.vz-06 {
    background-image: url(assets/img/fea06.jpg); }
  .p-feature__gp {
    padding-right: 3.5rem; }
    .p-feature__gp--item:first-child {
      padding-top: 17.2rem; }
    .p-feature__gp .p-interview-title {
      text-align: left; }
  .p-feature__inner {
    position: relative;
    width: 67.6rem;
    height: 91.1rem; }
    .p-feature__inner--main {
      position: absolute;
      width: 50rem;
      height: 50rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      border-radius: 100%;
      top: 21rem;
      left: -4.6rem; }
  .p-feature__box {
    text-align: center;
    padding: 0 3rem 0 5rem;
    display: none; }
    .p-feature__box--title {
      margin-bottom: 1.4rem; }
      .p-feature__box--title * {
        color: #17b99c;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0; }
      .p-feature__box--title p {
        position: relative;
        display: inline-block;
        padding-right: 3.6rem;
        margin-bottom: 1rem; }
        .p-feature__box--title p::before {
          content: attr(data-txt);
          font-size: 3rem;
          color: #ce8f50;
          position: absolute;
          top: 0;
          right: 0; }
      .p-feature__box--title .title {
        font-weight: 600; }
    .p-feature__box--desc p {
      color: #535353;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 156%;
      letter-spacing: -0.08rem;
      text-align: left; }
    .p-feature__box.active {
      display: block; }
    @media (min-width: 960.5px) {
      .p-feature__box#feat_06 {
        padding-left: 6rem; } }
  .p-feature__list {
    counter-reset: section; }
    .p-feature__list li a {
      position: absolute;
      width: 19.5rem;
      height: 19.5rem;
      border-radius: 100%;
      background: rgba(83, 83, 83, 0.4);
      border: #fff solid 1px;
      padding: 0 1.2rem;
      display: flex;
      flex-flow: column;
      align-items: center;
      justify-content: center;
      transition: all 0.35s; }
      .p-feature__list li a span {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0;
        display: block;
        text-align: center; }
        .p-feature__list li a span.title {
          position: relative;
          padding-bottom: 3rem;
          margin-bottom: 0.4rem; }
          .p-feature__list li a span.title::before {
            counter-increment: section;
            content: attr(data-txt);
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            font-size: 3rem; }
        .p-feature__list li a span.txt {
          font-weight: 600; }
      .p-feature__list li a:hover {
        background: rgba(83, 83, 83, 0.7); }
      .p-feature__list li a.vz-01 {
        top: 1.6rem;
        left: 0; }
      .p-feature__list li a.vz-02 {
        top: 0;
        left: 23.2rem; }
      .p-feature__list li a.vz-03 {
        top: 13.5rem;
        right: 6.2rem; }
      .p-feature__list li a.vz-04 {
        top: 36rem;
        right: 0; }
      .p-feature__list li a.vz-05 {
        bottom: 12.5rem;
        right: 9.5rem; }
      .p-feature__list li a.vz-06 {
        bottom: 0;
        left: 17.9rem; }
    .p-feature__list li.active a {
      background: #36c7b0; }
  .p-feature .p-interview-title.vz-02 .p-interview-title-en {
    opacity: 1;
    text-shadow: 1px 1px 0px black; }

.p-clinic__head {
  padding: 10.6rem 0 7.7rem;
  background: url(assets/img/clinic-bg01.jpg) no-repeat center;
  background-size: cover; }
  .p-clinic__head .p-interview-title {
    margin-bottom: 0; }
.p-clinic__main {
  padding: 7.5rem 0 5.5rem;
  background: #f6fffe; }
.p-clinic__maps {
  height: 40rem;
  background: #ccc; }
  .p-clinic__maps iframe {
    width: 100%;
    height: 100%;
    border: 0; }
.p-clinic .p-footer__gp {
  margin-bottom: 4.5rem; }

.p-top-column {
  padding: 5.4rem 0 6rem;
  background: url(assets/img/column-bg01.jpg) no-repeat center;
  background-size: cover; }
  .p-top-column .p-interview-title {
    margin-bottom: 3rem; }

.c-cate__list-01 {
  margin-bottom: 3rem;
  gap: 2rem; }
  .c-cate__list-01 li a {
    border: #fff solid 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    min-width: 18rem;
    color: #fff;
    font-size: var(--size-p);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    transition: all 0.35s; }
    .c-cate__list-01 li a:hover, .c-cate__list-01 li a.active {
      background: #ce8f50;
      border-color: #ce8f50; }

.c-top__column--list {
  gap: 1.7rem;
  margin-bottom: 4rem; }
.c-top__column--item {
  width: calc((100% - 5.101rem) / 4); }
  .c-top__column--item img {
    width: 100%; }
.c-top__column--date {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  background: #17b99c;
  display: inline-block;
  border-radius: 2.8rem;
  padding: 0.35rem 1.45rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem; }
.c-top__column--title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0;
  margin-bottom: 1rem; }
.c-top__column--excerpt {
  color: #fff;
  font-size: var(--size-p);
  font-weight: 400;
  line-height: 167%;
  letter-spacing: 0; }
  .c-top__column--excerpt .c-item__more {
    color: #ffddbd;
    border-bottom: #ffddbd solid 1px;
    line-height: 105%;
    display: inline-block; }

.p-column__page .c-cate__list-01 li a:not(:hover) {
  background: #17b99c; }
.p-column__page .c-cate__list-01 li a.active {
  background: #ce8f50; }

@media (min-width: 960.5px) {
  .p-feature__list li a.vz-04 {
    padding: 0 1.4rem 2.7rem; }
  .p-feature__box#feat_03 {
    padding: 0 4.2rem; }
  .p-feature__box#feat_04 {
    padding: 0 7rem; } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-mv__cont {
    left: 2rem;
    bottom: 2rem;
    width: 65rem; }
    .p-mv__cont h2 {
      font-size: 5rem; }
    .p-mv__cont p {
      font-size: 2.3rem; } }
@media (max-width: 960px) {
  .p-mv__cont {
    bottom: 1.5rem;
    left: 1.5rem;
    padding: 1.5rem;
    width: 35rem; }
    .p-mv__cont h2 {
      font-size: 3rem; }
    .p-mv__cont p {
      font-size: 1.6rem;
      font-weight: 500;
      line-height: 170%; }

  .p-feature::before {
    background-size: 30rem; }
  .p-feature__box {
    padding: 0 3rem; }
    .p-feature__box--desc p {
      text-align: center; }
  .p-feature__gp {
    padding-right: 0;
    justify-content: center; }
    .p-feature__gp--item:first-child {
      padding-top: 0;
      width: 100%; }
    .p-feature__gp .p-interview-title {
      text-align: center; }
  .p-feature__inner--main {
    width: 48rem;
    height: 48rem;
    left: -1.6rem; }

  .c-cate__list-01 {
    gap: 1rem; }
    .c-cate__list-01 li a {
      min-width: 16.5rem; }

  .c-top__column--list {
    gap: 3rem 1rem; }
  .c-top__column--item {
    width: calc((100% - 1.001rem) / 2); }
  .c-top__column--title {
    font-size: 1.8rem; }

  .c-btn__gp--01 {
    gap: 1rem; }
    .c-btn__gp--01 .p-top-btn a {
      width: 16.5rem; }

  .p-clinic__head {
    padding: 6rem 0; }
  .p-clinic__maps {
    height: 28rem; } }
@media (max-width: 767px) {
  .p-mv__slide .slick-slide img {
    height: 50rem;
    object-fit: cover; }
  .p-mv__cont {
    width: calc(100% - 3rem);
    border-radius: 1rem; }

  .p-feature__inner {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto; }
    .p-feature__inner--head {
      width: calc(100% + 3rem);
      margin-left: -1.5rem; }
    .p-feature__inner--main {
      width: 100%;
      height: auto;
      border-radius: 1rem;
      top: 0;
      left: 0;
      align-items: flex-start;
      position: relative; }
  .p-feature__gp {
    padding-right: 0; }
    .p-feature__gp--item {
      width: 100%; }
  .p-feature__box {
    padding: 2rem 1.5rem;
    display: block; }
    .p-feature__box--title {
      margin-bottom: 0.8rem; }
      .p-feature__box--title * {
        font-size: 1.8rem; }
      .p-feature__box--title p {
        padding-right: 2rem;
        margin-bottom: 0.6rem; }
        .p-feature__box--title p::before {
          font-size: 1.6rem; }
    .p-feature__box--desc p {
      font-size: 1.5rem;
      text-align: left;
      letter-spacing: 0;
      line-height: 185%; }
  .p-feature__list {
    margin-bottom: 1rem; }
    .p-feature__list li a {
      width: auto;
      height: auto;
      min-height: 10rem;
      border-radius: 1rem;
      padding: 0.5rem;
      position: relative; }
      .p-feature__list li a.active {
        background: #36c7b0; }
      .p-feature__list li a span {
        font-size: 1.5rem; }
        .p-feature__list li a span.title {
          padding-bottom: 0;
          padding-right: 2rem; }
          .p-feature__list li a span.title::before {
            font-size: 1.5rem;
            left: auto;
            right: 0;
            bottom: 50%;
            transform: translateY(50%); }
      .p-feature__list li a.vz-01 {
        top: auto;
        padding-bottom: 0.5rem; }
      .p-feature__list li a.vz-02 {
        left: auto; }
        .p-feature__list li a.vz-02 br {
          display: none; }
      .p-feature__list li a.vz-03 {
        top: auto;
        right: 0; }
      .p-feature__list li a.vz-04 {
        top: auto; }
      .p-feature__list li a.vz-05 {
        bottom: auto;
        right: 0; }
      .p-feature__list li a.vz-06 {
        left: auto;
        right: 0; }
    .p-feature__list .slick-slide {
      margin: 0 0.5rem; } }

/*# sourceMappingURL=style.css.map */
