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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*========================================================
 診療時間表
========================================================*/
.medical-hour .time-content .timeTable {
  margin-bottom: 8px;
}
.medical-hour .time-content table {
  width: 100%;
  font-size: 15px;
}
.medical-hour .time-content table th, .medical-hour .time-content table td {
  padding: 6px 0;
}
.medical-hour .time-content table thead {
  font-weight: 500;
}
.medical-hour .time-content table thead tr {
  background: rgba(199, 22, 29, 0.1);
  border-top: 0.05rem solid #231815;
  border-bottom: 0.05rem solid #231815;
}
.medical-hour .time-content table thead th:nth-child(1) {
  width: 34%;
  border-radius: 4px 0 0 4px;
}
.medical-hour .time-content table thead th:nth-child(n+2) {
  width: calc(66% / 6);
}
.medical-hour .time-content table thead th:last-child {
  border-radius: 0 4px 4px 0;
}
.medical-hour .time-content table tbody {
  font-size: 13px;
}
.medical-hour .time-content table tbody tr {
  border-bottom: 0.05rem solid #231815;
}
.medical-hour .time-content table tbody th {
  font-weight: 500;
  letter-spacing: 0;
  border-right: 0.05rem solid #231815;
  vertical-align: middle;
  padding-right: 6px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .medical-hour .time-content table tbody th {
    line-height: inherit;
  }
}
.medical-hour .time-content table tbody td {
  position: relative;
  vertical-align: middle;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .medical-hour .time-content table tbody td {
    line-height: inherit;
  }
}
.medical-hour .time-content table tbody td.open::after, .medical-hour .time-content table tbody td.close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.medical-hour .time-content table tbody td.open::after {
  content: '';
  background-color: #231815;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.medical-hour .time-content table tbody td.close::after {
  content: '×';
  color: #c7161d;
  font-weight: 700;
}
.medical-hour .time-content table tbody td.dr {
  white-space: nowrap;
  letter-spacing: 0;
  padding-left: 6px;
  padding-right: 6px;
  border-right: 0.05rem solid #231815;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .medical-hour .time-content table tbody td.txt {
    white-space: nowrap;
  }
}
.medical-hour .time-info p {
  position: relative;
  display: inline-block;
  font-weight: 500;
  font-size: fz-prct(84);
  color: #c7161d;
}
.medical-hour .time-info p::before, .medical-hour .time-info p::after {
  content: '';
  background-color: #c7161d;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.medical-hour .time-info p::after {
  bottom: -4px;
}

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

