@charset "utf-8";

/* CSS Document */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --main-color: #6ec85d;
  /*メイン色*/
  --main-color-80: #bcde80;
  /*メイン色*/
  --sub-color: #faac3c;
  /*サブ色*/
  --bg-color: #fcf8ee;
  /*サイドメニュー・レイアウト類の背景色*/
  --border-color: #dfdfdf;
  /*境界線色*/
}

html {}

body {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std R", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  position: relative;
  word-wrap: break-word;
  background-color: #fff;
  text-align: justify;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: .5s;
}

a:hover {
  color: var(--main-color-80);
}

::selection {
  background-color: var(--main-color-80);
}

::-moz-selection {
  background-color: var(--main-color-80);
}

strong {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

body,
#mainvisual,
header,
footer {
  min-width: 1240px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
p,
dt,
dd,
form,
select,
option,
address,
pre {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

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

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

a img {
  border: none;
}

/*TELリンクのカーソルはデフォルトにする*/
[href^="tel"]:hover {
  cursor: default;
  color: var(--main-color);
}

p.center>img {
  border-radius: 12px;
}

.underline {
  text-decoration: wavy underline;
  text-decoration-color: var(--main-color);
}


/* モーダルウィンドウ */
.c-modal {
  /* display: none; */
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000000;
}

/* 黒背景の設定 */
.c-modal_bg {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100%;
}

/* ウィンドウの設定 */
.c-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  max-width: 700px;
  width: 50%;
}

.c-modal_content_inner {
  position: relative;
  padding: 24px;
}

/* 閉じるボタン */
.c-modal_close {
  position: absolute;
  top: 13px;
  right: 10px;
}

/*==================================================================================================================================

  ヘッダー

==================================================================================================================================*/
header {
  position: absolute;
  z-index: 3;
  width: 100%;
}

header .inner {
  position: relative;
  width: 1200px;
  height: inherit;
  margin: auto;
}

/*----------ロゴ----------*/
.head_logo {
  position: absolute;
  box-sizing: border-box;
  z-index: 9;
  top: 85px;
}

.head_logo a {
  display: block;
  max-width: 519px;
  height: auto;
}

.head_logo img {
  width: auto;
  height: auto;
  max-height: 80px;
  filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 20px #fff);
}

/*----------基本情報----------*/
.head_info_access {
  position: absolute;
  top: 16px;
  right: 0;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  color: #fff;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 7px 23px 9px;
  background: url("images/bg_tex_gr.jpg");
  border-radius: 17px;
}

.head_info_wrap {
  display: flex;
  justify-content: flex-end;
  width: 765px;
  margin: 0 0 0 auto;
}

.head_info_wrap:after {
  display: block;
  content: "";
  clear: both;
}

.head_info {
  margin-top: 55px;
  text-align: center;
  line-height: 1.2;
  color: #333;
  text-shadow: 0 0 10px #fff;
}

.head_info_add {
  font-size: 16px;
}

.head_info_add i {
  margin-right: 5px;
}

.head_info_tel {
  color: #f88912;
  margin-top: 20px;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.1em;
  vertical-align: middle;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.head_info_tel img {
  position: relative;
  margin-right: 10px;
}

/*----------予約・問診ボタン----------*/
.head_btn_area {
  display: flex;
  flex-wrap: nowrap;
  margin-left: 10px;
  padding-top: 35px;
}

.head_btn_area li {
  width: 140px;
  margin-right: 5px;
}

.head_btn_area li:last-child {
  margin-right: 0;
}

.head_btn_area li a {
  display: block;
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 17px;
  padding: 15px 0;
  line-height: 1;
  transition: 0.2s ease-in-out;
}

.head_btn_area li a:hover {
  background-color: var(--sub-color);
}

.head_btn_area li a i {
  margin-right: 8px;
}

.sp_header {
  display: none;
}

.fixed_web_yoyaku_btn {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9;
  width: 60px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.fixed_web_yoyaku_btn a {
  display: flex;
  background: var(--main-color);
  writing-mode: vertical-rl;
  color: #fff;
  width: 100%;
  padding: 15px 10px;
  letter-spacing: 4px;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1;
  align-items: center;
  justify-content: center;
}

.fixed_web_yoyaku_btn a:hover {
  background: var(--sub-color);
}

.fixed_web_yoyaku_btn a i {
  margin-bottom: 5px;
}

.fixed_web_yoyaku_btn a:last-child {
  margin-bottom: 0;
}

.fixed_bnr_area {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9;
  width: 133px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.fixed_bnr_area a {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.fixed_bnr_area a:hover {
  opacity: 0.8;
}

.fixed_bnr_area [class^="btn_"] {
  margin: 5px 0;
  width: 100%;
}

/*.fixed_bnr_area .btn_online a{
  pointer-events: none;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}*/
.foot_fixed_bnr_area {
  position: fixed;
  bottom: 0;
  right: 20px;
  display: flex;
}

.foot_fixed_bnr_area div {
  margin: 0 5px;
  transition: 0.2s ease-in-out;
}

.foot_fixed_bnr_area div:hover {
  opacity: 0.8;
}

/*==================================================================================================================================

  ナビゲーション

==================================================================================================================================*/
nav {
  position: absolute;
  top: 175px;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  z-index: 9998;

}

nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}

nav li {
  margin: 0 30px;
  position: relative;
}

nav li:first-child {
  margin-left: 0;
}

nav li a {
  position: relative;
  display: block;
  color: #333;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.05em;
  z-index: 2;
  transition: 0.15s ease-out;
  line-height: 1.5;
}

nav li a img {
  margin-right: 8px;
  vertical-align: middle;
}

nav li a p {
  margin-top: 5px;
  font-size: 12px;
}

nav li:nth-of-type(odd) a p {
  color: #539622;
}

nav li:nth-of-type(even) a p {
  color: #e47600;
}

nav li:nth-of-type(odd) a:hover {
  color: #539622;
}

nav li:nth-of-type(even) a:hover {
  color: #e47600;
}

/*----------ホバーのエフェクト----------*/
nav li a::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  width: 8px;
  height: 8px;
  margin: auto;
  transition: transform 0.15s ease-out;
  transform: scale(0);
  content: "";
  z-index: 1;
  border-radius: 10px;
}

nav li:nth-of-type(odd) a::before {
  background-color: #539622;
}

nav li:nth-of-type(even) a::before {
  background-color: #e47600;
}

nav li a:hover::before,
nav li.active2 a::before {
  transform: scale(1);
}

/*----------固定時のナビ----------*/
nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav.fixed ul {
  width: 1200px;
}

nav.fixed li a {
  filter: none;
}

/*----------ホバーで表示されるナビ----------*/
nav ul li div {
  position: absolute;
  display: none;
  width: 300px;
  top: 100%;
  left: 0%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  z-index: 9999;
  padding: 10px;
  border-radius: 20px;
}

nav ul li.nav_slidebtm:hover div {
  display: flex !important;
  flex-flow: column wrap;
}

nav ul li div a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 13px 20px;
  line-height: 1.4;
  text-align: left;
  font-size: 16px;
  margin: 0 !important;
  transition: 0.2s ease-in-out;
  border-radius: 20px;
}

nav ul li:nth-of-type(odd) div a {
  background: url("images/icon_arrow_gr.svg") right 20px center no-repeat;
}

nav ul li:nth-of-type(even) div a {
  background: url("images/icon_arrow_or.svg") right 20px center no-repeat;
}

nav ul li div a::after,
nav ul li div a::before {
  display: none;
}

nav ul li div a:hover {
  background-color: rgba(255, 255, 255, 1);
}

nav ul li:nth-of-type(odd) div a:hover {
  background-color: rgba(83, 150, 34, 0.2);
  background-position: right 10px center;
}

nav ul li:nth-of-type(even) div a:hover {
  background-color: rgba(228, 118, 0, 0.2);
  background-position: right 10px center;
}

.sp_top_nav,
.sp_under_nav {
  display: none;
}

/* 下層の時の配置 */
.mv_contents {}

.mv_contents nav li a {
  filter: drop-shadow(0 0 3px #fff) drop-shadow(0 0 5px #fff) drop-shadow(0 0 8px #fff) drop-shadow(0 0 10px #fff);
}

.mv_contents nav.fixed {
  bottom: auto;
}

.mv_contents nav.fixed li a {
  filter: none;
}

/*==================================================================================================================================

  ホーム

==================================================================================================================================*/
/*----------メインビジュアル----------*/
body.home .mainvisual_wrapper {
  position: relative;
}

body.home .mainvisual_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 468px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 100%);
}

body.home #mainvisual {
  position: relative;
  height: 950px;
  background-image: none;
}

body.home #mainvisual .inner {
  display: block;
  align-items: unset;
  justify-content: unset;
}

.slider {
  opacity: 0;
  transition: opacity .3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

body.home #mainvisual .slider-fade img {
  height: 950px;
  object-fit: cover;
  object-position: center;
}

/*--------------------インフォメーションエリア（お知らせ&お悩み）--------------------*/
.sec_top_info {
  padding: 90px 0;
}

.top_info_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.top_info_item {
  max-width: 570px;
  width: 100%;
  border-radius: 25px;
  padding: 39px 15px 37px;
}

.top_info_item .tit_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  text-shadow: none;
  padding: 0 0 17px 20px;
  border-bottom: 3px solid;
}

.top_info_item .tit_wrap h2 {
  margin: 0;
  font-size: 26px;
}

.top_info_item .tit_wrap i.counter {
  display: block;
  color: #fff;
  text-align: center;
  font-style: normal;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  letter-spacing: 0;
  min-width: 31px;
  padding-bottom: 1px;
  border-radius: 100%;
  background: #87cd96;
  margin-left: 8px;
}

.top_info_item .tit_wrap p {
  padding: 20px 22px 0 0;
  margin-left: 20px;
  font-size: 16px;
  line-height: 1.5;
  align-self: flex-end;
}

.top_info_item ul li {
  padding: 0 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.12em;
  min-height: 88px;
  border-bottom: 1px solid #cdcdcd;
}

.top_info_item ul li:last-child {
  border-bottom: none;
}

.top_info_item ul li .text_wrap {
  display: flex;
  align-items: flex-start;
}

.top_info_item ul li .text_wrap>span {
  align-self: flex-start;
  margin-right: 25px;
}

.top_info_item ul li a {
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #333;
}

.top_info_item [class^="btn0"] {
  text-align: center;
}

.top_info_item [class^="btn0"] a {
  padding: 2px 30px 5px 15px;
  margin: 0 auto;
  min-width: 210px;
}

.top_info_item [class^="btn0"] a::before {
  right: 28px;
}

.top_info_item [class^="btn0"] a:hover::before {
  right: 20px;
}

/*--------------------お知らせ--------------------*/
.top_news {
  box-shadow: 0 0 10px rgba(252, 208, 121, 0.6);
}

.top_news .tit_wrap {
  border-bottom-color: #fcd079;
}

.top_news .tit_wrap p {
  background: url("images/bg_icon_news.svg") right top no-repeat;
  color: #fab020;
  margin-left: 15px;
}

.top_news ul li a:hover {
  color: #fab020;
}

/*--------------------お悩み相談--------------------*/
.top_cons {
  box-shadow: 0 0 10px rgba(135, 205, 150, 0.6);
}

.top_cons .tit_wrap {
  border-bottom-color: #87cd96;
}

.top_cons .tit_wrap p {
  background: url("images/bg_icon_cons.svg") right top no-repeat;
  color: #87cd96;
}

.top_cons ul li a:hover {
  color: #87cd96;
}

/*--------------------診療予約--------------------*/
.sec_top_reserve {
  padding: 90px 0 0;
}

.box1.top_reserve {
  border-radius: 25px;
  padding: 60px 35px 35px;
  /* 	background: linear-gradient( -45deg, #fff 25%, #EFF3EB 25%, #EFF3EB 50%, #fff 50%, #fff 75%, #EFF3EB 75%, #EFF3EB );
    background-size: 8px 8px;	 */
  background: url("../../uploads/2023/02/top_reserve_bg02.png");
  background-size: cover;
}

.top_reserve .tit_wrap {
  margin-bottom: 50px;
}

/* ★診療予約 sec_top_reserveA★ */
.sec_top_reserveA {
  padding: 90px 0 0;
}

.box1.top_reserveA {
  border-radius: 25px;
  padding: 60px 35px 35px;
  /* 	background: linear-gradient( -45deg, #fff 25%, #EFF3EB 25%, #EFF3EB 50%, #fff 50%, #fff 75%, #EFF3EB 75%, #EFF3EB );
    background-size: 8px 8px;	 */
  background: url("../../uploads/2023/02/top_reserve_bg02.png");
  background-size: cover;
  background-position: right bottom;
}

.top_reserveA .tit_wrap {
  margin-bottom: 50px;
}

.top_reserveA ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0 2%;
}

.top_reserveA ul::after {
  display: block;
  content: "";
  width: 32%;
}

.top_reserveA ul li {
  margin-bottom: 15px;
  width: 32%;
}

.top_reserveA ul li a {
  width: 100%;
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  padding: 0;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std R";
  font-size: 16px;
  position: relative;
  height: 100px;
  display: block;
  line-height: 1.6;
  border: 3px solid var(--main-color);
}

.top_reserveA ul li a .reserve_tit {
  display: block;
  text-align: center;
  background: var(--main-color);
  height: 38px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.top_reserveA .reserve_txt {
  padding: 10px 40px 10px 10px;
}

.top_reserveA .reserve_txt.line_2 {
  font-size: 0.8em;
}

.top_reserveA ul li a::before {
  position: absolute;
  content: "";
  right: 17px;
  top: 32px;
  bottom: 0;
  margin: auto;
  display: block;
  width: 7px;
  height: 13px;
  background: url("images/icon_arrow_gr.svg") no-repeat;
  background-size: cover;
  transition: .2s ease-in-out;
}

.top_reserveA ul li a:hover::before {
  right: 10px;
}

.top_reserveA ul li a span {
  display: block;
}

/*.top_reserve ul{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	gap: 0 2%;
}
.top_reserve ul::after {
display: block;
content:"";
width: 32%;
}
.top_reserve ul li{
	margin-bottom:15px;
    width: 32%;	
}
.top_reserve ul li a{
	width: 100%;
    background-color: rgb(110 200 93 / 80%);
    color: #fff;
    border-radius: 10px;
    padding: 10px 20px;
    font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std R";
    font-size: 16px;
    display: inline-block;
	position:relative;
}
.top_reserve ul li a::before{
	position: absolute;
    content: "";
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 7px;
    height: 13px;
    background: url("images/icon_arrow_btn.svg") no-repeat;
    transition: .2s ease-in-out;
}
.top_reserve ul li a:hover{
	color:#fff;
	background-color:#8bd37d;
}
.top_reserve ul li a:hover::before{
right: 20px;
	}

.top_reserve ul li:nth-child(odd) a{
  background:rgb(93 200 155 / 80%);
}*/
.img_flex {
  display: flex;
  justify-content: center;
}

.img_flex a {
  margin: 20px;
}

/*--------------------高血圧--------------------*/
.sec_top_pressure {
  padding: 100px 0 185px;
  background: url("images/bg_pressure.jpg") center no-repeat;
  background-size: cover;
}

.sec_top_pressure .tit_wrap {
  margin-bottom: 60px;
}

.list_pressure {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px 0;
}

.list_pressure li {
  width: 260px;
  height: 260px;
}

.list_pressure li a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: url("images/btn_pressure_gr_2x.png");
  background-size: cover;
  transition: 0.2s ease-in-out;
}

.list_pressure li a:hover {
  transform: translateY(-20px);
  filter: drop-shadow(0 15px 10px rgba(31, 31, 31, 0.2));
}

.list_pressure li .title {
  text-align: center;
  font-size: 26px;
  line-height: 1.38;
  color: #333;
  letter-spacing: 0.12em;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std M";
  text-shadow: #fff 3px 0px 0px,
    #fff 2.83487px 0.981584px 0px,
    #fff 2.35766px 1.85511px 0px,
    #fff 1.62091px 2.52441px 0px,
    #fff 0.705713px 2.91581px 0px,
    #fff -0.287171px 2.98622px 0px,
    #fff -1.24844px 2.72789px 0px,
    #fff -2.07227px 2.16926px 0px,
    #fff -2.66798px 1.37182px 0px,
    #fff -2.96998px 0.42336px 0px,
    #fff -2.94502px -0.571704px 0px,
    #fff -2.59586px -1.50383px 0px,
    #fff -1.96093px -2.27041px 0px,
    #fff -1.11013px -2.78704px 0px,
    #fff -0.137119px -2.99686px 0px,
    #fff 0.850987px -2.87677px 0px,
    #fff 1.74541px -2.43999px 0px,
    #fff 2.44769px -1.73459px 0px,
    #fff 2.88051px -0.838247px 0px;
}

