@charset "UTF-8";
/*------------------------------------------------------------------

スマホ記述がベース

★ブレイクポイント★
タブレット: 650px以上
パソコン小: 1024px以上
パソコン中: 1300px以上
パソコン大: 1920px以上

------------------------------------------------------------------*/
/* media query
------------------------------------------------------------------*/
/* 基礎
-------------------------------------------------------------------*/
/* 色 */
/* しっぽり */
body {
  color: #6b5e5b;
  font-family: "Noto Sans JP", sans-serif;
  word-wrap: break-word;
}

/* パソコンで電話番号無視 */
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
    color: unset !important;
    text-decoration: none !important;
  }
}
/* ヘッダー
-------------------------------------------------------------------*/
header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 10px;
  padding: 3% 4%;
}
@media screen and (min-width: 1024px) {
  header {
    margin-bottom: 0;
    padding: 2% 3%;
  }
}
@media (min-width: 1200.02px) {
  header {
    padding: 1.5% 0;
  }
}
header .h-wrap {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1024px) {
  header .h-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
}
header .h-wrap h1 {
  width: 50%;
  max-width: 450px;
  align-content: center;
}
header .h-wrap .h-btn {
  display: flex;
  gap: 0;
  position: fixed;
  top: 0;
  right: 54px;
  z-index: 10;
}
@media screen and (min-width: 650px) {
  header .h-wrap .h-btn {
    right: 70px;
  }
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn {
    gap: 30px;
    align-items: center;
    position: relative;
    top: unset;
    right: unset;
  }
}
header .h-wrap .h-btn a {
  border-width: 1px 0 1px 1px;
  border-style: solid;
  border-color: #ddd;
  display: block;
  width: 54px;
  height: 54px;
  position: relative;
}
@media screen and (min-width: 650px) {
  header .h-wrap .h-btn a {
    width: 70px;
    height: 70px;
  }
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn a {
    width: unset;
    height: unset;
  }
}
header .h-wrap .h-btn .web {
  background: url(../img/web.svg) no-repeat center 4px #327445;
  background-size: 36px;
  transition: 0.3s;
}
@media screen and (min-width: 650px) {
  header .h-wrap .h-btn .web {
    background-position: center 7px;
    background-size: 47px;
  }
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn .web {
    background: url(../img/web.svg) no-repeat 15px center #327445;
    background-size: 40px;
    border: 1px solid #327445;
    outline: 1px solid #ffffff;
    color: #fff;
    padding: 15px 30px 15px 58px;
    outline-offset: -5px;
  }
}
@media screen and (min-width: 1024px) and (hover: hover) {
  header .h-wrap .h-btn .web:hover {
    background: url(../img/web02.svg) no-repeat 15px center #fff;
    background-size: 40px;
    color: #327445;
  }
}
header .h-wrap .h-btn .web::after {
  content: "WEB予約";
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: 3px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 650px) {
  header .h-wrap .h-btn .web::after {
    font-size: 12px;
    bottom: 7px;
  }
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn .web::after {
    display: none;
  }
}
header .h-wrap .h-btn .web span {
  display: none;
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn .web span {
    display: inline-block;
  }
}
header .h-wrap .h-btn .tel {
  background: url(../img/tel_sp.svg) no-repeat center 6px #327445;
  background-size: 32px;
}
@media screen and (min-width: 650px) {
  header .h-wrap .h-btn .tel {
    background-position: center 8px;
    background-size: 44px;
  }
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn .tel {
    background: transparent;
    border: none;
  }
}
header .h-wrap .h-btn .tel::after {
  content: "TEL";
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: 3px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 650px) {
  header .h-wrap .h-btn .tel::after {
    font-size: 12px;
    bottom: 7px;
  }
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn .tel::after {
    display: none;
  }
}
header .h-wrap .h-btn .tel img {
  display: none;
}
@media screen and (min-width: 1024px) {
  header .h-wrap .h-btn .tel img {
    display: block;
  }
}

