@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/zen-maru-gothic-400.woff2") format("woff2"); }
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/zen-maru-gothic-500.woff2") format("woff2"); }
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/zen-maru-gothic-700.woff2") format("woff2"); }
*,
*::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(3rem, 28px);
  --size-h2: max(2.6rem, 26px);
  --size-h3: max(2.4rem, 24px);
  --size-h4: max(2.2rem, 22px);
  --size-h5: max(2rem, 20px);
  --size-h6: max(1.8rem, 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, 13px);
      --size-h1: max(2.2rem, 21px);
      --size-h2: max(2.1rem, 20px);
      --size-h3: max(2.0rem, 19px);
      --size-h4: max(1.9rem, 18px);
      --size-h5: max(1.8rem, 17px);
      --size-h6: max(1.7rem, 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: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: var(--size-p);
  color: #535353;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p {
  font-size: var(--size-p);
  line-height: 195%;
  letter-spacing: 0.05rem;
  font-weight: 400; }
  @media (max-width: 960px) {
    p {
      line-height: 185%;
      letter-spacing: 0em;
      text-align: justify; } }

/* ==========================================================================
   Object - Utility (u-)
   ========================================================================== */
.u-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important; }

.u-hidden {
  display: none !important; }

@media screen and (min-width: 961px) {
  .u-sp-only {
    display: none !important; } }

@media screen and (max-width: 960px) {
  .u-pc-only {
    display: none !important; } }

.hv-o {
  transition: all 0.35s; }
  .hv-o:hover {
    opacity: 0.8; }

.d-block {
  display: block; }

.d-inline {
  display: inline; }

.d-inline-block {
  display: inline-block; }

.d-flex {
  display: flex;
  flex-wrap: wrap; }

.d-inline-flex {
  display: inline-flex; }

.d-grid {
  display: grid; }

.d-inline-grid {
  display: inline-grid; }

.d-none {
  display: none; }

.justify-start {
  justify-content: flex-start; }

.justify-center {
  justify-content: center; }

.justify-end {
  justify-content: flex-end; }

.justify-between {
  justify-content: space-between; }

.justify-around {
  justify-content: space-around; }

.items-start {
  align-items: flex-start; }

.items-center {
  align-items: center; }

.items-end {
  align-items: flex-end; }

.items-stretch {
  align-items: stretch; }

@media (max-width: 960px) {
  .hv-o:hover {
    opacity: 1; } }
.u-mt-0 {
  margin-top: 0; }

.u-mt-xs {
  margin-top: var(--space-xs) !important; }

.u-mt-sm {
  margin-top: var(--space-sm) !important; }

.u-mt-md {
  margin-top: var(--space-md) !important; }

.u-mt-lg {
  margin-top: var(--space-lg) !important; }

.u-mt-xl {
  margin-top: var(--space-xl) !important; }

.u-mt-2xl {
  margin-top: var(--space-2xl) !important; }

.u-mb-0 {
  margin-bottom: 0 !important; }

.u-mb-xs {
  margin-bottom: var(--space-xs) !important; }

.u-mb-sm {
  margin-bottom: var(--space-sm) !important; }

.u-mb-md {
  margin-bottom: var(--space-md) !important; }

.u-mb-lg {
  margin-bottom: var(--space-lg) !important; }

.u-mb-xl {
  margin-bottom: var(--space-xl) !important; }

.u-mb-2xl {
  margin-bottom: var(--space-2xl) !important; }

.u-text-center {
  text-align: center; }

.u-text-left {
  text-align: left; }

.u-text-right {
  text-align: right; }

.u-text-sm {
  font-size: 1.5rem; }

.u-text-lg {
  font-size: 2rem; }

.u-text-bold {
  font-weight: 700; }

.u-text-muted {
  color: #535353; }

.u-text-primary {
  color: #1f8dc6; }

.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; }

.p-seo-h1 {
  background: #ffc65d;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0.3rem;
  margin: 0;
  letter-spacing: 0rem;
  line-height: 188%; }
  @media screen and (max-width: 767px) {
    .p-seo-h1 {
      font-size: 1.1rem;
      padding: 0.5rem 0.5rem;
      line-height: 130%;
      letter-spacing: 0; } }

.home img {
  border-radius: 0; }

.site-header {
  position: relative;
  z-index: 110;
  height: 12.122rem; }
  @media screen and (max-width: 960px) {
    .site-header {
      height: 6rem; } }

.site-branding {
  flex: 1 1 auto;
  min-width: 0; }

.p-header {
  padding: 0.7rem 2rem 0.7rem 2.9rem;
  position: fixed;
  left: 0;
  top: 3.6rem;
  z-index: 10;
  background: #fff;
  width: 100%;
  transition: all 0.35s; }
  .p-header__left img {
    width: 29.6rem;
    object-fit: cover; }
  .p-header__right {
    gap: 4.5rem; }
  .p-header__right-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s; }
  .p-header__right-info {
    position: relative;
    z-index: 0;
    padding-left: 2.5rem; }
    .p-header__right-info::before {
      content: "";
      position: absolute;
      width: 1.6rem;
      height: 10rem;
      background: url(assets/img/line-header.svg) no-repeat center/contain;
      top: 50%;
      left: 0;
      transform: translateY(-53%);
      z-index: -1; }
    .p-header__right-info .h-address {
      color: #535353;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 120%;
      letter-spacing: 0;
      text-align: center;
      position: relative;
      z-index: 0;
      padding-left: 3rem;
      margin-bottom: 0.8rem;
      margin-left: 1rem; }
      .p-header__right-info .h-address::before {
        content: "";
        position: absolute;
        width: 2.01rem;
        height: 2rem;
        background: url(assets/img/icon-address.svg) no-repeat center/contain;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        z-index: -1; }
    .p-header__right-info .c-nav-header li:last-child {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column; }
    .p-header__right-info li .title-tel {
      color: #fff;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 157%;
      letter-spacing: 0;
      position: relative;
      z-index: 0;
      margin-left: 3.5rem; }
      .p-header__right-info li .title-tel::before {
        content: "";
        position: absolute;
        width: 16.584rem;
        height: 1.9rem;
        background: url(assets/img/bg-address-h.png) no-repeat center/contain;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -55%);
        z-index: -1; }
    .p-header__right-info li a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      .p-header__right-info li a .tel {
        color: #535353;
        font-size: 4rem;
        font-weight: 500;
        line-height: 112.5%;
        letter-spacing: 0;
        font-family: "Zen Maru Gothic", sans-serif;
        position: relative;
        z-index: 0;
        padding-left: 4rem;
        margin-top: -0.6rem; }
        .p-header__right-info li a .tel::before {
          content: "";
          position: absolute;
          width: 1.8rem;
          height: 1.8rem;
          background: url(assets/img/icon-tel.svg) no-repeat center/contain;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          z-index: -1; }
  .p-header__menu {
    margin-right: 1.8rem; }
    .p-header__menu .menu-item a {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 0 2.1rem;
      position: relative;
      z-index: 0;
      transition: all 0.35s; }
      .p-header__menu .menu-item a .menu-image-title {
        padding-left: 0;
        color: #535353;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 115%;
        letter-spacing: 0; }
      .p-header__menu .menu-item a .en {
        color: #1f8dc6;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 188%;
        letter-spacing: 0.112rem; }
      .p-header__menu .menu-item a .menu-image-title-after {
        padding-right: 0; }
      .p-header__menu .menu-item a img {
        width: 3.6rem; }
      .p-header__menu .menu-item a::before {
        content: "";
        position: absolute;
        width: 0rem;
        height: 0.3rem;
        background: #ffc65d;
        bottom: -0.3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
        border-radius: 0.4rem;
        transition: all 0.35s; }
    .p-header__menu .menu-item.current_page_item a::before, .p-header__menu .menu-item.current-menu-parent a::before {
      width: 4rem; }
    .p-header__menu .menu-item:hover a::before {
      width: 4rem; }
  .p-header.is-open .p-header__right-container {
    opacity: 0;
    pointer-events: none; }

.p-mv {
  background: #fef9f1;
  padding-top: 12.5rem; }
  .p-mv picture {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 159.4rem;
    margin-left: auto;
    position: relative;
    z-index: 0; }
    .p-mv picture::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 7.7rem;
      background: url(assets/img/mv_line01.png) no-repeat center/cover;
      bottom: 0;
      left: 0;
      z-index: 1; }
    .p-mv picture img {
      width: 100%;
      object-fit: cover;
      border-radius: 7rem 0 0 0; }
  .p-mv__slide--text {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-42%);
    left: 4.4rem;
    max-width: 108rem; }
  .p-mv__slide--main {
    color: #1f8dc6;
    font-size: 6rem;
    font-weight: bold;
    line-height: 127%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    z-index: 0; }
    .p-mv__slide--main.main-3::after {
      content: "";
      position: absolute;
      width: 12.4rem;
      height: 5.5rem;
      background: url(assets/img/icon-mv02.svg) no-repeat center/contain;
      top: 50%;
      right: 18rem;
      transform: translateY(-2%);
      z-index: 0; }
    .p-mv__slide--main strong {
      font-weight: inherit;
      position: relative;
      z-index: 0; }
      .p-mv__slide--main strong:first-child {
        padding: 2rem 0.5rem 2rem 1rem;
        margin-bottom: -4.5rem; }
        .p-mv__slide--main strong:first-child::before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background: url(assets/img/bg-title-mv01.svg) no-repeat center/contain;
          top: 50%;
          left: 50%;
          transform: translate(-55%, -50%);
          z-index: -1; }
        .p-mv__slide--main strong:first-child::after {
          content: "";
          position: absolute;
          width: 9.7rem;
          height: 9.3rem;
          background: url(assets/img/icon-mv01.svg) no-repeat center/contain;
          top: -3.5rem;
          right: -2.3rem;
          z-index: -1; }
      .p-mv__slide--main strong:last-child {
        padding: 2.5rem 0.5rem 2.5rem 1rem; }
        .p-mv__slide--main strong:last-child::before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background: url(assets/img/bg-title-mv02.svg) no-repeat center/contain;
          top: 50%;
          left: 50%;
          transform: translate(-53.5%, -50%);
          z-index: -1; }
        .p-mv__slide--main strong:last-child::after {
          content: "";
          position: absolute;
          width: 12.4rem;
          height: 5.5rem;
          background: url(assets/img/icon-mv02.svg) no-repeat center/contain;
          top: -2rem;
          left: 50%;
          transform: translateX(-27%);
          z-index: -1; }
    .p-mv__slide--main span.main-03 {
      position: relative;
      z-index: 0;
      padding: 2.5rem 0.5rem 2.5rem 1rem; }
      .p-mv__slide--main span.main-03::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(assets/img/bg-title-mv03.svg) no-repeat center/contain;
        top: 50%;
        left: 50%;
        transform: translate(-51.5%, -50%);
        z-index: -1; }
      .p-mv__slide--main span.main-03::after {
        content: "";
        position: absolute;
        width: 9.7rem;
        height: 9.3rem;
        background: url(assets/img/icon-mv01.svg) no-repeat center/contain;
        top: -6rem;
        left: 4.7rem;
        z-index: -1; }
    .p-mv__slide--main span.main-04 {
      position: relative;
      z-index: -1;
      margin-left: 1.5rem;
      padding: 2.1rem 0.5rem 2.1rem 1rem;
      margin-top: -4.5rem; }
      .p-mv__slide--main span.main-04::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(assets/img/bg-title-mv04.svg) no-repeat center/contain;
        top: 50%;
        left: 50%;
        transform: translate(-53.5%, -50%);
        z-index: -1; }
  .p-mv__slide--sub {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem; }
    .p-mv__slide--sub p {
      color: #fff;
      font-size: 2.6rem;
      font-weight: bold;
      line-height: 173%;
      letter-spacing: 0;
      font-family: "Zen Maru Gothic", sans-serif;
      position: relative;
      z-index: 0;
      padding: 0.5rem 0.5rem 0.5rem 1rem; }
      .p-mv__slide--sub p::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(assets/img/bg-txtmv02.png) no-repeat center/contain;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1; }
      .p-mv__slide--sub p.sub-02 {
        padding: 0.5rem 1rem 0.5rem 1rem;
        margin-top: -1rem; }
        .p-mv__slide--sub p.sub-02::before {
          background: url(assets/img/bg-txtmv01.png) no-repeat center/contain; }