.list_pressure li .title span {
  font-size: 115%;
  color: #59b138;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.list_pressure li:nth-of-type(2) .title span,
.list_pressure li:nth-of-type(4) .title span,
.list_pressure li:nth-of-type(5) .title span,
.list_pressure li:nth-of-type(7) .title span {
  color: #fc8240;
}

.list_pressure li .more {
  position: absolute;
  z-index: 0;
  bottom: 22px;
  right: 68px;
  line-height: 1.5;
}

.list_pressure li .more span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 14px;
  text-shadow: #318e0d 2px 0px 0px, #318e0d 1.75517px 0.958851px 0px, #318e0d 1.0806px 1.68294px 0px, #318e0d 0.141474px 1.99499px 0px, #318e0d -0.832294px 1.81859px 0px, #318e0d -1.60229px 1.19694px 0px, #318e0d -1.97998px 0.28224px 0px, #318e0d -1.87291px -0.701566px 0px, #318e0d -1.30729px -1.5136px 0px, #318e0d -0.421592px -1.95506px 0px, #318e0d 0.567324px -1.91785px 0px, #318e0d 1.41734px -1.41108px 0px, #318e0d 1.92034px -0.558831px 0px;
  border-bottom: 1px solid #69c644;
  padding: 0 10px;
}

.list_pressure li .more::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -50px;
  bottom: -28px;
  width: 78px;
  height: 78px;
  border-radius: 100%;
  background: #5cbf34 url("images/icon_arrow_wh_m.svg") center no-repeat;
}

/* オレンジ色のリストのCSS */
.list_pressure li:nth-of-type(2) .more span,
.list_pressure li:nth-of-type(4) .more span,
.list_pressure li:nth-of-type(5) .more span,
.list_pressure li:nth-of-type(7) .more span {
  text-shadow: #cf7c0f 2px 0px 0px, #cf7c0f 1.75517px 0.958851px 0px, #cf7c0f 1.0806px 1.68294px 0px, #cf7c0f 0.141474px 1.99499px 0px, #cf7c0f -0.832294px 1.81859px 0px, #cf7c0f -1.60229px 1.19694px 0px, #cf7c0f -1.97998px 0.28224px 0px, #cf7c0f -1.87291px -0.701566px 0px, #cf7c0f -1.30729px -1.5136px 0px, #cf7c0f -0.421592px -1.95506px 0px, #cf7c0f 0.567324px -1.91785px 0px, #cf7c0f 1.41734px -1.41108px 0px, #cf7c0f 1.92034px -0.558831px 0px;
  border-bottom-color: #ff9257;
}

.list_pressure li:nth-of-type(2) .more::after,
.list_pressure li:nth-of-type(4) .more::after,
.list_pressure li:nth-of-type(5) .more::after,
.list_pressure li:nth-of-type(7) .more::after {
  background-color: #fd823f;
}

.list_pressure li:nth-of-type(2) a,
.list_pressure li:nth-of-type(4) a,
.list_pressure li:nth-of-type(5) a,
.list_pressure li:nth-of-type(7) a {
  background: url("images/btn_pressure_or_2x.png");
  background-size: cover;
}

/*--------------------トピックス--------------------*/
.sec_top_topics {
  padding: 95px 0 160px;
}

#topics {
  /*max-width: 1800px;*/
  max-width: 1100px;
  margin: 35px auto 0;
  overflow: hidden;
}

#topics li {
  transform-origin: center;
}

#topics .slick-slide {
  opacity: 0.6;
  transition: 0.3s linear;
  transform: scale(0.8);
}

#topics .slick-slide:first-of-type {
  opacity: 0.6;
  transform: scale(0.8);
}

#topics .slick-current,
#topics .is-active-next {
  opacity: 1;
  transform: scale(1);
}

.topics_item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.topics_item a {
  transition: 0.2s;
}

.topics_item a:hover {
  opacity: 0.8;
}

.topics_item .bg_img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

.topics_item .over_text {
  background: rgba(48, 48, 48, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}

.topics_item .over_text ul li {
  color: #fff;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: calc(20px + 16 * (100vw - 1200px)/800);
  line-height: 1.55;
  letter-spacing: 0;
}

#topics .slick-next {
  right: 16.7%;
  background: url("images/slick_next.png") center bottom no-repeat;
}

#topics .slick-prev {
  left: 16.7%;
  background: url("images/slick_prev.png") center bottom no-repeat;
}

#topics .slick-arrow {
  z-index: 1;
  box-sizing: content-box;
  width: 76px;
  height: 76px;
  top: calc(44% - 76px);
  bottom: 0;
  margin: auto;
}

.slick-prev:before,
.slick-next:before {
  display: none;
}

/*--------------------かかりつけ医--------------------*/
.sec_top_personal {
  padding: 135px 0 130px;
  background: url("images/bg_kakaritsuke.jpg") center top no-repeat;
  background-size: cover;
}

.tit_personal {
  position: relative;
  background: #fff;
  width: auto;
  margin: 0 7.5%;
  padding: 19px 10px;
  filter: drop-shadow(0 0 25px rgba(192, 192, 192, 0.3));
  margin-bottom: 65px;
}

.tit_personal::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -24px;
  right: 0;
  margin: auto;
  width: 38px;
  height: 24px;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 0% 0%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%, 0% 0%);
}

.tit_personal h2 {
  margin: auto;
  width: fit-content;
  background: none;
  color: #24a98b;
  font-size: 36px;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 0;
  box-shadow: none;
}

.tit_personal h2::before,
.tit_personal h2::after {
  content: "";
  border: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 48px;
  height: 12px;
}

.tit_personal h2::before {
  left: -74px;
  right: auto;
  background: url("images/tit_kakaritsuke_l.svg") no-repeat;
}

.tit_personal h2::after {
  right: -74px;
  left: auto;
  background: url("images/tit_kakaritsuke_r.svg") no-repeat;
}

h3.catch_personal {
  width: fit-content;
  color: #6ec85d;
  font-size: 32px;
  letter-spacing: 0.12em;
  text-align: center;
  border: none;
  padding: 0;
  margin: 0 auto 65px;
  background: none;
}

h3.catch_personal span {
  color: #6ec85d;
  font-size: 100%;
  background: linear-gradient(transparent 50%, #fdf6d7 50%);
}

h3.catch_personal span em {
  color: #faac3c;
  font-size: 156%;
  font-style: normal;
}

h3.catch_personal::before,
h3.catch_personal::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  margin: 0;
  width: 40px;
  height: 55px;
}

h3.catch_personal::before {
  left: -58px;
  background: url("images/tit_pow_l.svg") no-repeat;
  background-size: cover;
}

h3.catch_personal::after {
  right: -50px;
  left: auto;
  background: url("images/tit_pow_r.svg") no-repeat;
  background-size: cover;
}

.list_power {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 55px;
}

.list_power .circle {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 199px;
  height: 199px;
  margin: 0 27px;
}

.list_power .circle::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdba1a;
  border-radius: 100%;
}

.list_power .circle::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: -8px;
  width: 199px;
  height: 199px;
  border: 1px solid #ffc844;
  border-radius: 100%;
}

.list_power .circle i {
  position: absolute;
  top: -20px;
  left: 10px;
}

.list_power .circle p {
  position: relative;
  text-align: center;
  color: #fff;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 30px;
}

.list_power .circle p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  margin: 0 auto;
  border-bottom: 3px dashed #fff;
  width: 120px;
}

.list_power .circle:nth-of-type(1)::before {
  background-image: url("images/bg_pow01.png");
  background-repeat: no-repeat;
}

.list_power .circle:nth-of-type(2)::before {
  background-color: #fea740;
  background-image: url("images/bg_pow02.png");
  background-repeat: no-repeat;
}

.list_power .circle:nth-of-type(2)::after {
  border-color: #ffb761;
}

.list_power .circle:nth-of-type(3)::before {
  background-image: url("images/bg_pow03.png");
  background-repeat: no-repeat;
}

.text_personal {
  text-align: center;
  font-size: 16px;
  line-height: 2.5;
}

.text_personal p {
  margin-bottom: 1em;
}

.text_personal .btn01 {
  margin-top: 100px;
}

.text_personal .btn01 a {
  min-width: 210px;
  padding: 2px 15px 5px;
}

.text_personal .btn01 a::before {
  right: 28px;
}

.text_personal .btn01 a:hover::before {
  right: 20px;
}

/*--------------------ループスライダー--------------------*/
.loop_slide_wrap {
  margin: 0 auto;
}

.loop_slide_wrap .slick-slider div {
  transition: none;
}

.loop_slide_wrap .slick-list {
  overflow: hidden !important;
}

.loop_slide_wrap .slick-initialized .slick-slide {
  height: auto;
}

.loop_slide_wrap .slick-initialized .slick-slide img {
  width: 464px;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.loop_slide_wrap .slick-initialized .slick-slide:focus {
  outline: none;
}

/*--------------------診療案内--------------------*/
.sec_top_medical {
  padding: 120px 0 185px;
  background: url("images/bg_medical_top.jpg") left top no-repeat, url("images/bg_medical_bottom.jpg") right bottom no-repeat;
}

.sec_top_medical .tit_wrap {
  margin-bottom: 50px;
}

.top_medical_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 42px;
}

.top_medical_item {
  overflow: hidden;
  border-radius: 20px;
  width: 30.7%;
}

.top_medical_item_tit {
  position: relative;
}

.top_medical_item_tit h3 {
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: none;
  padding: 0;
  color: #739d18;
  font-size: 32px;
  text-shadow: #fff 3px 0px 0px,
    #fff 2.83487px 0.981584px 0px,
    #fff 2.35766px 1.85511px 0px,
    #fff 1.62091px 2.52441px 0px,
    #fff 0.705713px 2.91581px 0px,
    #fff -0.287171px 2.98622px 0px,
    #fff -1.24844px 2.72789px 0px,
    #fff -2.07227px 2.16926px 0px,
    #fff -2.66798px 1.37182px 0px,
    #fff -2.96998px 0.42336px 0px,
    #fff -2.94502px -0.571704px 0px,
    #fff -2.59586px -1.50383px 0px,
    #fff -1.96093px -2.27041px 0px,
    #fff -1.11013px -2.78704px 0px,
    #fff -0.137119px -2.99686px 0px,
    #fff 0.850987px -2.87677px 0px,
    #fff 1.74541px -2.43999px 0px,
    #fff 2.44769px -1.73459px 0px,
    #fff 2.88051px -0.838247px 0px;
}

.top_medical_item_tit h3::before,
.top_medical_item_tit h3::after {
  display: none;
}

.top_medical_item_list {
  min-height: 459px;
  background: #f6f6f6 url("images/bg_medical_list.png") left top no-repeat;
}

.top_medical_item_list li:not(:last-child) {
  border-bottom: 1px dashed #acd258;
}

.top_medical_item_list li a {
  display: block;
  padding: 15px 0 17px 80px;
  color: #333;
  font-size: 22px;
  letter-spacing: 0.12em;
  background: url("images/icon_arrow_gr.svg") left 45px center no-repeat;
  transition: 0.2s ease-in-out;
}

.top_medical_item_list li a:hover {
  background-color: rgba(140, 189, 33, 0.1);
  background-position: left 50px center;
}

/* オレンジ */
.top_medical_item:nth-of-type(2n) .top_medical_item_tit h3 {
  color: #fe8814;
}

.top_medical_item:nth-of-type(2n) .top_medical_item_list li {
  border-bottom-color: #fab776;
}

.top_medical_item:nth-of-type(2n) .top_medical_item_list li a {
  background-image: url("images/icon_arrow_or.svg");
}

.top_medical_item:nth-of-type(2n) .top_medical_item_list li a:hover {
  background-color: rgba(255, 156, 59, 0.1);
}

/*==================================================================================================================================

  ホーム（1カラム）

==================================================================================================================================*/
main.osaka {
  width: 100%;
}

main.osaka .box1 {
  width: 1200px;
  margin: 0 auto;
}

/*==================================================================================================================================

  メインビジュアル

==================================================================================================================================*/
/*--------------------#mainvisual--------------------*/
#mainvisual {
  display: block;
  position: relative;
  height: 440px;
  /* overflow: hidden; */
}

#mainvisual .header_img {
  object-fit: cover;
  width: 100%;
  position: absolute;
  z-index: -1;
  overflow: hidden;
  min-height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

#mainvisual .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: inherit;
  margin: 0 auto;
  width: 1200px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainvisual .slider-slide+.inner {
  width: 1036px;
}

/*----------スライダー フェード----------*/
.slider-fade .slick-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

/*----------スライダー スライド----------*/
.slider-slide {
  width: 100%;
  margin: 0 auto;
}

.slick-slider {
  position: relative;
  overflow: hidden;
}

.slider-slide .slick-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 5px;
}

.slider-slide .pattern {
  width: 100%;
}

.slider-slide .slick-slide {
  margin: 0 5px;
}

.slider-slide .slick-list.draggable {
  width: 1200px !important;
  margin: 0 auto;
  padding: 0 !important
}

/*----------キャッチコピー----------*/
/* .main_catch {
  position: absolute;
  left: -100px;
  top: 302px;
  width:auto;
  height: 554px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
} */
.main_catch {
  position: absolute;
  left: 10%;
  top: 302px;
  width: auto;
  height: 554px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}

body.home #mainvisual .slider-fade .main_catch img {
  height: 554px;
  object-fit: contain;
}

/*----------ワクチン予約バナー----------*/
.main_vaccine {
  position: absolute;
  right: 0;
  bottom: 49px;
}

.main_vaccine a {
  transition: 0.2s ease-in-out;
}

.main_vaccine a:hover {
  opacity: 0.8;
}

/*==================================================================================================================================

  フッター

==================================================================================================================================*/
/*--------------------footer--------------------*/
footer {
  background: #f8f1dd;
  position: relative;
  width: 100%;
}

.footer_inner {
  width: 1200px;
  margin: auto;
  padding: 115px 0 110px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*--------------------footer 左側--------------------*/
.footer_info_left {
  width: 47.5%;
  box-sizing: border-box;
}

/*ロゴ*/
.footer_info_left .logo {
  text-align: center;
  margin: 0 0 40px;
}

.footer_info_left .logo img {
  max-width: 470px;
  max-height: 103px;
}

/* 住所 */
.footer_info_add {
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}

/* 電話番号 */
.footer_info_tel {
  max-width: 379px;
  text-align: center;
  background: #fff;
  margin: 0 auto 40px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  border-radius: 30px;
}

.footer_info_tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f88a13;
  font-size: 30px;
  line-height: 1.74;
}

.footer_info_tel a:hover {
  color: #f88a13;
}

.footer_info_tel a span {
  display: block;
  margin-right: 12px;
}

.footer_info_tel a span img {
  vertical-align: baseline;
}

/* 診療時間表 */
.sche_wrap {
  position: relative;
  z-index: 0;
  background: #fff;
  padding: 0 20px 28px;
  border-radius: 20px;
  overflow: hidden;
}

.sche_wrap::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 78px;
  background: #6ccd62;
}

.sche_wrap .tb02 {
  position: relative;
  z-index: 1;
}

/*--------------------footer 右側--------------------*/
.footer_info_right {
  margin-top: 60px;
  width: 47.5%;
}

/* イラストマップ */
.footer_map img {
  margin-bottom: 33px;
}

/* ボタン */
.btn_map {
  text-align: center;
}

.btn_map a {
  position: relative;
  padding: 10px 0;
  max-width: 397px;
  margin: auto;
  display: block;
  color: #fff;
  font-size: 18px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  letter-spacing: 0.12em;
  background: #fea40e url("images/icon_blank.svg") right 45px center no-repeat;
  border: 3px solid #f9d38f;
  border-radius: 30px;
}

.btn_map a:hover {
  background-color: #feb63e;
}


/*--------------------footer アクセス--------------------*/
.footer_access .access_title {
  color: #f8962d;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 14px;
}

.footer_access {
  width: 100%;
  padding: 35px 20px 52px 20px;
  margin-top: 30px;
  background: #fcf8ee;
}

.footer_access_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding-top: 10px;
}

.footer_map {
  width: 50%;
}

/* YouTube */
.footer_access_movie {
  width: 49%;
}

.footer_access_movie_text {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  margin-bottom: 10px;
  line-height: 1.5;
  background: #fff;
  padding: 10px;
  border-radius: 7px;
  border: 2.5px solid #f88a13;
  text-align: center;
}

/*--------------------footer 下側--------------------*/
.footer_info_bottom,
.footer_calendar {
  padding: 35px 0 52px;
  margin-top: 30px;
  background: #fcf8ee;
  width: 100%;
}

.footer_info_bottom .reserve,
.footer_calendar .calendar_title {
  color: #f8962d;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 22px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 14px;
}

.reserve_list {
  display: flex;
  justify-content: center;
}

.reserve_list li {
  margin: 0 13px;
}

.reserve_list li p {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.12em;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  color: #777;
  margin-bottom: 5px;
}

.reserve_list .btn_line a:hover {
  opacity: 0.8;
}

/*----------カレンダー----------*/
.footer_g_calendar {
  width: 100%;
}

.footer_g_calendar iframe {
  width: 100%;
  height: 485px;
}

.g_calendar_cate {
  /*     display: flex; */
  justify-content: center;
  background: #fff;
  width: 100%;
  margin: 0 auto 10px auto;
  border-radius: 22px;
  padding: 0 20px;
}

.g_calendar_cate ul {
  display: flex;
}

.g_calendar_cate li {
  font-weight: 700;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  /* 	font-size: 16px; */
  font-size: 14px;
  color: #777;
}

.g_calendar_cate li {
  /* 	padding-right:1em; */
  padding-right: 0.5em;
}

.g_calendar_cate p span {
  font-size: 0.9em;
  font-weight: 700;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  color: #777;
}

.g_calendar_cate li:last-child {
  padding-right: 0;
}

