@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&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; }

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, 15px);
  --size-h1: max(3.6rem, 28px);
  --size-h2: max(3rem, 26px);
  --size-h3: max(2.8rem, 24px);
  --size-h4: max(2.6rem, 22px);
  --size-h5: max(2.4rem, 20px);
  --size-h6: max(2.2rem, 18px);
  --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.4rem, 21px);
      --size-h2: max(2.3rem, 20px);
      --size-h3: max(2.2rem, 19px);
      --size-h4: max(2.1rem, 18px);
      --size-h5: max(2rem, 17px);
      --size-h6: max(1.8rem, 16px);
      --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: "Noto Sans JP", "Hiragino Sans", "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; } }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

/* ==========================================================================
   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: #122A63; }

.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
   ========================================================================== */
body.is-menu-open .p-header {
  top: 0 !important; }

.home .p-header.vz-01 {
  top: 0 !important; }

.p-seo-h1 {
  background: #CBA54B;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem;
  margin: 0;
  letter-spacing: 0.1rem;
  line-height: 120%; }
  @media screen and (max-width: 767px) {
    .p-seo-h1 {
      font-size: 1.3rem;
      padding: 0.75rem 1rem;
      line-height: 140%;
      letter-spacing: 0; } }

.site-header {
  position: relative;
  z-index: 110;
  height: 15.4rem; }
  @media screen and (max-width: 960px) {
    .site-header {
      height: 6rem; } }

.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: #333333;
    text-decoration: none; }
    @media (hover: hover) {
      .site-title a:hover {
        opacity: 0.7; } }

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  background: #FFF;
  transition: all .35s;
  width: 100%;
  padding: 1rem 0; }
  .p-header__left {
    padding-left: 2rem; }
    .p-header__left img {
      width: 34.5rem;
      filter: drop-shadow(0.4rem 0.4rem 0.7rem white); }
  .p-header__right {
    padding-right: 2rem; }
  .p-header.vz-02 {
    opacity: 0;
    pointer-events: none; }