/* スマホメニューボタン */
.menu-btn-box {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
.menu-btn-box button {
  background: #327445;
  border: 1px solid #ddd;
  display: block;
  width: 54px;
  height: 54px;
  position: relative;
}
@media screen and (min-width: 650px) {
  .menu-btn-box button {
    width: 70px;
    height: 70px;
  }
}
.menu-btn-box button::after {
  content: "MENU";
  color: #fff;
  display: block;
  font-size: 10px;
  position: absolute;
  bottom: 3px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 650px) {
  .menu-btn-box button::after {
    font-size: 12px;
    bottom: 7px;
  }
}
.menu-btn-box button span {
  background: #fff;
  display: block;
  width: 50%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.2s;
}
.menu-btn-box button span:nth-child(1) {
  top: 13px;
}
@media screen and (min-width: 650px) {
  .menu-btn-box button span:nth-child(1) {
    top: 18px;
  }
}
.menu-btn-box button span:nth-child(2) {
  top: 19px;
}
@media screen and (min-width: 650px) {
  .menu-btn-box button span:nth-child(2) {
    top: 26px;
  }
}
.menu-btn-box button span:nth-child(3) {
  bottom: 26px;
}
@media screen and (min-width: 650px) {
  .menu-btn-box button span:nth-child(3) {
    bottom: 32px;
  }
}
.menu-btn-box button.active::after {
  content: "CLOSE";
}
.menu-btn-box button.active span:nth-child(1) {
  top: 20px;
  transform: rotate(25deg);
}
@media screen and (min-width: 650px) {
  .menu-btn-box button.active span:nth-child(1) {
    top: 27px;
  }
}
.menu-btn-box button.active span:nth-child(2) {
  display: none;
}
.menu-btn-box button.active span:nth-child(3) {
  bottom: 31px;
  transform: rotate(-25deg);
}
@media screen and (min-width: 650px) {
  .menu-btn-box button.active span:nth-child(3) {
    bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .menu-btn-box {
    display: none;
  }
}

/* メニュー本体 */
.h-nav-wrap {
  opacity: 0;
  transition: 0.2s;
  width: 100%;
  height: 0;
  padding: 100px 10% 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  /* 下部にあるサブメニュー */
}
.h-nav-wrap.panelactive {
  opacity: 1;
  background-color: #fff;
  width: 100%;
  height: 100%;
  z-index: 5;
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap {
    opacity: 1;
    padding: 0;
    position: relative;
    height: unset;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap ul:not(.sub-menu) {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
.h-nav-wrap ul:not(.sub-menu) li {
  color: #6b5e5b;
  border-bottom: 1px solid #ddd;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap ul:not(.sub-menu) li {
    border: none;
    position: relative;
  }
}
.h-nav-wrap ul:not(.sub-menu) li a,
.h-nav-wrap ul:not(.sub-menu) li span {
  font-size: 16px;
  display: block;
  padding: 15px 0;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 650px) {
  .h-nav-wrap ul:not(.sub-menu) li a,
  .h-nav-wrap ul:not(.sub-menu) li span {
    padding: 20px 0;
  }
}
.h-nav-wrap ul:not(.sub-menu) li a.parent,
.h-nav-wrap ul:not(.sub-menu) li span.parent {
  position: relative;
  transition: 0.3s;
}
.h-nav-wrap ul:not(.sub-menu) li a.parent::after,
.h-nav-wrap ul:not(.sub-menu) li span.parent::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 1px #327445;
  border-right: solid 1px #327445;
  transform: rotate(135deg);
  transition: 0.3s;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap ul:not(.sub-menu) li a.parent::after,
  .h-nav-wrap ul:not(.sub-menu) li span.parent::after {
    width: 12px;
    height: 12px;
    right: -24px;
    top: unset;
    bottom: 24px;
  }
}
.h-nav-wrap ul:not(.sub-menu) li a.parent.active::after,
.h-nav-wrap ul:not(.sub-menu) li span.parent.active::after {
  transform: rotate(315deg);
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap ul:not(.sub-menu) li a.parent.active::after,
  .h-nav-wrap ul:not(.sub-menu) li span.parent.active::after {
    bottom: 16px;
  }
}
@media (hover: hover) {
  .h-nav-wrap ul:not(.sub-menu) li a:hover,
  .h-nav-wrap ul:not(.sub-menu) li span:hover {
    color: #327445;
  }
}
.h-nav-wrap ul:not(.sub-menu) li .sub-menu {
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 25px;
  transition: 0.3s;
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap ul:not(.sub-menu) li .sub-menu {
    background: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 0 0 0 35px;
    position: absolute;
    top: 55px;
    width: 240px;
  }
}
.h-nav-wrap ul:not(.sub-menu) li .sub-menu li {
  border: none;
}
.h-nav-wrap ul:not(.sub-menu) li .sub-menu li a {
  background: url(../img/arrow.svg) no-repeat left center;
  color: #6b5e5b;
  display: inline-block;
  padding: 8px 0 8px 25px;
}
@media screen and (min-width: 650px) {
  .h-nav-wrap ul:not(.sub-menu) li .sub-menu li a {
    font-size: 16px;
    padding: 12px 0 12px 25px;
  }
}
@media (hover: hover) {
  .h-nav-wrap ul:not(.sub-menu) li .sub-menu li a:hover {
    color: #327445;
  }
}
.h-nav-wrap ul:not(.sub-menu) li .sub-menu.panelactive {
  max-height: 200px;
  padding: 0 0 15px 25px;
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap ul:not(.sub-menu) li .sub-menu.panelactive {
    padding: 20px 0 20px 35px;
  }
}
.h-nav-wrap .sub-nav {
  padding-top: 20px;
}
@media screen and (min-width: 1024px) {
  .h-nav-wrap .sub-nav {
    display: none;
  }
}
.h-nav-wrap .sub-nav .item {
  line-height: 1;
}
.h-nav-wrap .sub-nav .item a {
  background: url(../img/arrow.svg) no-repeat left center;
  color: #6b5e5b;
  display: inline-block;
  padding: 8px 0 8px 25px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}

/* メインイメージ
-------------------------------------------------------------------*/
#hero-wrap {
  background: url(../img/bg-image.svg);
  background-size: 80%;
  padding: 30px 5% 35px;
}
@media screen and (min-width: 650px) {
  #hero-wrap {
    background-size: 40%;
  }
}
@media screen and (min-width: 1024px) {
  #hero-wrap {
    background-size: 30%;
    padding: 35px 3% 40px;
  }
}
@media screen and (min-width: 1300px) {
  #hero-wrap {
    background-size: 27%;
  }
}
@media screen and (min-width: 1600px) {
  #hero-wrap {
    background-size: 24%;
  }
}
#hero-wrap .hero-box {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  position: relative;
}
#hero-wrap .hero-box > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 10%;
  left: -2.5%;
}
@media screen and (min-width: 1024px) {
  #hero-wrap .hero-box > div {
    gap: 20px;
    left: -1.5vw;
  }
}
@media screen and (min-width: 1300px) {
  #hero-wrap .hero-box > div {
    gap: 25px;
    left: -3.5vw;
  }
}
@media screen and (min-width: 1600px) {
  #hero-wrap .hero-box > div {
    left: -4.5vw;
  }
}
#hero-wrap .hero-box > div p {
  /* 16px-20px */
  font-size: clamp(1rem, 0.8555rem + 0.6163vw, 1.25rem);
}
@media screen and (min-width: 1024px) {
  #hero-wrap .hero-box > div p {
    /* 26px-34px */
    font-size: clamp(1.625rem, 1.0536rem + 0.8929vw, 2.125rem);
  }
}
#hero-wrap .hero-box > div p span {
  background: #fff;
  padding: 2px 5px;
}
@media screen and (min-width: 650px) {
  #hero-wrap .hero-box > div p span {
    padding: 3px 5px 5px;
  }
}
#hero-wrap .hero-box > div p strong {
  color: #327445;
  display: inline-block;
  padding: 0 5px;
}
#hero-wrap .hero-box .catch-box__sp {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 650px) {
  #hero-wrap .hero-box .catch-box__sp {
    display: none;
  }
}
#hero-wrap .hero-box .catch-box__pc {
  display: none;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 650px) {
  #hero-wrap .hero-box .catch-box__pc {
    display: flex;
  }
}