/*========================================================
 FONT
========================================================*/
.all-title {
  font-size: min(5.13vw, 24px);
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  position: relative;
  display: inline-block;
  margin-bottom: 1.8rem;
}
.all-title::after {
  content: '';
  background-color: #c7161d;
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.all-catch {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: #ae9373;
  font-size: min(5.6vw, 28px);
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

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

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

main {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fdf7f3;
}
@media screen and (min-width: 768px) {
  main {
    padding-left: 0;
    padding-right: 0;
  }
}
main .section {
  padding: var(--padding-tb);
}
main .section:last-of-type {
  padding: 0;
  padding-top: var(--padding);
  padding-bottom: min(calc(20.51vw + 6vw), calc(170px + 120px));
}

.btn-wrap .btn {
  display: inline-block;
  color: #231815;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  transition: all .4s ease;
  font-size: 15px;
}
.btn-wrap .btn:hover {
  color: #c7161d;
}
.btn-wrap .btn:hover span::after {
  left: calc(100% + 10px);
  background-image: url("../image/arrow-mc.svg");
}
.btn-wrap .btn span {
  position: relative;
  display: inline-block;
  padding-left: 18px;
  transition: all .4s .1s ease;
}
.btn-wrap .btn span::after {
  content: '';
  background-image: url("../image/arrow-mc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transition: all .4s ease;
}

.full-bg {
  background-color: #fdf7f3;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.multi-column {
  display: flex;
  flex-direction: column;
}

.ex-info li {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.ex-info li:last-child {
  margin-bottom: 0;
}
.ex-info li::before {
  content: '';
  background-color: #c7161d;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

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

/*========================================================
 footer
========================================================*/
.footer {
  background-color: #f9efe9;
  position: relative;
  mix-blend-mode: multiply;
  padding-bottom: 4rem;
}
.footer::before {
  content: '';
  background-image: url("../image/bg-nobu-wave.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: min(20.51vw, 170px);
  position: absolute;
  top: max(-20vw, -170px);
  left: 0;
}
.footer-info .ci {
  width: 300px;
  height: 66px;
  margin-bottom: 10px;
}
.footer-info .address {
  font-size: 14px;
}
.footer-info .tel {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.footer-info .tel a {
  color: #231815;
}
.footer-nav {
  padding: 1rem 0;
}
.footer-nav-item {
  border-bottom: 0.05rem solid #231815;
}
.footer-nav-item:first-child {
  border-top: 0.05rem solid #231815;
}
.footer-nav-item a {
  color: #231815;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: min(3.47vw, 14px);
  padding: 12px 0;
  display: block;
  line-height: 1;
}
.footer-nav-item a:hover {
  color: #e07f00;
}
.footer .copyright {
  font-size: 10px;
}
@media screen and (min-width: 1024px) {
  .footer .multi-column {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-nav-list {
    display: flex;
  }
  .footer-nav-item {
    border-bottom: none;
  }
  .footer-nav-item:first-child {
    border-top: none;
  }
  .footer-nav-item a {
    padding: 10px;
  }
}

/* キャラクター追加 */
.f-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background-color: #c7161d;
  border-radius: 0 0 1rem 1rem;
}
.f-layer::after {
  content: '';
  background-image: url("../image/nobu-charactor.svg");
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  width: min(59.2vw, 292px);
  height: min(32.53vw, 160px);
  bottom: 19px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/*========================================================
 pagetop
========================================================*/
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 10px;
  z-index: 99;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e07f00;
  cursor: pointer;
}
#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
}
#pagetop a::before {
  content: '';
  background-image: url("../image/arrow-mc.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 9px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  transition: all .4s ease-in-out;
}
#pagetop a:hover::before {
  transform: translate(-50%, -105%) rotate(-90deg);
}

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

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

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

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

/*=============================================
 navの中身
=============================================*/
.medical-hour.sp-ttable .time-content {
  margin-bottom: 40px;
}
.medical-hour.sp-ttable .time-content table {
  color: #fff;
}
.medical-hour.sp-ttable .time-content table thead tr {
  background: #fff;
}
.medical-hour.sp-ttable .time-content table thead th {
  color: #ae9373;
}
.medical-hour.sp-ttable .time-content table tbody tr {
  border-bottom-color: #fff;
}
.medical-hour.sp-ttable .time-content table tbody th {
  border-right-color: #fff;
}
.medical-hour.sp-ttable .time-content table tbody td.open::after {
  background-color: #fff;
}
.medical-hour.sp-ttable .time-content table tbody td.close::after {
  color: #fff;
}
.medical-hour.sp-ttable .time-content table tbody td.dr {
  border-right-color: #fff;
}
.medical-hour.sp-ttable .time-content .time-info p {
  color: #fff;
}
.medical-hour.sp-ttable .time-content .time-info p::before, .medical-hour.sp-ttable .time-content .time-info p::after {
  background-color: #fff;
}

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

/*========================================================
 kv
========================================================*/
.kv {
  display: flex;
  flex-direction: column;
  height: 82vh;
  /* 全体の高さ */
  min-height: 340px;
}
.kv-inner {
  position: relative;
  flex: 1;
  /* キャッチの高さに応じて残りを占有 */
}
.kv-inner::after {
  content: '';
  background-image: url("../image/bg-nobu-wave.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: min(10.26vw, 160px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.kv #slider {
  width: 90%;
  height: 100%;
  min-height: 340px;
  margin: 0 auto;
  border-radius: min(15.38vw, 100px) min(15.38vw, 100px) 0 0;
  overflow: hidden;
}
.kv-catch {
  padding: 0 10px;
  background-color: #fdf7f3;
}
.kv-catch .catch {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.3rem;
  font-weight: 700;
  color: #e07f00;
  font-size: min(5.6vw, 34px);
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .kv {
    margin-top: 100px;
  }
  .kv-catch {
    margin-top: -3vw;
    z-index: 1;
  }
}

/*========================================================
 common-wrap
========================================================*/
#common-wrap {
  padding: var(--padding-tb);
  background-color: #fdf7f3;
}

.newsArea-inner {
  border-bottom: 1px dashed #ae9373;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: repeat(2, auto);
  grid-gap: 0;
}
.newsArea-inner .area1 {
  grid-area: 1 / 1 / 2 / 2;
}
.newsArea-inner .area2 {
  grid-area: 1 / 2 / 2 / 3;
}
.newsArea-inner .area3 {
  grid-area: 2 / 1 / 3 / 3;
}
.newsArea-title {
  display: flex;
  align-items: center;
}
.newsArea-title .all-title {
  margin-bottom: 0;
}
.newsArea-btn-wrap {
  align-self: self-end;
  justify-self: flex-end;
}
.newsArea-content {
  margin-top: 1.4rem;
}
.newsArea-content .news-item {
  margin-bottom: 0.5em;
}
.newsArea-content .news-item a {
  color: #231815;
  font-weight: 500;
}
.newsArea-content .news-item a:hover {
  color: #e07f00;
}
.newsArea-content .news-item time {
  font-size: 13px;
}
.newsArea-content .news-item .news-headline {
  font-size: min(4.1vw, 16px);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .newsArea .news-item a {
    display: flex;
    align-items: center;
  }
  .newsArea .news-item a time {
    width: 120px;
  }
}
@media screen and (min-width: 1024px) {
  .newsArea-inner {
    grid-template-columns: 25.45% 1fr 14.55%;
  }
  .newsArea-inner .area1 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .newsArea-inner .area3 {
    grid-area: 1 / 2 / 2 / 3;
  }
  .newsArea-inner .area2 {
    grid-area: 1 / 3 / 2 / 4;
  }
  .newsArea-content {
    margin-top: 0;
  }
  .newsArea-btn-wrap {
    align-self: center;
  }
}

.add-info {
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  border-bottom: 1px dashed #ae9373;
}

.accessArea {
  padding-top: var(--padding);
}
.accessArea .multi-column .block1 {
  background-color: #fff;
  padding: 1.4rem;
  margin-bottom: 2rem;
}
.accessArea .multi-column .block-info {
  font-size: min(4.1vw, 18px);
  font-weight: 500;
  margin-bottom: 1rem;
}
.accessArea .multi-column .block-info .name {
  font-weight: 700;
}
.accessArea .multi-column .block-info .tel a {
  color: #231815;
}
.accessArea .multi-column .ex-info {
  margin-top: 1.4rem;
}
.accessArea .multi-column .map figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain", sans-serif;
}
.accessArea .multi-column .map figure figcaption a {
  color: #c7161d;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  background-color: #fff;
  border: 0.05rem solid #c7161d;
  padding: 14px 20px;
  line-height: 0;
  display: block;
  text-align: center;
  border-radius: 100vmax;
}
.accessArea .multi-column .map figure figcaption a:hover {
  background-color: #c7161d;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .accessArea .multi-column {
    flex-direction: row;
    justify-content: space-between;
  }
  .accessArea .multi-column > div {
    width: calc(100% / 2 - min(1.82vw,10px));
  }
  .accessArea .multi-column .block1 {
    margin-bottom: 0;
  }
}

/*========================================================
 ↓↓↓ 以下、変更可能section ↓↓↓
========================================================*/
#main-content .full-bg {
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
#main-content.main-content .full-bg .visual {
  width: 90vw;
  height: min(71.79vw, 580px);
  margin-left: calc(-50vw + 50%);
  border-radius: 0 80px 80px 0;
  overflow: hidden;
  margin-bottom: 1rem;
}
#main-content.main-content .full-bg .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
}
#main-content.main-content .full-bg-inner {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 1024px) {
  #main-content.main-content .full-bg-inner {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  #main-content.main-content .full-bg-inner .body {
    width: min(52.73vw, 580px);
  }
  #main-content.main-content .full-bg-inner .visual {
    width: calc(50vw - 110px);
    margin-bottom: 0;
  }
}