.g_calendar_cate li:first-child::before {
  display: inline-block;
  content: "";
  position: relative;
  top: 2px;
  width: 2.5em;
  height: 1em;
  /*     background: #B5515D; */
  background: #df7fa2;
  margin-right: 5px;
}

.g_calendar_cate li:nth-child(2)::before {
  display: inline-block;
  content: "";
  position: relative;
  top: 2px;
  width: 2.5em;
  height: 1em;
  /*     background: #668CD9; */
  background: #82ade3;
  margin-right: 5px;
}

.g_calendar_cate li:nth-child(3)::before {
  display: inline-block;
  content: "";
  position: relative;
  top: 2px;
  width: 2.5em;
  height: 1em;
  background: #f8742d;
  margin-right: 5px;
}

.g_calendar_cate li:nth-child(4)::before {
  display: inline-block;
  content: "";
  position: relative;
  top: 2px;
  width: 2.5em;
  height: 1em;
  background: #A7B828;
  margin-right: 5px;
}

.g_calendar_cate li:nth-child(5)::before {
  display: inline-block;
  content: "";
  position: relative;
  top: 2px;
  width: 2.5em;
  height: 1em;
  background: #8763d9;
  margin-right: 5px;
}

.g_calendar_cate li:nth-child(6)::before {
  display: inline-block;
  content: "";
  position: relative;
  top: 2px;
  width: 2.5em;
  height: 1em;
  background: #F6BF26;
  margin-right: 5px;
}

.calendar_img {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.calendar_img a {
  position: relative;
  display: block;
  margin: 10px;
}

.g_calendar_cate {
  flex-wrap: wrap;
  line-height: 1.5;
  padding: 10px;
}

.g_calendar_cate ul {
  flex-wrap: wrap;
  gap: 4px;
}

.calendar_img a:first-child::before {
  position: absolute;
  content: "2023年7月";
  top: -30px;
  background: var(--main-color);
  width: 100%;
  text-align: center;
  line-height: 1.5;
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.calendar_img a:nth-child(2)::before {
  position: absolute;
  content: "2023年8月";
  top: -30px;
  background: var(--main-color);
  width: 100%;
  text-align: center;
  line-height: 1.5;
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.calendar_img a:nth-child(3)::before {
  position: absolute;
  content: "2023年9月";
  top: -30px;
  background: var(--main-color);
  width: 100%;
  text-align: center;
  line-height: 1.5;
  border-radius: 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.footer_calendar {
  color: #f8962d;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-align: center;
}

/*----------コピーライト----------*/
.copy {
  background: #90c31f;
  text-align: center;
  padding: 11px 0 14px;
}

.copy small {
  font-size: 14px;
  color: #fff;
}

/*==================================================================================================================================

  共通要素（wrapper,box,section等）

==================================================================================================================================*/
/*--------------------main(ページレイアウト)--------------------*/
.contents_bg {
  background: url("images/bg_medical_top.jpg") left top no-repeat, url("images/bg_medical_bottom.jpg") right bottom no-repeat;
  position: relative;
}

.contents_bg:before {
  content: '';
  height: 100%;
  display: block;
  position: absolute;
  /* background: #fff; */
  top: 0;
  width: 50%;
  right: 0;
}

.contents {
  width: 1200px;
  margin: auto;
  padding: 50px 20px 56px;
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
  /* background: #fff; */
  z-index: 2;
}

main img {
  max-width: 100%;
  height: auto;
}

.wrapper main {
  width: 68%;
  padding: 30px 0;
}

/*--------------------box--------------------*/
.box {}

.box1 {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
}

section:first-child .box1 {
  padding-top: 0;
}

/*--------------------text--------------------*/
.text {
  position: relative;
  margin: 0 0 80px;
}

.text p {
  margin-bottom: 1em;
}

.text p:last-child {
  margin-bottom: 0;
}

.textarea p {
  font-size: 16px;
  margin-bottom: 22px;
}

.textarea p:last-child {
  margin-bottom: 0;
}

/*--------------------下層ページのレイアウト--------------------*/
.body_single,
.sec_doctor,
.sec_clinic,
.price_wrap,
.faq_wrap,
.sec_access,
.access_route,
.sec_recruit,
.sec_freearea_up,
.sec_freearea_under,
.medical_list li,
.clinic_facilities {
  position: relative;
  margin: 0 0 80px;
}

.body_single p {
  margin-bottom: 1em;
}

.body_single img {
  border-radius: 12px;
}

.sec_medical .text {
  margin-bottom: 0;
}

.single-problem .body_single p {
  text-align: left;
}

.medical_list .btn_area_medical {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 0 2%;
}

.medical_list .btn_area_medical .btn01 {
  width: 32%;
}

.medical_list .btn_area_medical .btn01 a {
  width: 100%;
}

/* .sec_medical #link08 .text p {
	display:none;
} */
.close {
  position: relative;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  overflow: hidden;
}

.close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1;
}

.close.vaccine::before {
  content: "令和7年2月28日で終了いたしました。";
}

/*--------------------サイドバー--------------------*/
.side_area {
  width: 28%;
  padding: 50px 2%;
  z-index: 3;
}

.post-type-archive-problem .wrapper b {
  width: 28%;
  padding: 50px 2%;
  z-index: 3;
}

.post-type-archive-problem .wrapper b .side_area {
  width: 100%;
}

.side_box,
.side_bannar {
  margin-bottom: 40px;
}

.side_area .btn01 a {
  width: 100%;
  color: #fff !important;
}

.side_bannar ul li {
  margin-bottom: 10px;
  text-align: center;
}

.side_bannar ul li a:hover {
  opacity: .8;
}

.side_area .side_title {
  font-size: 113%;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  margin-bottom: 15px;
  padding-bottom: 10px;
  /* border-bottom: solid 2px var(--main-color); */
  text-align: left;
  line-height: 1.6;
}

.side_area .side_title i {
  margin-right: 12px;
  vertical-align: middle;
  color: var(--main-color);
}

.side_area li {}

.side_area li a {
  color: #333;
}

.side_area li a:hover {
  color: var(--main-color);
}

.op_sidefreearea {}

.op_sidefreearea p a {
  display: block;
}

/*----------SNSボタン----------*/
.side_sns {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

.side_sns li {
  width: -moz-available;
  width: -webkit-fill-available;
  margin-right: 5px;
}

.side_sns li:last-child {
  margin-right: 0;
}

.side_sns li a {
  display: block;
  background-color: #fff;
  color: var(--main-color);
  text-align: center;
  font-size: 12px;
  padding-top: 7px;
  border-radius: 5px;
}

.side_sns li a i {
  display: block;
  font-size: 18px;
}

/*----------診療案内メニュー----------*/
.medical_menu {
  background: linear-gradient(-25deg, #fcd079 0%, #fcd079 50%, #87cd96 50%, #87cd96 100%);
  border-radius: 10px;
  overflow: hidden;
  padding: 5px;
}

.medical_menu .side_title {
  color: #555;
  background: #f8f1dd url("images/bg_medical_head.png") center no-repeat;
  padding: 15px 0;
  text-align: center;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 0;
  text-shadow: rgb(255, 255, 255) 2px 0px 0px, rgb(255, 255, 255) 1.75517px 0.958851px 0px, rgb(255, 255, 255) 1.0806px 1.68294px 0px, rgb(255, 255, 255) 0.141474px 1.99499px 0px, rgb(255, 255, 255) -0.832294px 1.81859px 0px, rgb(255, 255, 255) -1.60229px 1.19694px 0px, rgb(255, 255, 255) -1.97998px 0.28224px 0px, rgb(255, 255, 255) -1.87291px -0.701566px 0px, rgb(255, 255, 255) -1.30729px -1.5136px 0px, rgb(255, 255, 255) -0.421592px -1.95506px 0px, rgb(255, 255, 255) 0.567324px -1.91785px 0px, rgb(255, 255, 255) 1.41734px -1.41108px 0px, rgb(255, 255, 255) 1.92034px -0.558831px 0px;
  letter-spacing: 0.12em;
}

.medical_menu ul {
  background: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

.medical_menu li {
  position: relative;
  border-bottom: 1px solid #f8f1dd;
  line-height: 1.6;
  transition: 0.3s;
}

.medical_menu li:last-of-type {
  border-bottom: none;
}

.medical_menu li a {
  display: block;
  padding: 10px 0 10px 25px;
  transition: 0.3s;
  background: url("images/icon_arrow_gr.svg") left 10px center no-repeat;
  background-size: auto 10px;
}

.medical_menu li:nth-of-type(even) a {
  background-image: url("images/icon_arrow_or.svg");
}

.medical_menu li a:hover {
  color: #8cbd21;
  background-position: left 13px center;
  background-color: #fcf8ee;
}

.medical_menu li:nth-of-type(even) a:hover {
  color: #ff9c3b;
}

/*--------------------ボタン--------------------*/
.btn01 a {
  display: inline-block;
  padding: 8px 30px 8px 15px;
  margin: 10px 0;
  background-color: #ff9c00;
  color: #fff;
  transition: .2s ease-in-out;
  position: relative;
  border-radius: 10px;
}

.btn01 a:hover {
  color: #fff;
  background-color: #ffb033;
}

.btn01 a:before {
  position: absolute;
  content: "";
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 7px;
  height: 13px;
  background: url("images/icon_arrow_btn.svg") no-repeat;
  transition: .2s ease-in-out;
}

.btn01 a:hover::before {
  right: 10px;
}

.btn01 a i {
  margin: 0 0 0 10px;
}

/*--------------------ボタン（色違い）--------------------*/
.btn02 a {
  display: inline-block;
  padding: 8px 30px 8px 15px;
  margin: 10px 0;
  background-color: #19b96c;
  color: #fff;
  transition: .2s ease-in-out;
  position: relative;
  border-radius: 10px;
}

.btn02 a:hover {
  color: #fff;
  background-color: #47c789;
}

.btn02 a:before {
  position: absolute;
  content: "";
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 7px;
  height: 13px;
  background: url("images/icon_arrow_btn.svg") no-repeat;
  transition: .2s ease-in-out;
}

.btn02 a:hover::before {
  right: 10px;
}

.btn02 a i {
  margin: 0 0 0 10px;
}

.flex_btn {
  display: flex;
  gap: 20px;
}

/*--------------------パンくず--------------------*/
#breadcrumb {
  width: 100%;
  margin: 0 0 50px 0;
}

#breadcrumb ol {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  counter-reset: unset;
}

#breadcrumb ol li {
  position: relative;
  padding-right: 20px;
  line-height: 1.5;
  margin: 0;
}

#breadcrumb ol li::before {
  content: '›';
  width: 20px;
  height: 16px;
  line-height: 1;
  text-align: center;
  font-size: 16px;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: none;
  left: unset;
}

#breadcrumb ol li:last-child {
  margin-right: 0;
  padding-right: 0;
}

#breadcrumb ol li:last-child::before {
  content: normal;
}

#breadcrumb ol li a {
  display: inline-block;
  position: relative;
  width: auto;
}

#breadcrumb ol li:last-child {
  display: inline-block;
  position: relative;
  width: auto;
}

/*--------------------タイトル--------------------*/
h2,
h3,
h4,
h5,
h6 {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}


h1 {
  position: absolute;
  top: 35px;
  left: 0;
  line-height: 1.3;
  font-weight: 500;
  font-size: 13px;
  text-align: left;
  color: #333;
  text-shadow: 0 0 10px #fff;
}

h2 {
  position: relative;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  letter-spacing: 0.12em;
  color: #739d18;
  font-size: 160%;
  line-height: 1.4;
  background: #dcf2da url("images/tit01_re.png") right 10px bottom -14px no-repeat;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 3px 0 #eff7e7;
}

h2 span {
  font-size: 80%;
  color: #fff;
}

.tit_wrap {
  text-align: center;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 15px #fff;
}

.tit_wrap h2 {
  text-align: center;
  padding: 0;
  margin: 0 auto 10px;
  font-size: 36px;
  color: #555;
  border-bottom: none;
  letter-spacing: 0.12em;
  background: none;
  box-shadow: none;
}

.tit_wrap h2::after {
  display: none;
}

.tit_wrap p {
  color: #f99e3c;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std M";
  font-size: 14px;
  letter-spacing: 0.12em;
}

h3 {
  color: #555;
  position: relative;
  padding: 0 0 12px 0;
  margin: 0 0 20px;
  line-height: 1.4;
  font-size: 143%;
  background: url("images/tit02_re.svg") left bottom repeat-x;
  letter-spacing: 0.12em;
}


h3 span {
  font-size: 80%;
  color: var(--sub-color);
}

h4 {
  position: relative;
  margin: 0 0 5px;
  line-height: 1.6;
  font-size: 127%;
  color: #fea40e;
  padding-left: 45px;
  background: url("images/tit03_re.svg") left top 14px no-repeat;
  letter-spacing: 0.12em;
}

h4 span {
  font-size: 80%;
  color: var(--sub-color);
}

h5 {
  position: relative;
  margin: 0 0 15px;
  line-height: 1.4;
  font-size: 113%;
  color: #59b138;
  padding-left: 12px;
  letter-spacing: 0.12em;
}

h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #59b138;
}

h5::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #acdc7d;
}

h5 span {
  font-size: 80%;
  color: var(--sub-color);
}

h6 {
  font-size: 100%;
  color: #8dc21f;
  letter-spacing: 0.12em;
}

/*--------------------下層の見出しの上に余白を付ける--------------------*/
.body_single h2:nth-child(n+2) {
  margin-top: 2em;
}

.body_single h3:nth-child(n+2),
.body_single h4:nth-child(n+2),
.body_single h5:nth-child(n+2),
.body_single h6:nth-child(n+2) {
  margin-top: 1.5em;
}