/* 見出し
-------------------------------------------------------------------*/
.h01-wrap {
  text-align: center;
  margin-bottom: 35px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 650px) {
  .h01-wrap {
    margin-bottom: 40px;
  }
}
.h01-wrap h2 {
  /* 30px-36px */
  font-size: clamp(1.875rem, 1.6583rem + 0.9245vw, 2.25rem);
}
.h01-wrap span {
  color: #327445;
  /* 16px-18px */
  font-size: clamp(1rem, 0.9278rem + 0.3082vw, 1.125rem);
}

/* 汎用flex
-------------------------------------------------------------------*/
.flex {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .flex {
    gap: 50px;
    flex-direction: row;
  }
}
.flex > div {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .flex > div {
    width: 50%;
  }
}

/* 矢印付きミドリボタン
-------------------------------------------------------------------*/
.grn-btn-wrap a {
  background: url(../img/arrow03.svg) no-repeat 90% center #327445;
  background-size: 9%;
  border: 1px solid #327445;
  color: #fff;
  display: inline-block;
  /* 16px-18px */
  font-size: clamp(1rem, 0.8555rem + 0.6163vw, 1.25rem);
  padding: 20px 75px 20px 30px;
  outline: 1px solid #fff;
  outline-offset: -5px;
  transition: 0.3s;
}
@media (hover: hover) {
  .grn-btn-wrap a:hover {
    background: url(../img/arrow.svg) no-repeat 90% center #fff;
    background-size: 9%;
    color: #327445;
  }
}

.link01 {
  position: relative;
  padding-left: 20px;
}
.link01::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #2d2d2d;
  border-right: 1px solid #2d2d2d;
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  left: 0;
}

/* お知らせ
-------------------------------------------------------------------*/
#index-news {
  padding: 30px 7%;
  position: relative;
}
#index-news .new-box .item {
  border-bottom: 1px solid #ddd8d2;
  margin: 0 0 15px;
  padding: 0 0 15px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
#index-news .new-box .item time {
  color: #327445;
  font-weight: bold;
}
#index-news .new-box .item:last-of-type {
  border: none;
  margin-bottom: 0;
}
#index-news .new-box .item a:link {
  color: #1a73e8;
  text-decoration: underline;
}
#index-news .new-box .item a:visited {
  color: #1a73e8;
  text-decoration: underline;
}
@media (hover: hover) {
  #index-news .new-box .item a:hover {
    color: #1a73e8;
    text-decoration: none;
  }
}
#index-news .new-box .item a:active {
  color: #1a73e8;
  text-decoration: underline;
}
#index-news::after {
  content: "";
  display: block;
  background: url(../img/white_wave01.svg) no-repeat bottom/100% auto;
  width: 100%;
  aspect-ratio: 23/1;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
}