/*========================================================
 intro
========================================================*/
.intro-list dt {
  font-weight: 500;
  font-size: 16.64px;
  position: relative;
  padding-left: 13px;
}
.intro-list dt::before {
  content: '●';
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.intro-list dd {
  margin-bottom: 1.2rem;
}
.intro-list dd:last-child {
  margin-bottom: 0;
}

.btn-link {
  background-color: #c7161d;
  border: 0.05rem solid #c7161d;
  color: #fff;
  line-height: 1;
  padding: 14px 20px;
  display: inline-block;
  margin-top: 4px;
  border-radius: 100vmax;
  font-size: 14.08px;
  font-weight: 500;
}
.btn-link:hover {
  background-color: #fff;
  color: #c7161d;
}

/*========================================================
 service
========================================================*/
.service .multi-column {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .service .multi-column {
    flex-direction: row;
  }
  .service .multi-column .column1 h2 {
    white-space: nowrap;
    margin-right: 3rem;
  }
}
.service-list-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.service-list-item .icn {
  background-color: #fff;
  color: #e07f00;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-weight: 600;
  width: 24%;
  text-align: center;
  padding: .6rem;
  line-height: 1.4;
}
.service-list-item .icn span {
  width: 100%;
  max-width: 52px;
  height: auto;
  margin-bottom: 6px;
}
.service-list-item .icn span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain", sans-serif;
}
.service-list-item .text {
  width: 72%;
}
@media screen and (min-width: 768px) {
  .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .service-list::after {
    content: "";
    display: block;
    width: calc(100% / 4 - 1.2rem);
    /* .boxに指定したwidthと同じ幅を指定する */
    height: 0;
  }
  .service-list-item {
    width: calc(100% / 4 - 1.2rem);
    flex-direction: column;
    align-self: flex-start;
  }
  .service-list-item .icn {
    width: 100%;
    height: 110px;
    margin-bottom: 0.6rem;
  }
  .service-list-item .text {
    width: 100%;
    font-size: 15.04px;
  }
}
@media screen and (min-width: 1024px) {
  .service-list-item {
    width: calc(100% / 4 - 2rem);
  }
}