@media (min-width: 960.5px) {
  .home .p-header {
    background: transparent; }
    .home .p-header.active {
      background: #fff; }
  .home .site-header {
    height: auto; }

  .p-header__menu > li {
    position: relative; }
  .p-header__menu li .sub-menu {
    pointer-events: none;
    position: absolute;
    z-index: 0;
    opacity: 0;
    right: 0;
    padding: 1.5rem;
    left: -2rem;
    top: 100%;
    transition: all 0.3s ease;
    width: 35rem; }
    .p-header__menu li .sub-menu::before {
      content: "";
      position: absolute;
      width: 100%;
      height: calc(100% - 1.7rem);
      left: 0;
      bottom: 0;
      z-index: -1;
      background: #1f8dc6; }
    .p-header__menu li .sub-menu li {
      margin-left: 0;
      padding: 0;
      border-bottom: 1px solid #fff;
      border-right: 0; }
      .p-header__menu li .sub-menu li:last-child {
        border-width: 0; }
      .p-header__menu li .sub-menu li a {
        display: block;
        padding: 1.5rem 1.5rem 1.5rem 3rem;
        border-right: 0;
        color: #fff !important;
        font-size: 1.6rem;
        position: relative;
        transition: all 0.35s;
        width: 100%;
        text-align: left; }
        .p-header__menu li .sub-menu li a::before {
          content: none; }
        .p-header__menu li .sub-menu li a::after {
          content: "";
          position: absolute;
          top: 2.3rem;
          -webkit-mask: url(assets/img/icon_arrow-02.svg) center/100% no-repeat;
          mask: url(assets/img/icon_arrow-02.svg) center/100% no-repeat;
          background: #fff;
          left: 1rem;
          width: 1rem;
          height: 1rem;
          clip-path: inherit;
          transform: initial; }
        .p-header__menu li .sub-menu li a:hover {
          opacity: 0.8; }
          .p-header__menu li .sub-menu li a:hover::after {
            width: 1rem; }
  .p-header__menu li.vz-02 {
    position: initial; }
    .p-header__menu li.vz-02 .sub-menu {
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      left: 0;
      top: calc(100% - 1.4rem);
      padding: 5rem 10rem !important; }
      .p-header__menu li.vz-02 .sub-menu::before {
        height: calc(100% - 1.4rem); }
      .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: 1.7rem 0 0; } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .site-header {
    height: 11rem; }

  .p-header {
    padding: 0.5rem 1rem 0.5rem 1.5rem; }
    .p-header__left img {
      width: 20.6rem; }
    .p-header__right {
      gap: 1rem; }
      .p-header__right-info {
        padding-left: 0.5rem; }
        .p-header__right-info .h-address {
          font-size: 1.5rem;
          padding-left: 2.5rem; }
        .p-header__right-info li a .tel {
          font-size: 3.5rem;
          padding-left: 2.5rem; }
    .p-header__menu {
      margin-right: 1rem; }
      .p-header__menu .menu-item a {
        padding: 0 0.8rem; }
        .p-header__menu .menu-item a .menu-image-title {
          font-size: 1.6rem; }
        .p-header__menu .menu-item a::before {
          bottom: -0.1rem; }
    .p-header .p-header__menu li:hover .sub-menu {
      padding: 0.6rem 0 0; }
    .p-header .p-header__menu li .sub-menu::before {
      height: calc(100% - 0.6rem); }
    .p-header .p-header__menu li.vz-02 .sub-menu {
      top: calc(100% - 0.5rem); }
    .p-header.active .p-header__menu .menu-item a::before {
      bottom: 0.05rem; }
    .p-header.active .p-header__menu li:hover .sub-menu {
      padding: 0.5rem 0 0; }
    .p-header.active .p-header__menu li .sub-menu::before {
      height: calc(100% - 0.5rem); }

  .p-mv picture {
    width: 112.4rem; } }
@media (max-width: 1440px) and (min-width: 1024.5px) {
  .p-header__right-info::before {
    height: 9rem; }

  .p-header .p-header__menu li:hover .sub-menu {
    padding: 1.3rem 0 0; }

  .p-header .p-header__menu li .sub-menu::before {
    height: calc(100% - 1.3rem); }

  .p-header.active .p-header__menu li:hover .sub-menu {
    padding: 1.3rem 0 0; }

  .p-header.active .p-header__menu li .sub-menu::before {
    height: calc(100% - 1.2rem); }

  .p-header .p-header__menu li.vz-02 .sub-menu {
    top: calc(100% - 0.6rem); }

  .p-header .p-header__menu li.vz-02 .sub-menu::before {
    height: calc(100% - 0.6rem); }

  .p-header__menu .menu-item a::before {
    bottom: -0.5rem; }

  .p-header.active .p-header__menu .menu-item a::before {
    bottom: -0.5rem; } }
@media (max-width: 960px) {
  .p-header {
    padding: 0.5rem 0.5rem 0.5rem 1rem; }
    .p-header__right-container {
      display: none; }
    .p-header__left img {
      width: 18.6rem; }

  .p-mv {
    padding-top: 0rem;
    height: 50rem; }
    .p-mv picture {
      height: 50rem; }
      .p-mv picture img {
        border-radius: 0;
        height: 100%; }
      .p-mv picture::before {
        height: 2.5rem;
        content: none; }
    .p-mv__slide--text {
      top: auto;
      transform: inherit;
      bottom: 0rem;
      left: 0rem;
      max-width: 100rem;
      background: white;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(254, 249, 241, 0.6) 60%, #fef9f1 100%); }
    .p-mv__slide--main {
      font-size: 2.3rem;
      border-radius: 0;
      padding: 0 1.5rem;
      margin-bottom: 1rem;
      color: #1f8dc6;
      text-shadow: 2px 1px 2px #ffffff; }

  .p-mv__slide--main strong::before {
    display: none; }

  .p-mv__slide--main strong:first-child {
    padding: 0;
    margin-bottom: 0; }

  .p-mv__slide--main strong:last-child {
    padding: 0; }

  .p-mv__slide--sub {
    line-height: 150%; }

  .p-mv__slide--sub p {
    font-size: 1.6rem;
    font-weight: 500;
    color: #535353;
    letter-spacing: 0rem;
    line-height: 150%;
    padding: 0 1.5rem !important;
    text-shadow: 2px 1px 2px #ffffff; }
    .p-mv__slide--sub p:not(:last-child) {
      margin-bottom: 0.7rem; }

  .p-mv__slide--sub p::before {
    display: none; }

  .p-mv__slide--main strong:first-child::after {
    width: 5.7rem;
    height: 4.3rem;
    top: -2.5rem;
    right: -1.3rem; }

  .p-mv__slide--main strong:last-child::after {
    left: auto;
    right: -4rem;
    top: auto;
    bottom: -2rem;
    transform: inherit;
    width: 7.4rem;
    height: 2.5rem;
    content: none; }

  .p-mv__slide--main span.main-03 {
    padding: 0; }

  .p-mv__slide--main span.main-04 {
    padding: 0;
    margin-top: 0;
    margin-left: 0; }

  .p-mv__slide--main span.main-03::before {
    display: none; }

  .p-mv__slide--main span.main-04::before {
    display: none; }

  .p-mv__slide--main span.main-03::after {
    top: -4rem;
    left: -0.3rem;
    width: 4.7rem;
    height: 4.3rem; }

  .p-mv__slide--main span.main-04::after {
    width: 6.4rem;
    height: 2.5rem;
    right: -6rem;
    transform: translateY(20%); }

  .p-mv__slide--main.main-3::after {
    width: 7.4rem;
    height: 3.5rem;
    right: -2rem;
    transform: translateY(116%); } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-header__left img {
    width: 21.6rem; }

  .p-mv picture::before {
    height: 3.5rem; } }
.home .p-footer__contact {
  margin-top: -9.5rem; }

.p-footer {
  position: relative;
  z-index: 3; }
  .p-footer__contact {
    padding-top: 10.5rem;
    padding-bottom: 1.2rem;
    background-image: url(assets/img/f-bg-01.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    position: relative;
    z-index: 0; }
    @media screen and (max-width: 960px) {
      .p-footer__contact {
        padding-top: var(--space-lg);
        padding-bottom: var(--space-md);
        background-size: cover; } }
    .p-footer__contact::before {
      content: "";
      position: absolute;
      width: 30.6rem;
      height: 28.2rem;
      background: url(assets/img/icon-f01.png) no-repeat center/contain;
      top: 11.6rem;
      left: 0;
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-footer__contact::before {
          display: none; } }
    .p-footer__contact::after {
      content: "";
      position: absolute;
      width: 17rem;
      height: 15.7rem;
      background: url(assets/img/icon-f02.png) no-repeat center/contain;
      top: 18.4rem;
      right: 2.2rem;
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-footer__contact::after {
          display: none; } }
  .p-footer__contact-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8.3rem;
    max-width: 92.5rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.8rem; }
    @media screen and (max-width: 960px) {
      .p-footer__contact-inner {
        flex-direction: column;
        gap: var(--space-md);
        padding-left: 1.5rem;
        padding-right: 1.5rem; } }
  .p-footer__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-top: 1rem;
    width: 29.8rem; }
    @media screen and (max-width: 960px) {
      .p-footer__profile {
        width: 100%; } }
  .p-footer .p-info-time {
    width: calc(100% - 8.3rem - 29.8rem);
    margin-right: 0; }
    @media screen and (max-width: 960px) {
      .p-footer .p-info-time {
        width: 100%; } }
  .p-footer__logo img {
    width: auto;
    height: 6.2rem; }
    @media screen and (max-width: 960px) {
      .p-footer__logo img {
        height: 3.4rem; } }
  .p-footer__address {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #fff6e5;
    font-size: 1.4rem;
    line-height: 1.6; }
  .p-footer__address-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    margin-top: 0.2em; }
  .p-footer__tel {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 3rem 1rem;
    border-radius: 999px;
    background-color: #ffffff;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.08); }
    @media (hover: hover) {
      .p-footer__tel:hover {
        opacity: 0.85; } }
  .p-footer__tel-label {
    color: #ffa500;
    font-size: 1.2rem;
    line-height: 1.6;
    letter-spacing: 0.08em; }
  .p-footer__tel-num {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #1f8dc6;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1; }
    @media screen and (max-width: 960px) {
      .p-footer__tel-num {
        font-size: 2.4rem; } }
  .p-footer__tel-icon {
    flex-shrink: 0;
    width: 1.8rem;
    height: 1.8rem; }
  .p-footer__hours {
    flex: 0 1 60rem; }
    @media screen and (max-width: 960px) {
      .p-footer__hours {
        flex: 1 1 auto;
        width: 100%; } }
  .p-footer__hours-table {
    width: 100%;
    border-radius: 1.6rem;
    border-collapse: separate;
    border-spacing: 0;
    background-color: #ffffff;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0; }
    .p-footer__hours-table th,
    .p-footer__hours-table td {
      padding: 1rem 0.4rem;
      text-align: center;
      font-size: 1.5rem;
      line-height: 1.4;
      font-weight: 400; }
      @media screen and (max-width: 767px) {
        .p-footer__hours-table th,
        .p-footer__hours-table td {
          font-size: 1.3rem; } }
    .p-footer__hours-table thead th {
      height: 4.4rem;
      background-color: #1f8dc6;
      color: #ffffff; }
      .p-footer__hours-table thead th:first-child {
        border-radius: 2rem 0 0 2rem; }
      .p-footer__hours-table thead th:last-child {
        border-radius: 0 2rem 2rem 0; }
    .p-footer__hours-table tbody th {
      text-align: left;
      white-space: nowrap;
      color: #535353; }
    .p-footer__hours-table tbody tr + tr th,
    .p-footer__hours-table tbody tr + tr td {
      border-top: 1px solid rgba(31, 141, 198, 0.15); }
  .p-footer__hours-time {
    display: block; }
  .p-footer__hours-note {
    display: block;
    font-size: 1.2rem;
    opacity: 0.7; }
  .p-footer__hours-mark {
    font-size: 1.6rem;
    line-height: 1; }
    .p-footer__hours-mark--open {
      color: #1f8dc6; }
    .p-footer__hours-mark--closed {
      color: rgba(83, 83, 83, 0.5); }
    .p-footer__hours-mark--sat, .p-footer__hours-mark--holiday {
      color: #ffa500; }
  .p-footer__hours-legend {
    margin-top: var(--space-xs);
    color: #fff6e5;
    font-size: 1.3rem;
    line-height: 1.8; }
    .p-footer__hours-legend li:last-child {
      padding-left: 2em; }
  .p-footer__map {
    line-height: 0;
    height: 30.8rem;
    background: #ccc; }
    @media screen and (max-width: 960px) {
      .p-footer__map {
        height: 20rem; } }
    .p-footer__map iframe {
      display: block;
      width: 100%;
      height: 31rem;
      border: 0; }
  .p-footer__info {
    position: relative;
    padding-top: var(--space-sm);
    padding-bottom: 0.5rem;
    background-color: #ffa500;
    background-image: url(assets/img/f-bg-01.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    overflow: hidden; }
    @media screen and (max-width: 960px) {
      .p-footer__info {
        padding-top: 2rem; } }
  .p-footer__info-inner {
    position: relative;
    z-index: 1; }
  .p-footer__banners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: 3.5rem; }
    @media screen and (max-width: 960px) {
      .p-footer__banners {
        gap: var(--space-xs);
        margin-bottom: 1.5rem; } }
  .p-footer__banner img {
    width: auto;
    height: 7rem;
    border-radius: 0.6rem; }
    @media screen and (max-width: 960px) {
      .p-footer__banner img {
        height: 4.4rem;
        width: 17rem; } }
  .p-footer__nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    max-width: 106.5rem;
    margin: 0 auto;
    padding-left: 2.2rem; }
    @media screen and (max-width: 960px) {
      .p-footer__nav {
        display: none; } }
    .p-footer__nav-group {
      width: calc((100% - var(--space-md)) / 2); }
      @media screen and (max-width: 960px) {
        .p-footer__nav-group {
          width: 100%; } }
  .p-footer__nav-head {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: calc(var(--space-xs) - 5px);
    margin-bottom: var(--space-sm);
    color: #ffffff;
    position: relative; }
    .p-footer__nav-head::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 285px;
      height: 1px;
      background-color: #ffffff; }
  .p-footer__nav-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0;
    margin-top: 1rem; }
  .p-footer__nav-en {
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 100%;
    padding-right: 0.5rem; }
  .p-footer__nav-ja {
    padding: 0.2rem 0 0.6rem 2.5rem;
    position: relative;
    top: 0.4rem;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 167%;
    font-family: "Zen Maru Gothic", sans-serif; }
    .p-footer__nav-ja::before {
      content: "";
      position: absolute;
      width: 1px;
      height: 2.65rem;
      background: #fff;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: -1; }
  .p-footer__menu {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    grid-auto-columns: max-content;
    justify-content: start;
    column-gap: 2.3rem;
    row-gap: 0rem; }
    @media screen and (max-width: 960px) {
      .p-footer__menu {
        column-gap: var(--space-md); } }
    @media screen and (max-width: 767px) {
      .p-footer__menu {
        grid-auto-flow: row;
        grid-template-rows: none;
        grid-auto-columns: auto; } }
    .p-footer__menu.vz-02 {
      column-gap: 9.5rem; }
    .p-footer__menu a {
      display: inline-block;
      position: relative;
      color: #ffffff;
      font-size: 1.8rem;
      letter-spacing: 0;
      line-height: 167%;
      z-index: 0;
      padding-left: 1.3rem;
      margin-bottom: 1rem; }
      .p-footer__menu a::before {
        content: "・";
        position: absolute;
        left: -1.2rem;
        top: 50%;
        transform: translateY(-52%);
        line-height: 100%;
        font-size: 3rem;
        z-index: -1; }
      @media (hover: hover) {
        .p-footer__menu a:hover {
          opacity: 0.7; } }
  .p-footer__bottom {
    background-color: #ffa500;
    padding-block: calc(var(--space-sm) - 0.3rem); }
  .p-footer__copyright {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 20px;
    column-gap: 3.4rem;
    row-gap: var(--space-xs); }
    @media screen and (max-width: 960px) {
      .p-footer__copyright {
        column-gap: var(--space-md); } }
  .p-footer__credit {
    display: inline-flex; }
    .p-footer__credit a {
      display: inline-flex; }
    .p-footer__credit img {
      width: auto;
      height: 4.2rem; }
      @media screen and (max-width: 960px) {
        .p-footer__credit img {
          height: 3rem; } }
  .p-footer__copy {
    color: #ffffff;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 140%;
    font-weight: 400; }
    @media screen and (max-width: 960px) {
      .p-footer__copy {
        font-size: 1.5rem; } }
  .p-footer .p-info__guide p {
    color: #fff; }
  .p-footer .p-info__guide .color-tri {
    color: #fff; }
  .p-footer .f-logo img {
    width: 29.8rem;
    object-fit: cover; }
    @media screen and (max-width: 960px) {
      .p-footer .f-logo img {
        width: 19.8rem; } }
  .p-footer__address {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 167%;
    letter-spacing: 0;
    position: relative;
    z-index: 0;
    padding-left: 3rem;
    margin-bottom: 1rem; }
    @media screen and (max-width: 960px) {
      .p-footer__address {
        font-size: 1.5rem; } }
    .p-footer__address::before {
      content: "";
      position: absolute;
      width: 2rem;
      height: 2rem;
      background: url(assets/img/icon-access.svg) no-repeat center/contain;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: -1; }
  .p-footer .f-tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff6e5;
    border-radius: 1rem;
    padding: 0.9rem 1.3rem; }
    .p-footer .f-tel a .title-tel {
      color: #fff;
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 157%;
      letter-spacing: 0;
      text-align: center;
      position: relative;
      z-index: 0; }
      .p-footer .f-tel a .title-tel::before {
        content: "";
        position: absolute;
        width: 16.5rem;
        height: 1.9rem;
        background: url(assets/img/bg-address-h.png) no-repeat center/contain;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1; }
    .p-footer .f-tel a .tel {
      color: #535353;
      font-size: 4rem;
      font-weight: 500;
      line-height: 115%;
      letter-spacing: 0;
      font-family: "Zen Maru Gothic", sans-serif;
      position: relative;
      z-index: 0;
      padding-left: 3rem;
      margin-top: -0.7rem; }
      @media screen and (max-width: 960px) {
        .p-footer .f-tel a .tel {
          font-size: 3rem;
          margin-top: 0; } }
      .p-footer .f-tel a .tel::before {
        content: "";
        position: absolute;
        width: 1.8rem;
        height: 1.8rem;
        background: url(assets/img/icon-tel.svg) no-repeat center/contain;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: -1; }
  .p-footer .p-info__row:first-child::before {
    top: -0.6rem; }

@media screen and (max-width: 960px) {
  .home .p-footer__contact {
    margin-top: -6rem; } }
.footer-link-fix {
  position: fixed;
  bottom: 5.5rem;
  left: 5.5rem;
  z-index: 10;
  gap: 1.3rem;
  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: 33rem;
    position: relative;
    z-index: 0; }
    .footer-link-fix li .close {
      position: absolute;
      z-index: 1;
      top: -0.8rem;
      left: -0.8rem;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 100%;
      box-shadow: 0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.11); }
      .footer-link-fix li .close::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(assets/img/close-fix01.svg) no-repeat center/contain;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        cursor: pointer;
        transition: all 0.35s; }
    .footer-link-fix li img {
      width: 100%; }
    .footer-link-fix li.active {
      display: none; }
    .footer-link-fix li:last-child {
      width: 32.1rem; }
      .footer-link-fix li:last-child .close {
        top: -1.7rem;
        left: -0.6rem; }
        .footer-link-fix li:last-child .close::before {
          background: url(assets/img/close-fix02.svg) no-repeat center/contain; }

.c-pagetop {
  position: fixed;
  bottom: 0.5rem;
  right: 1rem;
  width: 6.6rem;
  height: 8.7rem;
  background: url(assets/img/btn-ontop.png?v=101) no-repeat center/contain;
  cursor: pointer;
  opacity: 0;
  transition: all 0.35s;
  z-index: 50; }
  .c-pagetop.show {
    opacity: 1; }

.p-btn__banner--01 a img {
  width: 60rem; }

@media (min-width: 960.5px) {
  .c-nav-fix {
    display: none; } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-footer__info-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 137.5rem;
    margin-left: auto;
    margin-right: auto; }

  .p-footer__nav-group {
    width: calc((100% - 2.5rem) / 2); }

  .p-footer__contact::before {
    width: 21.6rem;
    height: 20.2rem; } }
@media (max-width: 960px) {
  .p-btn__banner--01 a img {
    width: 28rem; }

  .p-footer {
    padding-bottom: 6rem; }
    .p-footer .p-info__row:nth-child(2) {
      margin-top: -0.5rem; }
      .p-footer .p-info__row:nth-child(2)::before {
        width: calc(100% - 2.8rem); }
    .p-footer .p-info__row:first-child::before {
      top: -0.6rem; }

  .c-nav-fix {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 10;
    background: #1f8dc6; }
    .c-nav-fix__item {
      width: calc((100% - 6rem) / 2);
      height: 100%; }
      .c-nav-fix__item a {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1f8dc6;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0;
        border-right: 1px solid #fff;
        padding-top: 2.5rem;
        position: relative;
        z-index: 0; }
        .c-nav-fix__item a::before {
          content: "";
          position: absolute;
          width: 1.8rem;
          height: 1.8rem;
          -webkit-mask: url(assets/img/icon-tel-sp.svg) center/100% no-repeat;
          mask: url(assets/img/icon-tel-sp.svg) center/100% no-repeat;
          background: #fff;
          left: 50%;
          transform: translateX(-50%);
          top: 1rem;
          z-index: -1; }
      .c-nav-fix__item:last-child a {
        background: #ffa500; }
        .c-nav-fix__item:last-child a::before {
          content: "";
          position: absolute;
          width: 2rem;
          height: 2rem;
          -webkit-mask: url(assets/img/icon-location-sp.svg) center/100% no-repeat;
          mask: url(assets/img/icon-location-sp.svg) center/100% no-repeat; }

  .c-pagetop {
    opacity: 1;
    width: 6rem;
    height: 6rem;
    bottom: 0rem;
    right: 0rem;
    background: url(assets/img/btn-ontop-02.png) no-repeat center/3rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-footer .p-info__row:nth-child(2) {
    margin-top: 0rem; }

  .p-footer .f-logo img {
    width: 23.8rem; }

  .p-footer .p-info__row {
    grid-template-columns: 13.5rem repeat(8, 1fr); }
  .p-footer .p-info__row:first-child dt,
  .p-footer .p-info__row:first-child dd {
    font-size: 1.8rem; }
  .p-footer .p-info__time {
    font-size: 1.8rem; }
  .p-footer .p-info__row dd {
    font-size: 1.5rem; }
  .p-footer .p-info__guide p {
    font-size: 1.8rem; }
  .p-footer .p-info__row:first-child {
    padding: 1rem 1.5rem; } }
[class^="grid-"],
[class*="grid-"] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.l-grid-1064 {
  max-width: 109.4rem; }
.l-grid-1200 {
  max-width: 123rem; }
.l-grid-1236 {
  max-width: 126.6rem; }
.l-grid-1370 {
  max-width: 140rem; }
.l-grid-1374 {
  max-width: 140.4rem; }
.l-grid-1523 {
  max-width: 155.3rem; }
.l-grid-1690 {
  max-width: 172rem; }

#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: 6.1rem;
  height: 6.1rem;
  padding: 0;
  background: #1f8dc6;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease; }
  @media (hover: hover) {
    .c-hamburger:hover {
      opacity: 0.9; } }
  .c-hamburger__line {
    display: block;
    width: 3.468rem;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    transition: transform 0.35s ease, opacity 0.25s ease;
    transform-origin: center; }
  .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); }

@media (max-width: 960px) {
  .c-hamburger {
    width: 5rem;
    height: 5rem;
    gap: 0.5rem;
    border-radius: 0; }
    .c-hamburger__line {
      width: 2.5rem; }

  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg); }

  .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg); } }
.c-heading {
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.08rem;
  color: #1f8dc6;
  font-family: "Zen Maru Gothic", sans-serif; }
  @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: #1f8dc6; }
    @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.3rem 2.5rem;
    background: #1f8dc6;
    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% - 1rem);
      height: calc(100% - 1rem);
      left: 0.5rem;
      top: 0.5rem;
      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, #1f8dc6, #1f8dc6 10%, #fff 10%, #fff 30%, #1f8dc6 30%, #1f8dc6 70%, #fff 70%, #fff 90%, #1f8dc6 90%, #1f8dc6 100%);
      background-size: 0.6rem 0.4rem;
      opacity: 0.7; }
    .c-heading--hy-lv3::before {
      width: 10rem;
      z-index: 1;
      background-color: #1f8dc6; }
  .c-heading--hy-lv4 {
    position: relative;
    padding-left: 3rem;
    font-size: var(--size-h4); }
    .c-heading--hy-lv4.gp-01::before, .c-heading--hy-lv4.gp-01::after {
      top: 2rem; }
      @media screen and (max-width: 960px) {
        .c-heading--hy-lv4.gp-01::before, .c-heading--hy-lv4.gp-01::after {
          top: 1.3rem; } }
    .c-heading--hy-lv4::before, .c-heading--hy-lv4::after {
      content: "";
      position: absolute;
      top: 1.9rem;
      background-color: #1f8dc6;
      transform: translateY(-50%) rotate(45deg); }
      @media screen and (max-width: 960px) {
        .c-heading--hy-lv4::before, .c-heading--hy-lv4::after {
          top: 1.7rem; } }
    .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: #1f8dc6; }
  .c-heading--hy-lv6 {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--size-h6);
    border-left: 0.3rem solid #1f8dc6; }
  .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-heading--tab {
    display: inline-block;
    position: relative;
    padding: 1rem 2.4rem 1rem 4.6rem;
    background-color: #1f8dc6;
    color: #fff;
    border-radius: 0.5rem;
    clip-path: polygon(2rem 0, 100% 0, 100% 100%, 0 100%); }

.c-heading-ribbon {
  position: relative;
  width: fit-content; }
  .c-heading-ribbon__ja {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 1.3rem 3.6rem;
    background-color: #1f8dc6;
    color: #ffffff;
    font-family: "Zen Maru Gothic", Zen Kaku Gothic New, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0.15em;
    border-radius: 0.4rem; }
    @media screen and (max-width: 960px) {
      .c-heading-ribbon__ja {
        padding: 1.1rem 2.8rem;
        font-size: 2.2rem; } }
    .c-heading-ribbon__ja::before, .c-heading-ribbon__ja::after {
      content: "";
      position: absolute;
      bottom: -0.8rem;
      width: 0;
      height: 0;
      border-style: solid; }
    .c-heading-ribbon__ja::before {
      left: 0.4rem;
      border-width: 0.8rem 0.9rem 0 0;
      border-color: #166f9e transparent transparent transparent; }
    .c-heading-ribbon__ja::after {
      right: 0.4rem;
      border-width: 0.8rem 0 0 0.9rem;
      border-color: #166f9e transparent transparent transparent; }
  .c-heading-ribbon__en {
    display: block;
    margin: 1rem 0 0;
    color: #1f8dc6;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.18em;
    text-align: center; }
  .c-heading-ribbon--light .c-heading-ribbon__ja {
    background-color: #ffffff;
    color: #1f8dc6; }
    .c-heading-ribbon--light .c-heading-ribbon__ja::before {
      border-color: rgba(0, 0, 0, 0.14) transparent transparent transparent; }
    .c-heading-ribbon--light .c-heading-ribbon__ja::after {
      border-color: rgba(0, 0, 0, 0.14) transparent transparent transparent; }
  .c-heading-ribbon--light .c-heading-ribbon__en {
    color: #ffffff; }

.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;
    aspect-ratio: 4 / 2.67;
    object-fit: cover; }
    @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: -1.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 1.5rem;
    font-size: var(--size-p);
    line-height: 195%;
    letter-spacing: 0.05rem;
    font-weight: 400;
    border-bottom: 1px dashed rgba(83, 83, 83, 0.3);
    margin-bottom: 1.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: 1.3rem;
      left: 0;
      width: 1rem;
      height: 1rem;
      background-color: #535353;
      border-radius: 50%; }
      @media screen and (max-width: 960px) {
        .c-dot-list > li::before {
          top: 1rem; } }
  .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: 2rem;
    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: 1rem;
      left: 0;
      width: 2rem;
      height: 1.1rem;
      border-left: 0.3rem solid #1f8dc6;
      border-bottom: 0.3rem solid #1f8dc6;
      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: 2rem;
    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(83, 83, 83, 0.2); }
  @media screen and (max-width: 960px) {
    .c-info-table--rowsp .c-info-table__row {
      grid-template-columns: 11rem 1fr; } }
  .c-info-table--pc21 .c-info-table__row {
    grid-template-columns: 21rem 1fr; }
    @media screen and (max-width: 960px) {
      .c-info-table--pc21 .c-info-table__row {
        grid-template-columns: 11rem 1fr; } }
  .c-info-table__row {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 2rem;
    padding: 1.2rem 0rem;
    border-bottom: 1px dashed rgba(83, 83, 83, 0.2); }
    .c-info-table__row.gp-03 {
      grid-template-columns: 20rem 1fr; }
    @media screen and (max-width: 960px) {
      .c-info-table__row {
        grid-template-columns: 9rem 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0rem; }
        .c-info-table__row.gp-02 {
          grid-template-columns: 11rem 1fr; }
        .c-info-table__row.gp-03 {
          grid-template-columns: 9rem 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: #535353; }
      @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 dd .tel a {
      text-decoration: underline; }
    .c-info-table__row dd p {
      text-decoration: none;
      pointer-events: none; }
    .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: #1f8dc6;
      color: #fff;
      border-radius: 0.4rem;
      font-size: 1.4rem; }
  .c-info-table--bordered {
    border: 1px solid #1f8dc6;
    border-top-width: 1px;
    padding: 0 2rem; }
    .c-info-table--bordered .c-info-table__row {
      border-bottom: 1px solid rgba(31, 141, 198, 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: 0; }
  .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(31, 141, 198, 0.2); }
      .c-info-table--striped .c-info-table__row:nth-child(even) {
        background-color: rgba(31, 141, 198, 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(31, 141, 198, 0.3);
      border-bottom: 1px solid rgba(31, 141, 198, 0.3);
      border-radius: 0.6rem;
      padding: 1.6rem 2rem;
      box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.04); }
  .c-info-table--vertical .c-info-table__row {
    grid-template-columns: 1fr;
    gap: 0.6rem; }
    .c-info-table--vertical .c-info-table__row dt {
      font-size: 1.4rem;
      letter-spacing: 0.1rem; }
  .c-info-table--compact .c-info-table__row {
    padding: 0.8rem 0.6rem;
    grid-template-columns: 14rem 1fr;
    gap: 1.2rem; }
    @media screen and (max-width: 960px) {
      .c-info-table--compact .c-info-table__row {
        grid-template-columns: 1fr;
        padding: 0.6rem 0.4rem; } }

.c-box {
  padding: 3rem;
  margin-bottom: 4rem;
  border-radius: 0.8rem; }
  @media screen and (max-width: 960px) {
    .c-box {
      padding: 2rem 1.6rem; } }
  .c-box > :first-child {
    margin-top: 0; }
  .c-box > :last-child {
    margin-bottom: 0; }
  .c-box--bg {
    background-color: rgba(31, 141, 198, 0.08); }
    .c-box--bg.gp-01 {
      background-color: #fff; }
  .c-box--bg-primary {
    background-color: #1f8dc6;
    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: #535353;
    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 #1f8dc6; }
  .c-box--border-thin {
    background-color: #fff;
    border: 0.1rem solid rgba(31, 141, 198, 0.5); }
  .c-box--frame {
    position: relative;
    padding: 5rem;
    background-color: #fff;
    border: 6px solid #1f8dc6;
    border-radius: 0; }
    @media screen and (max-width: 960px) {
      .c-box--frame {
        padding: 2rem 2rem;
        border: 2px solid #1f8dc6; } }
  .c-box--rounded {
    border-radius: 2rem; }
  .c-box--callout {
    background-color: rgba(31, 141, 198, 0.08);
    border-left: 0.6rem solid #1f8dc6;
    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: #535353; }

.c-schedule {
  width: 100%;
  margin: 0 0 4rem;
  border-collapse: collapse;
  border: 1px solid rgba(31, 141, 198, 0.4);
  text-align: center; }
  .c-schedule th,
  .c-schedule td {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(31, 141, 198, 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: #1f8dc6;
    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(31, 141, 198, 0.2);
    color: #1f8dc6;
    font-weight: 700;
    text-align: left;
    padding-left: 1.4rem;
    white-space: nowrap; }
  .c-schedule tbody td {
    color: #535353; }
  .c-schedule .is-closed {
    color: #535353; }

.c-schedule tbody th {
  width: 34rem;
  min-width: 34rem; }
  @media screen and (max-width: 960px) {
    .c-schedule tbody th {
      width: 12rem;
      min-width: 12rem; } }

.c-section {
  margin-bottom: 8rem;
  scroll-margin-top: 8rem; }
  @media screen and (max-width: 960px) {
    .c-section {
      margin-bottom: 5rem;
      scroll-margin-top: 6rem; } }
  .c-section__anchor {
    position: relative;
    top: -8rem;
    visibility: hidden; }
  .c-section__title {
    margin-bottom: 3rem; }
  .c-section__body > :first-child {
    margin-top: 0; }
  .c-section__body > :last-child {
    margin-bottom: 0; }

.c-faq {
  margin: 0 0 4rem; }
  .c-faq__item {
    margin-bottom: 1.6rem;
    border: 1px solid rgba(31, 141, 198, 0.4);
    background-color: #fff; }
    .c-faq__item[open] .c-faq__q::after {
      transform: rotate(180deg); }
  .c-faq__q {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 5rem 1.6rem 5rem;
    background-color: rgba(31, 141, 198, 0.2);
    font-size: var(--size-p);
    font-weight: 700;
    line-height: 1.5;
    color: #535353;
    transition: background-color 0.25s ease; }
    .c-faq__q::-webkit-details-marker {
      display: none; }
    .c-faq__q::before {
      content: "Q.";
      position: absolute;
      left: 1.6rem;
      top: 50%;
      transform: translateY(-50%);
      font-family: "Zen Maru Gothic", sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: #1f8dc6; }
    .c-faq__q::after {
      content: "";
      position: absolute;
      right: 2rem;
      top: 50%;
      width: 0.9rem;
      height: 0.9rem;
      border-right: 0.2rem solid #1f8dc6;
      border-bottom: 0.2rem solid #1f8dc6;
      transform: translateY(-70%) rotate(45deg);
      transition: transform 0.3s ease; }
    @media (hover: hover) {
      .c-faq__q:hover {
        background-color: rgba(31, 141, 198, 0.25); } }
  .c-faq__a {
    position: relative;
    padding: 1.6rem 2rem 1.6rem 5rem;
    font-size: var(--size-p);
    line-height: 1.85;
    color: #535353; }
    .c-faq__a::before {
      content: "A.";
      position: absolute;
      left: 1.6rem;
      top: 1.5rem;
      font-family: "Zen Maru Gothic", 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: #1f8dc6;
  color: #fff;
  font-size: var(--size-p);
  line-height: 195%;
  letter-spacing: 0.05rem;
  font-weight: 400;
  text-decoration: none;
  border: 0.1rem solid #1f8dc6;
  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: #1f8dc6; } }
  .c-btn--outline {
    background-color: transparent;
    color: #1f8dc6; }
    @media (hover: hover) {
      .c-btn--outline:hover {
        background-color: #1f8dc6;
        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 / 6;
  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(31, 141, 198, 0.2);
    border-top: 0.4rem solid #1f8dc6;
    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 #1f8dc6;
      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 #1f8dc6;
          border-bottom: 0;
          border-left: 1.2rem solid transparent;
          border-right: 1.2rem solid transparent; } }
  .c-flow__num {
    display: block;
    margin-bottom: 0.2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f8dc6;
    letter-spacing: 0.2rem; }
  .c-flow__title {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f8dc6;
    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(31, 141, 198, 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: #1f8dc6;
    color: #fff;
    border-radius: 50%;
    line-height: 1; }
    .c-step__num > br {
      display: none; }
    @media screen and (max-width: 960px) {
      .c-step__num {
        width: 6.5rem;
        height: 6.5rem; } }
    .c-step__num .label {
      font-family: "Zen Maru Gothic", sans-serif;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0.2rem; }
      @media screen and (max-width: 960px) {
        .c-step__num .label {
          font-size: 0.9rem; } }
    .c-step__num .num {
      font-family: "Zen Maru Gothic", sans-serif;
      font-size: 2.2rem;
      font-weight: 900;
      font-style: italic;
      letter-spacing: -0.05rem; }
      @media screen and (max-width: 960px) {
        .c-step__num .num {
          font-size: 1.6rem; } }
    .c-step__num--auto::after {
      content: counter(c-step,decimal-leading-zero);
      font-family: "Zen Maru Gothic", 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: 2.6rem;
      font-weight: 700;
      color: #535353;
      line-height: 1.4; }
      @media screen and (max-width: 960px) {
        .c-step__body h4 {
          font-size: 1.7rem; } }
    .c-step__body p {
      margin: 0; }
      .c-step__body p:not(:last-child) {
        margin-bottom: 1rem; }
    .c-step__body img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 1.2rem 0;
      border-radius: 0.6rem; }

/* ==========================================================================
   Object - Project (p-)
   ========================================================================== */
.p-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .p-title.vz-02 h3 {
    color: #1f8dc6; }
    .p-title.vz-02 h3::before {
      -webkit-mask: url(assets/img/bg-title03.svg) center/100% no-repeat;
      mask: url(assets/img/bg-title03.svg) center/100% no-repeat;
      background: #ffffff; }
  .p-title h3 {
    color: #fff;
    font-size: 4rem;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    padding: 0 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 0; }
    .p-title h3::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 7.4rem;
      min-width: 25.1rem;
      background: url(assets/img/bg-title03.svg) no-repeat center/cover;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1; }
    .p-title h3::after {
      content: "";
      position: absolute;
      width: 5.9rem;
      height: 5.2rem;
      background: url(assets/img/icon-title_new.png) no-repeat center/contain;
      top: -4rem;
      left: 50%;
      transform: translateX(-55%);
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-title h3::after {
          top: -4.5rem; } }
  .p-title p {
    color: #535353;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 108%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif; }

.p-btn a {
  color: #454545;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 175%;
  letter-spacing: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1rem 2rem;
  border-radius: 9.9rem;
  border: 1px solid #67b4e6;
  background: #e8f3f9;
  width: 22rem;
  height: 6rem;
  position: relative;
  z-index: 0;
  transition: all 0.35s; }
  .p-btn a::before {
    content: "";
    position: absolute;
    width: 2.6rem;
    height: 2.6rem;
    background: url(assets/img/icon-btn.png) no-repeat center/cover;
    top: 50%;
    transform: translateY(-50%);
    right: 1.5rem;
    z-index: -1; }
  .p-btn a:hover {
    background: #fff; }

.p-info {
  padding: 10rem 0 22rem;
  background: #fef9f1;
  position: relative;
  z-index: 0; }
  .p-info::before {
    content: "";
    position: absolute;
    width: 25rem;
    height: 39.4rem;
    background: url(assets/img/icon-new01.png) no-repeat center/contain;
    top: 13.6rem;
    left: 0rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-info::before {
        display: none; } }
  .p-info::after {
    content: "";
    position: absolute;
    width: 26.8rem;
    height: 46.1rem;
    background: url(assets/img/icon-new02.png) no-repeat center/contain;
    top: 5rem;
    right: 0rem;
    z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-info::after {
        display: none; } }
  .p-info__inner {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3.6rem; }
  .p-info__news {
    width: 66.86rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 0; }
    .p-info__news .p-btn {
      margin-bottom: 6.5rem; }
    .p-info__news .p-title {
      position: relative;
      top: 0.5rem;
      margin-bottom: 9.5rem; }
    .p-info__news::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: url(assets/img/bg_new01.png) no-repeat center/contain;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1; }
  .p-info__list {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 57.1rem;
    margin-bottom: 6.4rem; }
    .p-info__list ul {
      height: 18rem;
      width: 100%; }
    .p-info__list .p-news__item a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin-bottom: 4rem; }
    .p-info__list .p-news__date {
      color: #fff;
      font-size: 1.8rem;
      font-weight: 500;
      line-height: 167%;
      letter-spacing: 0.09rem;
      width: 11.5rem;
      margin-right: 2.5rem;
      text-align: center;
      position: relative;
      z-index: 0; }
      .p-info__list .p-news__date::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(assets/img/bg-time_new.png) no-repeat center/contain;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -45%);
        z-index: -1; }
    .p-info__list .p-news__contents {
      width: calc(100% - 14rem); }
    .p-info__list .p-news__title {
      color: #535353;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 167%;
      letter-spacing: 0rem; }
  .p-info__clinic {
    width: calc(100% - 3.6rem - 66.86rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1.5rem 0;
    position: relative;
    z-index: 0; }
    .p-info__clinic .p-title {
      position: relative;
      top: -1rem;
      margin-bottom: 1.3rem; }
    .p-info__clinic::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: url(assets/img/bg_new02.png) no-repeat center/contain;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: -1; }
  .p-info__time {
    width: 100%;
    max-width: 54.3rem;
    margin-right: 1.5rem; }
  .p-info__table {
    background: #f6fcff;
    border-radius: 2.6rem 2.2rem 2rem 2rem;
    margin-bottom: 1.5rem; }
  .p-info__row {
    display: grid;
    grid-template-columns: 11.5rem repeat(8, 1fr);
    align-items: center;
    padding: 1rem 2.9rem; }
    .p-info__row.tn-01:first-child {
      padding: 0 2.9rem 1.7rem 2.9rem; }
      @media screen and (max-width: 960px) {
        .p-info__row.tn-01:first-child {
          padding: 0.7rem 1.5rem; } }
    .p-info__row:first-child {
      position: relative;
      z-index: 0;
      padding: 0.7rem 2.9rem; }
      .p-info__row:first-child dt,
      .p-info__row:first-child dd {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 167%;
        letter-spacing: 0; }
      .p-info__row:first-child::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: url(assets/img/bg-table_new.png) no-repeat center/contain;
        top: 0;
        left: 0;
        z-index: -1; }
    .p-info__row:nth-child(2) {
      position: relative;
      z-index: 0; }
      .p-info__row:nth-child(2)::before {
        content: "";
        position: absolute;
        width: calc(100% - 5.8rem);
        height: 1px;
        background: #9c9c9c;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1; }
    .p-info__row dd {
      text-align: center;
      color: #67b4e6;
      font-size: 1.3rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0rem; }
      .p-info__row dd.dd-x {
        color: #535353;
        font-size: 1.5rem; }
      .p-info__row dd.dd-tri {
        color: #ffa500;
        font-size: 1.5rem; }
  .p-info__hour {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; }
  .p-info__time {
    color: #535353;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 167%;
    letter-spacing: 0rem; }
  .p-info__note {
    color: #535353;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 187.5%;
    letter-spacing: 0rem;
    margin-left: 0.7rem;
    margin-top: -0.9rem; }
  .p-info__guide {
    margin-left: 1.5rem;
    margin-bottom: 2.2rem; }
    .p-info__guide p {
      color: #535353;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 167%;
      letter-spacing: 0; }
    .p-info__guide .color-tri {
      color: #ffa500; }
    .p-info__guide .mg-l {
      margin-left: 2rem; }
  .p-info__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 5.2rem; }
    .p-info__btn.vp-01 {
      padding-left: 2.6rem; }
    .p-info__btn a {
      padding: 1rem 4.5rem 1rem 2rem; }

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: #1f8dc6; }

.os-theme-dark
> .os-scrollbar-vertical
> .os-scrollbar-track
> .os-scrollbar-handle,
.os-theme-light
> .os-scrollbar-vertical
> .os-scrollbar-track
> .os-scrollbar-handle {
  height: 4.3rem !important;
  width: 0.4rem; }

.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden
> .os-scrollbar-vertical {
  background: transparent; }

@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-info__guide {
    margin-bottom: 2rem; }

  .p-info::before {
    width: 11rem;
    height: 17.4rem;
    top: 5.6rem; }

  .p-info::after {
    width: 13.8rem;
    height: 22.1rem;
    top: 1rem; } }
@media (max-width: 960px) {
  .p-btn a {
    font-size: 1.5rem;
    padding: 1rem;
    width: 26rem;
    height: 5rem;
    font-weight: 600; }
    .p-btn a::before {
      width: 2rem;
      height: 2rem;
      right: 1.5rem; }

  .p-title h3 {
    font-size: 2.5rem; }
    .p-title h3::before {
      height: 5.4rem;
      min-width: 18.1rem; }
  .p-title p {
    font-size: 2rem; }

  .p-info {
    padding: 6rem 0 4rem; }
    .p-info__news {
      width: 100%;
      margin-bottom: 6.6rem; }
      .p-info__news::before {
        transform: translate(-50%, -45%);
        background: transparent;
        background-color: #fff;
        background-image: linear-gradient(to right, #d9dde3 1px, transparent 1px), linear-gradient(to bottom, #d9dde3 1px, transparent 1px);
        background-size: 1.5rem 1.5rem; }
      .p-info__news .p-title {
        margin-bottom: 1.5rem; }
      .p-info__news .p-btn {
        margin-bottom: 0rem; }
    .p-info__clinic {
      width: 100%;
      padding: 0 1rem; }
      .p-info__clinic .p-info__btn {
        gap: 1rem;
        padding-bottom: 2.2rem; }
      .p-info__clinic::before {
        background: transparent;
        background-color: #fff;
        background-image: linear-gradient(to right, #d9dde3 1px, transparent 1px), linear-gradient(to bottom, #d9dde3 1px, transparent 1px);
        background-size: 1.5rem 1.5rem; }
    .p-info__list {
      max-width: 32.5rem;
      margin-bottom: 1.4rem; }
      .p-info__list ul {
        height: 10rem; }
      .p-info__list .p-news__item a {
        margin-bottom: 1rem; }
      .p-info__list .p-news__date {
        font-size: 1.5rem;
        width: 8rem;
        letter-spacing: 0;
        margin-right: 1rem;
        text-align: center; }
      .p-info__list .p-news__title {
        font-size: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis; }
      .p-info__list .p-news__contents {
        width: calc(100% - 9rem); }
    .p-info__time {
      margin-right: 0; }
    .p-info__row {
      grid-template-columns: 9.5rem repeat(8, 1fr);
      padding: 0.9rem 1.5rem; }
      .p-info__row:first-child {
        padding: 0.7rem 1.5rem;
        background: #1f8dc6;
        border-radius: 9.9rem; }
        .p-info__row:first-child::before {
          display: none; }
        .p-info__row:first-child dt,
        .p-info__row:first-child dd {
          font-size: 1.5rem; }
    .p-info__time {
      font-size: 1.5rem; }
    .p-info__note {
      font-size: 1.5rem; }
    .p-info__guide p {
      font-size: 1.5rem; }

  .os-theme-dark
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle,
  .os-theme-light
  > .os-scrollbar-vertical
  > .os-scrollbar-track
  > .os-scrollbar-handle {
    height: 3.3rem !important;
    transform: translate(0.6rem, 5.9rem); }

  .os-theme-dark > .os-scrollbar-vertical,
  .os-theme-light > .os-scrollbar-vertical {
    right: -0.6rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-info__row {
    padding: 0.9rem 3.5rem; }
    .p-info__row:first-child {
      padding: 2rem 3.5rem; }
  .p-info__clinic::before {
    transform: translate(-50%, -50%); }
  .p-info__news {
    margin-bottom: 10rem;
    padding-bottom: 2rem; }

  .p-info__list {
    max-width: 50.5rem;
    margin-bottom: 2.4rem; }

  .p-info__list .p-news__date {
    width: 8rem; }

  .p-info__list ul {
    height: 13rem; }

  .p-info__news .p-title {
    margin-bottom: 0.5rem;
    top: -1.5rem; }

  .p-info__list .p-news__item a {
    margin-bottom: 2.5rem; }

  .os-theme-dark > .os-scrollbar-vertical,
  .os-theme-light > .os-scrollbar-vertical {
    right: 0.4rem; }

  .p-info {
    padding: 10rem 0 15rem; }

  .p-info__news::before {
    transform: translate(-50%, -50%); } }
@media (max-width: 767px) {
  .p-info {
    padding: 8.5rem 0 24.667vw; }
    .p-info__btn {
      padding-bottom: 5.867vw; }
    .p-info__guide {
      margin-left: 0; } }
.p-front-about {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-xl); }
  @media screen and (max-width: 960px) {
    .p-front-about {
      padding-block: var(--space-lg); } }
  .p-front-about__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 46rem) 1fr;
    gap: 4rem;
    align-items: start; }
    @media screen and (max-width: 960px) {
      .p-front-about__inner {
        grid-template-columns: 1fr;
        gap: 4rem; } }
  .p-front-about__body {
    position: relative;
    z-index: 2;
    padding-top: 6rem; }
    @media screen and (max-width: 960px) {
      .p-front-about__body {
        padding-top: 0;
        order: 2; } }
  .p-front-about__heading {
    margin: 0 0 3rem; }
  .p-front-about__catch {
    margin: 0 0 2rem;
    color: #0a6cb1;
    font-family: "Zen Maru Gothic", Zen Kaku Gothic New, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0.04em; }
    @media screen and (max-width: 960px) {
      .p-front-about__catch {
        font-size: 2.2rem; } }
  .p-front-about__catch-line {
    display: block; }
  .p-front-about__catch-mark {
    display: inline-block;
    margin: 0.2rem 0.4rem;
    padding: 0.2rem 1.4rem;
    background-color: #ffa500;
    color: #ffffff;
    border-radius: 999px;
    font-size: 0.94em; }
  .p-front-about__divider {
    position: relative;
    display: block;
    width: 100%;
    max-width: 40rem;
    height: 0.2rem;
    margin-bottom: 3rem;
    background-image: radial-gradient(circle, rgba(31, 141, 198, 0.55) 40%, transparent 42%);
    background-size: 1.2rem 0.2rem;
    background-repeat: repeat-x; }
    .p-front-about__divider::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      width: 1.2rem;
      height: 1.2rem;
      border: 0.2rem solid #1f8dc6;
      border-radius: 50%;
      background: #ffffff;
      transform: translateY(-50%); }
  .p-front-about__lead {
    margin: 0 0 3.5rem;
    color: #535353;
    font-size: 1.6rem;
    line-height: 2.1;
    letter-spacing: 0.03em;
    text-align: justify; }
  .p-front-about__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem; }
    @media screen and (max-width: 767px) {
      .p-front-about__actions {
        justify-content: center; } }
  .p-front-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-width: 22rem;
    padding: 1.3rem 1.6rem 1.3rem 2.6rem;
    background-color: #dceef9;
    color: #1f8dc6;
    font-family: "Zen Maru Gothic", Zen Kaku Gothic New, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: background-color 0.2s, transform 0.2s; }
    @media (hover: hover) {
      .p-front-about__btn:hover {
        background-color: #c8e4f6;
        transform: translateY(-0.2rem); } }
    @media screen and (max-width: 960px) {
      .p-front-about__btn {
        min-width: 0;
        flex: 1 1 auto; } }
  .p-front-about__btn-arrow {
    flex-shrink: 0;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: #1f8dc6 url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 5 16 12 9 19'/%3E%3C/svg%3E) no-repeat center/1.1rem; }
  .p-front-about__visual {
    position: relative;
    min-height: 62rem; }
    @media screen and (max-width: 960px) {
      .p-front-about__visual {
        order: 1;
        min-height: 0; } }
  .p-front-about__building {
    position: relative;
    margin: 0;
    width: 100%; }
    .p-front-about__building img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 4rem 4rem 12rem 4rem;
      object-fit: cover; }
    @media screen and (max-width: 960px) {
      .p-front-about__building {
        max-width: 52rem;
        margin-inline: auto; }
        .p-front-about__building img {
          border-radius: 2rem 2rem 6rem 2rem; } }
  .p-front-about__photo {
    position: absolute;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 0.5rem solid #ffffff;
    box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12); }
    .p-front-about__photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .p-front-about__photo--01 {
      width: 15rem;
      height: 15rem;
      top: 1rem;
      left: -8rem; }
    .p-front-about__photo--02 {
      width: 12rem;
      height: 12rem;
      top: 20rem;
      left: -11rem; }
    .p-front-about__photo--03 {
      width: 13rem;
      height: 13rem;
      bottom: 2rem;
      left: -6rem; }
    .p-front-about__photo--04 {
      width: 16rem;
      height: 16rem;
      bottom: -4rem;
      left: 34%; }
    .p-front-about__photo--05 {
      width: 18rem;
      height: 16rem;
      bottom: -3rem;
      right: 0;
      border-radius: 999px; }
    @media screen and (max-width: 1024px) {
      .p-front-about__photo--01 {
        left: 0; }
      .p-front-about__photo--02 {
        left: -2rem; }
      .p-front-about__photo--03 {
        left: 0; } }
    @media screen and (max-width: 960px) {
      .p-front-about__photo {
        position: static;
        width: auto;
        height: auto;
        aspect-ratio: 1 / 1;
        border-width: 0.4rem; }
        .p-front-about__photo--04, .p-front-about__photo--05 {
          aspect-ratio: 1 / 1; } }
  @media screen and (max-width: 960px) {
    .p-front-about__visual {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; }
    .p-front-about__building {
      grid-column: 1 / -1;
      margin-bottom: 0.5rem; } }

.p-title.vz-02 h3::before {
  -webkit-mask: url(assets/img/bg-title04.svg) center/100% no-repeat;
  mask: url(assets/img/bg-title04.svg) center/100% no-repeat; }
.p-title.vz-02 p {
  color: #ffffff; }

.p-front-animals {
  position: relative;
  padding-block: 6.4rem;
  background-color: #1f8dc6; }
  .p-front-animals::before, .p-front-animals::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0; }
  .p-front-animals::before {
    height: 10rem;
    top: -9.9rem;
    background-position: center top;
    background-image: url(assets/img/top-animals-05.png);
    background-size: 192rem; }
  .p-front-animals::after {
    height: 2rem;
    bottom: -1.9rem;
    background-position: center bottom;
    background-image: url(assets/img/top-animals-05.png); }
  @media screen and (max-width: 960px) {
    .p-front-animals {
      padding-block: 3.4rem; }
      .p-front-animals::before {
        height: 5rem;
        top: -4.9rem;
        background-size: cover; } }
  .p-front-animals__inner {
    z-index: 1; }
    .p-front-animals__inner::before {
      content: "";
      width: 100%;
      height: calc(100% + 12rem);
      position: absolute;
      left: 0;
      top: -9.9rem;
      z-index: 1;
      background-image: url(assets/img/top-animals-06-1.png?vs=1.0.1);
      background-position: center top;
      background-size: 192rem; }
      @media screen and (max-width: 960px) {
        .p-front-animals__inner::before {
          top: -4.9rem;
          height: calc(100% + 7rem);
          background-size: contain; } }
    .p-front-animals__inner .p-title,
    .p-front-animals__inner .p-front-animals__cards,
    .p-front-animals__inner .p-front-animals__foot {
      position: relative;
      z-index: 2; }
  .p-front-animals .p-info__btn {
    margin-top: -4.9rem;
    padding-bottom: 4.9rem; }
    @media screen and (max-width: 960px) {
      .p-front-animals .p-info__btn {
        margin-top: -3.9rem;
        padding-bottom: 3rem; } }
  .p-front-animals__cards {
    width: 100%;
    max-width: 125.5rem;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0rem;
    margin-top: 8.2rem; }
    @media screen and (max-width: 960px) {
      .p-front-animals__cards {
        grid-template-columns: 1fr;
        gap: 8rem; } }
  .p-front-animals__card {
    position: relative;
    padding-bottom: 9.5rem;
    background-image: url(assets/img/top-animals-04.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain; }
    .p-front-animals__card::after {
      content: "";
      right: 3.5rem;
      bottom: 0.3rem;
      position: absolute;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat; }
    .p-front-animals__card--dog {
      --animal-color: #f2a10c;
      --animal-blob: #f9cf7d;
      --animal-soft: #fdf0d3; }
      .p-front-animals__card--dog .p-info__btn.vs-03 .c-btn-more {
        background-color: #fff6e5;
        border: 1px solid #ffa500; }
        .p-front-animals__card--dog .p-info__btn.vs-03 .c-btn-more:hover {
          background-color: #ffffff; }
        .p-front-animals__card--dog .p-info__btn.vs-03 .c-btn-more::before {
          background-image: url(assets/img/top-animals-icon01.png); }
      .p-front-animals__card--dog::after {
        width: 12rem;
        height: 10.8rem;
        right: 5.3rem;
        bottom: -1.7rem;
        background-image: url(assets/img/top-animals-icon12.png); }
        @media screen and (max-width: 960px) {
          .p-front-animals__card--dog::after {
            width: 7rem;
            height: 5.8rem;
            right: 1.3rem;
            bottom: 0; } }
      .p-front-animals__card--dog .p-front-animals__thumb::before {
        width: 8.8rem;
        height: 8.6rem;
        right: 5.6rem;
        top: 13.7rem;
        background-image: url(assets/img/top-animals-icon10.png); }
        @media screen and (max-width: 960px) {
          .p-front-animals__card--dog .p-front-animals__thumb::before {
            width: 4.8rem;
            height: 4.6rem;
            right: -0.4rem;
            top: 9.7rem; } }
      .p-front-animals__card--dog .p-front-animals__thumb::after {
        width: 13.6rem;
        height: 15.5rem;
        left: -6.6rem;
        top: 20.4rem;
        background-image: url(assets/img/top-animals-icon11.png); }
        @media screen and (max-width: 960px) {
          .p-front-animals__card--dog .p-front-animals__thumb::after {
            width: 8.6rem;
            height: 8.5rem;
            left: -3.9rem;
            top: 13.4rem; } }
    .p-front-animals__card--cat {
      --animal-color: #1f8dc6;
      --animal-blob: #bfe0f2;
      --animal-soft: #e2f0f9; }
      .p-front-animals__card--cat::after {
        width: 13.7rem;
        height: 10.4rem;
        background-image: url(assets/img/top-animals-icon15.png); }
        @media screen and (max-width: 960px) {
          .p-front-animals__card--cat::after {
            width: 7.7rem;
            height: 5.4rem;
            right: 0.8rem;
            bottom: -0.5rem; } }
      .p-front-animals__card--cat .p-front-animals__thumb::before {
        width: 8.5rem;
        height: 14.8rem;
        left: 4.9rem;
        top: 5.1rem;
        background-image: url(assets/img/top-animals-icon13.png); }
        @media screen and (max-width: 960px) {
          .p-front-animals__card--cat .p-front-animals__thumb::before {
            width: 4.5rem;
            height: 7.8rem;
            top: -0.9rem; } }
        @media screen and (max-width: 767px) {
          .p-front-animals__card--cat .p-front-animals__thumb::before {
            left: -1.1rem; } }
      .p-front-animals__card--cat .p-front-animals__thumb::after {
        width: 12.2rem;
        height: 13.3rem;
        right: -4.3rem;
        top: 11.4rem;
        background-image: url(assets/img/top-animals-icon14.png); }
        @media screen and (max-width: 960px) {
          .p-front-animals__card--cat .p-front-animals__thumb::after {
            width: 6.2rem;
            height: 7.3rem;
            right: -2.5rem;
            top: 7.4rem; } }
    @media screen and (max-width: 960px) {
      .p-front-animals__card {
        padding: 8rem 2rem 6rem;
        background-position: center;
        background-size: cover; } }
  .p-front-animals__thumb {
    position: relative;
    left: 0%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 29.9rem;
    margin-top: -8.4rem; }
    .p-front-animals__thumb img {
      display: block;
      width: auto;
      height: 29.9rem; }
    .p-front-animals__thumb::before, .p-front-animals__thumb::after {
      content: "";
      position: absolute;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat; }
    @media screen and (max-width: 960px) {
      .p-front-animals__thumb {
        height: 20rem;
        margin-top: -9rem; }
        .p-front-animals__thumb img {
          height: 24rem; } }
  .p-front-animals__foot {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    width: 100%;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(var(--space-lg) - 1rem); }
    .p-front-animals__foot > * {
      width: calc((100% - 4rem) / 2); }
    @media screen and (max-width: 960px) {
      .p-front-animals__foot {
        gap: 2rem; }
        .p-front-animals__foot > * {
          width: calc((100% - 2rem) / 2); } }
    @media screen and (max-width: 767px) {
      .p-front-animals__foot {
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-top: var(--space-md); }
        .p-front-animals__foot > * {
          width: 100%; } }
  .p-front-animals__note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 2.3rem;
    background-color: #fff6e5;
    border-radius: 0.5rem; }
    .p-front-animals__note p {
      margin: 0;
      color: #535353;
      line-height: 170%; }
    @media screen and (max-width: 960px) {
      .p-front-animals__note {
        padding: 1rem; }
        .p-front-animals__note p br {
          display: none; } }

.p-info__btn.vs-01 .c-btn-more {
  background-color: #ffa500;
  border-color: #ffa500; }
  .p-info__btn.vs-01 .c-btn-more::before {
    background-image: url(assets/img/top-animals-icon02.png); }
  .p-info__btn.vs-01 .c-btn-more:hover {
    color: #ffa500;
    background-color: #fff6e5; }
    .p-info__btn.vs-01 .c-btn-more:hover::before {
      background-image: url(assets/img/top-animals-icon01.png); }
.p-info__btn.vs-02 .c-btn-more {
  background-color: #1f8dc6;
  border-color: #1f8dc6; }
  .p-info__btn.vs-02 .c-btn-more::before {
    background-image: url(assets/img/top-animals-icon03.png); }
  .p-info__btn.vs-02 .c-btn-more:hover {
    color: #1f8dc6;
    background-color: #e8f3f9; }
    .p-info__btn.vs-02 .c-btn-more:hover::before {
      background-image: url(assets/img/icon-btn.png); }
.p-info__btn.vs-01 a, .p-info__btn.vs-02 a {
  font-size: 2.6rem;
  font-weight: bold;
  color: #ffffff; }
  @media screen and (max-width: 960px) {
    .p-info__btn.vs-01 a, .p-info__btn.vs-02 a {
      font-size: 1.8rem; } }
.p-info__btn.vs-01 .c-btn-more__text, .p-info__btn.vs-02 .c-btn-more__text {
  position: relative;
  top: -0.25rem;
  font-family: "Zen Maru Gothic", sans-serif; }
.p-info__btn.dh-01 a {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  line-height: 150%; }
  @media screen and (max-width: 960px) {
    .p-info__btn.dh-01 a {
      font-size: 1.5rem; } }
.p-info__btn.vs-03 {
  margin-top: 0;
  padding-bottom: 0; }
  .p-info__btn.vs-03 .c-btn-more {
    width: 26rem;
    padding-left: 4.5rem;
    background-position: left 1.2rem center;
    background-repeat: no-repeat;
    background-size: 4.3rem; }
    .p-info__btn.vs-03 .c-btn-more::after {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 6rem;
      height: 100%;
      background-color: #f2a10c;
      mask-size: 4.3rem;
      mask-repeat: no-repeat !important;
      -webkit-mask-position-x: 65% !important;
      -webkit-mask-position-y: 50% !important;
      transition: ease all 0.35s; }
    .p-info__btn.vs-03 .c-btn-more:hover {
      background-color: #f2a10c !important;
      color: #fff; }
      .p-info__btn.vs-03 .c-btn-more:hover::before {
        background-image: url(assets/img/top-animals-icon02.png); }
      .p-info__btn.vs-03 .c-btn-more:hover::after {
        background-color: #fff; }
    @media screen and (max-width: 960px) {
      .p-info__btn.vs-03 .c-btn-more {
        height: 5.5rem;
        padding: 0.5rem 4rem 0.5rem 5rem;
        background-size: 3.5rem; } }
  .p-info__btn.vs-03 .c-btn-more__text {
    line-height: 140%;
    text-align: center; }
    @media screen and (max-width: 960px) {
      .p-info__btn.vs-03 .c-btn-more__text {
        font-weight: 600; } }
  .p-info__btn.vs-03 .icon-01 a::after {
    mask: url(assets/img/top-animals-icon04.png); }
  .p-info__btn.vs-03 .icon-02 a::after {
    mask: url(assets/img/top-animals-icon05.png); }
  .p-info__btn.vs-03 .icon-03 a::after {
    mask: url(assets/img/top-animals-icon06.png); }
  .p-info__btn.vs-03 .icon-04 a::after {
    mask: url(assets/img/top-animals-icon07.png); }
  .p-info__btn.vs-03 .icon-05 a::after {
    mask: url(assets/img/top-animals-icon08.png); }
  .p-info__btn.vs-03 .icon-06 a::after {
    mask: url(assets/img/top-animals-icon09.png); }
  .p-info__btn.vs-03 .icon-04 a,
  .p-info__btn.vs-03 .icon-05 a,
  .p-info__btn.vs-03 .icon-06 a {
    background-size: 3.6rem; }
    .p-info__btn.vs-03 .icon-04 a::after,
    .p-info__btn.vs-03 .icon-05 a::after,
    .p-info__btn.vs-03 .icon-06 a::after {
      background-color: #1f8dc6; }
    .p-info__btn.vs-03 .icon-04 a:hover,
    .p-info__btn.vs-03 .icon-05 a:hover,
    .p-info__btn.vs-03 .icon-06 a:hover {
      background-color: #1f8dc6 !important; }
      .p-info__btn.vs-03 .icon-04 a:hover::before,
      .p-info__btn.vs-03 .icon-05 a:hover::before,
      .p-info__btn.vs-03 .icon-06 a:hover::before {
        background-image: url(assets/img/top-animals-icon03.png); }
  @media screen and (max-width: 960px) {
    .p-info__btn.vs-03 {
      gap: 1.5rem; } }

.p-front-menu {
  position: relative;
  padding-top: 11.8rem;
  padding-bottom: 0.8rem;
  background-image: url(assets/img/top-animals-07.png), url(assets/img/top-animals-08.png);
  background-position: left top -5.5rem, right top 21.7rem;
  background-size: 27.3rem, 25.6rem;
  background-repeat: no-repeat; }
  .p-front-menu::after, .p-front-menu::before {
    content: "";
    position: absolute;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat; }
  .p-front-menu::before {
    width: 15.7rem;
    height: 11rem;
    left: 29.8rem;
    bottom: -1.4rem;
    background-image: url(assets/img/top-animals-09.png); }
    @media (max-width: 1440px) {
      .p-front-menu::before {
        left: 16.8rem;
        bottom: -0.4rem; } }
    @media screen and (max-width: 960px) {
      .p-front-menu::before {
        left: 1rem;
        top: inherit;
        bottom: 2rem; } }
    @media screen and (max-width: 767px) {
      .p-front-menu::before {
        width: 11.6rem;
        height: 8.3rem;
        bottom: 1rem; } }
  .p-front-menu::after {
    width: 33.6rem;
    height: 18.3rem;
    right: 16rem;
    bottom: -0.4rem;
    background-image: url(assets/img/top-animals-10.png); }
    @media (max-width: 1440px) {
      .p-front-menu::after {
        right: 4rem; } }
    @media screen and (max-width: 960px) {
      .p-front-menu::after {
        width: 18.6rem;
        height: 10.3rem;
        right: 2rem;
        top: 8.6rem;
        bottom: inherit; } }
    @media screen and (max-width: 767px) {
      .p-front-menu::after {
        width: 14.6rem;
        height: 8.3rem;
        right: 1rem;
        top: 14.6rem; } }
  @media (max-width: 1440px) {
    .p-front-menu {
      background-position: left top 48.5rem, right top 19.7rem;
      background-size: 16.3rem, 16.6rem; } }
  @media screen and (max-width: 960px) {
    .p-front-menu {
      padding-top: 10.8rem;
      padding-bottom: 12rem;
      background-position: left top -3.5rem, right bottom 0.7rem;
      background-size: 10.3rem, 10.6rem; } }
  .p-front-menu__inner {
    position: relative;
    z-index: 1; }
  .p-front-menu__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.3rem 4rem;
    width: 100%;
    max-width: 113rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.6rem; }
    @media (max-width: 1600px) {
      .p-front-menu__cards {
        max-width: 120rem; } }
    @media (max-width: 1440px) {
      .p-front-menu__cards {
        max-width: 130rem; } }
    @media screen and (max-width: 960px) {
      .p-front-menu__cards {
        margin-top: 6.6rem;
        gap: 6rem 2rem; } }
    @media screen and (max-width: 767px) {
      .p-front-menu__cards {
        margin-top: 6.6rem;
        gap: 6rem; } }
    .p-front-menu__cards > li {
      width: calc((100% - 4rem) / 2);
      position: relative; }
      @media screen and (max-width: 960px) {
        .p-front-menu__cards > li {
          width: calc((100% - 2.01rem) / 2); } }
      @media screen and (max-width: 767px) {
        .p-front-menu__cards > li {
          width: 100%; }
          .p-front-menu__cards > li:nth-child(1) {
            order: 0; }
          .p-front-menu__cards > li:nth-child(2) {
            order: 2; }
          .p-front-menu__cards > li:nth-child(3) {
            order: 1; }
          .p-front-menu__cards > li:nth-child(4) {
            order: 3; }
          .p-front-menu__cards > li:nth-child(5) {
            order: 4; } }
    .p-front-menu__cards .item {
      width: 100%;
      display: flex;
      align-items: center;
      height: auto;
      min-height: 20.5rem;
      padding-top: 0.5rem;
      padding-bottom: 0.5rem;
      background-image: url(assets/img/icon-btn.png), var(--bg);
      background-repeat: no-repeat;
      background-position: center right 2rem, center;
      background-size: 2.6rem, contain;
      transition: ease all 0.55s; }
      .p-front-menu__cards .item--img {
        width: 17.5rem; }
        .p-front-menu__cards .item--img img {
          width: 15rem;
          display: block;
          margin-left: 2rem;
          margin-right: auto; }
        @media screen and (max-width: 960px) {
          .p-front-menu__cards .item--img {
            width: 100%;
            margin-top: -4rem; }
            .p-front-menu__cards .item--img img {
              width: 11.5rem;
              margin-left: auto; } }
      .p-front-menu__cards .item--desc {
        width: calc(100% - 17.5rem);
        padding-right: 5.5rem; }
        .p-front-menu__cards .item--desc p {
          color: #535353;
          line-height: 0%;
          display: block;
          margin-top: 1rem;
          margin-bottom: -0.8rem;
          opacity: 0;
          transition: ease all 0.75s; }
        @media screen and (max-width: 960px) {
          .p-front-menu__cards .item--desc {
            width: 100%;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            padding-bottom: 1.5rem; }
            .p-front-menu__cards .item--desc p {
              line-height: 165%;
              margin-bottom: 0rem;
              opacity: 1;
              font-weight: 600; }
              .p-front-menu__cards .item--desc p br {
                display: none; } }
        @media screen and (max-width: 767px) {
          .p-front-menu__cards .item--desc p {
            text-align: center; }
            .p-front-menu__cards .item--desc p br {
              display: block; } }
      .p-front-menu__cards .item--title {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.6rem;
        font-weight: bold;
        line-height: 120%;
        color: #fff;
        font-family: "Zen Maru Gothic", sans-serif;
        -webkit-text-stroke: 6px #1f8dc6;
        paint-order: stroke fill; }
        @media screen and (max-width: 960px) {
          .p-front-menu__cards .item--title {
            font-size: 2rem;
            letter-spacing: 0.1rem;
            -webkit-text-stroke-width: 2px !important; } }
      .p-front-menu__cards .item--link {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 3.5rem;
        z-index: 1; }
        .p-front-menu__cards .item--link a {
          display: block;
          width: 100%;
          height: 100%; }
        .p-front-menu__cards .item--link:hover + .item {
          background-image: url(assets/img/icon-btn.png), var(--bg-hover); }
          .p-front-menu__cards .item--link:hover + .item.vs-02 {
            background-image: url(assets/img/top-animals-icon01.png), var(--bg-hover); }
          .p-front-menu__cards .item--link:hover + .item .item--desc p {
            line-height: 160%;
            opacity: 1; }
      .p-front-menu__cards .item.vs-02 {
        background-image: url(assets/img/top-animals-icon01.png), var(--bg); }
        .p-front-menu__cards .item.vs-02 .item--title {
          -webkit-text-stroke: 6px #ffa500; }
      @media (max-width: 1600px) {
        .p-front-menu__cards .item {
          min-height: 21.5rem; } }
      @media (max-width: 1440px) {
        .p-front-menu__cards .item {
          min-height: 23.2rem; } }
      @media screen and (max-width: 960px) {
        .p-front-menu__cards .item {
          flex-direction: column;
          background-position: right 2rem top 2rem, center;
          background-size: 2rem, 80rem;
          gap: 2rem;
          border-radius: 1.5rem;
          border: 1px solid #1f8dc6;
          min-height: 26rem; } }
  @media screen and (max-width: 960px) and (max-width: 767px) {
    .p-front-menu__cards .item {
      min-height: auto; } }
      @media screen and (max-width: 960px) {
          .p-front-menu__cards .item.vs-02 {
            border: 1px solid #f2a10c; } }

.p-front-greeting {
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 13rem;
  padding-bottom: 21rem;
  background: url(assets/img/icon_greeting02.png) no-repeat bottom 37.5rem right 10.4rem/9.1rem 9.3rem, url(assets/img/bg_greeting01.png) no-repeat center/cover;
  margin-bottom: -29rem; }
  .p-front-greeting__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
  .p-front-greeting__body {
    position: relative;
    z-index: 2;
    width: calc(100% - 57.2rem + 2rem);
    top: 2.8rem; }
    .p-front-greeting__body::before {
      content: "";
      position: absolute;
      width: 9.1rem;
      height: 9.3rem;
      background: url(assets/img/icon_greeting02.png) no-repeat center/contain;
      top: 21rem;
      left: -14rem; }
    .p-front-greeting__body::after {
      content: "";
      position: absolute;
      width: 9.1rem;
      height: 9.3rem;
      background: url(assets/img/icon_greeting03.png) no-repeat center/contain;
      top: 11.5rem;
      right: -1.4rem; }
    @media screen and (max-width: 960px) {
      .p-front-greeting__body {
        order: 2; } }
  .p-front-greeting__heading {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 7.5rem; }
  .p-front-greeting__clinic {
    color: #1F8DC6;
    font-size: 4rem;
    font-weight: 500;
    line-height: 112%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    padding-bottom: 3.8rem; }
    @media screen and (max-width: 960px) {
      .p-front-greeting__clinic {
        font-size: 2.2rem;
        order: 3;
        padding-top: 3rem;
        padding-bottom: 2rem;
        margin-left: auto;
        margin-right: auto; } }
  .p-front-greeting__lead {
    color: #535353;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 167%;
    letter-spacing: 0;
    padding-bottom: 6rem; }
    @media screen and (max-width: 960px) {
      .p-front-greeting__lead {
        font-size: 1.5rem;
        line-height: 185%;
        padding-bottom: 3rem;
        order: 4; } }
  .p-front-greeting__visual {
    position: relative;
    width: 57.2rem;
    margin-right: -2rem;
    top: 8rem; }
    @media screen and (max-width: 960px) {
      .p-front-greeting__visual {
        order: 2;
        top: 0; } }
  .p-front-greeting__photo {
    margin: 0; }
    .p-front-greeting__photo img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain; }
  .p-front-greeting__name {
    position: absolute;
    top: 26%;
    right: -8rem;
    display: block;
    padding: 0 2.2rem 1.1rem;
    background-color: rgba(255, 255, 255, 0.43);
    border-radius: 1.2rem; }
    .p-front-greeting__name .box_name {
      display: flex;
      align-items: center;
      gap: 1.6rem;
      padding-bottom: 1rem;
      flex-wrap: wrap;
      border-bottom: 1px solid #DDDDDD; }
    @media screen and (max-width: 960px) {
      .p-front-greeting__name {
        position: static;
        margin-top: -2rem;
        padding: 1.5rem;
        background-color: rgba(255, 255, 255, 0.9);
        text-align: center; }
        .p-front-greeting__name .box_name {
          justify-content: center;
          gap: 1rem; } }
  .p-front-greeting__name-badge {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 7.8rem;
    height: 3.3rem;
    margin: 0;
    border-radius: 2rem;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 167%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif; }
    .p-front-greeting__name-badge::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: url(assets/img/bg_textgreeting.png) no-repeat center/contain; }
  .p-front-greeting__name-ja {
    margin: 0;
    white-space: nowrap;
    color: #1F8DC6;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 128%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif; }
    @media screen and (max-width: 960px) {
      .p-front-greeting__name-ja {
        font-size: 2.4rem; } }
  .p-front-greeting__name-en {
    white-space: nowrap;
    color: #535353;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 187%;
    letter-spacing: 0.48rem;
    padding-top: .8rem; }
    @media screen and (max-width: 960px) {
      .p-front-greeting__name-en {
        margin-top: 0.8rem;
        font-size: 1.5rem;
        letter-spacing: 0.28rem;
        text-align: center; } }

.p-front-greeting .p-btn a {
  line-height: 150%;
  text-align: center; }

.p-front-greeting .p-info__btn {
  padding-bottom: 2.2rem; }

.p-top-feature {
  padding: 5rem 0 8rem 0;
  background: url(assets/img/icon_feature.png) no-repeat top 21rem left/42.6rem 40.2rem, url(assets/img/img_feature02.png) no-repeat top 28rem right/32.7rem 42.4rem, url(assets/img/img_feature03.png) no-repeat bottom 0 left/37.9rem 43.9rem, url(assets/img/bg_feature.png) no-repeat center top/192rem;
  position: relative;
  z-index: 0; }
  .p-top-feature::before {
    content: "";
    position: absolute;
    width: 113.3rem;
    height: 86.9rem;
    background: url(assets/img/img_feature.png) no-repeat center/contain;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .p-top-feature::after {
    content: "";
    position: absolute;
    width: 16.4rem;
    height: 10.4rem;
    background: url(assets/img/icon_feature06.png) no-repeat center/contain;
    bottom: -13rem;
    right: 12.4rem;
    z-index: -1; }
  .p-top-feature__list {
    position: relative;
    height: 153rem;
    top: 23.5rem; }
  .p-top-feature__item {
    position: absolute;
    z-index: 1;
    isolation: isolate; }
    .p-top-feature__item:nth-child(1) {
      top: -2.9rem;
      left: 29rem; }
    .p-top-feature__item:nth-child(2) {
      top: 4rem;
      right: 37rem; }
    .p-top-feature__item:nth-child(4) {
      top: 48rem;
      left: 1rem; }
    .p-top-feature__item:nth-child(5) {
      top: 52rem;
      right: -3.8rem; }
    .p-top-feature__item:nth-child(6) {
      bottom: 5rem;
      left: 33rem; }
    .p-top-feature__item:nth-child(7) {
      bottom: 3rem;
      right: 35rem; }
  .p-top-feature__item:nth-child(1) {
    width: 50.1rem; }
  .p-top-feature__item:nth-child(2) {
    width: 50.3rem; }
  .p-top-feature__item:nth-child(4) {
    width: 50.1rem; }
  .p-top-feature__item:nth-child(5) {
    width: 49.8rem; }
  .p-top-feature__item:nth-child(6) {
    width: 50.5rem; }
  .p-top-feature__item:nth-child(7) {
    width: 51rem; }
  .p-top-feature__img {
    overflow: hidden;
    position: relative;
    z-index: 1;
    width: 100%; }
    .p-top-feature__img img {
      display: block;
      width: 100%;
      height: auto; }
  .p-top-feature__content {
    position: absolute;
    inset: 0;
    padding: 4rem 4rem 4rem 4.8rem;
    z-index: 5; }
    .p-top-feature__content.gp-03 {
      padding: 0 4.3rem 0 3.4rem; }
    .p-top-feature__content.gp-01 {
      padding: 5.6rem 7.3rem 0 6rem; }
    .p-top-feature__content.gp-02 {
      padding: 3.6rem 4.6rem 0 5rem; }
    .p-top-feature__content.gp-04 {
      padding: 3.5rem 2.6rem 0 4rem; }
    .p-top-feature__content.gp-05 {
      padding: 5.5rem 4.6rem 0 7rem; }
  .p-top-feature__heading {
    position: relative;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40rem;
    min-height: 10.4rem;
    margin: -2.2rem 0 2rem -2rem;
    text-align: center;
    color: #FFFFFF;
    font-size: 3rem;
    font-weight: bold;
    line-height: 133%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    white-space: nowrap; }
    .p-top-feature__heading.vs-01 {
      letter-spacing: -0.41rem; }
    .p-top-feature__heading.vs-02 {
      letter-spacing: -0.12rem; }
    .p-top-feature__heading::before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 50%;
      left: 50%;
      width: 53.2rem;
      height: 13.8rem;
      transform: translate(-50%, -50%);
      background: url(assets/img/icon_feature01.png) no-repeat center/contain;
      pointer-events: none; }
  .p-top-feature__item.is-blue .p-top-feature__heading::before {
    content: "";
    position: absolute;
    width: 49.1rem;
    height: 10.8rem;
    background: url(assets/img/icon_feature02.png) no-repeat center/contain; }
  .p-top-feature__item:nth-child(2) .p-top-feature__heading {
    top: -0.5rem; }
  .p-top-feature__item:nth-child(5) .p-top-feature__heading {
    left: 3rem; }
  .p-top-feature__item:nth-child(6) .p-top-feature__heading {
    left: -1.8rem; }
  .p-top-feature__item:nth-child(7) .p-top-feature__heading {
    left: -1.8rem; }
  .p-top-feature__text {
    padding-bottom: 2rem; }
    .p-top-feature__text.vp-02 {
      padding-bottom: 2.5rem; }
    .p-top-feature__text .text_desc {
      color: #535353;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 167%;
      letter-spacing: 0; }
  .p-top-feature__center {
    position: absolute;
    top: 70rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10; }
    .p-top-feature__center::before {
      content: "";
      position: absolute;
      width: 13.2rem;
      height: 11.6rem;
      background: url(assets/img/icon_feature03.png) no-repeat center/contain;
      top: -15.5rem;
      left: 4.5rem; }

.p-top-feature .p-title::before {
  content: "";
  position: absolute;
  width: 9.9rem;
  height: 11.8rem;
  background: url(assets/img/icon_feature04.png) no-repeat center/contain;
  top: -5rem;
  left: -11rem; }
.p-top-feature .p-title::after {
  content: "";
  position: absolute;
  width: 15.3rem;
  height: 9.7rem;
  background: url(assets/img/icon_feature05.png) no-repeat center/contain;
  top: 1rem;
  right: -17rem; }

.p-top-feature .p-info__btn a {
  padding-top: 1.5rem; }

@media (max-width: 1440px) and (min-width: 960.5px) {
  .p-front-greeting {
    margin-top: 10rem;
    padding-bottom: 16rem; }

  .p-front-greeting__inner {
    padding-inline: 3rem; }

  .p-front-greeting__body {
    width: calc(100% - 50rem); }

  .p-front-greeting__visual {
    width: 50rem;
    margin-right: 0; }

  .p-front-greeting__body::before {
    left: -11rem; }

  .p-front-greeting__body::after {
    right: 0; }

  .p-front-greeting::before {
    width: 12rem;
    height: 28rem;
    left: 1rem; }

  .p-front-greeting__heading {
    padding-bottom: 5.5rem; }

  .p-front-greeting__lead {
    padding-bottom: 3rem; }

  .p-top-feature {
    padding: 5rem 0 39rem;
    background: url(assets/img/icon_feature.png) no-repeat top 28rem left/26rem auto, url(assets/img/img_feature02.png) no-repeat top 30rem right/20rem auto, url(assets/img/img_feature03.png) no-repeat bottom left/31rem auto, url(assets/img/bg_feature.png) no-repeat center top/180rem;
    /* Thu nhỏ card */
    /* Chỉnh lại vị trí */ }
    .p-top-feature::after {
      width: 13rem;
      height: 8rem;
      right: 5rem;
      bottom: -8rem; }
    .p-top-feature__list {
      height: 138rem;
      top: 19rem; }
    .p-top-feature__item:nth-child(1), .p-top-feature__item:nth-child(2), .p-top-feature__item:nth-child(4), .p-top-feature__item:nth-child(5), .p-top-feature__item:nth-child(6), .p-top-feature__item:nth-child(7) {
      width: 46rem; }
    .p-top-feature__item:nth-child(1) {
      left: 25rem;
      top: 6rem; }
    .p-top-feature__item:nth-child(2) {
      right: 20rem; }
    .p-top-feature__item:nth-child(4) {
      left: 0;
      top: 55rem; }
    .p-top-feature__item:nth-child(5) {
      right: 0; }
    .p-top-feature__item:nth-child(6) {
      left: 28rem;
      bottom: -7rem; }
    .p-top-feature__item:nth-child(7) {
      right: 20rem;
      bottom: -7rem; }
    .p-top-feature__content {
      padding: 3rem; }
    .p-top-feature__heading {
      min-width: 34rem;
      min-height: 8.5rem;
      font-size: 2.4rem; }
      .p-top-feature__heading::before {
        width: 45rem;
        height: 11.5rem; }
    .p-top-feature__item.is-blue .p-top-feature__heading::before {
      width: 42rem;
      height: 9.5rem; }
    .p-top-feature__text .text_desc {
      font-size: 1.6rem; }
    .p-top-feature__center img {
      width: 20rem; }
    .p-top-feature__center::before {
      width: 10rem;
      height: 9rem;
      top: -12rem; }
    .p-top-feature .p-btn a {
      width: 22rem; }

  .p-top-feature .p-title::after {
    width: 10.3rem;
    right: -12rem; } }
@media (max-width: 960px) {
  .p-front-greeting {
    background: url(assets/img/icon_greeting02.png) no-repeat bottom 5rem right 2rem/6.1rem 7.3rem, linear-gradient(180deg, #FFF6E5 0%, #FFFFFF 100%);
    margin-top: 3rem;
    padding-bottom: 11rem; }

  .p-front-greeting__body,
  .p-front-greeting__visual {
    width: 100%; }

  .p-front-greeting__body {
    top: 14rem;
    display: contents; }

  .p-front-greeting__heading {
    padding-bottom: 2.4rem;
    order: 1; }

  .p-front-greeting__photo img {
    max-width: 26rem;
    margin-left: auto;
    margin-right: auto; }

  .p-front-greeting__body::before {
    top: 59%;
    left: 0;
    width: 6.1rem;
    height: 7.3rem; }

  .p-front-greeting__body::after {
    top: 59%;
    right: 0;
    width: 6.1rem;
    height: 7.3rem; }

  .p-front-greeting::after {
    display: none; }

  .p-front-greeting .p-info__btn {
    gap: 1.5rem;
    order: 5;
    margin: 0 auto; }

  .p-front-greeting__inner {
    padding-top: 7rem; }

  .p-top-feature {
    padding: 28rem 0 5rem;
    background-position: top 4rem left 0, bottom 0 right 0, bottom 0 left 0, center top;
    background-size: 8rem auto, 10rem auto, 10rem auto, 100% auto; }
    .p-top-feature::before, .p-top-feature::after {
      display: none; }
    .p-top-feature__list {
      position: static;
      top: 0;
      height: auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      justify-content: center; }
    .p-top-feature__item {
      position: relative !important;
      top: auto !important;
      right: auto !important;
      bottom: auto !important;
      left: auto !important; }
    .p-top-feature__item:nth-child(1), .p-top-feature__item:nth-child(2), .p-top-feature__item:nth-child(4), .p-top-feature__item:nth-child(5), .p-top-feature__item:nth-child(6), .p-top-feature__item:nth-child(7) {
      width: 38rem;
      padding-bottom: 8rem;
      margin: 0 auto; }
    .p-top-feature__item:nth-child(2), .p-top-feature__item:nth-child(4) {
      padding-bottom: 4rem; }
    .p-top-feature__item:nth-child(7) {
      padding-bottom: 10rem; }
    .p-top-feature__center {
      top: 20rem; }
    .p-top-feature__img {
      border-radius: 2rem; }
    .p-top-feature__content {
      position: absolute;
      inset: 0;
      padding: 1.5rem 4.5rem 1.5rem 3.5rem !important; }
    .p-top-feature__heading {
      min-width: 0;
      min-height: 7rem;
      font-size: 1.6rem;
      margin: 0;
      letter-spacing: 0 !important;
      top: -1.8rem;
      left: 6rem; }
      .p-top-feature__heading::before {
        width: 32rem;
        height: 8rem; }
    .p-top-feature__item.is-blue .p-top-feature__heading::before {
      width: 30rem;
      height: 7rem; }
    .p-top-feature__text .text_desc {
      font-size: 1.5rem;
      line-height: 185%; }

  .p-top-feature .p-title::before {
    width: 6.9rem;
    height: 9.8rem;
    top: -3rem;
    left: -10rem; }
  .p-top-feature .p-title::after {
    width: 14.3rem;
    height: 5.7rem;
    top: 1rem;
    right: -13rem; }

  .p-top-feature__center::before {
    width: 8.2rem;
    height: 9.6rem;
    top: -12.5rem;
    left: 3.5rem; }

  .p-top-feature__item:nth-child(4) .p-top-feature__heading {
    left: 2rem; }

  .p-top-feature__item:nth-child(5) .p-top-feature__heading {
    left: 2rem;
    top: -2.4rem; }

  .p-top-feature__item:nth-child(6) .p-top-feature__heading,
  .p-top-feature__item:nth-child(7) .p-top-feature__heading {
    left: 2.2rem; }

  .p-top-feature .p-btn a {
    width: 20rem;
    height: 5rem; }

  .p-top-feature__item:nth-child(1) .p-top-feature__text,
  .p-top-feature__item:nth-child(5) .p-top-feature__text,
  .p-top-feature__item:nth-child(6) .p-top-feature__text {
    padding-bottom: 9rem; } }
@media (max-width: 767px) {
  .p-front-greeting::after {
    display: none; }

  .p-top-feature__list {
    grid-template-columns: 1fr;
    justify-content: center; }

  .p-top-feature {
    padding-bottom: 0;
    overflow: hidden; } }
.p-front-recruit {
  position: relative;
  padding-top: 12rem;
  z-index: 1; }
  .p-front-recruit::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 28.5rem;
    background: url(assets/img/line_greeting.png) no-repeat center/cover;
    top: 3rem;
    right: 0;
    z-index: 2; }
  .p-front-recruit::after {
    content: "";
    position: absolute;
    width: 24.1rem;
    height: 40.6rem;
    left: 4.2rem;
    top: -24rem;
    z-index: 2;
    background: url(assets/img/icon_greeting.png) no-repeat center/contain;
    pointer-events: none; }
  .p-front-recruit__bg {
    position: absolute;
    inset: 0;
    z-index: 0; }
    .p-front-recruit__bg img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .p-front-recruit__inner {
    position: absolute;
    z-index: 1;
    top: 63%;
    left: 50%;
    transform: translate(-50%, -50%); }
  .p-front-recruit__heading {
    margin-bottom: 3.7rem;
    margin-left: auto;
    margin-right: auto; }
  .p-front-recruit__box {
    position: relative;
    width: 100%; }
  .p-front-recruit__photo {
    margin: 0;
    background: #FEF9F1;
    padding: 1.2rem;
    border-radius: 3rem;
    width: 106.4rem; }
    .p-front-recruit__photo img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 3rem;
      object-fit: cover; }
  .p-front-recruit__panel {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: -8rem auto 0;
    border-radius: 0.6rem;
    text-align: center; }
    .p-front-recruit__panel::before {
      content: "";
      position: absolute;
      width: 68rem;
      height: 21.9rem;
      background: url(assets/img/bg_recruit03.png) no-repeat center/cover;
      top: -3rem;
      left: 19rem;
      z-index: -1; }
    @media screen and (max-width: 960px) {
      .p-front-recruit__panel {
        margin-top: 0;
        padding: 2.5rem 2rem 3rem; } }
  .p-front-recruit__message {
    margin: 0 0 2.5rem;
    color: #1f8dc6;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0;
    text-align: center; }
    @media screen and (max-width: 960px) {
      .p-front-recruit__message {
        font-size: 1.5rem; } }
  .p-front-recruit__message-mark {
    position: relative;
    z-index: 0;
    display: inline-block;
    margin-left: 0.8rem;
    padding: 0.2rem 1.8rem 0.35rem;
    color: #ffffff;
    font-size: 0.96em;
    line-height: 1.1;
    white-space: nowrap; }
    .p-front-recruit__message-mark::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 50%;
      left: 50%;
      z-index: -1;
      transform: translate(-50%, -50%);
      background: url(assets/img/bg_textrecruit.png) no-repeat center/100% 100%; }
    @media screen and (max-width: 960px) {
      .p-front-recruit__message-mark {
        margin-left: 0;
        padding: 0.15rem 1.2rem 0.3rem; } }
  .p-front-recruit__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-width: 22rem;
    padding: 1.3rem 1.6rem 1.3rem 2.8rem;
    background-color: #dceef9;
    color: #1f8dc6;
    font-family: "Zen Maru Gothic", Zen Kaku Gothic New, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: background-color 0.2s, transform 0.2s; }
    @media (hover: hover) {
      .p-front-recruit__btn:hover {
        background-color: #c8e4f6;
        transform: translateY(-0.2rem); } }
  .p-front-recruit__btn-arrow {
    flex-shrink: 0;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: #1f8dc6 url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 5 16 12 9 19'/%3E%3C/svg%3E) no-repeat center/1.1rem; }

.p-front-recruit .box_slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: url(assets/img/bg_recruit.png);
  mask-image: url(assets/img/bg_recruit.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: cover; }
  .p-front-recruit .box_slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #FFA500; }

@media (max-width: 1440px) and (min-width: 960.5px) {
  .p-front-recruit::after {
    width: 31.1rem;
    height: 21.6rem;
    left: -5.8rem;
    top: -7rem; }

  .p-front-recruit {
    padding-top: 10.8rem; }

  .p-header__right-info::before {
    height: 9rem; } }
@media (max-width: 960px) {
  .p-front-recruit::after {
    width: 6.1rem;
    height: 16.6rem;
    left: 1.2rem;
    top: 0rem; }

  .p-front-recruit__photo {
    width: 32.4rem;
    border-radius: 1rem;
    padding: .5rem; }
    .p-front-recruit__photo img {
      border-radius: 1rem; }

  .p-front-recruit__panel::before {
    width: 29rem;
    height: 12.9rem;
    top: 0;
    left: 2rem; }

  .p-front-recruit__heading {
    margin-bottom: 1.7rem; }

  .p-front-recruit {
    padding-bottom: 16rem;
    margin-top: 14rem; }

  .p-front-recruit::before {
    height: 16.533vw;
    top: 9rem; }

  .p-front-recruit__inner {
    top: 43rem; } }
@media (max-width: 767px) {
  .p-front-recruit::before {
    top: 11rem; } }
.p-front-column {
  position: relative;
  overflow: hidden;
  background: url(assets/img/icon_column.png) no-repeat left -0.6rem top 10rem/30.7rem 66.8rem, url(assets/img/icon_column02.png) no-repeat right -0.6rem top 10rem/30.7rem 66.8rem, url(assets/img/bg_column.png) no-repeat center/100% 100%;
  z-index: 2;
  margin-top: -10rem;
  padding-top: 14.5rem;
  padding-bottom: 14rem; }
  @media screen and (max-width: 960px) {
    .p-front-column {
      background: url(assets/img/icon_column.png) no-repeat left -0.6rem top 13rem/9.7rem 33.8rem, url(assets/img/icon_column02.png) no-repeat right -0.6rem top 13rem/9.7rem 33.8rem;
      margin-top: 3rem;
      padding-bottom: 4rem; } }
  .p-front-column::before {
    content: "";
    position: absolute;
    width: 9rem;
    height: 13.2rem;
    background: url(assets/img/icon_column03.png) no-repeat center/contain;
    bottom: 4.5rem;
    left: 22rem;
    z-index: -1; }
  .p-front-column::after {
    content: "";
    position: absolute;
    width: 9.6rem;
    height: 15.6rem;
    background: url(assets/img/icon_column04.png) no-repeat center/contain;
    bottom: 5.2rem;
    right: 14.6rem;
    z-index: -1; }
  .p-front-column__inner {
    position: relative;
    z-index: 1; }
  .p-front-column__heading {
    margin: 0 auto 9rem; }
    @media screen and (max-width: 960px) {
      .p-front-column__heading {
        margin-bottom: var(--space-md); } }
  .p-front-column .p-column__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin: 0;
    padding: 0;
    list-style: none;
    padding-bottom: 4rem; }
    .p-front-column .p-column__list li {
      position: relative; }
    @media screen and (max-width: 960px) {
      .p-front-column .p-column__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
        padding-bottom: 2rem; } }
  .p-front-column .p-column__card {
    display: flex;
    flex-direction: column;
    height: 100%; }
    @media (hover: hover) {
      .p-front-column .p-column__card:hover .p-blog__title {
        color: #1f8dc6; } }
  .p-front-column .p-column__thumb {
    position: relative;
    margin: 0 0 1.6rem;
    aspect-ratio: 4 / 3;
    border-radius: 2rem;
    overflow: hidden;
    line-height: 0; }
    @media (hover: hover) {
      .p-front-column .p-column__thumb:hover img {
        transform: scale(1.15); } }
    @media screen and (max-width: 960px) {
      .p-front-column .p-column__thumb {
        border-radius: 1rem; } }
    .p-front-column .p-column__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      transition: transform 0.4s ease; }
      @media screen and (max-width: 960px) {
        .p-front-column .p-column__thumb img {
          border-radius: 0.8rem; } }
  .p-front-column .p-column__title {
    color: #535353;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 167%;
    letter-spacing: 0;
    font-family: "Zen Maru Gothic", sans-serif;
    margin: 0 0 1rem; }
    @media screen and (max-width: 960px) {
      .p-front-column .p-column__title {
        font-size: 1.5rem;
        line-height: 185%; } }
  .p-front-column .p-column__excerpt {
    color: #535353;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 167%;
    letter-spacing: 0;
    margin: 0; }
    @media screen and (max-width: 960px) {
      .p-front-column .p-column__excerpt {
        font-size: 1.5rem;
        line-height: 185%; } }
  .p-front-column .p-column__empty {
    grid-column: 1 / -1;
    text-align: center; }
  .p-front-column .p-column__date {
    color: #FFA500;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 167%;
    letter-spacing: 0; }
    @media screen and (max-width: 960px) {
      .p-front-column .p-column__date {
        font-size: 1.5rem;
        line-height: 185%; } }
  .p-front-column__actions {
    display: flex;
    justify-content: center;
    margin-top: var(--space-lg); }
    @media screen and (max-width: 960px) {
      .p-front-column__actions {
        margin-top: var(--space-md); } }
  .p-front-column__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-width: 24rem;
    padding: 1.4rem 1.6rem 1.4rem 3rem;
    background-color: #dceef9;
    color: #1f8dc6;
    font-family: "Zen Maru Gothic", Zen Kaku Gothic New, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: 0.04em;
    border-radius: 999px;
    transition: background-color 0.2s, transform 0.2s; }
    @media (hover: hover) {
      .p-front-column__btn:hover {
        background-color: #c8e4f6;
        transform: translateY(-0.2rem); } }
  .p-front-column__btn-arrow {
    flex-shrink: 0;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: #1f8dc6 url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 5 16 12 9 19'/%3E%3C/svg%3E) no-repeat center/1.1rem; }

.p-front-column .p-btn {
  display: flex;
  justify-content: center; }

.text_column {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 156%;
  letter-spacing: 0;
  padding: 0 4.3rem;
  background-color: #FFA500;
  border-radius: 2rem 0 2rem 0; }
  @media screen and (max-width: 960px) {
    .text_column {
      padding: 0 1.3rem;
      border-radius: 1rem 0 1rem 0;
      font-size: 1.5rem; } }

@media (max-width: 1440px) and (min-width: 960.5px) {
  .p-front-column__inner {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto; } }
@media (max-width: 960px) {
  .p-front-column::before {
    height: 6.2rem;
    width: 8rem;
    left: 0;
    bottom: auto;
    top: 6rem; }

  .p-front-column::after {
    height: 6.2rem;
    width: 8rem;
    right: 0;
    bottom: auto;
    top: 6rem; } }
.p-slide {
  overflow: hidden;
  position: relative;
  background-color: #FCEDCE;
  z-index: 1;
  padding-top: 11rem;
  margin-top: -16rem;
  padding-bottom: 5rem; }
  .p-slide.vz-01, .p-slide.vz-02 {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 1rem;
    background-color: unset; }
  .p-slide__list {
    display: flex;
    width: max-content;
    animation: slide-left 20s linear infinite;
    gap: 1rem; }
    .p-slide__list.dh-01 {
      animation: slide-right 40s linear infinite; }
    .p-slide__list.dh-03 {
      animation: slide-left 40s linear infinite; }
  .p-slide__item.dh-02 img {
    border-radius: 0;
    width: 59.3rem; }
    @media screen and (max-width: 960px) {
      .p-slide__item.dh-02 img {
        width: 13.5rem; } }
  .p-slide__item img {
    width: 41rem;
    border-radius: 2rem; }
    @media screen and (max-width: 960px) {
      .p-slide__item img {
        width: 17.5rem; } }

@keyframes slide-left {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
@keyframes slide-lefts {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-172.7rem); } }
@keyframes slide-right {
  from {
    transform: translateX(-50%); }
  to {
    transform: translateX(0); } }
@media screen and (max-width: 960px) {
  @keyframes slide-lefts {
    from {
      transform: translateX(0); }
    to {
      transform: translateX(-42.5rem); } }
  @keyframes slide-right {
    from {
      transform: translateX(-42.5rem); }
    to {
      transform: translateX(0); } } }
@media (max-width: 960px) {
  .p-slide {
    padding-top: 2rem;
    margin-top: 0; } }
.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;
      font-family: "Zen Maru Gothic", sans-serif; }
      @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(31, 141, 198, 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: #1f8dc6; }
      .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: #535353; } }
  .p-news-list__link {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #535353;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease; }
    @media (hover: hover) {
      .p-news-list__link:hover {
        color: #1f8dc6; } }
    @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: #535353;
    font-family: "Zen Maru Gothic", 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: #535353;
    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: #535353; }

.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 #1f8dc6;
    background-color: #fff;
    color: #535353;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.2s ease; }
    .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: #535353;
        -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); }
    @media (hover: hover) {
      .pagination .page-numbers:hover,
      .nav-links .page-numbers:hover {
        background-color: #1f8dc6;
        color: #fff; } }
    .pagination .page-numbers.current,
    .nav-links .page-numbers.current {
      background-color: #1f8dc6;
      color: #fff; }
    .pagination .page-numbers.dots,
    .nav-links .page-numbers.dots {
      border: 0;
      background: none; }

.pagination .screen-reader-text {
  display: none; }

.p-sidebar {
  display: flex;
  flex-direction: column; }
  .p-sidebar__widget {
    border: 0.1rem solid #1f8dc6;
    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: #1f8dc6;
    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 #1f8dc6; }
      .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: #1f8dc6; } }
        @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 #1f8dc6; }

.p-single__header {
  background-color: rgba(31, 141, 198, 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: #1f8dc6; }
  @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: #1f8dc6;
  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: #1f8dc6;
  font-family: "Zen Maru Gothic", sans-serif; }
  @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) {
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.08rem;
    color: #1f8dc6;
    font-family: "Zen Maru Gothic", sans-serif;
    margin-bottom: 2.5rem;
    scroll-margin-top: 6rem; }
    @media screen and (max-width: 960px) {
      .p-single__content :is(h1, h2, h3, h4, h5, h6) {
        letter-spacing: 0.02rem; } }
    .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: #1f8dc6; }
    @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.3rem 2.5rem;
    background: #1f8dc6;
    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% - 1rem);
      height: calc(100% - 1rem);
      left: 0.5rem;
      top: 0.5rem;
      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, #1f8dc6, #1f8dc6 10%, #fff 10%, #fff 30%, #1f8dc6 30%, #1f8dc6 70%, #fff 70%, #fff 90%, #1f8dc6 90%, #1f8dc6 100%);
      background-size: 0.6rem 0.4rem;
      opacity: 0.7; }
    .p-single__content h3::before {
      width: 10rem;
      z-index: 1;
      background-color: #1f8dc6; }
  .p-single__content h4 {
    position: relative;
    padding-left: 3rem;
    font-size: var(--size-h4); }
    .p-single__content h4.gp-01::before, .p-single__content h4.gp-01::after {
      top: 2rem; }
      @media screen and (max-width: 960px) {
        .p-single__content h4.gp-01::before, .p-single__content h4.gp-01::after {
          top: 1.3rem; } }
    .p-single__content h4::before, .p-single__content h4::after {
      content: "";
      position: absolute;
      top: 1.9rem;
      background-color: #1f8dc6;
      transform: translateY(-50%) rotate(45deg); }
      @media screen and (max-width: 960px) {
        .p-single__content h4::before, .p-single__content h4::after {
          top: 1.7rem; } }
    .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: #1f8dc6; }
    .p-single__content h5::before {
      top: .8rem; }
  .p-single__content h6 {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--size-h6);
    border-left: 0.3rem solid #1f8dc6; }
  .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: #535353;
    font-family: "Zen Maru Gothic", sans-serif; }
    @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 :is(td, th, blockquote) {
    padding-top: 2rem; }
  .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 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: #1f8dc6; }
      @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: #1f8dc6;
    border: 0.1rem solid #1f8dc6;
    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%; }
  .p-single__content img {
    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;
    position: relative; }
    @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(31, 141, 198, 0.2); }
      .c-column-card__thumb--placeholder::after {
        content: "NO IMAGE";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1f8dc6;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.2rem;
        line-height: 1;
        opacity: 0.6; }
  .c-column-card__content {
    display: flex;
    flex-direction: column; }
  .c-column-card__cate {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 156%;
    letter-spacing: 0;
    padding: 0 4.3rem;
    background-color: #FFA500;
    border-radius: 0.8rem 0 0.8rem 0; }
    @media screen and (max-width: 960px) {
      .c-column-card__cate {
        padding: 0 1.3rem;
        font-size: 1.5rem; } }
  .c-column-card__date {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    background-color: #1f8dc6;
    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: #535353;
      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: #535353;
    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: 20rem 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: 1fr 1fr; }
    @media screen and (max-width: 960px) {
      .p-drawer__columns {
        grid-template-columns: 1fr;
        gap: 3rem; } }
  .p-drawer__col {
    min-width: 0; }
  .p-drawer__heading {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin: 0 0 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1f8dc6; }
    .p-drawer__heading-icon {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 6rem;
      height: 6rem;
      color: #1f8dc6; }
      .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: #1f8dc6;
      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: #535353;
      font-family: "Zen Maru Gothic", 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;
    grid-template-columns: 1.5fr 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: 1.0rem 0 1.0rem 1.8rem;
      color: #535353;
      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 #1f8dc6;
        transform: translateY(-50%);
        transition: transform 0.25s ease; }
      .p-drawer__menu > li > a.d-active {
        color: #ffc65d; }
      @media (hover: hover) {
        .p-drawer__menu > li > a:hover {
          color: #1f8dc6;
          padding-left: 2.6rem; }
          .p-drawer__menu > li > a:hover::before {
            transform: translateY(-50%) translateX(0.4rem); } }
      @media screen and (max-width: 960px) {
        .p-drawer__menu > li > a {
          padding: 0.5rem 0 0.5rem 1.6rem;
          font-weight: 500; } }
    .p-drawer__menu .sub-menu {
      list-style: none;
      margin: 0 0 1rem 1.6rem;
      padding: 0; }
      .p-drawer__menu .sub-menu li {
        border-bottom: 0; }
        .p-drawer__menu .sub-menu li a {
          position: relative;
          display: block;
          padding: 0.6rem 0 0.6rem 1.6rem;
          font-size: var(--size-p);
          font-weight: 500;
          color: #666;
          text-decoration: none;
          transition: color 0.25s ease, padding-left 0.25s ease; }
          .p-drawer__menu .sub-menu li a::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            width: 0.9rem;
            height: 0.1rem;
            background-color: #1f8dc6;
            transform: translateY(-50%);
            transition: width 0.25s ease; }
          @media (hover: hover) {
            .p-drawer__menu .sub-menu li a:hover {
              color: #1f8dc6;
              padding-left: 2.2rem; }
              .p-drawer__menu .sub-menu li a:hover::before {
                width: 1.5rem; } }

@media (max-width: 767px) {
  .p-drawer__menu {
    display: grid;
    grid-template-columns: 1fr; } }
.l-author-container {
  margin-block: 6rem;
  padding: 4.5rem;
  background: rgba(31, 141, 198, 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 #1f8dc6; }
  .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: #1f8dc6;
    font-family: "Zen Maru Gothic", sans-serif; }
    .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 #535353; }
    .c-author__name p {
      margin: 0 0 0.4rem;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      color: #535353;
      font-family: "Zen Maru Gothic", sans-serif; }
      .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: #535353;
      list-style: none;
      font-family: "Zen Maru Gothic", sans-serif; }
      .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: #1f8dc6; }
    @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(31, 141, 198, 0.2); }
    .c-author__desc p {
      margin: 0;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0.1rem;
      color: #535353; }
    @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: #1f8dc6;
      text-decoration: none;
      transition: opacity 0.2s ease;
      font-family: "Zen Maru Gothic", sans-serif; }
      @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: #535353;
        font-family: "Zen Maru Gothic", sans-serif; }
        .c-author__table dl dt a,
        .c-author__table dl dd a {
          text-decoration: underline; }
      .c-author__table dl dt {
        width: 16rem;
        background: #1f8dc6;
        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(31, 141, 198, 0.08);
  border: 1px solid rgba(31, 141, 198, 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: #535353;
    border-bottom: 0.2rem solid #1f8dc6;
    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: #1f8dc6; }
    @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(31, 141, 198, 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.6rem;
        width: 0;
        height: 0;
        border-top: 0.5rem solid transparent;
        border-bottom: 0.5rem solid transparent;
        border-left: 0.7rem solid #1f8dc6; }
        @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(31, 141, 198, 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 #1f8dc6;
            border-radius: 50%;
            background: transparent; }
      #toc_container .toc_list li a {
        color: #535353;
        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: #1f8dc6; } }
        @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: #1f8dc6;
    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 #1f8dc6;
      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 #1f8dc6;
        border-right: 0.2rem solid #1f8dc6;
        transform: translateY(-50%) rotate(45deg);
        transition: right 0.2s ease; }
      @media (hover: hover) {
        #toc_container.toc--button .toc_list > li:hover {
          background: #1f8dc6; }
          #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: #535353;
    border-bottom: 0.2rem solid #1f8dc6; }
    .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: #1f8dc6;
        border: 0.15rem solid #1f8dc6;
        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: #1f8dc6;
            color: #fff;
            box-shadow: 0 0.2rem 0.6rem rgba(31, 141, 198, 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: #1f8dc6;
        color: #fff;
        border-color: #1f8dc6;
        box-shadow: 0 0.2rem 0.6rem rgba(31, 141, 198, 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(31, 141, 198, 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 #1f8dc6;
        transform: translateY(-50%); }
      @media (hover: hover) {
        .catalogue-list--stacked ul a:hover, .catalogue-list--stacked ol a:hover {
          background: transparent;
          color: #1f8dc6;
          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 #1f8dc6;
    line-height: 1.3; }
    .c-sitemap__title .ja {
      display: inline-block;
      margin-right: 1rem;
      font-size: 2.2rem;
      font-weight: 700;
      color: #1f8dc6;
      vertical-align: middle; }
      @media screen and (max-width: 960px) {
        .c-sitemap__title .ja {
          font-size: 1.8rem; } }
    .c-sitemap__title .en {
      display: inline-block;
      position: relative;
      top: 0.4rem;
      font-family: "Zen Maru Gothic", sans-serif;
      font-size: 1.6rem;
      font-weight: 500;
      color: #1f8dc6;
      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(31, 141, 198, 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 #1f8dc6; }
        @media screen and (max-width: 960px) {
          .c-sitemap__list > li::before {
            top: 2rem; } }
      .c-sitemap__list > li > a {
        color: #535353;
        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: #1f8dc6; } }
  .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: #1f8dc6;
        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: #1f8dc6;
            text-decoration: underline; } }

.tn-col--2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  width: 100%; }
  .tn-col--2 .item {
    width: calc((100% - 3rem) / 2);
    min-height: 22.2rem; }
  @media (max-width: 1440px) and (min-width: 960.5px) {
    .tn-col--2 .item {
      min-height: 24.2rem; } }
  @media screen and (max-width: 960px) {
    .tn-col--2 {
      gap: 2rem; }
      .tn-col--2 .item {
        width: 100%;
        min-height: auto; } }

.ud_flow {
  padding-bottom: 1rem; }

.ud_flow .flow_box {
  position: relative;
  z-index: 1;
  padding: 5rem;
  margin-bottom: 5rem; }
  @media screen and (max-width: 960px) {
    .ud_flow .flow_box {
      padding: 2rem; } }

.ud_flow .flow_box::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  inset: 1rem;
  background-color: white;
  border: 1px solid #1f8dc6; }
  @media screen and (max-width: 767px) {
    .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: #1f8dc6; }

.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: #1f8dc6;
  color: #fff; }

.ud_flow .flow_box .step::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  inset: 0.5rem;
  border: 1px solid white;
  opacity: 0.8; }

.ud_flow .flow_box .step .num {
  margin-top: 0;
  font-size: 2.7em;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0; }

.ud_flow .flow_box h3.flow_ttl::after {
  display: none; }

.ud_flow .flow_box h4.flow_ttl {
  padding: 0;
  border-bottom: none;
  background-color: transparent; }

.ud_flow .flow_box h4.flow_ttl::before {
  display: none; }

.ud_flow .flow_box h5.flow_ttl {
  padding: 0;
  border-bottom: none; }

.ud_flow .flow_box .flow_ttl {
  text-align: center;
  color: #1f8dc6;
  line-height: 1.4; }

.ud_flow.tn-02 .flow_box .ct_area {
  display: block; }
  .ud_flow.tn-02 .flow_box .ct_area p {
    width: 100%; }

.ud_flow .flow_box .ct_area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem; }
  @media screen and (max-width: 767px) {
    .ud_flow .flow_box .ct_area {
      gap: 1rem; } }
  .ud_flow .flow_box .ct_area p {
    width: 75rem; }
    @media screen and (max-width: 960px) {
      .ud_flow .flow_box .ct_area p {
        width: 100%; } }
  .ud_flow .flow_box .ct_area--img {
    width: calc(100% - 75rem - 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; } }

.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: #1f8dc6; }
  @media screen and (max-width: 767px) {
    .ud_flow .flow_box .ct_area::after {
      width: 4em;
      height: 2em;
      bottom: calc(-2em + 1px); } }

.ud_flow .flow_box:last-child {
  margin-bottom: 0; }

.ud_flow .flow_box:last-child .ct_area::after {
  display: none; }

.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: #4f545a;
    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: #1f8dc6;
    font-family: "Zen Maru Gothic", sans-serif; }
    .itv-container .itv-title::after {
      position: absolute;
      content: "";
      width: 12rem;
      height: 1px;
      bottom: 0;
      background: #1f8dc6;
      left: 0.3rem; }
  .itv-container__content {
    flex: 6; }
    .itv-container__content .itv-text {
      text-align: justify; }
  .itv-container__image {
    flex: 4;
    position: relative;
    z-index: 0;
    margin-top: 0.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(60, 37, 27, 0.03); }

.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: #15432b; }
  .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: "Zen Maru Gothic", 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; }

@media (max-width: 960px) {
  .itv-container {
    flex-direction: column-reverse !important;
    align-items: center;
    gap: 1rem;
    margin-bottom: 5rem !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: 1.8rem;
    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: #1f8dc6;
      font-size: 1.8rem;
      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: #1f8dc6;
        transform: inherit;
        left: 0.3rem; }
    .itv-container__02 .itv-subtitle {
      font-size: 1.5rem;
      line-height: 1.85;
      margin-bottom: 0rem;
      color: #4f545a;
      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 (min-width: 767.5px) {
  .u-sp-767 {
    display: none !important; } }
@media (max-width: 560px) {
  .itv-container__02 .itv-image img {
    height: 23rem; } }
.table-price {
  border: 1px solid #1f8dc6; }
  .table-price.dh-01 dl {
    grid-template-columns: repeat(3, 1fr); }
    @media screen and (max-width: 960px) {
      .table-price.dh-01 dl {
        grid-template-columns: 52% repeat(2, minmax(0, 1fr)); }
        .table-price.dh-01 dl dt,
        .table-price.dh-01 dl dd {
          padding: 1.6rem 0.6rem; } }
  .table-price dl {
    display: grid;
    grid-template-columns: 47rem repeat(3, 1fr);
    border-bottom: 1px solid #1f8dc6; }
    @media screen and (max-width: 960px) {
      .table-price dl {
        grid-template-columns: repeat(4, 1fr); } }
    .table-price dl.gp-02 {
      grid-template-columns: 40rem 1fr; }
    .table-price dl dt,
    .table-price dl dd {
      padding: 2rem 1rem;
      border-right: 1px solid #1f8dc6;
      text-align: center; }
    .table-price dl .bdr-n {
      border-right: none; }
    .table-price dl:last-child {
      border-bottom: none; }
    .table-price dl:first-child {
      background: rgba(31, 141, 198, 0.5);
      color: #000; }
    @media screen and (max-width: 960px) {
      .table-price dl {
        grid-template-columns: 52% repeat(3, minmax(0, 1fr)); } }
  @media screen and (max-width: 960px) and (max-width: 960px) {
    .table-price dl.gp-02 {
      grid-template-columns: 10rem 1fr; } }
    @media screen and (max-width: 960px) {
        .table-price dl dt,
        .table-price dl dd {
          padding: 1.6rem 0.6rem; } }

.box_step {
  width: 70%; }
  @media screen and (max-width: 960px) {
    .box_step {
      width: 100%; } }

.box_step_img {
  width: 30%; }
  @media screen and (max-width: 960px) {
    .box_step_img {
      width: 100%; } }

@media (max-width: 960px) {
  .container_step {
    flex-direction: column; } }
.p-about {
  padding: 4.5rem 0 16.7rem;
  position: relative;
  z-index: 0; }
  .p-about::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 28.2rem;
    background: url(assets/img/bg-bf-about03.png) no-repeat center top/cover;
    top: -24.2rem;
    left: 0;
    z-index: -1; }
  .p-about__container {
    background: url(assets/img/bg-about01.png) no-repeat center/cover;
    padding: 18rem 0 5.2rem 12rem;
    position: relative;
    z-index: 0; }
    @media screen and (max-width: 960px) {
      .p-about__container {
        background: transparent;
        padding: 0; } }
    .p-about__container::before {
      content: "";
      position: absolute;
      width: 28.2rem;
      height: 42.7rem;
      background: url(assets/img/icon-about03.png) no-repeat center/contain;
      top: 2.5rem;
      right: -15.5rem;
      z-index: -1; }
    .p-about__container::after {
      content: "";
      position: absolute;
      width: 40.1rem;
      height: 44.5rem;
      background: url(assets/img/icon-about04.png) no-repeat center/contain;
      bottom: -6.3rem;
      right: -14rem;
      z-index: -1; }
  .p-about__box {
    max-width: 62.4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding-left: 1.2rem;
    position: relative;
    z-index: 0; }
    .p-about__box::before {
      content: "";
      position: absolute;
      width: 33.6rem;
      height: 48.9rem;
      background: url(assets/img/icon-about02.png) no-repeat center/contain;
      bottom: -13.8rem;
      left: -22.5rem;
      z-index: -1; }
    .p-about__box::after {
      content: "";
      position: absolute;
      width: 26.6rem;
      height: 27.9rem;
      background: url(assets/img/icon-about05.png) no-repeat center/contain;
      bottom: -8.5rem;
      right: -50.9rem;
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-about__box::after {
          display: none; } }
    .p-about__box .image-sp {
      display: none; }
    .p-about__box .p-title {
      margin-bottom: 5rem;
      position: relative;
      z-index: 0; }
      .p-about__box .p-title::before {
        content: "";
        position: absolute;
        width: 53.1rem;
        height: 36.5rem;
        background: url(assets/img/icon-about01.png) no-repeat center/contain;
        top: -21.6rem;
        left: -45.3rem;
        z-index: -1; }
    .p-about__box .sub-title {
      position: relative;
      z-index: 0;
      margin-bottom: 6rem;
      padding-bottom: 6rem; }
      .p-about__box .sub-title p {
        color: #1f8dc6;
        font-size: 3.5rem;
        font-weight: bold;
        line-height: 115%;
        letter-spacing: 0;
        font-family: "Zen Maru Gothic", sans-serif; }
      .p-about__box .sub-title .about-sub-01 {
        margin-bottom: 1.5rem; }
      .p-about__box .sub-title .about-title-bg {
        position: relative;
        z-index: 0;
        color: #fff;
        padding: 0 1rem 0 1.2rem; }
        .p-about__box .sub-title .about-title-bg::before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background: url(assets/img/bg-title-about.png) no-repeat center/contain;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: -1; }
      .p-about__box .sub-title::before {
        content: "";
        position: absolute;
        width: calc(100% - 3rem);
        height: 4rem;
        background: url(assets/img/line-about.svg) no-repeat center/cover;
        bottom: 0rem;
        left: 1.5rem;
        z-index: -1; }
    .p-about__box .content {
      margin-bottom: 6rem; }
      .p-about__box .content p {
        color: #535353;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 167%;
        letter-spacing: 0; }
        @media screen and (max-width: 960px) {
          .p-about__box .content p {
            font-size: 1.5rem;
            line-height: 185%; } }
  .p-about__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem; }
    .p-about__btn .p-btn:first-child a {
      padding: 1rem 4rem 1rem 1rem; }
    .p-about__btn .p-btn:last-child a {
      padding: 1rem 4rem 1rem 2rem; }
      .p-about__btn .p-btn:last-child a .c-btn-more__text {
        margin-bottom: -1rem; }

@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-about__container {
    padding: 9rem 0 5.2rem 12rem; }

  .p-about__box .p-title::before {
    width: 33.1rem;
    height: 23.5rem;
    top: -12.6rem;
    left: -30.3rem; }

  .p-about__container::before {
    top: 7.5rem;
    right: -0.5rem;
    width: 16.2rem;
    height: 24.7rem; }

  .p-about__box::before {
    width: 23.6rem;
    height: 34.9rem;
    bottom: -14.8rem;
    left: -13.5rem; }

  .p-about__box::after {
    width: 18.6rem;
    height: 19.9rem;
    bottom: -10.5rem;
    right: -32.9rem; }

  .p-about__container::after {
    width: 34.1rem;
    height: 34.5rem;
    bottom: -5.3rem;
    right: -1rem; } }
@media (max-width: 960px) {
  .p-about {
    padding: 26.333vw 0 9.7rem; }
    .p-about::before {
      height: 16.533vw;
      top: -5.2rem; }
    .p-about__container {
      display: flex;
      justify-content: center;
      align-items: center; }
      .p-about__container::before {
        width: 21.867vw;
        height: 33.867vw;
        top: 52.667vw;
        right: -1vw; }
      .p-about__container::after {
        display: none; }
    .p-about__box {
      padding-left: 0rem; }
      .p-about__box::before {
        display: none; }
      .p-about__box .p-title {
        margin-bottom: 5.333vw; }
        .p-about__box .p-title::before {
          width: 19.1rem;
          height: 14.5rem;
          top: 38.4vw;
          left: -24vw; }
      .p-about__box .sub-title {
        margin-bottom: 2rem;
        padding-bottom: 3rem; }
        .p-about__box .sub-title::before {
          height: 2rem; }
        .p-about__box .sub-title p {
          font-size: 2rem; }
        .p-about__box .sub-title .about-sub-01 {
          margin-bottom: 1rem; }
      .p-about__box .image-sp {
        display: block;
        margin-bottom: 2rem; }
        .p-about__box .image-sp img {
          width: 100%;
          object-fit: cover; }
      .p-about__box .content {
        margin-bottom: 2.5rem;
        background: rgba(31, 141, 198, 0.1);
        padding: 1.5rem;
        border-radius: 1rem; }
    .p-about__btn {
      gap: 1rem; }
      .p-about__btn .p-btn:first-child a {
        padding: 1rem 3rem 1rem 1rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-about {
    padding: 8.333vw 0 8.7rem; }
    .p-about::before {
      top: -12.2rem; } }

/*# sourceMappingURL=style.css.map */
