@charset "UTF-8";
/*!
Theme Name: Grits Theme
Theme URI: https://example.com/grits-theme
Author: Your Name
Author URI: https://example.com
Description: Grits WordPress スターターテーマ。BEM + SCSS 構成の再利用可能なベーステーマ。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grits-theme
Tags: custom-menu, featured-images, translation-ready
*/
/* ==========================================================================
   Foundation
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%; }

body {
  margin: 0;
  line-height: 1.6; }

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0; }

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none; }

img,
picture,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block; }

a {
  color: inherit;
  text-decoration: none; }

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit; }

input,
textarea,
select {
  font: inherit; }

:root {
  --size-p: max(1.7rem, 15px);
  --size-h1: max(3.6rem, 28px);
  --size-h2: max(3rem, 26px);
  --size-h3: max(2.8rem, 24px);
  --size-h4: max(2.6rem, 22px);
  --size-h5: max(2.4rem, 20px);
  --size-h6: max(2.2rem, 18px);
  --font-size-html: 0.521105vw;
  --space-xs: 1.5rem;
  --space-sm: 2rem;
  --space-md: 2.5rem;
  --space-lg: 6rem;
  --space-xl: 8.5rem;
  --space-2xl: 12rem; }
  @media screen and (max-width: 960px) {
    :root {
      --size-p: max(1.5rem, 13px);
      --size-h1: max(2.4rem, 21px);
      --size-h2: max(2.3rem, 20px);
      --size-h3: max(2.2rem, 19px);
      --size-h4: max(2.1rem, 18px);
      --size-h5: max(2rem, 17px);
      --size-h6: max(1.8rem, 16px);
      --font-size-html: 10px;
      --space-xs: 1rem;
      --space-sm: 1.2rem;
      --space-md: 2rem;
      --space-lg: 4rem;
      --space-xl: 6rem;
      --space-2xl: 8rem; } }
  @media (max-width: 1440px) and (min-width: 961px) {
    :root {
      --font-size-html: 0.694444vw; } }
  @media (max-width: 374px) {
    :root {
      --font-size-html: 2.67vw; } }

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: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

p {
  font-size: var(--size-p);
  line-height: 200%;
  letter-spacing: 0.2rem;
  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; }
  @media screen and (max-width: 960px) {
    .u-text-center {
      text-align: justify; } }

.u-text-left {
  text-align: left; }

.u-text-right {
  text-align: right; }

.u-text-sm {
  font-size: 1.5rem; }

.u-text-lg {
  font-size: 2rem; }

.u-text-bold {
  font-weight: 700; }

.u-text-muted {
  color: #333333; }

.u-text-primary {
  color: #192a55; }

.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: #192a55;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem;
  margin: 0;
  letter-spacing: 0.1rem;
  line-height: 120%; }
  @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: 19.8rem; }

.site-branding {
  flex: 1 1 auto;
  min-width: 0; }

.site-title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4; }
  .site-title a {
    color: #333333;
    text-decoration: none; }
    @media (hover: hover) {
      .site-title a:hover {
        opacity: 0.7; } }

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.35s;
  width: 100%;
  background: #fff;
  padding: 1rem 2rem; }
  .p-header__left .site-branding img {
    width: 32rem; }
  .p-header__right {
    flex-flow: column; }
    .p-header__right p {
      color: #192A55;
      font-size: 1.6rem;
      font-weight: 400;
      line-height: 156%;
      letter-spacing: 0.18rem; }
  .p-header__tel {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-right: 3.5rem; }
    .p-header__tel a {
      color: #192A55;
      font-size: 4rem;
      font-weight: 400;
      line-height: 145%;
      letter-spacing: 0;
      font-family: "Noto Sans JP", sans-serif;
      position: relative;
      padding-left: 3.5rem; }
      .p-header__tel a::before {
        content: "";
        position: absolute;
        width: 2.2rem;
        height: 2.5rem;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: url(assets/img/tel-icon01.svg) no-repeat center;
        background-size: contain; }
  .p-header__menu li.tn-02 a::before {
    content: "";
    position: absolute;
    width: 2.9rem;
    height: 2px;
    background: #192A55;
    bottom: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: all 0.35s;
    opacity: 1; }
  .p-header__menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0rem 2.5rem;
    transition: all 0.35s;
    border-right: 1px solid #A48B61;
    position: relative;
    z-index: 0;
    color: #333333;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.18rem; }
    .p-header__menu li a .en {
      color: #192A55;
      font-size: 1.4rem;
      font-weight: 500;
      line-height: 150%;
      letter-spacing: 0.28rem;
      text-transform: uppercase; }
    .p-header__menu li a::before {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      background: #192A55;
      bottom: -0.4rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1;
      transition: all 0.35s;
      opacity: 0; }
  .p-header__menu li.current-menu-parent a::before, .p-header__menu li.current_page_item a::before {
    opacity: 1;
    width: 2.9rem; }
  .p-header__menu li:hover a::before {
    opacity: 1;
    width: 2.9rem; }
  .p-header__menu li:last-child a {
    border-right: 0; }
  .p-header.vz-02 {
    opacity: 0;
    pointer-events: none; }

.home .p-header__menu li.current_page_item.menu-item-214:not(:hover) a::before {
  opacity: 0;
  width: 0; }

.c-nav-header {
  margin-bottom: 1.7rem; }
  .c-nav-header__local {
    order: -1;
    margin-right: 2rem; }
    .c-nav-header__local p {
      background: #E7F1FC url(assets/img/local-icon01.svg) no-repeat center left 2.2rem;
      background-size: 1.7rem;
      padding: 1.3rem 2.2rem 1.3rem 5.7rem;
      margin-bottom: 1.5rem; }
  .c-nav-header__list {
    gap: 1.2rem;
    margin-bottom: 1.8rem; }
    .c-nav-header__list li a {
      display: flex;
      width: 20.1rem;
      height: 7rem;
      background: #192A55;
      border: #192A55 solid 1px;
      align-items: center;
      padding-left: 8.7rem;
      color: #fff;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 145%;
      letter-spacing: 0;
      transition: all 0.35s;
      position: relative; }
      .c-nav-header__list li a::before {
        content: "";
        position: absolute;
        width: 3.6rem;
        height: 3.6rem;
        top: 50%;
        left: 3rem;
        transform: translateY(-50%);
        -webkit-mask: url(assets/img/calendar-icon01.svg) center/100% no-repeat;
        mask: url(assets/img/calendar-icon01.svg) center/100% no-repeat;
        background: #fff;
        transition: all 0.35s; }
      .c-nav-header__list li a:hover {
        background: #fff;
        color: #192A55; }
        .c-nav-header__list li a:hover::before {
          background: #192A55; }
    .c-nav-header__list li.vz-02 a {
      background: #A48B61;
      border-color: #A48B61; }
      .c-nav-header__list li.vz-02 a:hover {
        border-color: #A48B61;
        background: #fff;
        color: #A48B61; }
        .c-nav-header__list li.vz-02 a:hover::before {
          background: #A48B61; }

@media screen and (min-width: 961px) {
  .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% - 1rem);
      left: 0;
      bottom: 0;
      z-index: -1;
      background: #192a55; }
    .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% - 2.6rem);
      padding: 5rem 10rem !important; }
      .p-header__menu li.vz-02 .sub-menu::before {
        height: calc(100% - 2.6rem); }
      .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: 1rem 0 0; }
  .p-header.vz-01 {
    position: absolute; }
  .p-header.vz-02.active {
    opacity: 1;
    pointer-events: all;
    top: 0 !important; }
  .p-header.vz-02 .c-nav-header {
    margin-bottom: 0; }
  .p-header.vz-02 .p-header__right {
    flex-flow: row;
    gap: 2rem; }
    .p-header.vz-02 .p-header__right p {
      font-size: 1.5rem; }
  .p-header.vz-02 .p-header__menu > li > a {
    padding: 0 1.5rem; }
  .p-header.vz-02 .p-header__menu > li .sub-menu::before {
    height: calc(100% - 3rem); }
  .p-header.vz-02 .p-header__menu > li.vz-02 .sub-menu::before {
    height: calc(100% - 2.6rem); }
  .p-header.vz-02 .p-header__menu > li:hover .sub-menu {
    padding: 3rem 0 0; }
  .p-header.vz-02 .p-header__tel {
    margin-right: 1.5rem; }
    .p-header.vz-02 .p-header__tel a {
      font-size: 2.2rem;
      padding-left: 2.2rem; }
      .p-header.vz-02 .p-header__tel a::before {
        width: 1.8rem;
        height: 2rem;
        transform: translateY(-38%); }
  .p-header.vz-02 .c-nav-header__list {
    margin-bottom: .5rem; }
    .p-header.vz-02 .c-nav-header__list li a {
      width: 17.1rem;
      height: 6rem;
      padding-left: 5.7rem; }
      .p-header.vz-02 .c-nav-header__list li a::before {
        left: 1rem; }

  .home .p-header__menu li .sub-menu::before {
    height: calc(100% - 3rem); }
  .home .p-header__menu li:hover .sub-menu {
    padding: 3rem 0 0; }
  .home .p-mv__menu .p-header__menu li.vz-02 .sub-menu::before {
    height: calc(100% - 3rem); }
  .home .site-header {
    height: auto; }
  .home .p-header.vz-01 {
    background: transparent;
    padding: 6rem;
    align-items: flex-start; }
    .home .p-header.vz-01 .p-header__left .site-branding img {
      width: 56.8rem; }
    .home .p-header.vz-01 .p-header__right--head {
      flex-flow: column;
      align-items: flex-end; }
    .home .p-header.vz-01 .c-nav-header__local {
      order: 1;
      margin-right: 0; }
    .home .p-header.vz-01 .c-nav-header__list li a {
      height: 7.9rem; }
  .home .p-header__menu--01 {
    display: none; } }
@media screen and (min-width: 961px) and (max-width: 1440px) {
  .p-header__left .site-branding img {
    width: 26rem; }
  .p-header__tel {
    margin-right: 1.5rem; }
  .p-header.vz-02 .p-header__menu li .sub-menu::before {
    height: calc(100% - 3rem); }
  .p-header.vz-02 .p-header__menu li:hover .sub-menu {
    padding: 3rem 0 0; }
  .p-header.vz-02 {
    padding: 1rem; }
    .p-header.vz-02 .p-header__left .site-branding img {
      width: 22rem; }
    .p-header.vz-02 .p-header__right {
      gap: 1rem; }
      .p-header.vz-02 .p-header__right p {
        font-size: 1.1rem; }
    .p-header.vz-02 .p-header__tel {
      margin-right: 1rem; }
    .p-header.vz-02 .p-header__menu > li > a {
      font-size: 1.5rem;
      padding: 0 0.5rem; }
    .p-header.vz-02 .c-nav-header__list li a {
      font-size: 1.4rem;
      width: 13.1rem;
      height: 6rem;
      padding-left: 5rem; }

  .c-nav-header__local p {
    background-position: center left 1rem;
    padding: 1.3rem 1rem 1.3rem 3rem; }
  .c-nav-header__list li a {
    padding-left: 5rem;
    width: 18rem; }
    .c-nav-header__list li a::before {
      left: 1rem; }

  .home .p-header.vz-01 {
    padding: 3rem; }
    .home .p-header.vz-01 .p-header__left .site-branding img {
      width: 50rem; } }
@media screen and (max-width: 960px) {
  .site-header {
    height: 6rem; }

  .p-header {
    padding: .5rem .5rem; }
    .p-header__left {
      display: flex;
      width: 100%;
      justify-content: space-between; }
      .p-header__left .site-branding img {
        width: 24rem; }
    .p-header__right {
      display: none; } }
.p-mv__slide .p-mv__slide--item.slick-slide {
  display: flex; }

.p-mv {
  position: relative; }
  .p-mv__slide--text {
    padding-left: 6rem;
    padding-top: 28.3rem;
    margin-right: -12.5rem;
    width: calc(100% - 140.8rem + 12.5rem); }
  .p-mv__slide--picture {
    width: 140.8rem;
    padding-left: 1.5rem; }
  .p-mv__slide--main {
    color: #A48B61;
    font-size: 6rem;
    font-weight: 500;
    line-height: 132%;
    letter-spacing: 0.2rem;
    position: relative;
    z-index: 0;
    padding-bottom: 4.2rem;
    margin-bottom: 4rem; }
    .p-mv__slide--main strong {
      color: #192A55;
      font-weight: 500; }
    .p-mv__slide--main::before {
      content: "";
      position: absolute;
      width: 9rem;
      height: 0.3rem;
      bottom: 0;
      left: 0;
      background: #A48B61; }
  .p-mv__slide--sub p {
    color: #192A55;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0; }
  .p-mv__list {
    position: absolute;
    bottom: 8rem;
    left: 6rem;
    gap: 3.2rem; }
    .p-mv__list li {
      width: 14.4rem;
      height: 14.4rem;
      border-radius: 100%;
      background: #192956;
      position: relative;
      z-index: 0;
      display: flex;
      align-items: center;
      text-align: center;
      flex-flow: column;
      padding-top: 7.2rem; }
      .p-mv__list li::before {
        content: "";
        position: absolute;
        width: calc(100% - 1.4rem);
        height: calc(100% - 1.4rem);
        top: 50%;
        left: 50%;
        z-index: -1;
        transform: translate(-50%, -50%);
        border: #77727A solid 1px;
        border-radius: 100%; }
      .p-mv__list li::after {
        content: "";
        position: absolute;
        width: 4.5rem;
        height: 4.7rem;
        top: 2.2rem;
        left: 50%;
        transform: translateX(-50%);
        background: url(assets/img/mv-icon01.png) no-repeat center;
        background-size: contain; }
      .p-mv__list li .item {
        color: #fff;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 140%;
        letter-spacing: 0; }
        .p-mv__list li .item:nth-child(2) {
          font-size: 1.1rem; }
        .p-mv__list li .item strong {
          font-size: 2.2rem;
          font-family: "Noto Sans JP", sans-serif;
          color: #F1CC90;
          font-weight: 700; }
      .p-mv__list li.vz-02::after {
        background-image: url(assets/img/mv-icon02.png); }
      .p-mv__list li.vz-03::after {
        background-image: url(assets/img/mv-icon03.png); }
      .p-mv__list li.vz-03 .item {
        line-height: 125%; }
  .p-mv__menu {
    padding: 3rem 0;
    position: relative;
    z-index: 2; }
    .p-mv__menu .p-header__menu li a {
      padding: 1.2rem 4.7rem; }
    .p-mv__menu .p-header__menu li.vz-02 .sub-menu {
      top: calc(100% - 3rem); }
      .p-mv__menu .p-header__menu li.vz-02 .sub-menu::before {
        height: calc(100% - 1rem); }
  @media (max-width: 1440px) and (min-width: 960.5px) {
    .p-mv .p-mv__list {
      bottom: 3rem;
      left: 3rem; }
    .p-mv .p-mv__slide--picture {
      width: 100rem; }
    .p-mv .p-mv__slide--text {
      margin-right: -1rem;
      padding-top: 17rem;
      padding-left: 3rem;
      width: calc(100% - 100rem + 1rem); }
    .p-mv .p-mv__slide--main {
      font-size: 4.5rem;
      letter-spacing: 0;
      padding-bottom: 2rem;
      margin-bottom: 2rem; }
    .p-mv .p-mv__slide--sub p {
      font-size: 2rem; } }
  @media screen and (max-width: 960px) {
    .p-mv__menu {
      display: none; }
    .p-mv__slide--picture {
      width: 100%;
      padding-left: 0; }
    .p-mv__slide--text {
      width: 100%;
      margin-right: 0;
      padding-left: 1.5rem;
      padding-top: 1.5rem;
      padding-right: 1.5rem;
      order: 1; }
    .p-mv__slide--main {
      font-size: 2.4rem;
      padding-bottom: 2rem;
      margin-bottom: 2rem; }
      .p-mv__slide--main br {
        display: none; }
    .p-mv__slide--sub p {
      font-size: 1.5rem; }
    .p-mv__slide .p-mv__slide--item.slick-slide {
      flex-wrap: wrap; }
    .p-mv__list {
      left: 0;
      bottom: 0;
      gap: 0.7rem;
      position: relative;
      padding: 1.5rem; }
      .p-mv__list li {
        width: 11rem;
        height: 11rem;
        padding-top: 5rem; }
        .p-mv__list li::after {
          width: 3rem;
          height: 3.1rem;
          top: 1.5rem; }
        .p-mv__list li .item {
          font-size: 1.1rem;
          padding: 0 1.6rem; } }
  @media screen and (max-width: 960px) and (max-width: 767px) {
    .p-mv__list {
      max-width: 37.5rem;
      margin-left: auto;
      margin-right: auto; } }

@media (max-width: 450px) {
  .p-mv__list {
    max-width: 45rem;
    gap: 1.867vw;
    padding: 4vw; }
    .p-mv__list li {
      width: 29.333vw;
      height: 29.333vw; }
      .p-mv__list li .item {
        font-size: 2.933vw; }
        .p-mv__list li .item:nth-child(2) {
          font-size: 2.933vw; }
        .p-mv__list li .item strong {
          font-size: 5.867vw; } }
[class^="grid-"],
[class*="grid-"] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem; }

.l-grid-1600 {
  max-width: 163rem; }
.l-grid-1570 {
  max-width: 160rem; }
.l-grid-1562 {
  max-width: 159.2rem; }
.l-grid-1560 {
  max-width: 159rem; }
.l-grid-1490 {
  max-width: 152rem; }
.l-grid-1384 {
  max-width: 141.4rem; }
.l-grid-1200 {
  max-width: 123rem; }

.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; } }
.c-pagetop {
  position: fixed;
  bottom: 2rem;
  right: 5rem;
  width: 6rem;
  height: 6rem;
  background: #B2955A url(assets/img/page-top.png) no-repeat center;
  background-size: 1.4rem;
  border-radius: 100%;
  cursor: pointer;
  opacity: 0;
  transition: all 0.35s;
  z-index: 50; }
  .c-pagetop.show {
    opacity: 1; }

.p-footer__wrap {
  background: #FEFEFE;
  border: #E7DDC8 solid 1px;
  padding: 4rem 0; }
.p-footer__title {
  color: #20355B;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.2rem;
  font-family: "Bangla MN";
  margin-bottom: 2.2rem; }
.p-footer__menu {
  grid-template-columns: 1fr 1fr; }
  .p-footer__menu li a {
    color: #595959;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 205%;
    letter-spacing: 0.15rem;
    position: relative;
    padding-left: 3.2rem;
    transition: all 0.35s; }
    .p-footer__menu li a::before {
      content: "";
      position: absolute;
      width: 0.7rem;
      height: 1px;
      top: 50%;
      left: 0;
      background: #D4B370; }
    .p-footer__menu li a:hover {
      opacity: 0.8; }
  .p-footer__menu--02 {
    grid-template-columns: 1fr 1.32fr; }
.p-footer__gp {
  grid-template-columns: 38rem 1fr; }
  .p-footer__gp--item {
    border-right: #E6DBBE solid 1px;
    padding-top: 1.7rem;
    padding-bottom: 2rem; }
    .p-footer__gp--item:last-child {
      border-right: 0;
      padding-left: 6rem;
      grid-template-columns: 1fr 1.09fr; }
  .p-footer__gp .f-logo img {
    width: 28.5rem; }
.p-footer__maps {
  width: 100%;
  height: 50rem;
  background: #CCC; }
  .p-footer__maps iframe {
    width: 100%;
    height: 100%;
    border: 0; }
.p-footer__desc {
  margin-bottom: 3.6rem; }
  .p-footer__desc p {
    color: #192A55;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 157%;
    letter-spacing: 0.18rem;
    margin-bottom: 1.6rem; }
    .p-footer__desc p a {
      color: #BD9D69;
      font-weight: 700; }
    .p-footer__desc p:last-child {
      margin-bottom: 0; }
.p-footer__grid--01 {
  max-width: 137.5rem;
  padding-left: 0;
  padding-right: 0; }
  .p-footer__grid--01 .p-clinic__nav {
    margin-bottom: 3rem; }
.p-footer__info {
  padding-top: 9rem;
  padding-bottom: 10rem;
  background: url(assets/img/footer-bg01.png) no-repeat center;
  background-size: cover; }
  .p-footer__info--gp {
    max-width: 137.2rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.7rem; }
  .p-footer__info--logo {
    margin-bottom: 3.5rem; }
    .p-footer__info--logo img {
      width: 47.5rem; }
  .p-footer__info--item:first-child {
    width: 51rem; }
  .p-footer__info--item:last-child {
    width: calc(100% - 51rem);
    padding-left: 3.5rem;
    padding-top: 1.4rem; }
  .p-footer__info--item .p-calendar {
    width: 100%;
    margin-top: 0;
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    border: #E7E7E7 solid 1px;
    border-radius: 1rem; }
    .p-footer__info--item .p-calendar .table .row {
      grid-template-columns: 17.5rem repeat(8, 1fr); }
      .p-footer__info--item .p-calendar .table .row .info__hour {
        max-width: 14.8rem; }
    .p-footer__info--item .p-calendar::before, .p-footer__info--item .p-calendar::after {
      content: none; }
  .p-footer__info--desc p {
    color: #192A55;
    font-size: var(--size-p);
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.2rem;
    padding-left: 3.5rem; }
    .p-footer__info--desc p.vz-local {
      position: relative;
      margin-bottom: 2.4rem; }
      .p-footer__info--desc p.vz-local::before {
        content: "";
        position: absolute;
        width: 1.7rem;
        height: 2.6rem;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: url(assets/img/local-icon01.svg) no-repeat center;
        background-size: contain; }
    .p-footer__info--desc p.vz-car {
      background: #F9F7F2;
      border-radius: 1rem;
      padding: .85rem 3.5rem;
      margin-bottom: 3rem; }
      .p-footer__info--desc p.vz-car .item {
        position: relative;
        padding-left: 4.5rem; }
        .p-footer__info--desc p.vz-car .item::before {
          content: "";
          position: absolute;
          width: 2.4rem;
          height: 2.1rem;
          top: 50%;
          left: 0;
          transform: translateY(-50%);
          background: url(assets/img/car-icon01.svg) no-repeat center;
          background-size: contain; }
  .p-footer__info--desc.vz-02 p {
    padding-left: 0;
    margin-bottom: 2rem; }
  .p-footer__info--tel a {
    display: flex;
    flex-flow: column;
    justify-content: center;
    background: #fff;
    width: 100%;
    height: 10.4rem;
    border-radius: 1rem;
    padding-left: 12.3rem;
    padding-top: .6rem;
    box-shadow: 0 0.4rem 1.4rem rgba(0, 0, 0, 0.15);
    position: relative; }
    .p-footer__info--tel a::before {
      content: "";
      position: absolute;
      width: 6.2rem;
      height: 6.2rem;
      top: 50%;
      left: 3.2rem;
      transform: translateY(-50%);
      border-radius: 100%;
      background: #F8F9F9 url(assets/img/tel-icon01.svg) no-repeat center;
      background-size: 2.2rem; }
    .p-footer__info--tel a .item {
      color: #192A55;
      font-size: 4rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.4rem;
      display: block; }
      .p-footer__info--tel a .item:first-child {
        font-size: 1.6rem; }
      .p-footer__info--tel a .item:last-child {
        font-family: "Noto Serif JP", serif; }
.p-footer__list--01 {
  gap: 3.2rem;
  margin-bottom: 1.5rem; }
  .p-footer__list--01 li {
    width: calc((100% - 3.201rem) / 2); }
    .p-footer__list--01 li a {
      border: #192A55 solid 1px;
      border-radius: 1rem;
      display: flex;
      height: 15.4rem;
      align-items: center;
      background: #192A55;
      position: relative;
      padding-left: 6rem;
      z-index: 0;
      color: #FFF;
      font-size: 2rem;
      font-weight: 400;
      line-height: 160%;
      letter-spacing: 0.18rem;
      transition: all 0.35s; }
      .p-footer__list--01 li a::before {
        content: "";
        position: absolute;
        width: calc(50% - 1px);
        height: 100%;
        top: 0;
        right: 0;
        z-index: -1;
        background: #fff;
        border-radius: 0 1rem 1rem 0; }
      .p-footer__list--01 li a::after {
        content: "";
        position: absolute;
        width: 6.2rem;
        height: 6.2rem;
        top: 50%;
        right: 16rem;
        transform: translateY(-50%);
        -webkit-mask: url(assets/img/calendar-icon02.svg) center/100% no-repeat;
        mask: url(assets/img/calendar-icon02.svg) center/100% no-repeat;
        background: #192A55; }
      .p-footer__list--01 li a span::before {
        content: "";
        position: absolute;
        width: 4rem;
        height: 4rem;
        top: 50%;
        right: 4.2rem;
        transform: translateY(-50%);
        background: #192A55;
        border-radius: 100%; }
      .p-footer__list--01 li a span::after {
        content: "";
        position: absolute;
        width: 0.8rem;
        height: 1.8rem;
        top: 50%;
        right: 5.6rem;
        transform: translateY(-50%);
        -webkit-mask: url(assets/img/arrow-right02.svg) center/100% no-repeat;
        mask: url(assets/img/arrow-right02.svg) center/100% no-repeat;
        background: #fff; }
      .p-footer__list--01 li a:hover {
        background: #fff;
        color: #192A55; }
        .p-footer__list--01 li a:hover::before {
          background: #192A55; }
        .p-footer__list--01 li a:hover::after {
          background: #fff; }
        .p-footer__list--01 li a:hover span::before {
          background: #fff; }
        .p-footer__list--01 li a:hover span::after {
          background: #192A55; }
    .p-footer__list--01 li.vz-02 a {
      background: #B29C6B;
      border-color: #B29C6B; }
      .p-footer__list--01 li.vz-02 a::after {
        background: #B29C6B; }
      .p-footer__list--01 li.vz-02 a span::before {
        background: #D4B370; }
      .p-footer__list--01 li.vz-02 a:hover {
        background: #fff;
        color: #B29C6B; }
        .p-footer__list--01 li.vz-02 a:hover::before {
          background: #B29C6B; }
        .p-footer__list--01 li.vz-02 a:hover::after {
          background: #fff; }
        .p-footer__list--01 li.vz-02 a:hover span::before {
          background: #fff; }
        .p-footer__list--01 li.vz-02 a:hover span::after {
          background: #D4B370; }
.p-footer__list--02 {
  gap: 3rem; }
  .p-footer__list--02 li {
    width: calc((100% - 6.001rem) / 3); }
    .p-footer__list--02 li a {
      border: #E7E7E7 solid 1px;
      display: flex;
      align-items: center;
      width: 100%;
      height: 11.2rem;
      border-radius: 1rem;
      background: url(assets/img/flow-bg01.png) no-repeat center right;
      background-size: cover;
      position: relative;
      padding-left: 3rem;
      z-index: 0; }
      .p-footer__list--02 li a::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 1rem;
        background: linear-gradient(90deg, white 40%, rgba(255, 255, 255, 0) 100%); }
      .p-footer__list--02 li a span {
        display: flex;
        align-items: center;
        color: #192A55;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.18rem;
        font-family: "Noto Sans JP", sans-serif;
        position: relative;
        padding-right: 3.5rem; }
        .p-footer__list--02 li a span::before {
          content: "";
          position: relative;
          width: 3.6rem;
          height: 3.6rem;
          margin-right: 2rem;
          background: url(assets/img/facebook-icon01.svg) no-repeat center;
          background-size: contain; }
        .p-footer__list--02 li a span::after {
          content: "";
          position: absolute;
          width: 0.8rem;
          height: 1.8rem;
          top: 50%;
          right: 0;
          transform: translateY(-50%);
          -webkit-mask: url(assets/img/arrow-right02.svg) center/100% no-repeat;
          mask: url(assets/img/arrow-right02.svg) center/100% no-repeat;
          background: #192A55;
          transition: all 0.35s; }
      .p-footer__list--02 li a:hover span::after {
        right: -1rem; }
    .p-footer__list--02 li.vz-01 a span::before {
      width: 3.5rem; }
    .p-footer__list--02 li.vz-02 a {
      background-image: url(assets/img/flow-bg02.png); }
      .p-footer__list--02 li.vz-02 a span::before {
        width: 4rem;
        background-image: url(assets/img/youtube-logo01.svg); }
    .p-footer__list--02 li.vz-03 a {
      background-image: url(assets/img/flow-bg03.png); }
      .p-footer__list--02 li.vz-03 a span::before {
        background-image: url(assets/img/instagram-icon01.svg); }
.p-footer__bottom {
  background-color: #192A55;
  padding: 3.7rem; }
.p-footer__copyright {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  column-gap: 2rem;
  row-gap: var(--space-xs); }
  @media screen and (max-width: 960px) {
    .p-footer__copyright {
      column-gap: var(--space-md);
      padding-inline: 0; } }
.p-footer__credit {
  display: inline-flex;
  position: relative;
  padding-right: 2rem; }
  .p-footer__credit::before {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% - .3rem);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff; }
  .p-footer__credit a {
    display: inline-flex; }
  .p-footer__credit img {
    width: auto;
    height: 2.6rem; }
    @media screen and (max-width: 960px) {
      .p-footer__credit img {
        height: 3rem; } }
.p-footer__copy {
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 140%;
  font-weight: 400; }
  @media screen and (max-width: 960px) {
    .p-footer__copy {
      font-size: 1.5rem; } }

@media screen and (min-width: 961px) {
  .c-nav-fix {
    display: none; } }
@media screen and (max-width: 960px) {
  .site-footer {
    padding-bottom: 6rem; }

  .c-pagetop {
    bottom: 0;
    right: 0;
    opacity: 1;
    border-radius: 0; }

  .c-nav-fix {
    display: flex;
    position: fixed;
    z-index: 40;
    bottom: 0;
    left: 0;
    width: calc(100% - 6rem); }
    .c-nav-fix li {
      width: calc(100% / 4);
      border-right: #fff solid 1px; }
      .c-nav-fix li a {
        font-size: 1.1rem;
        color: #FFF;
        background: #192A55;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 6rem;
        padding: .7rem 0;
        line-height: 112%;
        position: relative;
        z-index: 0; }
        .c-nav-fix li a::before {
          content: "";
          position: absolute;
          width: 1.8rem;
          height: 1.8rem;
          -webkit-mask: url(assets/img/tel-icon01.svg) center/100% no-repeat;
          mask: url(assets/img/tel-icon01.svg) center/100% no-repeat;
          background: #fff;
          left: 50%;
          transform: translateX(-50%);
          top: 1rem;
          z-index: -1; }
        .c-nav-fix li a.c-acf_web1::before {
          -webkit-mask-image: url(assets/img/calendar-icon01.svg);
          mask-image: url(assets/img/calendar-icon01.svg); }
        .c-nav-fix li a.c-acf_web2::before {
          -webkit-mask-image: url(assets/img/calendar-icon01.svg);
          mask-image: url(assets/img/calendar-icon01.svg); }
        .c-nav-fix li a.c-acf_instagram {
          background: url(assets/img/instagram-icon03.jpg) no-repeat center;
          background-size: cover; }
          .c-nav-fix li a.c-acf_instagram::before {
            -webkit-mask-image: url(assets/img/instagram-icon02.svg);
            mask-image: url(assets/img/instagram-icon02.svg); }

  .p-footer__maps {
    height: 35rem; }
  .p-footer__info {
    padding: 6rem 0; }
    .p-footer__info--item:first-child {
      width: 100%; }
    .p-footer__info--item:last-child {
      width: 100%;
      padding-left: 0; }
    .p-footer__info--item .p-calendar .table .row {
      grid-template-columns: 11rem repeat(8, 1fr); }
    .p-footer__info--logo img {
      width: 30rem; }
    .p-footer__info--desc p {
      font-size: 1.5rem; }
    .p-footer__info--tel a {
      padding-left: 10rem; }
      .p-footer__info--tel a::before {
        left: 2rem; }
      .p-footer__info--tel a .item {
        font-size: 2.8rem; }
        .p-footer__info--tel a .item:first-child {
          font-size: 1.5rem; }
  .p-footer__list--01 {
    gap: 1rem; }
    .p-footer__list--01 li {
      width: 100%; }
      .p-footer__list--01 li a {
        padding-left: 1rem;
        font-size: 1.5rem;
        height: 10rem; }
        .p-footer__list--01 li a::after {
          width: 4.2rem;
          height: 4.2rem;
          right: 8.5rem; }
        .p-footer__list--01 li a span::before {
          right: 1rem; }
        .p-footer__list--01 li a span::after {
          right: 2.5rem; }
  .p-footer__list--02 {
    gap: 1rem; }
    .p-footer__list--02 li {
      width: 100%; }
      .p-footer__list--02 li a span {
        font-size: 1.5rem; }
  .p-footer__gp {
    grid-template-columns: 1fr; }
    .p-footer__gp--item {
      border-right: 0; }
      .p-footer__gp--item:last-child {
        display: none; }
  .p-footer__bottom {
    padding: 1rem; } }
@media screen and (max-width: 960px) and (min-width: 767.5px) {
  .p-footer__list--02 li {
    width: calc((100% - 2.001rem) / 3); }
    .p-footer__list--02 li a {
      padding-left: 1rem; } }
.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: 5rem;
  height: 5rem;
  padding: 0;
  background: #192a55;
  border: 0;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background-color 0.3s ease; }
  @media (hover: hover) {
    .c-hamburger:hover {
      opacity: 0.9; } }
  .c-hamburger__line {
    display: block;
    width: 2.4rem;
    height: 0.2rem;
    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 screen and (min-width: 961px) {
  .c-hamburger {
    display: none; } }
.c-heading {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.08rem;
  color: #192a55; }
  .c-heading--tab {
    display: inline-block;
    position: relative;
    padding: 1rem 2.4rem 1rem 3.6rem;
    background-color: #192a55;
    color: #fff;
    border-radius: 0.5rem;
    clip-path: polygon(1.6rem 0, 100% 0, 100% 100%, 0 100%); }
  @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: #192a55; }
    @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.5rem 2.5rem;
    background: #192a55;
    color: #fff;
    font-size: var(--size-h2); }
    .c-heading--hy-lv2 span {
      position: relative;
      z-index: 1; }
    .c-heading--hy-lv2::before {
      content: "";
      position: absolute;
      width: calc(100% - 1.2rem);
      height: calc(100% - 1.2rem);
      left: 0.6rem;
      top: 0.6rem;
      border: 1px dashed #fff; }
    @media screen and (max-width: 960px) {
      .c-heading--hy-lv2 {
        padding: 1.5rem 1.5rem;
        text-align: justify; }
        .c-heading--hy-lv2::before {
          content: "";
          position: absolute;
          width: calc(100% - 1rem);
          height: calc(100% - 1rem);
          left: 0.5rem;
          top: 0.5rem; } }
  .c-heading--hy-lv3 {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: var(--size-h3); }
    .c-heading--hy-lv3::before, .c-heading--hy-lv3::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 0.3rem;
      left: 0;
      bottom: 0; }
    .c-heading--hy-lv3::after {
      background: repeating-linear-gradient(-45deg, #192a55, #192a55 10%, #fff 10%, #fff 30%, #192a55 30%, #192a55 70%, #fff 70%, #fff 90%, #192a55 90%, #192a55 100%);
      background-size: 0.6rem 0.4rem;
      opacity: 0.7; }
    .c-heading--hy-lv3::before {
      width: 10rem;
      z-index: 1;
      background-color: #192a55; }
  .c-heading--hy-lv4 {
    position: relative;
    padding-left: 3rem;
    font-size: var(--size-h4); }
    .c-heading--hy-lv4::before, .c-heading--hy-lv4::after {
      content: "";
      position: absolute;
      top: 54%;
      background-color: #192a55;
      transform: translateY(-50%) rotate(45deg); }
      @media screen and (max-width: 960px) {
        .c-heading--hy-lv4::before, .c-heading--hy-lv4::after {
          top: 1.5rem; } }
    .c-heading--hy-lv4::before {
      left: 0.2rem;
      width: 1.2rem;
      height: 1.2rem; }
    .c-heading--hy-lv4::after {
      left: 1.8rem;
      width: 0.6rem;
      height: 0.6rem;
      opacity: 0.4; }
  .c-heading--hy-lv5 {
    position: relative;
    padding: 0 0 0 2.5rem;
    font-size: var(--size-h5);
    text-align: justify; }
    .c-heading--hy-lv5::before {
      content: "";
      position: absolute;
      top: 1.3rem;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      background: #192a55; }
  .c-heading--hy-lv6 {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--size-h6);
    border-left: 0.3rem solid #192a55; }
  .c-heading--sizev1 {
    font-size: var(--size-h1); }
  .c-heading--sizev2 {
    font-size: var(--size-h2); }
  .c-heading--sizev3 {
    font-size: var(--size-h3); }
  .c-heading--sizev4 {
    font-size: var(--size-h4); }
  .c-heading--sizev5 {
    font-size: var(--size-h5); }
  .c-heading--sizev6 {
    font-size: var(--size-h6); }

.c-media {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem; }
  @media screen and (max-width: 960px) {
    .c-media {
      gap: 3rem;
      flex-direction: column; } }
  @media screen and (max-width: 767px) {
    .c-media {
      gap: 2.5rem; } }
  .c-media--right {
    flex-direction: row-reverse; }
    @media screen and (max-width: 960px) {
      .c-media--right {
        flex-direction: column; } }
  .c-media--center {
    align-items: center; }
  .c-media__image {
    flex: 0 0 35%;
    max-width: 35%; }
    @media screen and (max-width: 960px) {
      .c-media__image {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        padding-top: 0.5rem; } }
    .c-media__image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0.8rem; }
    .c-media__image .c-pa p {
      font-size: 2rem;
      line-height: 150%;
      letter-spacing: 0;
      font-weight: 500; }
      @media screen and (max-width: 960px) {
        .c-media__image .c-pa p {
          font-size: 1.8rem; } }
    .c-media__image.tn-02 {
      position: relative;
      z-index: 0; }
      .c-media__image.tn-02 .c-pa {
        position: absolute;
        z-index: 0;
        bottom: 1.5rem;
        right: 1.5rem; }
  .c-media--narrow .c-media__image {
    flex: 0 0 30%;
    max-width: 30%; }
    @media screen and (max-width: 960px) {
      .c-media--narrow .c-media__image {
        flex: 1 1 100%;
        max-width: 100%; } }
  .c-media__body {
    flex: 1 1 auto;
    min-width: 0; }
    @media screen and (max-width: 960px) {
      .c-media__body {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%; } }
    .c-media__body > :first-child {
      margin-top: 0; }
    .c-media__body > :last-child {
      margin-bottom: 0; }
    .c-media__body h2,
    .c-media__body h3,
    .c-media__body h4 {
      margin-bottom: 1.6rem; }
    .c-media__body p {
      margin-bottom: 1.4rem; }

.c-columns {
  display: grid;
  gap: 4.5rem 3rem;
  margin-bottom: 4rem; }
  @media screen and (max-width: 960px) {
    .c-columns {
      gap: 4rem; } }
  @media screen and (max-width: 960px) and (max-width: 767px) {
    .c-columns {
      gap: 3rem; } }

  .c-columns--2 {
    grid-template-columns: repeat(2, 1fr); }
    @media screen and (max-width: 960px) {
      .c-columns--2 {
        grid-template-columns: 1fr; } }
  .c-columns--3 {
    grid-template-columns: repeat(3, 1fr); }
    @media screen and (max-width: 960px) {
      .c-columns--3 {
        grid-template-columns: 1fr; } }
  .c-columns--4 {
    grid-template-columns: repeat(4, 1fr); }
    @media screen and (max-width: 960px) {
      .c-columns--4 {
        grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 960px) {
    .c-columns--sp-2 {
      grid-template-columns: repeat(2, 1fr); } }
  @media screen and (max-width: 960px) {
    .c-columns--sp-3 {
      gap: 2rem;
      grid-template-columns: repeat(3, 1fr); } }
  @media screen and (max-width: 767px) {
    .c-columns--sp-3 {
      gap: 0.8rem; } }
  .c-columns__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    margin-bottom: 2rem; }
    @media screen and (max-width: 960px) {
      .c-columns__item img {
        border-radius: 0.5rem;
        margin-bottom: 1.5rem; } }

.c-dot-list {
  list-style: none;
  margin-bottom: -1rem !important;
  padding: 0; }
  @media screen and (max-width: 960px) {
    .c-dot-list {
      margin-bottom: 0 !important; } }
  .c-dot-list > li {
    position: relative;
    padding: 0 0 1rem 2.4rem;
    font-size: var(--size-p);
    line-height: 200%;
    letter-spacing: 0.2rem;
    font-weight: 400;
    border-bottom: 1px dashed rgba(51, 51, 51, 0.3);
    margin-bottom: 1rem; }
    @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: #333333;
      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: 4rem;
    row-gap: 0; }
    @media screen and (max-width: 960px) {
      .c-dot-list--3col {
        grid-template-columns: 1fr;
        column-gap: 0; } }
  .c-dot-list--plain > li:not(:last-child) {
    border-bottom: 0;
    margin-bottom: 0; }
  .c-dot-list--square > li::before {
    border-radius: 0; }

.c-check-list {
  list-style: none;
  margin: 0 0 4rem;
  padding: 0; }
  .c-check-list > li {
    position: relative;
    padding: 0.4rem 0 0.4rem 3rem;
    font-size: var(--size-p);
    line-height: 200%;
    letter-spacing: 0.2rem;
    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 #192a55;
      border-bottom: 0.3rem solid #192a55;
      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-info-table {
  border-top: 1px dashed rgba(51, 51, 51, 0.2); }
  @media screen and (max-width: 960px) {
    .c-info-table--rowsp .c-info-table__row {
      grid-template-columns: 11rem 1fr; }
    .c-info-table.tn-02 .c-info-table__row {
      grid-template-columns: 7rem 1fr; } }
  .c-info-table--pc21 .c-info-table__row {
    grid-template-columns: 21rem 1fr; }
    @media screen and (max-width: 960px) {
      .c-info-table--pc21 .c-info-table__row {
        grid-template-columns: 11rem 1fr; } }
  .c-info-table__row {
    display: grid;
    grid-template-columns: 15rem 1fr;
    gap: 2rem;
    padding: 2rem 0rem;
    border-bottom: 1px dashed rgba(51, 51, 51, 0.2); }
    @media screen and (max-width: 960px) {
      .c-info-table__row {
        grid-template-columns: 7rem 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0rem; } }
    .c-info-table__row dt,
    .c-info-table__row dd {
      font-size: var(--size-p);
      line-height: 200%;
      letter-spacing: 0.2rem;
      font-weight: 400;
      margin: 0;
      color: #333333; }
      @media (max-width: 960px) {
        .c-info-table__row dt,
        .c-info-table__row dd {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
    .c-info-table__row dt {
      font-weight: 700; }
    .c-info-table__row dd a {
      text-decoration: underline;
      text-underline-offset: .4rem; }
  .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: #192a55;
      color: #fff;
      border-radius: 0.4rem;
      font-size: 1.4rem; }
  .c-info-table--bordered {
    border: 1px solid #192a55;
    border-top-width: 1px;
    padding: 0 2rem; }
    .c-info-table--bordered .c-info-table__row {
      border-bottom: 1px solid rgba(25, 42, 85, 0.3); }
      .c-info-table--bordered .c-info-table__row:last-child {
        border-bottom: 0; }
      .c-info-table--bordered .c-info-table__row dt {
        position: relative;
        padding-left: 1.6rem; }
        .c-info-table--bordered .c-info-table__row dt::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0.8rem;
          width: 0.4rem;
          height: 1.6rem;
          background-color: #192a55;
          border-radius: 0.2rem; }
  .c-info-table--striped {
    border-top: 0; }
    .c-info-table--striped .c-info-table__row {
      border-bottom: 0;
      padding: 1.4rem 2rem; }
      .c-info-table--striped .c-info-table__row:nth-child(odd) {
        background-color: rgba(25, 42, 85, 0.2); }
      .c-info-table--striped .c-info-table__row:nth-child(even) {
        background-color: rgba(25, 42, 85, 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(25, 42, 85, 0.3);
      border-bottom: 1px solid rgba(25, 42, 85, 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; }
  .c-box.tn-02 {
    padding-top: 5rem; }
  @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(25, 42, 85, 0.08); }
  .c-box--bg-primary {
    background-color: #192a55;
    color: #fff; }
    .c-box--bg-primary h2,
    .c-box--bg-primary h3,
    .c-box--bg-primary h4,
    .c-box--bg-primary h5,
    .c-box--bg-primary h6,
    .c-box--bg-primary a {
      color: #fff; }
    .c-box--bg-primary a {
      text-decoration: underline; }
  .c-box--bg-dark {
    background-color: #333333;
    color: #fff; }
    .c-box--bg-dark h2,
    .c-box--bg-dark h3,
    .c-box--bg-dark h4,
    .c-box--bg-dark h5,
    .c-box--bg-dark h6 {
      color: #fff; }
  .c-box--border {
    background-color: #fff;
    border: 0.2rem solid #192a55; }
  .c-box--border-thin {
    background-color: #fff;
    border: 0.1rem solid rgba(25, 42, 85, 0.5); }
  .c-box--frame {
    position: relative;
    padding: 5rem;
    background-color: #fff;
    border: 6px solid #192a55;
    border-radius: 0; }
    @media screen and (max-width: 960px) {
      .c-box--frame {
        padding: 2rem 2rem;
        border: 2px solid #192a55; } }
  .c-box--rounded {
    border-radius: 2rem; }
  .c-box--callout {
    background-color: rgba(25, 42, 85, 0.08);
    border-left: 0.6rem solid #192a55;
    padding-left: 2.6rem; }
    @media screen and (max-width: 960px) {
      .c-box--callout {
        padding-left: 1.8rem; } }
  .c-box__title {
    margin: 0 0 1.4rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333333; }

.c-schedule {
  width: 100%;
  margin: 0 0 4rem;
  border-collapse: collapse;
  border: 1px solid rgba(25, 42, 85, 0.4);
  text-align: center; }
  .c-schedule th,
  .c-schedule td {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(25, 42, 85, 0.4);
    font-size: var(--size-p);
    line-height: 200%;
    letter-spacing: 0.2rem;
    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: #192a55;
    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(25, 42, 85, 0.2);
    color: #192a55;
    font-weight: 700;
    text-align: left;
    padding-left: 1.4rem;
    white-space: nowrap; }
  .c-schedule tbody td {
    color: #333333; }
  .c-schedule .is-closed {
    color: #333333; }

.c-section {
  margin-bottom: 8rem;
  scroll-margin-top: 8rem; }
  @media screen and (max-width: 960px) {
    .c-section {
      margin-bottom: 5rem;
      scroll-margin-top: 6rem; } }
  .c-section__anchor {
    position: relative;
    top: -8rem;
    visibility: hidden; }
  .c-section__title {
    margin-bottom: 3rem; }
  .c-section__body > :first-child {
    margin-top: 0; }
  .c-section__body > :last-child {
    margin-bottom: 0; }

.c-faq {
  margin: 0 0 4rem; }
  .c-faq__item {
    margin-bottom: 1.6rem;
    border: 1px solid rgba(25, 42, 85, 0.4);
    background-color: #fff; }
    .c-faq__item[open] .c-faq__q::after {
      transform: rotate(225deg); }
  .c-faq__q {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 1.6rem 5rem 1.6rem 5rem;
    background-color: rgba(25, 42, 85, 0.2);
    font-size: var(--size-p);
    font-weight: 700;
    line-height: 1.5;
    color: #333333;
    transition: background-color 0.25s ease; }
    .c-faq__q::-webkit-details-marker {
      display: none; }
    .c-faq__q::before {
      content: "Q.";
      position: absolute;
      left: 1.6rem;
      top: 50%;
      transform: translateY(-50%);
      font-family: "";
      font-size: 2rem;
      font-weight: 900;
      color: #192a55; }
    .c-faq__q::after {
      content: "";
      position: absolute;
      right: 2rem;
      top: 50%;
      width: 0.9rem;
      height: 0.9rem;
      border-right: 0.2rem solid #192a55;
      border-bottom: 0.2rem solid #192a55;
      transform: translateY(-70%) rotate(45deg);
      transition: transform 0.3s ease; }
    @media (hover: hover) {
      .c-faq__q:hover {
        background-color: rgba(25, 42, 85, 0.25); } }
  .c-faq__a {
    position: relative;
    padding: 1.6rem 2rem 1.6rem 5rem;
    font-size: var(--size-p);
    line-height: 1.85;
    color: #333333; }
    .c-faq__a::before {
      content: "A.";
      position: absolute;
      left: 1.6rem;
      top: 1.5rem;
      font-family: "";
      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: #192a55;
  color: #fff;
  font-size: var(--size-p);
  line-height: 200%;
  letter-spacing: 0.2rem;
  font-weight: 400;
  text-decoration: none;
  border: 0.1rem solid #192a55;
  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: #192a55; } }
  .c-btn--outline {
    background-color: transparent;
    color: #192a55; }
    @media (hover: hover) {
      .c-btn--outline:hover {
        background-color: #192a55;
        color: #fff; } }
  .c-btn--lg {
    min-width: 32rem;
    height: 6.4rem;
    font-size: 1.8rem;
    border-radius: 3.2rem; }
    @media screen and (max-width: 960px) {
      .c-btn--lg {
        min-width: 24rem;
        height: 5.4rem;
        font-size: 1.5rem; } }
  .c-btn--block {
    width: 100%;
    min-width: 0; }
  .c-btn--arrow::after {
    content: "";
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    margin-left: 0.4rem;
    border-top: 0.2rem solid currentColor;
    border-right: 0.2rem solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease; }
  @media (hover: hover) {
    .c-btn--arrow:hover::after {
      transform: translateX(0.4rem) rotate(45deg); } }
  .c-btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.6rem;
    margin: 2rem 0 0; }
    @media screen and (max-width: 960px) {
      .c-btn-group {
        gap: 1rem; } }

.c-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 0 0 4rem;
  overflow: hidden;
  border-radius: 0.8rem; }
  @media screen and (max-width: 960px) {
    .c-map {
      aspect-ratio: 4 / 3;
      margin-bottom: 2rem; } }
  .c-map iframe,
  .c-map img,
  .c-map embed,
  .c-map object {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block; }
  .c-map--square {
    aspect-ratio: 1 / 1; }
    @media screen and (max-width: 960px) {
      .c-map--square {
        aspect-ratio: 1 / 1; } }
  .c-map--tall {
    aspect-ratio: 3 / 4; }

.c-flow {
  display: flex;
  align-items: stretch;
  gap: 1.6rem;
  list-style: none;
  margin: 0 0 4rem;
  padding: 0; }
  @media screen and (max-width: 960px) {
    .c-flow {
      flex-direction: column;
      gap: 2.4rem; } }
  .c-flow__item {
    position: relative;
    flex: 1 1 0;
    padding: 2rem;
    background-color: rgba(25, 42, 85, 0.2);
    border-top: 0.4rem solid #192a55;
    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 #192a55;
      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 #192a55;
          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: "";
    font-size: 1.5rem;
    font-weight: 700;
    color: #192a55;
    letter-spacing: 0.2rem; }
  .c-flow__title {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #192a55;
    line-height: 150%; }
  .c-flow p {
    margin: 1rem 0 0;
    font-size: var(--size-p);
    line-height: 200%;
    letter-spacing: 0.2rem;
    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(25, 42, 85, 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: #192a55;
    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: "";
      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: "";
      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: "";
      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: #333333;
      line-height: 1.4; }
      @media screen and (max-width: 960px) {
        .c-step__body h4 {
          font-size: 1.7rem; } }
    .c-step__body p {
      margin: 0; }
      .c-step__body p:not(:last-child) {
        margin-bottom: 1rem; }
    .c-step__body img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: 1.2rem 0;
      border-radius: 0.6rem; }
    .c-step__body.gp-01 img {
      margin: 0; }

/* ==========================================================================
   Object - Project (p-)
   ========================================================================== */
