@charset "UTF-8";
/*========================================================
  Break point
========================================================*/
/*========================================================
  Font
========================================================*/
/*Solid/900*/
/*Brand/400*/
/*========================================================
  color
========================================================*/
/*========================================================
  root変数
========================================================*/
:root {
  --padding: 80px;
  --padding-tb: 80px 0;
  --padding-10: 100px;
}
@media screen and (min-width: 768px) {
  :root {
    --padding: 100px;
    --padding-tb: 100px 0;
    --padding-10: 140px;
  }
}

/*========================================================
  mixin
========================================================*/
/*========================================================
  gradient
========================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
/* Global box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Reset margins, paddings, and other default styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 93.75%;
  scroll-behavior: smooth;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 100%;
  }
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* Set base styles */
body {
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  color: #012038;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'palt';
}

/* Remove list styles */
ol, ul {
  list-style: none;
}

/* Remove quotes */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after, q::before, q::after {
  content: '';
  content: none;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  transition: all .4s ease;
}

/*========================================================
 header
========================================================*/
header {
  padding: min(4vw, 26px);
}
header .site-ci {
  width: min(48vw, 260px);
  height: min(10.67vw, 58px);
  transition: all 0.5s ease 0s;
}
header .site-ci a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
header .site-ci .ci {
  width: 100%;
  height: 100%;
}
header .site-ci .ci img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain", sans-serif;
}
@media screen and (min-width: 1024px) {
  header {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 min(4vw, 38px);
    padding-right: 100px;
    height: 100px;
    width: 100%;
    z-index: 100;
    background: #fff;
    transition: all 0.5s ease 0s;
    top: 0;
  }
  header.scrolled {
    height: 80px;
  }
  header.scrolled .site-ci {
    width: 200px;
    height: 42px;
    transition: all 0.5s ease 0s;
  }
}

/*========================================================
 電話番号の非リンク
========================================================*/
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*========================================================
 SP/TB/PCの表示・非表示
========================================================*/
.spNone {
  display: none;
}
@media screen and (min-width: 768px) {
  .spNone {
    display: block;
  }
}

.tbNone {
  display: block;
}
@media screen and (min-width: 768px) {
  .tbNone {
    display: none;
  }
}

.pcnavNone {
  display: block;
}
@media screen and (min-width: 1024px) {
  .pcnavNone {
    display: none;
  }
}

/*========================================================
 診療時間表
========================================================*/
.medical-hour {
  margin-bottom: 40px;
}
.medical-hour .time-content .timeTable {
  margin-bottom: 6px;
}
.medical-hour .time-content table {
  width: 100%;
  border-top: 0.05rem solid #012038;
  font-size: 15px;
}
.medical-hour .time-content table tr {
  border-bottom: 0.05rem solid #012038;
}
.medical-hour .time-content table th, .medical-hour .time-content table td {
  padding: 4px 0;
}
.medical-hour .time-content table thead {
  font-weight: 500;
}
.medical-hour .time-content table thead tr {
  background: rgba(202, 218, 218, 0.2);
}
.medical-hour .time-content table thead th:nth-child(1) {
  width: 42%;
}
.medical-hour .time-content table thead th:nth-child(n+2) {
  width: calc(58% / 6);
}
.medical-hour .time-content table tbody th {
  font-weight: 500;
}
.medical-hour .time-content table tbody td {
  position: relative;
}
.medical-hour .time-content table tbody td.open::after, .medical-hour .time-content table tbody td.close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.medical-hour .time-content table tbody td.open::after {
  content: '';
  background-color: #012038;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.medical-hour .time-content table tbody td.close::after {
  content: '×';
  color: #91c3e0;
  font-weight: 700;
}
.medical-hour .time-content table tbody td.note::before {
  content: '※';
  color: #012038;
  font-size: 8px;
  top: calc(50% - 12px);
  position: absolute;
  left: calc(50% + 8px);
}
.medical-hour .time-info p {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: fz-prct(84);
}
.medical-hour .time-info p::before, .medical-hour .time-info p::after {
  content: '';
  background-color: #195aa9;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.medical-hour .time-info p::after {
  bottom: -4px;
}