/* タブレット以上でflex */
@media screen and (min-width: 650px) {
  #index-news .pc-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 30px 0 0;
  }
}
@media screen and (min-width: 650px) and (min-width: 1024px) {
  #index-news .pc-flex {
    gap: 50px;
    padding: 60px 0 0;
  }
}
@media screen and (min-width: 650px) and (min-width: 1300px) {
  #index-news .pc-flex {
    gap: 70px;
  }
}
@media screen and (min-width: 650px) {
  #index-news .pc-flex .pc-flex-left {
    width: 90px;
    writing-mode: vertical-rl;
    position: relative;
  }
}
@media screen and (min-width: 650px) and (min-width: 1024px) {
  #index-news .pc-flex .pc-flex-left {
    width: 110px;
  }
}
@media screen and (min-width: 650px) {
  #index-news .pc-flex .pc-flex-left h2 {
    letter-spacing: 0.3rem;
  }
  #index-news .pc-flex .pc-flex-left span {
    position: absolute;
    top: 8px;
    left: 0;
  }
  #index-news .pc-flex .pc-flex-right {
    flex: 1;
  }
  #index-news .pc-flex .pc-flex-right .new-box {
    padding: 0;
  }
}
/* 診療案内
-------------------------------------------------------------------*/
#index-shinryo {
  background: url(../img/index_shinryo_bg.webp) no-repeat center;
  background-size: cover;
  padding: 16% 7%;
}
@media screen and (min-width: 650px) {
  #index-shinryo {
    padding: 12% 7%;
  }
}
@media screen and (min-width: 1024px) {
  #index-shinryo {
    padding: 11% 7%;
  }
}
@media screen and (min-width: 1600px) {
  #index-shinryo {
    padding: 10% 7% 11%;
  }
}
#index-shinryo .attention_p01 {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 650px) {
  #index-shinryo .attention_p01 {
    padding: 10px 0 15px;
  }
}
#index-shinryo .attention_p01 span {
  display: block;
}
@media screen and (min-width: 650px) {
  #index-shinryo .attention_p01 span {
    display: inline;
  }
}
#index-shinryo .attention_p01 b {
  color: #327445;
}
#index-shinryo .shinryo-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20%;
}
@media screen and (min-width: 650px) {
  #index-shinryo .shinryo-box {
    gap: 50px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 70%;
    max-width: 1100px;
    margin: 0 auto 80px;
  }
}
@media screen and (min-width: 1024px) {
  #index-shinryo .shinryo-box {
    gap: 30px;
    width: 100%;
    margin-bottom: 120px;
    padding: 0;
  }
}
@media screen and (min-width: 650px) {
  #index-shinryo .shinryo-box .card {
    width: calc((100% - 50px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  #index-shinryo .shinryo-box .card {
    width: calc((100% - 90px) / 4);
  }
}
#index-shinryo .shinryo-box .card a img {
  width: 100%;
  transition: 0.3s;
}
@media (hover: hover) {
  #index-shinryo .shinryo-box .card a img:hover {
    transform: scale(1.03);
  }
}

#index-shinryo-lead {
  margin-top: -18vw;
}
@media screen and (min-width: 650px) {
  #index-shinryo-lead {
    margin-top: -12vw;
  }
}
@media screen and (min-width: 1024px) {
  #index-shinryo-lead {
    margin-top: -11vw;
  }
}
#index-shinryo-lead .lead-box {
  background: #fff;
  padding: 18% 7%;
  position: relative;
}
@media screen and (min-width: 650px) {
  #index-shinryo-lead .lead-box {
    padding: 10% 7%;
  }
}
@media screen and (min-width: 1300px) {
  #index-shinryo-lead .lead-box {
    padding: 8% 7%;
  }
}
@media screen and (min-width: 1920px) {
  #index-shinryo-lead .lead-box {
    padding: 6% 7%;
  }
}
#index-shinryo-lead .lead-box .h02-wrap {
  margin-bottom: 20px;
}
#index-shinryo-lead .lead-box .h02-wrap h3 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  /* 22px-24px */
  font-size: clamp(1.375rem, 1.3028rem + 0.3082vw, 1.5rem);
}
#index-shinryo-lead .lead-box .h02-wrap h3 span {
  display: block;
}
#index-shinryo-lead .lead-box img {
  margin-bottom: 15px;
  width: 100%;
}
#index-shinryo-lead .lead-box p {
  line-height: 1.6;
  margin-bottom: 20px;
  word-break: break-all;
}
#index-shinryo-lead .lead-box::after {
  content: "";
  display: block;
  background: url(../img/white_wave02.svg) no-repeat bottom/100% auto;
  width: 100%;
  aspect-ratio: 23/1;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1;
}

