@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

tbody, thead {
  -webkit-text-size-adjust: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

li {
  list-style: none;
  list-style-type: none;
}

caption,
th {
  font-weight: normal;
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

area {
  outline: none;
  border: none;
}

abbr,
acronym {
  border: 0;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}

input[type=submit],
input[type=button] {
  cursor: pointer;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  outline: none;
  text-decoration: none;
}

figure {
  line-height: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

:root {
  --color-main: #AED58D;
  --color-white: #fff;
  --color-text: #3B3B3B;
  --color-sub_1: #8BBD62;
  --color-sub_2: #EBF2E5;
  --color-sub_3: #62BD67;
  --color-accent: #E1948D;
  --color-Dgray_1: #606060;
  --color-Dgray_2: #3C3C3C;
  --color-Mgray_1: #A0A0A0;
  --color-Mgray_2: #808080;
  --color-Lgray_1: #E8E8E8;
  --color-Lgray_2: #C8C8C8;
  --color-BGgray: #F6F6F6;
  --color-BGbeige: #FAF8F5;
  --color-black: #000;
  --transition-duration: .6s;
  --transition-timing-function: ease-out;
}

/*
new
-------------------------------------------------------*/
body {
  background-color: var(--color-BGbeige);
  overflow-x: hidden;
  color: var(--color-text);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
body a {
  color: var(--color-text);
}

p {
  line-height: 1.8;
}

p + p {
  margin-top: 1.25rem;
}

strong {
  font-weight: bold;
}
.center {
  text-align: center;
}

.ef-fade {
  transform: translate(0, 10%);
  opacity: 0;
  transition: 1s;
}

.fade {
  transform: translate(0, 0);
  opacity: 1;
}

.swiper-container, .swiper-container2 {
  margin: 2.5rem auto;
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
}

.swiper-slide {
  margin: 0 auto;
  height: 100%;
  text-align: left;
}
.swiper-pic {
  display: block;
  position: relative;
  margin: 0 auto;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.swiper-pic::before {
  display: block;
  padding-top: 74.67%;
  content: "";
}
.swiper-pic img {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0 auto;
  width: 100%;
  height: auto;
  text-align: center;
}

.swiper-box {
  display: flex;
  position: relative;
  margin-top: 40px;
  height: 36px;
}

.swiper-text {
  display: block;
  padding-top: 0.5rem;
}

.swiper-pagination {
  position: relative;
  z-index: 1 !important;
}

.swiper-button-prev,
.swiper-button-next {
  display: block;
  position: absolute;
  z-index: 2 !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px !important;
}

.header {
  top: 0;
  z-index: 1000;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 100%;
}
.header_logo {
  z-index: 10;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  margin: 30px 0 0 24px;
  width: 172px;
  min-width: 172px;
}
.header_nav {
  display: none;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.header_toggle {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 100;
}
.header.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  -webkit-animation: slideDown 0.5s ease-out forwards;
          animation: slideDown 0.5s ease-out forwards;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  background: #fff;
  padding-bottom: 0;
}
.header.is-fixed .header_logo {
  position: relative;
  width: 200px;
}
.header.is-fixed .globalNav {
  display: none;
}
.header.is-fixed .header_nav {
  margin-right: 110px;
  margin-left: auto;
}

/* スライドダウンアニメーション */
@-webkit-keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.menu-open .header {
  box-shadow: none;
}
.menu-open .header_logo, .menu-open .header_nav {
  opacity: 0;
}

.main {
  padding-top: 0;
  overflow-x: hidden;
}
.main._home {
  padding-bottom: 80px;
}
.main_inner {
  margin: 0 auto;
}
.main_contents {
  margin: 0 auto 80px;
  padding: 0 24px;
}
.main_contents._about {
  margin-bottom: 80px;
}
.main_contents._blog {
  margin-top: 112px !important;
  margin-bottom: 160px;
}
.main_contents._blogDetail {
  margin-top: 112px !important;
}
.footer {
  margin: 0;
  background-color: #fff;
  padding: 0;
}
.footer_copyright {
  margin-top: 28px;
  padding-bottom: 96px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.6875rem;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

.headerNav_list {
  display: none;
  width: 100%;
}
.headerNav_item {
  position: relative;
}
.headerNav_link {
  display: block;
  border-radius: 32px;
  padding: 9px 0;
  width: 128px;
  overflow: hidden;
  color: var(--color-white);
  font-weight: medium;
  line-height: 1;
  text-align: center;
}
.headerNav_tel {
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.globalNav_list {
  display: none;
}
.globalNav_item {
  position: relative;
  text-align: center;
}
.globalNav_item::after {
  position: absolute;
  top: calc(50% - 7px);
  right: -16px;
  transform: rotate(-150deg);
  transform-origin: center;
  background-color: var(--color-text);
  width: 1px;
  height: 16px;
  content: "";
}
.globalNav_item:last-child::after {
  display: none;
}
.globalNav_item._current, .globalNav_item .current_page_item {
  position: relative;
}
.globalNav_item._current::before, .globalNav_item .current_page_item::before {
  display: block;
  position: absolute;
  bottom: -5px;
  background-color: var(--color-sub_1);
  width: 100%;
  height: 1px;
  content: "";
}

.home {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.home_introduction {
  margin: 268px auto 0;
  padding: 0 24px;
}

.homeKv_inner {
  position: relative;
  margin: 42px 24px 0 !important;
  border-radius: 24px;
  background: url("../images/home/kv.jpg");
  background-position: right -160px top;
  background-size: cover;
  background-repeat: no-repeat;
  width: calc(100% - 48px);
  height: 400px;
}
.homeKv_pic img {
  border-radius: 24px;
}
.homeKv_heading {
  position: absolute;
  top: 18px;
  left: 19px;
  font-style: normal;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.08em;
}
.homeKv_icon {
  position: absolute;
  top: 164px;
}
.homeKv_clinicSchedule {
  position: relative;
  top: 314px;
  left: -10px;
  margin-left: auto;
  border: 1px solid var(--color-main);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  width: calc(100% + 22px);
  max-width: 375px;
}
.homeKv::after {
  display: block;
  position: absolute;
  top: -27.2vw;
  left: -29.87vw;
  z-index: -1;
  border-radius: 50%;
  background-color: var(--color-white);
  aspect-ratio: 1/1;
  width: 108vw;
  content: "";
}

.homeGuidance {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.homeGuidance_inner {
  position: relative;
  padding: 80px 24px 0;
}
.homeGuidance_heading {
  display: inline-block;
  position: relative;
  margin: 0 auto 54px;
  text-align: center;
}
.homeGuidance_list {
  display: -ms-grid;
  display: grid;
  position: relative;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  list-style: none;
}
.homeGuidance_item {
  margin: 0;
  text-align: center;
}
.homeGuidance_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 73px 0 57px;
  text-decoration: none;
}
.homeGuidance_item:nth-of-type(1) {
  margin-right: 0;
  margin-bottom: 0;
}
.homeGuidance_item:nth-of-type(2) {
  margin-bottom: 0;
  margin-left: 0;
}
.homeGuidance_item:nth-of-type(3) {
  margin-top: 0 !important;
  margin-right: 0;
  padding-bottom: 0;
}
.homeGuidance_item:nth-of-type(4) {
  margin-top: 0 !important;
  margin-left: 0;
  padding-bottom: 0;
}
.homeGuidance_item:nth-of-type(1) {
  position: relative;
}
.homeGuidance_item:nth-of-type(1):before {
  display: block;
  position: absolute;
  top: 0;
  background-color: var(--color-Lgray_2);
  width: calc(100% - 8px);
  height: 1px;
  content: "";
}
.homeGuidance_item:nth-of-type(1):after {
  display: block;
  position: absolute;
  bottom: -1px;
  z-index: 2;
  background-color: var(--color-Lgray_2);
  width: calc(100% - 8px);
  height: 1px;
  content: "";
}
.homeGuidance_item:nth-of-type(2) {
  position: relative;
}
.homeGuidance_item:nth-of-type(2):before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-Lgray_2);
  width: calc(100% - 8px);
  height: 1px;
  content: "";
}
.homeGuidance_item:nth-of-type(2):after {
  display: block;
  position: absolute;
  top: 20px;
  background-color: var(--color-Lgray_2);
  width: 1px;
  height: calc(100% - 40px);
  content: "";
}
.homeGuidance_item:nth-of-type(3) {
  position: relative;
}
.homeGuidance_item:nth-of-type(3):before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-Lgray_2);
  width: calc(100% - 8px);
  height: 1px;
  content: "";
}
.homeGuidance_item:nth-of-type(3):after {
  display: block;
  position: absolute;
  top: 20px;
  right: -1px;
  z-index: 2;
  background-color: var(--color-Lgray_2);
  width: 1px;
  height: calc(100% - 40px);
  content: "";
}
.homeGuidance_item:nth-of-type(4) {
  position: relative;
}
.homeGuidance_item:nth-of-type(4):before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-Lgray_2);
  width: calc(100% - 8px);
  height: 1px;
  content: "";
}
.homeGuidance_item:nth-of-type(4):after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-Lgray_2);
  width: calc(100% - 8px);
  height: 1px;
  content: "";
}
.homeGuidance_icon {
  display: block;
  width: 64px;
}
.homeGuidance_text {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeNews_inner {
  padding: 80px 24px 0;
}
.homeNews_head {
  width: 100%;
}
.homeNews_heading {
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeNews_list {
  margin-top: 40px;
  border-top: 1px solid var(--color-main);
}
.homeNews_item {
  border-bottom: 1px solid var(--color-main);
  padding: 0;
}
.homeNews_listlink {
  display: block;
  margin: 12px auto 0;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
}
.homeNews_listlink span {
  display: inline-block;
  position: relative;
  border-radius: 32px;
  background-color: var(--color-main);
  padding: 8px 50px 8px 23px;
}
.homeNews_listlink span::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 27px;
  background-image: url("../images/icon_arrow.svg");
  background-size: 18px auto;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  content: "";
}
.homeNews_link {
  display: block;
  position: relative;
  padding-top: 23px;
  padding-right: 15px;
  padding-right: 40px;
  padding-bottom: 23px;
  padding-left: 16px;
  width: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeNews_link ::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 19px;
  background-image: url("../images/icon_arrow-text.svg");
  background-size: 7px 16px;
  background-repeat: no-repeat;
  width: 7px;
  height: 16px;
  content: "";
}
.homeNews_link time {
  line-height: 1.6;
}
.homeNews_date {
  display: block;
  margin-bottom: 4px;
  color: var(--color-Dgray_1);
  font-style: normal;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0.08em;
}
.homeNews_title {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.homeServiceHeadache {
  position: relative;
  margin: 0 auto;
  margin-top: 48px;
}
.homeServiceHeadache_inner {
  display: block;
  margin: 0;
  padding: 0 24px;
}
.homeServiceHeadache_heading {
  margin: 55px auto 24px;
  text-align: center;
}
.homeServiceHeadache_pic {
  position: relative;
  z-index: 2;
  width: 94.19%;
}
.homeServiceHeadache_pic img {
  border-radius: 16px;
}
.homeServiceHeadache_box {
  position: relative;
  z-index: 1;
  width: 100%;
}
.homeServiceHeadache_box::after {
  display: block;
  position: absolute;
  top: -164px;
  left: 20px;
  z-index: -1;
  border-radius: 16px;
  background: var(--color-white);
  width: calc(100% - 24px);
  height: calc(100% + 191px);
  content: "";
}
.homeServiceHeadache_lead {
  margin: 26px 0 0;
  padding-right: 6%;
  padding-left: 12.7%;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeServiceHeadache_text {
  padding-right: 6%;
  padding-left: 12.7%;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeServiceHeadache_link {
  display: block;
  margin: 20px auto 0;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeServiceHeadache_link span {
  display: inline-block;
  position: relative;
  border-radius: 32px;
  background-color: var(--color-main);
  padding: 8px 41px 8px 23px;
  width: 256px;
}
.homeServiceHeadache_link span::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 18px;
  background-image: url("../images/icon_arrow.svg");
  background-size: 18px auto;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  content: "";
}

.homeServiceHealthcheck {
  position: relative;
  margin: 0 auto;
  margin-top: 75px;
}
.homeServiceHealthcheck_inner {
  display: block;
  margin: 0;
  padding: 0 24px;
}
.homeServiceHealthcheck_heading {
  margin: 55px auto 24px;
  text-align: center;
}
.homeServiceHealthcheck_pic {
  position: relative;
  z-index: 2;
  width: 94.19%;
}
.homeServiceHealthcheck_pic img {
  border-radius: 16px;
}
.homeServiceHealthcheck_box {
  position: relative;
  z-index: 1;
  width: 100%;
}
.homeServiceHealthcheck_box::after {
  display: block;
  position: absolute;
  top: -164px;
  left: 20px;
  z-index: -1;
  border-radius: 16px;
  background: var(--color-white);
  width: calc(100% - 24px);
  height: calc(100% + 191px);
  content: "";
}
.homeServiceHealthcheck_lead {
  margin: 26px 0 0;
  padding-right: 6%;
  padding-left: 12.7%;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeServiceHealthcheck_text {
  padding-right: 7%;
  padding-left: 12.7%;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeServiceHealthcheck_link {
  display: block;
  margin: 20px auto 0;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeServiceHealthcheck_link span {
  display: inline-block;
  position: relative;
  border-radius: 32px;
  background-color: var(--color-main);
  padding: 8px 41px 8px 23px;
  width: 256px;
}
.homeServiceHealthcheck_link span::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 18px;
  background-image: url("../images/icon_arrow.svg");
  background-size: 18px auto;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  content: "";
}

.homeServiceHomevisit {
  position: relative;
  margin: 0 auto;
  margin-top: 48px;
}
.homeServiceHomevisit_inner {
  display: block;
  margin: 0;
  padding: 0 24px;
}
.homeServiceHomevisit_heading {
  margin: 55px auto 24px;
  text-align: center;
}
.homeServiceHomevisit_pic {
  position: relative;
  z-index: 2;
  width: 94.19%;
}
.homeServiceHomevisit_pic img {
  border-radius: 16px;
}
.homeServiceHomevisit_box {
  position: relative;
  z-index: 1;
  width: 100%;
}
.homeServiceHomevisit_box::after {
  display: block;
  position: absolute;
  top: -164px;
  left: 20px;
  z-index: -1;
  border-radius: 16px;
  background: var(--color-white);
  width: calc(100% - 24px);
  height: calc(100% + 191px);
  content: "";
}
.homeServiceHomevisit_lead {
  margin: 26px 0 0;
  padding-right: 6%;
  padding-left: 12.7%;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeServiceHomevisit_text {
  padding-right: 6%;
  padding-left: 12.7%;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeServiceHomevisit_link {
  display: block;
  margin: 20px auto 0;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeServiceHomevisit_link span {
  display: inline-block;
  position: relative;
  border-radius: 32px;
  background-color: var(--color-main);
  padding: 8px 41px 8px 23px;
  width: 256px;
}
.homeServiceHomevisit_link span::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 18px;
  background-image: url("../images/icon_arrow.svg");
  background-size: 18px auto;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  content: "";
}

.homeService {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.homeService_inner {
  margin: 128px 24px 0;
}
.homeService_heading {
  position: relative;
  margin: 0 auto 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeService_lead {
  margin-bottom: 31px;
  color: #000;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeService_lead span {
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeService_box {
  margin: 0 auto;
  border-radius: 16px;
  background-color: var(--color-sub_2);
  padding: 40px 20px 40px;
  max-width: 1080px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeService_text {
  margin-bottom: 25px;
  padding: 0 20px;
  color: #000;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
}

.homeServiceCategory {
  position: relative;
  border: 1px solid var(--color-Lgray_2);
  border-radius: 12px;
  background-color: var(--color-white);
  padding: 30px;
}
.homeServiceCategory_item {
  margin-bottom: 40px;
}
.homeServiceCategory_item img {
  border-radius: 8px;
}
.homeServiceCategory_item:nth-of-type(3) {
  margin-right: 0;
  margin-bottom: 0;
  border-right: none;
  padding-right: 0;
}
.homeServiceCategory_pic {
  margin: 0 14px;
}
.homeServiceCategory_title {
  margin: 12px 0;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.homeServiceCategory_text {
  margin-bottom: 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
}
.homeServiceCategory_link {
  display: block;
  margin: 17px auto 0;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeServiceCategory_link a {
  display: block;
  border-radius: 32px;
}
.homeServiceCategory_link span {
  display: block;
  margin: 0 auto;
  border-radius: 32px;
  padding: 9px 0 8px;
  color: var(--color-white);
  text-align: center;
}

.homeKvIcon {
  max-width: 420px;
}
.homeKvIcon_list {
  display: flex;
  position: relative;
  margin-right: -14px;
  margin-left: -14px;
  max-width: 420px;
}
.homeKvIcon_item {
  position: relative;
  flex: 1;
  z-index: 1;
}
.homeKvIcon_item:not(:first-child) {
  z-index: 0;
  margin-left: -12px;
}
.homeKvIcon_item::after {
  display: block;
  position: absolute;
  top: 3.4vw;
  left: 2px;
  z-index: -1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: calc(100% - 2.8vw);
  content: "";
}
.homeKvIcon_item span {
  position: absolute;
  top: calc(50% + 16px);
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  min-height: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

.homeBlog {
  margin-top: 70px;
}
.homeBlog_heading {
  margin: 0 auto 32px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.homeBlog_list {
  display: block;
  margin: 0 24px;
}
.homeBlog_item {
  margin-bottom: 16px;
  border-radius: 12px;
  background-color: var(--color-white);
  padding: 32px 30px 23px;
}
.homeBlog_link {
  display: block;
  margin: 48px auto 0;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
}
.homeBlog_link span {
  display: inline-block;
  position: relative;
  border-radius: 32px;
  background-color: var(--color-main);
  padding: 8px 41px 8px 23px;
  width: 256px;
  text-align: center;
}
.homeBlog_link span::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 18px;
  background-image: url("../images/icon_arrow.svg");
  background-size: 18px auto;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  content: "";
}

.entryBlog {
  position: relative;
}
.entryBlog_date {
  display: block;
  margin-bottom: 7px;
  color: var(--color-Dgray_1);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0.08em;
}
.entryBlog_pic {
  display: block;
  position: relative;
  margin: 0 auto;
  border-radius: 8px;
  width: 100%;
  overflow: hidden;
  text-align: center;
}
.entryBlog_pic::before {
  display: block;
  padding-top: 74.67%;
  content: "";
}
.entryBlog_pic img {
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  margin: 0 auto;
  width: 100%;
  height: auto;
  text-align: center;
}
.entryBlog_title {
  margin-top: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

#department {
  scroll-margin-top: 200px;
}

.department {
  position: relative;
}
.department_inner {
  display: block;
  margin-top: 64px;
}
.department_medicalSubject {
  margin-top: 0px;
  margin-bottom: 152px;
}
.department_heading {
  margin: 70px auto 70px;
  text-align: center;
}
.department_body {
  flex: 1;
  max-width: 720px;
}
.department_body p {
  margin: 20px 0;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.department_body h2 {
  margin-bottom: 48px;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.department_body h3 {
  margin-top: 48px;
  margin-bottom: 24px;
  border-left: 4px solid var(--color-main);
  padding-left: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.department_body h4 {
  margin-top: 28px;
  margin-bottom: 14px;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.department_body .wp-block-list li {
  padding-left: 14px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-indent: -14px;
}
.department_body .wp-block-list li:before {
  content: "・";
}
.department_body figure {
  margin: 20px 0;
}
.department_body figure img {
  border-radius: 16px;
}
.department_body a {
  color: var(--color-sub_1);
  text-decoration: underline;
}
.department_body table {
  margin: 10px 0;
  border-top: 1px solid var(--color-main) !important;
  border-right: none !important;
  border-bottom: 1px solid var(--color-main) !important;
  border-left: none !important;
  width: 100% !important;
}
.department_body table th, .department_body table tr:first-child {
  background-color: var(--color-sub_2);
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.department_body table td:first-child {
  min-width: 120px !important;
}
.department_body table th, .department_body table td {
  border-top: none !important;
  border-right: none !important;
  border-bottom: 1px solid var(--color-main) !important;
  border-left: none !important;
  padding: 8px;
  width: auto;
  width: auto;
}
.department_body table td {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.department_body .symptoms {
  margin: 24px 0;
}
.department_body .symptoms_list {
  display: inline-block;
}
.department_body .symptoms_item {
  display: inline-block;
  box-sizing: border-box;
  margin: 4px;
  border: 1px solid var(--color-main);
  border-radius: 8px;
  background-color: var(--color-white);
  padding: 8px 16px;
  width: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  text-indent: 0;
}
.department_body .symptoms_item:before {
  display: none;
}
.department_body .symptoms_note {
  margin-top: 8px;
  margin-right: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: right;
}
.department_lead {
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.department_list {
  margin-top: 48px;
}
.department_item {
  border-bottom: 1px solid var(--color-main);
}
.department_item:before {
  display: none;
}
.department_item a {
  display: block;
  padding: 12px 0 12px 8px;
  color: var(--color-text);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
}
.department_side {
  padding: 0 10px;
}

.about {
  position: relative;
  margin: 0 auto;
}
.about_introduction {
  margin: 48px auto 0;
}
.about_medicalSubject {
  margin-top: 80px;
}
.about_subjects {
  margin-top: 80px;
}
.about_subjects .subjects {
  margin-bottom: 96px;
}
.about_doctor {
  margin: 120px 0 0;
}
.about_doctorOther {
  margin-top: 80px;
}

.doctor {
  position: relative;
  margin: 0 auto;
}
.doctor_inner {
  margin: 80px 0;
}
.doctor_heading {
  margin: 0 auto 56px;
  text-align: center;
}
.doctor_doctorOther {
  margin-top: 80px;
}

.equipment {
  position: relative;
  margin: 0 auto 80px;
}
.equipment_sec {
  margin-top: 80px;
}
.equipment_heading {
  margin: 0 auto 48px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.equipment_heading span {
  display: inline-block;
  position: relative;
}
.equipment_heading span::before, .equipment_heading span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--color-main);
  width: 6px;
  height: 6px;
  content: "";
}
.equipment_heading span::before {
  left: -16px;
}
.equipment_heading span::after {
  right: -16px;
}
.equipment_list {
  display: block;
}
.equipment_item {
  box-sizing: border-box;
  margin-bottom: 24px;
  width: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  text-indent: 0;
}
.equipment_item:before {
  display: none;
}
.equipment_pic img {
  border-radius: 16px;
  overflow: hidden;
}
.equipment_caption {
  margin-top: 8px;
}

.access {
  position: relative;
}
.access_sec {
  margin-top: 80px;
}
.access_heading {
  margin: 0 auto 48px;
  text-align: center;
}
.access_maintext {
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.access_address {
  margin: 40px auto 48px;
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  padding: 16px 0 10px;
  width: 403px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.access_tel {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
  width: 174px;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
  text-align: center;
}
.access_map iframe {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}
.access_map a {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.access_clinicInfo {
  border-radius: 16px;
  background-color: var(--color-white);
  padding: 10px;
}

.blog {
  position: relative;
  margin: 0 auto;
}
.blog_categoryList {
  margin-bottom: 36px;
}
.blog_item {
  margin-bottom: 56px;
  width: 100%;
}
.blog_pic {
  display: block;
  position: relative;
  margin: 0 auto;
  margin-bottom: 16px;
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}
.blog_pic::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.blog_pic img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog_pic img {
  border-radius: 16px;
}
.blog_date {
  color: var(--color-Dgray_1);
  font-size: 1rem;
  line-height: 1.5;
}
.blog_title {
  margin-top: 3px;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.blog_category span {
  border: 1px solid var(--color-main);
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 3px 11px 2px;
  color: var(--color-Dgray_1);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.blogDetail {
  position: relative;
}
.categoryList {
  position: relative;
}
.categoryList_list {
  display: block;
}
.categoryList_item {
  display: inline-block;
  margin: 0 9px 12px 0;
}
.categoryList_item a {
  display: block;
  border: 1px solid var(--color-main);
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 7px 16px;
  color: var(--color-Dgray_1);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.categoryList_item._current a {
  background-color: var(--color-main);
}

.post {
  position: relative;
}
.post_head {
  border-bottom: 1px solid var(--color-Lgray_2);
  padding-bottom: 48px;
}
.post_mainPic {
  margin-bottom: 56px;
  border-radius: 16px;
  overflow: hidden;
}
.post_date {
  color: var(--color-Mgray_2);
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "PT Sans", sans-serif;
  letter-spacing: 0.08em;
}
.post_title {
  margin: 12px 0;
  color: var(--color-black);
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post_category span {
  display: inline-block;
  border: 1px solid var(--color-main);
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 7px 16px;
  color: var(--color-Dgray_1);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post_body {
  margin-top: 56px;
}
.post_body h3 {
  margin-bottom: 24px;
  color: var(--color-text);
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post_body h4 {
  margin-bottom: 24px;
  color: var(--color-text);
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post_body p {
  margin: 24px 0;
  color: var(--color-text);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post_body table {
  margin: 10px 0;
  border-top: 1px solid var(--color-main) !important;
  border-right: none !important;
  border-bottom: 1px solid var(--color-main) !important;
  border-left: none !important;
  width: 100% !important;
}
.post_body table td:first-child {
  min-width: 120px;
}
.post_body table th, .post_body table td {
  border-top: none !important;
  border-right: none !important;
  border-bottom: 1px solid var(--color-main) !important;
  border-left: none !important;
  padding: 8px;
  width: auto !important;
  width: auto !important;
  text-align: left !important;
}
.post_body table td {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post_body table th, .post_body table tr:first-child {
  background-color: var(--color-sub_2) !important;
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.post_body hr {
  display: block;
  margin: 30px 0;
  border: 0;
  border-top: 1px solid var(--color-Mgray_1);
  width: 100%;
  height: 1px;
}

.clinicInfo {
  position: relative;
  margin: 0 auto;
  background-color: var(--color-white);
}
.clinicInfo_inner {
  padding: 60px 23px 0;
}
.clinicInfo_logo {
  margin-bottom: 16px;
  width: 197px;
}
.clinicInfo_address {
  color: var(--color-black);
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicInfo_contact {
  display: flex;
  margin-top: 10px;
}
.clinicInfo_tel {
  display: flex;
  align-items: center;
  gap: 4px;
  font-style: normal;
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}
.clinicInfo_fax {
  margin: 10px 0 0 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicInfo_title {
  margin-top: 19px;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicInfo_text {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicInfo_map {
  margin-top: 12px;
}
.clinicInfo_map iframe {
  aspect-ratio: 328/200;
  width: 100%;
  height: auto;
}
.clinicInfo_heading {
  margin: 22px 0 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicInfo_note {
  margin-top: 12px !important;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicInfo_list {
  display: none;
}
.clinicInfo_item {
  flex: 1;
}
.clinicInfo_link {
  display: block;
  border-radius: 32px;
  padding: 4px 0;
  color: var(--color-white);
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.clinicInfo_partnership {
  margin-top: 20px;
  color: var(--color-black);
}

.partnership {
  position: relative;
}
.partnership_heading {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.partnership_text {
  margin-top: 3px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.partnership_hospital {
  margin-top: 16px;
  background-color: var(--color-BGgray);
  padding: 10px;
}
.partnership_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.partnership_item {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.clinicSchedule {
  position: relative;
  margin-right: 0;
  margin-left: auto;
}
.clinicSchedule_inner {
  width: 100%;
}
.clinicSchedule_heading {
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicSchedule_note {
  margin-top: 12px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicSchedule col.col-department {
  width: 134px;
}
.clinicSchedule_table {
  margin: 0 0 8px;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.clinicSchedule_table thead th {
  padding: 0 0 10px;
}
.clinicSchedule_table thead ._department {
  display: block;
  margin-right: auto;
  margin-left: 4px;
  text-align: left;
}
.clinicSchedule_table thead ._department span {
  display: inline-block !important;
  margin: 0 2px;
  border-radius: 32px;
  background-color: var(--color-sub_1);
  padding: 5px 6px;
  color: var(--color-white);
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicSchedule_table ._time {
  width: 130px;
}
.clinicSchedule_table ._time span {
  display: block;
  margin-left: 0;
  letter-spacing: 0.1em;
  text-align: center;
}
.clinicSchedule_table tr {
  border-bottom: 1px solid var(--color-main);
  padding: 0;
  width: 94px;
}
.clinicSchedule_table th, .clinicSchedule_table td {
  color: var(--color-text);
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.clinicSchedule_table th._open, .clinicSchedule_table td._open {
  color: var(--color-main);
}
.clinicSchedule._footer .clinicSchedule_table {
  table-layout: fixed;
}
.clinicSchedule._footer .clinicSchedule_heading {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicSchedule._footer col.col-department {
  width: 135px;
}
.clinicSchedule._footer thead th {
  padding: 0 0 10px;
}
.clinicSchedule._footer ._department {
  display: block;
  margin-right: auto;
  margin-left: 4px;
  text-align: left;
}
.clinicSchedule._spnavi thead th {
  padding: 0 0 10px;
}
.clinicSchedule._spnavi col.col-department {
  width: 132px;
}
.clinicSchedule._spnavi ._department {
  display: block;
  margin-right: auto;
  margin-left: 4px;
  text-align: left;
}
.clinicSchedule._access .clinicSchedule_heading {
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.clinicSchedule._access col.col-department {
  width: 135px;
}
.clinicSchedule._access ._department {
  display: block;
  margin-right: auto;
  margin-left: 4px;
  text-align: left;
}

.clinicScheduleNote {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.875rem;
}
.clinicScheduleNote_list {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.clinicScheduleNote_term span {
  display: block;
  border: 1px solid var(--color-sub_1);
  border-radius: 32px;
  background-color: var(--color-sub_2);
  padding: 4px 0;
  width: 86px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.clinicScheduleNote_desc {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.link {
  position: relative;
}
.link_reservations {
  position: relative;
  background-color: var(--color-accent);
}
.link_consultations {
  position: relative;
  background-color: var(--color-sub_1);
}
.link_medical-treatment {
  position: relative;
  background-color: var(--color-sub_3);
}
.link_nolink {
  cursor: default;
  pointer-events: none;
  /* カーソルも変えて無効感を出す */
}
.link_nolink::after {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  content: "";
}
.link_nolink::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: 2;
  content: "準備中";
  color: var(--color-text);
  font-size: 0.75rem;
}

.icon {
  position: relative;
}
.icon_tel {
  background: url("../images/icon_telephone.svg");
  background-position: 0 4px;
  background-size: 30px auto;
  background-repeat: no-repeat;
  width: 30px;
  height: 35px;
}
.icon_tel._small {
  background-position: 0;
  background-size: 24px auto;
  width: 24px;
  height: 24px;
}

.spNav {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  bottom: 0;
  transform: translateY(0);
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  background-color: var(--color-white);
  padding: 0 0 80px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.spNav.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.spNav_inner {
  padding: 30px 0;
}
.spNav_logo {
  margin: 0 0 0 24px;
  max-width: 172px;
}
.spNav_guidance {
  margin: 32px auto 17px;
  padding: 0;
}
.spNav_contactList {
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
  padding: 0 14px;
}
.spNav_listBox ul {
  margin-top: 24px;
}
.spNav_link {
  display: block;
  border-radius: 32px;
  padding: 7px 0;
  color: var(--color-white);
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.spNav_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.spNav_clinicInfo {
  margin: 18px 13px 0;
  border: 1px solid var(--color-main);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 17px 15px;
}

.spNavIcon_list {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 0 10px;
}
.spNavIcon_item {
  position: relative;
  flex: 1;
  flex-direction: column;
  align-items: center;
}
.spNavIcon_item::after {
  display: block;
  position: absolute;
  top: 25px;
  left: 2px;
  z-index: -1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: calc(100% - 23px);
  content: "";
}
.spNavIcon_item picture {
  display: block;
  padding: 0 8px;
}
.spNavIcon_item span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  min-height: 2.4em;
  font-style: normal;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.25;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

.spNavContactList {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
}
.spNavContactList_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
}
.spNavContactList_item {
  flex: 1;
}
.spNavContactList_item:nth-child(2) {
  margin-left: -6px;
}
.spNavContactList_tel {
  margin-top: -10px;
  width: 100%;
}
.spNavContactList_tel span {
  font-style: normal;
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1;
  font-family: "PT Sans", sans-serif;
}

.spNavList_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.spNavList_list._sub {
  margin-top: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.spNavList_item {
  position: relative;
  text-align: center;
}
.spNavList_item:last-child::after {
  display: none;
}

/* ハンバーガーボタン */
#nav-toggle,
.close {
  display: block;
  z-index: 100;
  cursor: pointer;
  margin: 0 !important;
  border-radius: 50%;
  background-color: var(--color-main);
  padding: 0 !important;
  width: 52px;
  height: 52px;
}

#top-head {
  display: block;
}

/* 中の3本線 */
#nav-toggle div {
  position: relative;
  top: 0;
}
#nav-toggle span {
  position: absolute;
  background: var(--color-text);
  width: 20px;
  height: 1px;
}
#nav-toggle span:nth-child(1) {
  top: 19px;
  left: 16px;
}
#nav-toggle span:nth-child(2) {
  top: 25px;
  left: 16px;
}
#nav-toggle span:nth-child(3) {
  top: 31px;
  left: 16px;
}

/* --- オープン時（×アイコン化） --- */
.open #nav-toggle {
  background-color: var(--color-Lgray_1);
}
.open #nav-toggle span {
  display: block;
}
.open #nav-toggle span:nth-child(1) {
  top: 25px;
  left: 14px;
  transform: rotate(315deg);
  width: 24px;
}
.open #nav-toggle span:nth-child(2) {
  display: none;
}
.open #nav-toggle span:nth-child(3) {
  top: 25px;
  left: 14px;
  transform: rotate(-315deg);
  width: 24px;
}

/* --- スクロール固定時 --- */
.is-fixed {
  /* 固定＋オープン */
}
.is-fixed #nav-toggle,
.is-fixed .close {
  position: fixed !important;
  top: 16px;
  right: 36px;
  z-index: 1100;
  width: 48px;
  height: 48px;
}
.is-fixed #nav-toggle span {
  width: 18px;
}
.is-fixed #nav-toggle span:nth-child(1) {
  top: 17px;
  left: 15px;
}
.is-fixed #nav-toggle span:nth-child(2) {
  top: 23px;
  left: 15px;
}
.is-fixed #nav-toggle span:nth-child(3) {
  top: 29px;
  left: 15px;
}
.is-fixed .open #nav-toggle span:nth-child(1) {
  top: 23px;
  left: 15px;
  transform: rotate(315deg);
  width: 18px;
}
.is-fixed .open #nav-toggle span:nth-child(2) {
  display: none;
}
.is-fixed .open #nav-toggle span:nth-child(3) {
  top: 23px;
  left: 15px;
  transform: rotate(-315deg);
  width: 18px;
}

/* --- メニューオープン時 --- */
.menu-open {
  /* メニュー展開＋固定ヘッダー */
}
.menu-open #nav-toggle,
.menu-open .close {
  position: fixed !important;
  top: 25px;
  right: 37px;
  z-index: 1100;
}
.menu-open .is-fixed #nav-toggle,
.menu-open .is-fixed .close {
  top: 16px;
  right: 36px;
}

.spfixed {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  /* iPhoneセーフエリア */
  padding-bottom: env(safe-area-inset-bottom);
}
.spfixed_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.spfixed_item {
  flex: 1;
  text-align: center;
}
.spfixed_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}
.spfixed_item a span {
  font-size: 0.875rem;
  line-height: 1.2;
}
.spfixed_item:last-child {
  flex: 0 0 56px;
}
.spfixed_item._tel {
  background-color: var(--color-main);
  padding: 0 16px;
}
.spfixed_link {
  color: var(--color-white);
}

.mainHeading {
  margin: 42px 24px 0;
}
.mainHeading_inner {
  position: relative;
}
.mainHeading_pic {
  position: relative;
  overflow: hidden;
}
.mainHeading_pic img {
  border-radius: 24px;
}
.mainHeading_heading {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 0 24px 0 0;
  background-color: var(--color-BGbeige);
  padding: 4px 24px 4px 0;
  font-style: normal;
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.08em;
}
.mainHeading::after {
  display: block;
  position: absolute;
  top: -200px;
  left: -150px;
  z-index: -1;
  border-radius: 50%;
  background-color: var(--color-white);
  aspect-ratio: 1/1;
  width: 405px;
  content: "";
}
.mainHeading._blog .mainHeading_inner {
  height: 100px;
}
.mainHeading._blog .mainHeading_heading {
  display: block;
  position: absolute;
  z-index: 2;
  margin: 0 auto;
  border-radius: 0;
  background-color: transparent;
  padding: 8px 0 !important;
  width: 100%;
  font-style: normal;
  text-align: center;
}

.medicalSubject {
  position: relative;
}
.medicalSubject._wide .medicalSubject_list {
  margin: 0 auto;
}
.medicalSubject_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.medicalSubject_item {
  position: relative;
  width: calc(50% - 8px);
}
.medicalSubject_item._active {
  position: relative;
}
.medicalSubject_item._active::after {
  display: block;
  position: absolute;
  bottom: -24px;
  background-color: var(--color-main);
  width: 100%;
  height: 2px;
  content: "";
}
.medicalSubject_item:first-child {
  padding-left: 0;
}
.medicalSubject_item:last-child {
  padding-right: 0;
}
.medicalSubject_item::before {
  display: block;
  position: absolute;
  top: 6vw;
  left: 3px;
  z-index: -1;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: calc(100% - 6vw);
  content: "";
}
.medicalSubject_item span {
  position: absolute;
  top: calc(50% + 16px);
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  min-height: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.25;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
.medicalSubject._link .medicalSubject_list {
  border-bottom: 1px solid var(--color-Lgray_2);
  padding-bottom: 24px;
}

.introduction {
  position: relative;
}
.introduction_inner {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  margin: 0 auto;
  padding: 0;
}
.introduction_heading {
  margin-bottom: 35px;
  margin-left: 22px;
  width: 100%;
}
.introduction_lead {
  align-self: flex-start;
  padding-left: 2.23%;
  min-height: 500px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 5px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: upright;
}
.introduction_textBox {
  flex: 1 1 auto;
  margin: 0;
  margin-top: 72px;
  margin-left: 33px;
  width: 40%;
}
.introduction_text {
  position: relative;
  z-index: 2;
  margin-bottom: 36px;
}
.introduction_pic {
  flex: 0 0 100%;
}
.introduction_pic img {
  border-radius: 16px;
}
.introduction_pic ._pic1 {
  display: none;
}
.introduction_pic ._pic2 {
  position: relative;
  flex: 0 0 100%;
  margin-top: 28px;
  width: 100%;
}

.sideNav_inner {
  padding: 0 0 0 60px;
  width: 100%;
  min-height: 48px;
}
.sideNav_inner._internal-medicine {
  background: url("../images/icon_internal-medicine_sp.png");
  background-position: left center;
  background-size: 48px;
  background-repeat: no-repeat;
}
.sideNav_inner._neurosurgery {
  background: url("../images/icon_neurosurgery_sp.png");
  background-position: left center;
  background-size: 48px;
  background-repeat: no-repeat;
}
.sideNav_inner._gastroenterology {
  background: url("../images/icon_gastroenterology_sp.png");
  background-position: left center;
  background-size: 48px;
  background-repeat: no-repeat;
}
.sideNav_inner._cardiology {
  background: url("../images/icon_cardiology_sp.png");
  background-position: left center;
  background-size: 48px;
  background-repeat: no-repeat;
}
.sideNav_inner._inspection {
  background: url("../images/icon_inspection_sp.png");
  background-position: left center;
  background-size: 48px;
  background-repeat: no-repeat;
}
.sideNav_title a {
  display: block;
  position: relative;
  border-top: 1px solid var(--color-main);
  padding: 17px 20px 16px 0;
  color: var(--color-sub_1);
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.sideNav_title a::after {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  content: "+";
  color: var(--color-black);
  font-weight: bold;
  font-size: 18px;
}
.sideNav_title a.open::after {
  content: "−";
}
.sideNav_list {
  display: block;
  width: auto;
}
.sideNav_item._active {
  background-color: var(--color-white);
}
.sideNav_item:first-child {
  border-top: 1px solid var(--color-main);
}
.sideNav_item:last-child {
  margin-bottom: 0;
}
.sideNav_item a {
  display: block;
  border-bottom: 1px solid var(--color-main);
  padding: 12px 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.heading {
  position: relative;
}
.heading._small {
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.heading._bodyLarge {
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.heading._title {
  font-style: normal;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.24em;
}
.heading._title span::before, .heading._title span::after {
  width: 8px;
  height: 8px;
}
.heading._title span::before {
  left: -24px;
}
.heading._title span::after {
  right: -18px;
}
.heading span {
  display: inline-block;
  position: relative;
}
.heading span::before, .heading span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--color-main);
  width: 6px;
  height: 6px;
  content: "";
}
.heading span::before {
  left: -22px;
}
.heading span::after {
  right: -22px;
}

.subjects {
  position: relative;
  margin: 0 auto;
}
.subjects_box {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "text gap pic";
  -moz-column-gap: 0;
       column-gap: 0;
  justify-content: start;
  align-items: start;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 1080px;
}
.subjects_heading, .subjects_body {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: text;
}
.subjects_heading {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 22px;
}
.subjects_body {
  margin-top: 26px;
  margin-right: 20px;
}
.subjects_body p {
  margin: 0;
}
.subjects_pic {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: pic;
  margin-right: 20px;
  border-radius: 16px;
  max-width: 586px;
  overflow: hidden;
}
.subjects_lead {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.subjects_text {
  width: 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.subjects_text._link {
  margin-left: 10px;
}
.subjects_link {
  display: block;
  margin: 40px auto 0;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
}
.subjects_link span {
  display: inline-block;
  position: relative;
  border-radius: 32px;
  background-color: var(--color-main);
  padding: 8px 41px 8px 23px;
}
.subjects_link span::after {
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  right: 18px;
  background-image: url("../assets/images/icon_arrow.svg");
  background-size: 18px auto;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  content: "";
}

.aboutMedicalSubject {
  position: relative;
}
.aboutMedicalSubject_heading {
  margin: 0 auto 69px;
  text-align: center;
}

.aboutDoctor {
  position: relative;
}
.aboutDoctor_heading {
  margin: 0 auto 56px;
  text-align: center;
}
.doctorTop {
  position: relative;
  margin: 0 auto;
}
.doctorTop_inner {
  display: block;
}
.doctorTop_pic {
  margin: 0 auto;
  max-width: 240px;
  overflow: hidden;
}
.doctorTop_pic img {
  border-radius: 16px;
}
.doctorTop_box {
  flex: 1;
  margin-top: 32px;
}
.doctorTop_subjects {
  margin-bottom: 24px;
  border-left: 4px solid var(--color-main);
  padding-left: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.doctorTop_post {
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
}
.doctorTop_name {
  margin-bottom: 42px;
  font-size: 1.875rem;
  line-height: 1;
  text-align: left;
}
.doctorTop_message P {
  margin: 35px 0 0;
  font-size: 0.875rem;
  line-height: 2.4;
}
.doctorTop_profile {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 30px;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 24px 0 16px;
  width: 100%;
  max-width: 1080px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.doctorTop_qualification {
  margin-top: 24px;
}

.doctorOther {
  position: relative;
}
.doctorOther_inner {
  border-radius: 16px;
  background-color: var(--color-white);
  padding: 40px;
  max-width: 1080px;
}
.doctorOther_item {
  margin-bottom: 48px;
}
.doctorOther_subjects {
  margin-bottom: 24px;
  border-left: 4px solid var(--color-main);
  padding-left: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.doctorOther_name {
  font-size: 1.5rem;
}
.doctorOther_name span {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.doctorOther_pic {
  margin-bottom: 24px;
  width: 100%;
  overflow: hidden;
}
.doctorOther_pic img {
  border-radius: 16px;
}
.doctorOther_note {
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.doctorIntro {
  position: relative;
  margin: 0 auto;
}
.doctorIntro_inner {
  display: block;
}
.doctorIntro_pic {
  margin: 0 auto;
  max-width: 180px;
  overflow: hidden;
}
.doctorIntro_pic img {
  border-radius: 16px;
}
.doctorIntro_box {
  flex: 1;
  margin-top: 32px;
}
.doctorIntro_subjects {
  margin-bottom: 24px;
  border-left: 4px solid var(--color-main);
  padding-left: 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.doctorIntro_post {
  margin-bottom: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
}
.doctorIntro_name {
  margin-bottom: 42px;
  font-size: 1.875rem;
  line-height: 1;
  text-align: left;
}
.doctorIntro_profile {
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 30px;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 24px 0 16px;
  width: 100%;
  max-width: 1080px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.doctorIntro_qualification {
  margin-top: 48px;
}
.career {
  position: relative;
  margin: 0 auto;
}
.career_heading {
  margin-bottom: 17px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.career_list {
  margin-top: 7px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.career_desc {
  flex: 1;
}
.career._other {
  margin-top: 24px;
}
.career._other .career_heading {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.career_note {
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.qualification {
  position: relative;
}
.qualification_heading {
  margin-bottom: 17px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.qualification_heading span {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.qualification_heading:nth-of-type(2) {
  margin-top: 24px;
}
.qualification_item {
  margin-bottom: 6px;
  font-style: normal;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.qualification._other {
  margin-top: 24px;
}
.qualification._other .qualification_heading {
  margin-bottom: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.qualification._other .qualification_item {
  font-size: 0.875rem;
  line-height: 2;
}

.consultationTime {
  position: relative;
}
.consultationTime_text {
  margin: 40px auto;
  width: 402px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.recruit {
  position: relative;
}
.recruit_sec {
  margin-top: 80px;
}
.recruit_heading {
  margin: 0 auto 48px;
  text-align: center;
}
.recruit_maintext {
  font-style: normal;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.75;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}

.tel {
  position: relative;
  border: 1px solid var(--color-main);
  border-radius: 32px;
  background-color: var(--color-white);
  padding: 0 16px;
  height: 34px;
}

#open-chatbot {
  position: fixed;
  right: 10px;
  bottom: 90px;
  z-index: 10;
  width: 100px;
}

.breadcrumb {
  position: relative;
  margin-top: 8px;
  text-decoration: none;
}
.breadcrumb_list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  margin-left: 24px;
  width: 100%;
  overflow-x: scroll;
}
.breadcrumb_list::-webkit-scrollbar {
  display: none;
}
.breadcrumb_item {
  display: flex;
  position: relative;
  flex-shrink: 0;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.breadcrumb_item:first-child::before {
  display: block;
  position: relative;
  margin-right: 0;
  margin-left: 0;
  background: none;
  width: 1px;
  height: 1px;
  content: "";
}
.breadcrumb_item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.breadcrumb_item::before {
  display: block;
  position: relative;
  margin-right: 4px;
  margin-left: 3px;
  background: url("../images/i_arr_breadcrumb.svg") 0 0 no-repeat;
  background-size: contain;
  width: 8px;
  height: 9px;
  content: "";
}
.breadcrumb a {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.breadcrumb_link, .breadcrumb_current {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.breadcrumb_link span, .breadcrumb_current span {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.breadcrumb._blog {
  margin-top: 0;
  margin-right: 0;
  text-align: center;
}
.breadcrumb._blog .breadcrumb_list {
  justify-content: center;
  margin-left: 0 !important;
}

.wp-pagenavi {
  position: relative;
  margin: 80px 0 40px;
  text-align: center;
}

.wp-pagenavi .current {
  border-bottom: 2px solid var(--color-main);
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.wp-pagenavi a, .wp-pagenavi span, .wp-pagenavi .current {
  display: inline-block;
  vertical-align: bottom;
  transition: all 0.6s ease-out;
  margin: 0 20px;
  height: 35px;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-decoration: none;
}
.wp-pagenavi .previouspostslink {
  transform: scaleX(-1);
  margin-right: 36px;
  background-image: url("../images/icon_arrow.svg");
  background-size: 35px 35px;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
}
.wp-pagenavi .nextpostslink {
  margin-left: 36px;
  background-image: url("../images/icon_arrow.svg");
  background-size: 35px 35px;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  ._pc {
    display: none;
  }
  .header.is-fixed {
    display: none;
  }
  .main_head {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
  .homeKv_inner {
    margin-top: 100px;
    margin-bottom: 220px;
    background-position: right -160px top;
  }
  .department_medicalSubject {
    display: none;
  }
  .access_heading {
    margin: 0 auto 32px;
  }
  .access_address {
    margin: 19px auto 16px;
    padding: 16px;
    width: 100%;
    text-align: center;
  }
  .access_map iframe {
    border-radius: 0;
    height: 200px;
  }
  .clinicInfo_Information {
    margin-top: 20px;
  }
  .clinicSchedule._footer .clinicSchedule_heading {
    margin-bottom: 12px;
  }
  .clinicSchedule._footer ._department {
    margin-left: 0;
  }
  .clinicSchedule._footer ._department span {
    padding: 5px;
  }
  .clinicSchedule._footer ._time span {
    width: 130px;
  }
  .clinicSchedule._footer th, .clinicSchedule._footer td {
    padding: 7px 0 7px;
  }
  .clinicSchedule._spnavi .clinicSchedule_heading {
    margin-bottom: 13px;
  }
  .clinicSchedule._spnavi th, .clinicSchedule._spnavi td {
    padding: 7px 0 7px;
  }
  .clinicSchedule._spnavi ._department {
    margin-left: 0;
  }
  .clinicSchedule._spnavi ._department span {
    padding: 5px;
  }
  .clinicSchedule._access .clinicSchedule_heading {
    margin-bottom: 19px;
  }
  .clinicSchedule._access ._time span {
    width: 160px;
  }
  .clinicSchedule._access ._department {
    margin-left: 0;
  }
  .clinicSchedule._access ._department span {
    padding: 5px;
  }
  .mainHeading_pic {
    height: 400px;
  }
  .introduction_text {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 2;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .sideNav_inner:last-of-type::after {
    display: block;
    background-color: var(--color-main);
    width: 100%;
    height: 1px;
    content: "";
  }
  .sideNav_item:last-child a {
    border-bottom: none;
  }
  .sideNav_item a {
    padding: 8px 16px 7px;
    font-style: normal;
    font-weight: 500;
    font-size: 0.8125rem;
    line-height: 1.6;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .subjects_box {
    display: block;
    width: 100%;
  }
  .subjects_heading {
    margin: 0 auto 24px;
    text-align: center;
  }
  .doctorTop_career {
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 20px;
  }
  .consultationTime_text {
    display: none;
  }
  .recruit_heading {
    margin: 0 auto 32px;
  }
  .breadcrumb._blog {
    margin-top: 40px;
    margin-left: 23px;
    text-align: left !important;
  }
  .breadcrumb._blog .breadcrumb_list {
    justify-content: flex-start;
  }
}
@media print, screen and (min-width: 768px) {
  ._sp {
    display: none;
  }
  .swiper-container, .swiper-container2 {
    margin: 2.5rem auto;
    overflow: hidden;
  }
  .swiper-button-prev {
    left: 0 !important;
    margin-left: 40%;
  }
  .swiper-button-next {
    right: 0 !important;
    margin-right: 40%;
  }
  .header {
    display: flex;
    justify-content: space-between;
  }
  .header_logo {
    position: relative;
    margin: 36px 0 0 40px;
    width: 246px;
  }
  .header_nav {
    display: block;
    flex: 0 0 794px;
    margin-top: 24px;
    margin-right: 24px;
    margin-left: auto;
  }
  .header_toggle {
    position: relative;
    top: 0;
    right: 0;
    margin: 25px 37px 0 0;
  }
  .header.is-fixed .header_logo {
    position: relative;
    z-index: 8;
    margin: 24px 0 24px 40px;
    width: 200px;
    min-width: 200px;
  }
  .main._home {
    padding-bottom: 160px;
  }
  .main_inner {
    margin-top: 70px;
  }
  .main_contents {
    box-sizing: border-box;
    margin-top: 160px;
    margin-bottom: 160px;
    padding: 0 40px;
    max-width: calc(1080px + 80px);
  }
  .main_contents._about {
    margin-top: 120px;
  }
  .main_contents._blog {
    margin-top: 108px !important;
  }
  .main_contents._blogDetail {
    margin: 0 auto;
    margin-top: 108px !important;
    margin-bottom: 160px;
    max-width: 920px;
  }
  .footer_copyright {
    margin-top: 0;
    padding-bottom: 40px;
  }
  .headerNav_list {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 0 16px;
  }
  .headerNav_link {
    width: 128px;
    font-size: 0.875rem;
  }
  .headerNav_tel {
    font-size: 1.375rem;
  }
  .globalNav {
    margin: 8px auto 0;
    text-align: center;
  }
  .globalNav_list {
    display: flex;
    justify-content: flex-end;
    gap: 0 32px;
    margin-left: auto;
    width: 100%;
  }
  .globalNav_item {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .home_introduction {
    box-sizing: border-box;
    margin: 0 auto 160px;
    margin-bottom: 160px;
    padding: 120px 40px 0;
    max-width: calc(1080px + 80px);
  }
  .homeKv_inner {
    margin: 71px 80px 79px !important;
    background-position: right center;
    width: calc(100% - 160px);
    height: 600px;
  }
  .homeKv_heading {
    top: calc(156 / 600 * 100%);
    left: calc(103 / 1280 * 100%);
    font-size: 1.875rem;
    line-height: 2;
    letter-spacing: 0.24em;
  }
  .homeKv_icon {
    top: auto;
    /* ← 72 / 1280 = 0.05625 → 5.625% */
    top: calc(389 / 600 * 100%);
    left: calc(72 / 1280 * 100%);
    left: calc(5.625% + 12px);
    margin: 0;
    width: calc(420 / 1280 * 100%);
  }
  .homeKv_clinicSchedule {
    position: absolute;
    top: auto;
    right: -42px;
    bottom: -42px;
    padding: 32px 45px 38px;
    max-width: 564px;
  }
  .homeKv::after {
    top: -16.5277777778vw;
    left: -15.2777777778vw;
    width: 58.2%;
  }
  .homeGuidance_inner {
    padding: 150px 40px 0 40px;
  }
  .homeGuidance_heading {
    margin: 0 auto 72px;
  }
  .homeGuidance_item a {
    padding: 73px 0 57px;
  }
  .homeGuidance_item a:hover {
    background-color: var(--color-white);
  }
  .homeGuidance_item:nth-of-type(1) {
    margin-right: 0;
    margin-bottom: 0;
  }
  .homeGuidance_item:nth-of-type(2) {
    margin-bottom: 0;
    margin-left: 0;
  }
  .homeGuidance_item:nth-of-type(3) {
    margin-top: 0;
    margin-right: 0;
  }
  .homeGuidance_item:nth-of-type(4) {
    margin-top: 0;
    margin-left: 0;
  }
  .homeGuidance_item:nth-of-type(1):before {
    width: calc(100% - 16px);
  }
  .homeGuidance_item:nth-of-type(1):after {
    width: calc(100% - 16px);
  }
  .homeGuidance_item:nth-of-type(2):before {
    width: calc(100% - 16px);
  }
  .homeGuidance_item:nth-of-type(3):before {
    width: calc(100% - 16px);
  }
  .homeGuidance_item:nth-of-type(4):before {
    width: calc(100% - 16px);
  }
  .homeGuidance_item:nth-of-type(4):after {
    width: calc(100% - 16px);
  }
  .homeNews {
    margin: 0 auto;
    max-width: 1160px;
  }
  .homeNews_inner {
    display: flex;
    flex: 0 0 auto;
    padding: 0 40px;
  }
  .homeNews_head {
    margin-right: calc(88 / 1080 * 100%);
    width: 160px;
  }
  .homeNews_heading {
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: left;
  }
  .homeNews_list {
    flex: 1 1 auto;
    margin-top: 0;
    border-top: 1px solid var(--color-main);
    min-width: 0;
  }
  .homeNews_listlink {
    margin-top: 16px;
    margin-left: 0;
  }
  .homeNews_listlink span {
    transition: 0.3s ease;
  }
  .homeNews_listlink span::after {
    transition: 0.3s ease;
  }
  .homeNews_listlink span:hover {
    background-color: var(--color-sub_1);
    color: var(--color-white);
  }
  .homeNews_listlink span:hover::after {
    background-image: url("../images/icon_arrow_w.svg");
  }
  .homeNews_link {
    display: flex;
    gap: 12.2%;
    padding: 23px 34px 23px 16px;
  }
  .homeNews_link:hover {
    background-color: var(--color-white);
  }
  .homeNews_date {
    margin-top: 3px;
    font-size: 1rem;
  }
  .homeServiceHeadache {
    margin-top: 160px;
    max-width: 1440px;
  }
  .homeServiceHeadache_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 64.75% 4.07% 27.12%;
    grid-template-columns: 64.75% 4.07% 27.12%;
        grid-template-areas: "pic gap heading" "pic gap box";
    align-items: start;
    margin: 0 40px;
    padding: 0;
    max-width: 1180px;
  }
  .homeServiceHeadache_heading {
    grid-area: heading;
    margin: 55px auto 0;
  }
  .homeServiceHeadache_pic {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: pic;
    width: 100%;
  }
  .homeServiceHeadache_box {
    grid-area: box;
    margin-top: 76px;
    padding: 0;
  }
  .homeServiceHeadache_box::after {
    top: -35px;
    left: -147.5%;
    width: 262.5%;
    height: calc(100% + 104px);
  }
  .homeServiceHeadache_lead {
    margin: 0;
    padding: 0;
  }
  .homeServiceHeadache_text {
    padding: 0;
  }
  .homeServiceHeadache_link {
    margin: 0 auto;
    margin-top: 32px;
    text-align: center;
  }
  .homeServiceHeadache_link span {
    width: 256px;
  }
  .homeServiceHeadache_link span {
    transition: 0.3s ease;
  }
  .homeServiceHeadache_link span::after {
    transition: 0.3s ease;
  }
  .homeServiceHeadache_link span:hover {
    background-color: var(--color-sub_1);
    color: var(--color-white);
  }
  .homeServiceHeadache_link span:hover::after {
    background-image: url("../images/icon_arrow_w.svg");
  }
  .homeServiceHealthcheck {
    margin-top: 140px;
    max-width: 1440px;
  }
  .homeServiceHealthcheck_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 4.491526% 28.674576% 2.611864% 64.322034%;
    grid-template-columns: 4.491526% 28.674576% 2.611864% 64.322034%;
        grid-template-areas: ". heading gap pic" ". box gap pic";
    justify-content: end;
    align-items: start;
    margin-right: 45px;
    margin-left: auto;
    padding: 0;
    max-width: 1175px;
  }
  .homeServiceHealthcheck_heading {
    grid-area: heading;
    margin: 55px auto 20px;
  }
  .homeServiceHealthcheck_pic {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: pic;
    width: 100%;
  }
  .homeServiceHealthcheck_box {
    grid-area: box;
    margin-top: 55px;
    padding: 0;
  }
  .homeServiceHealthcheck_box::after {
    top: -35px;
    left: -48px;
    width: 250%;
    height: calc(100% + 117px);
  }
  .homeServiceHealthcheck_lead {
    margin-top: 35px;
    padding: 0;
  }
  .homeServiceHealthcheck_text {
    margin-top: 40px;
    padding: 0 5% 0 0;
  }
  .homeServiceHealthcheck_link {
    margin-top: 32px;
  }
  .homeServiceHealthcheck_link span {
    width: 256px;
  }
  .homeServiceHealthcheck_link span {
    transition: 0.3s ease;
  }
  .homeServiceHealthcheck_link span::after {
    transition: 0.3s ease;
  }
  .homeServiceHealthcheck_link span:hover {
    background-color: var(--color-sub_1);
    color: var(--color-white);
  }
  .homeServiceHealthcheck_link span:hover::after {
    background-image: url("../images/icon_arrow_w.svg");
  }
  .homeServiceHomevisit {
    margin-top: 160px;
    max-width: 1440px;
  }
  .homeServiceHomevisit_inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 64.75% 4.07% 27.12%;
    grid-template-columns: 64.75% 4.07% 27.12%;
        grid-template-areas: "pic gap heading" "pic gap box";
    align-items: start;
    margin: 0 40px;
    padding: 0;
    max-width: 1180px;
  }
  .homeServiceHomevisit_heading {
    grid-area: heading;
    margin: 55px auto 0;
  }
  .homeServiceHomevisit_pic {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    grid-area: pic;
    width: 100%;
  }
  .homeServiceHomevisit_box {
    grid-area: box;
    margin-top: 76px;
    padding: 0;
  }
  .homeServiceHomevisit_box::after {
    top: -35px;
    left: -147.5%;
    width: 262.5%;
    height: calc(100% + 104px);
  }
  .homeServiceHomevisit_lead {
    margin: 0;
    padding: 0;
  }
  .homeServiceHomevisit_text {
    padding: 0;
  }
  .homeServiceHomevisit_link {
    margin: 0 auto;
    margin-top: 32px;
    text-align: center;
  }
  .homeServiceHomevisit_link span {
    width: 256px;
  }
  .homeServiceHomevisit_link span {
    transition: 0.3s ease;
  }
  .homeServiceHomevisit_link span::after {
    transition: 0.3s ease;
  }
  .homeServiceHomevisit_link span:hover {
    background-color: var(--color-sub_1);
    color: var(--color-white);
  }
  .homeServiceHomevisit_link span:hover::after {
    background-image: url("../images/icon_arrow_w.svg");
  }
  .homeService_inner {
    margin: 140px 40px 0;
  }
  .homeService_heading {
    margin: 0 auto 5px;
  }
  .homeService_lead span {
    font-style: normal;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .homeService_lead {
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.75;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .homeService_box {
    padding: 56px 43px 40px;
  }
  .homeService_text {
    padding: 0;
    text-align: center;
  }
  .homeServiceCategory {
    padding: 32px 48px;
  }
  .homeServiceCategory_list {
    display: flex;
  }
  .homeServiceCategory_item {
    display: flex;
    flex: 1;
    flex-direction: column;
    margin-right: 32px;
    margin-bottom: 0;
    border-right: 1px dotted var(--color-Lgray_2);
    padding-right: 32px;
  }
  .homeServiceCategory_pic {
    margin: 0;
  }
  .homeServiceCategory_text {
    margin-bottom: 32px;
  }
  .homeServiceCategory_link {
    margin: 33px auto 0;
  }
  .homeServiceCategory_link span {
    width: 216px;
  }
  .homeServiceCategory_link {
    font-style: normal;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .homeKvIcon_item::after {
    transition: 0.3s ease;
  }
  .homeKvIcon_item::after {
    top: 1vw;
    height: calc(100% - 1vw);
  }
  .homeKvIcon_item span {
    position: absolute;
    top: calc(50% + 16px);
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    min-height: auto;
    font-size: clamp(13px, 1.111vw, 16px);
  }
  .homeKvIcon_item:hover::after {
    display: block;
    position: absolute;
    top: 1.2vw;
    left: 2px;
    z-index: -1;
    border-radius: 50%;
    background-color: rgba(174, 213, 141, 0.2);
    width: 100%;
    height: calc(100% - 1vw);
    content: "";
  }
  .homeBlog {
    margin: 0 auto;
    max-width: 1404px;
  }
  .homeBlog_inner {
    padding: 160px 40px 0;
  }
  .homeBlog_heading {
    margin: 0 auto 48px;
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .homeBlog_list {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin: 0;
  }
  .homeBlog_item {
    flex: 0 0 calc((100% - 64px) / 3);
    margin: 0;
    padding: 3.021% 4.5317% 3.399%;
  }
  .homeBlog_link {
    margin: 56px auto 0;
    text-align: center;
  }
  .homeBlog_link span {
    transition: 0.3s ease;
  }
  .homeBlog_link span::after {
    transition: 0.3s ease;
  }
  .homeBlog_link span:hover {
    background-color: var(--color-sub_1);
    color: var(--color-white);
  }
  .homeBlog_link span:hover::after {
    background-image: url("../images/icon_arrow_w.svg");
  }
  .department_inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    margin: 0 auto;
  }
  .department_heading {
    margin: 0 auto 70px;
  }
  .department_body .symptoms_list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 30px;
  }
  .department_body .symptoms_item {
    display: block;
    margin: 0;
    padding: 8px 5px;
    width: calc((100% - 60px) / 3);
  }
  .department_side {
    padding: 0;
    width: 280px;
  }
  .about_introduction {
    margin: 0 auto;
  }
  .about_medicalSubject {
    margin-top: 160px;
  }
  .about_subjects {
    margin-top: 160px;
  }
  .about_doctor {
    margin: 160px 0 0;
  }
  .doctor_inner {
    margin: 160px 0;
  }
  .equipment_sec {
    margin: 160px auto;
  }
  .equipment_heading {
    margin: 0 auto 72px;
  }
  .equipment_list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 24px;
  }
  .equipment_item {
    margin-bottom: 0;
    width: calc((100% - 48px) / 3);
    text-align: left;
  }
  .equipment_caption {
    margin-top: 16px;
  }
  .access_sec {
    margin-top: 160px;
  }
  .access_tel {
    margin: 4px auto 0;
  }
  .access_clinicInfo {
    padding: 96px 211px 56px;
  }
  .blog_categoryList {
    margin-bottom: 136px;
  }
  .blog_list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 72px;
  }
  .blog_item {
    box-sizing: border-box;
    width: calc((100% - 148px) / 3);
    text-align: left;
    text-indent: 0;
  }
  .categoryList_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 24px;
  }
  .categoryList_item {
    margin: 0;
  }
  .categoryList_item a {
    padding: 6px 32px;
  }
  .post_title {
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .post_category span {
    padding: 6px 32px;
  }
  .post_body h3 {
    color: var(--color-black);
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.75;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .post_body h4 {
    color: var(--color-black);
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .clinicInfo_inner {
    display: flex;
    gap: 11.6667%;
    margin: 0 auto;
    padding: 96px 40px 40px;
    max-width: 1160px;
  }
  .clinicInfo_place {
    flex: 0 0 38.8889%;
    margin-top: 20px;
  }
  .clinicInfo_logo {
    margin-bottom: 32px;
    width: 246px;
  }
  .clinicInfo_Information {
    flex: 0 0 49.4444%;
  }
  .clinicInfo_map iframe {
    width: 100%;
    height: 304px;
  }
  .clinicInfo_heading {
    margin: 0 0 7px;
  }
  .clinicInfo_list {
    display: flex;
    gap: 15px;
    margin-top: 36px;
  }
  .clinicInfo_partnership {
    margin-top: 34px;
  }
  .partnership_hospital {
    padding: 15px 54px;
  }
  .clinicSchedule_heading {
    margin-bottom: 21px;
  }
  .clinicSchedule col.col-department {
    width: 140px;
  }
  .clinicSchedule_table thead th {
    padding: 0 0 8px;
  }
  .clinicSchedule_table thead ._department {
    margin-left: 4px;
  }
  .clinicSchedule_table ._time span {
    width: 140px;
  }
  .clinicSchedule_table tr {
    padding: 0;
    width: 175px;
  }
  .clinicSchedule_table th, .clinicSchedule_table td {
    padding: 7px 0;
    font-size: 0.875rem;
  }
  .clinicSchedule._footer .clinicSchedule_heading {
    margin-bottom: 8px;
  }
  .clinicSchedule._footer col.col-department {
    width: 168px;
  }
  .clinicSchedule._footer thead th {
    padding: 0 0 8px;
  }
  .clinicSchedule._footer ._department span {
    padding: 5px 10px;
  }
  .clinicSchedule._footer ._time span {
    width: 158px;
  }
  .clinicSchedule._footer th, .clinicSchedule._footer td {
    padding: 3px 0;
  }
  .clinicSchedule._spnavi col.col-department {
    width: 168px;
  }
  .clinicSchedule._spnavi th, .clinicSchedule._spnavi td {
    padding: 3px 0;
  }
  .clinicSchedule._spnavi ._department span {
    padding: 5px 10px;
  }
  .clinicSchedule._access .clinicSchedule_heading {
    margin-bottom: 19px;
  }
  .clinicSchedule._access col.col-department {
    width: 196px;
  }
  .clinicSchedule._access ._time span {
    width: 160px;
  }
  .clinicSchedule._access ._department span {
    padding: 5px 10px;
  }
  .icon_tel {
    background-position: 0;
    background-size: 24px auto;
    width: 24px;
    height: 24px;
  }
  .spNav_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0;
    padding: 0 20px;
    width: 100%;
    max-width: 1000px;
  }
  .spNav_logo {
    margin: 0 auto 60px;
    max-width: 294px;
  }
  .spNav_guidance {
    margin: 0 auto;
  }
  .spNav_contactList {
    display: flex;
    justify-content: center;
    margin: 48px auto 74px !important;
  }
  .spNav_clinicInfo {
    display: none;
  }
  .spNavIcon_list {
    gap: 40px;
    margin: 0;
    padding: 0;
  }
  .spNavIcon_item::after {
    transition: 0.3s ease;
  }
  .spNavIcon_item picture {
    padding: 0;
  }
  .spNavIcon_item picture img {
    width: 100%;
    max-width: 160px;
  }
  .spNavIcon_item span {
    position: absolute;
    top: calc(50% + 18px);
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    min-height: auto;
    font-size: 1.125rem;
  }
  .spNavIcon_item:hover::after {
    display: block;
    position: absolute;
    top: 25px;
    left: 2px;
    z-index: -1;
    border-radius: 50%;
    background-color: rgba(174, 213, 141, 0.2);
    width: 100%;
    height: calc(100% - 23px);
    content: "";
  }
  .spNavContactList {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 628px;
  }
  .spNavContactList_list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .spNavContactList_item {
    width: 118px;
  }
  .spNavContactList_tel {
    margin: 0;
    padding: 0;
  }
  .spNavContactList_tel span {
    font-size: 1.375rem;
  }
  .spNavList_list {
    gap: 44px;
  }
  .spNavList_list._sub {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .spNavList_item {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .spNavList_item::after {
    position: absolute;
    top: calc(50% - 7px);
    right: -22px;
    transform: rotate(-150deg);
    transform-origin: center;
    background-color: var(--color-text);
    width: 1px;
    height: 16px;
    content: "";
  }
  #nav-toggle,
.close {
    position: relative;
    width: 64px;
    height: 64px;
  }
  #nav-toggle span {
    width: 24px;
    height: 1px;
  }
  #nav-toggle span:nth-child(1) {
    top: 23px;
    left: 20px;
  }
  #nav-toggle span:nth-child(2) {
    top: 31px;
    left: 20px;
  }
  #nav-toggle span:nth-child(3) {
    top: 39px;
    left: 20px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 31px;
    left: 20px;
    transform: rotate(315deg);
    width: 24px;
  }
  .open #nav-toggle span:nth-child(2) {
    display: none;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 31px;
    left: 20px;
    transform: rotate(-315deg);
    width: 25px;
  }
  .spfixed {
    display: none;
  }
  .mainHeading {
    margin: 0 80px;
  }
  .mainHeading_heading {
    padding: 8px 42px 8px 48px;
    letter-spacing: 0.24em;
  }
  .mainHeading::after {
    top: -27.7777777778vw;
    left: -20.8333333333vw;
    width: 58.2%;
  }
  .mainHeading._blog .mainHeading_inner {
    height: 194px;
  }
  .medicalSubject._wide .medicalSubject_list {
    max-width: 960px;
  }
  .medicalSubject._wide .medicalSubject_list {
    max-width: 960px;
  }
  .medicalSubject_list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    max-width: 760px;
  }
  .medicalSubject_item {
    flex: 1;
  }
  .medicalSubject_item::before {
    transition: 0.3s ease;
  }
  .medicalSubject_item::before {
    top: 1.4vw;
    top: 24px;
    height: calc(100% - 24px);
  }
  .medicalSubject_item span {
    position: absolute;
    top: calc(50% + 18px);
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    min-height: auto;
    font-size: 1.125rem;
  }
  .medicalSubject_item:hover::before {
    display: block;
    position: absolute;
    top: 25px;
    left: 2px;
    z-index: -1;
    border-radius: 50%;
    background-color: rgba(174, 213, 141, 0.2);
    width: 100%;
    height: calc(100% - 23px);
    content: "";
  }
  .introduction {
    margin: 0 auto;
  }
  .introduction_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 11.73%;
    max-width: 1148px;
    min-height: 856px;
  }
  .introduction_heading {
    margin-bottom: 0;
    margin-left: 22px;
  }
  .introduction_lead {
    position: absolute;
    top: 109px;
    left: 68px;
    flex: 1 1 0;
    padding-left: 0;
    font-size: 1.625rem;
    line-height: 1.9;
    letter-spacing: 5px;
  }
  .introduction_textBox {
    position: absolute;
    top: 63px;
    left: 250px;
    flex: 1 1 50%;
    margin-left: 0;
  }
  .introduction_text {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 2.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .introduction_pic ._pic1 {
    display: block;
    position: absolute;
    top: 120px;
    right: 10px;
    z-index: 1;
    width: calc(284 / 1080 * 100%);
  }
  .introduction_pic ._pic2 {
    position: absolute;
    right: 152px;
    bottom: 0;
    width: calc(641 / 1080 * 100%);
  }
  .sideNav_inner {
    display: block;
    background: none !important;
    padding: 0;
    min-height: 0;
  }
  .sideNav_title a {
    display: block;
    position: relative;
    border-top: none;
    padding: 0 20px 8px;
    color: var(--color-sub_1);
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .sideNav_title a::after {
    display: none;
  }
  .sideNav_title a:before {
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    left: 0;
    transform: scaleY(-1);
    background: url("../images/icon_arrow-nav.svg");
    background-position: 0 0;
    background-size: 12px 8px;
    background-repeat: no-repeat;
    width: 12px;
    height: 8px;
    content: "";
  }
  .sideNav_title a.open:before {
    transform: scaleY(1);
  }
  .sideNav_item:last-child {
    margin-bottom: 18px;
  }
  .sideNav_item a:hover {
    background-color: var(--color-white) !important;
  }
  .heading._small {
    font-style: normal;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .subjects_box {
    -ms-grid-columns: 38.889% 6.852% 54.259%;
    grid-template-columns: 38.889% 6.852% 54.259%;
  }
  .subjects_body {
    margin-top: 83px;
    margin-right: 0;
  }
  .subjects_pic {
    margin-right: 0;
  }
  .subjects_lead {
    margin-bottom: 24px !important;
    font-style: normal;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .subjects_text {
    max-width: 400px;
  }
  .subjects_text._link {
    margin-left: 0;
  }
  .subjects_link {
    margin-top: 40px;
    text-align: left;
  }
  .subjects_link span {
    transition: 0.3s ease;
  }
  .subjects_link span::after {
    transition: 0.3s ease;
  }
  .subjects_link span:hover {
    background-color: var(--color-sub_1);
    color: var(--color-white);
  }
  .subjects_link span:hover::after {
    background-image: url("../assets/images/icon_arrow_w.svg");
  }
  .doctorTop_inner {
    display: flex;
    gap: 104px;
  }
  .doctorTop_box {
    margin-top: 0;
  }
  .doctorTop_profile {
    display: flex;
    margin-top: 60px;
    padding: 24px 0 30px;
  }
  .doctorTop_career {
    margin-right: 0;
    padding-right: 9.167%;
    width: 50%;
  }
  .doctorTop_qualification {
    box-sizing: border-box;
    margin-top: 0;
    border-left: 1px solid #D9D9D9;
    padding-left: 9.167%;
    width: 50%;
  }
  .doctorOther_inner {
    padding: 80px;
  }
  .doctorOther_list {
    display: flex;
    gap: 7.4%;
    padding: 0 7.4% 0 0;
  }
  .doctorOther_item {
    display: flex;
    flex: 0 0 50%;
    box-sizing: border-box;
    margin-bottom: 0;
  }
  .doctorOther_pic {
    margin-bottom: 0;
    width: 240px;
  }
  .doctorIntro_inner {
    display: flex;
    gap: 40px;
  }
  .doctorIntro_box {
    margin-top: 0;
  }
  .doctorIntro_profile {
    margin-top: 60px;
    padding: 24px 0 30px;
  }
  .career_list {
    display: flex;
    align-items: center;
  }
  .career_term {
    width: 104px;
  }
  .recruit_inner {
    min-height: 200px;
  }
  .recruit_sec {
    margin-top: 160px;
  }
  #open-chatbot {
    bottom: 20px;
    left: 20px;
    width: 140px;
  }
  .breadcrumb {
    margin-right: 80px;
  }
  .breadcrumb_list {
    justify-content: flex-end;
    margin-left: 0;
    overflow-x: hidden;
  }
  .homeServiceHeadache_inner > .subjects_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .homeServiceHealthcheck_inner > .subjects_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
  }
  .homeServiceHomevisit_inner > .subjects_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
}
@media print, screen and (min-width: 768px){
  .homeServiceHeadache_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .homeServiceHealthcheck_inner > .homeServiceHeadache_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .homeServiceHomevisit_inner > .homeServiceHeadache_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .homeServiceHeadache_inner > .homeServiceHeadache_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .homeServiceHealthcheck_inner > .homeServiceHeadache_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
  }
  .homeServiceHomevisit_inner > .homeServiceHeadache_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .homeServiceHeadache_box {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .homeServiceHealthcheck_inner > .homeServiceHeadache_box {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .homeServiceHomevisit_inner > .homeServiceHeadache_box {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .homeServiceHealthcheck_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .homeServiceHealthcheck_inner > .homeServiceHealthcheck_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .homeServiceHomevisit_inner > .homeServiceHealthcheck_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .homeServiceHeadache_inner > .homeServiceHealthcheck_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .homeServiceHealthcheck_inner > .homeServiceHealthcheck_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
  }
  .homeServiceHomevisit_inner > .homeServiceHealthcheck_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .homeServiceHealthcheck_box {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .homeServiceHealthcheck_inner > .homeServiceHealthcheck_box {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .homeServiceHomevisit_inner > .homeServiceHealthcheck_box {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .homeServiceHomevisit_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .homeServiceHealthcheck_inner > .homeServiceHomevisit_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .homeServiceHomevisit_inner > .homeServiceHomevisit_heading {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .homeServiceHeadache_inner > .homeServiceHomevisit_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .homeServiceHealthcheck_inner > .homeServiceHomevisit_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 4;
  }
  .homeServiceHomevisit_inner > .homeServiceHomevisit_pic {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  .homeServiceHomevisit_box {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
  .homeServiceHealthcheck_inner > .homeServiceHomevisit_box {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  .homeServiceHomevisit_inner > .homeServiceHomevisit_box {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1080px) {
  .header {
    display: flex;
    justify-content: space-between;
  }
  .header_logo {
    position: relative;
    margin: 36px 10px 0 40px;
    max-width: 246px;
  }
  .header_nav {
    display: block;
    flex: 0 0 784px;
    margin-top: 24px;
    margin-right: 24px;
    margin-left: auto;
  }
  .header_toggle {
    position: relative;
    top: 0;
    right: 0;
    margin: 25px 37px 0 0;
  }
  .header.is-fixed .header_logo {
    position: relative;
    margin: 24px 0 24px 40px;
    width: 200px;
    min-width: auto;
  }
  .headerNav_list {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 0 16px;
  }
  .headerNav_link {
    width: 128px;
    /*font-size: vw(14);
    width: vw(128);*/
    font-size: 0.875rem;
  }
  .headerNav_tel {
    font-size: 1.375rem;
  }
  .globalNav {
    margin: 6px auto 0;
    text-align: center;
  }
  .globalNav_list {
    display: flex;
    justify-content: flex-end;
    gap: 0 44px;
    margin-left: auto;
    width: 100%;
  }
  .globalNav_item {
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
  .homeKv_inner {
    margin: 41px 40px 79px;
    background-position: right center;
    height: 600px;
  }
  .homeKv_heading {
    top: calc(156 / 600 * 100%);
    left: calc(103 / 1280 * 100%);
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.24em;
  }
  .homeKv_icon {
    top: auto;
    top: calc(389 / 600 * 100%);
    left: calc(72 / 1280 * 100%);
    margin: 0;
    width: calc(420 / 1280 * 100%);
  }
  .homeKv_clinicSchedule {
    position: absolute;
    top: auto;
    right: -42px;
    bottom: -42px;
    padding: 32px 45px 38px;
    width: 60%;
  }
  .homeGuidance_heading {
    margin: 0 auto 72px;
  }
  .homeNews {
    margin: 0 auto;
    max-width: 1160px;
  }
  .homeNews_inner {
    padding: 0 24px;
  }
  .homeNews_head {
    margin-right: calc(88 / 1080 * 100%);
    width: 160px;
  }
  .homeNews_list {
    flex: 1;
    margin-top: 0;
    border-top: 1px solid var(--color-main);
    min-width: 0;
  }
  .homeNews_listlink {
    margin-top: 16px;
  }
  .homeNews_date {
    font-size: 1rem;
  }
  .homeServiceHeadache {
    margin-top: 160px;
  }
  .homeServiceHeadache_inner {
    display: block;
    margin: 0;
    padding: 0 24px;
  }
  .homeServiceHeadache_heading {
    margin: 55px auto 24px;
    text-align: center;
  }
  .homeServiceHeadache_pic {
    width: 94.19%;
  }
  .homeServiceHeadache_box {
    z-index: 1;
    width: 100%;
  }
  .homeServiceHeadache_box::after {
    top: -164px;
    left: 20px;
    width: calc(100% - 24px);
    height: calc(100% + 191px);
  }
  .homeServiceHeadache_lead {
    margin: 26px 0 0;
    padding-right: 6%;
    padding-left: 12.7%;
  }
  .homeServiceHeadache_text {
    padding-right: 6%;
    padding-left: 12.7%;
  }
  .homeServiceHeadache_link span {
    width: 256px;
  }
  .homeServiceHealthcheck_inner {
    display: block;
    margin: 0;
    padding: 0 24px;
  }
  .homeServiceHealthcheck_heading {
    margin: 55px auto 24px;
    text-align: center;
  }
  .homeServiceHealthcheck_pic {
    position: relative;
    z-index: 2;
    width: 94.19%;
  }
  .homeServiceHealthcheck_box {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .homeServiceHealthcheck_box::after {
    top: -164px;
    left: 20px;
    width: calc(100% - 24px);
    height: calc(100% + 191px);
  }
  .homeServiceHealthcheck_lead {
    margin: 26px 0 0;
    padding-right: 6%;
    padding-left: 12.7%;
  }
  .homeServiceHealthcheck_text {
    padding-right: 6%;
    padding-left: 12.7%;
  }
  .homeServiceHealthcheck_link span {
    width: 256px;
  }
  .homeServiceHomevisit {
    margin-top: 160px;
  }
  .homeServiceHomevisit_inner {
    display: block;
    margin: 0;
    padding: 0 24px;
  }
  .homeServiceHomevisit_heading {
    margin: 55px auto 24px;
    text-align: center;
  }
  .homeServiceHomevisit_pic {
    width: 94.19%;
  }
  .homeServiceHomevisit_box {
    z-index: 1;
    width: 100%;
  }
  .homeServiceHomevisit_box::after {
    top: -164px;
    left: 20px;
    width: calc(100% - 24px);
    height: calc(100% + 191px);
  }
  .homeServiceHomevisit_lead {
    margin: 26px 0 0;
    padding-right: 6%;
    padding-left: 12.7%;
  }
  .homeServiceHomevisit_text {
    padding-right: 6%;
    padding-left: 12.7%;
  }
  .homeServiceHomevisit_link span {
    width: 256px;
  }
  .homeServiceCategory_link span {
    padding: 9px 10px 8px;
    width: auto;
  }
  .homeServiceCategory_link {
    width: 100%;
  }
  .department_inner {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
    margin: 0 auto;
  }
  .department_body .symptoms_list {
    display: block;
  }
  .department_body .symptoms_item {
    display: inline-block;
    margin: 4px;
    padding: 8px 16px;
    width: auto;
  }
  .department_side {
    padding: 0;
    width: 25.92%;
  }
  .about_introduction {
    margin: 0 auto;
  }
  .about_medicalSubject {
    margin-top: 160px;
  }
  .access_clinicInfo {
    padding: 8.89% 19.54%;
  }
  .blog_list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 72px;
  }
  .blog_item {
    box-sizing: border-box;
    width: calc((100% - 72px) / 2);
    text-align: left;
    text-indent: 0;
  }
  .clinicInfo_heading {
    margin: 0 0 7px;
  }
  .clinicSchedule_heading {
    margin-bottom: 21px;
  }
  .clinicSchedule col.col-department {
    width: 138px;
  }
  .clinicSchedule_table thead ._department {
    margin-left: 8px;
  }
  .clinicSchedule_table ._time span {
    width: 140px;
  }
  .clinicSchedule_table tr {
    padding: 0 1.1111111111vw;
    width: 11.9444444444vw;
  }
  .clinicSchedule_table th, .clinicSchedule_table td {
    padding: 0.8333333333vw 0;
    font-size: 0.875rem;
  }
  .clinicSchedule._footer col.col-department {
    width: 160px;
  }
  .clinicSchedule._spnavi col.col-department {
    width: 160px;
  }
  .clinicSchedule._access col.col-department {
    width: 180px;
  }
  .spNav_logo {
    margin: 0 auto 60px;
    max-width: 294px;
  }
  .spNav_contactList {
    display: flex;
    justify-content: center;
    margin: 48px auto 74px !important;
  }
  .spNavIcon_list {
    gap: 20px;
  }
  .spNavContactList {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .spNavList_list {
    gap: 32px;
  }
  #nav-toggle,
.close {
    position: relative;
    width: 64px;
    height: 64px;
  }
  #nav-toggle span {
    width: 24px;
    height: 1px;
  }
  #nav-toggle span:nth-child(1) {
    top: 23px;
    left: 20px;
  }
  #nav-toggle span:nth-child(2) {
    top: 31px;
    left: 20px;
  }
  #nav-toggle span:nth-child(3) {
    top: 39px;
    left: 20px;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 30px;
    left: 20px;
    transform: rotate(315deg);
    width: 24px;
  }
  .open #nav-toggle span:nth-child(2) {
    display: none;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 30px;
    left: 20px;
    transform: rotate(-315deg);
    width: 25px;
  }
  .mainHeading {
    margin: 0 40px;
  }
  .medicalSubject_list {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin: 0 auto;
    max-width: 760px;
  }
  .medicalSubject_item {
    flex: 1;
  }
  .medicalSubject_item::before {
    top: 2.2vw;
    height: calc(100% - 2.2vw);
  }
  .introduction {
    margin: 0 auto;
  }
  .introduction_inner {
    display: flex;
    flex-wrap: wrap;
    gap: 11.73%;
    max-width: 1148px;
    min-height: 856px;
  }
  .introduction_lead {
    position: absolute;
    top: 106px;
    left: 80px;
    flex: 1 1 0;
    padding-left: 0;
    font-size: 1.375rem;
    line-height: 1.9;
    letter-spacing: 5px;
  }
  .introduction_textBox {
    position: absolute;
    top: 105px;
    left: 250px;
    flex: 1 1 50%;
    margin-left: 0;
  }
  .introduction_pic ._pic1 {
    display: block;
    position: absolute;
    top: 120px;
    right: 0;
    z-index: 1;
    width: 22%;
    max-width: 220px;
  }
  .introduction_pic ._pic2 {
    position: absolute;
  }
  .sideNav_inner {
    display: block;
  }
  .subjects_box {
    -ms-grid-columns: 44.889% 2.852% 52.259%;
    grid-template-columns: 44.889% 2.852% 52.259%;
  }
  .breadcrumb_list {
    justify-content: flex-end;
    margin-left: 0;
    overflow-x: hidden;
  }
}
@media print, screen and (max-width: 1080px) {
  .header_nav {
    display: none;
  }
  .header.is-fixed .header_logo {
    position: relative;
    margin: 24px 0 24px 40px;
    width: 200px;
    min-width: auto;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .homeGuidance_item a {
    transition: 0.3s ease;
  }
  .homeNews_link {
    transition: 0.3s ease;
  }
  .sideNav_item a {
    transition: 0.3s ease;
  }
}