.p-mv {
  position: relative;
  z-index: 5;
  height: calc(100vh - 3.92rem); }
  .p-mv::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(20, 30, 3, 0.3); }
  @media screen and (max-width: 960px) {
    .p-mv {
      height: 50rem; } }
  .p-mv__menu {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%; }
    .p-mv__menu .p-header__menu {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 2rem;
      padding: 1.15rem 0rem; }
      @media screen and (max-width: 960px) {
        .p-mv__menu .p-header__menu {
          display: none; } }
      .p-mv__menu .p-header__menu > li a {
        gap: 1.2rem;
        padding: 1rem 4.7rem;
        min-width: 18.9rem; }
        .p-mv__menu .p-header__menu > li a .menu-image {
          width: 3.7rem; }
        .p-mv__menu .p-header__menu > li a .menu-image-title {
          font-size: 1.6rem; }
      .p-mv__menu .p-header__menu li .sub-menu {
        padding: 1.2rem 0 0; }
        .p-mv__menu .p-header__menu li .sub-menu::before {
          height: calc(100% - 1.2rem); }
  .p-mv__video {
    height: 100%;
    object-fit: cover;
    width: 100%; }
  .p-mv__cont {
    position: absolute;
    top: 21.3rem;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center; }
  .p-mv__cont--desc {
    max-width: 106.3rem;
    width: calc(100% - 3rem);
    margin-left: auto;
    margin-right: auto;
    text-align: center; }
    .p-mv__cont--desc h2 {
      position: relative;
      color: #081A4F;
      font-size: 5rem;
      font-weight: 700;
      line-height: 160%;
      letter-spacing: 0.15rem;
      text-shadow: 0 .4rem 0.4rem #FFF, 0 .4rem 0.4rem #FFF, 0 .4rem 0.4rem #FFF;
      margin-bottom: 2.3rem; }
      @media screen and (max-width: 960px) {
        .p-mv__cont--desc h2 {
          font-size: 2.2rem; } }
    .p-mv__cont--desc .mv-color {
      color: #E40300; }
    .p-mv__cont--desc p {
      color: #112260;
      font-size: 2.5rem;
      font-weight: 400;
      line-height: 168%;
      letter-spacing: 0.075rem;
      text-shadow: 0 .4rem 1rem #FFF, 0 .4rem 0.4rem #FFF, 0 .4rem 0.4rem #FFF, 0 .4rem 0.4rem #FFF; }
      @media screen and (max-width: 960px) {
        .p-mv__cont--desc p {
          font-size: 1.8rem; } }
  .p-mv__fix {
    position: fixed;
    z-index: 10;
    bottom: 16.8rem;
    right: 7.7rem;
    transition: all 0.35s; }
    .p-mv__fix.scroll {
      bottom: 3rem; }
    .p-mv__fix.active {
      display: none; }
    .p-mv__fix.current {
      opacity: 0;
      pointer-events: none; }
    .p-mv__fix .close {
      width: 4rem;
      height: 4rem;
      background: #ffffff;
      position: absolute;
      top: -2rem;
      right: -2rem;
      cursor: pointer;
      z-index: 1;
      border-radius: 100%;
      border: .1rem solid #E0D8CC; }
      .p-mv__fix .close::before {
        content: "×";
        position: absolute;
        color: #555555;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%; }
    .p-mv__fix .sp_ai--title {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: .7rem;
      position: absolute;
      top: -3rem;
      left: 0;
      z-index: 1;
      background: #101E5C;
      padding: .7rem 2rem 0 2rem;
      border-top-left-radius: .5rem;
      border-top-right-radius: .5rem; }
      .p-mv__fix .sp_ai--title span {
        color: #FFFFFF;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0rem; }
      .p-mv__fix .sp_ai--title .text-bf {
        position: relative;
        z-index: 0;
        padding-right: 1.2rem;
        display: inline-block; }
        .p-mv__fix .sp_ai--title .text-bf::before {
          content: "";
          position: absolute;
          width: 0.21rem;
          height: calc(100% - .8rem);
          background: #FFF;
          top: 50%;
          transform: translateY(-50%);
          right: 0;
          z-index: -1; }
    .p-mv__fix .sp_ai--content {
      background: #101E5C;
      border-radius: .5rem;
      display: inline-block;
      box-shadow: 0 .3rem 0 #DD1C19;
      border-top-left-radius: 0;
      position: relative;
      z-index: 0;
      padding: 2.3rem 5.2rem 2.3rem 3rem; }
      .p-mv__fix .sp_ai--content::before {
        content: "";
        position: absolute;
        width: calc(100% - 4.1rem);
        height: calc(100% - 2rem);
        background: #F6F6F6;
        border-radius: 1rem;
        top: 50%;
        transform: translateY(-50%);
        left: 1rem;
        z-index: -1; }
      .p-mv__fix .sp_ai--content::after {
        content: "";
        position: absolute;
        width: 0.77rem;
        height: 1.729rem;
        background: url(assets/img/arrow-mv01.svg) no-repeat center/contain;
        top: 50%;
        transform: translateY(-50%);
        right: 1.1rem;
        z-index: -1; }
      .p-mv__fix .sp_ai--content .content {
        position: relative;
        z-index: 0;
        padding-left: 4.5rem;
        display: inline-block; }
        .p-mv__fix .sp_ai--content .content::before {
          content: "";
          position: absolute;
          width: 3.2rem;
          height: 5rem;
          background: url(assets/img/logo-mv.png) no-repeat center/contain;
          top: 50%;
          transform: translateY(-50%);
          left: 0rem;
          z-index: -1; }
      .p-mv__fix .sp_ai--content .title-content {
        color: #101E5C;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 125%;
        letter-spacing: 0rem;
        display: block;
        transition: all 0.35s; }
      .p-mv__fix .sp_ai--content .text-content {
        color: #333333;
        font-size: var(--size-p);
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.1rem;
        display: block;
        transition: all 0.35s; }
    @media screen and (max-width: 960px) {
      .p-mv__fix {
        right: 3rem;
        bottom: 10.5rem; }
        .p-mv__fix .close {
          width: 3rem;
          height: 3rem;
          top: -1.5rem;
          right: -1.5rem; }
        .p-mv__fix .sp_ai--content {
          padding: 1rem 4rem 1.5rem 2rem; }
          .p-mv__fix .sp_ai--content .content {
            padding-left: 4rem; }
            .p-mv__fix .sp_ai--content .content::before {
              width: 32px;
              height: 5rem; }
          .p-mv__fix .sp_ai--content .text-content {
            letter-spacing: 0; } }

.home .p-seo-h1 {
  display: none; }

@media (min-width: 960.5px) {
  .p-header {
    width: 100%; }
    .p-header.vz-01 {
      position: absolute; }
      .p-header.vz-01.is-open {
        opacity: 0;
        pointer-events: none; }
      .p-header.vz-01 .p-header__menu li .sub-menu {
        padding: 1rem 0 0; }
      .p-header.vz-01 .p-header__menu li .sub-menu::before {
        height: calc(100% - 1rem); }
      .p-header.vz-01 .p-header__menu li.vz-02 .sub-menu {
        top: calc(100% - 1rem); }
    .p-header.vz-02.active, .p-header.vz-02.is-open {
      opacity: 1;
      pointer-events: all;
      top: 0 !important; }
    .p-header.vz-02.is-open .p-header__right-container {
      opacity: 0;
      pointer-events: none; }
    .p-header.vz-02 .p-header__right {
      gap: 2.5rem; }
    .p-header.vz-02.active .p-header__menu li .sub-menu::before {
      height: calc(100% - 1rem); }
    .p-header.vz-02.active .p-header__menu li:hover .sub-menu {
      padding: 1rem 0 0; }
    .p-header__local {
      flex-direction: column; }
      .p-header__local .address {
        color: #555555;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0rem;
        text-shadow: 0 0 .3rem #FFF;
        position: relative;
        z-index: 0;
        padding-left: 3rem;
        margin-bottom: 1rem; }
        .p-header__local .address::before {
          content: "";
          position: absolute;
          width: 2.2rem;
          height: 2.55rem;
          background: url(assets/img/icon-local.svg) no-repeat center/contain;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          z-index: -1; }
      .p-header__local .info {
        color: #FFF;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: 0rem;
        background: #E8702A;
        padding: .5rem 2rem;
        border-radius: .6rem; }
    .p-header__menu > li {
      position: relative; }
      .p-header__menu > li a {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: .5rem;
        padding: .2rem 2.5rem;
        border-right: 1px solid #E0D8CC;
        position: relative;
        z-index: 0; }
        .p-header__menu > li a::before {
          content: "";
          position: absolute;
          width: 0rem;
          height: 0.3rem;
          background: #F5A720;
          border-radius: 9.9rem;
          left: 50%;
          bottom: -.4rem;
          transform: translateX(-50%);
          z-index: -1;
          transition: all .35s; }
        .p-header__menu > li a:hover::before {
          width: 5rem; }
        .p-header__menu > li a .menu-image {
          display: block;
          width: 3rem;
          padding-right: 0; }
        .p-header__menu > li a .menu-image-title {
          display: block;
          padding-left: 0;
          color: #1A2C5B;
          font-size: 1.5rem;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0rem; }
      .p-header__menu > li:last-child a {
        border-right: none; }
      .p-header__menu > li.current_page_item > a::before, .p-header__menu > li.current-menu-parent > a::before {
        width: 5rem; }
    .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% - 2rem);
        left: 0;
        bottom: 0;
        z-index: -1;
        background: #cba54b; }
      .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;
            -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;
            top: 50%;
            transform: translateY(-50%); }
          .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% - 2rem);
        padding: 5rem 10rem !important; }
        .p-header__menu li.vz-02 .sub-menu::before {
          height: calc(100% - 2rem); }
        .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:hover .sub-menu {
      opacity: 1;
      pointer-events: auto;
      padding: 2rem 0 0; }
    .p-header__right-container {
      display: flex;
      justify-content: center;
      align-items: flex-end;
      flex-direction: column;
      gap: 1rem; }
    .p-header__right-info {
      gap: 3rem;
      margin-right: 2.5rem; }
    .p-header__tel-car {
      gap: 1.5rem; }
    .p-header__tel {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
      .p-header__tel .title {
        color: #555555;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 0rem;
        position: relative;
        z-index: 0;
        padding: 0 2rem; }
        .p-header__tel .title::before, .p-header__tel .title::after {
          content: "—";
          position: absolute;
          color: #555555;
          font-size: 1rem;
          font-weight: 400;
          line-height: 130%;
          letter-spacing: 0.1rem;
          top: 50%;
          transform: translateY(-50%);
          z-index: -1; }
        .p-header__tel .title::before {
          left: 0; }
        .p-header__tel .title::after {
          right: 0; }
      .p-header__tel .tel-munber a {
        color: #1A2C5B;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: -0.032rem;
        padding-left: 3.5rem;
        position: relative;
        z-index: 0; }
        .p-header__tel .tel-munber a::before {
          content: "";
          position: absolute;
          width: 2.279rem;
          height: 2.279rem;
          background: url(assets/img/icon-tel.svg) no-repeat center/contain;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          z-index: -1; }
    .p-header__car a {
      background: #DD1C19;
      padding: 1.2rem 4.5rem 1.2rem 6.9rem;
      border-radius: 1.6rem;
      position: relative;
      z-index: 0;
      transition: all .35s;
      border: 1px solid transparent; }
      .p-header__car a .text {
        color: #FFF;
        font-size: 2rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.18rem;
        transition: all .35s; }
      .p-header__car a::before {
        content: "";
        position: absolute;
        width: 2.6rem;
        height: 2.8rem;
        -webkit-mask: url(assets/img/icon-carlendar.svg) center/100% no-repeat;
        mask: url(assets/img/icon-carlendar.svg) center/100% no-repeat;
        background: #FFF;
        top: 50%;
        left: 2.7rem;
        transform: translateY(-50%);
        z-index: 1;
        transition: all .35s; }
      .p-header__car a::after {
        content: "";
        position: absolute;
        width: 0.77rem;
        height: 1.173rem;
        -webkit-mask: url(assets/img/icon-arrow01.svg) center/100% no-repeat;
        mask: url(assets/img/icon-arrow01.svg) center/100% no-repeat;
        background: #FFF;
        top: 50%;
        right: 2.5rem;
        transform: translateY(-50%);
        z-index: 1;
        transition: all .35s; }
      .p-header__car a:hover {
        background: #FFF;
        border: 1px solid #DD1C19; }
        .p-header__car a:hover .text {
          color: #DD1C19; }
        .p-header__car a:hover::before, .p-header__car a:hover::after {
          background: #DD1C19; }

  .home .site-header {
    height: auto; }
  .home .p-header__left {
    padding-left: 6rem; }
  .home .p-header__right {
    padding-right: 1rem; }
  .home .p-header.vz-01 {
    background: transparent; }
    .home .p-header.vz-01 .p-header__menu {
      display: none; }
  .home .p-header__local .address {
    font-size: 1.8rem;
    margin-bottom: 1.5rem; }
  .home .p-header__local .info {
    font-size: 1.6rem; }
  .home .p-header__tel-car {
    background: rgba(255, 255, 255, 0.8);
    gap: 3rem;
    border-radius: 1.9rem;
    box-shadow: 0 1rem 2rem rgba(94, 94, 94, 0.1);
    padding: .8rem 1.5rem .8rem 2.5rem; }
  .home .p-header__tel .tel-munber a {
    font-size: 3.2rem; }
  .home .p-header__tel .title {
    font-size: 1.6rem; }
  .home .p-header__car a {
    padding: 1.8rem 4.5rem 1.8rem 6.9rem; }
  .home .p-header__right-info {
    gap: 2.5rem;
    margin-right: 2.2rem; } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-header__left {
    padding-left: 1.5rem; }
    .p-header__left img {
      width: 30rem; }
  .p-header__right {
    gap: 1rem;
    padding-right: 1.5rem; }
  .p-header__menu > li a {
    padding: .2rem 2rem; }
  .p-header.vz-02 .p-header__right {
    gap: 1rem; }
  .p-header__local .address::before {
    width: 2.12rem;
    height: 2.5rem; }

  .home .p-header__left {
    padding-left: 2rem; }
  .home .p-header__right-info {
    margin-right: 0rem;
    gap: 1.5rem; }
  .home .p-mv .p-header__menu {
    padding: 1rem 0; }
    .home .p-mv .p-header__menu > li a {
      padding: 1rem 2.7rem;
      min-width: 15.9rem; }
  .home .p-mv__fix {
    bottom: 2.2rem;
    right: 8.7rem; }

  .p-mv {
    height: 91rem; } }
@media (max-width: 960px) {
  .p-header {
    padding: .5rem 0; }
    .p-header__right-container {
      display: none; }
    .p-header__left {
      padding-left: 1rem; }
      .p-header__left img {
        width: 25.5rem; }
    .p-header__right {
      padding-right: 1rem; }

  .p-mv__cont {
    top: auto;
    bottom: 3rem; }
  .p-mv__fix {
    bottom: 7.5rem; }
  .p-mv__cont--desc {
    max-width: 44.3rem;
    text-align: justify;
    margin-left: 1.5rem; }
    .p-mv__cont--desc h2 {
      margin-bottom: 1.5rem;
      font-size: 1.9rem;
      letter-spacing: -0.02rem; }
    .p-mv__cont--desc p {
      font-size: 1.6rem;
      line-height: 170%;
      letter-spacing: 0.05rem;
      text-shadow: 0 .2rem 0.2rem #FFF, 0 .2rem 0.2rem #FFF, 0 .2rem 0.2rem #FFF, 0 .2rem 0.2rem #FFF; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-mv__cont {
    top: 18rem; }
  .p-mv__cont--desc {
    text-align: justify;
    margin-left: 2rem; } }
.home img {
  border-radius: 0; }

.site-footer {
  background: #FAF3EB; }

.p-footer__menu {
  padding: .5rem 0 0 0; }
.p-footer__bottom {
  background: #264070;
  padding: 3.7rem; }
.p-footer__credit {
  padding-right: 2rem;
  margin-right: 2rem;
  position: relative; }
  .p-footer__credit::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 2.3rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff; }
  .p-footer__credit img {
    width: 12rem; }
.p-footer__copy {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 167%;
  letter-spacing: 0.12rem; }
.p-footer__gp--box {
  padding: 0.8rem 3.3rem;
  background: #FFF;
  position: relative;
  z-index: 0;
  margin-right: -47.823rem;
  transition: all .35s; }
  .p-footer__gp--box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.3rem;
    background: #2068B4;
    top: 2.6rem;
    left: 0;
    z-index: 0;
    transition: all .35s; }
.p-footer__schedule--table {
  width: 41.2rem; }
  .p-footer__schedule--table dl {
    display: grid;
    grid-template-columns: 13.5rem repeat(7, 1fr);
    border-bottom: #F2F2F2 solid 2px;
    align-items: center;
    padding: .2rem 0;
    transition: all .35s; }
    .p-footer__schedule--table dl:last-child {
      border: none; }
  .p-footer__schedule--table .row dd {
    text-align: center; }
  .p-footer__schedule--table .row .col--title__time {
    color: #333333;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.085rem;
    padding-left: .8rem; }
  .p-footer__schedule--table .row .surgery-text {
    grid-column: 2 / span 5;
    color: #132164;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0.085rem;
    text-align: left;
    padding-left: 1.3rem; }
  .p-footer__schedule--table .row .col-cir,
  .p-footer__schedule--table .row .col-tri {
    color: #2064AC;
    font-size: 1.6rem; }
  .p-footer__schedule--table .row .col-rec {
    color: #C6C6C6;
    font-size: 1.6rem; }
  .p-footer__schedule--table .row .col-cir-02 {
    color: #0A1A61;
    font-size: 1.6rem; }
  .p-footer__schedule--table .row--head {
    padding: 0rem 0rem .2rem 0rem;
    transition: all .35s; }
    .p-footer__schedule--table .row--head dt,
    .p-footer__schedule--table .row--head dd {
      color: #101E5C;
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 100%;
      letter-spacing: 0.192rem; }
    .p-footer__schedule--table .row--head .col--title {
      padding-left: 2.5rem; }
.p-footer__schedule--desc p {
  color: #3C3C3C;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 193%;
  letter-spacing: 0.065rem;
  padding-left: .8rem; }
.p-footer__banner-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  border-radius: 4rem;
  padding: 3.35rem 5.4rem;
  width: 100%;
  margin-bottom: 6.5rem; }
  .p-footer__banner-box .img-banner a {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
    padding: 0 0rem; }
    .p-footer__banner-box .img-banner a::before {
      content: "";
      position: absolute;
      width: 1px;
      height: 8.3rem;
      background: #F6ECE3;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1; }
    .p-footer__banner-box .img-banner a img {
      transform: translateY(0);
      transition: all .35s; }
    .p-footer__banner-box .img-banner a:hover img {
      transform: translateY(-1rem); }
  .p-footer__banner-box .img-banner:first-child a {
    padding-left: 0; }
  .p-footer__banner-box .img-banner:last-child a {
    padding-right: 0; }
    .p-footer__banner-box .img-banner:last-child a::before {
      display: none; }
.p-footer__nav {
  margin-bottom: 3.5rem;
  position: relative;
  left: 1.5rem; }
.p-footer__nav--list {
  gap: 1.7rem 8rem; }
  .p-footer__nav--list.vz-02 {
    grid-template-columns: 1fr 1fr; }
    .p-footer__nav--list.vz-02 .menu-item {
      padding-left: 0; }
      .p-footer__nav--list.vz-02 .menu-item a::after {
        right: 0rem; }
.p-footer__nav--item:first-child {
  width: 53.2rem;
  position: relative;
  z-index: 0; }
  .p-footer__nav--item:first-child::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 41.6rem;
    border-left: 1px dashed #E1CFBF;
    right: 0;
    bottom: -1rem;
    z-index: -1; }
  .p-footer__nav--item:first-child .menu-item {
    padding-right: 13.7rem; }
    .p-footer__nav--item:first-child .menu-item a::after {
      right: 0; }
.p-footer__nav--item:last-child {
  width: calc(100% - 53.2rem);
  padding-left: 10rem; }
.p-footer__nav--item .menu-item {
  padding-left: .5rem; }
  .p-footer__nav--item .menu-item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    color: #1A2C5B;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0.028rem;
    padding: .55rem 3rem;
    position: relative;
    z-index: 0;
    transition: all .35s; }
    .p-footer__nav--item .menu-item a::before {
      content: "•";
      position: absolute;
      color: #1A2C5B;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 175%;
      letter-spacing: 0.028rem;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: -1; }
    .p-footer__nav--item .menu-item a::after {
      content: "›";
      position: absolute;
      color: #1A2C5B;
      font-size: 4.2rem;
      font-weight: 400;
      line-height: 175%;
      letter-spacing: 0.028rem;
      right: 13.7rem;
      top: 50%;
      transform: translateY(-58%);
      z-index: -1; }
    .p-footer__nav--item .menu-item a:hover {
      color: #E8702A; }
.p-footer__logo {
  gap: 0.5rem 1rem;
  margin-left: 2rem; }
  .p-footer__logo li img {
    height: 4.8rem; }
  @media (min-width: 767.5px) {
    .p-footer__logo li:nth-child(1) img {
      height: 4.2rem;
      margin-right: .4rem; }
    .p-footer__logo li:nth-child(2) {
      margin-right: 1rem; }
    .p-footer__logo li:nth-child(3) img {
      height: 4rem;
      margin-right: 1.8rem; }
    .p-footer__logo li:nth-child(4), .p-footer__logo li:nth-child(5) {
      margin-right: 1.4rem; }
    .p-footer__logo li:nth-child(6) img {
      height: 4.4rem; }
    .p-footer__logo li:nth-child(7) img {
      height: 2.2rem;
      margin-right: 1rem; }
    .p-footer__logo li:nth-child(8) img {
      height: 3.8rem;
      margin-right: 1rem; }
    .p-footer__logo li:nth-child(9) {
      margin-right: 1rem; }
      .p-footer__logo li:nth-child(9) img {
        height: 4.5rem; }
    .p-footer__logo li:nth-child(10) {
      margin-right: .7rem; }
      .p-footer__logo li:nth-child(10) img {
        height: 4.5rem; }
    .p-footer__logo li:nth-child(11) img {
      height: 32px;
      margin-right: .2rem; }
    .p-footer__logo li:nth-child(12) img {
      height: 3.5rem; }
    .p-footer__logo li:nth-child(13) img {
      height: 2.9rem; }
    .p-footer__logo li:nth-child(14) img {
      height: 4.2rem;
      margin-right: .8rem; }
    .p-footer__logo li:nth-child(15) img {
      height: 3.7rem;
      margin-right: 1rem; }
    .p-footer__logo li:nth-child(16) img {
      height: 4rem;
      margin-right: 1rem; }
    .p-footer__logo li:nth-child(17) img {
      height: 2.3rem;
      margin-right: .4rem; }
    .p-footer__logo li:nth-child(18) img {
      height: 5rem;
      margin-right: .3rem; }
    .p-footer__logo li:nth-child(19) img {
      height: 4rem; }
    .p-footer__logo li:nth-child(20) img {
      height: 5.2rem;
      margin-left: -1.1rem; }
    .p-footer__logo li:nth-child(21) img {
      height: 3.3rem;
      margin-left: 0.2rem; }
    .p-footer__logo li:nth-child(22) img {
      margin-left: .8rem;
      height: 2.6rem; }
    .p-footer__logo li:nth-child(23) img {
      margin-left: .2rem;
      height: 2.7rem; }
    .p-footer__logo li:nth-child(24) img {
      margin-left: 1rem;
      height: 2.6rem; } }
  @media screen and (max-width: 960px) {
    .p-footer__logo {
      max-width: 50rem;
      margin-left: auto;
      margin-right: auto; } }
  @media screen and (max-width: 767px) {
    .p-footer__logo li img {
      height: 3.2rem; } }
.p-footer__nav--title {
  margin-bottom: 2.5rem; }
  .p-footer__nav--title p {
    color: #1A2C5B;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0.176rem;
    padding-left: 8.8rem;
    position: relative;
    z-index: 0; }
    .p-footer__nav--title p::before {
      content: "";
      position: absolute;
      width: 5rem;
      height: 4.1rem;
      background: url(assets/img/logo-footer-01.png) no-repeat center/contain;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: -1; }
  .p-footer__nav--title.vz-02 p {
    padding-left: 7.6rem; }
    .p-footer__nav--title.vz-02 p::before {
      width: 4.17rem;
      height: 4.1rem;
      background: url(assets/img/logo-footer-02.png) no-repeat center/contain; }

.p-footer__clinic {
  background: #FCF7F1 url(assets/img/bg_footer-clinic.png) no-repeat center bottom;
  background-size: contain;
  padding: 8.5rem 0 12.6rem; }
  @media screen and (max-width: 960px) {
    .p-footer__clinic {
      padding: 3.5rem 0 5.6rem; } }
  .p-footer__clinic-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8rem; }
  .p-footer__clinic-info {
    width: 56rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-top: .5rem; }
    @media screen and (max-width: 960px) {
      .p-footer__clinic-info {
        width: 100%; } }
    .p-footer__clinic-info .logo {
      margin-bottom: 2.5rem; }
      .p-footer__clinic-info .logo img {
        width: 46.1rem; }
      .p-footer__clinic-info .logo.vz-02 {
        margin-bottom: .5rem; }
        .p-footer__clinic-info .logo.vz-02 img {
          width: 30rem; }
    .p-footer__clinic-info .tel-munber {
      margin-bottom: 1rem; }
      .p-footer__clinic-info .tel-munber a {
        color: #151F2B;
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 175%;
        letter-spacing: 0rem;
        position: relative;
        z-index: 0;
        padding-left: 5.7rem; }
        .p-footer__clinic-info .tel-munber a::before {
          content: "";
          position: absolute;
          width: 4rem;
          height: 4rem;
          background: url(assets/img/footer-tel01.png) no-repeat center/contain;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          z-index: -1; }
    .p-footer__clinic-info .address {
      margin-bottom: 3rem; }
      .p-footer__clinic-info .address p {
        color: #555555;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 175%;
        letter-spacing: 0rem;
        position: relative;
        z-index: 0;
        padding-left: 4.5rem; }
        .p-footer__clinic-info .address p::before {
          content: "";
          position: absolute;
          width: 2.7rem;
          height: 2.7rem;
          background: url(assets/img/footer-img04.png) no-repeat center/contain;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          z-index: -1; }
  .p-footer__clinic-map {
    width: calc(100% - 56rem - 8rem);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem; }
    @media screen and (max-width: 960px) {
      .p-footer__clinic-map {
        width: 100%; } }
    .p-footer__clinic-map .map {
      border: .5rem solid #FFF;
      border-radius: 3rem;
      width: 100%;
      height: 60.8rem;
      background: #CCC; }
      .p-footer__clinic-map .map iframe {
        width: 100%;
        height: calc(100% + 2px);
        border-radius: 2.5rem; }
    .p-footer__clinic-map .list-banner {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 2.5rem; }
    .p-footer__clinic-map .banner a {
      display: block;
      border-radius: 3rem;
      border: .4rem solid #FFF; }
      .p-footer__clinic-map .banner a img {
        width: 100%;
        border-radius: 2.5rem;
        object-fit: cover; }
  .p-footer__clinic-table {
    width: 100%; }
    .p-footer__clinic-table .schedule--table {
      background: #FFF;
      border-radius: 1rem;
      padding-bottom: .5rem;
      margin-bottom: 1.8rem; }
      .p-footer__clinic-table .schedule--table .row {
        display: grid;
        grid-template-columns: 14.2rem repeat(7, 1fr);
        padding: 2.25rem 3.2rem 2.25rem 0rem;
        border-bottom: 1px solid #C4CCC5;
        align-items: center; }
        .p-footer__clinic-table .schedule--table .row .surgery-text {
          grid-column: 2 / span 5;
          color: #1A2C5B;
          font-size: 1.6rem;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0.16rem;
          text-align: left;
          padding-left: 1.7rem; }
        .p-footer__clinic-table .schedule--table .row .col--title__time {
          color: #363F39;
          font-size: 1.6rem;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0.16rem;
          padding-left: 2.2rem; }
        .p-footer__clinic-table .schedule--table .row dd {
          color: #1A2C5B;
          font-size: 1.6rem;
          font-weight: 300;
          line-height: 150%;
          letter-spacing: 0.16rem;
          text-align: center; }
        .p-footer__clinic-table .schedule--table .row:first-child {
          border: none; }
        .p-footer__clinic-table .schedule--table .row:last-child {
          border: none; }
      .p-footer__clinic-table .schedule--table .row--head {
        background: #1A2C5B;
        border-radius: 1rem 1rem 0 0; }
        .p-footer__clinic-table .schedule--table .row--head dt,
        .p-footer__clinic-table .schedule--table .row--head dd {
          color: #FFF;
          font-size: 1.6rem;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 0.16rem; }
        .p-footer__clinic-table .schedule--table .row--head .col--title {
          padding-left: 4.2rem; }
      .p-footer__clinic-table .schedule--table.vz-02 .row {
        padding: 1rem 3.2rem 1rem 0rem; }
    .p-footer__clinic-table .schedule--desc {
      margin-bottom: 2.6rem; }
      .p-footer__clinic-table .schedule--desc p {
        color: #555555;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 156%;
        letter-spacing: 0rem;
        text-align: center; }
  .p-footer__clinic-card {
    background: #FFF;
    border-radius: 1.8rem;
    padding: 1.7rem 2.2rem 3.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
    box-shadow: 0 0.2rem 1.4rem rgba(0, 0, 0, 0.06); }
    .p-footer__clinic-card p {
      color: #555555;
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 156%;
      letter-spacing: 0rem; }

.footer-link-fix {
  position: fixed;
  bottom: 16.5rem;
  left: 3.5rem;
  z-index: 10;
  transition: all 0.35s; }
  @media (min-width: 1440.5px) {
    .footer-link-fix.scroll {
      bottom: 3rem; } }
  .footer-link-fix.current {
    opacity: 0;
    pointer-events: none; }
  @media screen and (max-width: 960px) {
    .footer-link-fix {
      left: 2.5rem;
      bottom: 10.5rem;
      width: 31.5rem;
      display: none; } }
  .footer-link-fix li {
    width: 32rem; }
    .footer-link-fix li .close {
      width: 4rem;
      height: 4rem;
      background: #ffffff;
      position: absolute;
      top: -1.5rem;
      right: -1.5rem;
      cursor: pointer;
      z-index: 1;
      border-radius: 100%;
      border: .1rem solid #E0D8CC; }
      .footer-link-fix li .close::before {
        content: "×";
        position: absolute;
        color: #555555;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%; }
    .footer-link-fix li img {
      width: 100%;
      border-radius: 1.5rem;
      border: .4rem solid #FFF; }
    .footer-link-fix li.active {
      display: none; }

.c-nav-fix {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-65%);
  z-index: 120;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column; }
  .c-nav-fix .i-acf_tel {
    order: 1; }
  .c-nav-fix .i-acf_calendar {
    order: 3; }
  .c-nav-fix .i-btn {
    order: 5; }
  .c-nav-fix .i-regis {
    order: 4; }
  .c-nav-fix .i-time {
    cursor: pointer;
    order: 2; }
  .c-nav-fix .fix-title {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0.8rem;
    background: #101E5C;
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 6.3rem 1.2rem 1.9rem 1.2rem;
    border-radius: 2rem 0 0 2rem;
    position: relative;
    z-index: 0;
    transition: all .35s; }
    .c-nav-fix .fix-title::before {
      content: "";
      position: absolute;
      width: 2.1rem;
      height: 2.1rem;
      background: url(assets/img/fix-icon01.png) no-repeat center/contain;
      left: 50%;
      transform: translateX(-50%);
      top: 2.6rem;
      z-index: -1;
      transition: all .35s; }
  .c-nav-fix__item.i-time {
    display: flex;
    justify-content: center;
    align-items: center; }
  .c-nav-fix .i-acf_calendar a {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 175%;
    letter-spacing: 0.8rem;
    background: #CBA54B;
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin-top: -.15rem;
    padding: 7rem 1.2rem 3.2rem 1.2rem;
    border-radius: 2rem 0 0 2rem;
    position: relative;
    z-index: 0;
    transition: all .35s; }
    .c-nav-fix .i-acf_calendar a::before {
      content: "";
      position: absolute;
      width: 2rem;
      height: 2.16rem;
      background: url(assets/img/fix-icon02.svg) no-repeat center/contain;
      left: 50%;
      transform: translateX(-50%);
      top: 3.5rem;
      z-index: -1;
      transition: all .35s; }

.c-pagetop,
.c-pagetop-sp {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  opacity: 0;
  border: 0;
  background: #264070;
  border: 0.1rem #fff solid;
  cursor: pointer;
  outline: none;
  transition: all 0.35s;
  z-index: 50; }
  .c-pagetop::before,
  .c-pagetop-sp::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,
  .c-pagetop-sp.show {
    opacity: 1; }

.p-popup {
  position: fixed;
  transition: all 0.35s;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7); }
  .p-popup__inner {
    background: #FFF;
    position: relative;
    padding: 3rem 4rem;
    max-width: 80rem; }
  .p-popup__title {
    color: #2f5597;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 175%;
    letter-spacing: 0;
    margin-bottom: 1rem; }
    .p-popup__title span {
      border-bottom: #333 solid 1px;
      display: inline-block;
      padding: 0 2rem 0.5rem; }
  .p-popup__cont--desc {
    padding-left: 6rem;
    margin-bottom: 1rem; }
    .p-popup__cont--desc h4 {
      color: #2f5597;
      font-size: 2rem;
      font-weight: 700;
      line-height: 175%;
      letter-spacing: 0;
      margin-top: 1rem; }
    .p-popup__cont--desc p strong {
      color: #F00;
      font-weight: 400; }
  .p-popup__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #767171;
    color: #FFF;
    border-radius: 100%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.35s; }
    .p-popup__close:hover {
      opacity: 0.8; }
  .p-popup.is-active {
    opacity: 0;
    pointer-events: none; }

@media (min-width: 960.5px) {
  .c-nav-fix .i-acf_tel,
  .c-nav-fix .i-btn {
    display: none; }
  .c-nav-fix .i-regis {
    display: none; }
  .c-nav-fix .i-time:hover .fix-title {
    padding: 10rem 1.2rem 5.5rem 1.2rem; }
    .c-nav-fix .i-time:hover .fix-title::before {
      top: 6.6rem; }
  .c-nav-fix .i-time:hover dl {
    padding: 1.2rem 0; }
  .c-nav-fix .i-time:hover .row--head {
    padding: 0rem 0rem 1rem 0rem; }
  .c-nav-fix .i-time:hover .p-footer__gp--box {
    padding: 1rem 3.3rem;
    margin-right: 0; }
    .c-nav-fix .i-time:hover .p-footer__gp--box::before {
      top: 3.8rem; } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-popup__inner {
    max-width: 92rem; }

  .footer-link-fix {
    bottom: 2.2rem; }

  .p-footer__nav {
    left: 0; }

  .p-footer__clinic-box {
    gap: 4rem; }
  .p-footer__clinic-info {
    width: 60rem; }
  .p-footer__clinic-map {
    width: calc(100% - 60rem - 4rem); }
    .p-footer__clinic-map .map {
      height: 62rem; }

  .c-nav-fix {
    transform: translateY(-50%); } }
@media (min-width: 960.5px) {
  .c-nav-fix .i-acf_calendar a {
    width: 5.2rem; } }
@media (max-width: 960px) {
  .site-footer {
    padding-bottom: 6rem; }

  .footer-link-fix li {
    width: 31.5rem; }
    .footer-link-fix li img {
      border-radius: 1rem;
      border-width: 2px; }
    .footer-link-fix li .close {
      width: 3rem;
      height: 3rem;
      top: -1rem;
      right: -1rem; }

  .p-footer__nav {
    display: none; }
  .p-footer__bottom {
    padding: 1.5rem; }
  .p-footer__credit {
    padding-right: 1rem;
    margin-right: 1rem; }
    .p-footer__credit::before {
      height: 1.5rem; }
  .p-footer__gp--box {
    position: fixed;
    right: 0;
    bottom: 6rem;
    left: 0;
    width: 100vw;
    max-height: calc(100vh - 6rem);
    margin-right: 0;
    padding: 1.2rem .5rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: transform .35s, opacity .35s, visibility .35s;
    z-index: -1; }
    .p-footer__gp--box::before {
      top: 3.2rem;
      height: .2rem; }
  .p-footer__schedule--table {
    width: 100%;
    margin: 0 auto; }
    .p-footer__schedule--table dl {
      padding: .5rem 0; }
    .p-footer__schedule--table .row--head {
      padding: 0rem 0rem 1rem 0rem; }
  .p-footer__banner {
    padding: 2rem 0 0 0; }
  .p-footer__banner-box {
    border-radius: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
    margin-bottom: 2.5rem; }
    .p-footer__banner-box .img-banner a {
      padding: 0 0rem; }
      .p-footer__banner-box .img-banner a img {
        height: 6.8rem;
        object-fit: cover; }
      .p-footer__banner-box .img-banner a::before {
        display: none; }

  .c-pagetop {
    display: none; }

  .c-pagetop-sp {
    opacity: 1;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    border: none; }

  .c-nav-fix {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    flex-direction: row;
    transform: none;
    justify-content: flex-start;
    align-items: stretch; }
    .c-nav-fix li {
      flex: 1 1 0;
      width: auto; }
      .c-nav-fix li a {
        width: 100%;
        height: 100%; }
    .c-nav-fix .i-btn {
      flex: 0 0 6rem;
      width: 6rem;
      height: 6rem; }
    .c-nav-fix .i-time.is-open .p-footer__gp--box {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0); }
    .c-nav-fix .fix-title {
      border-radius: 0;
      writing-mode: horizontal-tb;
      padding: 2.8rem 1rem .4rem 1rem;
      letter-spacing: .2rem;
      width: 100%;
      height: 100%;
      text-align: center;
      font-size: 1.5rem;
      display: block; }
      .c-nav-fix .fix-title::before {
        top: .5rem; }
    .c-nav-fix .i-acf_calendar a {
      border-radius: 0;
      writing-mode: horizontal-tb;
      padding: 2.8rem 1rem .4rem 1rem;
      letter-spacing: .2rem;
      font-size: 1.5rem;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 0; }
      .c-nav-fix .i-acf_calendar a::before {
        top: .5rem; }
    .c-nav-fix .i-acf_tel a {
      padding: 2.8rem 0rem .4rem 0rem;
      letter-spacing: .2rem;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 0;
      color: #FFF;
      font-size: 1.2rem;
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0rem;
      background: #E8702A; }
      .c-nav-fix .i-acf_tel a::before {
        content: "";
        position: absolute;
        width: 2.4rem;
        height: 2.3rem;
        background: url(assets/img/fix-tel.png) no-repeat center/contain;
        left: 50%;
        transform: translateX(-50%);
        top: .5rem;
        z-index: -1;
        transition: all .35s; }
    .c-nav-fix .i-regis a {
      padding: 2.8rem 0rem .4rem 0rem;
      letter-spacing: .2rem;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 0;
      color: #FFF;
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0rem;
      background: #dd1c19; }
      .c-nav-fix .i-regis a::before {
        content: "";
        position: absolute;
        width: 2.4rem;
        height: 2.3rem;
        -webkit-mask: url(assets/img/icon-regis.svg) no-repeat center/contain;
        mask: url(assets/img/icon-regis.svg) no-repeat center/contain;
        left: 50%;
        transform: translateX(-50%);
        top: .5rem;
        z-index: -1;
        transition: all .35s;
        background: #FFFFFF; }

  .p-footer__clinic-box {
    gap: 2rem; }
  .p-footer__clinic-map {
    gap: 1rem; }
    .p-footer__clinic-map .map {
      border: .2rem solid #FFF;
      border-radius: 1rem;
      height: 25.8rem; }
      .p-footer__clinic-map .map iframe {
        border-radius: 1rem;
        border: .1rem solid #FFF !important; }
    .p-footer__clinic-map .list-banner {
      gap: 1rem; }
      .p-footer__clinic-map .list-banner .banner a {
        border-radius: 1rem;
        border: 1px solid #FFF; }
        .p-footer__clinic-map .list-banner .banner a img {
          border-radius: 1rem; }
  .p-footer__clinic-info .logo {
    margin-bottom: 1.5rem; }
    .p-footer__clinic-info .logo a img {
      width: 29rem; }
  .p-footer__clinic-info .tel-munber a {
    font-size: 3rem;
    padding-left: 4rem; }
    .p-footer__clinic-info .tel-munber a::before {
      width: 3.5rem;
      height: 3.5rem; }
  .p-footer__clinic-info .address {
    margin-bottom: 1.5rem; }
    .p-footer__clinic-info .address p {
      font-size: 1.4rem;
      padding-left: 2.2rem; }
      .p-footer__clinic-info .address p::before {
        width: 2rem;
        height: 2rem; }
  .p-footer__clinic-table .schedule--table {
    margin-bottom: 1rem; }
    .p-footer__clinic-table .schedule--table .row {
      padding: 1rem .5rem 1rem 0;
      grid-template-columns: 9.2rem repeat(7, 1fr); }
      .p-footer__clinic-table .schedule--table .row .col--title__time {
        font-size: 1.4rem;
        letter-spacing: 0;
        padding-left: .5rem; }
      .p-footer__clinic-table .schedule--table .row dd {
        font-size: 1.4rem;
        letter-spacing: 0; }
        .p-footer__clinic-table .schedule--table .row dd.fz-sp {
          font-size: 1.1rem; }
      .p-footer__clinic-table .schedule--table .row .surgery-text {
        font-size: 1.4rem;
        letter-spacing: -0.1rem;
        padding-left: 1rem; }
    .p-footer__clinic-table .schedule--table .row--head dt,
    .p-footer__clinic-table .schedule--table .row--head dd {
      font-size: 1.4rem;
      letter-spacing: 0; }
    .p-footer__clinic-table .schedule--table .row--head .col--title {
      padding-left: 1.5rem; }
  .p-footer__clinic-table .schedule--desc {
    margin-bottom: 1.5rem; }
    .p-footer__clinic-table .schedule--desc p {
      font-size: 1.5rem;
      line-height: 185%;
      letter-spacing: .05rem; }
  .p-footer__clinic-card {
    padding: 1.5rem 1.2rem 1.5rem;
    gap: 1rem; }
    .p-footer__clinic-card p {
      font-size: 1.6rem; }
    .p-footer__clinic-card .img-card img {
      width: 100%;
      object-fit: cover; }

  .p-popup__close {
    width: 3rem;
    height: 3rem; }
  .p-popup__inner {
    padding: 6rem 1rem 2rem;
    width: calc(100% - 4rem); }
  .p-popup__title {
    text-align: left;
    line-height: 140%;
    font-size: 1.9rem; }
    .p-popup__title span {
      padding: 0 35px 0.5rem 0; }
  .p-popup__cont {
    padding-left: 1rem; }
    .p-popup__cont--desc {
      padding-left: 0; }
      .p-popup__cont--desc h4 {
        font-size: 1.7rem; }
    .p-popup__cont p {
      font-size: 1.4rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-footer__gp--box {
    padding: 1.2rem 3.5rem; }
    .p-footer__gp--box::before {
      top: 3.6rem; }
  .p-footer__schedule--table dl {
    grid-template-columns: 15.5rem repeat(7, 1fr); }
  .p-footer__schedule--table .row .surgery-text {
    font-size: 1.6rem;
    letter-spacing: .18rem;
    padding-left: 3rem; }
  .p-footer__banner-box .img-banner a img {
    height: 8.6rem; }

  .p-footer__clinic-info .logo a img {
    width: 36rem; }
  .p-footer__clinic-info .tel-munber a {
    font-size: 3.5rem;
    padding-left: 5rem; }
    .p-footer__clinic-info .tel-munber a::before {
      width: 4rem;
      height: 4rem; }
  .p-footer__clinic-info .address p {
    font-size: 1.6rem;
    padding-left: 3.2rem; }
    .p-footer__clinic-info .address p::before {
      width: 2.5rem;
      height: 2.5rem; }
  .p-footer__clinic-table .schedule--table .row {
    padding: 1.5rem 2.5rem 1.5rem 0;
    grid-template-columns: 18.2rem repeat(7, 1fr); }
    .p-footer__clinic-table .schedule--table .row .col--title__time {
      font-size: 1.8rem;
      padding-left: 2.5rem;
      letter-spacing: .16rem; }
    .p-footer__clinic-table .schedule--table .row .surgery-text {
      font-size: 1.8rem;
      letter-spacing: .16rem;
      padding-left: 2.5rem; }
    .p-footer__clinic-table .schedule--table .row dd {
      font-size: 1.8rem;
      letter-spacing: .16rem; }
  .p-footer__clinic-table .schedule--table .row--head dt,
  .p-footer__clinic-table .schedule--table .row--head dd {
    font-size: 1.8rem; }
  .p-footer__clinic-table .schedule--table .row--head dd.fz-sp {
    font-size: 1.8rem; }
  .p-footer__clinic-table .schedule--table .row--head .col--title {
    padding-left: 4.5rem;
    letter-spacing: .16rem; }
  .p-footer__clinic-table .schedule--desc p {
    font-size: 1.8rem;
    letter-spacing: .16rem; }
    .p-footer__clinic-table .schedule--desc p .u-sp-only {
      display: none !important; }
  .p-footer__clinic-card p {
    font-size: 1.8rem;
    letter-spacing: .16rem; }
  .p-footer__clinic-map {
    gap: 2rem; }
    .p-footer__clinic-map .map {
      height: 37.8rem;
      border: .4rem solid #FFF; }
    .p-footer__clinic-map .list-banner {
      gap: 2rem; }
      .p-footer__clinic-map .list-banner .banner a {
        border: .4rem solid #FFF; }

  .p-popup__inner {
    width: calc(100% - 18rem); } }
@media (max-width: 960px) {
  .p-mv__fix {
    transition: all .35s; }

  .p-mv__fix:not(.show) {
    opacity: 0;
    transition: all .35s; } }
[class^="grid-"],
[class*="grid-"] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.l-grid-1140 {
  max-width: 117rem; }
.l-grid-1200 {
  max-width: 123rem; }
.l-grid-1232 {
  max-width: 125.2rem; }
.l-grid-1244 {
  max-width: 127.4rem; }
.l-grid-1275 {
  max-width: 130.5rem; }
.l-grid-1290 {
  max-width: 132rem; }
.l-grid-1296 {
  max-width: 132.6rem; }
.l-grid-1355 {
  max-width: 138.5rem; }
.l-grid-1386 {
  max-width: 141.6rem; }
.l-grid-1473 {
  max-width: 150.3rem; }
.l-grid-1500 {
  max-width: 153rem; }

#tinymce .wow_custom {
  opacity: 1;
  -webkit-transform: translate(0, 0px);
  transform: translate(0, 0);
  transition: all 0.5s ease; }

.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; }

.slick-list {
  overflow: hidden; }

.slick-track {
  display: flex; }

/* ==========================================================================
   Object - Component (c-)
   ========================================================================== */
.c-hamburger {
  position: relative;
  z-index: 110;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  width: 8rem;
  height: 8rem;
  padding: 0;
  background: #FFF;
  border: 1px solid #1A2C5B;
  border-radius: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease; }
  @media (hover: hover) {
    .c-hamburger:hover {
      opacity: 0.9; } }
  .c-hamburger__line {
    display: block;
    width: 3.5rem;
    height: 0.2rem;
    background-color: #1A2C5B;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center;
    border-radius: .2rem; }
    .c-hamburger__line:nth-child(2) {
      width: 2.6rem;
      position: relative;
      right: .5rem; }
  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    transform: translateY(0.9rem) rotate(45deg); }
  .c-hamburger.is-active .c-hamburger__line:nth-child(2) {
    opacity: 0; }
  .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
    transform: translateY(-0.9rem) rotate(-45deg); }

.home .p-header.vz-01 .c-hamburger {
  border: none; }

@media (min-width: 960.5px) and (max-width: 1440px) {
  .c-hamburger {
    width: 6.5rem;
    height: 6.5rem; }
    .c-hamburger__line {
      width: 3.2rem;
      height: .3rem; }
      .c-hamburger__line:nth-child(2) {
        width: 2.3rem;
        right: .4rem; }
    .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
      transform: translateY(1.1rem) rotate(45deg); } }
@media (max-width: 960px) {
  .c-hamburger {
    width: 5rem;
    height: 5rem;
    border: none; }
    .c-hamburger__line {
      width: 2.8rem; }
      .c-hamburger__line:nth-child(2) {
        width: 2rem;
        right: .36rem; } }
.c-heading {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.08rem;
  color: #122A63; }
  .c-heading.vz-01 {
    font-size: 2.2rem; }
  @media screen and (max-width: 960px) {
    .c-heading {
      letter-spacing: 0.02rem; } }
  .c-heading--hy-lv1 {
    position: relative;
    padding: 0 0 2rem;
    margin-bottom: 4rem;
    text-align: center;
    font-size: var(--size-h1); }
    .c-heading--hy-lv1::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 9rem;
      height: 0.6rem;
      transform: translateX(-50%);
      -webkit-mask: url(assets/img/under_ic.png) center/auto repeat;
      mask: url(assets/img/under_ic.png) center/auto repeat;
      background: #122A63; }
    @media screen and (max-width: 960px) {
      .c-heading--hy-lv1 {
        padding-bottom: 1.8rem;
        margin-bottom: 2rem; }
        .c-heading--hy-lv1::before {
          width: 7rem; } }
    @media screen and (max-width: 960px) and (max-width: 767px) {
      .c-heading--hy-lv1::before {
        width: 5rem; } }

  .c-heading--hy-lv2 {
    position: relative;
    padding: 1.8rem 2.5rem;
    background: #122A63;
    color: #fff;
    font-size: var(--size-h2); }
    .c-heading--hy-lv2 span {
      position: relative;
      z-index: 1; }
    .c-heading--hy-lv2::before {
      content: "";
      position: absolute;
      width: calc(100% - 1.2rem);
      height: calc(100% - 1.2rem);
      left: 0.6rem;
      top: 0.6rem;
      border: 1px dashed #fff; }
    @media screen and (max-width: 960px) {
      .c-heading--hy-lv2 {
        padding: 1.5rem 1.5rem;
        text-align: justify; }
        .c-heading--hy-lv2::before {
          content: "";
          position: absolute;
          width: calc(100% - 1rem);
          height: calc(100% - 1rem);
          left: 0.5rem;
          top: 0.5rem; } }
  .c-heading--hy-lv3 {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: var(--size-h3); }
    .c-heading--hy-lv3::before, .c-heading--hy-lv3::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 0.3rem;
      left: 0;
      bottom: 0; }
    .c-heading--hy-lv3::after {
      background: repeating-linear-gradient(-45deg, #122A63, #122A63 10%, #fff 10%, #fff 30%, #122A63 30%, #122A63 70%, #fff 70%, #fff 90%, #122A63 90%, #122A63 100%);
      background-size: 0.6rem 0.4rem;
      opacity: 0.7; }
    .c-heading--hy-lv3::before {
      width: 10rem;
      z-index: 1;
      background-color: #122A63; }
  .c-heading--hy-lv4 {
    position: relative;
    padding-left: 3rem;
    font-size: var(--size-h4); }
    .c-heading--hy-lv4::before, .c-heading--hy-lv4::after {
      content: "";
      position: absolute;
      top: 2.2rem;
      background-color: #122A63;
      transform: translateY(-50%) rotate(45deg); }
      .c-heading--hy-lv4::before.vz-01, .c-heading--hy-lv4::after.vz-01 {
        top: 1.4rem; }
      @media screen and (max-width: 960px) {
        .c-heading--hy-lv4::before, .c-heading--hy-lv4::after {
          top: 1.5rem; } }
    .c-heading--hy-lv4::before {
      left: 0.2rem;
      width: 1.2rem;
      height: 1.2rem; }
    .c-heading--hy-lv4::after {
      left: 1.8rem;
      width: 0.6rem;
      height: 0.6rem;
      opacity: 0.4; }
  .c-heading--hy-lv5 {
    position: relative;
    padding: 0 0 0 2.5rem;
    font-size: var(--size-h5);
    text-align: justify; }
    .c-heading--hy-lv5::before {
      content: "";
      position: absolute;
      top: 1.3rem;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      background: #122A63; }
  .c-heading--hy-lv6 {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--size-h6);
    border-left: 0.3rem solid #122A63; }
  .c-heading--tab {
    display: inline-block;
    position: relative;
    padding: 1rem 2.4rem 1rem 3.6rem;
    background-color: #122A63;
    color: #fff;
    border-radius: 0.5rem;
    clip-path: polygon(1.6rem 0, 100% 0, 100% 100%, 0 100%); }
  .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--sizev5 {
    font-size: var(--size-h5); }
  .c-heading--sizev6 {
    font-size: var(--size-h6); }

.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: 1.5rem;
        right: 1.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--3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4rem;
    row-gap: 0; }
    @media screen and (max-width: 960px) {
      .c-dot-list--3col {
        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: 1.4rem;
      left: 0;
      width: 2rem;
      height: 1.1rem;
      border-left: 0.3rem solid #122A63;
      border-bottom: 0.3rem solid #122A63;
      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;
    row-gap: 0; }
    @media screen and (max-width: 960px) {
      .c-check-list--3col {
        grid-template-columns: 1fr;
        column-gap: 0; } }

.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: 9rem 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); }
    .c-info-table__row.vz-01 {
      grid-template-columns: 24rem 1fr; }
    @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.vz-01 {
          grid-template-columns: 16rem 1fr; } }
    .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 a,
      .c-info-table__row dd a {
        text-decoration: underline; }
    .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: #122A63;
      color: #fff;
      border-radius: 0.4rem;
      font-size: 1.4rem; }
  .c-info-table--bordered {
    border: 1px solid #122A63;
    border-top-width: 1px;
    padding: 0 2rem; }
    .c-info-table--bordered .c-info-table__row {
      border-bottom: 1px solid rgba(18, 42, 99, 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: #122A63;
          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(18, 42, 99, 0.2); }
      .c-info-table--striped .c-info-table__row:nth-child(even) {
        background-color: rgba(18, 42, 99, 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(18, 42, 99, 0.3);
      border-bottom: 1px solid rgba(18, 42, 99, 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-info-table--02 {
  border: solid 1px #122A63; }
  .c-info-table--02 dl {
    display: grid;
    grid-template-columns: 18rem 1fr;
    border-bottom: #122A63 solid 1px; }
    .c-info-table--02 dl.gp-01 {
      grid-template-columns: 35rem 1fr; }
    .c-info-table--02 dl.gp-02 {
      grid-template-columns: 40rem 1fr; }
    .c-info-table--02 dl dt,
    .c-info-table--02 dl dd {
      padding: 1rem;
      font-size: var(--size-p);
      line-height: 195%;
      letter-spacing: 0.05rem;
      font-weight: 400; }
      @media (max-width: 960px) {
        .c-info-table--02 dl dt,
        .c-info-table--02 dl dd {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
      .c-info-table--02 dl dt a,
      .c-info-table--02 dl dd a {
        text-decoration: underline; }
    .c-info-table--02 dl dd {
      border-left: #122A63 solid 1px; }
    .c-info-table--02 dl:first-child dt,
    .c-info-table--02 dl:first-child dd {
      background: #122A63;
      color: #fff;
      font-weight: 700; }
    .c-info-table--02 dl:first-child dd {
      border-left-color: #fff; }
    .c-info-table--02 dl:last-child {
      border-bottom: 0; }

@media (max-width: 960px) {
  .c-info-table--02 dl {
    grid-template-columns: 17rem 1fr; }
    .c-info-table--02 dl.gp-01 {
      grid-template-columns: 17rem 1fr; }
    .c-info-table--02 dl.gp-02 {
      grid-template-columns: 17rem 1fr; }
    .c-info-table--02 dl.gp-03 {
      grid-template-columns: 14rem 1fr; } }
.c-info-table--03 {
  border: solid 1px #122A63; }
  .c-info-table--03 dl {
    display: grid;
    grid-template-columns: 40rem 1fr 1fr;
    border-bottom: #122A63 solid 1px;
    text-align: center; }
    .c-info-table--03 dl dt,
    .c-info-table--03 dl dd {
      padding: 1rem;
      font-size: var(--size-p);
      line-height: 195%;
      letter-spacing: 0.05rem;
      font-weight: 400; }
      @media (max-width: 960px) {
        .c-info-table--03 dl dt,
        .c-info-table--03 dl dd {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
    .c-info-table--03 dl dd {
      border-left: #122A63 solid 1px; }
    .c-info-table--03 dl:first-child dt,
    .c-info-table--03 dl:first-child dd {
      background: #122A63;
      color: #fff;
      font-weight: 700; }
    .c-info-table--03 dl:first-child dd {
      border-left-color: #fff; }
    .c-info-table--03 dl:last-child {
      border-bottom: 0; }

@media (max-width: 960px) {
  .c-info-table--03 dl {
    grid-template-columns: 14rem 1fr 1fr; }
    .c-info-table--03 dl dd {
      text-align: center; } }
.c-info-table--04 {
  border: solid 1px #122A63; }
  .c-info-table--04 dl {
    display: grid;
    grid-template-columns: 40rem 1fr 1fr 1fr;
    border-bottom: #122A63 solid 1px;
    text-align: center; }
    .c-info-table--04 dl dt,
    .c-info-table--04 dl dd {
      padding: 1rem;
      font-size: var(--size-p);
      line-height: 195%;
      letter-spacing: 0.05rem;
      font-weight: 400; }
      @media (max-width: 960px) {
        .c-info-table--04 dl dt,
        .c-info-table--04 dl dd {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
    .c-info-table--04 dl dd {
      border-left: #122A63 solid 1px; }
    .c-info-table--04 dl:first-child dt,
    .c-info-table--04 dl:first-child dd {
      background: #122A63;
      color: #fff;
      font-weight: 700; }
    .c-info-table--04 dl:first-child dd {
      border-left-color: #fff; }
    .c-info-table--04 dl:last-child {
      border-bottom: 0; }

@media (max-width: 960px) {
  .c-info-table--04 dl {
    grid-template-columns: 14rem 1fr 1fr 1fr; }
    .c-info-table--04 dl dd {
      text-align: center; } }
.c-box {
  padding: 3rem;
  margin-bottom: 4rem;
  border-radius: 0.8rem;
  min-height: 20rem; }
  .c-box.tn-02 {
    min-height: 9rem; }
  @media screen and (max-width: 960px) {
    .c-box {
      padding: 2rem 1.6rem;
      min-height: 10rem; } }
  .c-box > :first-child {
    margin-top: 0; }
  .c-box > :last-child {
    margin-bottom: 0; }
  .c-box--bg {
    background-color: rgba(18, 42, 99, 0.08); }
    .c-box--bg.vz-01 {
      background-color: rgba(255, 255, 255, 0.7); }
      @media screen and (max-width: 960px) {
        .c-box--bg.vz-01 {
          background-color: rgba(18, 42, 99, 0.08);
          margin-bottom: 4.5rem !important; } }
      @media screen and (max-width: 960px) {
        .c-box--bg.vz-01.vz-02 {
          margin-bottom: 1.3rem !important; } }
      @media screen and (max-width: 960px) {
        .c-box--bg.vz-01.vz-03 {
          margin-bottom: -1rem !important; } }
      @media screen and (max-width: 960px) {
        .c-box--bg.vz-01.vz-04 {
          margin-bottom: 4.5rem !important; } }
  .c-box--bg-primary {
    background-color: #122A63;
    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 #122A63; }
  .c-box--border-thin {
    background-color: #fff;
    border: 0.1rem solid rgba(18, 42, 99, 0.5); }
  .c-box--frame {
    position: relative;
    padding: 5rem;
    background-color: #fff;
    border: 6px solid #122A63;
    border-radius: 0; }
    @media screen and (max-width: 960px) {
      .c-box--frame {
        padding: 2rem 2rem;
        border: 2px solid #122A63; } }
  .c-box--rounded {
    border-radius: 2rem; }
  .c-box--callout {
    background-color: rgba(18, 42, 99, 0.08);
    border-left: 0.6rem solid #122A63;
    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(18, 42, 99, 0.4);
  text-align: center; }
  .c-schedule th,
  .c-schedule td {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(18, 42, 99, 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: #122A63;
    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(18, 42, 99, 0.2);
    color: #122A63;
    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-schedule dl {
    display: grid;
    grid-template-columns: 41rem repeat(7, 1fr);
    border-bottom: 1px solid rgba(18, 42, 99, 0.4); }
    @media screen and (max-width: 960px) {
      .c-schedule dl {
        grid-template-columns: 26rem repeat(7, 1fr); } }
    @media screen and (max-width: 767px) {
      .c-schedule dl {
        grid-template-columns: 10rem repeat(6, 1fr) 3rem; } }
    .c-schedule dl:first-child dt,
    .c-schedule dl:first-child dd {
      background-color: #122A63;
      color: #fff;
      font-weight: 700;
      border-left: 0; }
    .c-schedule dl:first-child dd {
      border-left: 1px solid rgba(255, 255, 255, 0.4); }
    .c-schedule dl:last-child {
      border-bottom: 0; }
    .c-schedule dl dt,
    .c-schedule dl dd {
      padding: 1.5rem 1rem;
      font-size: var(--size-p);
      line-height: 195%;
      letter-spacing: 0.05rem;
      font-weight: 400;
      text-align: center; }
      @media (max-width: 960px) {
        .c-schedule dl dt,
        .c-schedule dl dd {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
      @media screen and (max-width: 960px) {
        .c-schedule dl dt,
        .c-schedule dl dd {
          text-align: center;
          line-height: 150%;
          padding: 0.8rem 0.5rem; } }
    .c-schedule dl dt {
      background-color: rgba(18, 42, 99, 0.2);
      color: #122A63;
      font-weight: 700;
      text-align: left;
      padding-left: 1.4rem;
      white-space: nowrap; }
      @media screen and (max-width: 960px) {
        .c-schedule dl dt {
          padding-left: 0.55rem;
          font-size: 1.4rem; } }
    .c-schedule dl dd {
      border-left: 1px solid rgba(18, 42, 99, 0.4); }
      @media screen and (max-width: 960px) {
        .c-schedule dl dd {
          font-size: 1.2rem; } }

.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; }
  @media screen and (max-width: 960px) {
    .c-faq {
      margin: 0 0 1.5rem; } }
  .c-faq__item {
    margin-bottom: 1.6rem;
    border: 1px solid rgba(18, 42, 99, 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(18, 42, 99, 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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: #122A63; }
    .c-faq__q::after {
      content: "";
      position: absolute;
      right: 2rem;
      top: 50%;
      width: 0.9rem;
      height: 0.9rem;
      border-right: 0.2rem solid #122A63;
      border-bottom: 0.2rem solid #122A63;
      transform: translateY(-70%) rotate(45deg);
      transition: transform 0.3s ease; }
    @media (hover: hover) {
      .c-faq__q:hover {
        background-color: rgba(18, 42, 99, 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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 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: #122A63;
  color: #fff;
  font-size: var(--size-p);
  line-height: 195%;
  letter-spacing: 0.05rem;
  font-weight: 400;
  text-decoration: none;
  border: 0.1rem solid #122A63;
  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: #122A63; } }
  .c-btn--outline {
    background-color: transparent;
    color: #122A63; }
    @media (hover: hover) {
      .c-btn--outline:hover {
        background-color: #122A63;
        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(18, 42, 99, 0.2);
    border-top: 0.4rem solid #122A63;
    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 #122A63;
      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 #122A63;
          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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #122A63;
    letter-spacing: 0.2rem; }
  .c-flow__title {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #122A63;
    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-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(18, 42, 99, 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: #122A63;
    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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 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: 3.2rem;
      font-weight: 700;
      color: #122A63;
      line-height: 1.4; }
      @media screen and (max-width: 960px) {
        .c-step__body h4 {
          font-size: 2.6rem; } }
    .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(18, 42, 99, 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: #122A63; }
      .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: #122A63; } }
    @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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 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 #122A63;
    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: #122A63;
        color: #fff; } }
    .pagination .page-numbers.current,
    .nav-links .page-numbers.current {
      background-color: #122A63;
      color: #fff; }
    .pagination .page-numbers.dots,
    .nav-links .page-numbers.dots {
      border: 0;
      background: none; }
    .pagination .page-numbers.prev, .pagination .page-numbers.next,
    .nav-links .page-numbers.prev,
    .nav-links .page-numbers.next {
      position: relative;
      font-size: 0; }
      .pagination .page-numbers.prev::before, .pagination .page-numbers.next::before,
      .nav-links .page-numbers.prev::before,
      .nav-links .page-numbers.next::before {
        content: "";
        display: inline-block;
        width: 0.8rem;
        height: 1.2rem;
        background-color: #333333;
        -webkit-mask: url(assets/img/icon-arrow01.svg) center/100% no-repeat;
        mask: url(assets/img/icon-arrow01.svg) center/100% no-repeat;
        transition: background-color 0.2s ease; }
      @media (hover: hover) {
        .pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before,
        .nav-links .page-numbers.prev:hover::before,
        .nav-links .page-numbers.next:hover::before {
          background-color: #fff; } }
    .pagination .page-numbers.prev::before,
    .nav-links .page-numbers.prev::before {
      transform: rotate(180deg); }

.p-sidebar {
  display: flex;
  flex-direction: column; }
  .p-sidebar__widget {
    border: 0.1rem solid #122A63;
    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: #122A63;
    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 #122A63; }
      .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: #122A63; } }
        @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 #122A63; }

.p-single__header {
  background-color: rgba(18, 42, 99, 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: #122A63; }
  @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: #122A63;
  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: #122A63; }
  @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: #122A63;
    scroll-margin-top: 6rem;
    clear: both; }
    .p-single__content :is(h1, h2, h3, h4, h5, h6):target {
      animation: grits-toc-flash 1.6s ease-out 1; }
  .p-single__content h1 {
    position: relative;
    padding: 0 0 2rem;
    margin-bottom: 4rem;
    text-align: center;
    font-size: var(--size-h1); }
    .p-single__content h1::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 9rem;
      height: 0.6rem;
      transform: translateX(-50%);
      -webkit-mask: url(assets/img/under_ic.png) center/auto repeat;
      mask: url(assets/img/under_ic.png) center/auto repeat;
      background: #122A63; }
    @media screen and (max-width: 960px) {
      .p-single__content h1 {
        padding-bottom: 1.8rem;
        margin-bottom: 2rem; }
        .p-single__content h1::before {
          width: 7rem; } }
    @media screen and (max-width: 960px) and (max-width: 767px) {
      .p-single__content h1::before {
        width: 5rem; } }

  .p-single__content h2 {
    position: relative;
    padding: 1.8rem 2.5rem;
    background: #122A63;
    color: #fff;
    font-size: var(--size-h2); }
    .p-single__content h2 span {
      position: relative;
      z-index: 1; }
    .p-single__content h2::before {
      content: "";
      position: absolute;
      width: calc(100% - 1.2rem);
      height: calc(100% - 1.2rem);
      left: 0.6rem;
      top: 0.6rem;
      border: 1px dashed #fff; }
    @media screen and (max-width: 960px) {
      .p-single__content h2 {
        padding: 1.5rem 1.5rem;
        text-align: justify; }
        .p-single__content h2::before {
          content: "";
          position: absolute;
          width: calc(100% - 1rem);
          height: calc(100% - 1rem);
          left: 0.5rem;
          top: 0.5rem; } }
  .p-single__content h3 {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: var(--size-h3); }
    .p-single__content h3::before, .p-single__content h3::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 0.3rem;
      left: 0;
      bottom: 0; }
    .p-single__content h3::after {
      background: repeating-linear-gradient(-45deg, #122A63, #122A63 10%, #fff 10%, #fff 30%, #122A63 30%, #122A63 70%, #fff 70%, #fff 90%, #122A63 90%, #122A63 100%);
      background-size: 0.6rem 0.4rem;
      opacity: 0.7; }
    .p-single__content h3::before {
      width: 10rem;
      z-index: 1;
      background-color: #122A63; }
  .p-single__content h4 {
    position: relative;
    padding-left: 3rem;
    font-size: var(--size-h4); }
    .p-single__content h4::before, .p-single__content h4::after {
      content: "";
      position: absolute;
      top: 2.2rem;
      background-color: #122A63;
      transform: translateY(-50%) rotate(45deg); }
      .p-single__content h4::before.vz-01, .p-single__content h4::after.vz-01 {
        top: 1.4rem; }
      @media screen and (max-width: 960px) {
        .p-single__content h4::before, .p-single__content h4::after {
          top: 1.5rem; } }
    .p-single__content h4::before {
      left: 0.2rem;
      width: 1.2rem;
      height: 1.2rem; }
    .p-single__content h4::after {
      left: 1.8rem;
      width: 0.6rem;
      height: 0.6rem;
      opacity: 0.4; }
  .p-single__content h5 {
    position: relative;
    padding: 0 0 0 2.5rem;
    font-size: var(--size-h5);
    text-align: justify; }
    .p-single__content h5::before {
      content: "";
      position: absolute;
      top: 1.3rem;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      background: #122A63; }
  .p-single__content h6 {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--size-h6);
    border-left: 0.3rem solid #122A63; }
  .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: #122A63; }
      @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__content .aligncenter {
    margin-left: auto;
    margin-right: auto; }
.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: 767px) {
    .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: #122A63;
    border: 0.1rem solid #122A63;
    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 (min-width: 767.5px) {
  .p-single__content .alignleft,
  .p-single__content .alignright {
    width: 30%; }
  .p-single__content .alignleft {
    float: left;
    margin-right: 1.5rem; }
  .p-single__content .alignright {
    float: right;
    margin-left: 1.5rem; } }
@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(18, 42, 99, 0.2); }
      .c-column-card__thumb--placeholder::after {
        content: "NO IMAGE";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #122A63;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.2rem;
        line-height: 1;
        opacity: 0.6; }
      .c-column-card__thumb--placeholder.vz-02 {
        margin-bottom: 0;
        border-radius: 2rem 2rem 0 0; }
  .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: #122A63;
    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;
    top: 0 !important; }
  .p-drawer__inner {
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18rem 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: 6rem;
    width: 100%;
    max-width: 120rem; }
    .p-drawer__columns--asymmetric {
      grid-template-columns: 1.7fr 2fr; }
    @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 #122A63; }
    .p-drawer__heading-icon {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 6rem;
      height: 6rem;
      color: #122A63; }
      .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: #122A63;
      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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", 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;
    display: grid;
    gap: 0 2rem;
    grid-template-columns: 1fr 1fr; }
    @media screen and (max-width: 767px) {
      .p-drawer__menu {
        grid-template-columns: 1fr; } }
    .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: .5rem 0 .5rem 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 #122A63;
        transform: translateY(-50%);
        transition: transform 0.25s ease; }
      @media (hover: hover) {
        .p-drawer__menu > li > a:hover {
          color: #122A63;
          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 > li > a.d-active {
        color: #CBA54B; }
    .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: #122A63;
            transform: translateY(-50%);
            transition: width 0.25s ease; }
          @media (hover: hover) {
            .p-drawer__menu .sub-menu li a:hover {
              color: #122A63;
              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(18, 42, 99, 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 #122A63; }
  .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: #122A63; }
    .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: #122A63; }
    @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(18, 42, 99, 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: #122A63;
      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 a,
        .c-author__table dl dd a {
          text-decoration: underline; }
      .c-author__table dl dt {
        width: 16rem;
        background: #122A63;
        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(18, 42, 99, 0.08);
  border: 1px solid rgba(18, 42, 99, 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 #122A63;
    text-align: left !important;
    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: #122A63; }
    @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(18, 42, 99, 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.3rem;
        width: 0;
        height: 0;
        border-top: 0.5rem solid transparent;
        border-bottom: 0.5rem solid transparent;
        border-left: 0.7rem solid #122A63; }
        @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(18, 42, 99, 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 #122A63;
            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: #122A63; } }
        @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: #122A63;
    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 #122A63;
      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 #122A63;
        border-right: 0.2rem solid #122A63;
        transform: translateY(-50%) rotate(45deg);
        transition: right 0.2s ease; }
      @media (hover: hover) {
        #toc_container.toc--button .toc_list > li:hover {
          background: #122A63; }
          #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 #122A63; }
    .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: #122A63;
        border: 0.15rem solid #122A63;
        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: #122A63;
            color: #fff;
            box-shadow: 0 0.2rem 0.6rem rgba(18, 42, 99, 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: #122A63;
        color: #fff;
        border-color: #122A63;
        box-shadow: 0 0.2rem 0.6rem rgba(18, 42, 99, 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(18, 42, 99, 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 #122A63;
        transform: translateY(-50%); }
      @media (hover: hover) {
        .catalogue-list--stacked ul a:hover, .catalogue-list--stacked ol a:hover {
          background: transparent;
          color: #122A63;
          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 #122A63;
    line-height: 1.3; }
    .c-sitemap__title .ja {
      display: inline-block;
      margin-right: 1rem;
      font-size: 2.2rem;
      font-weight: 700;
      color: #122A63;
      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: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
      font-size: 1.6rem;
      font-weight: 500;
      color: #122A63;
      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(18, 42, 99, 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 #122A63; }
        @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: #122A63; } }
  .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: #122A63;
        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: #122A63;
            text-decoration: underline; } }

.p-top_info {
  background: #faf3eb url(assets/img/info-bg01.png) no-repeat center bottom;
  background-size: contain;
  padding: 13.5rem 0 17rem;
  position: relative; }
  .p-top_info::before {
    content: "";
    position: absolute;
    width: 16.2rem;
    height: 14.3rem;
    bottom: 8.4rem;
    left: 7.5rem;
    background: url(assets/img/info-icon01.png) no-repeat center;
    background-size: contain; }
  .p-top_info::after {
    content: "";
    position: absolute;
    width: 10.9rem;
    height: 24.4rem;
    bottom: 10rem;
    right: 26.4rem;
    background: url(assets/img/info-icon02.png) no-repeat center;
    background-size: contain; }
  .p-top_info__gp {
    gap: 7.5rem; }
    .p-top_info__gp--box {
      width: calc((100% - 7.501rem) / 2);
      background: #fff;
      border-radius: 2rem;
      box-shadow: 0 0.2rem 1.6rem rgba(0, 0, 0, 0.06);
      padding: 3rem 3.2rem 4.5rem; }
      .p-top_info__gp--box.vz-01 {
        background-image: url(assets/img/news-icon01.jpg);
        background-position: top right 5rem;
        background-repeat: no-repeat;
        background-size: 15.3rem; }
  .p-top_info__list--01 {
    height: 25.9rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-bottom: 4rem; }
    .p-top_info__list--01 li {
      background: #fafbfd;
      border: #e8edf5 solid 1px;
      margin-bottom: 1.2rem;
      border-radius: 1.2rem;
      display: flex;
      justify-content: space-between;
      padding: 2.2rem 8rem 2.2rem 1.8rem; }
      .p-top_info__list--01 li a {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center; }
      .p-top_info__list--01 li .item {
        color: #333333;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 175%;
        letter-spacing: 0;
        position: relative; }
        .p-top_info__list--01 li .item:first-child {
          padding-left: 5.5rem; }
          .p-top_info__list--01 li .item:first-child::before {
            content: "";
            position: absolute;
            width: 4rem;
            height: 4rem;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            background: url(assets/img/title-icon04.png) no-repeat center;
            background-size: contain; }
      .p-top_info__list--01 li:nth-child(2) .item:first-child::before {
        background-image: url(assets/img/title-icon05.png); }
      .p-top_info__list--01 li:nth-child(2) .item:last-child {
        color: #e05050; }
        .p-top_info__list--01 li:nth-child(2) .item:last-child::before, .p-top_info__list--01 li:nth-child(2) .item:last-child::after {
          border-color: #e05050; }
      .p-top_info__list--01 li:last-child {
        margin-bottom: 0; }

.p-top__news {
  box-shadow: 0 0.4rem 2.4rem rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0.5rem 1.6rem 2rem;
  margin-bottom: 4rem;
  border-radius: 1rem; }
  .p-top__news .os-theme-dark > .os-scrollbar,
  .p-top__news .os-theme-light > .os-scrollbar {
    padding: 0;
    background: transparent; }
    .p-top__news .os-theme-dark > .os-scrollbar::before,
    .p-top__news .os-theme-light > .os-scrollbar::before {
      content: "";
      position: absolute;
      width: 1px;
      height: 100%;
      top: 0;
      left: 0.5rem;
      background: #eef1f8; }
  .p-top__news .os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
    background: #1a2c5b;
    width: 1.1rem;
    height: 1.1rem !important;
    min-height: auto; }
  .p-top__news .os-theme-dark > .os-scrollbar-vertical,
  .p-top__news .os-theme-light > .os-scrollbar-vertical {
    width: 1.1rem; }
  .p-top__news .os-theme-dark > .os-scrollbar-vertical .os-scrollbar-handle:before,
  .p-top__news .os-theme-light > .os-scrollbar-vertical .os-scrollbar-handle:before {
    left: 0;
    right: 0; }
  .p-top__news .os-host-resize-disabled.os-host-scrollbar-horizontal-hidden
  > .os-scrollbar-vertical {
    top: 2.3rem; }

.c-news-mini {
  height: 23rem;
  padding-right: 1.7rem; }

.p-news__list li a {
  border-bottom: #f0ece6 solid 1px;
  display: flex;
  position: relative;
  padding: 2.6rem 6rem 2.6rem 7.5rem; }
  .p-news__list li a::before {
    content: "";
    position: absolute;
    width: 5rem;
    height: 5rem;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    background: url(assets/img/title-icon03.png) no-repeat center;
    background-size: contain;
    border-radius: 100%; }
  .p-news__list li a::after {
    content: "›";
    font-size: 4.4rem;
    color: #113874;
    position: absolute;
    top: 50%;
    right: 4rem;
    transform: translateY(-50%);
    font-weight: 300; }
  .p-news__list li a time,
  .p-news__list li a span {
    color: #333;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0; }
  .p-news__list li a time {
    color: #555;
    width: 12rem; }
  .p-news__list li a span {
    width: calc(100% - 12rem); }

.p-top__title--01 {
  color: #1a2c5b;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
  padding-left: 11.4rem;
  margin-bottom: 3rem; }
  .p-top__title--01::before {
    content: "";
    position: absolute;
    width: 8rem;
    height: 8rem;
    top: 0;
    left: 0;
    z-index: -1;
    background: url(assets/img/title-icon01.png) no-repeat center;
    background-size: contain;
    border-radius: 100%; }
  .p-top__title--01 span {
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem; }
    .p-top__title--01 span::after {
      content: "";
      position: absolute;
      width: 6.5rem;
      height: 0.3rem;
      bottom: 0;
      left: 0;
      z-index: -1;
      background: url(assets/img/line-icon01.png) no-repeat center;
      background-size: contain; }
  .p-top__title--01.vz-02::before {
    background-image: url(assets/img/title-icon02.png); }

.p-top__button--01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32rem;
  height: 6rem;
  border-radius: 6rem;
  border: #1a2c5b solid 1px;
  color: #1a2c5b;
  font-size: var(--size-p);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  transition: all 0.35s; }
  .p-top__button--01 a span {
    position: relative;
    padding-right: 3.7rem; }
    .p-top__button--01 a span::before {
      content: "→";
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0;
      transition: all 0.35s; }
  .p-top__button--01 a:hover {
    background: #1a2c5b;
    color: #fff; }

.p-slide {
  overflow: hidden;
  padding: 5.3rem 6.3rem 4.7rem; }
  @media screen and (max-width: 960px) {
    .p-slide {
      padding: 2.3rem 1.5rem 1.7rem; } }
  .p-slide__list {
    display: flex;
    width: max-content;
    animation: slide-left 20s linear infinite; }
  .p-slide__item {
    margin-right: 1.6rem; }
    @media screen and (max-width: 960px) {
      .p-slide__item {
        margin-right: 1.2rem; } }
    .p-slide__item img {
      width: 28.5rem;
      border-radius: 1.4rem; }
      @media screen and (max-width: 960px) {
        .p-slide__item img {
          width: 15.5rem;
          border-radius: 1rem; } }

.p-columnn {
  background: #fcf7f1 url(assets/img/column-bg01.png) no-repeat center bottom;
  background-size: contain;
  padding: 0 0 7.5rem;
  position: relative;
  z-index: 0; }
  .p-columnn::before {
    content: "";
    position: absolute;
    width: 18rem;
    height: 24.4rem;
    background: url(assets/img/leaf-column01.png) no-repeat center/contain;
    bottom: 9rem;
    left: 6.4rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-columnn::before {
        display: none; } }
  .p-columnn::after {
    content: "";
    position: absolute;
    width: 15.4rem;
    height: 28.1rem;
    background: url(assets/img/leaf-column02.png) no-repeat center/contain;
    bottom: 47rem;
    right: 3.4rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-columnn::after {
        display: none; } }
  .p-columnn .p-top__title--02 {
    margin-bottom: -2.6rem;
    transform: translateY(-7rem); }
    @media screen and (max-width: 960px) {
      .p-columnn .p-top__title--02 {
        margin-bottom: 2.4rem;
        transform: inherit; } }
    .p-columnn .p-top__title--02::before {
      content: "";
      position: absolute;
      width: 13.5rem;
      height: 8.8rem;
      background: url(assets/img/leaf-column03.png) no-repeat center/contain;
      bottom: -1.3rem;
      right: -13.5rem;
      left: auto;
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-columnn .p-top__title--02::before {
          display: none; } }
  .p-columnn .p-top__title--02_ja {
    padding-bottom: 0.5rem; }
    .p-columnn .p-top__title--02_ja span {
      padding-bottom: 2.4rem; }
  .p-columnn .p-blog__list {
    display: flex;
    justify-content: center;
    gap: 4rem 5.8rem;
    flex-wrap: wrap;
    margin-bottom: 7.8rem; }
  .p-columnn .p-blog__item {
    width: calc((100% - 17.4rem) / 4); }
  .p-columnn .p-blog__card {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem; }
    .p-columnn .p-blog__card img {
      border-radius: 2rem 2rem 0 0;
      width: 100%;
      object-fit: cover;
      aspect-ratio: 4 / 2.8; }
  .p-columnn .p-blog__excerpt {
    color: #22201f;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.16rem; }
  .p-columnn .p-blog__title {
    color: #22201f;
    font-size: 2rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 0.7rem; }

.p-faq {
  background: #faf3eb url(assets/img/faq-bg01.png) no-repeat center bottom;
  background-size: contain;
  padding: 0 0 17.4rem;
  position: relative;
  z-index: 0; }
  .p-faq::before {
    content: "";
    position: absolute;
    width: 16.2rem;
    height: 30.6rem;
    background: url(assets/img/faq-img01.png) no-repeat center/contain;
    top: 30rem;
    left: 5.8rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-faq::before {
        display: none; } }
  .p-faq::after {
    content: "";
    position: absolute;
    width: 13.5rem;
    height: 8.8rem;
    background: url(assets/img/faq-img02.png) no-repeat center/contain;
    top: 2.6rem;
    right: 18.5rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-faq::after {
        display: none; } }
  .p-faq .p-top__title--02 {
    margin-bottom: -1rem;
    transform: translateY(-5.6rem); }
    @media screen and (max-width: 960px) {
      .p-faq .p-top__title--02 {
        transform: inherit; } }
    .p-faq .p-top__title--02_ja {
      padding-bottom: 0.7rem; }
      .p-faq .p-top__title--02_ja .item_ja {
        padding-bottom: 2.5rem; }
  .p-faq--flow {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem; }
  .p-faq--flow_item {
    background: #fff;
    border-radius: 1rem; }
    .p-faq--flow_item.active .p-faq--flow_q::after {
      transform: translateY(-50%) rotate(90deg) scaleX(-1); }
  .p-faq--flow_q {
    padding: 2.6rem 9.3rem;
    position: relative;
    z-index: 0;
    border-radius: 1rem;
    border-bottom: 1px solid #f0ece6;
    cursor: pointer; }
    .p-faq--flow_q p {
      color: #333;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0; }
    .p-faq--flow_q::before {
      content: "Q";
      position: absolute;
      z-index: -1;
      top: 50%;
      transform: translateY(-50%);
      left: 2.8rem;
      width: 5rem;
      height: 5rem;
      border-radius: 100%;
      background: #eef1f8;
      display: flex;
      justify-content: center;
      color: #1a2c5b;
      font-size: 3.6rem;
      font-weight: 400;
      line-height: 115%;
      letter-spacing: -0.03rem; }
    .p-faq--flow_q::after {
      content: "›";
      position: absolute;
      color: #113874;
      font-size: 4.4rem;
      font-weight: 100;
      line-height: 150%;
      letter-spacing: 0rem;
      top: 50%;
      transform: translateY(-50%) rotate(90deg) scaleX(1);
      right: 3rem;
      z-index: -1;
      transition: all 0.35s; }
  .p-faq--flow_a {
    padding: 2.6rem 9.3rem;
    position: relative;
    z-index: 0;
    border-radius: 0 0 1rem 1rem;
    border-bottom: 1px solid #f0ece6; }
    .p-faq--flow_a.tn-dn {
      display: none; }
    .p-faq--flow_a p {
      color: #333;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0; }
    .p-faq--flow_a::before {
      content: "A";
      position: absolute;
      z-index: -1;
      top: 50%;
      transform: translateY(-50%);
      left: 3.8rem;
      color: #e05050;
      font-size: 3.6rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: -0.03rem; }

.p-greeting {
  padding: 9.5rem 0 24.3rem 0;
  background: url(assets/img/bg_greeting02.png), url(assets/img/bg_greeting01.jpg);
  background-color: #fcf7f1;
  background-repeat: no-repeat;
  background-size: contain, cover;
  background-position: center bottom, center top;
  position: relative;
  z-index: 0; }
  .p-greeting::before {
    content: "";
    position: absolute;
    width: 20.9rem;
    height: 19.2rem;
    background: url(assets/img/icon_visit07.png) no-repeat center/contain;
    bottom: 0.3rem;
    left: 7.1rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-greeting::before {
        display: none; } }
  .p-greeting::after {
    content: "";
    position: absolute;
    width: 10.6rem;
    height: 22.8rem;
    background: url(assets/img/greeting-img02.png) no-repeat center/contain;
    top: 62.3rem;
    right: 13.1rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-greeting::after {
        display: none; } }
  .p-greeting .p-top__title--02 {
    margin-bottom: 4rem;
    position: relative;
    z-index: 0; }
    .p-greeting .p-top__title--02::before {
      content: "";
      position: absolute;
      width: 5.3rem;
      height: 5rem;
      background: url(assets/img/greeting-img03.png) no-repeat center/contain;
      top: 9rem;
      left: -12.9rem;
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-greeting .p-top__title--02::before {
          display: none; } }
    .p-greeting .p-top__title--02::after {
      content: "";
      position: absolute;
      width: 7.5rem;
      height: 10.2rem;
      background: url(assets/img/greeting-img04.png) no-repeat center/contain;
      top: 4rem;
      right: -9.3rem;
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-greeting .p-top__title--02::after {
          display: none; } }
    .p-greeting .p-top__title--02_ja {
      padding-bottom: 0.7rem; }
      .p-greeting .p-top__title--02_ja .item_ja {
        padding-bottom: 2.5rem; }
  .p-greeting--author {
    margin-left: -22rem;
    margin-bottom: -2.4rem;
    width: calc(100% + 44rem); }
    @media screen and (max-width: 960px) {
      .p-greeting--author {
        margin-left: 0;
        margin-bottom: 3rem;
        width: 100%; } }
  .p-greeting--box {
    display: grid;
    gap: 3rem; }
  .p-greeting--info {
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    position: relative;
    z-index: 0; }
  .p-greeting--content {
    background: #fff;
    padding: 3.5rem;
    border-radius: 2rem;
    width: 100%;
    position: relative;
    z-index: 0; }
    .p-greeting--content::before {
      content: "";
      position: absolute;
      width: 14.9rem;
      height: 13.5rem;
      background: url(assets/img/greeting-img05.png) no-repeat center/contain;
      bottom: 0;
      left: 0;
      z-index: -1;
      border-radius: 0 0 0 2rem; }
      @media screen and (max-width: 960px) {
        .p-greeting--content::before {
          width: 11.9rem;
          height: 10.5rem; } }
    .p-greeting--content::after {
      content: "";
      position: absolute;
      width: 11.3rem;
      height: 10.4rem;
      background: url(assets/img/greeting-img06.png) no-repeat center/contain;
      bottom: 6.5rem;
      right: 3.8rem;
      z-index: -1; }
      @media screen and (max-width: 767px) {
        .p-greeting--content::after {
          display: none; } }
    .p-greeting--content .title {
      margin-bottom: 3rem;
      position: relative;
      z-index: 0;
      text-align: center; }
      @media screen and (max-width: 960px) {
        .p-greeting--content .title {
          margin-bottom: 1rem; } }
      .p-greeting--content .title p {
        color: #1a2c5b;
        font-size: 2.9rem;
        font-weight: 700;
        line-height: 115%;
        letter-spacing: 0.076rem;
        text-align: center;
        position: relative;
        display: inline;
        background: linear-gradient(transparent 60%, #feebe3 60%); }
        @media screen and (max-width: 960px) {
          .p-greeting--content .title p {
            font-size: 2rem;
            display: inline;
            background: linear-gradient(transparent 60%, #feebe3 60%); } }
    .p-greeting--content .sub-title {
      margin-bottom: 1.8rem; }
      @media screen and (max-width: 960px) {
        .p-greeting--content .sub-title {
          margin-bottom: 1rem; } }
      .p-greeting--content .sub-title p {
        color: #333;
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.09rem;
        text-align: center; }
        @media screen and (max-width: 960px) {
          .p-greeting--content .sub-title p {
            font-size: 1.6rem; } }
    .p-greeting--content .content {
      margin-bottom: 3.2rem; }
      .p-greeting--content .content p {
        color: #555;
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 200%;
        letter-spacing: 0rem;
        text-align: center; }
        @media screen and (max-width: 960px) {
          .p-greeting--content .content p {
            text-align: justify;
            font-size: 1.5rem; } }
    .p-greeting--content .list-btn {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 2.5rem;
      flex-wrap: wrap; }
      .p-greeting--content .list-btn .btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5.8rem;
        border: 1px solid #1a2c5b;
        background: #fff;
        padding: 1rem 2.5rem;
        transition: all 0.35s;
        color: #1a2c5b;
        font-size: 1.8rem;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.06rem; }
        @media screen and (max-width: 960px) {
          .p-greeting--content .list-btn .btn a {
            font-size: 1.5rem; } }
        .p-greeting--content .list-btn .btn a .text {
          padding-left: 4.8rem;
          padding-right: 3.8rem;
          position: relative;
          z-index: 0; }
          .p-greeting--content .list-btn .btn a .text::before {
            content: "";
            position: absolute;
            width: 2.3rem;
            height: 2.4rem;
            -webkit-mask: url(assets/img/greeting-img07.png) center/100% no-repeat;
            mask: url(assets/img/greeting-img07.png) center/100% no-repeat;
            background: #1a2c5b;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            z-index: -1;
            transition: all 0.35s; }
          .p-greeting--content .list-btn .btn a .text::after {
            content: "→";
            position: absolute;
            color: #1a2c5b;
            font-size: 1.8rem;
            font-weight: 500;
            line-height: 150%;
            letter-spacing: 0.06rem;
            top: 50%;
            transform: translateY(-50%);
            right: 0rem;
            z-index: -1;
            transition: all 0.35s; }
        .p-greeting--content .list-btn .btn a:hover {
          background: #1a2c5b;
          color: #fff; }
          .p-greeting--content .list-btn .btn a:hover .text::after {
            color: #fff; }
          .p-greeting--content .list-btn .btn a:hover .text::before {
            background: #fff; }
      .p-greeting--content .list-btn .btn:last-child a .text::before {
        width: 3rem;
        height: 3rem;
        -webkit-mask: url(assets/img/greeting-img08.png) center/100% no-repeat;
        mask: url(assets/img/greeting-img08.png) center/100% no-repeat;
        background: #1a2c5b;
        transition: all 0.35s; }
      .p-greeting--content .list-btn .btn:last-child a:hover .text::before {
        background: #fff; }
  .p-greeting .img-doctor {
    display: none; }
  .p-greeting--subcontent {
    background: #fff;
    border-radius: 2rem;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; }
    @media screen and (max-width: 960px) {
      .p-greeting--subcontent {
        left: 0;
        top: -10.4rem;
        border-radius: 1rem;
        padding: 1rem 2rem; } }
    .p-greeting--subcontent.tn-02 {
      right: -24.5rem;
      left: auto; }
      @media screen and (max-width: 960px) {
        .p-greeting--subcontent.tn-02 {
          right: 0; } }
    .p-greeting--subcontent .position p {
      color: #888;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.072rem; }
      @media screen and (max-width: 960px) {
        .p-greeting--subcontent .position p {
          font-size: 1.4rem;
          letter-spacing: 0; } }
    .p-greeting--subcontent .name-ja p {
      color: #122a63;
      font-size: 2.4rem;
      font-weight: 700;
      line-height: 150%;
      letter-spacing: 0.072rem; }
      @media screen and (max-width: 960px) {
        .p-greeting--subcontent .name-ja p {
          font-size: 1.6rem;
          letter-spacing: 0; } }
    .p-greeting--subcontent .name-en p {
      color: #888;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.072rem; }
      @media screen and (max-width: 960px) {
        .p-greeting--subcontent .name-en p {
          font-size: 1.4rem;
          letter-spacing: 0; } }
  .p-greeting--calendar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
    padding: 1.5rem; }
    .p-greeting--calendar .title {
      margin-bottom: 1.8rem; }
      .p-greeting--calendar .title p {
        color: #333333;
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.09rem;
        text-align: center; }
    .p-greeting--calendar .list-calendar {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
      width: 100%; }
      .p-greeting--calendar .list-calendar .doctor-calendar {
        width: 100%;
        background: #ccc; }
      .p-greeting--calendar .list-calendar iframe {
        width: 100%;
        border: none !important; }

.p-feature {
  background: #faf3eb;
  padding: 3.8rem 0;
  position: relative;
  z-index: 0; }
  .p-feature::before {
    content: "";
    position: absolute;
    width: 20.4rem;
    height: 19.6rem;
    background: url(assets/img/img-fix-feature01.png) no-repeat center/contain;
    top: -8.3rem;
    right: 4.8rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-feature::before {
        display: none; } }
  .p-feature .p-top__title--02 {
    margin-bottom: 8.5rem; }
  .p-feature .p-top__title--02_ja {
    padding-bottom: 0.7rem; }
    .p-feature .p-top__title--02_ja .fz-color {
      color: #e05050;
      font-size: 8.4rem;
      font-weight: 500;
      line-height: 150%;
      letter-spacing: 0; }
      @media screen and (max-width: 960px) {
        .p-feature .p-top__title--02_ja .fz-color {
          font-size: 5.4rem; } }
    .p-feature .p-top__title--02_ja .item_ja {
      padding-bottom: 0.5rem; }
  .p-feature .multiple-items {
    position: relative;
    padding: 0 18.5rem; }
    @media screen and (max-width: 960px) {
      .p-feature .multiple-items {
        padding: 0 1rem; } }
    .p-feature .multiple-items .slick-track {
      margin-bottom: 4.8rem; }
    .p-feature .multiple-items .slick-arrow {
      font-size: 0;
      position: absolute;
      z-index: 0;
      width: 6.2rem;
      height: 6.2rem;
      border-radius: 100%;
      background: #fff;
      top: 1.5rem;
      transform: translateY(-165%);
      left: 75.2rem; }
      .p-feature .multiple-items .slick-arrow::before {
        content: "→";
        position: absolute;
        color: #183e76;
        font-size: 3rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.06rem;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scaleX(-1);
        z-index: -1; }
      .p-feature .multiple-items .slick-arrow.slick-next {
        right: 75.2rem;
        left: auto; }
        .p-feature .multiple-items .slick-arrow.slick-next::before {
          transform: translate(-50%, -50%) rotate(0deg); }
      @media screen and (max-width: 960px) {
        .p-feature .multiple-items .slick-arrow {
          top: 50%;
          transform: translateY(-50%);
          z-index: 2;
          width: 5rem;
          height: 5rem;
          background: transparent;
          border-radius: 0; }
          .p-feature .multiple-items .slick-arrow::before {
            content: "";
            background: #183e76;
            clip-path: polygon(0 0, 0% 100%, 100% 50%);
            width: 2.5rem;
            height: 3.5rem; }
          .p-feature .multiple-items .slick-arrow.slick-prev {
            left: 0; }
            .p-feature .multiple-items .slick-arrow.slick-prev::before {
              left: 30%; }
          .p-feature .multiple-items .slick-arrow.slick-next {
            right: 0; }
            .p-feature .multiple-items .slick-arrow.slick-next::before {
              left: 70%; } }
    .p-feature .multiple-items .slick-dots {
      position: absolute;
      top: -8.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      width: 9rem;
      height: 6rem;
      margin: 0;
      padding: 0;
      list-style: none; }
      .p-feature .multiple-items .slick-dots::before {
        content: "";
        position: absolute;
        width: 6rem;
        height: 1px;
        background: #555;
        top: 2.9rem;
        left: 3.2rem;
        transform: rotate(-45deg); }
      .p-feature .multiple-items .slick-dots::after {
        content: "05";
        position: absolute;
        right: 0;
        bottom: 0;
        color: #555;
        font-size: 2.2rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0; }
      .p-feature .multiple-items .slick-dots li {
        display: none; }
        .p-feature .multiple-items .slick-dots li.slick-active {
          display: block; }
          .p-feature .multiple-items .slick-dots li.slick-active button {
            animation: numberBounce 0.45s ease; }
        .p-feature .multiple-items .slick-dots li button {
          border: none;
          padding: 0;
          background: transparent;
          cursor: pointer;
          color: #162e6a;
          font-size: 3.6rem;
          font-weight: 400;
          line-height: 150%;
          letter-spacing: 0; }
@keyframes numberBounce {
  0% {
    transform: translateY(0) scale(1); }
  45% {
    transform: translateY(-0.8rem) scale(1.12); }
  100% {
    transform: translateY(0) scale(1); } }
  .p-feature .item a {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    background: #fefefe;
    padding: 2.5rem 3.2rem 4.5rem;
    border-radius: 3rem;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    position: relative;
    z-index: 0;
    transition: all 0.35s;
    overflow: hidden; }
    .p-feature .item a::before {
      content: "";
      position: absolute;
      width: 14.425rem;
      height: 14.425rem;
      background: #3c70b6;
      transform: rotate(-45deg);
      right: -7.2rem;
      bottom: -8.5rem;
      z-index: -1; }
    .p-feature .item a:hover {
      background: #f1f2f7; }
      .p-feature .item a:hover .image img {
        transform: scale(1.2); }
  .p-feature .title {
    position: relative;
    z-index: 0;
    padding: 1rem 0 1rem 9.7rem;
    margin-bottom: 2.5rem;
    margin-left: 0.4rem;
    min-height: 9.1rem;
    display: flex;
    align-items: center; }
    .p-feature .title::before {
      content: attr(data-text);
      position: absolute;
      top: 50%;
      left: 0;
      transform: translatey(-50%);
      z-index: -1;
      color: #fefefe;
      font-size: 5rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: -0.03rem;
      width: 8rem;
      height: 8rem;
      background: #162e6a;
      display: flex;
      justify-content: center;
      border-radius: 100%; }
    .p-feature .title .title-text {
      color: #122a63;
      font-size: 2.1rem;
      font-weight: 700;
      line-height: 170%;
      letter-spacing: 0.072rem;
      transform: translateY(3px); }
  .p-feature .image {
    margin-bottom: 2rem;
    padding: 0 0.6rem;
    overflow: hidden;
    border-radius: 2rem; }
    .p-feature .image img {
      border-radius: 2rem;
      width: 100%;
      object-fit: cover;
      transition: all 0.35s; }
  .p-feature .subtitle {
    margin-bottom: 1rem;
    min-height: 6.303rem; }
    .p-feature .subtitle .subtitle-text {
      color: #f5a720;
      font-size: 1.8rem;
      font-weight: 700;
      line-height: 175%;
      letter-spacing: 0rem; }
  .p-feature .content {
    min-height: 15.758rem; }
    .p-feature .content .content-text {
      color: #555;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 175%;
      letter-spacing: 0rem; }

.p-feature--02 {
  background: #fcf7f1 url(assets/img/bg-fea02.png) no-repeat center bottom;
  background-size: contain;
  padding: 9.5rem 0 16.5rem;
  position: relative;
  z-index: 0; }
  .p-feature--02::before {
    content: "";
    position: absolute;
    width: 16.2rem;
    height: 30.6rem;
    background: url(assets/img/fea02-icon04.png) no-repeat center/contain;
    bottom: 8.7rem;
    left: 8.4rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-feature--02::before {
        display: none; } }
  .p-feature--02::after {
    content: "";
    position: absolute;
    width: 15.4rem;
    height: 28.1rem;
    background: url(assets/img/fea02-icon05.png) no-repeat center/contain;
    bottom: 48.8rem;
    right: 9.8rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-feature--02::after {
        display: none; } }
  .p-feature--02__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.5rem; }
    @media screen and (max-width: 767px) {
      .p-feature--02__box {
        gap: 5rem; } }
  .p-feature--02__item {
    width: calc((100% - 3.5rem) / 2); }
    @media screen and (max-width: 767px) {
      .p-feature--02__item {
        width: 100%; } }
    .p-feature--02__item a {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #fff;
      padding: 4rem 2.7rem 7rem 4rem;
      border-radius: 4rem;
      position: relative;
      z-index: 0;
      border: 3px solid transparent;
      transition: all 0.35s; }
      .p-feature--02__item a::before {
        position: absolute;
        content: "›";
        background: #f5a720;
        border-radius: 50%;
        width: 6.6rem;
        height: 6.6rem;
        border: 3px solid #fff;
        color: #fff;
        font-size: 3.6rem;
        font-weight: 300;
        line-height: 130%;
        letter-spacing: 0.032rem;
        display: flex;
        justify-content: center;
        bottom: -3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        transition: all 0.35s; }
      .p-feature--02__item a .image {
        width: 100%;
        position: relative;
        z-index: 0;
        margin-bottom: 5.5rem; }
        .p-feature--02__item a .image img {
          width: 100%;
          object-fit: cover; }
        .p-feature--02__item a .image::before {
          content: "";
          position: absolute;
          width: 9.4rem;
          height: 9.4rem;
          background: url(assets/img/fea02-icon01.png) no-repeat center/contain;
          left: 50%;
          transform: translateX(-50%);
          bottom: -4.7rem;
          z-index: 0; }
      .p-feature--02__item a .title {
        color: #113063;
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.252rem;
        text-align: center;
        position: relative;
        z-index: 0;
        margin-bottom: 5rem; }
        .p-feature--02__item a .title::before {
          content: "";
          position: absolute;
          width: 6.5rem;
          height: 0.3rem;
          background: url(assets/img/line-icon01.png) no-repeat center/contain;
          left: 50%;
          transform: translateX(-50%);
          bottom: -2.7rem;
          z-index: -1; }
      .p-feature--02__item a .content {
        color: #333;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 145%;
        letter-spacing: 0rem;
        text-align: center;
        margin-bottom: 3rem; }
      .p-feature--02__item a .list-info {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 1.5rem 1.8rem; }
        .p-feature--02__item a .list-info .info {
          color: #113063;
          font-size: 1.6rem;
          font-weight: 400;
          line-height: 150%;
          letter-spacing: 0rem;
          text-align: center;
          background: #f7f1e8;
          padding: 0.9rem 1.5rem;
          border-radius: 0.8rem; }
      .p-feature--02__item a:hover {
        border: 3px solid #f5a720; }
        .p-feature--02__item a:hover::before {
          background: #fff;
          border-color: #f5a720;
          color: #f5a720; }
    .p-feature--02__item:last-child a .image::before {
      background: url(assets/img/fea02-icon02.png) no-repeat center/contain; }

@keyframes slide-left {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-top_info::before {
    width: 14.2rem;
    height: 12.3rem;
    bottom: 11.4rem;
    left: 3.5rem; }
  .p-top_info::after {
    width: 8.9rem;
    height: 22.4rem;
    bottom: 10rem;
    right: 3.4rem; }

  .p-columnn::before {
    width: 11rem;
    height: 17.4rem;
    bottom: 5rem;
    left: 1.4rem; }
  .p-columnn::after {
    width: 9.4rem;
    height: 15.1rem;
    bottom: 12rem;
    right: 1.4rem; }
  .p-columnn .p-blog__list {
    gap: 4rem 2.8rem; }
  .p-columnn .p-blog__item {
    width: calc((100% - 8.4rem) / 4); }
  .p-columnn .p-top__title--02::before {
    width: 11.5rem;
    height: 7.8rem;
    bottom: -2.3rem;
    right: -5.5rem; }

  .p-faq::before {
    width: 10.2rem;
    height: 19.6rem;
    top: 43.3rem;
    left: 3rem; }
  .p-faq::after {
    width: 11.5rem;
    height: 7.8rem;
    top: 10.6rem;
    right: 8.1rem; }

  .p-greeting .p-top__title--02 {
    margin-bottom: 1rem; }
    .p-greeting .p-top__title--02::before {
      top: -5rem;
      left: -8.9rem; }
    .p-greeting .p-top__title--02::after {
      top: -4rem;
      right: -8.3rem; }
  .p-greeting--author {
    margin-left: -6rem;
    margin-bottom: 2rem;
    width: calc(100% + 12rem); }
  .p-greeting--info {
    max-width: 94rem; }
  .p-greeting--subcontent {
    top: -6.4rem;
    left: -22.5rem; }
    .p-greeting--subcontent.tn-02 {
      right: -22.5rem; }

  .p-feature::before {
    top: -5.3rem;
    right: 6.8rem;
    width: 14.4rem;
    height: 13.6rem; }
  .p-feature .multiple-items {
    padding: 0 12.5rem; }
    .p-feature .multiple-items .slick-arrow {
      width: 7.2rem;
      height: 7.2rem;
      left: 51.2rem; }
      .p-feature .multiple-items .slick-arrow.slick-next {
        right: 51.2rem; }
      .p-feature .multiple-items .slick-arrow::before {
        font-size: 2.8rem; }
    .p-feature .multiple-items .item a {
      margin-left: 1rem;
      margin-right: 1rem;
      padding: 1rem 1.5rem 2.5rem; }
      .p-feature .multiple-items .item a::before {
        right: -8.2rem;
        bottom: -9.5rem; }
    .p-feature .multiple-items .title {
      padding: 1rem 0 1rem 7rem;
      margin-bottom: 1.5rem;
      min-height: 9.1rem; }
      .p-feature .multiple-items .title .u-pc-only {
        display: none !important; }
      .p-feature .multiple-items .title::before {
        width: 6rem;
        height: 6rem;
        line-height: 185%;
        font-size: 3rem; }
    .p-feature .multiple-items .subtitle {
      min-height: 10rem; }
      .p-feature .multiple-items .subtitle .subtitle-text {
        font-size: 1.7rem;
        font-weight: 500;
        line-height: 185%;
        letter-spacing: 0.2rem; }
    .p-feature .multiple-items .content {
      min-height: 24rem; }
      .p-feature .multiple-items .content .content-text {
        letter-spacing: 0.2rem; }

  .p-feature--02::before {
    bottom: 8.7rem;
    left: 1.4rem;
    width: 8.2rem;
    height: 15.6rem; }
  .p-feature--02::after {
    width: 8.4rem;
    height: 13.1rem;
    bottom: 45.8rem;
    right: 1rem; } }
@media (max-width: 960px) {
  .p-top_info {
    padding: 3.5rem 0 6rem; }
    .p-top_info__gp {
      gap: 2rem; }
      .p-top_info__gp--box {
        width: 100%;
        padding: 1rem 1.5rem 2rem; }
        .p-top_info__gp--box.vz-01 {
          background-position: top -0.3rem right 1rem;
          background-size: 9.3rem;
          border-radius: 1rem; }
    .p-top_info__list--01 {
      height: auto;
      margin-bottom: 2rem; }
      .p-top_info__list--01 li {
        padding: 1.5rem 1.5rem 1.5rem 1rem; }
        .p-top_info__list--01 li .item {
          font-size: 1.5rem; }
          .p-top_info__list--01 li .item:first-child::before {
            width: 4rem;
            height: 4rem; }
          .p-top_info__list--01 li .item:last-child::before {
            width: 1.6rem;
            height: 1.6rem; }
          .p-top_info__list--01 li .item:last-child::after {
            width: 0.8rem;
            height: 0.8rem;
            left: 0.4rem; }
    .p-top_info::before {
      width: 8.2rem;
      height: 6.3rem;
      bottom: 72.4rem;
      left: 16.5rem; }
    .p-top_info::after {
      width: 4.9rem;
      height: 15.4rem;
      bottom: 2rem;
      right: 0.4rem; }

  .c-news-mini {
    height: 23.1rem; }

  .p-top__title--01 {
    font-size: 2.4rem;
    padding-left: 6.4rem;
    margin-bottom: 2rem; }
    .p-top__title--01::before {
      width: 5rem;
      height: 5rem; }
    .p-top__title--01 span {
      padding-bottom: 1rem; }

  .p-top__button--01 a {
    width: 25rem;
    height: 5rem; }

  .p-top__news {
    margin-bottom: 2rem;
    padding: 1.2rem 0.5rem 1.6rem 1rem; }

  .p-news__list li a {
    padding: 1.5rem 1.5rem 1.5rem 5rem;
    flex-direction: column; }
    .p-news__list li a::before {
      width: 4rem;
      height: 4rem; }
    .p-news__list li a::after {
      right: 0;
      font-size: 3rem; }
    .p-news__list li a time {
      width: 8.5rem;
      font-size: 1.5rem; }
    .p-news__list li a span {
      width: 100%;
      font-size: 1.5rem; }

  .p-columnn {
    padding: 0 0 3.5rem; }
    .p-columnn .p-blog__list {
      gap: 2rem 1.5rem;
      margin-bottom: 3.8rem; }
    .p-columnn .p-blog__item {
      width: calc((100% - 1.5rem) / 2); }
    .p-columnn .p-blog__card {
      gap: 1rem; }
      .p-columnn .p-blog__card img {
        border-radius: 1rem 1rem 0 0; }
    .p-columnn .p-blog__title {
      font-size: 1.6rem;
      letter-spacing: 0; }
    .p-columnn .p-blog__excerpt {
      font-size: 1.5rem;
      letter-spacing: 0; }

  .p-faq {
    padding: 0 0 5.4rem; }
    .p-faq .p-top__title--02 {
      margin-bottom: 2rem; }
    .p-faq--flow_item {
      background: rgba(26, 44, 96, 0.8); }
    .p-faq--flow_q {
      padding: 1rem 4.3rem 1rem 6.3rem;
      background: #fff;
      border-radius: 0.8rem; }
      .p-faq--flow_q p {
        font-size: 1.5rem; }
      .p-faq--flow_q::before {
        width: 3.5rem;
        height: 3.5rem;
        line-height: 145%;
        left: 1rem;
        font-size: 2rem; }
      .p-faq--flow_q::after {
        right: 1rem;
        font-size: 3.4rem; }
    .p-faq--flow_a {
      padding: 1rem 4.3rem 1rem 6.3rem; }
      .p-faq--flow_a p {
        font-size: 1.5rem;
        color: #fff; }
      .p-faq--flow_a::before {
        font-size: 2.5rem;
        left: 2rem; }

  .p-greeting {
    padding: 5rem 0 6.3rem 0;
    background: #fcf7f1 url(assets/img/bg_greeting02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center bottom; }
    .p-greeting .p-top__title--02 {
      margin-bottom: 2rem; }
    .p-greeting--content {
      padding: 1.5rem 1.5rem 6.5rem 1.5rem;
      margin-bottom: 2.5rem;
      border-radius: 1rem; }
      .p-greeting--content .content {
        margin-bottom: 1.2rem; }
      .p-greeting--content .list-btn {
        gap: 1rem;
        justify-content: flex-end; }
        .p-greeting--content .list-btn .btn a {
          padding: 1rem 1.5rem; }
          .p-greeting--content .list-btn .btn a .text {
            padding-left: 2.8rem;
            padding-right: 2.8rem; }
    .p-greeting--calendar .title {
      margin-bottom: 1.6rem; }
      .p-greeting--calendar .title p {
        font-size: 2rem; }
    .p-greeting--calendar .list-calendar {
      gap: 4rem; }
      .p-greeting--calendar .list-calendar .doctor-calendar {
        width: 100%; }
    .p-greeting .img-doctor {
      width: 100%;
      display: block;
      margin-bottom: 2rem; }
      .p-greeting .img-doctor img {
        width: 100%;
        object-fit: cover;
        border-radius: 1.5rem; }

  .p-feature {
    padding: 2.5rem 0 3rem; }
    .p-feature .multiple-items .slick-track {
      margin-bottom: 1.8rem; }
    .p-feature .multiple-items .item a {
      margin-left: 1rem;
      margin-right: 1rem;
      padding: 1rem 1.5rem 2rem;
      border-radius: 2rem; }
      .p-feature .multiple-items .item a::before {
        right: -10.2rem;
        bottom: -9.5rem; }
    .p-feature .multiple-items .title {
      padding: 1rem 0 1rem 7rem;
      margin-bottom: 0.5rem;
      min-height: 8.1rem;
      margin-left: 0; }
      .p-feature .multiple-items .title::before {
        width: 6rem;
        height: 6rem;
        line-height: 180%;
        font-size: 3rem; }
      .p-feature .multiple-items .title .title-text {
        font-size: 1.8rem; }
    .p-feature .multiple-items .image {
      margin-bottom: 1rem;
      padding: 0; }
    .p-feature .multiple-items .subtitle {
      margin-bottom: 0.5rem;
      min-height: 5.5rem; }
      .p-feature .multiple-items .subtitle .subtitle-text {
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 185%; }
    .p-feature .multiple-items .content {
      min-height: 19.5rem; }
      .p-feature .multiple-items .content .content-text {
        font-size: 1.5rem;
        line-height: 185%; }

  .p-feature--02__item a {
    padding: 1rem 1rem 5rem 1rem;
    border-radius: 2rem; }
    .p-feature--02__item a .image {
      margin-bottom: 3.5rem; }
      .p-feature--02__item a .image::before {
        width: 6.4rem;
        height: 6.4rem;
        bottom: -3rem; }
    .p-feature--02__item a .title {
      font-size: 2.8rem;
      margin-bottom: 3rem; }
      .p-feature--02__item a .title::before {
        bottom: -1rem; }
    .p-feature--02__item a .content {
      font-size: 1.5rem;
      line-height: 185%;
      margin-bottom: 2rem; }
    .p-feature--02__item a .list-info {
      gap: 1rem 1rem; }
      .p-feature--02__item a .list-info .info {
        font-size: 1.5rem;
        padding: 0.5rem 1rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-top_info {
    padding: 3.5rem 0 10rem; }
    .p-top_info__gp--box {
      width: calc((100% - 2rem) / 2); }
    .p-top_info__list--01 {
      height: 22.9rem; }
    .p-top_info::before {
      bottom: 44.4rem;
      left: 17.5rem; }
    .p-top_info::after {
      bottom: 5rem; }

  .p-slide__item img {
    width: 20.5rem; }

  .p-columnn {
    padding: 0 0 3.5rem; }
    .p-columnn .p-blog__list {
      gap: 3rem 1.5rem;
      margin-bottom: 3.8rem; }
    .p-columnn .p-blog__item {
      width: calc((100% - 3rem) / 3); }

  .p-faq {
    padding: 0 0 8.4rem; }
    .p-faq--flow_q {
      padding: 2rem 7.3rem 2rem 8.3rem; }
      .p-faq--flow_q::before {
        left: 2.5rem; }
      .p-faq--flow_q::after {
        right: 2rem; }
    .p-faq--flow_a {
      padding: 2rem 7.3rem 2rem 8.3rem; }
      .p-faq--flow_a::before {
        left: 3.5rem; }

  .p-greeting {
    padding: 2.5rem 0 10.3rem 0; }
    .p-greeting--subcontent {
      padding: 1.5rem 3rem;
      opacity: 0.8;
      left: 0;
      top: -13.6rem;
      border-radius: 1.5rem; }
      .p-greeting--subcontent.tn-02 {
        right: 0; }
    .p-greeting--content {
      padding: 1.5rem 8.5rem 6.5rem 8.5rem; }
      .p-greeting--content::before {
        width: 13.9rem;
        height: 12.5rem;
        border-radius: 0 0 0 1rem; }
      .p-greeting--content::after {
        width: 9.3rem;
        height: 8.4rem;
        bottom: 8.5rem;
        right: 3.8rem; }
      .p-greeting--content .title {
        margin-bottom: 2rem; }
      .p-greeting--content .sub-title {
        margin-bottom: 2rem; }
      .p-greeting--content .content {
        margin-bottom: 3rem; }
      .p-greeting--content .list-btn {
        justify-content: center;
        gap: 2rem; }
      .p-greeting--content .list-btn .btn a .text {
        padding-left: 3.8rem;
        padding-right: 3rem; }

  .p-feature--02 {
    padding: 12rem 0; }
    .p-feature--02__box {
      gap: 1.5rem; }
    .p-feature--02__item {
      width: calc((100% - 1.5rem) / 2); }
      .p-feature--02__item a {
        min-height: 62.2rem; } }
@media (max-width: 767px) {
  .p-greeting--content .list-btn .btn a {
    min-width: 25.8rem; } }
#tinymce .map > span,
#tinymce .c-map > span {
  border: 0;
  display: block;
  height: 100%;
  width: 100%; }
#tinymce .multiple-items {
  display: flex;
  width: 100%; }
  #tinymce .multiple-items .item {
    width: 800px;
    display: flex; }

#divWaitingDisplay {
  height: 25.9rem;
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin-bottom: 4rem; }
  #divWaitingDisplay .wds_download-buttons,
  #divWaitingDisplay .wds_header_text {
    display: none !important; }
  #divWaitingDisplay .data-row {
    background: #fafbfd;
    border: #e8edf5 solid 1px;
    margin-bottom: 1.2rem !important;
    border-radius: 1.2rem;
    display: flex;
    justify-content: space-between;
    padding: 2.2rem 7.5rem 2.2rem 1.8rem;
    box-shadow: inherit !important; }
    #divWaitingDisplay .data-row:nth-child(2) {
      margin-bottom: 0 !important; }
      #divWaitingDisplay .data-row:nth-child(2) .name::before {
        background-image: url(assets/img/title-icon05.png); }
      #divWaitingDisplay .data-row:nth-child(2) .value {
        color: #e05050 !important; }
  #divWaitingDisplay .name {
    padding-left: 5.5rem;
    overflow: visible !important; }
    #divWaitingDisplay .name::before {
      content: "";
      position: absolute;
      width: 4rem;
      height: 4rem;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      background: url(assets/img/title-icon04.png) no-repeat center;
      background-size: contain; }
  #divWaitingDisplay .name,
  #divWaitingDisplay .value {
    color: #333333 !important;
    font-size: 1.6rem !important;
    font-weight: 500 !important;
    line-height: 175% !important;
    letter-spacing: 0.2rem !important;
    position: relative; }

#wait-display-stat {
  padding: 0 !important;
  border: 0 !important;
  max-width: 100% !important;
  width: 100% !important; }

#wds_data-wrap {
  margin: 0 !important; }

@media (max-width: 960px) {
  #divWaitingDisplay {
    height: auto;
    margin-bottom: 2rem; }

  #divWaitingDisplay .data-row {
    padding: 1.5rem 1.5rem 1.5rem 1rem !important; }

  #divWaitingDisplay .name,
  #divWaitingDisplay .value {
    font-size: 1.5rem !important; }

  #divWaitingDisplay .name {
    letter-spacing: 0.1rem !important; } }
.itv-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap; }
  .itv-container.tn-02 {
    flex-direction: row-reverse; }
    .itv-container.tn-02 .itv-container__image::before {
      left: auto;
      right: -12rem; }
  .itv-container .itv-subtitle {
    display: block;
    width: 100%;
    font-weight: 500;
    line-height: 1;
    font-size: 1.8rem;
    letter-spacing: 0rem;
    color: #122A63;
    margin-bottom: 1.2rem; }
  .itv-container .itv-title {
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
    font-size: var(--size-h2);
    letter-spacing: 0rem;
    line-height: 140%;
    padding-bottom: 2.4rem;
    color: #122A63;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif; }
    .itv-container .itv-title::after {
      position: absolute;
      content: "";
      width: 12rem;
      height: 1px;
      bottom: 0;
      background: #122A63;
      left: 0.3rem; }
  .itv-container__content {
    flex: 6;
    position: relative;
    z-index: 5; }
    .itv-container__content .itv-text {
      text-align: justify; }
  .itv-container__image {
    flex: 4;
    position: relative;
    z-index: 0;
    margin-top: .5rem; }
    .itv-container__image img {
      width: 100%;
      object-fit: cover; }
    .itv-container__image::before {
      content: "";
      position: absolute;
      width: 25rem;
      height: 15rem;
      bottom: -5rem;
      left: -12rem;
      z-index: -1;
      background: rgba(187, 199, 255, 0.05); }

.text_inter {
  color: #122A63; }
  @media screen and (max-width: 960px) {
    .text_inter {
      color: #333333; } }

.itv-container__02 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 5rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  border-radius: 0.8rem;
  position: relative;
  z-index: 0;
  background: #101e5c; }
  .itv-container__02 .itv-text {
    color: #fff;
    text-align: justify; }
  .itv-container__02 .itv-title {
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
    font-size: var(--size-h2);
    letter-spacing: 0rem;
    line-height: 140%;
    padding-bottom: 2.4rem;
    color: #fff;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif; }
    .itv-container__02 .itv-title::after {
      position: absolute;
      content: "";
      width: 12rem;
      height: 1px;
      bottom: 0;
      background: #fff;
      left: 50%;
      transform: translateX(-50%); }
  .itv-container__02 .itv-subtitle {
    color: #fff;
    font-weight: 500;
    line-height: 1;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    margin-bottom: 1.2rem; }
  .itv-container__02 .itv-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1; }
    .itv-container__02 .itv-image img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      opacity: 0.3; }

.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: 2.5rem;
      margin-bottom: 4rem; } }

.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 #122A63; }
  @media screen and (max-width: 960px) {
    .ud_flow .flow_box::before {
      inset: 0.5rem; } }

.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: #122A63; }

.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: #122A63;
  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;
  font-size: 2.4rem; }
  @media screen and (max-width: 960px) {
    .ud_flow .flow_box h4.flow_ttl {
      font-size: 2.1rem; } }

.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: #122A63;
  line-height: 1.4;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif; }

.ud_flow .flow_box .ct_area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem; }
  .ud_flow .flow_box .ct_area--content {
    width: 77rem; }
    @media screen and (max-width: 960px) {
      .ud_flow .flow_box .ct_area--content {
        width: 100%; } }
  .ud_flow .flow_box .ct_area--img {
    width: calc(100% - 77rem - 2rem); }
    .ud_flow .flow_box .ct_area--img img {
      width: 100%;
      object-fit: cover; }
      @media screen and (max-width: 960px) {
        .ud_flow .flow_box .ct_area--img img {
          height: auto; } }
    @media screen and (max-width: 960px) {
      .ud_flow .flow_box .ct_area--img {
        width: 100%; } }
  @media screen and (max-width: 960px) {
    .ud_flow .flow_box .ct_area {
      flex-direction: column-reverse;
      align-items: center;
      gap: 1rem; } }

.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: #122A63; }
  @media screen and (max-width: 960px) {
    .ud_flow .flow_box .ct_area::after {
      bottom: calc(-2em + 1px);
      width: 4em;
      height: 2em; } }

.ud_flow .flow_box:last-child {
  margin-bottom: 0; }

.ud_flow .flow_box:last-child .ct_area::after {
  display: none; }

@media screen and (max-width: 960px) {
  .c-step__body h4.c-heading--hy-lv4::before,
  .c-step__body h4.c-heading--hy-lv4::after {
    top: 2rem; } }

.col__puppy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem;
  gap: 0 5rem; }

.col2_puppy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem; }
  .col2_puppy__img {
    background-color: #7bc1ff;
    border-radius: 1rem; }
    .col2_puppy__img.dh-01 {
      background-color: #9fe1e0;
      border-radius: 1rem; }
    .col2_puppy__img.dh-02 {
      background-color: #61c8db;
      border-radius: 1rem; }

.col2__kitten {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5rem; }
  .col2__kitten__img {
    width: 80%;
    margin-left: auto;
    margin-right: auto; }

.col3__staff {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem; }

.calendar {
  height: 75rem;
  width: 100%; }

.puppy_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem; }
  @media screen and (max-width: 960px) {
    .puppy_btn {
      flex-direction: column; } }
  .puppy_btn a {
    flex: 0 0 calc(33.333% - 1rem);
    padding: 1rem 0;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 8rem;
    background: #181b60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem; }
    .puppy_btn a img {
      width: 8rem; }

.puppy_tel a {
  display: flex;
  flex-direction: column;
  padding: 6rem;
  color: #181b60;
  border: 5px solid #181b60;
  background: #fff; }
  .puppy_tel a span {
    width: 100%;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold; }
    @media screen and (max-width: 960px) {
      .puppy_tel a span {
        font-size: 1.8rem; } }
    .puppy_tel a span.tel {
      font-size: 4rem; }
      @media screen and (max-width: 960px) {
        .puppy_tel a span.tel {
          font-size: 3rem; } }

@media (max-width: 960px) {
  .vz-05 {
    margin-bottom: 4.5rem !important; }

  .itv-container {
    flex-direction: column-reverse !important;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem !important; }
    .itv-container.tn-02 {
      margin-bottom: 0rem !important; }

  .itv-container__content,
  .itv-container__image {
    flex: unset;
    width: 100%; }

  .itv-container__image img {
    width: 100%;
    height: 47rem; } }
  @media (max-width: 960px) and (max-width: 560px) {
    .itv-container__image img {
      height: 23rem; } }

@media (max-width: 960px) {
  .itv-container__image::before {
    display: none; }

  .itv-container .itv-subtitle {
    font-size: 1.5rem;
    line-height: 185%;
    letter-spacing: 0;
    margin-bottom: 0; }

  .itv-container .itv-title {
    font-size: 2.2rem;
    line-height: 145%;
    letter-spacing: 0;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem; }

  .itv-container .itv-title::after {
    width: 8rem; }

  .itv-container__02 {
    width: 100%;
    padding: 0;
    margin-bottom: 5rem !important;
    background: transparent;
    align-items: flex-start;
    text-align: left; }
    .itv-container__02 .itv-title {
      color: #122A63;
      font-size: 2.2rem;
      line-height: 145%;
      letter-spacing: 0;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      font-weight: 600;
      order: 3; }
      .itv-container__02 .itv-title::after {
        width: 8rem;
        background: #122A63;
        transform: inherit;
        left: 0.3rem; }
    .itv-container__02 .itv-subtitle {
      font-size: 1.5rem;
      line-height: 1.85;
      margin-bottom: 0rem;
      color: #122A63;
      order: 2; }
    .itv-container__02 .itv-text {
      color: #333;
      order: 4; }
    .itv-container__02 .itv-image {
      order: 1;
      position: relative;
      margin-bottom: 1rem; }
      .itv-container__02 .itv-image img {
        opacity: 1;
        height: 47rem; } }
      @media (max-width: 960px) and (max-width: 560px) {
        .itv-container__02 .itv-image img {
          height: 23rem; } }

.p-top-information {
  position: relative;
  background: #FCF7F1 url(assets/img/img_info.png) no-repeat center bottom;
  z-index: 0;
  padding: 6rem 0 13rem;
  overflow: hidden; }
  .p-top-information::before {
    content: "";
    position: absolute;
    width: 19.7rem;
    height: 29.7rem;
    top: 5rem;
    left: 7rem;
    background: url(assets/img/icon_infor06.png) no-repeat center/contain; }
  .p-top-information::after {
    content: "";
    position: absolute;
    width: 36rem;
    height: 21.8rem;
    top: 2rem;
    right: 9rem;
    background: url(assets/img/icon_infor07.png) no-repeat center/contain; }

.p-top__title--02 {
  text-align: center;
  position: relative;
  z-index: 0; }
  .p-top__title--02_ja {
    color: #1A2C5B;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    padding-bottom: 3rem; }
    .p-top__title--02_ja span.item_ja {
      position: relative;
      display: inline-block;
      padding-bottom: 1.7rem;
      z-index: 0; }
      .p-top__title--02_ja span.item_ja .text_title {
        padding-bottom: 5rem; }
      .p-top__title--02_ja span.item_ja::after {
        content: "";
        position: absolute;
        width: 11.1rem;
        height: 0.3rem;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        background: url(assets/img/line-icon02.png) no-repeat center;
        background-size: contain; }
    .p-top__title--02_ja span.vz-02 {
      color: #E05050; }
      .p-top__title--02_ja span.vz-02::after {
        display: none; }
  .p-top__title--02_en {
    color: #C8A040;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0;
    font-family: "Dancing Script", cursive;
    text-align: center; }

.btn_info {
  padding-bottom: 2rem; }
  .btn_info a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 1.8rem;
    border: 1px solid #1A2C5B;
    border-radius: 5.6rem;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    color: #1A2C5B;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    margin-bottom: 1rem;
    width: 22.8rem; }
  .btn_info.vz-02 {
    padding-bottom: 0; }

.btn_info a:hover {
  background: #1A2C5B;
  color: #fff; }

.btn_info a::after {
  content: "";
  position: absolute;
  width: .8rem;
  height: .8rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  right: 1.4rem;
  transition: 0.3s; }

.btn_info a:hover::after {
  transform: rotate(45deg) translateX(0); }

.p-top-information .p-footer__clinic-box {
  margin-left: 4rem;
  margin-top: 5rem;
  gap: 9rem;
  display: flex; }

.p-top-information .p-footer__clinic-info .address {
  margin-bottom: 2.5rem; }

.p-top-information .p-footer__clinic-map .map {
  width: 79.2rem;
  height: 53rem; }

.p-top-information .p-footer__clinic-card {
  margin-bottom: 2rem;
  padding-bottom: 2.2rem;
  gap: 1.8rem; }

.p-top-information .p-footer__clinic-info {
  width: 64.5rem; }

.p-top-information .p-footer__clinic-map {
  width: calc(100% - 64.5rem - 9rem); }

.p-top-information .p-footer__clinic-table {
  width: 56rem; }

.p-top-information .banner.banner-01 {
  width: 100%;
  border: 4px solid #FFFFFF;
  border-radius: 3rem; }
  .p-top-information .banner.banner-01 a img {
    width: 100%;
    border-radius: 3rem; }

.card_left {
  background: #FEFAF7 url(assets/img/icon_infor03.png) no-repeat right 3.2rem bottom 3.3rem;
  background-size: 25.7rem;
  width: 79.2rem;
  padding: 2rem 0rem 2rem 5rem;
  border: 4px solid #FFFFFF;
  border-radius: 2rem;
  position: relative;
  z-index: 0; }
  .card_left::before {
    content: "";
    position: absolute;
    width: 11.8rem;
    height: 15.6rem;
    top: 0;
    right: 0;
    background: url(assets/img/icon_infor05.png) no-repeat center/contain;
    border-top-right-radius: 1.6rem; }
  .card_left::after {
    content: "";
    position: absolute;
    width: 4.3rem;
    height: 9.1rem;
    top: 2.9rem;
    right: 11rem;
    background: url(assets/img/icon_infor04.png) no-repeat center/contain; }
  .card_left__title {
    padding-bottom: 3rem; }
    .card_left__title .title__01 {
      color: #1A1918;
      font-size: 3rem;
      font-weight: bold;
      line-height: 150%;
      letter-spacing: 0;
      font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif; }
      .card_left__title .title__01 span {
        position: relative;
        display: inline-block;
        z-index: 0;
        padding-left: 9rem;
        padding-right: 27.4rem; }
        .card_left__title .title__01 span::before {
          content: "";
          position: absolute;
          width: 5.3rem;
          height: 4.8rem;
          top: 50%;
          left: 0;
          background: url(assets/img/icon_infor01.png) no-repeat center/contain; }
        .card_left__title .title__01 span::after {
          content: "";
          position: absolute;
          width: 11.5rem;
          height: 8.7rem;
          top: 0;
          right: 0;
          background: url(assets/img/icon_infor02.png) no-repeat center/contain; }
    .card_left__title .title__02 {
      color: #EE4B60;
      font-size: 2.2rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.06rem;
      font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
      padding-left: 8.5rem; }
  .card_left__desc {
    padding-bottom: 2.2rem;
    color: #555555;
    font-size: var(--size-p);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    position: relative; }
  .card_left__app {
    position: relative;
    z-index: 0;
    gap: 2.3rem; }
    .card_left__app .img_01 {
      width: 26.5rem; }
      .card_left__app .img_01 a img {
        width: 100%; }
    .card_left__app .img_02 {
      width: 21.6rem; }
      .card_left__app .img_02 a img {
        width: 100%; }

.card_left .btn_info {
  padding-bottom: 1rem; }

.p-top-information .p-footer__clinic-map {
  gap: 3rem; }

.p-top-information .p-footer__clinic-table .schedule--desc {
  margin-bottom: 1rem; }

.p-top-longtime {
  background: #FAF3EB url(assets/img/img_longtime01.png) no-repeat center bottom;
  padding: 0 0 12rem;
  position: relative;
  z-index: 0; }
  .p-top-longtime::before {
    content: "";
    position: absolute;
    width: 30rem;
    height: 15.6rem;
    top: .7rem;
    left: 7.2rem;
    background: url(assets/img/icon_longtime01.png) no-repeat center/contain; }
  .p-top-longtime::after {
    content: "";
    position: absolute;
    width: 13.9rem;
    height: 16.3rem;
    top: 8rem;
    left: 44%;
    background: url(assets/img/icon_longtime02.png) no-repeat center/contain;
    transform: translateX(-50%); }
  .p-top-longtime__box {
    position: relative;
    z-index: 0; }
    .p-top-longtime__box::before {
      content: "";
      position: absolute;
      width: 11.6rem;
      height: 23.9rem;
      bottom: -5rem;
      left: -19rem;
      background: url(assets/img/icon_longtime03.png) no-repeat center/contain; }
    .p-top-longtime__box__left {
      width: calc(100% - 91.4rem + 21rem);
      padding-top: 22rem; }
    .p-top-longtime__box__right {
      width: 91.4rem;
      margin-right: -21rem;
      padding-top: 8.5rem; }
    .p-top-longtime__box__desc {
      color: #555555;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0;
      padding-bottom: 6.2rem; }

.p-top-longtime .p-top__title--02 {
  text-align: start; }

.p-top-longtime .p-top__title--02_ja span::after {
  left: 0;
  transform: none; }

.p-top-longtime .p-top__title--02_ja span.item_ja {
  padding-bottom: 3.3rem;
  line-height: 177%; }

.p-top-longtime .p-top__button--01 a {
  background-color: #FFFFFF;
  width: 36rem;
  height: 8.4rem;
  font-weight: 700; }
  .p-top-longtime .p-top__button--01 a:hover {
    background-color: #1A2C5B;
    color: #FFFFFF; }
    .p-top-longtime .p-top__button--01 a:hover span::before {
      color: #FFFFFF; }

.p-top-longtime .p-top__title--02_ja {
  padding-bottom: 5rem; }

.p-top-visit {
  background: #FCF7F1 url(assets/img/bg_visit.png) no-repeat center bottom;
  position: relative;
  z-index: 0;
  counter-reset: visit;
  padding: 9rem 0 7rem; }
  .p-top-visit::before {
    content: "";
    position: absolute;
    width: 13rem;
    height: 14rem;
    top: 12.5rem;
    left: 12.7rem;
    background: url(assets/img/icon_visit06.png) no-repeat center/contain; }
  .p-top-visit::after {
    content: "";
    position: absolute;
    width: 20.9rem;
    height: 19.2rem;
    top: 3.3rem;
    right: 4.8rem;
    background: url(assets/img/icon_visit07.png) no-repeat center/contain;
    transform: translateX(-50%); }
  .p-top-visit__desc {
    color: #8A7050;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.3rem;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    padding-bottom: 5rem; }
  .p-top-visit__list {
    gap: 2.5rem;
    padding-bottom: 5rem; }
    .p-top-visit__list li:last-child a::after {
      display: none; }
    .p-top-visit__list li {
      width: calc((100% - 7.501rem) / 4);
      counter-increment: visit;
      position: relative; }
      .p-top-visit__list li a {
        background: #FEFEFE;
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 3rem;
        padding: 2.4rem 0 2.6rem;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
        position: relative;
        min-height: 42rem; }
        .p-top-visit__list li a span {
          display: block; }
          .p-top-visit__list li a span.title {
            color: #122A63;
            font-size: 1.8rem;
            font-weight: bold;
            line-height: 150%;
            letter-spacing: 0.072rem;
            position: relative;
            z-index: 0;
            padding: 0 1.5rem 2rem;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 6rem; }
            .p-top-visit__list li a span.title::after {
              content: "";
              position: absolute;
              width: 6.5rem;
              height: 0.3rem;
              bottom: 0;
              left: 50%;
              z-index: -1;
              background: url(assets/img/line-icon01.png) no-repeat center;
              background-size: contain;
              transform: translateX(-50%); }
          .p-top-visit__list li a span.desc {
            color: #555555;
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 150%;
            letter-spacing: 0;
            padding-top: 3rem; }
            .p-top-visit__list li a span.desc.vp-01, .p-top-visit__list li a span.desc.vp-02 {
              flex: unset;
              display: block;
              padding-left: 6rem;
              padding-right: 6rem; }
            .p-top-visit__list li a span.desc.vp-03 {
              padding-left: 4.1rem;
              padding-right: 4.6rem; }
            .p-top-visit__list li a span.desc.vp-04 {
              padding-left: 6.3rem;
              padding-right: 7.7rem; }
        .p-top-visit__list li a .img {
          display: flex;
          justify-content: center;
          padding-top: 1rem;
          width: 100%;
          margin-left: auto;
          margin-right: auto; }
          .p-top-visit__list li a .img.gp-03, .p-top-visit__list li a .img.gp-04 {
            padding-top: 0rem;
            padding-bottom: 1rem; }
          .p-top-visit__list li a .img.gp-04 {
            padding-left: 3rem; }
          .p-top-visit__list li a .img.gp-02 {
            padding-left: 2rem; }
        .p-top-visit__list li a::before {
          content: counter(visit,decimal-leading-zero);
          position: absolute;
          left: 2rem;
          top: 1rem;
          color: #E4A81B;
          font-size: 5rem;
          font-weight: bold;
          line-height: 150%;
          letter-spacing: -0.03rem; }
        .p-top-visit__list li a::after {
          content: "";
          position: absolute;
          width: 14.8rem;
          height: 2.2rem;
          right: -8.4rem;
          top: 11rem;
          background: url(assets/img/icon_visit05.png) no-repeat center/contain;
          z-index: 2; }

.p-top-visit .p-top__title--02_en {
  padding-bottom: 1rem; }

.p-top-visit .p-top__button--01 a {
  background-color: #FFFFFF;
  width: 36rem;
  height: 8.4rem;
  font-weight: 700; }
  .p-top-visit .p-top__button--01 a:hover {
    background-color: #1A2C5B;
    color: #FFFFFF; }
    .p-top-visit .p-top__button--01 a:hover span::before {
      color: #FFFFFF; }

.p-top-treatment {
  background: #FAF3EB url(assets/img/img_treatmen3.png) no-repeat center bottom;
  background-size: contain;
  position: relative;
  z-index: 0;
  padding: 4rem 0 17rem; }
  .p-top-treatment::before {
    content: "";
    position: absolute;
    width: 26.6rem;
    height: 13.1rem;
    background: url(assets/img/icon_treatment6.png) no-repeat center/contain;
    top: .8rem;
    left: 9.6rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-top-treatment::before {
        width: 11rem;
        height: 5rem;
        left: 1.4rem;
        top: 0; } }
  .p-top-treatment::after {
    content: "";
    position: absolute;
    width: 12.9rem;
    height: 14rem;
    background: url(assets/img/icon_treatment7.png) no-repeat center/contain;
    top: 7rem;
    right: 9.1rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-top-treatment::after {
        width: 6rem;
        height: 6rem;
        right: 2rem;
        top: 5rem; } }

.p-top-treatment .p-top__title--02_en {
  padding-bottom: 4.5rem; }

.treatment-tabs__top {
  gap: 7rem;
  padding-left: 4rem;
  padding-bottom: 5rem; }
.treatment-tabs__left {
  width: 65.7rem;
  flex-shrink: 0; }
  .treatment-tabs__left img {
    border-radius: 4rem; }
.treatment-tabs__list {
  gap: 2rem 3rem;
  position: relative;
  z-index: 0; }
  .treatment-tabs__list.vz-02 {
    gap: 4.5rem 3rem; }
    .treatment-tabs__list.vz-02 li a {
      border: 1px solid #E4A81B;
      color: #E4A81B;
      padding: 8.8rem 1.8rem 8.8rem 12.2rem; }
      .treatment-tabs__list.vz-02 li a::after {
        right: 1rem;
        top: auto;
        border: 1px solid #E4A81B;
        bottom: 0;
        transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
      .treatment-tabs__list.vz-02 li a:hover::after {
        transform: translateY(-50%) translateX(1rem); }
    .treatment-tabs__list.vz-02 li:nth-child(1) a::before {
      background: url(assets/img/icon_tab3.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(2) a::before {
      background: url(assets/img/icon2_tab3.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(3) a::before {
      background: url(assets/img/icon3_tab3.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(4) a::before {
      background: url(assets/img/icon4_tab3.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(5) a::before {
      background: url(assets/img/icon5_tab3.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(6) a::before {
      background: url(assets/img/icon_tab1.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(7) a::before {
      background: url(assets/img/icon6_tab3.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(8) a::before {
      background: url(assets/img/icon7_tab3.png) no-repeat center/cover; }
    .treatment-tabs__list.vz-02 li:nth-child(9) a::before {
      background: url(assets/img/icon8_tab3.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(1) a::before {
    background: url(assets/img/icon25.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(2) a::before {
    background: url(assets/img/icon13.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(3) a::before {
    background: url(assets/img/icon26.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(4) a::before {
    background: url(assets/img/icon17.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(5) a::before {
    background: url(assets/img/icon14.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(6) a::before {
    background: url(assets/img/icon15.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(7) a::before {
    background: url(assets/img/icon16.png) no-repeat center/cover; }
  .treatment-tabs__list.vz-01 li:nth-child(8) a::before {
    background: url(assets/img/icon9_tab3.png) no-repeat center/cover; }
  .treatment-tabs__list li {
    width: calc((100% - 6.001rem) / 3); }
    .treatment-tabs__list li a {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      position: relative;
      z-index: 0;
      background: #fff;
      border-radius: 2rem;
      padding: 6.8rem 1.8rem 6.8rem 12.2rem;
      height: 8.2rem;
      border: 1px solid transparent;
      transition: all 0.35s;
      color: #183E76;
      font-size: 1.8rem;
      font-weight: 500;
      line-height: 150%;
      letter-spacing: 0.06rem;
      overflow: hidden; }
      .treatment-tabs__list li a .text-hover {
        position: absolute;
        inset: 0;
        background: #E4A81B;
        border-radius: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: 0.35s ease;
        transform: translateY(-20px);
        z-index: 3;
        padding: 1rem 2rem;
        color: #fff; }
      .treatment-tabs__list li a .dog-image {
        content: "";
        position: absolute;
        width: 15rem;
        height: 16rem;
        top: .4rem;
        right: 4rem;
        background: url(assets/img/img_tab3_1.png) no-repeat center/cover; }
      .treatment-tabs__list li a .content {
        color: #122A63;
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.072rem;
        padding-left: 3rem; }
        @media screen and (max-width: 960px) {
          .treatment-tabs__list li a .content {
            font-size: 1.5rem;
            line-height: 130%;
            letter-spacing: .05rem;
            margin-left: auto;
            margin-right: auto;
            padding-left: 0;
            text-align: center; } }
      .treatment-tabs__list li a::before {
        content: "";
        position: absolute;
        width: 8.6rem;
        height: 8.6rem;
        background: url(assets/img/icon18.png) no-repeat center/cover;
        top: 50%;
        transform: translateY(-50%);
        left: 3.4rem;
        z-index: -1; }
      .treatment-tabs__list li a::after {
        content: "→";
        position: absolute;
        width: 3.8rem;
        height: 3.8rem;
        right: 3.8rem;
        top: 50%;
        border: 1px solid #122A63;
        border-radius: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.35s; }
      .treatment-tabs__list li a:hover .text-hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); }
      .treatment-tabs__list li a:hover::after {
        right: 1.5rem; }
    .treatment-tabs__list li:nth-child(2) a::before {
      background: url(assets/img/icon10_tab2.png) no-repeat center/cover; }
    .treatment-tabs__list li:nth-child(3) a::before {
      background: url(assets/img/icon19.png) no-repeat center/cover; }
    .treatment-tabs__list li:nth-child(4) a::before {
      background: url(assets/img/icon20.png) no-repeat center/cover; }
    .treatment-tabs__list li:nth-child(5) a::before {
      background: url(assets/img/icon21.png) no-repeat center/cover; }
    .treatment-tabs__list li:nth-child(6) a::before {
      background: url(assets/img/icon22.png) no-repeat center/cover; }
    .treatment-tabs__list li:nth-child(7) a::before {
      background: url(assets/img/icon23.png) no-repeat center/cover; }
    .treatment-tabs__list li:nth-child(8) a::before {
      background: url(assets/img/icon24.png) no-repeat center/cover; }
    .treatment-tabs__list li:nth-child(9) a::before {
      background: url(assets/img/icon9_tab1.png) no-repeat center/cover; }
  .treatment-tabs__list li:nth-child(2) a .dog-image {
    background: url(assets/img/img02_tab3.png) no-repeat center/contain;
    right: 5rem; }
  .treatment-tabs__list li:nth-child(3) a .dog-image {
    background: url(assets/img/img03_tab3.png) no-repeat center/contain;
    right: 5.5rem; }
  .treatment-tabs__list li:nth-child(4) a .dog-image {
    background: url(assets/img/img04_tab3.png) no-repeat center/contain;
    right: 5rem; }
  .treatment-tabs__list li:nth-child(5) a .dog-image {
    background: url(assets/img/img05_tab3.png) no-repeat center/contain;
    right: 5rem; }
  .treatment-tabs__list li:nth-child(6) a .dog-image {
    background: url(assets/img/img06_tab3.png) no-repeat center/contain;
    right: 4.5rem; }
  .treatment-tabs__list li:nth-child(7) a .dog-image {
    background: url(assets/img/img07_tab3.png) no-repeat center/contain; }
  .treatment-tabs__list li:nth-child(8) a .dog-image {
    background: url(assets/img/img08_tab3.png) no-repeat center/contain; }
  .treatment-tabs__list li:nth-child(9) a .dog-image {
    background: url(assets/img/img09_tab3.png) no-repeat center/contain; }
.treatment-tabs__right {
  width: calc(100% - 65.7rem - 7rem);
  padding-top: 4rem;
  flex: 1; }
  .treatment-tabs__right__title {
    color: #113063;
    font-size: 4rem;
    font-weight: bold;
    line-height: 150%;
    letter-spacing: 0.252rem;
    position: relative;
    z-index: 0;
    padding-left: 7rem;
    padding-bottom: 2.2rem; }
    .treatment-tabs__right__title::before {
      content: "";
      position: absolute;
      width: 5.1rem;
      height: 4.8rem;
      top: 0;
      left: 0;
      background: url(assets/img/icon_treatment3.png) no-repeat center/contain; }
    .treatment-tabs__right__title::after {
      content: "";
      position: absolute;
      width: 6rem;
      height: 2px;
      bottom: 0;
      left: 0;
      background: #425F95; }
    .treatment-tabs__right__title--01 {
      color: #E05050; }
  .treatment-tabs__right__desc {
    color: #333333;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 210%;
    letter-spacing: 0;
    padding-top: 5rem; }

.treatment-tabs-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
  overflow: visible;
  height: 9.5rem;
  margin-bottom: 5rem; }

.treatment-tabs-menu li {
  flex: 0 0 auto;
  text-align: center;
  padding: 1.2rem 2rem;
  cursor: pointer;
  transition: 0.3s;
  background: #FFFEFF;
  color: #122A63;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 150%;
  letter-spacing: 0.072rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  position: relative;
  z-index: 0; }
  .treatment-tabs-menu li:first-child {
    border-radius: 2rem 0 0 2rem; }
  .treatment-tabs-menu li:last-child {
    border-radius: 0 2rem 2rem 0; }

.treatment-tabs-menu li .item_text {
  position: relative;
  padding-left: 7rem; }

.treatment-tabs-menu li .item_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5rem;
  height: 4.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; }

.treatment-tabs-menu li[data-tab="tab1"] .item_text::before {
  background-image: url(assets/img/icon_treatment.png); }

.treatment-tabs-menu li[data-tab="tab2"] .item_text::before {
  background-image: url(assets/img/icon_treatment1.png); }

.treatment-tabs-menu li[data-tab="tab3"] .item_text::before {
  background-image: url(assets/img/icon_treatment2.png); }

.treatment-tabs-menu li.is-active .item_text::before {
  filter: brightness(0) invert(1); }

.treatment-tabs-menu li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 7.2rem;
  background: #000000;
  opacity: 0.1; }

.treatment-tabs-menu li.tab2 {
  flex: none; }

.treatment-tabs-menu li.is-active {
  background: #113874;
  color: #fff; }

.treatment-tabs-item {
  display: none; }

.treatment-tabs-item.is-active {
  display: flex;
  gap: 7rem;
  align-items: flex-start; }
  .treatment-tabs-item.is-active::before {
    content: "";
    position: absolute;
    width: 8.8rem;
    height: 19rem;
    top: 51%;
    left: 4.8rem;
    background: url(assets/img/icon_treatment4.png) no-repeat center/cover;
    transform: translateY(-50%); }
  .treatment-tabs-item.is-active::after {
    content: "";
    position: absolute;
    width: 19.8rem;
    height: 29.8rem;
    top: 40%;
    right: 0;
    background: url(assets/img/icon_treatment5.png) no-repeat center/cover;
    transform: translateY(-50%); }

.treatment-tabs-item.is-active[data-tab="tab3"]::before {
  top: 45%;
  left: 8rem; }

.treatment-tabs-item.is-active[data-tab="tab3"]::after {
  top: 45%;
  right: 21rem; }

.treatment-tabs-item.is-active[data-tab="tab2"]::before {
  top: 42%;
  left: 9rem; }

.treatment-tabs-item.is-active[data-tab="tab2"]::after {
  top: 40%;
  right: 21rem; }

.treatment-tabs-menu li:nth-child(1) {
  width: 49.5rem; }

.treatment-tabs-menu li:nth-child(2) {
  width: 48.9rem; }

.treatment-tabs-menu li:nth-child(3) {
  width: 49.5rem; }

.table-price {
  border: 1px solid #000; }
  .table-price dl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: 1px solid #000; }
    .table-price dl dt {
      background: rgba(18, 42, 99, 0.08); }
    .table-price dl dt,
    .table-price dl dd {
      padding: 2rem 1rem;
      border-right: 1px solid #000; }
      .table-price dl dt a,
      .table-price dl dd a {
        color: #122A63;
        font-weight: 700;
        text-decoration: underline; }
    .table-price dl dd.vz-02 {
      text-decoration: line-through; }
    .table-price dl .bdr-n {
      border-right: none; }
    .table-price dl:last-child {
      border-bottom: none; }

@media (min-width: 960.5px) {
  .u-sp767-only {
    display: none; } }
.text_link strong {
  border-bottom: 1px solid #E8702A; }

@media (max-width: 1440px) and (min-width: 960.5px) {
  .p-top__title--02::before {
    width: 12.7rem;
    height: 20.7rem;
    left: 1.5rem; }

  .p-top__title--02::after {
    right: 0; }

  .p-top-information {
    padding-bottom: 19rem; }
    .p-top-information .l-grid-1500 {
      padding-left: 6rem;
      padding-right: 6rem; }

  .p-top-information .p-footer__clinic-map .map {
    width: 100%; }

  .p-top-information .p-footer__clinic-map {
    width: calc(100% - 60rem - 6rem); }

  .card_left__desc::before {
    width: 18.7rem;
    height: 23.3rem; }

  .card_left {
    width: 100%;
    padding-left: 3rem;
    background-size: 20rem;
    background-position: bottom 0 right 0; }
    .card_left::after {
      top: 8rem;
      right: 5rem; }
    .card_left__desc::before {
      top: 5rem; }

  .p-top-information .p-footer__clinic-box {
    gap: 6rem;
    margin-left: 0; }

  .p-top-information .p-footer__clinic-info {
    width: 60rem; }

  .p-top-information::before {
    width: 12.7rem;
    height: 20.7rem; }

  .p-top-longtime {
    padding-bottom: 25rem; }
    .p-top-longtime::before {
      width: 22rem;
      height: 11.5rem;
      left: 3rem; }
    .p-top-longtime::after {
      width: 10rem;
      height: 12rem;
      top: 6rem; }
    .p-top-longtime__box {
      max-width: 131.6rem;
      margin-left: auto;
      margin-right: auto; }
      .p-top-longtime__box::before {
        width: 8rem;
        height: 16rem;
        left: -5rem;
        bottom: -13rem; }
      .p-top-longtime__box__left {
        width: calc(100% - 62rem + 2rem);
        padding-top: 16rem; }
      .p-top-longtime__box__right {
        width: 62rem;
        margin-right: -2rem;
        padding-top: 6rem; }
        .p-top-longtime__box__right img {
          width: 100%;
          height: auto; }
      .p-top-longtime__box__desc {
        font-size: 1.6rem;
        padding-bottom: 4rem; }

  .p-top-longtime .p-top__title--02_ja {
    padding-bottom: 3rem; }

  .p-top-longtime .p-top__title--02_ja span.item_ja {
    font-size: 3.6rem;
    padding-bottom: 2rem; }

  .p-top-longtime .p-top__button--01 a {
    width: 30rem;
    height: 7rem;
    font-size: 1.8rem; }

  .p-top-visit .l-grid-1500 {
    padding-left: 6rem;
    padding-right: 6rem; }
  .p-top-visit__list {
    gap: 1.5rem; }
    .p-top-visit__list li a {
      min-height: 44rem; }
      .p-top-visit__list li a .img {
        width: 22rem; }
      .p-top-visit__list li a span.title {
        letter-spacing: 0;
        padding: 0 0.5rem 2rem; }

  .p-top-visit__list li a span.desc.vp-01, .p-top-visit__list li a span.desc.vp-02, .p-top-visit__list li a span.desc.vp-03, .p-top-visit__list li a span.desc.vp-04 {
    padding-left: 1rem;
    padding-right: 1rem; }
  .p-top-visit__list li a span.desc.vp-04 {
    padding-right: 0; }

  .p-top-visit__list li:first-child::after {
    right: -7rem; }

  .p-top-treatment {
    padding-bottom: 28rem; }
    .p-top-treatment .l-grid-1500 {
      padding-left: 6rem;
      padding-right: 6rem; }

  .treatment-tabs-menu li:nth-child(1) {
    width: 42.5rem; }

  .treatment-tabs-menu li:nth-child(2) {
    width: 45.9rem; }

  .treatment-tabs-menu li:nth-child(3) {
    width: 43.5rem; }

  .treatment-tabs-item.is-active::after {
    width: 12.8rem;
    height: 25.8rem;
    top: auto;
    bottom: -5.5rem; }

  .treatment-tabs-item.is-active::after {
    width: 15rem;
    height: 22rem;
    top: auto;
    bottom: -5.5rem; }

  .treatment-tabs-item.is-active::before {
    top: auto;
    bottom: 2rem;
    width: 6.8rem;
    height: 15rem; }

  .treatment-tabs-item.is-active[data-tab="tab2"]::after {
    top: 40%;
    right: 6rem; }

  .treatment-tabs-item.is-active[data-tab="tab2"]::before,
  .treatment-tabs-item.is-active[data-tab="tab3"]::before {
    left: 1rem;
    width: 3.8rem;
    height: 8rem; }

  .treatment-tabs-item.is-active[data-tab="tab3"]::after {
    right: 8rem; }

  .treatment-tabs__list li a::before {
    width: 6.6rem;
    height: 6.6rem;
    left: 2.4rem; }

  .treatment-tabs__list li a .content {
    padding-left: 0; } }
@media (max-width: 960px) {
  .p-top-information {
    padding: 3.5rem 0 11rem; }
    .p-top-information::before {
      width: 6.7rem;
      height: 18.7rem;
      top: 0;
      left: 1.9rem; }
    .p-top-information::after {
      width: 14rem;
      height: 6.8rem;
      top: 4.5rem;
      right: -2rem; }

  .p-top-information .p-footer__clinic-table {
    width: 100%; }

  .p-top-information .p-footer__clinic-card {
    width: 100%;
    border-radius: 1rem; }

  .p-top-information .banner.banner-01 {
    width: 100%;
    border-radius: 1rem; }
    .p-top-information .banner.banner-01 a img {
      border-radius: 1rem; }

  .p-top__title--02_ja {
    font-size: 3rem;
    padding-bottom: 1rem; }

  .p-top__title--02_en {
    font-size: 2.5rem; }

  .p-top-information .p-footer__clinic-info {
    width: 100%; }

  .p-top-information .p-footer__clinic-map .map {
    width: 100%;
    height: 30rem; }

  .card_left__title .title__01 span::after {
    right: -20rem; }

  .card_left {
    width: 100%;
    padding: 4rem 1.5rem 1rem 1.5rem;
    background-position: bottom 0 right 0;
    background-size: 15rem; }

  .card_left__desc {
    font-size: 1.5rem;
    line-height: 185%;
    letter-spacing: .05rem; }

  .card_left__title .title__01 span {
    padding-right: 0; }

  .card_left__title .title__01 {
    font-size: 3rem; }

  .card_left__title .title__02 {
    font-size: 2rem;
    letter-spacing: 0;
    padding-left: 6rem; }

  .p-top-information .p-footer__clinic-box {
    margin-left: 0; }

  .card_left .btn_info {
    display: flex;
    justify-content: center; }

  .p-top-information .p-footer__clinic-map {
    width: 100%;
    gap: 3rem; }

  .card_left__title {
    padding-left: 6rem; }

  .p-top-longtime::before {
    width: 15rem;
    top: -4.5rem;
    left: .6rem; }
  .p-top-longtime::after {
    top: -2rem;
    left: auto;
    right: .7rem;
    transform: none;
    width: 7.9rem;
    height: 9.3rem; }

  .p-top-longtime__box__left {
    width: 100%;
    padding-top: 3rem;
    order: 2; }

  .p-top-longtime__box__right {
    width: 100%;
    padding-top: 10rem;
    margin-left: auto;
    margin-right: auto;
    order: 1; }

  .p-top-longtime .p-top__title--02 {
    text-align: center; }

  .p-top-longtime .p-top__title--02_ja span::after {
    left: 50%;
    transform: translateX(-50%); }

  .p-top-longtime__box__desc {
    padding-bottom: 3rem; }

  .p-top-longtime .p-top__button--01 a {
    width: 26rem;
    height: 6rem;
    margin-left: auto;
    margin-right: auto; }

  .p-top-longtime__box::before {
    top: 22rem;
    left: auto;
    right: 0;
    width: 8.6rem;
    height: 8.9rem; }

  .p-top-longtime .p-top__title--02_ja {
    padding-bottom: 3rem; }

  .p-top-visit__list li {
    width: calc((100% - 2rem) / 2); }

  .p-top-visit__list li:not(:last-child)::after {
    display: none; }

  .p-top-visit__list {
    gap: 2rem; }

  .p-top-visit::before {
    width: 8rem;
    height: 10rem;
    top: -1.5rem;
    left: 1.7rem; }
  .p-top-visit::after {
    width: 10.9rem;
    height: 9.2rem;
    top: 0;
    right: -3.2rem; }
  .p-top-visit__desc {
    font-size: 1.5rem;
    line-height: 185%;
    letter-spacing: .05rem;
    text-align: center;
    padding-bottom: 3rem; }

  .p-top-visit__list li a {
    border-radius: 1rem;
    min-height: 41rem; }

  .p-top-visit .p-top__button--01 a {
    width: 26rem;
    height: 6rem; }

  .p-top-visit__list li a span.desc.vp-01, .p-top-visit__list li a span.desc.vp-02, .p-top-visit__list li a span.desc.vp-03, .p-top-visit__list li a span.desc.vp-04 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-size: 1.5rem;
    line-height: 185%;
    letter-spacing: .05rem;
    padding-top: 2rem; }

  .p-top-visit__list li:not(:last-child)::after {
    display: none; }

  .p-top-visit__list li a span.title {
    min-height: 7rem; }

  .p-top-visit__list li a::after {
    display: none; }

  .p-top-visit__list li a .img {
    width: 22rem; }
    .p-top-visit__list li a .img.gp-02, .p-top-visit__list li a .img.gp-04 {
      padding-left: 0; }
    .p-top-visit__list li a .img.gp-03 {
      padding-bottom: 0; }

  .p-top-treatment {
    padding-bottom: 4rem; }

  .treatment-tabs-item.is-active[data-tab="tab2"]::before, .treatment-tabs-item.is-active[data-tab="tab2"]::after {
    display: none; }

  .treatment-tabs-item.is-active[data-tab="tab3"]::before, .treatment-tabs-item.is-active[data-tab="tab3"]::after {
    display: none; }

  .treatment-tabs__list {
    gap: 1rem; }
    .treatment-tabs__list.vz-02 {
      gap: 1rem; }

  .treatment-tabs__list li {
    width: calc((100% - 2.001rem) / 3); }
    .treatment-tabs__list li a {
      font-size: 1.5rem; }
      .treatment-tabs__list li a:hover::after {
        transform: none;
        right: 3.8rem; }

  .treatment-tabs-item.is-active::before, .treatment-tabs-item.is-active::after {
    display: none; }

  .treatment-tabs__list.vz-02 li a {
    padding: 14.8rem 0.5rem 5.8rem 0.5rem;
    display: flex;
    justify-content: center;
    border-radius: 1rem; }

  .treatment-tabs__list li a.dh-01::before {
    width: 3.6rem;
    height: 3.6rem;
    top: -0.6rem;
    left: 50%;
    transform: translateX(-50%); }

  .treatment-tabs__list li a .dog-image {
    width: 9rem;
    height: 9rem;
    top: 3.4rem;
    right: auto; }

  .treatment-tabs__list.vz-02 li a::after {
    width: 2.5rem;
    height: 2.5rem; }

  .treatment-tabs__list li:nth-child(n+2):nth-child(-n+9) a .dog-image {
    right: inherit; }

  .treatment-tabs__left {
    width: 100%;
    display: flex;
    justify-content: center; }
    .treatment-tabs__left img {
      border-radius: 1rem; }

  .treatment-tabs__list.vz-02 li a::after {
    bottom: -0.7rem; }

  .treatment-tabs__right__title {
    font-size: 3rem; }

  .treatment-tabs__top {
    padding-left: 0;
    gap: 1rem;
    padding-bottom: 2rem; }

  .treatment-tabs__list li a {
    padding: 9.8rem 0.5rem 7.8rem 0.5rem; }

  .treatment-tabs__list li a::after {
    width: 2.5rem;
    height: 2.5rem;
    top: auto;
    bottom: 0;
    right: 1.8rem; }

  .treatment-tabs__list li a::before {
    top: 1rem;
    width: 6rem;
    height: 6rem;
    left: 50%;
    transform: translateX(-50%); }

  .treatment-tabs-menu li {
    font-size: 1.5rem; }
    .treatment-tabs-menu li:first-child {
      border-radius: 1rem 0 0 1rem; }
    .treatment-tabs-menu li:last-child {
      border-radius: 0 1rem 1rem 0; }
    .treatment-tabs-menu li:nth-child(1), .treatment-tabs-menu li:nth-child(2), .treatment-tabs-menu li:nth-child(3) {
      width: 22rem; }

  .treatment-tabs__right__desc {
    font-size: 1.5rem;
    padding-top: 2rem; }

  .treatment-tabs__right {
    padding-top: 2rem; }

  .treatment-tabs-menu {
    margin-bottom: 4rem; }

  .text-hover {
    display: none !important; }

  .treatment-tabs__list li a {
    overflow: visible !important; }

  .treatment-tabs-menu li .item_text {
    padding-left: 5rem; }
    .treatment-tabs-menu li .item_text::before {
      width: 4rem; }

  .p-feature--02 {
    padding: 2rem 0 11rem; }

  .col__puppy {
    gap: 2rem; }

  .col2_puppy {
    gap: 2rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .u-sp767-only {
    display: none; } }
@media (max-width: 960px) {
  .col3__staff {
    grid-template-columns: repeat(2, 1fr); }

  .p-page-section .btn_info {
    display: flex;
    justify-content: center; }

  .col__puppy .c-box {
    margin-bottom: 2.5rem; }

  .c-box {
    min-height: 21rem; } }
@media (max-width: 767px) {
  .p-top-information .p-footer__clinic-table .schedule--table .row dd.fz-sp {
    font-size: 1rem; }

  .card_left__title .title__01 span::after {
    display: none; }

  .card_left__desc {
    font-size: 1.5rem;
    line-height: 185%;
    letter-spacing: .05rem; }

  .card_left__title .title__01 span {
    padding-right: 0; }

  .card_left__title .title__01 {
    font-size: 3rem; }

  .card_left__title .title__02 {
    font-size: 2rem;
    letter-spacing: 0;
    padding-left: 6rem; }

  .p-top-information .p-footer__clinic-box {
    margin-left: 0;
    gap: 3rem; }

  .card_left .btn_info {
    display: flex;
    justify-content: center; }

  .card_left__app .img_01 {
    width: 17.5rem; }

  .card_left__app .img_02 {
    width: 14.6rem; }

  .card_left::after {
    width: 2.3rem;
    height: 5.1rem;
    top: 11.9rem;
    right: 4rem; }

  .card_left__title {
    padding-left: 0; }

  .p-top-visit__list li {
    width: 100%; }

  .p-top-visit__list li a {
    min-height: 35rem; }

  .treatment-tabs-menu li {
    font-size: 1.5rem; }
    .treatment-tabs-menu li:nth-child(1), .treatment-tabs-menu li:nth-child(2), .treatment-tabs-menu li:nth-child(3) {
      width: 12rem; }

  .treatment-tabs-menu li .item_text {
    padding-left: 0;
    padding-top: 5rem; }
    .treatment-tabs-menu li .item_text::before {
      left: 1.8rem;
      top: 35%;
      height: 3rem; }

  .treatment-tabs__list li a.dh-01::before {
    top: -1rem; }

  .treatment-tabs__list li a .dog-image {
    width: 6rem;
    height: 7rem; }

  .treatment-tabs__list.vz-02 li a {
    padding-top: 12.5rem;
    padding-bottom: 2.8rem; }

  .treatment-tabs__list.vz-02 li a::after {
    display: none; }

  .treatment-tabs__list li a {
    padding: 9.8rem 0.5rem 4.8rem 0.5rem; }

  .treatment-tabs__list li a::before {
    top: 1.5rem;
    width: 5rem;
    height: 5rem; }

  .treatment-tabs__list li a::after {
    display: none; }

  .col__puppy {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem; }

  .col2_puppy,
  .col2__kitten,
  .col3__staff {
    grid-template-columns: repeat(1, 1fr); }

  .col2__kitten {
    gap: 2rem; }

  .p-page-section .card_left__app .img_01 {
    width: 14.5rem; }

  .p-page-section .card_left__app .img_02 {
    width: 12.6rem; }

  .p-page-section .card_left__app {
    gap: 1.5rem; }

  .p-page-section .btn_info a {
    width: 20.8rem;
    font-size: 1.5rem; }

  .c-box {
    min-height: 10rem; } }
@media (max-width: 520px) {
  .card_left__app {
    flex-flow: column; } }

/*# sourceMappingURL=style.css.map */