.p-page-banner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .p-page-banner__content {
    position: relative; }
    .p-page-banner__content::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--grits-banner-overlay, rgba(239, 154, 0, 0.1));
      z-index: 1; }
  .p-page-banner__image {
    margin: 0;
    line-height: 0; }
    .p-page-banner__image img {
      display: block;
      width: 100%;
      height: 40rem;
      object-fit: cover;
      filter: blur(var(--grits-banner-blur, 0.3rem)); }
  .p-page-banner__title {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #fff;
    text-align: center; }
    .p-page-banner__title .ja {
      display: block;
      font-size: 3.8rem;
      font-weight: 700;
      text-shadow: 0.3rem 0.3rem 0.4rem #333; }
      @media screen and (max-width: 960px) {
        .p-page-banner__title .ja {
          font-size: 2.4rem; } }

@media (max-width: 960px) {
  .p-page-banner__image img {
    height: 20rem; } }
.p-page-section {
  margin-bottom: var(--space-2xl); }
  @media screen and (max-width: 960px) {
    .p-page-section {
      margin-bottom: var(--space-xl); } }

.p-breadcrumb {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: var(--size-p); }
  .p-breadcrumb__list {
    display: inline;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0; }
  .p-breadcrumb__item {
    display: inline;
    position: relative;
    font-size: inherit;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05rem; }
    .p-breadcrumb__item:not(:last-child) {
      padding-right: 1.5rem;
      margin-right: 1.5rem; }
      .p-breadcrumb__item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 49%;
        width: 0.8rem;
        aspect-ratio: 1 / 1;
        border-top: 1px solid #353535;
        border-right: 1px solid #353535;
        transform: translateY(-47%) rotate(45deg); }
    .p-breadcrumb__item a {
      color: #454545;
      text-decoration: none; }
      @media (hover: hover) {
        .p-breadcrumb__item a:hover {
          opacity: 1;
          text-decoration: underline; } }
    .p-breadcrumb__item.is-current {
      color: #999; }

.p-news-list {
  list-style: none;
  margin: 0 0 6rem;
  padding: 0;
  width: 100%; }
  @media screen and (max-width: 960px) {
    .p-news-list {
      margin-bottom: 0rem; } }
  .p-news-list__item {
    padding: 2rem 0;
    margin-bottom: 1.5rem;
    background-color: rgba(25, 42, 85, 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: #192a55; }
      .p-news-list__item:nth-child(odd) .p-news-list__date,
      .p-news-list__item:nth-child(odd) .p-news-list__title {
        color: #fff; }
    @media (hover: hover) {
      .p-news-list__item:hover {
        background-color: rgba(183, 162, 102, 0.5); }
        .p-news-list__item:hover .p-news-list__date,
        .p-news-list__item:hover .p-news-list__title {
          color: #333333; } }
  .p-news-list__link {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: #333333;
    text-decoration: none;
    font-size: 1.6rem;
    transition: color 0.3s ease; }
    @media (hover: hover) {
      .p-news-list__link:hover {
        color: #192a55; } }
    @media screen and (max-width: 960px) {
      .p-news-list__link {
        gap: 0; } }
  .p-news-list__date {
    display: inline-block;
    flex: 0 0 auto;
    min-width: 13rem;
    padding-inline: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1rem;
    color: #333333;
    font-family: ""; }
    @media screen and (max-width: 960px) {
      .p-news-list__date {
        font-size: 1.5rem;
        min-width: 11rem;
        padding-left: 1rem;
        padding-right: 0; } }
  .p-news-list__title {
    flex: 1 1 auto;
    padding-right: 2rem;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #333333;
    word-break: break-word; }
    @media screen and (max-width: 960px) {
      .p-news-list__title {
        font-size: 1.5rem;
        padding-right: 1rem; } }
  .p-news-list__empty {
    padding: 2.4rem;
    text-align: center;
    color: #333333; }

.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-block: 4rem; }
  .pagination .page-numbers,
  .nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    min-width: 4rem;
    padding: 0 1rem;
    border: 0.1rem solid #192a55;
    background-color: #fff;
    color: #333333;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.2s ease; }
    @media (hover: hover) {
      .pagination .page-numbers:hover,
      .nav-links .page-numbers:hover {
        background-color: #192a55;
        color: #fff; } }
    .pagination .page-numbers.current,
    .nav-links .page-numbers.current {
      background-color: #192a55;
      color: #fff; }
    .pagination .page-numbers.dots,
    .nav-links .page-numbers.dots {
      border: 0;
      background: none; }

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

.p-single__header {
  background-color: rgba(25, 42, 85, 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: #192a55; }
  @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: #192a55;
  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: #192a55; }
  @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: #192a55;
    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: #192a55; }
    @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.5rem 2.5rem;
    background: #192a55;
    color: #fff;
    font-size: var(--size-h2); }
    .p-single__content h2 span {
      position: relative;
      z-index: 1; }
    .p-single__content h2::before {
      content: "";
      position: absolute;
      width: calc(100% - 1.2rem);
      height: calc(100% - 1.2rem);
      left: 0.6rem;
      top: 0.6rem;
      border: 1px dashed #fff; }
    @media screen and (max-width: 960px) {
      .p-single__content h2 {
        padding: 1.5rem 1.5rem;
        text-align: justify; }
        .p-single__content h2::before {
          content: "";
          position: absolute;
          width: calc(100% - 1rem);
          height: calc(100% - 1rem);
          left: 0.5rem;
          top: 0.5rem; } }
  .p-single__content h3 {
    width: 100%;
    display: block;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: var(--size-h3); }
    .p-single__content h3::before, .p-single__content h3::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 0.3rem;
      left: 0;
      bottom: 0; }
    .p-single__content h3::after {
      background: repeating-linear-gradient(-45deg, #192a55, #192a55 10%, #fff 10%, #fff 30%, #192a55 30%, #192a55 70%, #fff 70%, #fff 90%, #192a55 90%, #192a55 100%);
      background-size: 0.6rem 0.4rem;
      opacity: 0.7; }
    .p-single__content h3::before {
      width: 10rem;
      z-index: 1;
      background-color: #192a55; }
  .p-single__content h4 {
    position: relative;
    padding-left: 3rem;
    font-size: var(--size-h4); }
    .p-single__content h4::before, .p-single__content h4::after {
      content: "";
      position: absolute;
      top: 54%;
      background-color: #192a55;
      transform: translateY(-50%) rotate(45deg); }
      @media screen and (max-width: 960px) {
        .p-single__content h4::before, .p-single__content h4::after {
          top: 1.5rem; } }
    .p-single__content h4::before {
      left: 0.2rem;
      width: 1.2rem;
      height: 1.2rem; }
    .p-single__content h4::after {
      left: 1.8rem;
      width: 0.6rem;
      height: 0.6rem;
      opacity: 0.4; }
  .p-single__content h5 {
    position: relative;
    padding: 0 0 0 2.5rem;
    font-size: var(--size-h5);
    text-align: justify; }
    .p-single__content h5::before {
      content: "";
      position: absolute;
      top: 1.3rem;
      left: 0;
      width: 1.5rem;
      height: 1.5rem;
      background: #192a55; }
  .p-single__content h6 {
    position: relative;
    padding-left: 1.5rem;
    font-size: var(--size-h6);
    border-left: 0.3rem solid #192a55; }
  .p-single__content :is(p, td, li, th, blockquote) {
    margin: 0 0 2.5rem;
    font-size: var(--size-p);
    line-height: 200%;
    letter-spacing: 0.2rem;
    font-weight: 400;
    color: #333333; }
    @media (max-width: 960px) {
      .p-single__content :is(p, td, li, th, blockquote) {
        line-height: 185%;
        letter-spacing: 0em;
        text-align: justify; } }
    @media screen and (max-width: 960px) {
      .p-single__content :is(p, td, li, th, blockquote) {
        font-size: 1.5rem;
        line-height: 1.85; } }
  .p-single__content :is(p, 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: #192a55; }
      @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: #192a55;
    border: 0.1rem solid #192a55;
    border-radius: 3.3rem;
    text-decoration: none;
    transition: all 0.3s ease; }
    @media (hover: hover) {
      .p-single-nav__link:hover {
        opacity: 0.85; } }
    @media screen and (max-width: 960px) {
      .p-single-nav__link {
        width: 100%;
        height: 5rem;
        font-size: 1.5rem; } }
    .p-single-nav__link--disabled {
      opacity: 0.5;
      cursor: not-allowed;
      pointer-events: none; }

@media (max-width: 960px) {
  .p-single__content :is(p, td, li, th, blockquote, a) {
    font-size: 1.5rem;
    line-height: 185%; }
  .p-single__content h1 {
    font-size: 2rem; }
  .p-single__content h2 {
    font-size: 1.9rem;
    padding: 1.2rem 1.5rem; }
  .p-single__content h3 {
    font-size: 1.8rem; }
  .p-single__content h4 {
    font-size: 1.7rem; }
  .p-single__content h5 {
    font-size: 1.6rem; }
  .p-single__content h6 {
    font-size: 1.5rem; }
  .p-single__content blockquote {
    padding: 1.5rem; }
  .p-single__date {
    font-size: 1.5rem; }
  .p-single__title {
    font-size: 2rem; }
  .p-single-nav {
    margin-top: 0; }
    .p-single-nav__link {
      width: 20rem;
      height: 5rem;
      font-size: 1.5rem; } }
@media (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: 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; }
    @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(25, 42, 85, 0.2); }
      .c-column-card__thumb--placeholder::after {
        content: "NO IMAGE";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #192a55;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 0.2rem;
        line-height: 1;
        opacity: 0.6; }
  .c-column-card__content {
    display: flex;
    flex-direction: column; }
  .c-column-card__date {
    display: inline-block;
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    background-color: #192a55;
    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: 200%;
      letter-spacing: 0.2rem;
      font-weight: 400;
      color: #333333;
      font-weight: bold;
      text-align: justify;
      text-decoration: none !important;
      transition: opacity 0.3s ease; }
      @media (max-width: 960px) {
        .c-column-card__title a {
          line-height: 185%;
          letter-spacing: 0em;
          text-align: justify; } }
      @media (hover: hover) {
        .c-column-card__title a:hover {
          opacity: 0.7; } }
      @media screen and (max-width: 960px) {
        .c-column-card__title a {
          line-height: 130%; } }
  .c-column-card__excerpt {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.1rem;
    color: #333333;
    text-align: justify; }
    @media screen and (max-width: 960px) {
      .c-column-card__excerpt {
        font-size: 1.4rem;
        letter-spacing: 0;
        line-height: 165%; } }

.p-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s; }
  .p-drawer.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.4s ease, visibility 0s linear 0s; }
  .p-drawer__inner {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 4rem; }
    @media screen and (max-width: 960px) {
      .p-drawer__inner {
        padding: 9rem 2rem 12rem;
        align-items: flex-start; } }
  .p-drawer__columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    width: 100%;
    max-width: 120rem; }
    .p-drawer__columns--asymmetric {
      grid-template-columns: 1fr 2fr; }
    @media screen and (max-width: 960px) {
      .p-drawer__columns {
        grid-template-columns: 1fr;
        gap: 3rem; } }
  .p-drawer__col {
    min-width: 0; }
  .p-drawer__heading {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin: 0 0 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #192a55; }
    .p-drawer__heading-icon {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 6rem;
      height: 6rem;
      color: #192a55; }
      .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: #192a55;
      line-height: 1;
      margin-bottom: 0.8rem;
      letter-spacing: 0.1rem; }
    .p-drawer__heading .en {
      display: block;
      font-size: 3.4rem;
      font-weight: 700;
      color: #333333;
      font-family: "";
      letter-spacing: 0.2rem;
      line-height: 1; }
      @media screen and (max-width: 960px) {
        .p-drawer__heading .en {
          font-size: 2.6rem; } }
  .p-drawer__menu {
    list-style: none;
    margin: 0;
    padding: 0; }
    .p-drawer__menu--split {
      column-count: 2;
      column-gap: 4rem; }
      @media screen and (max-width: 960px) {
        .p-drawer__menu--split {
          column-count: 1;
          column-gap: 0; } }
      .p-drawer__menu--split > li {
        break-inside: avoid;
        page-break-inside: avoid;
        -webkit-column-break-inside: avoid; }
    .p-drawer__menu > li > a {
      position: relative;
      display: block;
      padding: 1.0rem 0 1.0rem 1.8rem;
      color: #333333;
      font-size: var(--size-p);
      line-height: 200%;
      letter-spacing: 0.2rem;
      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 #192a55;
        transform: translateY(-50%);
        transition: transform 0.25s ease; }
      @media (hover: hover) {
        .p-drawer__menu > li > a:hover {
          color: #192a55;
          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: #192a55;
            transform: translateY(-50%);
            transition: width 0.25s ease; }
          @media (hover: hover) {
            .p-drawer__menu .sub-menu li a:hover {
              color: #192a55;
              padding-left: 2.2rem; }
              .p-drawer__menu .sub-menu li a:hover::before {
                width: 1.5rem; } }

.l-author-container {
  margin-block: 6rem;
  padding: 4.5rem;
  background: rgba(25, 42, 85, 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 #192a55; }
  .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: #192a55; }
    .c-author__title.vz-02 {
      font-size: 2.4rem;
      margin-bottom: 1.5rem; }
    @media screen and (max-width: 960px) {
      .c-author__title {
        font-size: 2rem;
        margin-bottom: 1.5rem; }
        .c-author__title.vz-02 {
          font-size: 1.8rem; } }
  .c-author__name {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 0.1rem dashed #333333; }
    .c-author__name p {
      margin: 0 0 0.4rem;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      color: #333333; }
      .c-author__name p:nth-child(2) {
        font-size: 2.4rem;
        font-weight: 700;
        letter-spacing: 0.1rem; }
        @media screen and (max-width: 960px) {
          .c-author__name p:nth-child(2) {
            font-size: 1.8rem; } }
    @media screen and (max-width: 960px) {
      .c-author__name {
        margin-bottom: 2.5rem; }
        .c-author__name p {
          font-size: 1.5rem; } }
  .c-author__list {
    margin: 0 0 3.5rem; }
    .c-author__list ul,
    .c-author__list ol {
      list-style: none;
      margin: 0;
      padding: 0; }
    .c-author__list li {
      position: relative;
      margin-bottom: 1.5rem;
      padding-left: 1.6rem;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0.1rem;
      color: #333333;
      list-style: none; }
      .c-author__list li:last-child {
        margin-bottom: 0; }
      .c-author__list li::before {
        content: "";
        position: absolute;
        top: 1.2rem;
        left: 0;
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 50%;
        background: #192a55; }
    @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(25, 42, 85, 0.2); }
    .c-author__desc p {
      margin: 0;
      font-size: var(--size-p);
      font-weight: 500;
      line-height: 175%;
      letter-spacing: 0.1rem;
      color: #333333; }
    @media screen and (max-width: 960px) {
      .c-author__desc {
        padding: 1.5rem;
        margin-bottom: 3rem; } }
  .c-author__link ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0; }
    .c-author__link ul li a {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 6rem;
      font-size: var(--size-p);
      font-weight: 400;
      line-height: 175%;
      color: #fff;
      background: #192a55;
      text-decoration: none;
      transition: opacity 0.2s ease; }
      @media (hover: hover) {
        .c-author__link ul li a:hover {
          opacity: 0.85; } }
  .c-author__link.vz-02 ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem; }
  @media screen and (max-width: 960px) {
    .c-author__link ul, .c-author__link.vz-02 ul {
      grid-template-columns: 1fr;
      gap: 1rem; }
    .c-author__link ul li a {
      height: 5.5rem; } }
  .c-author__table {
    margin: 0 0 3rem;
    border: 0.1rem solid #999; }
    .c-author__table dl {
      display: flex;
      margin: 0;
      border-bottom: 0.1rem solid #999; }
      .c-author__table dl:last-child {
        border-bottom: 0; }
      .c-author__table dl dt,
      .c-author__table dl dd {
        margin: 0;
        padding: 1rem 2rem;
        font-size: var(--size-p);
        font-weight: 500;
        line-height: 175%;
        letter-spacing: 0.1rem;
        color: #333333; }
      .c-author__table dl dt {
        width: 16rem;
        background: #192a55;
        color: #fff; }
      .c-author__table dl dd {
        flex: 1; }
        .c-author__table dl dd a {
          text-decoration: underline; }
    @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.toc_title_center .toc_title {
  text-align: left; }

#toc_container {
  counter-reset: toc;
  width: 100%;
  max-width: 100%;
  margin: 3rem 0 8rem;
  padding: 2.4rem 3rem 2rem;
  background: rgba(25, 42, 85, 0.08);
  border: 1px solid rgba(25, 42, 85, 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: 200%;
    letter-spacing: 0.2rem;
    font-weight: 400;
    font-weight: bold;
    color: #333333;
    border-bottom: 0.2rem solid #192a55;
    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: #192a55; }
    @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(25, 42, 85, 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.1rem;
        width: 0;
        height: 0;
        border-top: 0.5rem solid transparent;
        border-bottom: 0.5rem solid transparent;
        border-left: 0.7rem solid #192a55; }
        @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(25, 42, 85, 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 #192a55;
            border-radius: 50%;
            background: transparent; }
      #toc_container .toc_list li a {
        color: #333333;
        font-size: var(--size-p);
        line-height: 200%;
        letter-spacing: 0.2rem;
        font-weight: 400;
        line-height: 155%;
        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: #192a55; } }
        @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: #192a55;
    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 #192a55;
      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 #192a55;
        border-right: 0.2rem solid #192a55;
        transform: translateY(-50%) rotate(45deg);
        transition: right 0.2s ease; }
      @media (hover: hover) {
        #toc_container.toc--button .toc_list > li:hover {
          background: #192a55; }
          #toc_container.toc--button .toc_list > li:hover::after {
            border-color: #fff;
            right: 1rem; }
          #toc_container.toc--button .toc_list > li:hover a {
            color: #fff; } }
      #toc_container.toc--button .toc_list > li a {
        display: block; }

.catalogue-list {
  margin: 2rem 0; }
  @media screen and (max-width: 960px) {
    .catalogue-list {
      margin: 1.6rem 0; } }
  .catalogue-list > :first-child {
    margin-top: 0; }
  .catalogue-list > :last-child {
    margin-bottom: 0; }
  .catalogue-list h2,
  .catalogue-list h3,
  .catalogue-list h4,
  .catalogue-list h5 {
    margin: 2rem 0 1.2rem;
    padding: 0 0 0.8rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: #333333;
    border-bottom: 0.2rem solid #192a55; }
    .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: #192a55;
        border: 0.15rem solid #192a55;
        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: #192a55;
            color: #fff;
            box-shadow: 0 0.2rem 0.6rem rgba(25, 42, 85, 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: #192a55;
        color: #fff;
        border-color: #192a55;
        box-shadow: 0 0.2rem 0.6rem rgba(25, 42, 85, 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(25, 42, 85, 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 #192a55;
        transform: translateY(-50%); }
      @media (hover: hover) {
        .catalogue-list--stacked ul a:hover, .catalogue-list--stacked ol a:hover {
          background: transparent;
          color: #192a55;
          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 #192a55;
    line-height: 1.3; }
    .c-sitemap__title .ja {
      display: inline-block;
      margin-right: 1rem;
      font-size: 2.2rem;
      font-weight: 700;
      color: #192a55;
      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: "";
      font-size: 1.6rem;
      font-weight: 500;
      color: #192a55;
      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(25, 42, 85, 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 #192a55; }
        @media screen and (max-width: 960px) {
          .c-sitemap__list > li::before {
            top: 2rem; } }
      .c-sitemap__list > li > a {
        color: #333333;
        font-size: var(--size-p);
        line-height: 200%;
        letter-spacing: 0.2rem;
        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: #192a55; } }
  .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: #192a55;
        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: #192a55;
            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 #192a55; }
  @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: #192a55; }

.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: #192a55;
  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: #192a55;
  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: #192a55; }
  @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: .4rem;
    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: .2rem;
    line-height: 140%;
    padding-bottom: 2.4rem;
    color: #192a55;
    font-family: ""; }
    .itv-container .itv-title::after {
      position: absolute;
      content: "";
      width: 12rem;
      height: 1px;
      bottom: 0;
      background: #192a55;
      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; }
    @media screen and (max-width: 960px) {
      .itv-container__02 .itv-text {
        text-align: justify; } }
  .itv-container__02 .itv-title {
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
    font-size: var(--size-h2);
    letter-spacing: .2rem;
    line-height: 140%;
    padding-bottom: 2.4rem;
    color: #fff;
    font-family: ""; }
    .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;
      filter: blur(var(--grits-banner-blur, 0.3rem)); }

@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: #192a55;
      font-size: 1.8rem;
      line-height: 145%;
      letter-spacing: .2rem;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      font-weight: 600;
      order: 3; }
      .itv-container__02 .itv-title::after {
        width: 8rem;
        background: #192a55;
        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;
    filter: none; } }
.table-price {
  border: 1px solid #192a55; }
  .table-price.dh-01 dl {
    grid-template-columns: repeat(2, 1fr); }
    @media screen and (max-width: 960px) {
      .table-price.dh-01 dl {
        grid-template-columns: 50% repeat(1, 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 #192a55; }
    @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 #192a55;
      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(25, 32, 82, 0.28);
      color: #000;
      font-weight: bold; }
    @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; } }

.p-mv {
  background: linear-gradient(180deg, white 0%, #e4e8f3 100%); }

.img {
  display: flex;
  flex-direction: column;
  width: 90rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  height: 40rem; }
  @media screen and (max-width: 960px) {
    .img {
      width: 100%;
      height: auto; } }
  .img img {
    object-fit: cover; }

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

.p-title__01 {
  text-align: center;
  margin-bottom: 8rem; }
  @media screen and (max-width: 960px) {
    .p-title__01 {
      margin-bottom: 4rem; } }
  .p-title__01-title {
    color: #142B6F;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0rem;
    position: relative;
    z-index: 0; }
    @media screen and (max-width: 960px) {
      .p-title__01-title {
        font-size: 2.6rem; } }
    .p-title__01-title::before {
      content: attr(data-text);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -55%);
      z-index: -1;
      color: #EEEEF0;
      font-size: 13rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0.18rem; }
      @media screen and (max-width: 960px) {
        .p-title__01-title::before {
          font-size: 5rem;
          width: 100%; } }
  .p-title__01.tn-02 .p-title__01-title::before {
    color: #F0F2F9; }
  .p-title__01.tn-03 .p-title__01-title::before {
    color: #DFE6F1; }
  .p-title__01.tn-04 .p-title__01-title::before {
    color: #FFF; }
  .p-title__01.tn-05 .p-title__01-title::before {
    color: #ECF2FC; }
  .p-title__01-subtitle {
    color: #142B6F;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0rem;
    padding-bottom: 2.3rem;
    position: relative;
    z-index: 0;
    text-transform: uppercase;
    text-align: center; }
    @media screen and (max-width: 960px) {
      .p-title__01-subtitle {
        padding-bottom: 1.5rem; } }
    .p-title__01-subtitle::before {
      content: "";
      position: absolute;
      width: 9rem;
      height: 0.2rem;
      background: url(assets/img/bg-before_title.png) no-repeat center/contain;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-title__01-subtitle::before {
          font-size: 1.5rem; } }

.p-top__btn--01 a {
  color: #142B6F;
  font-size: var(--size-p);
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.16rem;
  width: 29.7rem;
  height: 5.3rem;
  display: flex;
  align-items: center;
  position: relative;
  border: #142B6F solid 1px;
  padding: 0 2.7rem;
  transition: all 0.35s; }
  @media screen and (max-width: 960px) {
    .p-top__btn--01 a {
      font-size: 1.5rem;
      width: 100%; } }
  .p-top__btn--01 a::before {
    content: "";
    position: absolute;
    width: 3.2rem;
    height: 0.9rem;
    top: 50%;
    right: 2.2rem;
    transform: translateY(-50%);
    -webkit-mask: url(assets/img/arrow-right01.svg) center/100% no-repeat;
    mask: url(assets/img/arrow-right01.svg) center/100% no-repeat;
    background: #1A2C5B;
    transition: all 0.35s; }
  .p-top__btn--01 a:hover {
    background: #1A2C5B;
    color: #FFF; }
    .p-top__btn--01 a:hover::before {
      background: #FFF; }

.p-info {
  background: url(assets/img/info-bg01.jpg) no-repeat center;
  background-size: cover;
  padding: 12.5rem 0 10rem; }
  @media screen and (max-width: 960px) {
    .p-info {
      padding: 4.5rem 0 4rem; } }
  .p-info__contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: #FFF;
    padding: 7rem 7.5rem 6rem 10.5rem; }
    @media screen and (max-width: 960px) {
      .p-info__contents {
        padding: 1.5rem .5rem; } }
  .p-info__news {
    position: relative;
    z-index: 0;
    padding-right: 2.5rem;
    width: 69.5rem; }
    .p-info__news::before {
      content: "";
      position: absolute;
      width: 1px;
      height: 44.4rem;
      background: #EBEDF2;
      right: 0;
      top: -4.8rem;
      z-index: -1; }
      @media screen and (max-width: 960px) {
        .p-info__news::before {
          height: calc(100% - 1rem);
          top: 1rem;
          right: -1rem; } }
      @media screen and (max-width: 767px) {
        .p-info__news::before {
          display: none; } }
  .p-info__column {
    width: calc(100% - 69.5rem);
    padding-left: 7.3rem; }
  @media screen and (max-width: 767px) {
    .p-info__news, .p-info__column {
      width: 100%; } }
  .p-info__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5.7rem;
    padding-left: 11.5rem;
    padding-right: 5.6rem;
    position: relative;
    z-index: 0; }
    .p-info__head::before {
      content: "";
      position: absolute;
      width: 4.9rem;
      height: 3.4rem;
      background: url(assets/img/icon_volumn.svg) no-repeat center/contain;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      z-index: -1; }
    .p-info__head::after {
      content: "";
      position: absolute;
      width: 1px;
      height: 4.5rem;
      background: #E8CEA2;
      top: 50%;
      transform: translateY(-45%);
      left: 7.4rem;
      z-index: -1; }
  .p-info__column .p-info__head::before {
    width: 3.5rem;
    height: 3.5rem;
    -webkit-mask: url(assets/img/calendar-icon01.svg) center/100% no-repeat;
    mask: url(assets/img/calendar-icon01.svg) center/100% no-repeat;
    background: #1A2C5B; }
  .p-info__title h4 {
    color: #1A2C5B;
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0rem; }
  .p-info__title p {
    color: #296DB1;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.18rem; }
  .p-info__more a {
    color: #1A2C5B;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0rem;
    width: 12rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0.1rem;
    transition: all .35s;
    position: relative;
    z-index: 0; }
    .p-info__more a::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      background: #1A2C5B;
      bottom: 0;
      left: 0;
      z-index: -1; }
    .p-info__more a:hover {
      color: #E8CEA2; }
  .p-info ul {
    height: 25rem;
    padding-right: 5.6rem; }
  .p-info .p-news__item,
  .p-info .p-blog__item {
    padding-left: 1rem; }
    .p-info .p-news__item:last-child a,
    .p-info .p-blog__item:last-child a {
      border-bottom: none; }
    .p-info .p-news__item a,
    .p-info .p-blog__item a {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      border-bottom: 1px solid #F2F2F5;
      padding-bottom: 3.5rem;
      margin-bottom: 3rem;
      position: relative;
      z-index: 0; }
      .p-info .p-news__item a::before,
      .p-info .p-blog__item a::before {
        position: absolute;
        content: "›";
        right: .2rem;
        top: 0;
        color: #113874;
        font-size: 4.4rem;
        font-weight: 300;
        line-height: 40%;
        letter-spacing: 0rem;
        font-family: "Noto Sans JP", sans-serif;
        z-index: -1; }
      .p-info .p-news__item a time,
      .p-info .p-blog__item a time {
        width: 12.8rem;
        position: relative;
        z-index: 0;
        color: #1A2C5B;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.064rem; }
        .p-info .p-news__item a time::before,
        .p-info .p-blog__item a time::before {
          content: "";
          position: absolute;
          width: 1px;
          height: 2.2rem;
          background: #E8CEA2;
          top: 50%;
          transform: translateY(-40%);
          right: 0;
          z-index: -1; }
  .p-info .p-news__title,
  .p-info .p-blog__title {
    color: #333;
    font-size: var(--size-p);
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0rem;
    padding: 1rem 3rem; }

.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
  width: .5rem; }

.os-theme-dark > .os-scrollbar,
.os-theme-light > .os-scrollbar {
  background: #EEF1F8;
  padding: 0; }

.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
  background: #E8CEA2; }

.os-theme-dark > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle,
.os-theme-light > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle {
  min-height: 1rem;
  height: 1.6rem !important;
  border-radius: 1rem;
  width: .5rem !important;
  transform: translate(-0.25rem, 0px); }

.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
  height: 24rem; }

.os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical {
  background: transparent; }
  .os-host-resize-disabled.os-host-scrollbar-horizontal-hidden > .os-scrollbar-vertical::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #EEF1F8;
    top: 0;
    left: 50%;
    transform: translateX(-55%);
    z-index: -1; }

.p-calendar {
  width: 61rem;
  padding-left: 5rem;
  padding-right: 4rem;
  margin-top: 4.7rem;
  position: relative;
  z-index: 0; }
  .p-calendar::before, .p-calendar::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 37.3rem;
    background: #e2e5ee;
    top: -5.8rem;
    left: 0;
    z-index: -1; }
  .p-calendar::after {
    right: 0;
    left: auto; }
  .p-calendar .table {
    margin-bottom: 1rem; }
    .p-calendar .table .row {
      display: grid;
      grid-template-columns: 14rem repeat(8, 1fr);
      border-bottom: 1px solid #f3f5f6;
      align-items: center; }
      .p-calendar .table .row dd {
        text-align: center;
        color: #D4B370; }
        .p-calendar .table .row dd.color-02 {
          color: #5F4D40;
          font-size: 1.8rem;
          font-weight: 300;
          line-height: 120%;
          letter-spacing: 0rem; }
      .p-calendar .table .row .info__hour {
        color: #333;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 0.2rem;
        padding: 0.8rem 1rem;
        border-radius: 9.9rem;
        background: #f3f5f6;
        text-align: center; }
      .p-calendar .table .row:first-child {
        padding-bottom: 1.3rem;
        margin-bottom: 1rem; }
        .p-calendar .table .row:first-child dt {
          color: #192A55;
          font-size: var(--size-p);
          font-weight: 500;
          line-height: 200%;
          letter-spacing: 0.2rem;
          padding-left: 0.8rem; }
        .p-calendar .table .row:first-child dd {
          color: #333;
          font-size: var(--size-p);
          font-weight: bold;
          line-height: 200%;
          letter-spacing: 0.2rem; }
      .p-calendar .table .row:nth-child(2) {
        padding-bottom: 1rem;
        margin-bottom: 1rem; }
      .p-calendar .table .row:last-child {
        padding-bottom: 1.8rem; }
  .p-calendar .guide {
    padding-left: .5rem; }
    .p-calendar .guide p {
      color: #333;
      font-size: var(--size-p);
      font-weight: 400;
      line-height: 172%;
      letter-spacing: 0rem; }

.p-clinic {
  padding: 12.5rem 0 0; }
  .p-clinic .p-title__01 {
    margin-bottom: 7.5rem; }
  .p-clinic__contents {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6.2rem; }
    .p-clinic__contents .info {
      width: 46.3rem;
      padding-right: 6.3rem; }
      .p-clinic__contents .info .logo-clinic {
        margin-bottom: 3.9rem; }
        .p-clinic__contents .info .logo-clinic img {
          width: 39rem; }
      .p-clinic__contents .info .address {
        position: relative;
        z-index: 0;
        padding-left: 4.8rem;
        padding-bottom: 1.8rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid #e2e5ee; }
        .p-clinic__contents .info .address::before {
          content: "";
          position: absolute;
          width: 1.7rem;
          height: 2.6rem;
          background: url(assets/img/clinic-address.svg) no-repeat center/contain;
          top: .6rem;
          left: .5rem;
          z-index: -1; }
        .p-clinic__contents .info .address p {
          color: #192A55;
          font-size: var(--size-p);
          font-weight: 400;
          line-height: 200%;
          letter-spacing: 0.2rem; }
      .p-clinic__contents .info .car-parking {
        position: relative;
        z-index: 0;
        padding-left: 4.8rem;
        padding-bottom: 1.6rem;
        margin-bottom: 2.4rem;
        border-bottom: 1px solid #e2e5ee; }
        .p-clinic__contents .info .car-parking::before {
          content: "";
          position: absolute;
          width: 2.4rem;
          height: 2.1rem;
          background: url(assets/img/clinic-car.svg) no-repeat center/contain;
          top: .6rem;
          left: .5rem;
          z-index: -1; }
        .p-clinic__contents .info .car-parking p {
          color: #192A55;
          font-size: var(--size-p);
          font-weight: 400;
          line-height: 200%;
          letter-spacing: 0.2rem; }
      .p-clinic__contents .info .tel {
        position: relative;
        z-index: 0;
        padding-left: 4.8rem; }
        .p-clinic__contents .info .tel::before {
          content: "";
          position: absolute;
          width: 2.1rem;
          height: 2.1rem;
          background: url(assets/img/clinic-tel.svg) no-repeat center/contain;
          top: .2rem;
          left: .5rem;
          z-index: -1; }
        .p-clinic__contents .info .tel p {
          color: #000;
          font-size: var(--size-p);
          font-weight: 400;
          line-height: 110%;
          letter-spacing: 0rem;
          margin-bottom: .4rem; }
        .p-clinic__contents .info .tel a {
          color: #192A55;
          font-size: 4rem;
          font-weight: 400;
          line-height: 100%;
          letter-spacing: 10%;
          font-family: "Noto Serif JP", serif; }
    .p-clinic__contents .btns {
      width: calc(100% - 46.3rem - 61rem);
      padding-left: 3.8rem;
      margin-top: 4rem; }
      .p-clinic__contents .btns-box {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem; }
      .p-clinic__contents .btns--clinic a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 45rem;
        height: 9.1rem;
        background: #192A55;
        border: 1px solid transparent;
        color: #FFF;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -0.02rem;
        position: relative;
        z-index: 0;
        padding-left: 11rem;
        transition: all .35s; }
        .p-clinic__contents .btns--clinic a:hover {
          border: 1px solid #192A55;
          color: #192A55;
          background: #FFF; }
          .p-clinic__contents .btns--clinic a:hover::before, .p-clinic__contents .btns--clinic a:hover::after {
            background: #192A55; }
          .p-clinic__contents .btns--clinic a:hover::after {
            right: 1.5rem; }
        .p-clinic__contents .btns--clinic a::before {
          content: "";
          position: absolute;
          width: 4.5rem;
          height: 5rem;
          -webkit-mask: url(assets/img/calendar-icon01.svg) center/100% no-repeat;
          mask: url(assets/img/calendar-icon01.svg) center/100% no-repeat;
          background: #FFF;
          top: 50%;
          left: 4.1rem;
          transform: translateY(-50%);
          z-index: -1;
          transition: all .35s; }
        .p-clinic__contents .btns--clinic a::after {
          content: "";
          position: absolute;
          width: 3.165rem;
          height: 0.85rem;
          -webkit-mask: url(assets/img/arrow-right01.svg) center/100% no-repeat;
          mask: url(assets/img/arrow-right01.svg) center/100% no-repeat;
          background: #FFF;
          top: 50%;
          right: 2.5rem;
          transform: translateY(-50%);
          z-index: -1;
          transition: all .35s; }
      .p-clinic__contents .btns--clinic:last-child a {
        background: #B39B69; }
        .p-clinic__contents .btns--clinic:last-child a:hover {
          border: 1px solid #B39B69;
          color: #B39B69;
          background: #FFF; }
          .p-clinic__contents .btns--clinic:last-child a:hover::before, .p-clinic__contents .btns--clinic:last-child a:hover::after {
            background: #B39B69; }
      .p-clinic__contents .btns p {
        color: #192A55;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 120%;
        letter-spacing: 0.18rem; }
  .p-clinic__nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 108.3rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4.5rem;
    padding: 2rem 4.2rem;
    border-radius: 1rem;
    border: 1px solid #d9d9d9; }
    .p-clinic__nav-item {
      width: calc(100% / 3); }
      .p-clinic__nav-item a {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 1.2rem 0rem 1.2rem 0rem;
        border-right: 1px solid #EFEDEB;
        color: #192A55;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 0.2rem;
        position: relative;
        z-index: 0; }
        .p-clinic__nav-item a::before {
          content: "";
          position: absolute;
          width: 2.9rem;
          height: 3.2rem;
          background: url(assets/img/clinic-house.svg) no-repeat center/contain;
          z-index: -1;
          position: relative;
          margin-right: 2.5rem; }
        .p-clinic__nav-item a::after {
          position: absolute;
          content: "›";
          color: #192A55;
          font-size: 3.4rem;
          font-weight: 300;
          line-height: 120%;
          letter-spacing: 0rem;
          font-family: "Noto Sans JP", sans-serif;
          top: 50%;
          transform: translateY(-60%);
          right: 5rem;
          z-index: -1;
          transition: all .35s; }
        .p-clinic__nav-item a:hover::after {
          right: 4rem; }
      .p-clinic__nav-item:nth-child(2) a::before {
        width: 3rem;
        height: 3.2rem;
        background: url(assets/img/clinic-fac.svg) no-repeat center/contain; }
      .p-clinic__nav-item:last-child a {
        border-right: none; }
        .p-clinic__nav-item:last-child a::before {
          width: 2.3rem;
          height: 2.4rem;
          background: url(assets/img/clinic-doctor.svg) no-repeat center/contain; }
        .p-clinic__nav-item:last-child a::after {
          right: 0; }
        .p-clinic__nav-item:last-child a:hover::after {
          right: -1rem; }
  .p-clinic__map {
    width: 100%;
    height: 29.7rem;
    background: #CCC;
    position: relative;
    z-index: 0; }
    .p-clinic__map iframe {
      width: 100%;
      height: 100%;
      border: none; }
      .p-clinic__map iframe .default-place-card-container {
        opacity: 0 !important;
        display: none; }
        .p-clinic__map iframe .default-place-card-container .default-place-card-container a:link,
        .p-clinic__map iframe .default-place-card-container .default-place-card-container a:visited {
          opacity: 0; }
    .p-clinic__map .link-gg {
      width: 40.3rem;
      height: 24.8rem;
      box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: absolute;
      z-index: 1;
      top: .5rem;
      left: .5rem;
      background: #FFF; }
      @media screen and (max-width: 960px) {
        .p-clinic__map .link-gg {
          display: none; } }
      .p-clinic__map .link-gg .title {
        margin-bottom: 2.3rem; }
        .p-clinic__map .link-gg .title p {
          color: #142B6F;
          font-size: 2rem;
          font-weight: 500;
          line-height: 120%;
          letter-spacing: 0.36rem;
          font-family: "Noto Sans JP", sans-serif; }
      .p-clinic__map .link-gg .address {
        margin-bottom: 2.1rem; }
        .p-clinic__map .link-gg .address p {
          color: #192A55;
          font-size: 1.6rem;
          font-weight: 400;
          line-height: 157%;
          letter-spacing: 0.18rem;
          font-family: "Noto Sans JP", sans-serif; }
      .p-clinic__map .link-gg .btn a {
        color: #FFFFFF;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: -0.072rem;
        font-family: "Noto Sans JP", sans-serif;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 32.5rem;
        height: 6.3rem;
        padding: 1rem 1rem 1rem 6.8rem;
        background: #142B6F;
        border: 1px solid transparent;
        position: relative;
        z-index: 0;
        transition: all .35s; }
        .p-clinic__map .link-gg .btn a::before {
          content: "";
          position: absolute;
          width: 2.1rem;
          height: 3rem;
          -webkit-mask: url(assets/img/clinic-address.svg) center/contain no-repeat;
          mask: url(assets/img/clinic-address.svg) center/contain no-repeat;
          background: #FFF;
          top: 50%;
          transform: translateY(-50%);
          left: 2.7rem;
          z-index: -1;
          transition: all .35s; }
        .p-clinic__map .link-gg .btn a::after {
          content: "";
          position: absolute;
          width: 1.7rem;
          height: 1.7rem;
          -webkit-mask: url(assets/img/clinic-linkgg.svg) center/contain no-repeat;
          mask: url(assets/img/clinic-linkgg.svg) center/contain no-repeat;
          background: #FFF;
          top: 50%;
          transform: translateY(-50%);
          right: 3rem;
          z-index: -1;
          transition: all .35s; }
        .p-clinic__map .link-gg .btn a:hover {
          background: #FFF;
          border: 1px solid #142B6F;
          color: #142B6F; }
          .p-clinic__map .link-gg .btn a:hover::before, .p-clinic__map .link-gg .btn a:hover::after {
            background: #142B6F; }

.p-concept {
  padding: 0rem;
  background: url(assets/img/bg_concept02.jpg) no-repeat center/cover; }
  .p-concept--box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; }
  .p-concept--image {
    width: calc(100% - 75.3rem + 17.5rem);
    margin-left: -17.5rem;
    padding-right: 11rem; }
    .p-concept--image img {
      width: 100%;
      clip-path: polygon(0 0, calc(100% - 18.5rem) 0, 100% 100%, 0 100%); }
  .p-concept--contents {
    width: 75.3rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: column; }
    .p-concept--contents .p-top__btn--01.vz-01 a {
      color: #FFF;
      background: #223463;
      border: 1px solid #223463; }
      .p-concept--contents .p-top__btn--01.vz-01 a::before, .p-concept--contents .p-top__btn--01.vz-01 a::after {
        background: #FFF; }
      .p-concept--contents .p-top__btn--01.vz-01 a:hover {
        color: #223463;
        background: #FFF; }
        .p-concept--contents .p-top__btn--01.vz-01 a:hover::before, .p-concept--contents .p-top__btn--01.vz-01 a:hover::after {
          background: #223463; }
    .p-concept--contents .title {
      margin-bottom: 1.5rem; }
      .p-concept--contents .title h3 {
        color: #213362;
        font-size: 4.5rem;
        font-weight: 500;
        line-height: 178%;
        letter-spacing: 1.5rem; }
        .p-concept--contents .title h3 .color {
          color: #A9905E; }
    .p-concept--contents .content {
      margin-bottom: 5.2rem; }
      .p-concept--contents .content p {
        color: #333;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 0.2rem; }
    .p-concept--contents .p-title__01 {
      margin-left: -39rem;
      margin-bottom: 8.5rem; }

.p-ytb {
  padding: 12rem 0 10rem;
  position: relative;
  z-index: 0; }
  .p-ytb::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40.8rem;
    background: url(assets/img/bg-ytb.svg) no-repeat center top/cover;
    top: 0;
    left: 0;
    z-index: -1; }
  .p-ytb .p-title__01 {
    margin-bottom: 4.5rem; }
    .p-ytb .p-title__01-title::before {
      width: 100%; }
  .p-ytb--box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: row-reverse; }
    .p-ytb--box .ytb {
      width: 100.1rem;
      height: 57.5rem;
      background: #FFF;
      border-radius: 2rem;
      box-shadow: 0 0.4rem 2.4rem rgba(0, 0, 0, 0.1);
      padding: 3rem; }
      .p-ytb--box .ytb iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1rem; }
    .p-ytb--box .contents {
      width: calc(100% - 100.1rem);
      padding-right: 4rem;
      margin-bottom: 2rem; }
      .p-ytb--box .contents .title {
        margin-bottom: 4.5rem; }
        .p-ytb--box .contents .title h3 {
          color: #142B6F;
          font-size: 3.2rem;
          font-weight: 500;
          line-height: 178%;
          letter-spacing: 0.576rem;
          position: relative;
          z-index: 0; }
          .p-ytb--box .contents .title h3::before {
            content: "";
            position: absolute;
            width: 18.5rem;
            height: 6.6rem;
            background: url(assets/img/icon-movie.svg) no-repeat center/contain;
            bottom: -1.5rem;
            right: 4.5rem;
            z-index: -1; }
      .p-ytb--box .contents .content {
        margin-bottom: 5.3rem; }
        .p-ytb--box .contents .content p {
          color: #555;
          font-size: var(--size-p);
          font-weight: 400;
          line-height: 200%;
          letter-spacing: 0.2rem; }
      .p-ytb--box .contents .p-top__btn--01.tn-02 a {
        width: 38.8rem;
        height: 8.9rem;
        padding-left: 9rem; }
        .p-ytb--box .contents .p-top__btn--01.tn-02 a::before {
          right: 3.5rem; }
        .p-ytb--box .contents .p-top__btn--01.tn-02 a::after {
          content: "";
          position: absolute;
          width: 3.4rem;
          height: 2.4rem;
          -webkit-mask: url(assets/img/icon-ytb.svg) center/contain no-repeat;
          mask: url(assets/img/icon-ytb.svg) center/contain no-repeat;
          background: #142B6F;
          top: 50%;
          transform: translateY(-50%);
          left: 3.5rem;
          z-index: 0;
          transition: all .35s; }
        .p-ytb--box .contents .p-top__btn--01.tn-02 a:hover::after {
          background: #FFF; }

.p-pickup {
  padding: 13rem 0 10rem;
  background: url(assets/img/bg_pickup.jpg) no-repeat center/cover; }
  .p-pickup .p-title__01 {
    margin-bottom: 6.5rem; }
    @media screen and (max-width: 960px) {
      .p-pickup .p-title__01 {
        margin-bottom: 4rem; } }
  .p-pickup--content .box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3.5rem; }
  .p-pickup--content .item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: calc((100% - 6rem) / 3);
    padding: 1.5rem 1.5rem 2.5rem;
    background: #FFF;
    border-radius: 1rem; }
    .p-pickup--content .item .image {
      width: 100%;
      margin-bottom: 2.3rem;
      position: relative;
      z-index: 0; }
      .p-pickup--content .item .image img {
        width: 100%;
        object-fit: cover;
        border-radius: .8rem; }
      .p-pickup--content .item .image .icon {
        display: block;
        width: 8rem;
        height: 8rem;
        border-radius: 50%;
        background: #FFF;
        position: absolute;
        z-index: 0;
        bottom: 1.2rem;
        left: 1.6rem; }
        .p-pickup--content .item .image .icon::before {
          content: "";
          position: absolute;
          width: 3.1rem;
          height: 5rem;
          background: url(assets/img/icon-pickup01.svg) no-repeat center/contain;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          z-index: -1; }
    .p-pickup--content .item:nth-child(2) .image .icon::before {
      width: 5rem;
      height: 4rem;
      background: url(assets/img/icon-pickup02.svg) no-repeat center/contain;
      transform: translate(-34%, -50%); }
    .p-pickup--content .item:last-child .image .icon::before {
      width: 4.2rem;
      height: 4.5rem;
      -webkit-mask: url(assets/img/clinic-fac.svg) center/contain no-repeat;
      mask: url(assets/img/clinic-fac.svg) center/contain no-repeat;
      background: #142B6F; }
    .p-pickup--content .item .container {
      padding-left: 1.5rem;
      padding-right: 2rem; }
    .p-pickup--content .item .title {
      margin-bottom: .7rem; }
      .p-pickup--content .item .title p {
        color: #142B6F;
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 110%;
        letter-spacing: 0.18rem;
        font-family: "Noto Sans JP", sans-serif; }
      .p-pickup--content .item .title h3 {
        color: #142B6F;
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 205%;
        letter-spacing: 0.48rem; }
    .p-pickup--content .item .content {
      min-height: 14rem;
      margin-bottom: 1.4rem; }
      .p-pickup--content .item .content p {
        color: #555;
        font-size: var(--size-p);
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 0.1rem; }
    .p-pickup--content .item .p-top__btn--01 {
      padding-left: 1rem; }
      .p-pickup--content .item .p-top__btn--01 a {
        width: 41.6rem;
        height: 5.9rem;
        padding: 0 5rem; }
        .p-pickup--content .item .p-top__btn--01 a::before {
          right: 3.2rem; }
  .p-pickup--note {
    width: calc(100% - .8rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1.5rem;
    background: #FFF;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 960px) {
      .p-pickup--note {
        padding: 1.5rem; } }
    .p-pickup--note p {
      color: #142B6F;
      font-size: var(--size-p);
      font-weight: 400;
      line-height: 200%;
      letter-spacing: 0.2rem;
      text-align: center; }
      @media screen and (max-width: 960px) {
        .p-pickup--note p {
          font-size: 1.5rem; } }

.p-recruit {
  padding: 8rem 0 7rem; }
  .p-recruit--wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6rem; }
  .p-recruit__img {
    width: 66rem; }
    .p-recruit__img img {
      width: 100%;
      object-fit: cover; }
  .p-recruit--container {
    width: calc(100% - 66rem - 6rem); }
  .p-recruit__content {
    position: relative;
    z-index: 0; }
    .p-recruit__content::before {
      content: "";
      position: absolute;
      width: 26rem;
      height: 8.6rem;
      background: url(assets/img/img_recruit.png) no-repeat center/contain;
      top: 0;
      left: 22rem;
      z-index: -1; }

.p-instagram {
  padding: 8rem 0 6.7rem;
  border-bottom: 1px solid #CBD0D0;
  background: url(assets/img/bg_feature02.jpg) no-repeat center/cover; }
  .p-instagram .p-top--recruit__right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }

.tn-content .image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5rem;
  position: relative;
  z-index: 0; }
  .tn-content .image::before {
    content: "";
    position: absolute;
    width: 2rem;
    height: 5rem;
    background: #192a55;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1; }
    @media screen and (max-width: 767px) {
      .tn-content .image::before {
        transform: translate(-50%, -50%) rotate(90deg); } }
  .tn-content .image-item {
    width: calc((100% - 5rem) / 2); }
    @media screen and (max-width: 767px) {
      .tn-content .image-item {
        width: 100%; } }
    .tn-content .image-item img {
      width: 100%;
      object-fit: cover; }

.tn-table {
  border: 1px solid #192a55; }
  .tn-table__row {
    display: grid;
    grid-template-columns: 25rem 1fr;
    align-items: start;
    justify-items: center; }
    @media screen and (max-width: 960px) {
      .tn-table__row {
        grid-template-columns: 17rem 1fr; } }
    @media screen and (max-width: 767px) {
      .tn-table__row {
        grid-template-columns: 12rem 1fr; } }
    .tn-table__row:last-child dt,
    .tn-table__row:last-child dd {
      border-bottom: none; }
    .tn-table__row dt,
    .tn-table__row dd {
      width: 100%;
      height: 100%;
      text-align: center;
      padding: 1rem;
      border-bottom: 1px solid #192a55;
      font-size: 1.8rem;
      color: #000;
      font-weight: 400;
      line-height: 185%;
      letter-spacing: 0; }
      @media screen and (max-width: 960px) {
        .tn-table__row dt,
        .tn-table__row dd {
          font-size: 1.5rem; } }
    .tn-table__row dd {
      border-left: 1px solid #FFF;
      background: #FFF; }
    .tn-table__row dt {
      color: #FFF;
      background: #192a55;
      border-color: #FFF;
      font-weight: 500; }
  .tn-table.tn-02 .tn-table__row {
    grid-template-columns: 29.5rem 1fr; }
    @media screen and (max-width: 960px) {
      .tn-table.tn-02 .tn-table__row {
        grid-template-columns: 15.5rem 1fr; } }
    .tn-table.tn-02 .tn-table__row dd,
    .tn-table.tn-02 .tn-table__row dt {
      text-align: left; }

.recruit__tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem; }
  .recruit__tabs--item {
    width: calc((100% - 3rem) / 4); }
    @media screen and (max-width: 960px) {
      .recruit__tabs--item {
        width: calc((100% - 1rem) / 2); } }
    .recruit__tabs--item .recruit__tab {
      background: #FFF;
      border: 1px solid #192a55;
      border-radius: 1rem;
      padding: 1.5rem 1rem;
      color: #000;
      font-size: 2rem;
      font-weight: 500;
      line-height: 120%;
      letter-spacing: 0;
      transition: all .35s;
      width: 100%; }
      @media screen and (max-width: 960px) {
        .recruit__tabs--item .recruit__tab {
          font-size: 1.6rem;
          min-height: 7rem; } }
      .recruit__tabs--item .recruit__tab.is-active {
        background: #192a55;
        color: #FFF; }
      .recruit__tabs--item .recruit__tab:hover {
        background: #192a55;
        color: #FFF; }

.recruit__content p {
  font-weight: 400; }
@media screen and (max-width: 960px) {
  .recruit__content {
    width: 100%;
    overflow: hidden;
    overflow-x: auto; } }

.recruit__item {
  display: none; }
  @media screen and (max-width: 960px) {
    .recruit__item {
      width: 67rem; } }
  .recruit__item.is-active {
    display: block; }

@media (min-width: 960.5px) {
  .tn-767 {
    display: none; } }
@media (min-width: 960.5px) and (max-width: 1440px) {
  .p-info ul {
    padding-right: 2.5rem; }
  .p-info__contents {
    padding: 7rem 5.5rem 6rem 6.5rem; }
  .p-info__news {
    width: 65.5rem; }
  .p-info__column {
    width: calc(100% - 65.5rem);
    padding-left: 3.5rem; }

  .p-calendar {
    width: 50rem;
    padding-left: 1rem;
    padding-right: 1rem; }
    .p-calendar .table .row .info__hour {
      letter-spacing: 0; }

  .p-clinic .p-title__01-title::before {
    width: 100%; }
  .p-clinic__contents {
    max-width: 135rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .p-clinic__contents .info {
      width: 42.3rem;
      padding-right: 4.3rem; }
      .p-clinic__contents .info .address::before {
        top: .8rem; }
      .p-clinic__contents .info .car-parking::before {
        top: .8rem; }
    .p-clinic__contents .btns {
      width: calc(100% - 42.3rem - 50rem);
      padding-left: 3.8rem; }
      .p-clinic__contents .btns--clinic a {
        width: 40rem;
        height: 8.1rem; }

  .p-concept--contents {
    width: 72.3rem;
    margin-top: 0rem; }
    .p-concept--contents .p-title__01 {
      margin-left: -27rem;
      margin-bottom: 2.5rem; }
    .p-concept--contents .content p {
      letter-spacing: 0.05rem; }
      .p-concept--contents .content p br {
        display: none; }
  .p-concept--image {
    width: calc(100% - 72.3rem + 17.5rem);
    margin-left: -17.5rem;
    padding-right: 5rem; }

  .p-ytb--box {
    max-width: 135rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
    .p-ytb--box .ytb {
      width: 85rem; }
    .p-ytb--box .contents {
      width: calc(100% - 85rem); }

  .p-pickup--content .box {
    gap: 1.5rem; }
  .p-pickup--content .item {
    width: calc((100% - 3rem) / 3); }
    .p-pickup--content .item .container {
      padding-left: 0.5rem;
      padding-right: 1rem; }
    .p-pickup--content .item .p-top__btn--01 a {
      width: 37.6rem;
      padding: 0 2rem; }
    .p-pickup--content .item .content p {
      line-height: 170%; }
      .p-pickup--content .item .content p .u-pc-only {
        display: none; } }
@media (max-width: 960px) {
  .tn-767 {
    display: none; }

  .p-info__news {
    padding-right: .5rem;
    margin-bottom: 6rem; }
  .p-info__column {
    padding-left: 0;
    padding-right: .5rem; }
  .p-info ul {
    padding-right: 1.2rem;
    height: 15rem; }
  .p-info__head {
    padding-right: 0;
    padding-left: 7rem;
    margin-bottom: 2.5rem; }
    .p-info__head::before {
      width: 3.9rem;
      height: 2.4rem; }
    .p-info__head::after {
      left: 5.4rem;
      height: 3.5rem; }
  .p-info__title h4 {
    font-size: 1.8rem; }
  .p-info__title p {
    font-size: 1.4rem; }
  .p-info__more a {
    font-size: 1.5rem;
    line-height: 100%;
    width: 6rem; }
  .p-info .p-news__item a,
  .p-info .p-blog__item a {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem; }
    .p-info .p-news__item a::before,
    .p-info .p-blog__item a::before {
      font-size: 2.8rem;
      right: 0;
      top: .2rem; }
    .p-info .p-news__item a time,
    .p-info .p-blog__item a time {
      width: 10rem;
      font-size: 1.5rem; }
      .p-info .p-news__item a time::before,
      .p-info .p-blog__item a time::before {
        height: 2rem;
        transform: translateY(-50%); }
  .p-info .p-news__title,
  .p-info .p-blog__title {
    font-size: 1.5rem;
    padding: 0 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; }

  .os-theme-dark > .os-scrollbar-vertical,
  .os-theme-light > .os-scrollbar-vertical {
    height: 14rem; }

  .p-calendar {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem; }

  .p-calendar .table .row:first-child dt {
    font-size: 1.6rem; }

  .p-calendar .table .row:first-child dd {
    font-size: 1.6rem; }

  .p-calendar .table .row .info__hour {
    font-size: 1.5rem;
    padding: 0.3rem; }

  .p-calendar .table .row dd.color-02 {
    font-size: 1.5rem; }

  .p-calendar .table .row {
    grid-template-columns: 11rem repeat(8, 1fr); }

  .p-calendar .guide p {
    font-size: 1.5rem; }

  .p-calendar::before,
  .p-calendar::after {
    height: 100%;
    top: -.5rem; }

  .p-clinic {
    padding: 4.5rem 0 0; }
    .p-clinic .p-title__01 {
      margin-bottom: 5.5rem; }
    .p-clinic__contents {
      margin-bottom: 4.2rem; }
      .p-clinic__contents .info,
      .p-clinic__contents .btns {
        width: 100%; }
      .p-clinic__contents .info {
        padding-right: 0; }
        .p-clinic__contents .info .logo-clinic {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-bottom: 3rem; }
          .p-clinic__contents .info .logo-clinic img {
            width: 25rem; }
        .p-clinic__contents .info .address {
          padding-left: 3.8rem;
          padding-bottom: 0.5rem;
          margin-bottom: 1.5rem; }
          .p-clinic__contents .info .address::before {
            width: 1.9rem;
            height: 2.1rem;
            top: .6rem; }
          .p-clinic__contents .info .address p {
            font-size: 1.5rem; }
        .p-clinic__contents .info .car-parking {
          padding-left: 3.8rem;
          padding-bottom: 1.5rem;
          margin-bottom: 1rem; }
          .p-clinic__contents .info .car-parking::before {
            width: 2rem;
            height: 2.1rem;
            top: 0; }
          .p-clinic__contents .info .car-parking p {
            font-size: 1.5rem;
            line-height: 120%; }
        .p-clinic__contents .info .tel {
          padding-left: 3.8rem; }
          .p-clinic__contents .info .tel a {
            font-size: 3rem;
            letter-spacing: 0.1rem; }
          .p-clinic__contents .info .tel::before {
            width: 1.8rem;
            height: 1.8rem;
            top: 0.3rem; }
      .p-clinic__contents .btns {
        padding-left: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center; }
        .p-clinic__contents .btns p {
          font-size: 1.5rem;
          letter-spacing: 0; }
      .p-clinic__contents .btns-box {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center; }
      .p-clinic__contents .btns--clinic a {
        width: 34.5rem;
        height: 7rem;
        font-size: 1.6rem;
        padding-left: 7rem; }
        .p-clinic__contents .btns--clinic a::before {
          width: 3rem;
          height: 3rem;
          left: 1.5rem; }
    .p-clinic__nav {
      gap: 1rem;
      padding: 1rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap; }
      .p-clinic__nav-item {
        width: 15.65rem; }
        .p-clinic__nav-item a {
          font-size: 1.5rem;
          padding: 1rem 0rem 1rem 0rem;
          letter-spacing: 0;
          border-right: none; }
          .p-clinic__nav-item a::before {
            width: 1.9rem;
            height: 2.2rem;
            margin-right: 1rem; }
          .p-clinic__nav-item a::after {
            right: 0.5rem; }
          .p-clinic__nav-item a:hover::after {
            right: 0; }
        .p-clinic__nav-item:nth-child(2) a::before {
          width: 2.3rem;
          height: 2.5rem; }
        .p-clinic__nav-item:nth-child(2) a::after {
          right: 0; }
        .p-clinic__nav-item:last-child {
          width: 23.5rem; }
          .p-clinic__nav-item:last-child a::before {
            width: 2rem;
            height: 2.2rem; }
          .p-clinic__nav-item:last-child a:hover::after {
            right: 0; }
    .p-clinic__map {
      height: 15rem; }

  .p-concept {
    padding: 4.5rem 0; }
    .p-concept--box {
      flex-direction: column;
      align-items: flex-start; }
    .p-concept--contents {
      width: 100%;
      display: contents; }
      .p-concept--contents .p-title__01 {
        order: 1;
        margin-left: 0;
        margin-bottom: 4.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%; }
        .p-concept--contents .p-title__01-title::before {
          width: auto; }
      .p-concept--contents .title {
        order: 3; }
        .p-concept--contents .title h3 {
          font-size: 3rem;
          line-height: 150%;
          letter-spacing: 0; }
      .p-concept--contents .content {
        order: 4;
        margin-bottom: 3.2rem; }
        .p-concept--contents .content p {
          font-size: 1.5rem;
          line-height: 185%;
          letter-spacing: 0; }
          .p-concept--contents .content p br {
            display: none; }
      .p-concept--contents .p-top__btn--01 {
        order: 5;
        margin: 0 auto; }
    .p-concept--image {
      width: 100%;
      order: 2;
      margin-left: 0;
      padding-right: 0;
      margin-bottom: 2rem; }
      .p-concept--image img {
        clip-path: none;
        border-radius: .5rem; }

  .p-ytb {
    padding: 4rem 0; }
    .p-ytb--box {
      flex-direction: row-reverse;
      flex-wrap: wrap;
      gap: 2rem; }
      .p-ytb--box .ytb {
        width: 34.9rem;
        height: 22.5rem;
        border-radius: 1rem;
        padding: 1rem; }
        .p-ytb--box .ytb iframe {
          border-radius: .5rem; }
      .p-ytb--box .contents {
        width: 34.9rem;
        padding-right: 0;
        margin-bottom: 0; }
        .p-ytb--box .contents .title {
          margin-bottom: 1rem; }
          .p-ytb--box .contents .title h3 {
            font-size: 2.5rem;
            line-height: 160%;
            letter-spacing: 0.2rem; }
            .p-ytb--box .contents .title h3::before {
              width: 9.5rem;
              height: 3.6rem;
              bottom: -1rem;
              right: 5.5rem; }
        .p-ytb--box .contents .content {
          margin-bottom: 1.5rem; }
          .p-ytb--box .contents .content p {
            font-size: 1.5rem;
            line-height: 185%; }
            .p-ytb--box .contents .content p br {
              display: none; }
        .p-ytb--box .contents .p-top__btn--01.tn-02 a {
          width: 34.5rem;
          height: 6.9rem; }

  .p-pickup {
    padding: 4rem 0; }
    .p-pickup--content .box {
      gap: 2rem;
      margin-bottom: 1.5rem; }
      .p-pickup--content .box .item {
        width: 100%; }
        .p-pickup--content .box .item .container {
          padding-left: 0;
          padding-right: 0; }
        .p-pickup--content .box .item .title h3 {
          font-size: 2rem;
          line-height: 185%; }
        .p-pickup--content .box .item .content p {
          font-size: 1.5rem;
          line-height: 185%; }
        .p-pickup--content .box .item .p-top__btn--01 {
          padding-left: 0;
          display: flex;
          justify-content: center;
          margin: 0 auto; }
          .p-pickup--content .box .item .p-top__btn--01 a {
            width: 31.6rem;
            height: 4.9rem;
            padding: 0 2rem; }
        .p-pickup--content .box .item .image .icon {
          width: 5rem;
          height: 5rem;
          left: .5rem;
          bottom: .5rem; }
          .p-pickup--content .box .item .image .icon::before {
            width: 2rem;
            height: 3rem; }
        .p-pickup--content .box .item:nth-child(2) .image .icon::before {
          width: 3rem;
          height: 3rem; }
        .p-pickup--content .box .item:last-child .image .icon::before {
          width: 3.2rem;
          height: 3.5rem; }

  .p-recruit {
    padding: 3rem 0 5rem; }
    .p-recruit--wrap {
      gap: 1rem; }
    .p-recruit__img {
      width: 100%; }
    .p-recruit--container {
      width: 100%; }
    .p-recruit__content::before {
      width: 13rem;
      height: 5.6rem;
      top: 1.5rem;
      left: 14rem; }
    .p-recruit .p-top--recruit__ja {
      padding-bottom: 0.5rem; }

  .p-instagram {
    padding: 3rem 0; }
    .p-instagram .p-top__btn--01 a {
      width: 33.8rem; } }
@media (max-width: 960px) and (min-width: 767.5px) {
  .p-info__contents {
    gap: 2rem;
    padding: 1.5rem 0; }
  .p-info__news {
    margin-bottom: 0; }
  .p-info__news, .p-info__column {
    width: calc((100% - 2rem) / 2); }
  .p-info .p-blog__title,
  .p-info .p-news__title {
    padding: 0 .5rem; }
  .p-info .p-news__item,
  .p-info .p-blog__item {
    padding-left: .5rem; }
    .p-info .p-news__item a time,
    .p-info .p-blog__item a time {
      width: 8rem; }

  .p-pickup--content .box .item {
    width: calc((100% - 2rem) / 2); }
    .p-pickup--content .box .item .content {
      min-height: 16.7rem; } }
@media (max-width: 767px) {
  .tn-767 {
    display: block; } }
.p-top--slide {
  overflow: hidden;
  position: relative;
  z-index: 1; }
  .p-top--slide__list {
    display: flex;
    width: max-content;
    animation: slide-left 25s linear infinite;
    list-style: none;
    padding: 0;
    margin: 0; }
    .p-top--slide__list:hover {
      animation-play-state: running; }
  .p-top--slide__item {
    width: 45rem; }
    @media screen and (max-width: 960px) {
      .p-top--slide__item {
        width: 14rem; } }
    .p-top--slide__item img {
      width: 100%;
      border-radius: 0; }

.p-top--recruit .p-title__01-title::before {
  color: #F0F2F9; }

.p-top--recruit {
  padding: 10rem 0 10rem;
  background: #FEFEFE;
  border-bottom: 1px solid #CBD0D0; }
  @media screen and (max-width: 960px) {
    .p-top--recruit {
      padding: 3rem 0; } }
  .p-top--recruit__content {
    position: relative; }
    .p-top--recruit__content::before {
      content: "";
      position: absolute;
      width: 26rem;
      height: 8.6rem;
      background: url(assets/img/img_recruit.png) no-repeat center/contain;
      top: 0;
      right: 29rem; }
      @media screen and (max-width: 960px) {
        .p-top--recruit__content::before {
          width: 14rem;
          height: 6.6rem;
          right: 5rem; } }
  .p-top--recruit__left {
    width: calc(100% - 57.5rem);
    position: relative; }
    .p-top--recruit__left::before {
      content: "";
      position: absolute;
      top: 0;
      right: 7.5rem;
      width: 1px;
      height: 63.7rem;
      background: #C2A370; }
  .p-top--recruit__right {
    width: 57.5rem;
    display: flex;
    flex-direction: column; }
  .p-top--recruit__en {
    color: #B08F5A;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0; }
  .p-top--recruit__ja {
    color: #041961;
    font-size: 4rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 24%;
    position: relative;
    font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    padding-bottom: 1.5rem; }
    @media screen and (max-width: 960px) {
      .p-top--recruit__ja {
        font-size: 3rem;
        letter-spacing: 0; } }
    .p-top--recruit__ja::before {
      content: "";
      position: absolute;
      width: 5.1rem;
      height: 1px;
      bottom: 0;
      left: 0;
      background: #AF8C59; }
  .p-top--recruit__text {
    color: #000000;
    font-size: var(--size-p);
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.2rem;
    padding-bottom: 2rem;
    padding-top: 1.4rem; }
    @media screen and (max-width: 960px) {
      .p-top--recruit__text {
        font-size: 1.5rem;
        line-height: 185%; } }
  .p-top--recruit__img {
    padding-bottom: 3rem;
    width: 66.1rem; }
    .p-top--recruit__img img {
      width: 100%; }
  .p-top--recruit__insta {
    position: relative;
    margin-bottom: 3rem;
    width: 100%; }
    .p-top--recruit__insta img {
      width: 100%; }
    .p-top--recruit__insta::before {
      content: "";
      position: absolute;
      width: 10rem;
      height: 10.1rem;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: url(assets/img/icon_instagram.png) no-repeat center/contain;
      z-index: 2;
      pointer-events: none; }
      @media screen and (max-width: 767px) {
        .p-top--recruit__insta::before {
          width: 6rem;
          height: 6.1rem; } }

.p-top--recruit .p-title__01 {
  margin-bottom: 9rem; }

.p-top__btn--01.vz-01.ls-01 a {
  width: 41.6rem;
  padding-left: 11rem; }
  .p-top__btn--01.vz-01.ls-01 a::after {
    content: "";
    position: absolute;
    width: 3.5rem;
    height: 3.7rem;
    -webkit-mask: url(assets/img/icon_equipment.svg) center/100% no-repeat;
    mask: url(assets/img/icon_equipment.svg) center/100% no-repeat;
    left: 4rem;
    background: #142B6F; }
.p-top__btn--01.vz-01 a {
  width: 38.8rem;
  height: 8.9rem;
  padding-left: 8.5rem; }
  .p-top__btn--01.vz-01 a::after {
    content: "";
    position: absolute;
    width: 3.6rem;
    height: 3.6rem;
    -webkit-mask: url(assets/img/icon_recruit.svg) center/100% no-repeat;
    mask: url(assets/img/icon_recruit.svg) center/100% no-repeat;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    background: #1A2C5B;
    transition: all .35s; }
  .p-top__btn--01.vz-01 a:hover::after {
    background: #fff; }
  .p-top__btn--01.vz-01 a:hover::before {
    right: 1.5rem; }
  .p-top__btn--01.vz-01 a.dh-01 {
    padding-left: 9rem; }
    .p-top__btn--01.vz-01 a.dh-01::after {
      content: "";
      position: absolute;
      width: 2.1rem;
      height: 3.1rem;
      -webkit-mask: url(assets/img/icon_micro.svg) center/100% no-repeat;
      mask: url(assets/img/icon_micro.svg) center/100% no-repeat;
      top: 50%;
      left: 4.3rem;
      transform: translateY(-50%);
      background: #223463; }
    .p-top__btn--01.vz-01 a.dh-01:hover::after {
      background: #fff; }
  .p-top__btn--01.vz-01 a.dh-02::after {
    content: "";
    position: absolute;
    width: 3rem;
    height: 3.3rem;
    -webkit-mask: url(assets/img/icon_tooth.svg) center/100% no-repeat;
    mask: url(assets/img/icon_tooth.svg) center/100% no-repeat;
    top: 50%;
    left: 3.3rem;
    transform: translateY(-50%);
    background: #142B6F; }
.p-top__btn--01.vz-02 a {
  width: 31.1rem;
  height: 8.9rem;
  padding-left: 10.5rem; }
  .p-top__btn--01.vz-02 a::after {
    content: "";
    position: absolute;
    width: 4.5rem;
    height: 3.8rem;
    -webkit-mask: url(assets/img/icon_children.svg) center/100% no-repeat;
    mask: url(assets/img/icon_children.svg) center/100% no-repeat;
    left: 4rem;
    background: #1A2C5B; }
  .p-top__btn--01.vz-02 a.dh-03 {
    padding-left: 12rem; }
    .p-top__btn--01.vz-02 a.dh-03::after {
      content: "";
      position: absolute;
      width: 5rem;
      height: 4.9rem;
      -webkit-mask: url(assets/img/icon_children02.svg) center/100% no-repeat;
      mask: url(assets/img/icon_children02.svg) center/100% no-repeat;
      background: #1A2C5B; }
  .p-top__btn--01.vz-02 a:hover::after {
    background: #fff; }
  .p-top__btn--01.vz-02 a:hover::before {
    right: 1.5rem; }

.p-top-btninsta {
  align-self: flex-end; }

.p-top--instagram__link {
  display: flex;
  align-items: center;
  gap: 5.6rem;
  align-self: flex-end;
  text-decoration: none;
  color: #1A2C5B;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif; }

.p-top--instagram__link::after {
  content: "→"; }

@keyframes slide-left {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
.p-top--greeting .p-title__01-title::before {
  color: #EDEBE8; }

.p-top--greeting {
  padding: 10.5rem 0 6.7rem;
  background: url(assets/img/bg_greeting.jpg) no-repeat center/cover; }
  .p-top--greeting__content .btn_group {
    gap: 2.5rem;
    margin-bottom: 3rem; }
  .p-top--greeting__title {
    color: #142B6F;
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 206%;
    letter-spacing: 0.476rem;
    font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
    position: relative;
    padding-bottom: 3.2rem; }
    @media screen and (max-width: 960px) {
      .p-top--greeting__title {
        font-size: 2.5rem;
        line-height: 150%;
        letter-spacing: 0; } }
    .p-top--greeting__title::before {
      content: "";
      position: absolute;
      width: 6.1rem;
      height: 2px;
      bottom: 0;
      left: 0;
      background: #BFA772; }
  .p-top--greeting__desc {
    color: #3F3F3F;
    font-size: var(--size-p);
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.2rem;
    padding-top: 3rem;
    padding-bottom: 4.6rem; }
    @media screen and (max-width: 960px) {
      .p-top--greeting__desc {
        font-size: 1.5rem;
        line-height: 185%;
        letter-spacing: 0; } }
  .p-top--greeting__img {
    gap: 2.5rem; }
    .p-top--greeting__img .img_01 {
      width: 38.6rem; }
      .p-top--greeting__img .img_01 img {
        width: 100%; }
    .p-top--greeting__img .img_02 {
      width: 38.8rem; }
      .p-top--greeting__img .img_02 img {
        width: 100%; }
  .p-top--greeting__left {
    width: calc(100% - 77.2rem + 17rem);
    margin-top: 3rem; }
    .p-top--greeting__left__tls {
      padding-right: 36rem; }
  .p-top--greeting__right {
    width: 77.2rem;
    margin-right: -17rem;
    position: relative; }
    .p-top--greeting__right .info {
      background: #fff;
      display: flex;
      justify-content: center;
      width: 38.8rem;
      height: 24.7rem;
      position: absolute;
      z-index: 0;
      bottom: 4.1rem;
      left: -4.1rem;
      padding-top: 4.7rem; }
      .p-top--greeting__right .info .info-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start; }
        .p-top--greeting__right .info .info-box .position {
          color: #0E193A;
          font-size: 1.6rem;
          font-weight: 400;
          line-height: 100%;
          letter-spacing: 0.2rem;
          font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
          padding-bottom: 2.1rem; }
        .p-top--greeting__right .info .info-box .name-ja {
          color: #0E193A;
          font-size: 3.8rem;
          font-weight: 400;
          line-height: 120%;
          letter-spacing: 0.15rem;
          font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
          position: relative;
          padding-bottom: 2.2rem; }
          .p-top--greeting__right .info .info-box .name-ja::before {
            content: "";
            position: absolute;
            width: 3.7rem;
            height: 3px;
            background: #C5A175;
            bottom: 0;
            left: 0; }
        .p-top--greeting__right .info .info-box .name-en {
          padding-top: 2.2rem;
          color: #C5A175;
          font-size: 1.8rem;
          font-weight: 400;
          line-height: 55%;
          letter-spacing: 0.2rem; }

.p-top--greeting .p-title__01 {
  margin-bottom: 2.5rem; }

.p-top--feature {
  position: relative;
  overflow: hidden; }
  .p-top--feature__inner {
    counter-reset: main-feature; }
  .p-top--feature__item {
    background: url(assets/img/bg_feature01.jpg) no-repeat center/cover;
    padding: 8rem 0 0; }
    .p-top--feature__item__hth {
      position: relative;
      left: -29rem;
      top: 4rem;
      z-index: 1; }
    .p-top--feature__item.gp-02 {
      background: url(assets/img/bg_feature02.jpg) no-repeat center/cover;
      padding-bottom: 10rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__container {
        max-width: 172rem;
        margin-left: auto;
        margin-right: auto; }
      .p-top--feature__item.gp-02 .p-top--feature__title {
        padding-bottom: 3rem; }
      .p-top--feature__item.gp-02 .p-top--feature__main {
        margin-left: 0; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left {
        width: calc(100% - 93.2rem);
        padding-left: 15.5rem; }
        .p-top--feature__item.gp-02 .p-top--feature__item__left .btn_group {
          gap: 2.2rem;
          display: flex;
          flex-direction: column;
          flex-wrap: wrap; }
      .p-top--feature__item.gp-02 .p-top--feature__item__right {
        width: 93.2rem;
        position: relative; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-list {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 1.2rem;
        list-style: none;
        margin: 0;
        padding: 0;
        z-index: 2; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 23.2rem;
        height: 23.2rem;
        padding: 4rem 4.2rem;
        border: 1px solid #d8ad42;
        border-radius: 50%;
        background: #fff;
        text-align: center; }
        .p-top--feature__item.gp-02 .p-top--feature__item__left-item.nv-01 {
          padding: 4rem 5.2rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-icon {
        display: block;
        width: 7.8rem;
        padding-bottom: 2.2rem;
        margin-left: 3.5rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-text {
        color: #142B6F;
        font-size: 2.2rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 9%; }
      .p-top--feature__item.gp-02 .p-top--feature__content__desc {
        padding-bottom: 4.8rem; }
    .p-top--feature__item.gp-03 {
      background: url(assets/img/bg_feature03.jpg) no-repeat center/cover;
      padding: 6rem 0 10rem; }
      .p-top--feature__item.gp-03 .p-top--feature__item__container {
        max-width: 156rem;
        margin-left: auto;
        margin-right: auto; }
      .p-top--feature__item.gp-03 .p-top--feature__item__left {
        width: calc(100% - 98.5rem);
        padding-left: 6rem; }
      .p-top--feature__item.gp-03 .p-top--feature__item__right {
        width: 98.5rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 7rem; }
        .p-top--feature__item.gp-03 .p-top--feature__item__right.vz-01 {
          display: none; }
      .p-top--feature__item.gp-03 .p-top--feature__equipment {
        text-align: center; }
        .p-top--feature__item.gp-03 .p-top--feature__equipment__icon {
          width: 14.2rem;
          height: 14.2rem;
          margin: 0 auto 1.2rem;
          border-radius: 50%;
          background-color: #fff;
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          display: flex;
          align-items: center;
          justify-content: center; }
          .p-top--feature__item.gp-03 .p-top--feature__equipment__icon img {
            width: 9.3rem;
            height: auto;
            display: block; }
        .p-top--feature__item.gp-03 .p-top--feature__equipment__title {
          color: #142B6F;
          font-size: 2.4rem;
          font-weight: 500;
          line-height: 150%;
          letter-spacing: 9%;
          padding-bottom: 2rem; }
        .p-top--feature__item.gp-03 .p-top--feature__equipment__image {
          width: 100%;
          border-radius: 1rem;
          overflow: hidden; }
          .p-top--feature__item.gp-03 .p-top--feature__equipment__image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover; }
      .p-top--feature__item.gp-03 .p-top--feature__main {
        margin-left: 0; }
      .p-top--feature__item.gp-03 .p-top--feature__content__desc {
        max-width: 42rem; }
      .p-top--feature__item.gp-03 .p-top--feature__title {
        padding-bottom: 4rem; }
      .p-top--feature__item.gp-03 .p-top--feature__content__desc {
        padding-bottom: 4.5rem; }
    .p-top--feature__item.gp-04 {
      background: url(assets/img/bg_feature04.jpg) no-repeat center/cover;
      padding: 10rem 0; }
      .p-top--feature__item.gp-04 .p-top--feature__item__box {
        max-width: 163.6rem;
        margin-left: auto;
        margin-right: auto;
        gap: 2.8rem; }
      .p-top--feature__item.gp-04 .p-top--feature__box__container {
        width: calc(100% - 80.4rem - 3rem); }
        .p-top--feature__item.gp-04 .p-top--feature__box__container:last-child {
          width: 80.4rem;
          padding-bottom: 1.2rem; }
      .p-top--feature__item.gp-04 .p-top--feature__item__box {
        max-width: 164rem;
        margin: 0 auto;
        display: flex;
        gap: 3rem; }
      .p-top--feature__item.gp-04 .p-top--feature__box__container {
        background: #fff;
        border-radius: 2rem;
        box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
        padding: 2.5rem 2.4rem 5rem 6.5rem;
        position: relative;
        display: flex;
        flex-wrap: wrap; }
      .p-top--feature__item.gp-04 .p-top--feature__item__left {
        width: calc(100% - 40.8rem + 11rem); }
      .p-top--feature__item.gp-04 .p-top--feature__item__right {
        width: 40.8rem;
        position: relative;
        margin-left: -11rem; }
        .p-top--feature__item.gp-04 .p-top--feature__item__right.dt-03 {
          display: none; }
        .p-top--feature__item.gp-04 .p-top--feature__item__right .img_01 img {
          border-radius: 1rem;
          width: 100%;
          object-fit: cover;
          display: block; }
      .p-top--feature__item.gp-04 .p-top--feature__main {
        margin-left: 0;
        margin-bottom: 2.5rem; }
      .p-top--feature__item.gp-04 .p-top--feature__label {
        flex-shrink: 0;
        margin-right: 3rem; }
      .p-top--feature__item.gp-04 .p-top--feature__title {
        padding-top: 3.8rem;
        padding-bottom: 1.5rem;
        -webkit-text-stroke: 6px #FFFFFF;
        paint-order: stroke fill; }
        .p-top--feature__item.gp-04 .p-top--feature__title.nv-03 {
          padding-bottom: 0;
          padding-top: 2rem; }
      .p-top--feature__item.gp-04 .p-top--feature__content__desc {
        padding-bottom: 0;
        -webkit-text-stroke: 6px #FFFFFF;
        paint-order: stroke fill; }
        .p-top--feature__item.gp-04 .p-top--feature__content__desc.nv-04 {
          padding-bottom: 2rem; }
      .p-top--feature__item.gp-04 .btn_group {
        gap: 3rem;
        margin: 0 auto;
        padding-top: 4rem; }
      .p-top--feature__item.gp-04 .p-top--feature__item__left-list {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 5.7rem;
        margin: 0 auto; }
        .p-top--feature__item.gp-04 .p-top--feature__item__left-list.vz-01 {
          position: absolute;
          right: -1rem;
          top: 2.5rem;
          list-style: none;
          padding: 0;
          margin: 0;
          z-index: 5; }
          .p-top--feature__item.gp-04 .p-top--feature__item__left-list.vz-01.tn-02 {
            display: none; }
      .p-top--feature__item.gp-04 .p-top--feature__item__left-item {
        width: 16.8rem;
        height: 16.8rem;
        border: 1px solid #0d236e;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center; }
        .p-top--feature__item.gp-04 .p-top--feature__item__left-item.nv-02 {
          border: 1px solid #B19C6B; }
        .p-top--feature__item.gp-04 .p-top--feature__item__left-item a {
          padding: 1.5rem 1.5rem 1.5rem 1rem;
          display: block; }
        .p-top--feature__item.gp-04 .p-top--feature__item__left-item.vz-01 a {
          padding-left: 2.5rem;
          padding-right: 2.5rem; }
        .p-top--feature__item.gp-04 .p-top--feature__item__left-item.vz-02 a {
          padding-left: 1.4rem; }
      .p-top--feature__item.gp-04 .p-top--feature__item__left-icon {
        display: block;
        width: 5.2rem;
        margin: 0 auto 1rem; }
        .p-top--feature__item.gp-04 .p-top--feature__item__left-icon.nv-03 {
          width: 6.3rem; }
      .p-top--feature__item.gp-04 .p-top--feature__item__left-text {
        color: #0D236E;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 9%; }
        @media screen and (max-width: 960px) {
          .p-top--feature__item.gp-04 .p-top--feature__item__left-text {
            font-size: 1.5rem;
            line-height: 185%;
            letter-spacing: 0; } }
      .p-top--feature__item.gp-04 .p-top--feature__content {
        position: relative;
        z-index: 1; }
  .p-top--feature__main {
    margin-left: 18.5rem;
    position: relative;
    z-index: 1;
    max-width: 52rem; }
  .p-top--feature__label {
    display: flex;
    align-items: center;
    text-align: center;
    color: #112271;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 167%;
    letter-spacing: 0.3rem;
    writing-mode: vertical-rl;
    position: relative;
    padding-top: 2rem;
    font-family: "Inter", sans-serif;
    margin-left: -3.8rem;
    counter-increment: main-feature; }
    .p-top--feature__label::after {
      content: counter(main-feature,decimal-leading-zero);
      color: #0D236E;
      font-size: 8rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0;
      position: absolute;
      top: 0;
      left: 4rem;
      writing-mode: horizontal-tb;
      font-family: "Inter", sans-serif; }
    .p-top--feature__label::before {
      content: "";
      position: absolute;
      width: 9rem;
      height: 0.2rem;
      background: url(assets/img/bg-before_title.png) no-repeat center/contain;
      bottom: 0;
      left: 9rem;
      transform: translateX(-50%);
      z-index: 0; }
      @media screen and (max-width: 960px) {
        .p-top--feature__label::before {
          font-size: 1.5rem; } }
  .p-top--feature__title {
    color: #0D236E;
    font-size: 4rem;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: 29%;
    padding-bottom: 9rem;
    padding-top: 3.2rem; }
    @media screen and (max-width: 960px) {
      .p-top--feature__title {
        font-size: 2.5rem;
        line-height: 150%;
        letter-spacing: 0; } }
  .p-top--feature__content {
    gap: 8rem; }
    .p-top--feature__content__desc {
      color: #555555;
      font-size: var(--size-p);
      font-weight: 400;
      line-height: 200%;
      letter-spacing: 0.2rem;
      align-content: end;
      padding-bottom: 8.7rem; }
  .p-top--feature__list-item {
    counter-increment: feature; }
  .p-top--feature__list {
    counter-reset: feature; }
  .p-top--feature__hex {
    position: absolute;
    align-items: center;
    justify-content: center;
    width: 32.6rem;
    height: 31.5rem;
    text-decoration: none;
    z-index: 2; }
    .p-top--feature__hex::after {
      content: counter(feature,decimal-leading-zero);
      position: absolute;
      top: 14rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      color: #0D236E;
      font-size: 3.2rem;
      font-weight: 400;
      line-height: 120%;
      font-family: "Inter", sans-serif; }
    .p-top--feature__hex::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url(assets/img/icon_feature.png) no-repeat center/contain;
      z-index: -1;
      pointer-events: none; }
    .p-top--feature__hex.vz-01 {
      top: 25rem;
      right: 61rem; }
    .p-top--feature__hex.vz-02 {
      top: 40rem;
      right: 34rem; }
    .p-top--feature__hex.vz-03 {
      bottom: -33rem;
      right: 43.5rem; }
    .p-top--feature__hex.vz-04 {
      bottom: -33rem;
      left: 80.5rem; }
    .p-top--feature__hex.vz-05 {
      top: 40rem;
      left: 71.5rem; }
  .p-top--feature__icon, .p-top--feature__item-text {
    position: relative;
    z-index: 1; }
  .p-top--feature__icon {
    display: block;
    width: 9.6rem;
    margin-top: 5rem;
    margin-left: auto;
    margin-right: auto; }
    .p-top--feature__icon img {
      display: block;
      width: 100%;
      height: auto; }
  .p-top--feature__item-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3C3F51;
    line-height: 145%;
    letter-spacing: .09em;
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    padding: 6rem 5.4rem 0rem 5.5rem; }
  .p-top--feature .feature_box {
    width: 100%;
    position: absolute;
    z-index: 0;
    height: 68rem;
    top: 2.4rem;
    right: 1.3rem; }
    .p-top--feature .feature_box .img_feauter {
      position: absolute;
      top: 27rem;
      right: 34rem; }
  .p-top--feature__img-01 {
    width: 93.9rem; }
  .p-top--feature__img-02 {
    position: absolute;
    top: 18rem;
    right: 0;
    width: 66.3rem; }
    .p-top--feature__img-02 img {
      border-bottom-left-radius: 15rem; }
  .p-top--feature__center {
    position: absolute;
    top: 64rem;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 0; }
    .p-top--feature__center__title {
      color: #3677C2;
      font-size: 1.8rem;
      font-weight: 400;
      line-height: 167%;
      letter-spacing: 0.3rem; }
    .p-top--feature__center__subtitle {
      color: #142B6F;
      font-size: 3rem;
      font-weight: 400;
      line-height: 150%;
      letter-spacing: 0;
      position: relative; }
      .p-top--feature__center__subtitle::before, .p-top--feature__center__subtitle::after {
        content: "";
        width: 2.3rem;
        height: 1px;
        background: #535251;
        position: absolute;
        top: 2.5rem; }
      .p-top--feature__center__subtitle::before {
        left: -4rem; }
      .p-top--feature__center__subtitle::after {
        right: -4rem; }

.img_feature {
  display: block; }
  .img_feature.dt-01 {
    display: none; }

.img_01 {
  display: block; }
  .img_01.dt-02 {
    display: none; }

.p-top--feature .p-title__01-title::before {
  color: #F1F3F8; }

@media (max-width: 1440px) and (min-width: 960.5px) {
  .p-top--recruit__img {
    width: 66rem; }

  .p-top--greeting__left {
    width: calc(100% - 72rem + 1.3rem);
    margin-top: 2rem; }
    .p-top--greeting__left__tls {
      padding-right: 10rem; }
  .p-top--greeting__right {
    width: 72rem;
    margin-right: -1.3rem; }
    .p-top--greeting__right .info {
      width: 34rem;
      height: 22rem;
      left: -3rem;
      bottom: 3rem;
      padding-top: 3.5rem; }
  .p-top--greeting__img {
    gap: 2rem; }
    .p-top--greeting__img .img_01 {
      width: 32rem; }
    .p-top--greeting__img .img_02 {
      width: 32rem; }
  .p-top--greeting__title {
    font-size: 3.2rem; }
  .p-top--greeting__desc {
    font-size: 1.6rem; }

  .p-top--greeting .p-top__btn--01.vz-01 a {
    width: 31.8rem;
    height: 8.9rem;
    font-size: 1.6rem; }

  .p-top__btn--01.vz-01 a.dh-01 {
    padding-left: 6rem; }
    .p-top__btn--01.vz-01 a.dh-01::after {
      left: 3.3rem; }

  .p-top--feature .p-title__01-title::before {
    font-size: 11rem; }
  .p-top--feature__item {
    padding-top: 7rem; }
    .p-top--feature__item__hth {
      top: 2rem; }
    .p-top--feature__item.gp-02 {
      padding-bottom: 8rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__container {
        max-width: 135rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left {
        width: calc(100% - 85rem);
        padding-left: 0; }
      .p-top--feature__item.gp-02 .p-top--feature__item__right {
        width: 85rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-item {
        width: 18rem;
        height: 18rem;
        padding: 3rem 2.5rem; }
        .p-top--feature__item.gp-02 .p-top--feature__item__left-item.nv-01 {
          padding: 3rem 3.2rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-icon {
        width: 6rem;
        padding-bottom: 1.5rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-text {
        font-size: 1.7rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-list {
        bottom: 2.2rem; }
    .p-top--feature__item.gp-03 {
      padding: 6rem 0 8rem; }
      .p-top--feature__item.gp-03 .p-top--feature__item__container {
        max-width: 128rem;
        padding: 0 4rem; }
      .p-top--feature__item.gp-03 .p-top--feature__item__left {
        width: calc(100% - 66rem);
        padding-left: 0; }
      .p-top--feature__item.gp-03 .p-top--feature__item__right {
        width: 66rem;
        gap: 1rem;
        margin-top: 6rem; }
      .p-top--feature__item.gp-03 .p-top--feature__equipment__icon {
        width: 9.4rem;
        height: 9.4rem; }
        .p-top--feature__item.gp-03 .p-top--feature__equipment__icon img {
          width: 6.2rem; }
      .p-top--feature__item.gp-03 .p-top--feature__equipment__title {
        font-size: 1.8rem;
        padding-bottom: 1.4rem; }
    .p-top--feature__item.gp-04 {
      padding: 8rem 0; }
      .p-top--feature__item.gp-04 .p-top--feature__item__box {
        max-width: 136rem;
        gap: 2rem; }
      .p-top--feature__item.gp-04 .p-top--feature__box__container {
        width: calc((100% - 2rem) / 2);
        padding: 2.5rem 2rem 2rem 5rem; }
        .p-top--feature__item.gp-04 .p-top--feature__box__container:last-child {
          width: calc((100% - 2rem) / 2); }
      .p-top--feature__item.gp-04 .p-top--feature__item__left {
        width: calc(100% - 30rem + 7rem); }
      .p-top--feature__item.gp-04 .p-top--feature__item__right {
        width: 30rem;
        margin-left: -7rem; }
      .p-top--feature__item.gp-04 .btn_group {
        gap: 1.5rem; }
  .p-top--feature__main {
    margin-left: 8rem; }
  .p-top--feature__title {
    font-size: 3.4rem;
    letter-spacing: .18rem;
    padding-bottom: 5rem; }
  .p-top--feature__content {
    gap: 4rem; }
    .p-top--feature__content__desc {
      font-size: 1.6rem;
      line-height: 190%; }
      .p-top--feature__content__desc br {
        display: none; }
  .p-top--feature__img-01 {
    width: 70rem; }
  .p-top--feature__img-02 {
    width: 48rem;
    top: 13rem; }
  .p-top--feature__hex {
    width: 24rem;
    height: 23.2rem; }
    .p-top--feature__hex::after {
      top: 10.2rem;
      font-size: 2.5rem; }
    .p-top--feature__hex.vz-01 {
      top: 23rem;
      right: 47rem; }
    .p-top--feature__hex.vz-02 {
      top: 34rem;
      right: 26rem; }
    .p-top--feature__hex.vz-03 {
      bottom: -25rem;
      right: 30rem; }
    .p-top--feature__hex.vz-04 {
      bottom: -25rem;
      left: 63rem; }
    .p-top--feature__hex.vz-05 {
      top: 35rem;
      left: 53rem; }
  .p-top--feature__icon {
    width: 7rem;
    margin-top: 3.8rem; }
  .p-top--feature__item-text {
    font-size: 1.5rem;
    padding: 4.5rem 4rem 0; }
  .p-top--feature .feature_box {
    height: 56rem; }
  .p-top--feature__center {
    top: 53rem; }

  .p-top__btn--01.vz-02 a {
    width: 29rem; }

  .p-top--feature__item.gp-04 .p-top--feature__item__left-list {
    gap: 4.7rem; } }
@media (max-width: 960px) {
  .p-top--recruit__insta img {
    width: 100%; }

  .p-top--recruit__img {
    width: 100%; }

  .p-top--recruit .p-title__01 {
    margin-bottom: 3rem; }

  .p-top--recruit {
    padding: 3rem 0;
    background: #FEFEFE; }
    .p-top--recruit__left {
      width: 100%; }
      .p-top--recruit__left::before {
        display: none; }
    .p-top--recruit__right {
      width: 100%; }

  .p-top__btn--01.vz-01 a {
    width: 28.8rem;
    height: 5.9rem;
    margin-left: auto;
    margin-right: auto; }

  .p-top--recruit__left .p-top__btn--01 {
    padding-bottom: 3rem; }

  .p-top--greeting .p-title__01-title::before {
    width: auto; }

  .p-top--greeting {
    padding: 3rem 0 1rem; }
    .p-top--greeting__content {
      display: contents; }
      .p-top--greeting__content .btn_group {
        gap: 1.5rem;
        margin-bottom: 3rem;
        justify-content: center;
        order: 6;
        width: 100%; }
    .p-top--greeting__title {
      order: 3;
      padding-top: 7rem;
      padding-bottom: 2rem; }
    .p-top--greeting__desc {
      order: 5;
      padding-bottom: 3rem; }
    .p-top--greeting__img {
      gap: 1.5rem;
      order: 4;
      padding-top: 3rem;
      margin: 0 auto; }
      .p-top--greeting__img .img_01,
      .p-top--greeting__img .img_02 {
        width: 30rem; }
    .p-top--greeting__left {
      width: 100%;
      margin-top: 3rem;
      display: contents; }
      .p-top--greeting__left__tls {
        padding-right: 0;
        margin-left: auto;
        margin-right: auto; }
    .p-top--greeting__right {
      width: 100%;
      margin-right: 0; }
      .p-top--greeting__right .info {
        width: 24.8rem;
        height: 15.7rem;
        bottom: -5rem;
        left: 0rem;
        padding-top: 1.7rem; }
        .p-top--greeting__right .info .info-box .position {
          padding-bottom: 1rem; }
        .p-top--greeting__right .info .info-box .name-ja {
          font-size: 3rem;
          padding-bottom: 2.2rem; }
        .p-top--greeting__right .info .info-box .name-en {
          padding-top: 2rem;
          color: #C5A175;
          font-size: 1.4rem;
          font-weight: 400;
          line-height: 120%;
          letter-spacing: 0.2rem; }

  .p-top__btn--01.vz-01 a {
    width: 33.8rem; }

  .p-top--feature__img-02 {
    width: 100%;
    top: 20rem; }
    .p-top--feature__img-02 img {
      border-radius: 1rem; }

  .p-top--feature__label {
    writing-mode: horizontal-tb; }

  .p-top--feature__main {
    margin-left: 0; }

  .p-top--feature__item__hth {
    left: 0;
    top: 0; }

  .p-top--feature__item {
    padding: 3rem 0 5rem; }
    .p-top--feature__item__hth {
      position: relative;
      left: 0;
      top: 0;
      padding: 0 2rem;
      margin-bottom: 3rem; }
    .p-top--feature__item.gp-02, .p-top--feature__item.gp-03, .p-top--feature__item.gp-04 {
      padding: 5rem 0; }
      .p-top--feature__item.gp-02 .p-top--feature__item__container,
      .p-top--feature__item.gp-02 .p-top--feature__item__box, .p-top--feature__item.gp-03 .p-top--feature__item__container,
      .p-top--feature__item.gp-03 .p-top--feature__item__box, .p-top--feature__item.gp-04 .p-top--feature__item__container,
      .p-top--feature__item.gp-04 .p-top--feature__item__box {
        display: block;
        padding: 0 1.5rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left,
      .p-top--feature__item.gp-02 .p-top--feature__item__right, .p-top--feature__item.gp-03 .p-top--feature__item__left,
      .p-top--feature__item.gp-03 .p-top--feature__item__right, .p-top--feature__item.gp-04 .p-top--feature__item__left,
      .p-top--feature__item.gp-04 .p-top--feature__item__right {
        width: 100%;
        padding-left: 0;
        margin-left: 0; }
    .p-top--feature__item.gp-02 .p-top--feature__item__right {
      margin-top: 3rem; }
    .p-top--feature__item.gp-02 .p-top--feature__item__left .btn_group {
      flex-direction: row;
      gap: 1.5rem;
      justify-content: center; }
    .p-top--feature__item.gp-02 .p-top--feature__item__left-list {
      position: static;
      transform: none;
      display: flex;
      gap: 1.5rem;
      margin-top: 2rem; }
    .p-top--feature__item.gp-02 .p-top--feature__item__left-item {
      width: 15rem;
      height: auto;
      min-height: 15rem;
      padding: 2rem 1.5rem; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-item p {
        text-align: center; }
      .p-top--feature__item.gp-02 .p-top--feature__item__left-item.nv-01 {
        padding: 2rem 1.5rem; }
    .p-top--feature__item.gp-02 .p-top--feature__item__left-icon {
      width: 4.8rem;
      padding-bottom: 1rem;
      margin: 0 auto; }
    .p-top--feature__item.gp-02 .p-top--feature__item__left-text {
      font-size: 1.5rem; }
    .p-top--feature__item.gp-02 .p-top--feature__main,
    .p-top--feature__item.gp-02 .p-top--feature__content {
      padding: 0; }
    .p-top--feature__item.gp-03 .p-top--feature__item__right {
      display: none; }
      .p-top--feature__item.gp-03 .p-top--feature__item__right.vz-01 {
        display: block;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 0;
        padding-bottom: 3rem; }
        .p-top--feature__item.gp-03 .p-top--feature__item__right.vz-01 .p-top--feature__equipment:last-child {
          grid-column: 1 / -1;
          justify-self: center;
          width: calc((100% - 1rem) / 2); }
    .p-top--feature__item.gp-03 .p-top--feature__equipment__icon {
      width: 12rem;
      height: 12rem;
      margin-bottom: 1rem; }
      .p-top--feature__item.gp-03 .p-top--feature__equipment__icon img {
        width: 7.8rem; }
    .p-top--feature__item.gp-03 .p-top--feature__equipment__title {
      font-size: 1.5rem;
      padding-bottom: 1rem;
      text-align: center; }
    .p-top--feature__item.gp-03 .p-top--feature__content__desc {
      max-width: 100%;
      padding-bottom: 3rem; }
    .p-top--feature__item.gp-03 .p-top--feature__title {
      padding-bottom: 3rem; }
    .p-top--feature__item.gp-03 .p-top--feature__main,
    .p-top--feature__item.gp-03 .p-top--feature__content {
      padding: 0; }
    .p-top--feature__item.gp-04 .p-top--feature__item__box {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem; }
    .p-top--feature__item.gp-04 .p-top--feature__box__container,
    .p-top--feature__item.gp-04 .p-top--feature__box__container:last-child {
      width: 100%;
      padding: 2.5rem 2rem; }
    .p-top--feature__item.gp-04 .p-top--feature__item__right .img_01.dt-04 {
      display: none; }
    .p-top--feature__item.gp-04 .p-top--feature__item__right.dt-03 {
      display: block;
      padding-bottom: 3rem; }
    .p-top--feature__item.gp-04 .p-top--feature__item__right .p-top--feature__item__left-list.vz-01 {
      display: none; }
      .p-top--feature__item.gp-04 .p-top--feature__item__right .p-top--feature__item__left-list.vz-01.tn-02 {
        display: block;
        top: auto;
        bottom: 4rem;
        right: 1rem; }
    .p-top--feature__item.gp-04 .p-top--feature__item__left-list {
      position: static;
      gap: 1.5rem;
      padding: 0;
      margin-top: 0;
      justify-content: center; }
    .p-top--feature__item.gp-04 .p-top--feature__item__left-item {
      width: 14rem;
      height: auto;
      min-height: 13rem; }
    .p-top--feature__item.gp-04 .btn_group {
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 0;
      justify-content: center; }
    .p-top--feature__item.gp-04 .p-top--feature__main,
    .p-top--feature__item.gp-04 .p-top--feature__content {
      padding: 0; }
    .p-top--feature__item.gp-04 .p-top--feature__item__left-icon {
      width: 4.2rem; }
  .p-top--feature__main {
    margin-left: 0;
    padding: 0 1.5rem;
    max-width: 100%; }
  .p-top--feature__label {
    writing-mode: horizontal-tb;
    margin-left: 0;
    padding-top: 0;
    padding-left: 6rem; }
    .p-top--feature__label.dt-04 {
      padding-left: 7rem; }
    .p-top--feature__label::after {
      top: -2.2rem;
      left: 0;
      font-size: 5rem; }
    .p-top--feature__label::before {
      left: 5rem;
      bottom: -1.5rem; }
  .p-top--feature__title {
    font-size: 2.5rem;
    line-height: 150%;
    letter-spacing: 0;
    padding-top: 2.5rem;
    padding-bottom: 3rem; }
  .p-top--feature__content {
    display: block;
    padding: 0 1.5rem; }
    .p-top--feature__content__desc {
      font-size: 1.5rem;
      line-height: 185%;
      padding-bottom: 3rem !important; }
      .p-top--feature__content__desc br {
        display: none; }
  .p-top--feature__img-01 {
    width: 100%;
    margin-bottom: 2rem; }
    .p-top--feature__img-01 img {
      width: 100%; }
  .p-top--feature__img-02 {
    position: static;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 3rem;
    display: none; }
    .p-top--feature__img-02 img {
      width: 100%;
      border-radius: 1rem; }
  .p-top--feature .feature_box {
    position: static;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column; }
  .p-top--feature__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    order: 2; }
  .p-top--feature__hex {
    position: relative;
    inset: auto !important;
    width: 100%;
    aspect-ratio: 390 / 296;
    height: auto;
    display: block; }
    .p-top--feature__hex::after {
      top: 37%; }
  .p-top--feature__icon {
    width: 8rem;
    padding-top: 3rem; }
  .p-top--feature__item-text {
    font-size: 1.5rem;
    padding: 7rem 8rem 0; }
  .p-top--feature__center {
    position: static;
    transform: none;
    text-align: center;
    margin-top: 0;
    order: 1; }
    .p-top--feature__center p {
      text-align: center; }
    .p-top--feature__center__title {
      text-align: center; }

  .p-top__btn--01.vz-01.ls-01 a {
    width: 29.6rem;
    padding-left: 10rem; }

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

  .p-top__btn--01.vz-02 a {
    height: 5.9rem; }

  .img_feature {
    display: none; }
    .img_feature.dt-01 {
      display: block;
      padding-bottom: 2rem; }

  .img_01.dt-02 {
    display: none; } }
@media (max-width: 767px) {
  .p-top--greeting__img .img_01,
  .p-top--greeting__img .img_02 {
    width: 16rem; }

  .p-top--feature__item-text {
    font-size: 1.5rem;
    padding: 2.5rem 2rem 0;
    font-size: 1.2rem; }

  .p-top--feature__hex::after {
    top: 37%;
    font-size: 2rem; }

  .p-top--feature__hex {
    width: 17rem;
    aspect-ratio: 413 / 366; }

  .p-top--feature__list-item {
    width: calc((100% - 19rem) / 3); }

  .p-top--feature__icon {
    width: 6rem;
    padding-top: 1rem; }

  .p-top--feature__item.gp-03 .p-top--feature__equipment__icon {
    width: 7rem;
    height: 7rem; }
    .p-top--feature__item.gp-03 .p-top--feature__equipment__icon img {
      width: 4.8rem; }

  .p-top--feature__item.gp-03 .p-top--feature__item__right.vz-01 {
    display: block;
    margin-top: 0;
    padding-bottom: 3rem; }
    .p-top--feature__item.gp-03 .p-top--feature__item__right.vz-01 .p-top--feature__equipment {
      width: 100%; }
  .p-top--feature__item.gp-03 .p-top--feature__content__desc {
    padding-top: 0; }
  .p-top--feature__item.gp-03 .p-top--feature__equipment__icon {
    width: 12rem;
    height: 12rem;
    margin: 0 auto 1rem; }
    .p-top--feature__item.gp-03 .p-top--feature__equipment__icon img {
      width: 7.8rem; }
  .p-top--feature__item.gp-03 .p-top--feature__equipment__title {
    font-size: 1.5rem;
    padding-bottom: 1rem;
    text-align: center; }

  .js-feature-slider .slick-arrow {
    position: absolute;
    bottom: -3rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid #333;
    background: #fff;
    z-index: 10;
    font-size: 0;
    cursor: pointer;
    display: none !important; }
    .js-feature-slider .slick-arrow::before {
      content: "";
      position: absolute;
      width: 0.8rem;
      height: 0.8rem;
      border-top: 1px solid #333;
      border-right: 1px solid #333;
      top: 50%;
      left: 50%; }
  .js-feature-slider .slick-prev {
    left: calc(50% - 7rem); }
    .js-feature-slider .slick-prev::before {
      transform: translate(-40%, -50%) rotate(-135deg); }
  .js-feature-slider .slick-next {
    right: calc(50% - 7rem); }
    .js-feature-slider .slick-next::before {
      transform: translate(-60%, -50%) rotate(45deg); }
  .js-feature-slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0;
    list-style: none; }
    .js-feature-slider .slick-dots li {
      width: auto;
      height: auto;
      margin: 0; }
      .js-feature-slider .slick-dots li button {
        width: 1rem;
        height: 1rem;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: #ccc;
        font-size: 0;
        line-height: 0; }
      .js-feature-slider .slick-dots li.slick-active button {
        background: #333; } }
@media (max-width: 717px) {
  .p-top--feature__list-item {
    width: calc((100% - 2rem) / 2);
    margin-top: -2rem; } }
.table-form {
  margin-bottom: 4rem; }
  .table-form dl {
    display: flex; }
  .table-form dt,
  .table-form dd {
    color: #4f545a;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 175%;
    letter-spacing: 0;
    padding: 1rem;
    min-height: 7rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .table-form dt .required,
    .table-form dd .required {
      background: #c70000;
      color: #fff;
      font-size: 1.2rem;
      padding: .5rem;
      border-radius: 0.5rem;
      margin-left: 1rem; }
    .table-form dt .wpcf7-list-item input,
    .table-form dd .wpcf7-list-item input {
      width: 1.6rem;
      height: 1.6rem;
      position: relative;
      top: 0; }
    .table-form dt .wpcf7-list-item.first,
    .table-form dd .wpcf7-list-item.first {
      margin: 0; }
    .table-form dt .examp p,
    .table-form dd .examp p {
      font-size: 1.4rem;
      color: #777; }
  .table-form dt {
    width: 36rem;
    padding-left: 2rem;
    align-items: center;
    justify-content: space-between;
    padding-right: 1.5rem; }
    .table-form dt .required {
      padding: .5rem 1rem; }
    .table-form dt p {
      color: #000; }
  .table-form dd {
    width: calc(100% - 36rem); }
  .table-form label {
    display: flex;
    align-items: flex-start;
    cursor: pointer; }
    .table-form label input {
      margin-top: 0;
      top: 50%;
      transform: translateY(86%); }
  .table-form .wpcf7-radio .wpcf7-list-item-label {
    color: #000;
    position: relative;
    padding-left: 2rem; }
    .table-form .wpcf7-radio .wpcf7-list-item-label::before {
      content: "";
      position: absolute;
      width: 1.6rem;
      height: 1.6rem;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      background: #fff;
      border: #333333 solid 1px;
      border-radius: 100%;
      transition: all 0.35s; }
    .table-form .wpcf7-radio .wpcf7-list-item-label::after {
      content: "";
      position: absolute;
      width: 1rem;
      height: 1rem;
      top: 50%;
      left: .3rem;
      transform: translateY(-50%);
      background: #192a55;
      border-radius: 100%;
      opacity: 0;
      transition: all 0.35s; }
  .table-form .wpcf7-radio label {
    position: relative; }
    .table-form .wpcf7-radio label input {
      position: absolute;
      top: 50%;
      left: 0;
      margin-left: 0;
      transform: translateY(-50%);
      opacity: 0; }
      .table-form .wpcf7-radio label input:checked ~ .wpcf7-list-item-label::before {
        border-color: #192a55; }
      .table-form .wpcf7-radio label input:checked ~ .wpcf7-list-item-label::after {
        opacity: 1; }
  .table-form .list-check .wpcf7-form-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem; }
    @media screen and (max-width: 767px) {
      .table-form .list-check .wpcf7-form-control {
        grid-template-columns: 1fr; } }
    .table-form .list-check .wpcf7-form-control .wpcf7-list-item {
      margin: 0; }
  .table-form .list-check .wpcf7-list-item-label {
    white-space: pre-line; }
  @media (min-width: 767.5px) {
    .table-form dl:nth-child(odd) dt,
    .table-form dl:nth-child(odd) dd {
      background: rgba(25, 42, 85, 0.2); } }

.form-input {
  width: 100%; }
  .form-input input,
  .form-input textarea {
    font-size: 1.6rem;
    width: 100%;
    height: 5rem;
    padding: 1rem;
    border: #ccc solid 1px;
    line-height: 175%; }
    .form-input input:focus-visible,
    .form-input textarea:focus-visible {
      outline: none; }
  .form-input textarea {
    height: 16rem;
    vertical-align: top;
    resize: none; }
  .form-input-item {
    position: relative;
    padding-right: 4rem; }
    .form-input-item input {
      width: 8rem;
      text-align: center; }
  .form-input .value {
    position: absolute;
    top: .7rem;
    left: 9rem;
    color: #000; }

.form_recruit .checked {
  margin-bottom: 4rem;
  display: flex;
  justify-content: center; }
  .form_recruit .checked label {
    cursor: pointer; }
  .form_recruit .checked .wpcf7-not-valid-tip {
    text-align: center; }
.form_recruit .txt_desc {
  margin-bottom: 4rem; }
.form_recruit .wpcf7-spinner {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem; }

.wpcf7 form.invalid .wpcf7-response-output {
  text-align: center; }

.wpcf7 form.sent .wpcf7-response-output {
  text-align: center; }

.btn-default-01 .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.1rem 3rem;
  width: 35.72rem;
  border-radius: 9.9rem;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 183%;
  letter-spacing: 0;
  position: relative;
  z-index: 0;
  transition: all ease 0.35s;
  background: #192a55;
  cursor: pointer;
  border: 0; }
  .btn-default-01 .btn:hover {
    background: #fff;
    color: #000;
    border: 1px solid #192a55;
    opacity: 1; }

@media (max-width: 960px) {
  .table-form dt,
  .table-form dd,
  .table-form p {
    font-size: 1.5rem; }
  .table-form dt {
    width: 26rem;
    padding-left: 1rem;
    min-height: 6rem; }
  .table-form dd {
    width: calc(100% - 26rem); }

  .form-input input {
    font-size: 1.5rem;
    height: 4.5rem; }
  .form-input textarea {
    height: 14rem; }

  .btn-default-01 .btn {
    width: 28rem; }

  .c-recruit__list--01 li a {
    width: 35rem;
    font-size: 2rem; }

  .table-form dt .wpcf7-list-item input,
  .table-form dd .wpcf7-list-item input {
    top: -.8rem; } }
@media (max-width: 767px) {
  .table-form {
    margin-bottom: 2rem; }
    .table-form dl {
      flex-wrap: wrap; }
    .table-form dt,
    .table-form dd {
      float: left;
      width: 100%;
      border: 0;
      padding: 1rem 0;
      height: auto; }
    .table-form dt {
      padding: 0 1rem;
      width: 100%;
      background: rgba(25, 42, 85, 0.2); }

  .form-input-item input {
    width: 7rem; }
  .form-input .value {
    left: 8.3rem; }

  .form_recruit {
    margin-bottom: -4rem; }
    .form_recruit .wpcf7-list-item {
      text-align: center;
      margin: 0 1rem 0 0 !important; }
    .form_recruit .checked {
      margin-bottom: 2.5rem; } }
.form-note {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: center; }

.p-medical {
  padding-top: 11.5rem;
  padding-bottom: 10.3rem;
  background: url(assets/img/medical-bg01.jpg) no-repeat center top;
  background-size: cover; }
  .p-medical__list--01 {
    gap: 1rem;
    max-width: 114.5rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.6rem; }
    .p-medical__list--01 li {
      width: calc((100% - 1.001rem) / 2); }
      .p-medical__list--01 li a {
        border: #142A6E solid 1px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 7rem;
        color: #142B6F;
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.08rem;
        position: relative;
        transition: all 0.35s;
        background: #fff; }
        .p-medical__list--01 li a::before {
          content: "";
          position: relative;
          width: 3rem;
          height: 3.3rem;
          margin-right: 1.8rem;
          background: url(assets/img/medical-icon01.svg) no-repeat center;
          background-size: contain;
          -webkit-mask: url(assets/img/medical-icon01.svg) center/100% no-repeat;
          mask: url(assets/img/medical-icon01.svg) center/100% no-repeat;
          background: #142A6E;
          transition: all 0.35s; }
        .p-medical__list--01 li a::after {
          content: "";
          position: absolute;
          width: 1.9rem;
          height: 1.4rem;
          bottom: -1.4rem;
          left: 50%;
          background: #142A6E;
          transform: translateX(-50%);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
          opacity: 0;
          transition: all 0.35s; }
        .p-medical__list--01 li a:hover, .p-medical__list--01 li a.active {
          background: #142A6E;
          color: #fff; }
          .p-medical__list--01 li a:hover::before, .p-medical__list--01 li a.active::before {
            background: #fff; }
          .p-medical__list--01 li a:hover::after, .p-medical__list--01 li a.active::after {
            opacity: 1; }
      .p-medical__list--01 li:nth-child(2) a::before {
        width: 3.1rem;
        -webkit-mask: url(assets/img/medical-icon02.svg) center/100% no-repeat;
        mask: url(assets/img/medical-icon02.svg) center/100% no-repeat; }
  .p-medical__list--02 {
    gap: 1rem; }
    .p-medical__list--02 li {
      width: calc((100% - 5.001rem) / 6);
      box-shadow: 0 0 1.5rem rgba(169, 169, 169, 0.1); }
      .p-medical__list--02 li a {
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        height: 20.2rem;
        padding-top: 4.8rem;
        border-radius: 1rem;
        color: #1A2C5B;
        font-size: var(--size-p);
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.2rem;
        position: relative;
        z-index: 0; }
        .p-medical__list--02 li a::before {
          content: "";
          position: absolute;
          width: 8.5rem;
          height: 7.7rem;
          background: url(assets/img/medical-icon03.png) no-repeat center;
          background-size: contain;
          left: 50%;
          top: 3.3rem;
          z-index: -1;
          transform: translateX(-50%); }
        .p-medical__list--02 li a::after {
          content: "";
          position: absolute;
          width: 2.5rem;
          height: 1rem;
          background: url(assets/img/arrow-right03.png) no-repeat center;
          background-size: contain;
          bottom: 1.8rem;
          left: 50%;
          transform: translateX(-50%); }
        .p-medical__list--02 li a.vz-02::before {
          background-image: url(assets/img/medical-icon04.png); }
        .p-medical__list--02 li a.vz-03::before {
          background-image: url(assets/img/medical-icon05.png); }
        .p-medical__list--02 li a.vz-04::before {
          background-image: url(assets/img/medical-icon06.png); }
        .p-medical__list--02 li a.vz-05::before {
          background-image: url(assets/img/medical-icon07.png); }
        .p-medical__list--02 li a.vz-06::before {
          background-image: url(assets/img/medical-icon08.png); }
        .p-medical__list--02 li a.vz-07::before {
          background-image: url(assets/img/medical-icon09.png); }
        .p-medical__list--02 li a.vz-08::before {
          background-image: url(assets/img/medical-icon10.png); }
        .p-medical__list--02 li a.vz-09::before {
          background-image: url(assets/img/medical-icon11.png); }
        .p-medical__list--02 li a.vz-10::before {
          background-image: url(assets/img/medical-icon12.png); }
        .p-medical__list--02 li a.vz-11::before {
          background-image: url(assets/img/medical-icon13.png); }
        .p-medical__list--02 li a.vz-12::before {
          background-image: url(assets/img/medical-icon14.png); }
        .p-medical__list--02 li a .desc {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #FFF;
          display: flex;
          border-radius: 1rem;
          align-items: center;
          justify-content: center;
          padding: .5rem;
          opacity: 0;
          transition: all 0.35s; }
        .p-medical__list--02 li a:hover .desc {
          opacity: 1; }
    .p-medical__list--02.vz-02 li a {
      padding-top: 0;
      border: #fff solid 0.4rem; }
      .p-medical__list--02.vz-02 li a::before {
        width: 100%;
        height: 100%;
        top: 0;
        opacity: 0.8; }
      .p-medical__list--02.vz-02 li a.vz-13::before {
        background-image: url(assets/img/medical-icon17.jpg); }
      .p-medical__list--02.vz-02 li a.vz-14::before {
        background-image: url(assets/img/medical-icon18.jpg); }
      .p-medical__list--02.vz-02 li a.vz-15::before {
        background-image: url(assets/img/medical-icon19.jpg); }
      .p-medical__list--02.vz-02 li a.vz-16::before {
        background-image: url(assets/img/medical-icon20.jpg); }
      .p-medical__list--02.vz-02 li a.vz-17::before {
        background-image: url(assets/img/medical-icon21.jpg); }
      .p-medical__list--02.vz-02 li a.vz-18::before {
        background-image: url(assets/img/medical-icon22.jpg); }
      .p-medical__list--02.vz-02 li a.vz-19::before {
        background-image: url(assets/img/medical-icon23.jpg); }
      .p-medical__list--02.vz-02 li a.vz-20::before {
        background-image: url(assets/img/medical-icon24.jpg); }
      .p-medical__list--02.vz-02 li a.vz-21::before {
        background-image: url(assets/img/medical-icon25.jpg); }
      .p-medical__list--02.vz-02 li a.vz-22::before {
        background-image: url(assets/img/medical-icon26.jpg); }
      .p-medical__list--02.vz-02 li a.vz-23::before {
        background-image: url(assets/img/medical-icon27.jpg); }
      .p-medical__list--02.vz-02 li a.vz-24::before {
        background-image: url(assets/img/medical-icon28.jpg); }
  .p-medical__list--03 {
    gap: 2rem;
    max-width: 146.4rem;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (max-width: 960px) {
      .p-medical__list--03 {
        max-width: 100%; } }
    .p-medical__list--03 li {
      width: calc((100% - 2.001rem) / 2);
      position: relative;
      z-index: 0;
      background: #142B6F;
      transition: all 0.35s; }
      .p-medical__list--03 li::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0.3;
        background: url(assets/img/medical-bg02.jpg) no-repeat center;
        background-size: cover;
        mix-blend-mode: screen; }
      .p-medical__list--03 li a {
        display: flex;
        flex-flow: column;
        position: relative;
        z-index: 0;
        height: 12rem;
        justify-content: center;
        padding-left: 17.5rem; }
        .p-medical__list--03 li a::before {
          content: "";
          position: absolute;
          width: 4.6rem;
          height: 5.9rem;
          top: 50%;
          left: 8.5rem;
          transform: translateY(-50%);
          background: url(assets/img/medical-icon15.png) no-repeat center;
          background-size: contain; }
        .p-medical__list--03 li a::after {
          content: "";
          position: absolute;
          width: 3.2rem;
          height: 0.9rem;
          top: 50%;
          right: 3.5rem;
          transform: translateY(-50%);
          -webkit-mask: url(assets/img/arrow-right01.svg) center/100% no-repeat;
          mask: url(assets/img/arrow-right01.svg) center/100% no-repeat;
          background: #fff;
          transition: all 0.35s; }
        .p-medical__list--03 li a .item {
          color: #fff;
          font-size: 2.8rem;
          font-weight: 400;
          line-height: 150%;
          letter-spacing: 0.252rem;
          font-family: "Noto Sans JP", sans-serif; }
          .p-medical__list--03 li a .item:first-child {
            font-size: 1.6rem;
            letter-spacing: .145rem; }
      .p-medical__list--03 li.vz-02 {
        background: #A9905E; }
        .p-medical__list--03 li.vz-02::before {
          opacity: 0.2;
          background-image: url(assets/img/medical-bg03.jpg); }
        .p-medical__list--03 li.vz-02 a::before {
          background-image: url(assets/img/medical-icon16.png); }
      .p-medical__list--03 li:hover {
        background: #A9905E; }
        .p-medical__list--03 li:hover.vz-02 {
          background: #142B6F; }
  .p-medical__inner {
    padding-bottom: 3.5rem; }
  .p-medical__gp--item {
    display: none; }
    .p-medical__gp--item.active {
      display: block; }
  @media screen and (max-width: 960px) {
    .p-medical {
      padding: 6rem 0; }
      .p-medical__list--01 li a {
        font-size: 1.5rem;
        letter-spacing: 0; }
        .p-medical__list--01 li a::before {
          margin-right: 1rem;
          width: 2rem; }
      .p-medical__list--01 li:nth-child(2) a::before {
        width: 2.1rem; }
      .p-medical__list--02 li {
        width: calc((100% - 2.001rem) / 3); }
        .p-medical__list--02 li a {
          font-size: 1.5rem;
          padding-top: 2.5rem;
          height: 14.2rem; }
          .p-medical__list--02 li a .desc {
            font-size: 1.4rem; }
          .p-medical__list--02 li a:hover::after {
            opacity: 0; }
          .p-medical__list--02 li a::before {
            width: 6.5rem;
            height: 5.7rem;
            top: 1.2rem; }
      .p-medical__list--02.vz-02 li a {
        background: none; }
      .p-medical__list--03 li a {
        padding-left: 7rem;
        height: 10rem; }
        .p-medical__list--03 li a::before {
          left: 2rem;
          width: 3.6rem; }
        .p-medical__list--03 li a::after {
          right: 1rem; }
        .p-medical__list--03 li a .item {
          font-size: 1.6rem; }
          .p-medical__list--03 li a .item:first-child {
            font-size: 1.5rem; } }
  @media screen and (max-width: 767px) {
    .p-medical__list--02 li {
      width: calc((100% - 1.001rem) / 2); }
    .p-medical__list--03 {
      gap: 1rem; }
      .p-medical__list--03 li {
        width: 100%; } }

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