/*========================================================
 右上端のボタン
========================================================*/
.sp-fixed-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
}
.sp-fixed-btn a {
  display: block;
  width: min(16vw, 100px);
  height: min(16vw, 100px);
  color: #fff;
  background-color: #195aa9;
  font-size: min(2.67vw, 12px);
  font-weight: 500;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-fixed-btn a span {
  position: relative;
  padding-top: min(5.33vw, 40px);
  text-align: center;
  line-height: 1.4;
}
.sp-fixed-btn a span::before {
  content: '';
  background-image: url("../image/icn-az-calender.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: min(4.8vw, 30px);
  height: min(4.8vw, 30px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.sp-fixed-btn a:hover {
  background-color: #195aa9;
}

.sp-fixed-btn2 {
  top: min(16vw, 100px);
}
.sp-fixed-btn2 a {
  width: min(16vw, 100px);
  background-color: #06c755;
}
.sp-fixed-btn2 a span::before {
  background-image: url("../image/icn-line.svg");
  width: min(6vw, 36px);
  height: min(6vw, 36px);
  top: 50%;
  transform: translate(-50%, -50%);
}

/*========================================================
 袖の診療時間ボタン
========================================================*/
.fixed-timetable-btn {
  display: none;
}
@media screen and (max-height: 439px) {
  .fixed-timetable-btn {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .fixed-timetable-btn {
    position: fixed;
    top: max(calc(50vh - 80px), 110px);
    right: 0px;
    background: #fff;
    border-radius: 30px 0 0 30px;
    display: flex;
    transform: translateX(440px);
    transition: all .3s ease-in-out;
    box-shadow: 0 0 16px -6px rgba(0, 0, 0, 0.6);
    z-index: 2;
  }
  .fixed-timetable-btn.active {
    transform: translateX(0);
  }
  .fixed-timetable-btn.active .time-title {
    background: rgba(145, 195, 224, 0.5);
    border-radius: 30px 0 0 30px;
  }
  .fixed-timetable-btn .address-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .fixed-timetable-btn .address-info p {
    position: relative;
    font-size: 13px;
    letter-spacing: 0;
  }
  .fixed-timetable-btn .address-info .address {
    padding-left: 16px;
  }
  .fixed-timetable-btn .address-info .address::before {
    content: '';
    background-image: url("../image/icn-az-map.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .fixed-timetable-btn .address-info .maplink a {
    border: 0.05rem solid #012038;
    border-radius: 100vmax;
    padding: 0 6px 4px;
    color: #012038;
    font-size: 12px;
  }
  .fixed-timetable-btn .text-note p {
    font-size: 12px;
    letter-spacing: 0.06rem;
    position: relative;
  }
  .fixed-timetable-btn .text-note p::before {
    content: '※';
  }
}

.time-table-wrap .time-title {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #195aa9;
}
.time-table-wrap .time-title span {
  position: relative;
  padding-left: 24px;
}
.time-table-wrap .time-title span::before {
  content: '';
  background-image: url("../image/icn-az-time.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 4px;
  left: 0;
}
.time-table-wrap .medical-hour {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .time-table-wrap .time-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    pointer-events: auto;
    cursor: pointer;
    transition: all .3s ease;
  }
  .time-table-wrap .time-title span {
    padding-top: 22px;
    padding-left: 0;
    writing-mode: vertical-rl;
  }
  .time-table-wrap .time-title span::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .time-table-wrap .time-title:hover {
    background: rgba(145, 195, 224, 0.5);
    border-radius: 30px 0 0 30px;
  }
  .time-table-wrap .time-content {
    width: 440px;
    padding: 30px;
  }
}

/*========================================================
 FONT
========================================================*/
h2.all-title {
  font-size: min(5.87vw, 28px);
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #195aa9;
  padding-left: min(9.6vw, 46px);
  margin-bottom: min(5.33vw, 40px);
  position: relative;
}
h2.all-title::before {
  content: '';
  background-color: #195aa9;
  width: min(8vw, 40px);
  height: 0.1rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

h3.all-title {
  font-size: min(5.33vw, 20px);
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #4284c2;
  white-space: nowrap;
}

.small {
  font-size: 14px;
}

strong, .strong {
  font-weight: 700;
}

.all-text p:not(:last-of-type) {
  margin-bottom: 0.8rem;
}

/*========================================================
 page common
========================================================*/
.inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 4vw;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .inner {
    padding: 0 2vw;
  }
}
@media screen and (min-width: 1280px) {
  .inner {
    max-width: 1100px;
    padding: 0;
  }
}

main {
  padding-left: 4vw;
  padding-right: 4vw;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  main {
    padding-left: 0;
    padding-right: 0;
  }
}
main .section {
  padding: var(--padding-tb);
}

.btn-wrap .btn {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #195aa9;
  border-radius: 100vmax;
  padding: 6px 60px 6px 34px;
  color: #195aa9;
  font-weight: 700;
  font-size: 13.6px;
  transition: all .4s ease;
}
.btn-wrap .btn:hover {
  background-color: #195aa9;
  color: #fff;
}
.btn-wrap .btn:hover span::after {
  transform: translate(40px, -50%);
  background-image: url("../image/icn-az-arrow-w.svg");
}
.btn-wrap .btn span {
  position: relative;
  display: inline-block;
}
.btn-wrap .btn span::after {
  content: '';
  background-image: url("../image/icn-az-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(30px, -50%);
  transition: all .4s ease;
}
.btn-wrap .btn-line {
  border-color: #06c755;
  color: #06c755;
}
.btn-wrap .btn-line span::after {
  background-image: url("../image/icn-az-line-arrow.svg");
}
.btn-wrap .btn-line:hover {
  background-color: #06c755;
}

.full-bg {
  background-color: rgba(145, 195, 224, 0.2);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.multi-column {
  display: flex;
  flex-direction: column;
}
.multi-column .column1, .multi-column .column2 {
  width: 100%;
}

/*========================================================
 動き
========================================================*/
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}
.js-fade.inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.js-fade.tmg2 {
  transition-delay: 0.2s;
}
.js-fade.tmg3 {
  transition-delay: 0.4s;
}
.js-fade.tmg4 {
  transition-delay: 0.6s;
}

/*========================================================
 footer
========================================================*/
.footer-above {
  padding-left: 4vw;
  padding-right: 4vw;
  max-width: 1100px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}
.footer-info .address {
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-info .address a {
  color: #195aa9;
}
.footer-info .medical-hour {
  margin-bottom: 20px;
}
.footer-info .medical-hour .time-content table tbody th span {
  font-size: 12.8px;
  font-weight: normal;
  display: inline-block;
  text-align: left;
  margin-top: 2px;
  line-height: 1.4;
}
.footer-info .extra-info li {
  line-height: 1.7;
  margin-bottom: .6rem;
  position: relative;
  padding-left: 12px;
}
.footer-info .extra-info li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #195aa9;
  border-radius: 50%;
}
.footer-map {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  margin-bottom: 20px;
}
.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .footer-above {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-info {
    width: min(40vw, 480px);
  }
  .footer-map {
    width: 50%;
    margin-bottom: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 1280px) {
  .footer-above {
    padding: 0;
  }
}

.footer-below {
  position: relative;
  padding-top: min(7.69vw, 60px);
}
.footer-below-wrap {
  background: #195aa9;
  color: #fff;
  padding: 70px 30px 30px;
}
.footer-below-inner {
  margin: 0 auto 30px;
  padding-bottom: 30px;
  border-bottom: 0.05rem solid #fff;
  max-width: 1100px;
}
.footer-below .footer-ci {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.footer-below .footer-ci img {
  width: min(64.1vw, 250px);
}
.footer-below .footer-text .catch, .footer-below .footer-text .tel {
  font-weight: 600;
  font-size: 16px;
}
.footer-below .footer-text .address {
  font-weight: 400;
  font-size: 13px;
}
.footer-below .footer-text .tel a {
  color: #fff;
}
.footer-below .footer-address {
  border-top: 0.05rem solid #fff;
  padding-top: 30px;
}
.footer-below .footer-address .copyright {
  font-size: fz-prct(60);
  margin-top: 20px;
  margin-bottom: 30px;
}
.footer-below .copyright {
  font-size: 10px;
  color: #91c3e0;
}
@media screen and (min-width: 1024px) {
  .footer-below-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 824px;
  }
  .footer-below .footer-ci {
    width: auto;
    margin-bottom: 0;
    margin-right: 30px;
  }
  .footer-below .copyright {
    text-align: center;
  }
}

.footer-middle {
  border-top: 0.05rem solid #012038;
  margin-top: min(7.69vw, 60px);
  padding-top: min(10.26vw, 60px);
}
.footer-middle .multi-column .column1 {
  margin-bottom: 20px;
}
.footer-middle .multi-column .column1 img {
  width: 100%;
}
.footer-middle .wayto dt::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
}
.footer-middle .wayto dt:nth-child(1):before {
  content: '\f239';
}
.footer-middle .wayto dt:nth-child(3):before {
  content: '\f207';
}
.footer-middle .wayto dt:nth-child(5):before {
  content: '\f5e4';
}
.footer-middle .wayto dd {
  margin-bottom: 16px;
  line-height: 1.8;
  padding-left: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .footer-middle .multi-column {
    flex-direction: row-reverse;
  }
  .footer-middle .multi-column .column1 {
    margin-bottom: 0;
    width: 70%;
  }
  .footer-middle .multi-column .column2 {
    width: 30%;
  }
}

.pagetop {
  background-color: #4284c2;
}
.pagetop a {
  color: #fff;
  display: block;
  text-align: center;
  padding: 24px 1rem 6px;
  font-size: 13px;
  letter-spacing: 0;
  position: relative;
}
.pagetop a::before {
  content: '';
  background-image: url("../image/icn-arrow-w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 12px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
}

/*========================================================
 navigation
========================================================*/
.nav {
  display: none;
  background-color: #195aa9;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  z-index: 99;
}
.nav-inner {
  padding: 16vw 5.13vw;
}
@media screen and (min-width: 1024px) {
  .nav {
    position: static;
    display: inline-block;
    background-color: transparent;
    width: calc(100% - 260px);
    height: 100%;
    overflow-y: visible;
    margin-right: 14px;
  }
  .nav .nav-inner {
    padding: 0;
  }
  .nav .nav-wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
  }
}

.navToggle {
  position: fixed;
  right: 10px;
  top: 0;
  right: min(16vw, 100px);
  width: min(16vw, 100px);
  height: min(16vw, 100px);
  cursor: pointer;
  z-index: 888;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  /* open時用のCSS */
}
.navToggle span {
  width: 32px;
  height: 1px;
  background-color: #195aa9;
  transition: all .6s;
}
.navToggle span:nth-child(n+2) {
  margin-top: 7px;
}
.navToggle.close {
  background-color: transparent;
}
.navToggle.close span {
  background-color: #fff;
}
.navToggle.close span:nth-child(1) {
  transform: rotate(45deg);
}
.navToggle.close span:nth-child(2) {
  display: none;
}
.navToggle.close span:nth-child(3) {
  margin-top: 0;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .navToggle {
    display: none;
  }
}

/*=============================================
 navの中身 - メインのnav -
=============================================*/
.sp-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.sp-logo img {
  width: 180px;
  height: 60px;
}
@media screen and (min-width: 1024px) {
  .sp-logo {
    display: none;
  }
}

.nav-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nav-menu > li {
  width: 100%;
  position: relative;
  border-bottom: 0.05rem solid #fff;
}
.nav-menu .menu-item.current, .nav-menu .menu-item a {
  width: 100%;
  height: 100%;
  padding: 3vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.nav-menu .menu-item:first-child {
  border-top: 0.05rem solid #fff;
}
.nav-menu .menu-item-title {
  color: #fff;
  font-weight: 500;
  transition: all .4s ease;
}
@media screen and (min-width: 1024px) {
  .nav-menu {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0px;
    height: 100%;
  }
  .nav-menu > li {
    border-bottom: none;
    width: auto;
    font-size: 15px;
    height: 100%;
  }
  .nav-menu .menu-item a {
    padding: 1vw;
  }
  .nav-menu .menu-item-title {
    color: #012038;
  }
  .nav-menu .menu-item:first-child {
    border-top: none;
  }
}

/*=============================================
 navの中身
=============================================*/
.medical-hour.sp-ttable .time-content table {
  border-top-color: #fff;
  color: #fff;
}
.medical-hour.sp-ttable .time-content table tr {
  border-bottom-color: #fff;
}
.medical-hour.sp-ttable .time-content table thead tr {
  background: #fff;
}
.medical-hour.sp-ttable .time-content table thead th {
  color: #195aa9;
}
.medical-hour.sp-ttable .time-content table tbody td.open::after {
  background-color: #fff;
}
.medical-hour.sp-ttable .time-content table tbody td.close::after {
  color: #fff;
}
.medical-hour.sp-ttable .time-content table tbody td.note::before {
  color: #fff;
}
.medical-hour.sp-ttable .time-content .note-info p {
  color: #fff;
  font-size: 13px;
}
.medical-hour.sp-ttable .time-content .time-info p {
  color: #fff;
}
.medical-hour.sp-ttable .time-content .time-info p::before, .medical-hour.sp-ttable .time-content .time-info p::after {
  background-color: #fff;
}

.clinicinfo {
  background-color: rgba(1, 32, 56, 0.4);
  text-align: center;
  font-weight: 500;
  color: #fff;
  padding: 30px;
}
.clinicinfo .map {
  position: relative;
  display: inline-block;
  padding-left: 6px;
}
.clinicinfo .map a {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
}
.clinicinfo .map::before {
  content: '';
  background-image: url("../image/icn-map-w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 14px;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  position: absolute;
}
.clinicinfo .nav-tel {
  margin-top: 1rem;
}
.clinicinfo .nav-tel a {
  display: block;
  color: #fff;
  text-align: center;
  padding: 4px 10px;
  border: 0.05rem solid #fff;
  font-weight: 500;
  font-size: 18px;
}

/*========================================================
 kv
========================================================*/
.kv {
  position: relative;
  height: 80vh;
  min-height: 540px;
}
.kv #slider {
  width: 100%;
  height: 100% !important;
  min-height: 512px;
  position: relative;
}
.kv-inner {
  position: relative;
  height: 100%;
  padding-top: 20px;
  z-index: 1;
}
.kv-catch {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  transform: translateX(-50%);
}
.kv-catch .catch {
  writing-mode: vertical-rl;
  color: #fff;
  line-height: 2.2;
  letter-spacing: 0.3rem;
  font-weight: 600;
  font-size: min(5.13vw, 30px);
  white-space: nowrap;
}
.kv-catch .catch span {
  background-color: #195aa9;
  padding-top: min(3.59vw, 22px);
  padding-bottom: min(3.59vw, 22px);
  padding-right: min(1.03vw, 6px);
  padding-left: min(1.03vw, 6px);
}
@media screen and (min-width: 1024px) {
  .kv {
    margin-top: 100px;
  }
}

/*========================================================
 news
========================================================*/
.newsArea {
  padding: var(--padding-tb);
  background-color: rgba(202, 218, 218, 0.2);
  border-top: 0.05rem solid #012038;
  border-bottom: 0.05rem solid #012038;
}
.newsArea-inner {
  display: flex;
  flex-direction: column;
}
.newsArea-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.newsArea-title .news-title {
  font-size: min(7.18vw, 34px);
  font-family: "Shippori Mincho", serif;
  color: #195aa9;
  font-weight: 500;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.newsArea-title .news-title .eng {
  font-size: 15px;
  font-weight: 500;
  color: #91c3e0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
.newsArea-content .news-item {
  border-bottom: 0.05rem solid #012038;
  padding: .8rem 8vw .8rem 1vw;
}
.newsArea-content .news-item:first-child {
  border-top: 0.05rem solid #012038;
}
.newsArea-content .news-item a {
  position: relative;
  display: block;
}
.newsArea-content .news-item a time {
  color: #4284c2;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.newsArea-content .news-item a .news-headline {
  color: #195aa9;
  font-weight: 500;
  line-height: 1.4;
}
.newsArea-content .news-item a::after {
  content: '';
  background-image: url("../image/icn-az-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(16px, -50%);
  transition: all .3s ease;
}
.newsArea-content .news-item a:hover {
  transform: translateX(20px);
}
.newsArea-content .news-item a:hover::after {
  transform: translate(26px, -50%);
}
@media screen and (min-width: 1024px) {
  .newsArea {
    padding: 0;
  }
  .newsArea-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .newsArea-title {
    flex-direction: column;
    justify-content: center;
    width: 23.6363%;
    border-right: 0.05rem solid #012038;
    margin-bottom: 0;
  }
  .newsArea-content {
    width: 65.4545%;
    padding-top: min(5.86vw, 60px);
    padding-bottom: min(5.86vw, 60px);
  }
}

/* ▼▼▼ news下のボタンリンク▼▼▼ */
.custom1 {
  margin-top: 40px;
  padding: 0 4vw;
}
@media screen and (min-width: 1024px) {
  .custom1 {
    margin-top: 0;
    border-top: 0.05rem solid #012038;
    padding-top: 4vw;
    padding-bottom: 4vw;
    text-align: center;
  }
}

.conp-3bees {
  width: 100%;
}
.conp-3bees iframe {
  width: 100%;
}

/*========================================================
 flow
========================================================*/
.flow .column1 {
  text-align: center;
  margin-bottom: 30px;
}
.flow .wakumy-wait {
  width: 100%;
}
.flow .wakumy-wait iframe {
  width: 268px;
  height: 398px;
}
.flow-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain", sans-serif;
}
.flow-list > div:not(:last-of-type) {
  margin-bottom: 3rem;
}
.flow-list .item .ttl {
  font-weight: 700;
  border-bottom: 0.05rem solid #012038;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.flow-list .item .ttl span {
  color: #4284c2;
  font-size: 16.96px;
}
.flow-list .item .link-bnr {
  margin: 1rem 0;
}
.flow-list .item .link-bnr a {
  width: 100%;
  max-width: 540px;
  height: 100%;
  display: block;
  line-height: 0;
}
.flow-list .item .add-list ul {
  margin-bottom: 0.5rem;
}
.flow-list .item .add-list li {
  position: relative;
  font-size: 14.72px;
  padding-left: 12px;
}
.flow-list .item .add-list li::before {
  content: '';
  background-color: #195aa9;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .flow .wakumy-wait {
    transform-origin: top;
    transform: scale(1.25);
  }
  .flow .multi-column {
    flex-direction: row;
    justify-content: space-between;
  }
  .flow .multi-column .column1 {
    margin-bottom: 0;
    width: 380px;
  }
  .flow .multi-column .column2 {
    width: calc(100% - 380px);
    padding-left: 2vw;
  }
}

.rec-time {
  background-color: rgba(202, 218, 218, 0.2);
  padding: 2rem;
  padding: min(7.69vw, 50px);
  border-radius: 1rem;
  margin-bottom: 4rem;
}
.rec-time > p {
  margin-bottom: .5rem;
}
.rec-time .headline {
  font-weight: 600;
  font-size: 17.6px;
}
.rec-time .medical-hour {
  margin-bottom: 0;
}
.rec-time .medical-hour .time-content {
  margin-bottom: 2rem;
}
.rec-time .medical-hour .time-content table tbody th span {
  text-align: left;
  font-size: 11px;
  line-height: 1.4;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .rec-time .medical-hour .time-content table tbody th span {
    font-size: 13px;
  }
}
.rec-time .medical-hour .time-content .extra-info {
  margin-top: 1rem;
}
.rec-time .medical-hour .time-content .address-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}
.rec-time .medical-hour .time-content .address-info p {
  position: relative;
  font-size: 13px;
}
.rec-time .medical-hour .time-content .address-info .address {
  padding-left: 16px;
}
.rec-time .medical-hour .time-content .address-info .address::before {
  content: '';
  background-image: url("../image/icn-az-map.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 16px;
  position: absolute;
  top: 4px;
  left: 0;
}
.rec-time .medical-hour .time-content .address-info .tel-link {
  margin-left: 1rem;
  font-size: 16.64px;
  font-weight: 700;
}
.rec-time .medical-hour .time-content .address-info .tel-link a {
  color: #195aa9;
}
.rec-time .medical-hour .time-content .address-info .maplink {
  margin-left: 1rem;
}
.rec-time .medical-hour .time-content .address-info .maplink a {
  border: 0.05rem solid #4284c2;
  border-radius: 100vmax;
  padding: 0 6px 4px;
  color: #4284c2;
  font-size: 12px;
  letter-spacing: 0;
}
.rec-time .medical-hour .time-content .address-info .maplink a:hover {
  background-color: #4284c2;
  color: #fff;
}
.rec-time .custom2 {
  padding-top: 2rem;
  border-top: 0.05rem dashed rgba(1, 32, 56, 0.5);
  text-align: center;
}

.flow .attention {
  background-color: #4284c2;
  display: block;
  color: #fff;
  font-size: 14.72px;
  font-weight: 600;
  margin: 10px 0;
  padding: 1rem;
  line-height: 1.5;
  border-radius: 0.8rem;
}

.rec-time-table {
  margin: 1rem 0;
}
.rec-time-table table {
  border-top: 0.05rem solid #012038;
  border-left: 0.05rem solid #012038;
  width: 100%;
  line-height: 1.4;
  font-size: 14.4px;
  background-color: #fff;
}
.rec-time-table table tr {
  border-bottom: 0.05rem solid #012038;
}
.rec-time-table table th {
  font-weight: 500;
}
.rec-time-table table th, .rec-time-table table td {
  border-right: 0.05rem solid #012038;
  padding: 0.4rem;
  padding: min(1.28vw, 14px);
  vertical-align: middle;
}
.rec-time-table table thead th {
  background-color: rgba(66, 132, 194, 0.2);
}
.rec-time-table table tbody th {
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  .rec-time-table table th, .rec-time-table table td {
    text-align: center;
  }
}

/*========================================================
 service
========================================================*/
.content2 .link-area {
  margin: 8vw 0;
  padding-bottom: 8vw;
  border-bottom: 0.05rem solid #012038;
}
.content2 .link-area .btn-wrap .btn {
  margin: 4px 0;
}
.content2 .kokyu {
  margin-bottom: min(15.38vw, 100px);
}
.content2 .multi-column-service {
  border-top: 0.05rem solid #195aa9;
  border-bottom: 0.05rem solid #195aa9;
}
.content2 .multi-column-service .service-item {
  padding: min(4vw, 30px);
}
.content2 .multi-column-service .service-item:not(:last-of-type) {
  border-bottom: 0.05rem solid #195aa9;
}
.content2 .vaccin {
  padding: min(4vw, 30px);
  border-bottom: 0.05rem solid #195aa9;
}
.content2 .vaccin-item {
  margin-top: 1rem;
}
.content2 .vaccin-item .item1 {
  margin-bottom: 1rem;
}
.content2 .vaccin-item dt {
  background-color: #4284c2;
  color: #fff;
  font-size: 14.08px;
  font-weight: 600;
  padding: 6px 12px;
  line-height: 1;
  display: inline-block;
}
.content2 .vaccin-item dd {
  position: relative;
  padding-left: 12px;
}
.content2 .vaccin-item dd::before {
  content: '●';
  font-size: 7px;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .content2 .link-area {
    margin: 2vw 0;
    padding-bottom: 3vw;
  }
  .content2 .block .multi-column {
    flex-direction: row;
    margin-bottom: 4vw;
  }
  .content2 .block .multi-column .column1, .content2 .block .multi-column .column2 {
    width: auto;
  }
  .content2 .block .multi-column .column2 {
    padding-left: 4vw;
  }
  .content2 .multi-column-service {
    flex-wrap: wrap;
  }
  .content2 .multi-column-service .service-item {
    width: calc(100% / 3);
  }
  .content2 .multi-column-service .service-item:not(:last-of-type) {
    border-bottom: none;
  }
  .content2 .multi-column-service .service-item:nth-of-type(-n+3) {
    border-bottom: 0.05rem solid #195aa9;
  }
  .content2 .multi-column-service .service-item:nth-of-type(-n+2) {
    border-right: 0.05rem solid #195aa9;
  }
  .content2 .multi-column-service .service-item:nth-of-type(4) {
    border-right: 0.05rem solid #195aa9;
  }
  .content2 .multi-column-service .service-item:nth-of-type(5) {
    border-right: 0.05rem solid #195aa9;
  }
  .content2 .naika .multi-column-service {
    margin-bottom: 0;
  }
  .content2 .naika .multi-column-service:nth-of-type(-n+3) {
    border-bottom: none;
  }
}

.content2 .pdf-link {
  padding-top: 2rem;
}
.content2 .pdf-link .btn-wrap .btn {
  width: 100%;
  margin-bottom: 0.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .content2 .pdf-link .btn-wrap {
    text-align: center;
  }
  .content2 .pdf-link .btn-wrap .btn {
    width: auto;
  }
}

/*========================================================
 about
========================================================*/
.content4 .head-dr {
  margin-bottom: 60px;
}
.content4 .dr-mesage {
  margin-bottom: 40px;
}
.content4 .dr-mesage .catch {
  color: #4284c2;
  font-size: min(6.01vw, 30px);
  letter-spacing: 0.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.content4 .name {
  font-weight: 600;
}
.content4 .name span {
  font-size: 17.6px;
}
.content4 .visual {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.content4 .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
}
.content4 .dr-profile {
  background-color: rgba(145, 195, 224, 0.2);
  padding: min(6.93vw, 40px);
}
.content4 .dr-profile .column1 {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 0.05rem solid #195aa9;
}
.content4 .head-dr dt, .content4 .sub-dr dt {
  background-color: #195aa9;
  color: #fff;
  font-size: 16px;
  font-weight: bolder;
  padding: 0 16px;
  display: inline-block;
  min-width: 100px;
  text-align: center;
  margin-bottom: 6px;
}
.content4 .sub-dr .upper {
  margin: 20px 0 30px;
}
@media screen and (min-width: 768px) {
  .content4 .head-dr .visual {
    max-width: 340px;
    width: 340px;
  }
  .content4 .dr-profile {
    font-size: 15px;
  }
  .content4 .sub-dr .multi-column {
    flex-direction: row;
  }
  .content4 .sub-dr .multi-column .column1 {
    width: min(36.72vw, 330px);
  }
  .content4 .sub-dr .multi-column .column2 {
    width: calc(100% - min(36.72vw, 330px));
    padding-left: 4vw;
  }
  .content4 .sub-dr .upper {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .content4 .dr-mesage {
    flex-direction: row;
  }
  .content4 .dr-mesage .column1 {
    width: 330px;
  }
  .content4 .dr-mesage .column2 {
    width: calc(100% - 330px);
    padding-left: 4vw;
  }
  .content4 .dr-profile {
    flex-direction: row;
    justify-content: space-between;
  }
  .content4 .dr-profile .column1 {
    margin-bottom: 0;
    padding-bottom: 0;
    border-right: 0.05rem solid #012038;
    border-bottom: none;
    width: 58%;
    padding-right: 4%;
    position: relative;
  }
  .content4 .dr-profile .column2 {
    width: calc(100% - 53%);
    margin-left: 4%;
  }
}

/*========================================================
 院内写真--無限ループ
========================================================*/
.content3.full-bg {
  padding: 0;
}

@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.slider-container {
  display: flex;
  overflow: hidden;
}
.slider-wrapper {
  display: flex;
  animation: horizontal-animation 90s linear infinite;
}

.slide {
  width: calc(100vw / 2);
  margin-right: 0px;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .slide {
    width: calc(100vw / 3);
  }
}
@media screen and (min-width: 1280px) {
  .slide {
    width: calc(100vw / 4);
  }
}

@media (hover: hover) {
  .slider-container:hover .slider-wrapper {
    animation-play-state: paused;
  }
}
/*===============================================
 breadcrumb
=================================================*/
.breadcrumb {
  display: none;
  background-color: #fff;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    display: block;
  }
  .breadcrumb-list {
    display: flex;
    font-size: 12px;
  }
  .breadcrumb-item {
    position: relative;
    padding: 0 12px;
  }
  .breadcrumb-item:not(:last-child)::after {
    content: '》';
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
  }
  .breadcrumb-item a {
    color: #4284c2;
  }
}

/*===============================================
 サブページ共通
=================================================*/
.page-main {
  padding: var(--padding-tb);
  padding-bottom: var(--padding-10);
}

/*===============================================
 お知らせ一覧 - archive -
=================================================*/
.head-wrap .page-head {
  background-color: rgba(202, 218, 218, 0.3);
}
.head-wrap .page-head-inner {
  padding-top: min(8vw, 60px);
  padding-bottom: min(8vw, 60px);
}
.head-wrap .page-head-title {
  font-size: min(5.87vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  padding: .3rem 0 .5rem 20px;
  position: relative;
}
.head-wrap .page-head-title::before {
  content: '';
  background-color: #4284c2;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .head-wrap {
    padding-top: 100px;
  }
}

.page-main .multi-column {
  display: flex;
  flex-direction: column;
}
.page-main .multi-column .main-column {
  margin-bottom: 80px;
}
.page-main .multi-column .main-column .article-list {
  margin-bottom: 4rem;
}
.page-main .multi-column .main-column .article-item {
  color: #012038;
  border-bottom: 0.05rem dotted #012038;
  display: block;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  position: relative;
}
.page-main .multi-column .main-column .article-item-inner {
  position: relative;
  padding-right: 3rem;
  transition: transform 0.4s ease;
}
.page-main .multi-column .main-column .article-item-inner::after {
  content: '';
  background-image: url("../image/icn-az-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 14px;
  height: 8px;
  top: 50%;
  right: 20px;
  transform: rotate(0);
  transition: all .3s ease;
}
.page-main .multi-column .main-column .article-item:hover .article-item-inner {
  transform: translateX(20px);
}
.page-main .multi-column .main-column .article-item:hover .article-item-inner::after {
  transform: rotate(360deg);
}
.page-main .multi-column .main-column .article-item:hover .article-title {
  color: #4284c2;
}
.page-main .multi-column .main-column .article-title {
  font-size: min(4vw, 18px);
  font-weight: 600;
  transition: .4s .2s;
}
.page-main .multi-column .main-column .article time {
  font-size: 12px;
  letter-spacing: 0;
}
@media screen and (min-width: 1024px) {
  .page-main .multi-column {
    flex-direction: row;
    justify-content: space-between;
  }
  .page-main .multi-column .main-column {
    width: min(67.27vw, 740px);
    margin-bottom: 0;
  }
}

aside > section {
  margin-bottom: 4rem;
}
aside .widget-title {
  font-size: min(4.53vw, 20px);
  font-weight: 600;
  color: #4284c2;
  position: relative;
  padding-left: 18px;
  margin-bottom: .8rem;
}
aside .widget-title::before {
  content: '';
  width: 14px;
  height: 14px;
  border: 4px solid #4284c2;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% + 1px));
}
aside .recent-posts-item {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 0.05rem dashed #012038;
}
aside .recent-posts-item a {
  color: #012038;
  font-weight: 500;
}
aside .recent-posts-item a:hover {
  color: #4284c2;
}
aside .recent-posts-item time {
  font-size: 13px;
  letter-spacing: 0;
}
aside .recent-posts-item .post-title {
  font-size: 14px;
  line-height: 1.6;
}
aside .archive-list-item {
  position: relative;
  padding-left: 12px;
}
aside .archive-list-item::before {
  content: '';
  background-color: #4284c2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
aside .archive-list-item a {
  color: #012038;
  font-size: 14px;
  font-weight: 500;
}
aside .archive-list-item a:hover {
  color: #4284c2;
}
@media screen and (min-width: 1024px) {
  aside {
    width: min(25.45vw, 280px);
  }
}

/*===============================================
 pagination
=================================================*/
.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination .page-numbers {
  display: flex;
}
.pagination .page-numbers-item {
  width: min(10.13vw, 48px);
  height: min(10.13vw, 48px);
  margin: 0 2px;
}
.pagination .page-numbers-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #4284c2;
  font-weight: 600;
  font-size: 14px;
  color: #4284c2;
}
.pagination .page-numbers-item a span {
  position: relative;
}
.pagination .page-numbers-item a:hover {
  background-color: #4284c2;
  color: #fff;
}
.pagination .page-numbers-item.current a {
  background-color: #4284c2;
  color: #fff;
}
.pagination .page-numbers-item.prev span::before, .pagination .page-numbers-item.next span::before {
  content: '';
  background-image: url("../image/icn-az-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 14px;
  height: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
}
.pagination .page-numbers-item.prev span::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.pagination .page-numbers-item.prev:hover span::before, .pagination .page-numbers-item.next:hover span::before {
  background-image: url("../image/icn-az-arrow-w.svg");
  transition-delay: .2s;
}

/*===============================================
 お知らせページ - post -
=================================================*/
.post-page .head-wrap .page-head-title {
  font-size: min(4.1vw, 22px);
  margin-bottom: 0.5rem;
}
.post-page .head-wrap .page-head time {
  font-size: 12px;
  letter-spacing: 0;
}

.post-page .main-content {
  margin-bottom: 80px;
}
.post-page .main-content p:not(:last-of-type) {
  margin-bottom: 1.8rem;
}
.post-page .main-content ul {
  margin-bottom: 1.8rem;
}
.post-page .main-content ul li {
  position: relative;
  padding-left: 14px;
}
.post-page .main-content ul li::before {
  content: '';
  background-color: #4284c2;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.post-page .main-content h4 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
}
.post-page .main-content h4::before, .post-page .main-content h4::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0.05rem;
  bottom: 0;
  left: 0;
  background-color: rgba(1, 32, 56, 0.3);
}
.post-page .main-content h4::before {
  background-color: #4284c2;
  width: 20%;
  height: 0.1rem;
}
.post-page .main-content h5 {
  display: inline-block;
  background-color: #012038;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
.post-page .main-content img {
  width: 100%;
  height: auto;
  margin: 1rem 0;
}
.post-page .main-content h6 {
  font-size: 16px;
  color: #4284c2;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
@media screen and (min-width: 1024px) {
  .post-page .main-content .size-full {
    width: 100%;
  }
  .post-page .main-content .size-medium {
    width: 48%;
  }
  .post-page .main-content .size-thumbnail {
    width: 28%;
  }
  .post-page .main-content .alignleft {
    float: left;
    margin-right: 1rem;
  }
  .post-page .main-content .alignright {
    float: right;
    margin-left: 1rem;
  }
  .post-page .main-content .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
.post-page .post-navigation .nav-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  border-top: 0.05rem solid rgba(1, 32, 56, 0.3);
  border-bottom: 0.05rem solid rgba(1, 32, 56, 0.3);
  align-items: center;
}
.post-page .post-navigation .nav-link a {
  color: #012038;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}
.post-page .post-navigation .nav-link a:hover {
  background-color: rgba(202, 218, 218, 0.3);
}
.post-page .post-navigation .nav-link::after {
  content: '';
  width: 0.05rem;
  height: calc(100% - 40px);
  background-color: rgba(1, 32, 56, 0.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.post-page .post-navigation .nav-prev, .post-page .post-navigation .nav-next {
  line-height: 1.4;
  position: relative;
}
.post-page .post-navigation .nav-prev::before, .post-page .post-navigation .nav-next::before {
  content: '';
  background-image: url("../image/icn-az-arrow-w.svg");
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-position: center;
  background-color: #012038;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}
.post-page .post-navigation .nav-prev a {
  padding: 20px 15px 20px 40px;
}
.post-page .post-navigation .nav-prev::before {
  transform: translateY(-50%) rotate(180deg);
  left: 8px;
}
.post-page .post-navigation .nav-next a {
  padding: 20px 40px 20px 15px;
}
.post-page .post-navigation .nav-next::before {
  right: 8px;
}
@media screen and (min-width: 768px) {
  .post-page .post-navigation .nav-prev a {
    padding: 26px 15px 26px 40px;
  }
  .post-page .post-navigation .nav-next a {
    padding: 26px 40px 26px 15px;
  }
}