/* タブレット以上でflex */
@media screen and (min-width: 650px) {
  .pc-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: auto;
  }
  .pc-flex .pc-flex-left {
    width: 43%;
  }
  .pc-flex .pc-flex-right {
    flex: 1;
  }
}
/* スライダー */
.swiper-wrapper {
  transition-timing-function: linear;
}

/* 院長挨拶 */
#index-aisatsu {
  padding: 17% 7% 15%;
}
@media screen and (min-width: 650px) {
  #index-aisatsu {
    padding: 10% 7%;
  }
}
@media screen and (min-width: 1300px) {
  #index-aisatsu {
    padding: 8% 7%;
  }
}
@media screen and (min-width: 1920px) {
  #index-aisatsu {
    padding: 6% 7%;
  }
}
#index-aisatsu .aisatsu-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
@media screen and (min-width: 650px) {
  #index-aisatsu .aisatsu-box {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #index-aisatsu .aisatsu-box {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1024px) {
  #index-aisatsu .aisatsu-box .aisatsu-text {
    width: 60%;
  }
}
#index-aisatsu .aisatsu-box .aisatsu-text p {
  line-height: 1.6;
}
#index-aisatsu .aisatsu-box .aisatsu-text p:nth-child(1) {
  margin-bottom: 30px;
}
#index-aisatsu .aisatsu-box .aisatsu-img {
  align-self: center;
}
@media screen and (min-width: 1024px) {
  #index-aisatsu .aisatsu-box .aisatsu-img {
    flex: 1;
    align-self: flex-start;
  }
}
#index-aisatsu .aisatsu-box .aisatsu-img img {
  width: 100%;
  max-width: 400px;
}

/* フッター */
footer {
  background: #6b5e5b;
  padding: 14% 0 0;
  position: relative;
}
@media screen and (min-width: 650px) {
  footer {
    padding: 10% 0 0;
  }
}
@media screen and (min-width: 1024px) {
  footer {
    padding: 0 7%;
  }
}
footer .f-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  footer .f-wrap {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 1100px;
  }
}
footer .f-wrap .f-add {
  padding: 0 7%;
}
@media screen and (min-width: 1024px) {
  footer .f-wrap .f-add {
    width: 45%;
    padding: 5% 0;
  }
}
footer .f-wrap .f-add .logo {
  margin-bottom: 15px;
}
@media screen and (min-width: 650px) {
  footer .f-wrap .f-add .logo img {
    max-width: 450px;
    margin-bottom: 20px;
    width: 100%;
  }
}
footer .f-wrap .f-add address {
  color: #fff;
  font-style: normal;
  margin-bottom: 20px;
}
@media screen and (min-width: 650px) {
  footer .f-wrap .f-add address {
    margin-bottom: 25px;
  }
}
footer .f-wrap .f-add .f-info h4 {
  background: #fff;
  color: #6b5e5b;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 3px 0 3px 10px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
footer .f-wrap .f-add .f-info h4 span {
  font-size: 12px;
  padding-left: 5px;
}
footer .f-wrap .f-add .f-info table {
  color: #fff;
  font-size: 14px;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 10px;
}
footer .f-wrap .f-add .f-info table th {
  background: #7a6e6c;
  border: 1px solid #fff;
  padding: 5px 0;
  text-align: center;
}
footer .f-wrap .f-add .f-info table td {
  border: 1px solid #fff;
  text-align: center;
  padding: 5px 0;
}
footer .f-wrap .f-add .f-info ul {
  margin-bottom: 20px;
}
footer .f-wrap .f-add .f-info ul li {
  color: #fff;
  font-size: 14px;
  text-indent: -1.35rem;
  padding-left: 1.35rem;
  padding-bottom: 5px;
  position: relative;
  line-height: 1.3;
}
footer .f-wrap .f-add .f-info ul li.yoyaku-li {
  background: #fff;
  color: #6b5e5b;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
  padding: 5px 10px 6px 30px;
}
footer .f-wrap .f-add .f-submenu {
  display: none;
}
@media screen and (min-width: 1024px) {
  footer .f-wrap .f-add .f-submenu {
    color: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 80px;
  }
  footer .f-wrap .f-add .f-submenu a {
    padding-left: 23px;
    position: relative;
    transition: 0.3s;
  }
}
@media screen and (min-width: 1024px) and (hover: hover) {
  footer .f-wrap .f-add .f-submenu a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1024px) {
  footer .f-wrap .f-add .f-submenu a::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../img/arrow03.svg);
    background-size: cover;
    position: absolute;
    top: 7px;
    left: 0;
  }
}
footer .f-wrap .f-map {
  height: 350px;
}
@media screen and (min-width: 1024px) {
  footer .f-wrap .f-map {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
footer .f-wrap .f-map iframe {
  vertical-align: bottom;
}

.copy {
  background: #fff;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
}

/*----------------------------------------------------------------------


ページ


----------------------------------------------------------------------*/
/* スマホ表示のヘッダー調整 */
@media screen and (max-width: 1024px) {
  #page header {
    margin: 0 auto;
    padding: 0 4%;
  }
  #page header .h-wrap {
    height: 54px;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) and (min-width: 650px) {
  #page header .h-wrap {
    height: 70px;
  }
}
/* ページタイトル */
.page-title-wrap {
  background: url(../img/index_shinryo_bg.webp) no-repeat center;
  background-size: cover;
  text-align: center;
  padding: 12vw 5vw;
  position: relative;
}
@media screen and (min-width: 650px) {
  .page-title-wrap {
    padding: 8vw 5vw;
  }
}
@media screen and (min-width: 1300px) {
  .page-title-wrap {
    padding: 7vw 5vw;
  }
}
@media screen and (min-width: 1600px) {
  .page-title-wrap {
    padding: 6vw;
  }
}
.page-title-wrap .box h1 {
  /* 26-36px */
  font-size: clamp(1.625rem, 1.4733rem + 0.6472vw, 2.25rem);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}