/*========================================================
 profile
========================================================*/
.profile .doctor1 {
  padding-bottom: 4rem;
  margin-bottom: 3rem;
  border-bottom: 1px dashed #ae9373;
}
.profile .multi-column {
  display: flex;
  flex-direction: column;
}
.profile .multi-column .catch {
  color: #ae9373;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.profile .multi-column .name {
  font-weight: 500;
}
.profile .multi-column .name span {
  font-size: 17.92px;
}
.profile .multi-column .box2 {
  overflow: hidden;
  border-radius: min(12.82vw, 80px);
  margin: 1.2rem;
  line-height: 0;
  max-width: 380px;
}
.profile .multi-column .box2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover", sans-serif;
}
.profile-block {
  display: flex;
  flex-direction: column;
  font-size: 14.08px;
  background-color: #fff;
  border: 1px solid #ae9373;
}
.profile-block .slot {
  padding: 4vw;
  display: flex;
  flex-direction: column;
}
.profile-block .slot1 {
  border-bottom: 1px solid #ae9373;
}
.profile-block .slot1 dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.profile-block .slot1 dl dt {
  width: 66px;
}
.profile-block .slot1 dl dd {
  width: calc(100% - 66px);
}
.profile-block .slot2 > div:first-of-type {
  margin-bottom: 1.6rem;
}
.profile-block .headline {
  background-color: #ae9373;
  line-height: 1;
  color: #fff;
  padding: 6px 10px;
  display: inline-block;
  min-width: 100px;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  .profile .multi-column {
    flex-direction: row;
    margin-bottom: 5.86vw;
  }
  .profile .multi-column .box1 {
    width: calc(100% - 380px);
    padding-right: 4vw;
  }
  .profile .multi-column .box2 {
    margin: 0;
    width: 380px;
    max-height: 380px;
  }
  .profile-block {
    flex-direction: row;
    position: relative;
  }
  .profile-block::after {
    content: '';
    background-color: #ae9373;
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
  }
  .profile-block .slot {
    width: 100%;
    padding: 30px;
  }
  .profile-block .slot1 {
    border-bottom: none;
  }
}

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

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

/*===============================================
 お知らせ一覧 - archive -
=================================================*/
.head-wrap {
  background-color: #fff;
  position: relative;
}
.head-wrap::after {
  content: '';
  background-image: url("../image/bg-nobu-wave.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: min(10.26vw, 160px);
}
.head-wrap .page-head {
  padding-bottom: min(8vw, 120px);
}
.head-wrap .page-head-inner {
  padding-top: min(8vw, 60px);
  padding-bottom: min(8vw, 60px);
}
.head-wrap .page-head-title {
  font-size: min(5.87vw, 28px);
  font-weight: 600;
  line-height: 1.5;
  padding: .3rem 0 .5rem 32px;
  position: relative;
}
.head-wrap .page-head-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("../image/cha-n.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 24px;
}
@media screen and (min-width: 1024px) {
  .head-wrap {
    padding-top: 100px;
  }
}

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

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

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

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

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