/*--------------------TinyMCEエディタ用--------------------*/
/*----------見出し----------*/
/*太字*/
.title_style01 {
  color: var(--main-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  border: none;
  background: none;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  display: table;
}

/*下線*/
.title_style02 {
  color: var(--main-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  border-bottom: 1px solid var(--main-color);
  background: none;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  display: table;
}

/*背景色付き・白抜き*/
.title_style03 {
  background: var(--main-color);
  color: #fff;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  border: none;
  text-align: left;
  margin-right: 0;
  margin-left: 0;
  padding: 5px 10px;
}

h2.title_style01:before,
h2.title_style01:after,
h3.title_style01:before,
h3.title_style01:after,
h4.title_style01:before,
h4.title_style01:after,
h5.title_style01:before,
h5.title_style01:after,
h2.title_style02:before,
h2.title_style02:after,
h3.title_style02:before,
h3.title_style02:after,
h4.title_style02:before,
h4.title_style02:after,
h5.title_style02:before,
h5.title_style02:after,
h2.title_style03:before,
h2.title_style03:after,
h3.title_style03:before,
h3.title_style03:after,
h4.title_style03:before,
h4.title_style03:after,
h5.title_style03:before,
h5.title_style03:after {
  display: none;
}

/*----------枠----------*/
.box_style01 {
  background: #fcf8ee;
  padding: 20px;
  margin: 0 0 15px;
  border-radius: 20px;
}

.box_style02 {
  border: solid 1px var(--border-color);
  padding: 20px;
  margin: 0 0 15px;
}

.box_style03 {
  border: dashed 1px var(--border-color);
  padding: 20px;
  margin: 0 0 15px;
}

.box_style01 p:last-of-type,
.box_style02 p:last-of-type,
.box_style03 p:last-of-type {
  margin-bottom: 0;
}

.caution {
  position: relative;
  font-size: 90%;
  background: #f8f1dd;
  width: 90%;
  margin: 30px auto 20px;
  padding: 10px 20px;
  border-radius: 10px;
}

.caution span.balloon {
  position: absolute;
  display: inline-block;
  padding: 0 5px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  background: #fdd079;
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  top: -25px;
  left: 10px;
}

.caution span.balloon:before {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  margin-top: -15px;
  border: 12px solid transparent;
  border-left: 12px solid #fdd079;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.caution span.under_dotline {
  border-bottom: 2px dotted #bdb7a6;
}

.caution.clinic_page {
  width: 100%;
  padding: 20px 20px 20px 60px;
}

.caution.clinic_page span.balloon {
  top: -20px;
  left: -10px;
}

/*----------テーブル----------*/
.body_single table,
.table_style2_30,
.table_style2_50,
.table_style2_70,
.table_style3 {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background-color: var(--bg-color);
}

.body_single th,
.body_single td,
.table_style2_30 th,
.table_style2_30 td,
.table_style2_50 th,
.table_style2_50 td,
.table_style2_70 th,
.table_style2_70 td,
.table_style3 th,
.table_style3 td {
  padding: 8px 20px;
}

.body_single th,
.table_style2_30 th,
.table_style2_50 th,
.table_style2_70 th,
.table_style3 th {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
}

.body_single td,
.table_style2_30 td,
.table_style2_50 td,
.table_style2_70 td,
.table_style3 td {
  background-color: #fff;
  border: 1px solid var(--border-color);
}

.table_style2_30 span,
.table_style2_50 span,
.table_style2_70 span,
.table_style3 span {
  font-size: 80%;
}

.table_style2_30 tr:first-of-type th,
.table_style2_30 tr:first-of-type td {
  width: 30%;
}

.table_style2_30 tr:first-of-type td:nth-child(2) {
  width: 70%;
}

.table_style2_50 tr:first-of-type th,
.table_style2_50 tr:first-of-type td {
  width: 50%;
}

.table_style2_70 tr:first-of-type th,
.table_style2_70 tr:first-of-type td {
  width: 70%;
}

.table_style3 th,
.table_style3 td {
  width: calc(100% / 3) !important;
  ;
}

/*----------ラインマーカー----------*/
.marker {
  background: linear-gradient(transparent 60%, #ffff93 60%);
}

.marker-orange {
  background: linear-gradient(transparent 60%, #ffe2a8 60%);
}

/***********以下はクラスを作るときの参考CSS*********
中央下下線
.tit01 {
  position: relative;
  margin: 30px 0;
  padding: 0;
  line-height: 1.5;
  font-size: 150%;
  text-align: center;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  border-bottom: none;
}
.tit01 span {
  font-size: 80%;
  color: var(--sub-color);
  display: block;
}
.tit01:after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: 3px solid var(--main-color);
  bottom: -3px;
  width: 20%;
  margin: auto;
  right: 0;
  left: 0;
}

背景画像有り 中央寄せ
.tit02 {
  position: relative;
  margin: 30px 0 50px;
  padding: 10px 0 0;
  line-height: 1.5;
  font-size: 150%;
  text-align: center;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  margin-top: 30px;
  background: url("https://yume-kanae.jp/wp/wp-content/themes/system-template/images/h2_bg.png") no-repeat;
  background-position: center top;
  background-size: contain;
  border-bottom: none;
}
.tit02 span {
  border-bottom: none;
  padding-bottom: 9px;
  display: block;
  font-size: 60%;
  color: var(--sub-color);
}
.tit02:after {
  display: none;
}


左右線　中央寄せ
.tit03 {
  border-bottom: dotted 4px var(--main-color);
  margin: 0 0 50px;
}
.tit03 span {
  border-bottom: none;
  padding-bottom: 9px;
  font-size: 80%;
  color: var(--sub-color);
}
.tit03:after {
  display: none;
}

ドットの下線　左寄せ
.tit04 {
  position: relative;
  padding: 0 55px;
}
.tit04 {
  overflow: hidden;
  text-align: center;
  border-bottom: none;
  line-height: 1.5;
  margin: 0 0 40px;
}
.tit04 span {
　　position: absolute;
  display: inline-block;
  margin: 0 0.5em;
  padding: 0 0.25em;
  text-align: left;
  color: #333;
  font-size: 100%;
}
.tit04 span::before,
.tit04 span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 20%;
  height: 1px;
  background-color: black;
}
.tit04 span::before {
  left:0;
}
.tit04 span::after {
  right: 0;
}
/*************************************************/




/*----------下層ページの見出し----------*/
.main_headline {
  padding-top: 190px;
  letter-spacing: 0.15em;
  vertical-align: middle;
  text-align: center;
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff;
}

.main_headline p {
  letter-spacing: 0.2em;
  display: inline-block;
  font-size: 105%;
  color: var(--main-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-transform: capitalize;
}

.main_headline p.midashi {
  line-height: 1.5;
  font-size: 200%;
  text-align: center;
  display: block;
  color: #333;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-transform: inherit;
}

.main_headline p.midashi:before,
.main_headline p.midashi:after {
  display: none;
}

/*----------飾りの英語の棒----------*/
.main_headline p::before,
.main_headline p::after {
  position: relative;
  content: "-";
}

.main_headline p::before {
  left: -0.5em;
}

.main_headline p::after {
  right: -0.5em;
}

/*--------------------診療内容などのコンテンツ部分--------------------*/
.body_list li {
  margin-bottom: 60px;
}

.body_list li .text {
  margin-bottom: 15px;
}

.body_wrap_float:after {
  display: block;
  clear: both;
  content: "";
}

/*ページ内リンク設定*/
.ank_single {
  position: relative;
  margin: 0 0 80px;
}

.anklink {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.anklink li {
  width: 49%;
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: space-between;
  position: relative;
  margin: 0 0 10px;
}

.anklink li a {
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid var(--main-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  color: var(--main-color);
  text-align: center;
  vertical-align: middle;
  transition: 0.1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.anklink li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.anklink li i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}



/*--------------------共通--------------------*/
/*----------無装飾----------*/
.list01 {
  margin: 0 0 15px;
  padding: 0;
  border-width: 0 1px 1px;
}

.list01 li {
  margin-bottom: 12px;
  list-style-type: none;
}

.list01 p:last-of-type {
  margin-bottom: 0;
}

/*----------下線----------*/
.list02 {
  margin: 10px 0;
  border-width: 0 1px 1px;
}

.list02 li {
  margin: 0;
  border-bottom: 1px dotted var(--border-color);
  list-style-type: none;
}

.list02 p:last-of-type {
  margin-bottom: 0;
}

/*----------点----------*/
.list03 {
  list-style: none !important;
  margin: 0 0 15px;
}

.list03 li {
  position: relative;
  padding-left: 15px;
  list-style: none !important;
  display: block;
  list-style-image: none;
}

.list03 li:before {
  display: block;
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 100%;
  content: '';
}

.list03 li i {
  margin-right: 8px;
}

.list03 li span {
  display: block;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.list03 p:last-of-type {
  margin-bottom: 0;
}

/*----------三角----------*/
.list04 {
  margin: 0 0 15px;
}

.list04 li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 15px;
  list-style-type: none;
}

.list04 li:before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 5px solid var(--main-color);
  content: "";
}

.list04 p:last-of-type {
  margin-bottom: 0;
}

/*----------矢印----------*/
.list05 {
  margin: 0 0 15px;
}

.list05 li {
  position: relative;
  padding-left: 15px;
  list-style-type: none;
  margin-bottom: 8px;
}

.list05 li:before {
  position: absolute;
  left: 0;
  top: 10px;
  height: 5px;
  width: 5px;
  transform: rotate(45deg);
  background-color: transparent;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
}

.list05 p:last-of-type {
  margin-bottom: 0;
}

/*----------点と背景色----------*/
.list06 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px;
  background-color: var(--bg-color);
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
}

.list06:after {
  display: block;
  clear: both;
  content: "";
}

.list06 li {
  position: relative;
  float: left;
  margin-bottom: 8px;
  padding-left: 0.9em;
  padding-right: 5%;
  list-style-type: none;
}

.list06 li:before {
  display: block;
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 100%;
}

.list06 p:last-of-type {
  margin-bottom: 0;
}

/*----------点と枠----------*/
.list07 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px;
  border: 3px solid var(--bg-color);
  display: flex;
  flex-wrap: wrap;
}

.list07:after {
  display: block;
  clear: both;
  content: "";
}

.list07 li {
  position: relative;
  padding-left: 1em;
  margin: 0 2em 0.5em 0;
  list-style-type: none;
}

.list07 li:last-child {
  margin-bottom: 0;
}

.list07 li:before {
  display: block;
  content: '';
  position: absolute;
  top: 13px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 100%;
}

.list07 li i {
  margin-right: 8px;
}

.list07 p:last-of-type {
  margin-bottom: 0;
}

/*----------チェックと背景色（一行ずつ表示）----------*/
.list08_w100 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px 30px 10px;
  background-color: var(--bg-color);
}

.list08_w100:after {
  display: block;
  clear: both;
  content: "";
}

.list08_w100 li {
  position: relative;
  float: none;
  margin: 0 30px 10px;
  border-bottom: 1px dotted var(--border-color);
  list-style-type: none;
  display: table;
}

.list08_w100 li:before {
  display: block;
  position: absolute;
  left: -28px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  color: var(--main-color);
}

.list08_w100 p:last-of-type {
  margin-bottom: 0;
}

/*----------チェックと背景色（文章幅に合わせる）----------*/
.list08 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px;
  background-color: var(--bg-color);
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
}

.list08:after {
  display: block;
  clear: both;
  content: "";
}

.list08 li {
  position: relative;
  margin: 0 10px 10px 40px;
  border-bottom: 1px dotted var(--border-color);
  list-style-type: none;
  display: inline-block;
}

.list08 li:before {
  display: block;
  position: absolute;
  left: -23px;
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  color: var(--main-color);
}

.list08 p:last-of-type {
  margin-bottom: 0;
}

.layout10 .list08 {
  background-color: unset;
}

/*----------チェックなし----------*/
.list08_nocheck {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px;
  background-color: var(--bg-color);
  display: flex;
  flex-wrap: wrap;
}

.list08_nocheck:after {
  display: block;
  clear: both;
  content: "";
}

.list08_nocheck li {
  position: relative;
  margin: 0 10px 10px 10px;
  border-bottom: 1px dotted var(--border-color);
  list-style-type: none;
  display: inline-block;
}

.list08_nocheck p:last-of-type {
  margin-bottom: 0;
}

/*----------チェックなし----------*/
.list_kakomi {
  margin: 0 0 15px;
  margin-bottom: 27px;
  display: flex;
  flex-wrap: wrap;
}

.list_kakomi:after {
  display: block;
  clear: both;
  content: "";
}

.list_kakomi li {
  position: relative;
  margin: 0 5px 10px 0;
  padding: 3px 8px;
  border: 1px solid var(--border-color);
  list-style-type: none;
  display: inline-block;
}

.list_kakomi p:last-of-type {
  margin-bottom: 0;
}

/*----------番号付き----------*/
ol {
  margin: 0;
  padding: 0;
  counter-reset: number;
  list-style: none;
}

ol li {
  margin: 0 0 10px 30px;
  list-style-type: none;
  position: relative;
}

ol li:last-of-type {
  margin: 0 0 0 30px;
}

ol li:before {
  padding: 2px 8px;
  border-radius: 2%;
  color: var(--sub-color);
  counter-increment: number;
  content: counter(number)".";
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  top: -1px;
  left: -30px;
  position: absolute;
}

/*----------番号（四角の背景色付き）----------*/
ol.square {
  margin: 0;
  padding: 0;
  counter-reset: number;
  list-style: none;
}

ol.square li {
  margin-bottom: 12px;
  list-style-type: none;
}

ol.square li:last-of-type {
  margin: 0 0 0 30px;
}

ol.square li:before {
  padding: 2px 8px;
  background: var(--sub-color);
  color: #fff;
  counter-increment: number;
  content: counter(number);
}

/*----------番号（四角の背景色付き）----------*/
ol.circle {
  margin: 0;
  padding: 0;
  counter-reset: number;
  list-style: none;
}

ol.circle li {
  margin-bottom: 12px;
  list-style-type: none;
}

ol.circle li:before {
  margin: 0 0 8px;
  line-height: 1.6;
  width: 25px;
  height: 25px;
  text-align: center;
  padding: unset;
  background: var(--sub-color);
  border-radius: 50%;
  color: #fff;
  counter-increment: number;
  content: counter(number);
}

/*----------何かの装飾----------*/
.top_flex_box {
  display: flex;
  justify-content: space-between;
}

.top_flex_box>div {
  flex: 1;
  padding: 0 35px;
}

/*----------引用----------*/
blockquote {
  padding: 20px;
  background: #f0f0f0;
  color: #555;
  font-style: italic;
  font-size: 85%;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

/*--------------------アンカーリンンク--------------------*/
/*4個並び*/
.ank01 {
  margin: 0 auto 100px;
}

.ank01 li {
  display: table;
  position: relative;
  float: left;
  width: 24%;
  height: 66px;
  margin-bottom: 1.5%;
  margin-left: 1.33%;
  line-height: 1.4;
}

.ank01 li:nth-child(1),
.ank01 li:nth-child(5),
.ank01 li:nth-child(9) {
  margin-left: 0;
}

.ank01 li a {
  display: table-cell;
  padding: 12px 5px 15px;
  border: 1px solid var(--main-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 13px;
  color: var(--main-color);
  text-align: center;
  vertical-align: middle;
  transition: 0.1s ease-in-out;
}

.ank01 li a:hover {
  background-color: var(--main-color);
  color: #fff;
}

.ank01 li i {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  margin: auto;
}

/*-------------------layout--------------------*/
.layout_tit {
  color: var(--main-color);
  font-size: 18px;
  font-weight: bold;
}

/*1つ並びのレイアウト。画像は無し、左にタイトル、右に文章*/

.layout01 {
  position: relative;
  margin: 0 0 15px;
}

.layout01:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout01 dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}

.layout01 dl:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout01 dt {
  width: 30%;
  padding: 3%;
  background-color: var(--bg-color);
  letter-spacing: 0.1em;
  color: var(--main-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 120%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.5;
}

.layout01 dt em {
  display: block;
  width: 100%;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-size: 150%;
  font-weight: normal;
  color: var(--sub-color);
}

.layout01 dt span {
  font-size: 75%;
}

.layout01 dd {
  width: 70%;
  box-sizing: border-box;
  padding: 3%;
}

/*2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章*/
.layout02 {
  margin: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.layout02::after {
  display: block;
  clear: both;
  content: "";
}

.layout02 dl {
  width: 49%;
  margin: 0 2% 0 0;
  margin-bottom: 25px;
  padding: 4%;
  background-color: var(--bg-color);
  border-radius: 12px;
}

.layout02 dl:nth-child(even) {
  margin-right: 0;
}

.layout02 dl dt {
  margin-bottom: 10px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: var(--main-color);
}

/*1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章*/
.layout03 {
  margin: 0 0 15px;
}

.layout03 dl {
  display: flex;
  margin-bottom: 20px;
  background-color: var(--bg-color);
  padding: 2%;
}

.layout03 dt {
  width: 27%;
  padding: 2%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.layout03 dt img {
  width: 100%;
  padding-bottom: 10px;
}

.layout03 dd {
  width: 73%;
  padding: 1% 3%;
}

.layout03 dd h5 {
  color: var(--main-color);
  font-size: 18px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.layout03 dd h5 em {
  margin-right: 10px;
  color: var(--sub-color);
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}

/*1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色*/
.layout04 {
  margin: 0 0 15px;
}

.layout04 dl {
  display: flex;
  margin-bottom: 20px;
  background-color: var(--bg-color);
  padding: 2%;
}

.layout04 dt {
  width: 27%;
  padding-right: 2%;
  display: flex;
  align-items: center;
}

.layout04 dt img {
  width: 100%;
}

.layout04 dd {
  width: 73%;
  padding: 3%;
  background-color: #fff;
}

.layout04 dd h5 {}

.layout04 dd h5 span {
  margin-right: 10px;
  color: var(--sub-color);
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}

/*1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章*/
.layout05 {
  margin: 0 0 15px;
}

.layout05 dl {
  display: flex;
  margin-bottom: 20px;
  background-color: var(--bg-color);
  padding: 2%;
}

.layout05 dt {
  padding: 2%;
  width: 25%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.layout05 dt img {
  width: 100%;
  padding-bottom: 10px;
  display: block;
}

.layout05 dd {
  padding: 1% 3%;
  vertical-align: top;
}

.layout05 dd:nth-child(2) {
  width: 40%;
}

.layout05 dd:nth-child(3) {
  width: 40%;
  border-left: 1px solid var(--border-color);
}

.layout05 dd h5 em {
  margin-right: 10px;
  color: var(--sub-color);
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}

.layout05 dd h5 {
  font-size: 100%;
  margin: 0 0 5px;
}

.layout05_text1 {}

.layout05_text1 ul {
  margin-bottom: 15px;
}

.layout05 ul.list03 li {
  margin: 0;
}

/*1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章*/
.layout06 {
  margin: 0 0 15px;
}

.layout06 dl {
  display: flex;
  padding-bottom: 5px;
  position: relative;
}

.layout06 dl:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout06 dl:last-child:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout06 dt {
  width: 30%;
  padding: 0 3%;
  background-color: var(--bg-color);
  letter-spacing: 0.1em;
  color: var(--main-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  font-size: 120%;
}

.layout06 dl:last-of-type {
  padding: 0;
}

.layout06 dt em {
  display: block;
  width: 100%;
  line-height: 1;
  margin: 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 170%;
  font-weight: normal;
  color: var(--sub-color);
}

.layout06 dd {
  padding: 2% 3%;
  vertical-align: top;
}

.layout06 dd:nth-child(2) {
  width: 35%;
}

.layout06 dd:nth-child(3) {
  width: 35%;
  border-left: 1px solid var(--border-color);
}

.layout06 dd h5 {
  font-size: 100%;
  margin: 0 0 5px;
}

.layout06_text1 {}

.layout06_text1 ul {}

.layout06_text1 ul li span {}

/*3つ並びのレイアウト*/
.layout07 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}

.layout07::after {
  display: block;
  clear: both;
  content: "";
}

.layout07 dl {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  box-sizing: border-box;
  padding: 3%;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.layout07 dl:nth-child(3n) {
  margin-right: 0;
}

.layout07 dl dt {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed var(--border-color);
  font-size: 17px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-align: center;
  line-height: 1.5;
}

.layout07 dl dt em {
  margin-right: 8px;
  font-size: 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: 170%;
  font-weight: normal;
  color: var(--sub-color);
}

.layout07 dl dd {
  line-height: 1.5;
}

/*3つ並びのレイアウト。矢印付き*/
.layout08 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}

.layout08 dl {
  position: relative;
  width: 31%;
  margin-right: 3%;
  margin-bottom: 25px;
  padding: 3%;
  border-radius: 10px;
  background-color: var(--bg-color);
}

.layout08 dl:nth-child(3n) {
  margin-right: 0;
}

.layout08 dl::before {
  position: absolute;
  right: -17px;
  top: 0;
  height: 7px;
  width: 7px;
  transform: rotate(45deg);
  background-color: transparent;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  content: "";
  bottom: 0;
  margin: auto;
}

.layout08 dl:nth-child(3n)::before {
  display: none;
}

.layout08 dl dt {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed var(--border-color);
  font-size: 17px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-align: center;
  line-height: 1.5;
}

.layout08 dl dt em {
  margin-right: 8px;
  font-size: 24px;
  font-family: "Times New Roman", Times, serif;
  font-size: 170%;
  font-weight: normal;
  color: var(--sub-color);
}

.layout08 dl dd {
  line-height: 1.5;
}

/* layout10 */
.layout10 {
  position: relative;
}

.layout10 .flow_box {
  position: relative;
  display: flex;
  padding: 32px;
  background: #fff;
}

.layout10 .flow_box::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  width: 4px;
  height: calc(100% - 4px);
  border-right: var(--border-color) dashed 1px;
  box-sizing: border-box;
  content: "";
}

.layout10 .flow_box:first-child::before {
  top: 32px;
  bottom: auto;
  height: calc(100% - 34px);
}

.layout10 .flow_box:last-child::before {
  top: 2px;
  bottom: auto;
  height: 86px;
}

.layout10 .flow_box:nth-child(even) {
  background: var(--bg-color);
}

.layout10 .flow_box:nth-child(odd) {
  background: #f7f7f7;
}

.layout10 .flow_box .number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-right: 4%;
  background: var(--main-color);
  border-radius: 50%;
  line-height: 1;
  color: #fff;
  font-size: 28px;
}

.layout10 .flow_box .layout10_box {
  width: 90%;
}

.layout10 .flow_box .layout10_text .title {
  background: var(--main-color);
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.layout10 .flow_box .layout10_text .title span {
  position: relative;
}

.layout10 .flow_box .layout10_text .title span::after {
  display: inline-block;
  content: "|";
  margin: 0 12px;
}

.layout10 .flow_box .layout10_text .title2 {
  padding-bottom: 2px;
  padding-top: 16px;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px dashed rgba(35, 24, 21, 0.4);
}

.layout10 .flow_box .layout10_text .list03 {
  margin-top: 8px;
}

.layout10 .flow_box .layout10_text .list03 li {
  margin-bottom: 0;
}

.layout10 .flow_box .layout10_text .list03 li::before {
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.layout10 .flow_box .layout10_text .list_column {
  display: flex;
  flex-wrap: wrap;
}

.layout10 .flow_box .layout10_text .list_column li {
  margin-right: 5%;
}

/*--------------------table--------------------*/
td img.aligncenter,
th img.aligncenter {
  width: fit-content;
  margin: 0 !important;
}

table {
  text-align: initial;
}

table th,
table td {
  vertical-align: top;
}

table th p,
table td p {
  margin: 0 !important;
}

/*テーブル1*/
.tb01 {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 10px 0;
}

.tb01 tr {
  border-bottom: 1px dotted var(--border-color);
  display: flex;
  vertical-align: middle;
}

.tb01 th {
  text-align: left;
  font-weight: normal;
  width: 25%;
}

.tb01 td {
  text-align: left;
  font-weight: normal;
  width: 75%;
}

/*診療時間*/
.tb02_tit {
  border-bottom: none;
  font-size: 18px;
  text-align: center;
  width: 100%;
  border: 1px var(--border-color) solid;
  padding: 8px;
  margin-bottom: 10px;
}

.tb02 {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 8px;
}

.tb02 tr:first-of-type {
  color: #fff;
  background: #6ccd62;
}

.tb02 tr:first-of-type th {
  border-bottom: none;
  padding: 23px 0;
}

.tb02 tr:first-of-type td {
  color: #fff;
  border-bottom: none;
  padding: 23px 0;
}

.tb02 th {
  font-weight: normal;
  width: 26%;
  min-width: 110px;
  border-bottom: 1px solid var(--border-color);
  padding: 19px 0;
}

.tb02 td {
  color: #f8742d;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding: 19px 0;
}

.kyushinbi {
  text-align: right;
  color: #f8742d;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

/*本文中のテーブル*/
.tb03 {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background-color: var(--border-color);
}

.tb03 td,
.tb03 th {
  padding: 8px 20px;
}

.tb03 th {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-align: left;
  background-color: var(--bg-color);
}

.tb03 th span {
  font-size: 13px;
}

.tb03 td {
  background-color: #fff;
  text-align: center;
}

/*==================================================================================================================================

  フリーエリア（上・下）

==================================================================================================================================*/
.sec_freearea_up .box1,
.sec_freearea_under .box1 {}

.sec_freearea_up .text,
.sec_freearea_under .text {
  margin-bottom: 0;
}

.sec_freearea_up h2,
.sec_freearea_under h2 {
  margin-top: 0;
}

.sec_freearea_up h3,
.sec_freearea_under h3 {
  margin: 0 0 20px;
}

.freearea_up:after,
.freearea_under:after {
  display: block;
  clear: both;
  content: "";
}

.freearea_up_img,
.freearea_under_img {}

.freearea_up_img img,
.freearea_under_img img {
  width: 100%;
  max-width: 408px;
  height: auto;
  margin: 0 auto 10px;
  display: block;
}

/*==================================================================================================================================

  医師紹介

==================================================================================================================================*/
/*----------ご挨拶----------*/
.doctor_greeting_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}

.doctor_greeting_center {
  margin-bottom: 20px;
}

.doctor_greeting_center .text {
  margin-bottom: 0;
}

.doctor_greeting_flex .text {
  width: 67%;
  margin-bottom: 0;
}

.doctor_greeting_flex .text_w100 {
  width: 100%;
  margin-bottom: 0;
}

.text_w100 p {
  margin-bottom: 22px;
}

.doctor_img {
  width: 30%;
  margin-bottom: 15px;
}

.doctor_img img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 10px;
}

.doctor_greeting_center .doctor_img {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.doctor_greeting_center .doctor_img img {
  width: 100%;
  max-width: 280px;
  height: auto;
}

/*----------署名----------*/
.doctor_name {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  text-align: right;
}

.doctor_name span {
  font-size: 130%;
  display: block;
}

.doctor_greeting_center .doctor_name {
  text-align: center;
}

/*----------経歴・資格----------*/
.doctor_carr_wrap {}

.doctor_carr_box {
  width: 100%;
  padding: 3%;
  box-sizing: border-box;
  background: var(--bg-color);
  margin-bottom: 15px;
  border-radius: 12px;
}

.doctor_carr_box .text p {
  margin-bottom: 0;
}

/*----------院長紹介その他----------*/
.sec_doctor_etc {
  width: 100%;
  box-sizing: border-box;
}

/*==================================================================================================================================

  医院案内

==================================================================================================================================*/
.clinic_desc {
  width: 100%;
}

.clinic_desc dl {
  display: flex;
}

.clinic_desc dl dt {
  width: 20%;
  border-bottom: 1px dotted var(--border-color);
  padding: 15px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.clinic_desc dl dd {
  width: 80%;
  border-bottom: 1px dotted var(--border-color);
  padding: 15px;
}

.clinic_desc .sche_wrap {
  border: 1px solid #6ccd62;
}

.clinic_facilities_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.clinic_access.body_single img {
  border-radius: 0;
}

.facilities_item {
  width: 47%;
  margin-bottom: 15px;
  background: var(--bg-color);
}

.facilities_item_img {
  overflow: hidden;
  background-color: var(--bg-color);
}

.facilities_item_img img {
  max-height: 260px;
  margin: 0 auto;
  display: block;
}

.facilities_item dd {
  padding: 15px;
}

.facilities_item dd h3 {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  font-size: 20px;
  display: table;
}

.answer {
  display: flex;
  justify-content: space-between
}

.point_flex {
  display: flex;
  justify-content: space-between;
}

.point_flex p {
  width: 60%;
}

/* アクセス YouTube */
.clinic_access_movie {
  width: 100%;
  padding-top: 30px;
}

.clinic_access_movie iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

.clinic_access_movie_text {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  margin-bottom: 10px;
  line-height: 1.5;
  background: #fff;
  padding: 10px;
  border-radius: 7px;
  border: 2.5px solid #f88a13;
  text-align: center;
}

.clinic_access_movie_text p {
  margin-bottom: 0;
}

/*==================================================================================================================================

  料金表

==================================================================================================================================*/
.price_table {
  width: 100%;
  margin-bottom: 15px;
}

.price_table th {
  text-align: center;
  background-color: var(--bg-color);
}

.price_table tr td:nth-child(1) {
  width: 70%;
  /* width: 25%; */
  text-align: center;
}

.price_table tr td:nth-child(2) {
  width: 30%;
  text-align: right;
  /* width: 60%; */
}

.price_table tr td:nth-child(3) {
  width: 15%;
  white-space: nowrap;
  text-align: center;
}

.price_table th,
.price_table td {
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}

/*==================================================================================================================================

  FAQ

==================================================================================================================================*/
.faq_wrap dl {
  margin-bottom: 10px;
}

.faq_wrap dl dt {
  position: relative;
  margin: 0;
  padding: 15px;
  background-color: var(--bg-color);
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  cursor: pointer;
}

.faq_wrap dl dt:hover,
.faq_wrap dl dt:active,
.faq_wrap dl dt.open {
  background-color: var(--sub-color);
}

.faq_wrap dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: var(--border-color);
  transition: all .3s ease-in-out;
}

.faq_wrap dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: var(--border-color);
  transition: all .2s ease-in-out;
}

.faq_wrap dl dt.open::before {
  transform: rotate(180deg);
}

.faq_wrap dl dt.open::after {
  opacity: 0;
}

.faq_wrap dl dd {
  padding: 15px;
}

.faq_wrap dl dt .faq_q {
  position: relative;
  padding: 0 35px 0 35px;
}

.faq_wrap dl dt .faq_q:before {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 7px;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  font-size: 28px;
  color: var(--main-color);
  content: "Q.";
}

.open .faq_wrap dl dt .faq_q:before {
  color: #fff;
}

.faq_wrap dl dd .faq_a {
  position: relative;
  padding: 0 0 0 35px;
}

.faq_wrap dl dd .faq_a:before {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 7px;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  font-size: 28px;
  color: var(--sub-color);
  content: "A.";
}

/*==================================================================================================================================

  求人案内

==================================================================================================================================*/
.recruit_img {
  float: right;
  margin-left: 50px;
  margin-top: 7px;
  margin-bottom: 15px;
}

.recruit_img img {
  width: 100%;
  max-width: 408px;
  height: auto;
}

.recruit_table {
  width: 100%;
  margin-bottom: 30px;
}

.recruit_table th {
  text-align: center;
  background-color: var(--bg-color);
  width: 20%;
}

.recruit_table th,
.recruit_table td {
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}

.sec_recruit .btn01 {
  text-align: center;
}

/*==================================================================================================================================

  アクセス

==================================================================================================================================*/
.access_add {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.access_add dt {
  width: 14%;
}

.access_add dd {
  width: 86%;
}

.access_add dt i {
  color: var(--main-color);
}

.sec_access .googlemap {
  margin-bottom: 20px;
}

.access_desc {
  border: 1px solid var(--border-color);
  padding: 20px;
}

.access_route ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  counter-reset: count 0;
}

.access_route ul li {
  width: 48%;
  margin-bottom: 20px;
}

.access_route ul li p.title {
  font-size: 120%;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  position: relative;
  padding-left: 2em;
}

.access_route ul li p.title::before {
  content: counter(count);
  counter-increment: count 1;
  color: #fff;
  line-height: 1;
  padding: 4px 8px;
  background: var(--sub-color);
  position: absolute;
  left: 0;
  top: 5px;
}

.access_route .text:last-child {
  margin: 0;
}

.access_route ul li p.text {
  margin: 0;
}

.access_route ul li img {
  max-width: 100%;
  height: auto;
  max-height: 250px;
  display: block;
  margin: 0 auto 10px;
}

/*==================================================================================================================================

  オンライン診療

==================================================================================================================================*/
p.emphasis {
  font-size: 20px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  color: #555;
  margin-bottom: 0;
}

/*----オンライン診療 デジスマ----*/
ol.list09 {
  list-style-type: decimal;
}

p.mb00 {
  margin-bottom: 0;
}

/*==================================================================================================================================

  下層ページ

==================================================================================================================================*/
/*----セカンドオピニオン外来----*/
.medical_doctor_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.medical_doctor_image {
  width: 38%;
}

.medical_doctor_wrap .doctor_carr_box {
  width: 60%;
}

dl.doctor_carr_box_dl {
  display: flex;
  flex-wrap: wrap;
}

.doctor_carr_box dt {
  width: 20%;
}

.doctor_carr_box dd {
  width: 80%;
}

.doctor_carr_box dt.line01 {
  width: 100%;
}

.doctor_carr_box dd.line01 {
  width: 0;
}

/*----メルスモン----*/
.melsmon_imageBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.melsmon_imageBox div {
  width: 48%;
}

.melsmon_text {
  padding: 0 10px 0 10px;
}

.flex_box_line2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.flex_box_img {
  width: 350px;
  height: auto;
}

.flex_box_text {
  width: calc(100% - 380px);
}

/*==================================================================================================================================

  お知らせ

==================================================================================================================================*/
.page-template-page-news .sec_top_news_list {
  max-height: unset;
  padding: 0;
}

.page-template-page-news .top_news_info {
  padding: 30px 0;
}

.page-template-page-news h2 {
  border-bottom: none;
  margin: 20px 0 10px;
  font-size: 140%;
}

.page-template-page-news h2:before,
.page-template-page-news h2:after {
  display: none;
}

/*==================================================================================================================================

  ブログ

==================================================================================================================================*/
.blog_box {
  border-top: 4px solid #87cd96;
  /*記事ボックスの上の色*/
  box-shadow: 0 1px 4px rgba(0, 0, 0, .1);
  margin-bottom: 50px;
  padding-bottom: 10px;
  background-color: #fff;
}

.blog_tit {
  font-size: 22px;
  color: #333;
  padding: 0 20px;
}

.blog_content {
  margin: 20px 25px;
}

.blog_content p {
  margin-bottom: 1em;
}

.blog_box .btn01 a {
  display: table;
  margin: 10px 0 10px auto;
}

/*----------見出し----------*/
.blog_box h1 {}

.blog_box h2 {
  text-align: left;
}

.blog_box h2.blog_tit {
  border-bottom: none;
  padding: 20px 20px 0;
}

.blog_box h2.blog_tit:after {
  display: none;
}

.blog_box h3 {}

.blog_box h4 {}

.blog_box h5 {}

.blog_box h6 {}

/*----------日付・カテゴリ----------*/
.blog_class li {
  display: inline-block;
  margin-right: 15px;
}

.blog_class {
  margin-bottom: 10px;
}

.blog_class i {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  color: var(--main-color);
}

.blog_class li a {
  color: #333;
}

.blog_class li a:hover {
  color: var(--main-color);
}

/*----------ページャー----------*/
.pager {
  display: block;
  font-size: 15px;
  padding: 9px 8px;
  margin: 0 auto;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center !important;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.pager:after {
  display: block;
  content: "";
  clear: both;
}

.current {
  background: var(--main-color);
  color: #fff;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 16px;
  margin: 5px 5px 8px;
  line-height: 1;
}

.pager a {
  display: inline-block;
  text-decoration: none;
  padding: 8px 12px;
  margin: 5px 6px 8px 5px;
  border-radius: 50%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: var(--border-color);
  color: var(--main-color);
  line-height: 1;
}

.pager a:hover {
  background: var(--main-color);
  color: #fff;
}

.pager a:active {
  -webkit-box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, .55);
  -moz-box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, .55);
  box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, .55);
}

/*--------------------ブログ エディター用--------------------*/
.alignleft {
  display: inline;
  float: left;
}

.alignright {
  display: inline;
  float: right;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
  margin: 0.4em 1.6em 1.6em 0;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin: 0.4em 0 1.6em 1.6em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 1.2em;
}

/*整形済みテキスト*/
.blog_content>div pre {
  font-weight: 400;
  margin-top: 20px;
  padding: 20px;
  background-color: var(--bg-color);
  color: #7F7F7F;
  overflow: auto;
}

/*引用*/
.blog_content>div blockquote {
  position: relative;
  color: #3F3F3F;
  margin-top: 20px;
  padding: 20px 20px 20px 70px;
  background-color: var(--bg-color);
}

.blog_content>div blockquote::before {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "icomoon";
  content: "\e909";
  font-size: 3rem;
  color: #D9D9D9;
}

.blog_content>div blockquote *:first-child {
  margin-top: 0;
}

/*ライン*/
.blog_content>div hr {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.blog_content>div *:first-child {
  margin-top: 0;
}

.blog_content iframe {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/*サムネイル*/
.thumbnail {
  display: block;
  position: relative;
  float: left;
  margin: 0 15px 0 0;
  text-align: center;
}

.thumbnail img {
  object-fit: cover;
  max-width: 100%;
  max-height: unset;
  width: 150px;
  height: 150px;
}

/*==================================================================================================================================

  MPクラウド

==================================================================================================================================*/
.sec_mpcloud {
  padding: 0 !important;
}

#mpcloud_schedule {
  width: 220px;
  position: fixed;
  bottom: 15px;
  left: 22px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 1);
  z-index: 999999999;
  font-size: 14px;
  letter-spacing: .08em;
}

#mpcloud_schedule section {
  box-shadow: 0 8px 22px 8px rgba(0, 0, 0, .1);
}

.shcedule_title {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
}

.shcedule_title i {
  position: relative;
  top: -2px;
  right: -25px;
  font-style: normal;
  font-size: 12px;
  cursor: pointer;
}

.schedule_time {
  margin: 8px 0 0 0;
}

.schedule_time dt {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.shcedule_box dt {
  background: var(--border-color);
  text-align: center;
}

.shcedule_box dd {
  height: auto;
  vertical-align: top;
}

.shcedule_box dd i {
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url("https://yume-kanae.jp/wp/wp-content/themes/images/schedule.svg") no-repeat center left;
  background-size: 17px 17px;
  padding: 2px 0 2px 22px;
  margin-left: 15px;
  vertical-align: inherit;
}

.shcedule_today {
  padding: 10px 16px;
}

.schedule_comment {
  border-top: 1px solid var(--border-color);
  padding: 8px 12px;
  font-size: 14px;
}

/*==================================================================================================================================

  RIBON

==================================================================================================================================*/
.ribon-link {
  background-color: #fa6565;
  background-image: url("images/ribon_banner.png");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  height: auto;
  max-width: 300px;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}

.ribon-link::before {
  content: "";
  display: block;
  padding-top: 36%;
}

.ribon-link:hover {
  opacity: 0.75;
  transition: 0.3s;
}

/*==================================================================================================================================

  お問い合わせ

==================================================================================================================================*/
.contact {
  margin: 0 auto;
  width: 700px;
}

.contact form {
  margin: 50px 0 0;
}

.contact p {
  margin: 15px 0 0;
}

.contact label {
  margin: 30px 0 0;
  font-size: 16px;
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  color: var(--main-color);
}

.contact input,
.contact textarea {
  width: 100%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 16px 8px;
}

.contact input:focus-visible,
.contact textarea:focus-visible {
  border-radius: 5px;
  border: 1px solid var(--main-color);
  outline: none;
}

.contact input[type='submit'] {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 5px;
  width: 50%;
  margin: 0 auto;
  display: block;
  background: #fff;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s ease-in-out;
}

.contact input[type='submit']:hover {
  color: #fff;
  background: var(--main-color);
}

.contact input[type='radio'] {
  width: auto;
  margin: 0 0.5em 0 0;
}

.contact select {
  margin: 0 5px;
}

.wpcf7-not-valid-tip {
  color: var(--sub-color) !important;
}

.wpcf7-radio {
  display: flex !important;
}

.wpcf7-list-item {
  display: flex !important;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 1em 0 0 !important;
}

.contact dd {
  margin-bottom: 24px;
}



/*==================================================================

  CSSアニメーション

==================================================================*/
/* フェードイン */
.fadeIn {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeIn {
  animation: fadeIn 1s cubic-bezier(0.420, 0.000, 0.580, 1.000) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* フェードイン（下→上） */
.fadeInUp {
  opacity: 0;
  visibility: visible;
}

.is-visible.fadeInUp {
  animation: fadeInUp 1s cubic-bezier(0.420, 0.000, 0.580, 1.000) forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* スケール */
.scaleIn {
  opacity: 0;
  transform: scale(0.95);
  visibility: visible;
}

.is-visible.scaleIn {
  animation: scaleIn 1s cubic-bezier(0.420, 0.000, 0.580, 1.000) forwards;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 浮遊（基準点から上） */
.floatingUp {
  animation: floatingUp 3s ease-in-out infinite;
}

@keyframes floatingUp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}


/*==================================================================================================================================

  common

==================================================================================================================================*/
.pc {}

.sp {
  display: none !important;
}

.pc_inline {
  display: inline !important;
}

.sp_inline {
  display: none !important;
}

.sp_inline_ip {
  display: none !important;
}

.pc_table {
  display: none !important;
}

.sp_table {
  display: none !important;
}

.sp_flex {
  display: none !important;
}

.w010par {
  width: 10%;
}

.w020par {
  width: 20%;
}

.w025par {
  width: 25%;
}

.w050par {
  width: 50%;
}

.w075par {
  width: 75%;
}

.w100par {
  width: 100%;
}

.w010 {
  width: 10px !important;
}

.w020 {
  width: 20px !important;
}

.w030 {
  width: 30px !important;
}

.w040 {
  width: 40px !important;
}

.w050 {
  width: 50px !important;
}

.w060 {
  width: 60px !important;
}

.w070 {
  width: 70px !important;
}

.w080 {
  width: 80px !important;
}

.w090 {
  width: 90px !important;
}

.w100 {
  width: 100px !important;
}

.w110 {
  width: 110px !important;
}

.w120 {
  width: 120px !important;
}

.w130 {
  width: 130px !important;
}

.w140 {
  width: 140px !important;
}

.w150 {
  width: 150px !important;
}

.w160 {
  width: 160px !important;
}

.w170 {
  width: 170px !important;
}

.w180 {
  width: 180px !important;
}

.w190 {
  width: 190px !important;
}

.w200 {
  width: 200px !important;
}

.w210 {
  width: 210px !important;
}

.w220 {
  width: 220px !important;
}

.w230 {
  width: 230px !important;
}

.w240 {
  width: 240px !important;
}

.w250 {
  width: 250px !important;
}

.w255 {
  width: 255px !important;
}

.w260 {
  width: 260px !important;
}

.w270 {
  width: 270px !important;
}

.w280 {
  width: 280px !important;
}

.w290 {
  width: 290px !important;
}

.w300 {
  width: 300px !important;
}

.w305 {
  width: 305px !important;
}

.w310 {
  width: 310px !important;
}

.w320 {
  width: 320px !important;
}

.w330 {
  width: 330px !important;
}

.w340 {
  width: 340px !important;
}

.w350 {
  width: 350px !important;
}

.w360 {
  width: 360px !important;
}

.w365 {
  width: 365px !important;
}

.w370 {
  width: 370px !important;
}

.w380 {
  width: 380px !important;
}

.w390 {
  width: 390px !important;
}

.w400 {
  width: 400px !important;
}

.w410 {
  width: 400px !important;
}

.w415 {
  width: 415px !important;
}

.w420 {
  width: 420px !important;
}

.w430 {
  width: 430px !important;
}

.w435 {
  width: 435px !important;
}

.w440 {
  width: 440px !important;
}

.w450 {
  width: 450px !important;
}

.w460 {
  width: 460px !important;
}

.w470 {
  width: 470px !important;
}

.w480 {
  width: 480px !important;
}

.w490 {
  width: 490px !important;
}

.w500 {
  width: 500px !important;
}

.w510 {
  width: 510px !important;
}

.w520 {
  width: 520px !important;
}

.w530 {
  width: 530px !important;
}

.w540 {
  width: 540px !important;
}

.w550 {
  width: 550px !important;
}

.w560 {
  width: 560px !important;
}

.w570 {
  width: 570px !important;
}

.w580 {
  width: 580px !important;
}

.w590 {
  width: 590px !important;
}

.w600 {
  width: 600px !important;
}

.w610 {
  width: 610px !important;
}

.w620 {
  width: 620px !important;
}

.w630 {
  width: 630px !important;
}

.w640 {
  width: 640px !important;
}

.w650 {
  width: 650px !important;
}

.w660 {
  width: 660px !important;
}

.w670 {
  width: 670px !important;
}

.w680 {
  width: 680px !important;
}

.w690 {
  width: 690px !important;
}

.w700 {
  width: 700px !important;
}

.w710 {
  width: 710px !important;
}

.w720 {
  width: 720px !important;
}

.w730 {
  width: 730px !important;
}

.w740 {
  width: 740px !important;
}

.w750 {
  width: 750px !important;
}

.w760 {
  width: 760px !important;
}

.w765 {
  width: 765px !important;
}

.w960 {
  width: 960px !important;
}

.w980 {
  width: 980px !important;
}

.h030 {
  height: 30px !important;
}

.h180 {
  height: 180px !important;
}

.h190 {
  height: 190px !important;
}

.h200 {
  height: 200px !important;
}

.h240 {
  height: 240px !important;
}

.h250 {
  height: 250px !important;
}

.h280 {
  height: 280px !important;
}

.h300 {
  height: 300px !important;
}

.h350 {
  height: 350px !important;
}

.mt00 {
  margin-top: 0px !important;
}

.mt01 {
  margin-top: 1px !important;
}

.mt02 {
  margin-top: 2px !important;
}

.mt03 {
  margin-top: 3px !important;
}

.mt04 {
  margin-top: 4px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt06 {
  margin-top: 6px !important;
}

.mt07 {
  margin-top: 7px !important;
}

.mt08 {
  margin-top: 8px !important;
}

.mt09 {
  margin-top: 9px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mr00 {
  margin-right: 0px !important;
}

.mr01 {
  margin-right: 1px !important;
}

.mr02 {
  margin-right: 2px !important;
}

.mr03 {
  margin-right: 3px !important;
}

.mr04 {
  margin-right: 4px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.mr06 {
  margin-right: 6px !important;
}

.mr07 {
  margin-right: 7px !important;
}

.mr08 {
  margin-right: 8px !important;
}

.mr09 {
  margin-right: 9px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.mb01 {
  margin-bottom: 1px !important;
}

.mb02 {
  margin-bottom: 2px !important;
}

.mb03 {
  margin-bottom: 3px !important;
}

.mb04 {
  margin-bottom: 4px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb06 {
  margin-bottom: 6px !important;
}

.mb07 {
  margin-bottom: 7px !important;
}

.mb08 {
  margin-bottom: 8px !important;
}

.mb09 {
  margin-bottom: 9px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml00 {
  margin-left: 0 !important;
}

.ml01 {
  margin-left: 1px !important;
}

.ml02 {
  margin-left: 2px !important;
}

.ml03 {
  margin-left: 3px !important;
}

.ml04 {
  margin-left: 4px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.ml06 {
  margin-left: 6px !important;
}

.ml07 {
  margin-left: 7px !important;
}

.ml08 {
  margin-left: 8px !important;
}

.ml09 {
  margin-left: 9px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml12 {
  margin-left: 12px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.ml140 {
  margin-left: 140px !important;
}

.ml160 {
  margin-left: 160px !important;
}

.ma10 {
  margin: 10px !important;
}

.ma15 {
  margin: 15px !important;
}

.ma_auto {
  margin-left: auto;
  margin-right: auto;
}

.pt00 {
  padding-top: 0 !important;
}

.pt01 {
  padding-top: 1px !important;
}

.pt02 {
  padding-top: 2px !important;
}

.pt03 {
  padding-top: 3px !important;
}

.pt04 {
  padding-top: 4px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt06 {
  padding-top: 6px !important;
}

.pt07 {
  padding-top: 7px !important;
}

.pt08 {
  padding-top: 8px !important;
}

.pt09 {
  padding-top: 9px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pr00 {
  padding-right: 0 !important;
}

.pr01 {
  padding-right: 1px !important;
}

.pr02 {
  padding-right: 2px !important;
}

.pr03 {
  padding-right: 3px !important;
}

.pr04 {
  padding-right: 4px !important;
}

.pr05 {
  padding-right: 5px !important;
}

.pr06 {
  padding-right: 6px !important;
}

.pr07 {
  padding-right: 7px !important;
}

.pr08 {
  padding-right: 8px !important;
}

.pr09 {
  padding-right: 9px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb00 {
  padding-bottom: 0 !important;
}

.pb01 {
  padding-bottom: 1px !important;
}

.pb02 {
  padding-bottom: 2px !important;
}

.pb03 {
  padding-bottom: 3px !important;
}

.pb04 {
  padding-bottom: 4px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb06 {
  padding-bottom: 6px !important;
}

.pb07 {
  padding-bottom: 7px !important;
}

.pb08 {
  padding-bottom: 8px !important;
}

.pb09 {
  padding-bottom: 9px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl00 {
  padding-left: 0 !important;
}

.pl01 {
  padding-left: 1px !important;
}

.pl02 {
  padding-left: 2px !important;
}

.pl03 {
  padding-left: 3px !important;
}

.pl04 {
  padding-left: 4px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.pl06 {
  padding-left: 6px !important;
}

.pl07 {
  padding-left: 7px !important;
}

.pl08 {
  padding-left: 8px !important;
}

.pl09 {
  padding-left: 9px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pa01 {
  padding: 1px !important;
}

.pa02 {
  padding: 2px !important;
}

.pa03 {
  padding: 3px !important;
}

.pa04 {
  padding: 4px !important;
}

.pa05 {
  padding: 5px !important;
}

.pa10 {
  padding: 10px !important;
}

.pa15 {
  padding: 15px !important;
}

.fr {
  float: right !important;
}

.fl {
  float: left !important;
}

.fr10 {
  float: right;
  margin-left: 10px !important;
}

.fr15 {
  float: right;
  margin-left: 15px !important;
}

.fr30 {
  float: right;
  margin-left: 15px !important;
}

.fl10 {
  float: left;
  margin-right: 10px !important;
}

.fl15 {
  float: left;
  margin-right: 15px !important;
}

.fl30 {
  float: left;
  margin-right: 30px !important;
}

.txt10 {
  font-size: 10px !important;
}

.txt11 {
  font-size: 11px !important;
}

.txt12 {
  font-size: 12px !important;
}

.txt13 {
  font-size: 13px !important;
}

.txt14 {
  font-size: 14px !important;
}

.txt15 {
  font-size: 15px !important;
}

.txt16 {
  font-size: 16px !important;
}

.txt17 {
  font-size: 17px !important;
}

.txt18 {
  font-size: 18px !important;
}

.txt19 {
  font-size: 19px !important;
}

.txt20 {
  font-size: 20px !important;
}

.txt21 {
  font-size: 21px !important;
}

.txt22 {
  font-size: 22px !important;
}

.txt23 {
  font-size: 23px !important;
}

.txt24 {
  font-size: 24px !important;
}

.txt25 {
  font-size: 25px !important;
}

.txt26 {
  font-size: 26px !important;
}

.txt27 {
  font-size: 27px !important;
}

.txt28 {
  font-size: 28px !important;
}

.txt29 {
  font-size: 29px !important;
}

.txt30 {
  font-size: 30px !important;
}

.txt31 {
  font-size: 31px !important;
}

.txt32 {
  font-size: 32px !important;
}

.txt33 {
  font-size: 33px !important;
}

.txt34 {
  font-size: 34px !important;
}

.txt35 {
  font-size: 35px !important;
}

.txt36 {
  font-size: 36px !important;
}

.txt37 {
  font-size: 37px !important;
}

.txt38 {
  font-size: 38px !important;
}

.txt39 {
  font-size: 39px !important;
}

.txt40 {
  font-size: 40px !important;
}

.bold {
  font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
}

.left {
  text-align: left !important;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.clear {
  clear: both !important;
}

.v_top {
  vertical-align: top !important;
}

.v_mid {
  vertical-align: middle !important;
}

.v_btm {
  vertical-align: bottom !important;
}

.color_red {
  color: #F33;
}

.color_pink {
  color: #ed8c96;
}

.color_blue {
  color: #00408f;
}

.color_green {
  color: #479f9d;
}

.color_ore {
  color: #FF8327;
}

.color_yellow {
  color: #FFEB8B;
}

.color_beige {
  color: #dac58b;
}

.color_brown {
  color: #59492E;
}

.color_navy {
  color: #1F2774;
}

.color_black {
  color: #3e3a39;
}

.ls_0 {
  letter-spacing: 0 !important;
}

.ls_1 {
  letter-spacing: 1px !important;
}

.indent {
  margin-left: 1em !important;
  text-indent: -1em !important;
}

.line_h_2 {
  line-height: 2 !important;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.centering {
  display: table;
  margin: auto;
  text-align: left;
}

.img_fr {
  display: block;
  position: relative;
  float: right;
  margin-left: 30px;
  margin-bottom: 1em;
  text-align: center;
}

.img_fr img {
  border-radius: 12px;
  margin-bottom: 7px;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

.img_fr dd {
  padding-left: 20px;
  line-height: 1.3;
  font-size: 15px;
  font-weight: bold;
  color: #1F2774;
  text-align: left;
}

.img_fl {
  display: block;
  position: relative;
  float: left;
  margin-bottom: 1em;
  margin-right: 30px;
  text-align: center;
}

.img_fl img {
  border-radius: 3px;
  margin-bottom: 7px;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

.img_fr+p:after {
  display: block;
  clear: both;
  content: "";
}

.float_clear {
  float: none !important;
}

/*==================================================================================================================================

  スマホ設定

==================================================================================================================================*/
/*--------------------基本設定（スマホ）--------------------*/
@media screen and (max-width:640px) {
  html {
    margin-top: 0 !important;
  }

  body {
    font-size: 16px;
  }

  body,
  #mainvisual,
  header,
  footer,
  nav,
  .slider,
  .mainvisual_wrapper {
    min-width: 100%;
  }

  body.page #mainvisual .inner,
  body.archive #mainvisual .inner,
  body.single #mainvisual .inner,
  body.home #mainvisual .inner,
  body.error404 #mainvisual .inner {
    max-width: 100%;
  }

  html #wpadminbar {
    display: none;
  }

  body,
  #mainvisualvisual,
  header,
  footer {
    width: 100%;
    min-width: 100%;
  }

  /* モーダルウィンドウ */
  .c-modal_content {
    width: 95%;
  }

  /*--------------------ヘッダー（スマホ）--------------------*/
  header {
    display: none;
  }

  .mv_contents nav {
    display: none;
  }

  .sp_header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    z-index: 9998;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .sp_header .inner {
    position: relative;
  }

  .sp_header .sp_logo {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 65px);
    height: 60px;
  }

  .sp_header .sp_logo a {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    padding: 5px;
  }

  .sp_header .sp_logo img {
    width: auto;
    max-height: 53px;
    height: auto;
  }

  /*--------------------ナビゲーション（スマホ）--------------------*/
  @media (min-width: 641px) {
    .drawer-hamburger {
      display: none;
    }

    .drawer--left .drawer-nav {
      left: 0;
    }

    .drawer-nav {
      position: relative;
    }

    .drawer-nav .drawer-menu li {
      display: inline-block;
    }
  }

  .drawer-nav {
    background-color: #87CD96 !important;
    padding: 20px;
  }

  /*メニュー装飾*/
  .sp_navi {
    border-top: 1px solid #fff;
  }

  .sp_navi li {
    border-bottom: 1px solid #fff;
  }

  .sp_navi li a {
    display: block;
    padding: 5px;
    color: #fff;
  }

  .sp_navi li a p {
    display: none;
  }

  .sp_navi li a img {
    display: none;
  }

  /*SNSボタン*/
  .sp_btn_area {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }

  .sp_btn_area li {
    width: -moz-available;
    width: -webkit-fill-available;
    margin-right: 5px;
  }

  .sp_btn_area li:last-child {
    margin-right: 0;
  }

  .sp_btn_area li a {
    display: block;
    background-color: #fff;
    color: var(--main-color);
    text-align: center;
    font-size: 12px;
    padding-top: 7px;
    border-radius: 5px;
  }

  .sp_btn_area li a i {
    display: block;
    font-size: 18px;
  }

  /*メニュー本体*/
  .drawer-menu {
    padding-bottom: 30px;
  }

  .drawer-hamburger {
    background: #87CD96;
  }

  .drawer-hamburger:hover {
    top: -2px;
    background: #87CD96;
  }

  .drawer-hamburger-icon,
  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    background: #fff;
  }

  /*子要素*/
  .nav_slidebtm div {
    padding-bottom: 10px;
  }

  .nav_slidebtm div a {
    margin-left: 15px;
    padding: 3px;
    text-indent: -1.2em;
    padding-left: 1.2em;
  }

  .nav_slidebtm div a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }

  .sp_under_nav {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    height: 52px;
  }

  .sp_under_nav ul {
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .sp_under_nav li {
    width: -moz-available;
    width: -webkit-fill-available;
    box-sizing: border-box;
    background-color: var(--sub-color);
    text-align: center;
  }

  .sp_under_nav li:nth-child(2) {
    background-color: var(--sub-color);
    opacity: 0.8;
  }

  .sp_under_nav li a {
    display: block;
    color: #fff;
    font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sp_under_nav li a i {
    margin-right: 5px;
  }

  .sp_top_nav {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    height: 60px;
    padding: 5px;
  }

  .sp_top_nav ul {
    display: flex;
    justify-content: center;
    height: 100%;
  }

  .sp_top_nav li {
    width: -moz-available;
    width: -webkit-fill-available;
    box-sizing: border-box;
    background-color: #90C31F;
    text-align: center;
    border-radius: 5px;
  }

  /*.sp_top_nav li:nth-child(2){
  background-color: #FF9C3B;
  margin: 0 5px;
}*/
  .sp_top_nav li:nth-child(1),
  .sp_top_nav li:nth-child(3) {
    background-color: #FF9C3B;
    margin-right: 5px;
  }

  .sp_top_nav li:nth-child(2) {
    margin-right: 5px;
  }

  /* .sp_top_nav li:nth-child(3) a,.sp_top_nav li:nth-child(4) a {
    font-size: 12px;
} */
  .sp_top_nav li:nth-child(3) a {
    font-size: 12px;
  }

  .sp_top_nav li a {
    display: block;
    color: #fff;
    font-size: 14px;
    font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
  }

  .sp_top_nav li a i {
    margin-right: 5px;
  }


  /*--------------------ホーム（スマホ）--------------------*/
  body.home,
  body.home #main,
  body.home header,
  body.home footer {
    overflow-x: visible;
  }

  body.home #contents {
    padding-top: 30px !important;
  }

  body.home .mainvisual_wrapper {
    margin-top: 60px;
  }

  body.home .mainvisual_wrapper::before {
    display: none;
  }

  body.home .mainvisual_wrapper>div {
    margin: 0 !important;
  }

  body.home #mainvisual {
    height: 350px;
    background-image: none;
  }
  body.home #mainvisual .slider-fade img {
    height: 350px;
    width: 100%;;
    object-fit: cover;
    object-position: 57%;
    display: block;
  }
  body.home #mainvisual .slider-fade li:nth-child(1) img{
    object-position: 62%;
  }
  body.home #mainvisual .slider-fade li:nth-child(2) img{
    object-position: 50%;
  }
  body.home #mainvisual .slider-fade li:nth-child(3) img{
    object-position: 57%;
  }

  .mainvisual_logo {
    top: 12vh;
    margin: 0;
  }

  body.home #wrapper,
  html,
  body,
  #main {
    min-height: 500px;
  }

  body.home #main {
    width: 100%;
    min-width: 100%;
    background-size: 100% auto !important;
  }

  body.home #main .inner {
    width: 100%;
    min-width: 100%;
  }

  body.home #main {
    background-size: auto 100% !important;
  }

  body.home #main p,
  body.home #main p img {
    width: 168px;
    height: 102px;
  }

  body.home #main h2 {
    top: 258px;
    padding: 0 12%;
  }

  body.home h1 {
    position: unset;
    padding: 10px 6%;
    text-align: center;
  }

  h1 {
    position: unset;
    padding: 10px 6%;
    text-align: center;
    background: #FBFBFB;
    text-shadow: none;
  }

  /*--------------------診療時間表（スマホ）--------------------*/
  .tb02 th {
    min-width: unset;
  }

  .tb02 th,
  .tb02 td {
    padding: 3px 0 3px 0;
    font-size: 4vw;
  }

  .tb02 tr:first-child th,
  .tb02 tr:first-child td {
    padding: 0 0 2px 0;
  }

  .schedule_note {
    margin-right: 10px;
  }

  .kyushinbi {
    font-size: 4vw;
  }

  /*--------------------ホーム（2カラム）--------------------*/
  main.osaka {
    width: 100%;
  }

  main.osaka .box1 {
    width: auto;
    margin: 0 auto;
    padding: 0 5%;
  }

  main.osaka .top_sp_only.box1 {
    margin: 20px auto 0 !important;
  }

  /*内覧会のお知らせ*/
  main.osaka .sec_top_nairankai {}

  /*フリーエリア(上)*/
  main.osaka .sec_freearea_up {
    margin: 0;
  }

  /*フリーエリア下*/
  main.osaka .sec_freearea_under {
    margin-bottom: 0 !important;
  }

  /*サイドバーのflex_wrap*/
  main.osaka .flex_wrap {
    display: block;
  }

  main.osaka .side_area {
    width: auto;
    margin-left: 0;
  }

  /* インフォメーションエリア（お知らせ&お悩み相談） */
  .sec_top_info {
    padding: 40px 0 80px;
  }

  .top_info_item {
    margin-bottom: 40px;
    padding: 32px 5%;
  }

  .top_info_item:last-child {
    margin-bottom: 0;
  }

  .top_info_item .tit_wrap {
    padding: 35px 0 17px 0;
    align-items: center;
    justify-content: center;
  }

  .top_info_item .tit_wrap p {
    flex-basis: 100%;
    padding: 0;
    align-self: center;
    margin-left: 0;
    background: none;
  }

  .top_info_item ul li {
    padding: 0 5%;
    min-height: 100px;
  }

  .top_info_item ul li .text_wrap {
    flex-wrap: wrap;
  }

  .top_info_item ul li>span {
    margin-bottom: 10px;
  }

  /* お知らせ */
  .top_news .tit_wrap {
    background: url("images/bg_icon_news.svg") center top no-repeat;
  }

  /* お悩み相談 */
  .top_cons .tit_wrap {
    background: url("images/bg_icon_cons.svg") center top no-repeat;
  }

  /* 診療予約 */
  .sec_top_reserve {
    padding: 40px 0 0;
  }

  .top_reserve .tit_wrap {
    margin-bottom: 30px;
  }

  .top_reserve ul li {
    margin-bottom: 15px;
    width: 100%;
  }

  .box1.top_reserve {
    border-radius: 0;
    padding: 40px 5% 30px !important;
  }

  /* ★診療予約 sec_top_reserveA★ */
  .top_reserveA ul li {
    width: 100%;
  }

  .box1.top_reserveA {
    border-radius: 0;
    padding: 40px 5% 30px !important;
  }

  .img_flex a {
    width: 48%;
    margin: 1% 1% 20px;
  }

  /* 高血圧 */
  .sec_top_pressure {
    padding: 80px 0 100px;
  }

  .sec_top_pressure .tit_wrap {
    margin-bottom: 40px;
  }

  .list_pressure {
    gap: 20px 0;
  }

  .list_pressure li {
    width: 43vw;
    height: 43vw;
  }

  .list_pressure li a:hover {
    transform: none;
  }

  .list_pressure li .title {
    font-size: calc(16px + 6 * (100vw - 320px)/320);
  }

  .list_pressure li .more {
    right: 30px;
  }

  .list_pressure li .more::after {
    width: 50px;
    height: 50px;
    background-size: auto 15px;
    right: -30px;
    bottom: -14px;
  }

  /* 緑色のリストのCSS */
  .list_pressure li:nth-of-type(1) .more span,
  .list_pressure li:nth-of-type(4) .more span,
  .list_pressure li:nth-of-type(5) .more span,
  .list_pressure li:nth-of-type(8) .more span {
    text-shadow: #318e0d 2px 0px 0px, #318e0d 1.75517px 0.958851px 0px, #318e0d 1.0806px 1.68294px 0px, #318e0d 0.141474px 1.99499px 0px, #318e0d -0.832294px 1.81859px 0px, #318e0d -1.60229px 1.19694px 0px, #318e0d -1.97998px 0.28224px 0px, #318e0d -1.87291px -0.701566px 0px, #318e0d -1.30729px -1.5136px 0px, #318e0d -0.421592px -1.95506px 0px, #318e0d 0.567324px -1.91785px 0px, #318e0d 1.41734px -1.41108px 0px, #318e0d 1.92034px -0.558831px 0px;
    border-bottom-color: #69c644;
  }

  .list_pressure li:nth-of-type(1) .more::after,
  .list_pressure li:nth-of-type(4) .more::after,
  .list_pressure li:nth-of-type(5) .more::after,
  .list_pressure li:nth-of-type(8) .more::after {
    background-color: #5cbf34;
  }

  .list_pressure li:nth-of-type(1) a,
  .list_pressure li:nth-of-type(4) a,
  .list_pressure li:nth-of-type(5) a,
  .list_pressure li:nth-of-type(8) a {
    background: url("images/btn_pressure_gr_2x.png");
    background-size: cover;
  }

  .list_pressure li:nth-of-type(1) .title span,
  .list_pressure li:nth-of-type(4) .title span,
  .list_pressure li:nth-of-type(5) .title span,
  .list_pressure li:nth-of-type(8) .title span {
    color: #59b138;
  }

  /* オレンジ色のリストのCSS */
  .list_pressure li:nth-of-type(2) .more span,
  .list_pressure li:nth-of-type(3) .more span,
  .list_pressure li:nth-of-type(6) .more span,
  .list_pressure li:nth-of-type(7) .more span {
    text-shadow: #cf7c0f 2px 0px 0px, #cf7c0f 1.75517px 0.958851px 0px, #cf7c0f 1.0806px 1.68294px 0px, #cf7c0f 0.141474px 1.99499px 0px, #cf7c0f -0.832294px 1.81859px 0px, #cf7c0f -1.60229px 1.19694px 0px, #cf7c0f -1.97998px 0.28224px 0px, #cf7c0f -1.87291px -0.701566px 0px, #cf7c0f -1.30729px -1.5136px 0px, #cf7c0f -0.421592px -1.95506px 0px, #cf7c0f 0.567324px -1.91785px 0px, #cf7c0f 1.41734px -1.41108px 0px, #cf7c0f 1.92034px -0.558831px 0px;
    border-bottom-color: #ff9257;
  }

  .list_pressure li:nth-of-type(2) .more::after,
  .list_pressure li:nth-of-type(3) .more::after,
  .list_pressure li:nth-of-type(6) .more::after,
  .list_pressure li:nth-of-type(7) .more::after {
    background-color: #fd823f;
  }

  .list_pressure li:nth-of-type(2) a,
  .list_pressure li:nth-of-type(3) a,
  .list_pressure li:nth-of-type(6) a,
  .list_pressure li:nth-of-type(7) a {
    background: url("images/btn_pressure_or_2x.png");
    background-size: cover;
  }

  .list_pressure li:nth-of-type(2) .title span,
  .list_pressure li:nth-of-type(3) .title span,
  .list_pressure li:nth-of-type(6) .title span,
  .list_pressure li:nth-of-type(7) .title span {
    color: #fc8240;
  }

  /* トピックス */
  .sec_top_topics {
    padding: 80px 0;
  }

  .topics_item .over_text ul li {
    font-size: calc(16px + 16 * (100vw - 320px)/320);
  }

  #topics {
    margin-bottom: 0;
  }

  #topics .slick-slide:first-of-type {
    opacity: 0.6;
    transform: scale(0.8);
  }

  #topics .slick-arrow {
    width: 40px;
    height: 40px;
    top: calc(44% - 40px);
  }

  #topics .slick-next {
    right: 3%;
    background-size: cover;
  }

  #topics .slick-prev {
    left: 3%;
    background-size: cover;
  }

  /* かかりつけ医 */
  .sec_top_personal {
    overflow: hidden;
    padding: 80px 0;
  }

  .tit_personal {
    margin: 0 auto 20px;
  }

  .tit_personal h2 {
    font-size: calc(22px + 6 * (100vw - 320px)/320);
  }

  .tit_personal h2::before {
    left: -60px;
  }

  .tit_personal h2::after {
    right: -60px;
  }

  h3.catch_personal {
    font-size: calc(20px + 4 * (100vw - 320px)/320);
    margin: 0 auto 20px;
  }

  h3.catch_personal::before,
  h3.catch_personal::after {
    width: 29px;
    height: 40px;
  }

  h3.catch_personal::before {
    left: -32px;
  }

  h3.catch_personal::after {
    right: -32px;
  }

  .list_power {
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .list_power .circle {
    width: calc(100vw / 3 - 20px);
    height: calc(100vw / 3 - 20px);
    margin: 0;
  }

  .list_power .circle::before {
    background-size: contain;
  }

  .list_power .circle::after {
    width: 100%;
    height: 100%;
    right: -5px;
    bottom: -5px;
  }

  .list_power .circle i {
    top: -5px;
    max-width: 40px;
    height: auto;
  }

  .list_power .circle p {
    font-size: calc(18px + 8 * (100vw - 320px)/320);
  }

  .list_power .circle p::after {
    width: 80px;
  }

  .text_personal .btn01 {
    margin-top: 56px;
  }

  /* ループスライダー */
  .loop_slide_wrap .slick-initialized .slick-slide img {
    width: 250px;
  }

  /* 診療案内 */
  .sec_top_medical {
    padding: 80px 0;
  }

  .sec_top_medical .tit_wrap {
    margin-bottom: 40px;
  }

  .top_medical_wrap {
    gap: 0;
  }

  .top_medical_item {
    width: 100%;
    max-width: 368px;
    margin: 0 auto 40px;
  }

  .top_medical_item:last-child {
    margin: 0 auto;
  }

  .top_medical_item_tit h3 {
    font-size: calc(24px + 4 * (100vw - 320px)/320);
  }

  .top_medical_item_list {
    min-height: auto;
  }

  .top_medical_item_list li a {
    padding: 15px 0 17px 45px;
    font-size: calc(18px + 2 * (100vw - 320px)/320);
    background-position: left 25px center;
  }

  .top_medical_item_list li a:hover {
    background-position: left 30px center;
  }

  /*--------------------下層のメインビジュアル（スマホ）--------------------*/
  #mainvisual {
    position: relative;
    height: 160px;
    margin-top: 60px;
    background-position: center;
    background-attachment: scroll;
  }

  #mainvisual .inner {
    width: 100%;
    height: inherit;
  }

  #mainvisual .inner+div {
    width: 100% !important;
    top: 0 !important;
  }

  .main_headline {
    padding: 10px 0 0;
  }

  .main_headline p.midashi {
    font-size: 150%;
    margin: 0 30px;
  }

  .mv_contents {
    background: none;
  }

  /*----------トップページキャッチフレーズ（スマホ）----------*/
  /* .main_catch {
  left: auto;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: auto;
  height: 350px;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}
.main_catch img{
  width: auto;
  height: 100%;
}
.catchcopy_tit span {
  font-size: 5vw;
}
.catchcopy_text span {
  font-size: 3vw;
} */

  /*20250901追記*/
  .main_catch {
    /*display: none;*/
  }

  .main_catch {
    /*left: auto;*/
    left: calc(50%);
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
    transform: translateX(-50%);
  }

  _::-webkit-full-page-media,
  _:future,
  :root .main_catch {
    left: unset;
    width: 175px;
  }

  .main_catch img {
    width: auto;
    height: 100%;
  }

  .catchcopy_tit span {
    font-size: 5vw;
  }

  .catchcopy_text span {
    font-size: 3vw;
  }

  body.home #mainvisual .slider-fade .main_catch img {
    height: 100%;
    object-fit: contain;
  }

  /*----------スライダー フェード（スマホ）----------*/
  .slider-fade .slick-slide img {
    width: 100%;
    height: 330px;
    object-fit: cover;
  }

  /*----------スライダー スライド（スマホ）----------*/
  .slick-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }

  .slider-slide .slick-slide img {
    width: 100%;
    max-width: 100% !important;
    height: 330px;
    object-fit: cover;
    border-radius: 0px;
  }

  .slider-slide .slick-slide {
    margin: 0;
  }

  .slider-slide .slick-list.draggable {
    width: 100% !important;
    margin: 0 auto;
  }

  .slider-slide .slick-track,
  .slick-slider {
    height: auto;
    margin: 0;
  }

  .main_time {
    display: none;
  }

  /*----------スマホのみのエリア（スマホ）----------*/
  .top_sp_only {
    margin: 20px 0;
    padding: 0 4% !important;
  }

  .top_sp_only .main_open {
    position: unset;
    margin: 15px auto;
    height: auto;
    opacity: 1;
    padding: 15px;
    width: 100%;
    display: block;
  }

  .top_sp_only .main_time {
    position: unset;
    width: auto;
    font-size: unset;
  }

  .main_vaccine {
    max-width: 390px;
    text-align: center;
    position: static;
    margin: auto;
  }

  .main_vaccine img {
    width: 100%;
    height: auto;
  }

  /*--------------------フッター（スマホ）--------------------*/
  .pagetop {
    right: 10px;
    bottom: 60px;
    left: auto;
    margin: auto;
    width: 40px;
    height: 40px;
  }

  .pagetop i {
    margin-top: 10px;
  }

  .pagetop:hover {
    transform: unset;
  }

  .footer_inner,
  .footer_inner02 {
    width: 100%;
    padding: 40px 20px 40px;
    display: block;
  }

  .footer_logo {
    width: 65%;
    margin: 0 auto 30px;
  }

  .footer_info_wrap {
    display: block;
  }

  .footer_info_left {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }

  .footer_info_left .logo img {
    width: 100%;
  }

  .footer_info_access {
    margin: 20px 0;
  }

  .footer_info_tel a {
    margin-left: 0;
  }

  .footer_info_right .sche_wrap {
    padding: 0;
  }

  footer .text {
    margin: 0;
  }

  .footer_info_right {
    margin-top: 40px;
    width: 100%;
  }

  .footer_map img {
    margin-bottom: 24px;
  }

  .footer_info_add span {
    display: block;
  }

  .sche_wrap {
    padding: 0 0 10px;
  }

  .sche_wrap::before {
    display: none;
  }

  .reserve_list {
    flex-wrap: wrap;
  }

  .reserve_list li:not(:last-child) {
    margin-bottom: 16px;
  }

  .footer_info_bottom {
    padding: 32px 0 40px;
    margin-top: 40px;
  }

  .footer_map {
    width: 100%;
  }

  .footer_access_movie {
    width: 100%;
    padding-top: 30px;
  }

  .footer_access_movie iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  .g_calender_attention {
    background: rgba(255, 255, 255, 0.8);
    padding: 3%;
    font-size: 14px;
  }

  .calendar_img a {
    width: 35%;
  }

  .calendar_img a {
    margin: 30px 10px;
  }

  .g_calendar_cate {
    flex-wrap: wrap;
    line-height: 1.5;
    padding: 10px;
  }

  /*--------------------サイドバー（スマホ）--------------------*/
  .side_area {
    width: 100%;
    margin: auto;
    padding: 30px 20px 20px;
  }

  /*--------------------パンくず（スマホ）--------------------*/
  #breadcrumb {
    position: static;
    font-size: 12px;
    padding: 15px 0;
  }

  /*--------------------共通仕様（スマホ）--------------------*/
  .contents_bg {
    background-size: 80% auto, 80% auto;
  }

  #contents {
    padding-bottom: 70px;
  }

  .box1 {
    width: 100%;
    padding: 0 20px 0;
  }

  .textarea p {
    font-size: 14px;
    margin-bottom: 1.5em;
  }

  .contents {
    width: 100%;
  }

  .wrapper {
    width: 100%;
    display: block;
    padding: 10px 0 0;
  }

  .wrapper main {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 20px 0;
  }

  body.home .wrapper main {
    padding-left: 0;
    padding-right: 0;
  }

  .medical_single {
    padding: 0 !important;
  }

  .body_single p img {
    display: block;
    margin: 0 auto;
  }

  .body_single iframe {
    width: 100%;
  }

  /*----------リスト----------*/
  .list08 {
    padding: 6%;
  }

  .layout10 .list08 {
    padding: 4%;
  }

  /*----------テーブル----------*/
  .sp_w100 th,
  .sp_w100 td {
    width: 100% !important;
    display: block !important;
    border-top: none;
  }

  .sp_w100 tr:first-child th,
  .sp_w100 tr:first-child td:first-child {
    border-top: 1px solid var(--border-color);
  }

  .tb01 {
    width: 100%;
    table-layout: fixed;
    white-space: inherit;
  }

  .tb01 tr {}

  .tb01 th {
    width: 30%;
  }

  .tb01 td {
    width: 70%;
  }

  .tb03,
  .tb03 th {
    white-space: inherit;
  }

  .tb03.w075par {
    width: 100%;
  }

  .tb04,
  .tb04 th {
    white-space: normal;
  }

  .tb04 th {
    font-size: 13px;
  }

  .tb04 td,
  .tb04 th {
    padding: 2%;
  }

  .scroll_sp_wrap {
    overflow-x: scroll;
  }

  table.scroll_sp {
    width: 816px;
  }

  table.scroll_sp02 {
    width: 500px;
  }

  table .fixed_head {
    position: sticky;
    left: 0;
  }

  table .fixed_head::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
  }

  /*--------------------フリーエリア上（スマホ）--------------------*/
  .freearea_up_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

  .freearea_up_img img {
    width: 100%;
    height: auto;
  }

  /*--------------------フリーエリア下（スマホ）--------------------*/
  .freearea_under_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

  .freearea_under_img img {
    width: 100%;
    height: auto;
  }

  /*--------------------医師紹介（スマホ）--------------------*/
  .doctor_greeting_flex {
    display: block;
  }

  .doctor_greeting_flex .text {
    width: 100%;
  }

  .doctor_img {
    width: 100%;
    text-align: center;
  }

  /*----------経歴・資格----------*/
  .doctor_carr_wrap {
    display: block;
  }

  .doctor_carr_box {
    width: 100%;
    margin-bottom: 20px;
  }

  .doctor_carr_box:last-child {
    margin-bottom: 0;
  }

  /*--------------------医院紹介（スマホ）--------------------*/
  .clinic_desc dl {
    display: block;
  }

  .clinic_desc dl dt {
    width: 100%;
    padding: 15px 0 0;
    border-bottom: none;
  }

  .clinic_desc dl dd {
    width: 100%;
    padding: 0 0 15px;
  }

  .clinic_sche .tb02 th,
  .clinic_sche .tb02 td {
    font-size: 12px;
  }

  .clinic_facilities_wrap {
    display: block;
  }

  .facilities_item {
    width: 100%;
    margin-bottom: 20px;
  }

  .facilities_item_img img {
    max-height: 390px;
  }

  .answer {
    display: block;
  }

  .answer img {
    padding-top: 30px;
  }

  .point_flex {
    display: block;
  }

  .point_flex p {
    width: 100%;
  }

  .point_flex img {
    width: 100%;
    margin-top: 20px;
  }

  /*--------------------料金表（スマホ）--------------------*/
  .price_table {}

  .price_table tr:first-child {
    display: none;
  }

  .price_table tr td:nth-child(1) {
    background-color: var(--bg-color);
    font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
  }

  .price_table {
    border-bottom: 1px solid var(--border-color)
  }

  .price_table tr:first-child {
    display: none;
  }

  .price_table td {
    display: block;
    border-bottom: none;
    text-align: center;
  }

  .price_table tr td:nth-child(1) {
    width: 100%;
  }

  .price_table tr td:nth-child(2) {
    width: 100%;
    text-align: center;
  }

  .price_table tr td:nth-child(3) {
    width: 100%;
    white-space: normal;
  }

  /*--------------------求人情報（スマホ）--------------------*/
  .recruit_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

  .recruit_img img {
    width: 100%;
    height: auto;
  }

  .recruit_table {
    border-bottom: 1px solid var(--border-color);
  }

  .recruit_table th,
  .recruit_table td {
    width: 100%;
    display: block;
    border-bottom: none;
  }

  .recruit_table th {
    border-bottom: none;
  }

  /*--------------------アクセス（スマホ）--------------------*/
  .access_add {
    display: block;
  }

  .access_add dt {
    width: 100%;
  }

  .access_add dd {
    width: 100%;
  }

  .access_route ul {
    display: block;
  }

  .access_route ul li {
    width: 100%;
  }

  /*--------------------オンライン診療（スマホ）--------------------*/
  p.emphasis {
    font-size: 18px;
    line-height: 1.75;
    padding-bottom: 10px;
  }

  .btn01.online a {
    width: 100%;
  }

  .online h2 {
    font-size: 140%;
  }

  /*--------------------下層ページ（スマホ）--------------------*/

  /*セカンドオピニオン外来*/
  .medical_doctor_wrap .doctor_carr_box {
    width: 100%;
  }

  .medical_doctor_image {
    width: 100%;
  }

  .medical_doctor_image .doctor_name {
    text-align: center;
  }

  /*----メルスモン----*/
  .melsmon_imageBox {
    display: block;
  }

  .melsmon_imageBox div {
    width: 100%;
  }

  .flex_box_text {
    width: 100%;
  }

  .flex_btn {
    gap: 0;
    flex-direction: column;
  }

  /*--------------------ブログ（スマホ）--------------------*/
  .blog_box h2 {}

  .thumbnail {
    float: none;
    margin: 0;
    text-align: center;
  }

  .thumbnail img {
    object-fit: cover;
    max-width: 100%;
    max-height: unset;
    width: 200px;
    height: 200px;
  }

  .blog_content iframe {
    max-width: 100%;
    height: auto;
  }

  /*--------------------お問い合わせ（スマホ）--------------------*/
  .contact {
    margin: 0 auto;
    width: auto;
  }

  /*--------------------診療内容などのコンテンツ（スマホ）--------------------*/
  .anklink li {
    width: 100%;
    margin: 0 0 10px;
  }

  .medical_list .btn_area_medical {
    justify-content: space-between;
    gap: auto;
  }

  .medical_list .btn_area_medical .btn01 {
    width: 100%;
  }


  /*--------------------タイトル（スマホ）--------------------*/
  .body_single h2,
  .body_single h3,
  .body_single h4,
  .body_single h5 {
    text-align: left;
    letter-spacing: normal;
  }

  .tit_wrap h2 {
    font-size: 29px;
  }

  /*--------------------レイアウト（スマホ）--------------------*/
  /*----------1つ並びのレイアウト。画像は無し、左にタイトル、右に文章----------*/
  .layout01 {}

  .layout01:before {}

  .layout01 dl {
    display: block;
  }

  .layout01 dl:after {}

  .layout01 dt {
    width: 100%;
  }

  .layout01 dd {
    width: 100%;
  }

  .layout01 dd img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /*----------2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章----------*/
  .layout02 {
    display: block;
  }

  .layout02::after {}

  .layout02 dl {
    width: 100%;
  }

  .layout02 dl:nth-child(even) {}

  .layout02 dt {}

  .layout02 dd img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /*----------1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章----------*/
  .layout03 {
    margin: 0 0 15px;
  }

  .layout03 dl {
    display: block;
  }

  .layout03 dt {
    width: 100%;
  }

  .layout03 dt img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout03 dd {
    width: 100%;
    padding: 15px 3% 1%;
  }

  .layout03 dd h5 {}

  .layout03 dd h5 em {}

  /*----------1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色----------*/
  .layout04 {}

  .layout04 dl {
    display: block;
  }

  .layout04 dt {
    width: 100%;
    padding: 2%;
  }

  .layout04 dt img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout04 dd {
    width: 100%;
  }

  .layout04 dd h5 {}

  .layout04 dd h5 span {}

  /*----------1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章----------*/
  .layout05 {}

  .layout05 dl {
    display: block;
  }

  .layout05 dt {
    width: 100%;
    text-align: center;
    display: block;
  }

  .layout05 dt img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout05 dd {}

  .layout05 dd:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout05 dd:nth-child(3) {
    width: 100%;
    border-left: none;
  }

  .layout05 dd h5 em {}

  .layout05 dd h5 {}

  .layout05_text1 {}

  .layout05_text1 ul {}

  /*----------1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章----------*/
  .layout06 {
    margin: 0 0 15px;
  }

  .layout06 dl {
    display: block;
  }

  .layout06 dl:before {}

  .layout06 dl:last-child:after {}

  .layout06 dt {
    width: 100%;
    padding: 3%;
    display: block;
    text-align: center;
  }

  .layout06 dt img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout06 dl:last-of-type {}

  /*----------数字----------*/
  .layout06 dt em {}

  .layout06 dd {}

  .layout06 dd:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout06 dd:nth-child(3) {
    width: 100%;
    border-left: none;
  }

  .layout06 dd h5 {}

  .layout06_text1 {}

  .layout06_text1 ul {}

  .layout06_text1 ul li span {}

  /*----------3つ並びのレイアウト。----------*/
  .layout07 {
    display: block;
  }

  .layout07::after {}

  .layout07 dl {
    display: block;
    width: 100%;
  }

  .layout07 dl:nth-child(3n) {}

  .layout07 dl dt {}

  .layout07 dl dt em {}

  .layout07 dl dd {}

  /*----------3つ並びのレイアウト。矢印付き----------*/
  .layout08 {
    display: block;
  }

  .layout08 dl {
    position: relative;
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }

  .layout08 dl:nth-child(3n) {}

  .layout08 dl::before {
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 110%;
    height: 7px;
    width: 7px;
    transform: rotate(135deg);
    background-color: transparent;
    border-top: 2px solid var(--main-color);
    border-right: 2px solid var(--main-color);
    content: "";
    bottom: 0;
    margin: auto;
  }

  .layout08 dl:nth-child(3n)::before {
    display: none;
  }

  .layout08 dl dt {
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px dashed var(--border-color);
    font-size: 17px;
    font-family: "fot-tsukuardgothic-std","FOT-筑紫A丸ゴシック Std B";
    text-align: center;
  }

  .layout08 dl dt em {
    margin-right: 8px;
    font-size: 24px;
    font-family: 'Quicksand', sans-serif;
  }

  .layout08 dl dd {
    line-height: 1.5;
  }

  /* layout10 */
  .layout10 .flow_box {
    justify-content: space-between;
    padding: 4%;
  }

  .layout10 .flow_box::before {
    display: none;
  }

  .layout10 .flow_box .number {
    width: 42px;
    height: 42px;
    margin-right: 0;
    font-size: 20px;
  }

  .layout10 .flow_box .layout10_box {
    width: 85%;
  }

  .layout10 .flow_box .layout10_text .title {
    font-size: 14px;
    line-height: 1.4;
  }

  .layout10 .flow_box .layout10_text .title span {
    display: block;
    padding-bottom: 8px;
    font-weight: bold;
  }

  .layout10 .flow_box .layout10_text .title span::after {
    display: none;
  }

  .course_ablation::before {
    display: none;
  }

  /*--------------------MPクラウド--------------------*/
  #mpcloud_schedule {
    bottom: 60px;
  }

  /*--------------------common--------------------*/
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .pc_inline {
    display: none !important;
  }

  .sp_inline {
    display: inline !important;
  }

  .pc_table {
    display: table !important;
  }

  .sp_table {
    display: table !important;
  }

  .sp_flex {
    display: flex !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .sp_mb00 {
    margin-bottom: 0 !important;
  }

  .sp_mr00 {
    margin-right: 0 !important;
  }

  .sp_ml00 {
    margin-left: 0 !important;
  }

  .sp_mt00 {
    margin-top: 0 !important;
  }

  .sp_pb00 {
    padding-bottom: 0 !important;
  }

  .sp_pr00 {
    padding-right: 0 !important;
  }

  .sp_pl00 {
    padding-left: 0 !important;
  }

  .sp_pt00 {
    padding-top: 0 !important;
  }

  .sp_center {
    text-align: center;
  }

  .img_fl,
  .img_fr {
    float: none;
    margin: 0;
    text-align: center;
  }

  .img_fl img,
  .img_fr img {
    margin-bottom: 15px;
    width: auto;
    max-width: 100%;
    max-height: 300px;
    height: auto;
  }

  .caution {
    width: 100%;
  }

  .caution span.balloon {
    top: -45px;
    left: -20px;
  }
}

@media screen and (max-width:320px) {
  .main_catch p {
    font-size: 16px;
  }

  /*--------------------サイドバー--------------------*/
  .side_area {
    width: 100%;
  }

  /*--------------------common--------------------*/
  .sp_inline_iP {
    display: inline !important;
  }
}

@media screen and (min-width: 640px) {

  /* トピックス */
  #topics .slick-arrow {
    display: none !important;
  }
}

/*.20250928 */
.top_reserveA ul li a span.reserve_tit.line_2 {
  font-size: 0.9em;
  line-height: 2.3;
}