/* ページコンテンツ部分 */
#page main {
  position: relative;
  padding: 13% 0;
  /* 横幅1100pxの場合 */
  /* パーツ */
}
@media screen and (min-width: 650px) {
  #page main {
    padding: 8% 0;
  }
}
@media screen and (min-width: 1600px) {
  #page main {
    padding: 5% 0;
  }
}
#page main.pdg-4p .contents-wrap {
  padding-left: 4%;
  padding-right: 4%;
  overflow: hidden;
}
#page main.pdg-4p .contents-box {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}
#page main::after {
  content: "";
  display: block;
  background: url(../img/white_wave02.svg) no-repeat bottom/100% auto;
  width: 100%;
  aspect-ratio: 23/1;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: 1;
}
#page main p {
  margin-bottom: 1rem;
  padding: 0 3px;
}
#page main ul {
  margin-bottom: 1rem;
}
#page main ul > li {
  padding: 3px 5px 3px 23px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #page main ul > li {
    padding-left: 26px;
    line-height: 1.4;
  }
}
#page main ul > li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #6b5e5b;
  border-radius: 50px;
  position: absolute;
  top: 12px;
  left: 6px;
}
@media screen and (min-width: 650px) {
  #page main ul > li::before {
    top: 11px;
  }
}
#page main ol {
  margin-bottom: 1rem;
  counter-reset: listnum;
}
#page main ol > li {
  padding: 3px 5px 3px 33px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  #page main ol > li {
    padding-left: 35px;
    line-height: 1.4;
  }
}
#page main ol > li::before {
  counter-increment: listnum;
  content: counter(listnum);
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 4px;
  left: 8px;
  z-index: 2;
}
@media screen and (min-width: 650px) {
  #page main ol > li::before {
    font-size: 14px;
    top: 5px;
    left: 9px;
  }
}
@media screen and (min-width: 1024px) {
  #page main ol > li::before {
    font-size: 16px;
  }
}
@media screen and (min-width: 1300px) {
  #page main ol > li::before {
    left: 10px;
  }
}
@media screen and (min-width: 1600px) {
  #page main ol > li::before {
    top: 6px;
    left: 11px;
  }
}
#page main ol > li::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #6b5e5b;
  position: absolute;
  top: 4px;
  left: 2px;
  z-index: 1;
}
@media screen and (min-width: 650px) {
  #page main ol > li::after {
    width: 22px;
    height: 22px;
    top: 5px;
  }
}
@media screen and (min-width: 1024px) {
  #page main ol > li::after {
    width: 24px;
    height: 24px;
    top: 6px;
  }
}
@media screen and (min-width: 1300px) {
  #page main ol > li::after {
    width: 26px;
    height: 26px;
    top: 5px;
  }
}
#page main table {
  margin-bottom: 1rem;
}
#page main table th {
  background: #f8f5f2;
  border: 1px solid #a9a3a1;
  padding: 5px 7px;
}
@media screen and (min-width: 1024px) {
  #page main table th {
    padding: 15px;
  }
}
#page main table td {
  border: 1px solid #a9a3a1;
  padding: 5px 7px;
}
@media screen and (min-width: 1024px) {
  #page main table td {
    padding: 15px;
  }
}
#page main a:link {
  color: #1a73e8;
  text-decoration: underline;
}
#page main a:visited {
  color: #1a73e8;
  text-decoration: underline;
}
@media (hover: hover) {
  #page main a:hover {
    color: #1a73e8;
    text-decoration: none;
  }
}
#page main a:active {
  color: #1a73e8;
  text-decoration: underline;
}

/* 見出し */
.page-ttl01 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  /* 26-36px */
  font-size: clamp(1.625rem, 1.4733rem + 0.6472vw, 2.25rem);
  margin-bottom: 12vw;
  position: relative;
}
@media screen and (min-width: 650px) {
  .page-ttl01 {
    margin-bottom: 9vw;
  }
}
@media screen and (min-width: 1600px) {
  .page-ttl01 {
    margin-bottom: 6vw;
  }
}
.page-ttl01::after {
  content: url(../img/page-h02-line-sp.svg);
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 115px;
  margin: auto;
  overflow: hidden;
}
@media screen and (min-width: 650px) {
  .page-ttl01::after {
    bottom: -25px;
    width: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .page-ttl01::after {
    content: url(../img/page-h02-line.svg);
    background: unset;
    width: 225px;
    height: auto;
    bottom: -35px;
  }
}

.page-ttl02 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  background: #f8f5f2;
  /* 24-32px */
  font-size: clamp(1.5rem, 1.3786rem + 0.5178vw, 2rem);
  margin: 0 0 1rem;
  padding: 3vw 1vw 3vw 4.5vw;
}
@media screen and (min-width: 650px) {
  .page-ttl02 {
    padding: 1vw 1vw 1vw 2vw;
  }
}
@media screen and (min-width: 1600px) {
  .page-ttl02 {
    padding: 0.5vw 1vw 0.6vw 1vw;
  }
}

.page-ttl03 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  /* 20-30px */
  font-size: clamp(1.375rem, 1.2536rem + 0.5178vw, 1.875rem);
  margin-bottom: 2rem;
  position: relative;
}
.page-ttl03::after {
  content: url(../img/page-h02-line-sp.svg);
  display: block;
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  overflow: hidden;
}
@media screen and (min-width: 650px) {
  .page-ttl03::after {
    content: url(../img/page-h02-line.svg);
    bottom: -25px;
  }
}

.page-ttl04 {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
  /* 18-26px */
  font-size: clamp(1.125rem, 1.0036rem + 0.5178vw, 1.625rem);
  border-bottom: 1px solid #ddd8d2;
  margin-bottom: 1.5rem;
  padding: 0 0 5px;
}
@media screen and (min-width: 650px) {
  .page-ttl04 {
    padding: 0 0 10px;
  }
}

/* クリニック紹介 */
.incho-flex {
  background: #f8f5f2;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
}
@media screen and (min-width: 650px) {
  .incho-flex {
    margin-bottom: 60px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1024px) {
  .incho-flex {
    margin-bottom: 5vw;
    flex-direction: row;
    gap: 0;
  }
}
@media screen and (min-width: 1300px) {
  .incho-flex {
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 650px) {
  .incho-flex .left {
    padding-top: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .incho-flex .left {
    padding-top: 0;
    width: 40%;
    z-index: 2;
  }
}
.incho-flex .left img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .incho-flex .left img {
    max-width: 100%;
  }
}
.incho-flex .right {
  padding: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 650px) {
  .incho-flex .right {
    padding: 35px 40px;
  }
}
@media screen and (min-width: 1024px) {
  .incho-flex .right {
    align-self: center;
    flex: 1;
    padding: 30px 50px;
    position: relative;
  }
}
.incho-flex .right .txt-right {
  margin-bottom: 0;
  padding-top: 10px;
}

#page .keireki-p01 {
  margin-bottom: 3rem;
}

.shikaku-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 650px) {
  .shikaku-box {
    gap: 70px;
    flex-direction: row;
  }
  .shikaku-box > div {
    width: 50%;
  }
}

/* 診療案内 */
#page .shinryo-p01 {
  font-weight: bold;
  /* 18-22px */
  font-size: clamp(1.125rem, 1.0643rem + 0.2589vw, 1.375rem);
  margin-bottom: 5px;
}

#page .attention {
  background: #fff7f7;
  border: 1px solid #cd7474;
  margin: 10px 0 15px 0;
  padding: 15px 20px;
}
@media screen and (min-width: 650px) {
  #page .attention {
    display: inline-block;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  #page .attention {
    margin-top: 0;
  }
}
#page .attention p {
  margin-bottom: 10px;
}
#page .attention p.mtb {
  margin: 20px 0;
}
#page .attention p.kome {
  text-indent: -1rem;
  padding-left: 1rem;
}
#page .attention span {
  color: #cd7474;
  display: block;
  /* 20-22px */
  font-size: clamp(1.25rem, 1.2197rem + 0.1294vw, 1.375rem);
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}
#page .attention span a {
  display: inline-block;
  padding-top: 10px;
}

.tbl01.shinsatsu td {
  text-align: center;
}

@media screen and (min-width: 650px) {
  .page-ttl01.access {
    padding-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .page-ttl01.access {
    padding-top: 40px;
  }
}

.route-img img {
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .route-img img {
    max-width: 700px;
  }
}

/* 外来について */
#page .gairai-kekkan-flex {
  gap: 25px;
}
@media screen and (min-width: 1024px) {
  #page .gairai-kekkan-flex {
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #page .gairai-kekkan-flex .item01 {
    width: 60%;
  }
}
#page .gairai-kekkan-flex .item01 p:last-of-type {
  margin: 0;
}
#page .gairai-kekkan-flex .item02 {
  flex: 1;
}

.gairai-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (min-width: 650px) {
  .gairai-gallery {
    flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 1300px) {
  .gairai-gallery {
    margin-top: 80px;
  }
}
@media screen and (min-width: 650px) {
  .gairai-gallery .item {
    width: calc((100% - 50px) / 2);
  }
}

/* 人工透析 */
#page .toseki-mtb {
  margin: 25px 0;
}

#page .toseki-kome {
  text-indent: -1rem;
  padding: 10px 10px 10px 2rem;
  background: #fff7f7;
  border: 1px solid #cd7474;
  display: inline-block;
}

#page .touseki-p01 {
  margin: 20px 0 10px;
}
@media screen and (min-width: 1024px) {
  #page .touseki-p01 {
    margin: 25px 0 30px;
  }
}

#page .touseki-tel p {
  /* 18-22px */
  font-size: clamp(1.125rem, 1.0643rem + 0.2589vw, 1.375rem);
  margin-bottom: 0;
}

/* 採用情報 */
#page .recruit-aisatsu {
  background: #f8f5f2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  #page .recruit-aisatsu {
    flex-direction: row;
    gap: 40px;
  }
}
@media screen and (min-width: 650px) {
  #page .recruit-aisatsu .recruit-aisatsu-left {
    padding: 0 0 10px;
  }
}
@media screen and (min-width: 1024px) {
  #page .recruit-aisatsu .recruit-aisatsu-left {
    width: 40%;
    padding: 0;
  }
}
#page .recruit-aisatsu .recruit-aisatsu-left img {
  width: 100%;
}
#page .recruit-aisatsu .recruit-aisatsu-right {
  padding: 0 25px 25px;
}
@media screen and (min-width: 650px) {
  #page .recruit-aisatsu .recruit-aisatsu-right {
    padding: 0px 45px 50px;
  }
}
@media screen and (min-width: 1024px) {
  #page .recruit-aisatsu .recruit-aisatsu-right {
    flex: 1;
    padding: 25px 25px 25px 0;
  }
}
#page .recruit-aisatsu .recruit-aisatsu-right p:nth-child(1) {
  font-size: clamp(1.25rem, 1.1893rem + 0.2589vw, 1.5rem);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
#page .recruit-aisatsu .recruit-aisatsu-right p:nth-child(2) {
  margin-bottom: 0;
}

#page .recruit_table {
  border-bottom: 1px solid #a9a3a1;
  table-layout: fixed;
  width: 100%;
}
#page .recruit_table th {
  border-bottom: none;
  display: block;
  padding: 10px 15px;
  width: 100%;
}
@media screen and (min-width: 650px) {
  #page .recruit_table th {
    display: table-cell;
    padding: 15px 20px;
    width: 180px;
  }
}
#page .recruit_table td {
  border-bottom: none;
  display: block;
  padding: 10px 15px;
  width: 100%;
}
@media screen and (min-width: 650px) {
  #page .recruit_table td {
    display: table-cell;
    padding: 15px 20px;
    width: auto;
  }
}

/* mfa */
#page .contents-box .mfa-p01 {
  background: #f8f5f2;
  padding: 15px 10px 15px 20px;
}
/* フロー */
#page .flow-box {
  margin: 0;
  padding-top: 20px;
  width: 99%;
}
#page .flow-box .item {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
  position: relative;
}
#page .flow-box .item .item-number {
  background: #6b5e5b;
  color: #fff;
  justify-content: center;
  width: 55px;
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (min-width: 1024px) {
  #page .flow-box .item .item-number {
    font-size: 18px;
    width: 80px;
  }
}
#page .flow-box .item .item-body {
  background: #f8f5f2;
  flex: 1;
  padding: 10px 15px 10px 20px;
}
@media screen and (min-width: 1024px) {
  #page .flow-box .item .item-body {
    display: flex;
    align-items: center;
    padding: 15px 15px 20px 0;
  }
}
#page .flow-box .item .item-body h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  #page .flow-box .item .item-body h3 {
    font-size: 18px;
    margin-bottom: 0;
    width: 180px;
    text-align: center;
  }
}
#page .flow-box .item .item-body p {
  /* 14-16px */
  font-size: clamp(0.875rem, 0.8447rem + 0.1294vw, 1rem);
  margin-bottom: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  #page .flow-box .item .item-body p {
    flex: 1;
  }
}
#page .flow-box .item::after {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 100/55;
  background: url(../img/arrow04.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  bottom: -33px;
  left: 0;
  right: 0;
  margin: auto;
}
#page .flow-box .item:last-of-type::after {
  display: none;
}/*# sourceMappingURL=style.css.map */