@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
/* CSS変数 */
:root {
  --clr_txt: #011e3b;
  --clr_bg: #fff;
  --clr_link: #0075c1;
  --clr_linkH: #00488e;
  --clr_main: #0075c1;
  --clr_sub1: #00488e;
  --clr_sub2: #f5aa00;
  --clr_sub3: #7cbc27;
  --clr_sub4: #d9eafe;
  --clr_sub5: #fef0d1;
  --clr_sub6: #e74347;
  --clr_sub7: #ffe8e8;
  --clr_sub8: #009e41;
  --clr_sub9: #e1dfdf;
  --clr_sub10: #FFFAEE;
  --clr_sub11: #105399;
  --clr_sub12:#BBDBFF;
  --red: #e74347;
  --blue: #00488e;
  --green: #7cbc27;
  --orange: #f5aa00;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
/* _reset.scss　出力*/
*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

/* https://medium.com/@matuzo/writing-css-with-accessibility-in-mind-8514a0007939 */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

/* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
.plain-list {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
  padding-left: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
html {
  -webkit-text-size-adjust: 100%;
}

button {
  cursor: pointer;
  appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
}

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

img {
  height: auto;
  border: none;
  object-fit: contain;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
}

a {
  text-decoration: none;
}

/* /_reset.scss　出力ここまで */
/* _module.scss　出力 */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

.txt_c {
  text-align: center !important;
}

.txt_l {
  text-align: left !important;
}

.txt_r {
  text-align: right !important;
}

.bold {
  font-weight: bold;
}

em {
  font-style: 500;
  font-style: normal;
}

strong {
  font-style: bold;
}

.underline {
  background: linear-gradient(transparent 60%, #FBE0E5 60%);
}

.font_s {
  font-size: smaller;
}

.font_l {
  font-size: larger;
}

/* テキストカラー -------------------------------------- */
.fc_red {
  color: var(--red) !important;
}

.fc_blue {
  color: var(--blue) !important;
}

.fc_orange {
  color: var(--orange) !important;
}

.fc_green {
  color: var(--green) !important;
}

.img_c {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
}

.img_l,
.img_r {
  display: block;
  max-width: 80%;
  height: auto;
  margin: 1rem auto;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
  #lower main .inner img.img_r,
  #lower main .inner img.img_l {
    width: 30rem;
  }
}
.sp_n,
.sp_n_i {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .sp_n_i {
    display: inline !important;
  }
  .pc_n {
    display: none;
  }
}
/* マージン -------------------------------------- */
.mb_00 {
  margin-bottom: 0 !important;
}

.mb_05 {
  margin-bottom: 0.5rem !important;
}

.mb_10 {
  margin-bottom: 1rem !important;
}

.mb_15 {
  margin-bottom: 1.5rem !important;
}

.mb_20 {
  margin-bottom: 2rem !important;
}

.mb_25 {
  margin-bottom: 2.5rem !important;
}

.mb_30 {
  margin-bottom: 3rem !important;
}

.mb_35 {
  margin-bottom: 3.5rem !important;
}

.mb_40 {
  margin-bottom: 4rem !important;
}

.mb_45 {
  margin-bottom: 4.5rem !important;
}

.mb_50 {
  margin-bottom: 5rem !important;
}

.mlr_auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 幅 -------------------------------------- */
.w_10 {
  width: 10% !important;
}

.w_13 {
  width: 13% !important;
}

.w_15 {
  width: 15% !important;
}

.w_20 {
  width: 20% !important;
}

.w_25 {
  width: 25% !important;
}

.w_30 {
  width: 30% !important;
}

.w_35 {
  width: 35% !important;
}

.w_40 {
  width: 40% !important;
}

.w_45 {
  width: 45% !important;
}

.w_50 {
  width: 50% !important;
}

.w_55 {
  width: 55% !important;
}

.w_60 {
  width: 60% !important;
}

.w_65 {
  width: 65% !important;
}

.w_70 {
  width: 70% !important;
}

.w_75 {
  width: 75% !important;
}

.w_80 {
  width: 80% !important;
}

.w_85 {
  width: 85% !important;
}

.w_90 {
  width: 90% !important;
}

.w_95 {
  width: 95% !important;
}

.w_100 {
  width: 100% !important;
}

/* 幅PC -------------------------------------- */
@media screen and (min-width: 48em), print {
  .w_10_pc {
    width: 10% !important;
  }
  .w_15_pc {
    width: 15% !important;
  }
  .w_20_pc {
    width: 20% !important;
  }
  .w_25_pc {
    width: 25% !important;
  }
  .w_30_pc {
    width: 30% !important;
  }
  .w_35_pc {
    width: 35% !important;
  }
  .w_40_pc {
    width: 40% !important;
  }
  .w_45_pc {
    width: 45% !important;
  }
  .w_50_pc {
    width: 50% !important;
  }
  .w_55_pc {
    width: 55% !important;
  }
  .w_60_pc {
    width: 60% !important;
  }
  .w_65_pc {
    width: 65% !important;
  }
  .w_70_pc {
    width: 70% !important;
  }
  .w_75_pc {
    width: 75% !important;
  }
  .w_80_pc {
    width: 80% !important;
  }
  .w_85_pc {
    width: 85% !important;
  }
  .w_90_pc {
    width: 90% !important;
  }
  .w_95_pc {
    width: 95% !important;
  }
  .w_100_pc {
    width: 100% !important;
  }
  .w_68_pc {
    width: 68% !important;
  }
}
/* flex box */
.flex_LRTB,
.flex_RLTB {
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-wrap: wrap;
}

@media screen and (min-width: 48em), print {
  /* PCで左→右に配置／SPで上→下に配置 */
  .flex_LRTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
  }
  .flex_LRTB.half {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_LRTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_LRTB.half > li {
    margin-bottom: 1rem;
  }
  .flex_LRTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_LRTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.center {
    justify-content: center;
  }
  /* PCで右→左に配置／SPで上→下に配置 */
  .flex_RLTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
  }
  .flex_RLTB.half {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_RLTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_RLTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_RLTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.third > * {
    width: 32%;
  }
  .flex_LRTB.fourth > * {
    width: 24%;
  }
}
/* ----------------------------------------------------------------------------------
リストなど　_basic.scss
---------------------------------------------------------------------------------- */
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
ul {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
ul li {
  margin: 0 0 10px;
  padding: 0;
}

/* シンプル -------------------------------------- */
ul.list_sim {
  margin: 0 0 10px 20px;
}
ul.list_sim > li {
  margin: 0 0 8px 0;
  padding: 0;
}
ul.list_sim > li::before {
  position: relative;
  top: -0.1em;
  left: -0.5em;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  content: "";
  border-radius: 100%;
  background: var(--clr_sub1);
  vertical-align: middle;
}

/* ● -------------------------------------- */
ul.list_maru {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_maru > li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_maru > li::before {
  display: inline-block;
  content: "●";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_main);
}

/*　● インライン -------------------------------------- */
ul.list_maru.list_in li {
  display: inline-block;
  margin: 0 40px 8px 0;
}

/* ※ -------------------------------------- */
ul.list_kome {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_kome li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_kome li::before {
  display: inline-block;
  content: "※";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: #f0013c;
}

/* link -------------------------------------- */
ul.list_lnk {
  padding: 0;
}
ul.list_lnk li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.8rem;
}
ul.list_lnk li::before {
  font-family: "fontello";
  content: "2";
  padding-right: 0.3rem;
  font-weight: bold;
  color: var(--clr_link);
}
ul.list_lnk a {
  color: var(--clr_link);
  border-bottom: none;
}

/* ページ内リンク -------------------------------------- */
ul.list_pl {
  margin-bottom: 3rem;
}
ul.list_pl li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
ul.list_pl li a {
  color: var(--clr_txt);
}
ul.list_pl a::before {
  font-family: "fontello";
  content: "\f004";
  padding-right: 5px;
  font-weight: bold;
  color: var(--clr_link);
}

@media screen and (min-width: 48em), print {
  ul.list_pl {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
  ul.list_pl li {
    width: 33%;
  }
  ul.list_pl li a {
    background: #eeeeee;
    display: block;
    border: var(--clr_link) solid 2px;
    border-radius: 5px;
    padding: 7px 0 7px 25px;
  }
  ul.list_pl::after {
    content: "";
    display: block;
    width: 33%;
  }
}
/* チェックボックス -------------------------- */
ul.list_check {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_check li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_check li::before {
  display: inline-block;
  font-family: fontello;
  content: "\e808";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_main);
}

/* 数値 -------------------------------------- */
ol.list_num {
  box-sizing: border-box;
  width: 100%;
}
ol.list_num > li {
  list-style-type: decimal;
  margin: 0 0 10px 35px;
  box-sizing: border-box;
  width: 90%;
}

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow > li {
  background: var(--clr_sub4);
  margin-bottom: 5rem;
  padding: 1.5rem 1.5rem;
  position: relative;
  border-radius: 1rem;
}
ol.list_flow > li > dl > dt {
  font-weight: 500;
  font-size: 130%;
  margin-bottom: 0.5em;
  color: var(--clr_main);
  border-bottom: 0.1rem solid var(--clr_main);
  padding-bottom: 0.2rem;
}
ol.list_flow > li::after {
  background: var(--clr_main);
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  right: 0;
  bottom: -3.25rem;
  margin: auto;
  position: absolute;
  width: 5rem;
  height: 2rem;
}
ol.list_flow > li:last-child::after {
  /*最後の▼を外す*/
  display: none;
}

@media screen and (min-width: 48em), print {
  ol.list_flow {
    margin: auto;
  }
  ol.list_flow > li {
    padding: 2rem;
    margin-bottom: 7rem;
  }
  ol.list_flow > li::after {
    width: 6rem;
    height: 3rem;
    bottom: -5rem;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.dl_career dd {
  margin: 0 0 1em 5px;
}

@media screen and (min-width: 48em), print {
  .dl_career {
    display: flex;
    flex-wrap: wrap;
  }
  .dl_career dt {
    width: 6em;
  }
  .dl_career dd {
    width: calc(100% - 11em);
  }
}
/* dtシンプル -------------------------------------- */
.dl_sim {
  margin: 0 auto 1.5rem;
}
.dl_sim > dt {
  color: var(--clr_main);
  margin-bottom: 0.7rem;
}
.dl_sim > dd {
  margin-bottom: 2.5rem;
}

/* dtに下線 -------------------------------------- */
.dl_def {
  margin: 2rem auto 2rem 0;
}
.dl_def > dt {
  color: var(--clr_main);
  border-bottom: solid 3px var(--clr_main);
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}
.dl_def > dd {
  margin-bottom: 1.5em;
}

.dl_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-left: 0.1rem solid var(--clr_sub4);
  border-right: 0.1rem solid var(--clr_sub4);
  border-top: 0.1rem solid var(--clr_sub4);
  border-bottom: 0.1rem solid var(--clr_sub4);
  padding: 0;
}
.dl_flex dt,
.dl_flex dd {
  border-bottom: 0.1rem solid var(--clr_sub4);
  margin: 0;
  padding: 0.5rem;
}
.dl_flex dt:last-child,
.dl_flex dd:last-child {
  border-bottom: none;
}
.dl_flex dt {
  background: var(--clr_sub4);
}
.dl_flex dt:nth-last-child(2) {
  border-bottom: none;
}

@media screen and (min-width: 48em), print {
  .dl_flex dt,
  .dl_flex dd {
    padding: 1.5rem;
  }
}
/* テーブルもどき -------------------------------------- */
.dl_tbl {
  border: var(--clr_sub1) solid 1px;
  margin-bottom: 0.5rem;
}
.dl_tbl > dt {
  font-weight: bold;
  background: var(--clr_sub1);
  padding: 0.5rem 1rem;
  color: #fff;
}
.dl_tbl > dd {
  padding: 1rem;
  margin: 0;
}
.dl_tbl > dd *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  .dl_tbl dt {
    border-top: #fff 0.1rem solid;
    padding: 1rem 0 1rem 2rem;
  }
  .dl_tbl dt:first-child {
    border-top: none;
  }
  .dl_tbl dd {
    border-top: var(--clr_sub1) 0.1rem solid;
    padding: 1.5rem 2rem;
  }
  .dl_tbl dd:nth-child(2) {
    border-top: none;
  }
}
/* box -------------------------------------- */
.box1,
.box2,
.box3 {
  padding: 20px !important;
  margin-bottom: 1.5em;
  background: var(--clr_sub4);
  border-radius: 0.5rem;
}
.box1 ul,
.box2 ul,
.box3 ul {
  margin-bottom: 0;
}
.box1 ul li::before,
.box2 ul li::before,
.box3 ul li::before {
  color: var(--clr_main);
}
.box1 > dt,
.box2 > dt,
.box3 > dt {
  border-bottom: var(--clr_main) dotted 2px;
  margin-bottom: 1em;
  padding-bottom: 5px;
  font-weight: bold;
}
.box1 > dd + dt,
.box2 > dd + dt,
.box3 > dd + dt {
  margin-top: 1.5em;
}
.box1 > dd dt,
.box2 > dd dt,
.box3 > dd dt {
  color: var(--clr_main);
  font-weight: bold;
  margin-bottom: 0.5em;
}
.box1 > dd dd + dt,
.box2 > dd dd + dt,
.box3 > dd dd + dt {
  margin-top: 1.5em;
}
.box1 > *:last-child,
.box2 > *:last-child,
.box3 > *:last-child {
  margin-bottom: 0;
}

.box2 {
  background: var(--clr_sub5);
}
.box2 > dt {
  border-bottom: var(--clr_sub2) dotted 2px;
}
.box2 > dd dt {
  color: var(--clr_sub2);
}
.box2 ul.list_maru > li::before {
  color: var(--clr_sub2);
}

.box3 {
  background: #eee;
}
.box3 > dt {
  border-bottom: var(--clr_sub3) dotted 2px;
}
.box3 > dd dt {
  color: var(--clr_sub3);
}
.box3 ul.list_maru > li::before {
  color: var(--clr_sub3);
}

@media screen and (min-width: 48em), print {
  .box1 > dt,
  .box2 > dt {
    font-size: 18px;
  }
  .box1 > dd dt,
  .box2 > dd dt {
    font-size: 17px;
  }
}
/* リンク -------------------------------------- */
a {
  text-decoration: none;
}

main a {
  border-bottom: 1px solid var(--clr_link);
  color: var(--clr_link);
}

main a:hover {
  color: var(--clr_linkH);
  border-bottom: 1px solid var(--clr_linkH);
}

a:hover img {
  opacity: 0.8;
}

a.btn {
  background: transparent linear-gradient(90deg, #ff819a 0%, #ea617c 100%) 0% 0% no-repeat padding-box;
  color: #fff !important;
  padding: 1rem 4rem;
  text-align: center;
  margin: 5px auto;
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  line-height: 1;
  position: relative;
  margin: 1rem auto;
  border: none;
  border-radius: 2rem;
}
a.btn::before {
  content: "\e804";
  font-family: fontello;
  padding-right: 0.5rem;
  font-size: 80%;
}
a.btn:hover {
  transform: translateY(-0.4rem);
  background-color: var(--clr_linkH);
  border: none !important;
}

@media screen and (min-width: 48em), print {
  a.btn {
    padding: 2rem 3.5rem;
  }
  a.btn:hover {
    transform: translateY(-0.4rem);
  }
}
a.border_n {
  border: none !important;
}

/* 画像  -------------------------------------- */
figure {
  margin: 0;
}

#lower figure {
  margin-bottom: 10px;
}

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

/* /_module.scss　出力ここまで */
/* _common.scss　出力 */
@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 400;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 700;
  src: local("Yu Gothic Bold");
}
* {
  box-sizing: border-box;
}

html {
  font-size: 3.125vw;
}

body {
  font-family: YakuHanJPs, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--clr_txt);
  font-size: 1.25rem;
  background-color: var(--clr_bg);
  line-height: 1;
  margin: 0;
  padding: 0;
  letter-spacing: 0.08em;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  position: relative;
}

:root {
  scroll-padding: 6.5rem;
  scroll-behavior: smooth;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
    /* ベースを10pxに */
    overflow: auto;
  }
  body {
    min-width: 1260px;
    font-size: 1.8rem;
    overflow: hidden;
  }
}
/* 全体の横幅設定  -------------------------------------- */
.wrap {
  margin: 0 1.5rem;
}

main {
  line-height: 1.4;
}

.inner {
  padding: 0;
}

main > .inner {
  margin: 0 15px 30px;
  line-height: 1.6;
}

section {
  margin-bottom: 3rem;
}

@media screen and (min-width: 48em), print {
  .wrap {
    width: 1260px;
    margin: 0 auto;
    padding: 0 4rem;
  }
  section {
    margin-bottom: 5rem;
  }
  .inner {
    padding: 0;
  }
  main {
    margin-top: 6rem;
  }
}
/* header  -------------------------------------- */
header {
  position: relative;
  line-height: 1;
}
header .wrap {
  margin: 0 1rem;
}
header .logo {
  width: 90%;
  padding: 0.5rem 0 0.5rem;
  margin: auto;
}

/* ハンバーガーメニュー  -------------------------------------- */
.sp_top {
  z-index: 1000;
  position: relative;
  background: #fff;
  box-shadow: 0px 10px 10px -6px rgba(100, 100, 100, 0.1);
}
.sp_top ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0;
}
.sp_top ul li {
  width: 20%;
  margin: 0;
  letter-spacing: normal;
  text-align: center;
  position: relative;
  font-size: 90%;
}
.sp_top ul li::after {
  content: "";
  display: block;
  width: 10%;
  height: 90%;
  border-left: var(--clr_sub9) 0.1rem solid;
  transform: rotate(11deg);
  position: absolute;
  top: 0;
  right: -0.8rem;
}
.sp_top ul li a,
.sp_top ul li button {
  display: block;
  width: 100%;
  color: var(--clr_txt);
  line-height: 1.4;
}
.sp_top ul li a::before,
.sp_top ul li button::before {
  display: block;
  content: "";
  background: url(../img/sp_nav_home.png) no-repeat center;
  background-size: contain;
  height: 2rem;
  width: 2rem;
  margin: auto;
}
.sp_top ul li a,
.sp_top ul li button {
  padding: 0.5rem 0 0.7rem 0;
}
.sp_top ul li:nth-child(2) a::before {
  background-image: url(../img/sp_nav_tel.png);
}
.sp_top ul li:nth-child(3) a::before {
  background-image: url(../img/sp_nav_reserve.png);
}
.sp_top ul li:nth-child(4) a::before {
  background-image: url(../img/sp_nav_access.png);
}
.sp_top ul li:last-child {
  width: 18%;
}
.sp_top ul li:last-child button::before {
  background-image: url(../img/sp_nav_menu.png);
}
.sp_top ul li:last-child::after {
  display: none;
}
.sp_top.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*
  + div.overlay  + div + #kv,
  + div.overlay + h1 {
      margin-top: 7rem !important;
  }*/
}

@media screen and (min-width: 48em), print {
  .sp_top.fixed + div.overlay + nav + div + #kv,
  .sp_top.fixed + div.overlay + nav + h1 {
    margin-top: 0 !important;
  }
}
body.open .sp_top {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#nav {
  width: 100%;
  padding: 1rem 2rem 2rem;
  position: absolute;
  right: -100vw;
  top: 4.5rem;
  transition: 0.3s;
  z-index: 1100;
  position: fixed;
  max-height: 94%;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  background: #eee;
}
#nav .n_reserve {
  display: none;
}
#nav a {
  text-decoration: none;
  background: #fff;
  display: block;
  line-height: 1;
  color: #5e5245;
}
#nav ul.gnav > li {
  margin: 1.5rem 0;
}
#nav ul.gnav > li > a {
  display: flex;
  align-items: center;
  position: relative;
  height: 3.5rem;
  padding-left: 1rem;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
}
#nav ul.gnav > li > a::before {
  font-family: "fontello";
  content: "\a006";
  color: var(--clr_main);
  width: 1.8rem;
  display: inline-block;
}
#nav ul.gnav > li.dropdown {
  background: #fff;
}
#nav ul.gnav > li.dropdown > a {
  margin: 1.5rem 0 0;
}
#nav ul.gnav > li.dropdown a:before {
  font-family: "fontello";
  content: "\a004";
}
#nav ul.gnav > li.dropdown a.close::before {
  font-family: "fontello";
  content: "\a005";
}
#nav ul.gnav > li.dropdown ul {
  margin: 0;
  padding: 0 0 1rem 1rem;
  display: flex;
  flex-wrap: wrap;
}
#nav ul.gnav > li.dropdown ul li {
  width: 49%;
  margin: 0.7rem 0;
}
#nav ul.gnav > li.dropdown ul li a {
  display: block;
  padding: 0.5rem 0 0.5rem 0;
  letter-spacing: normal;
}
#nav ul.gnav > li.dropdown ul li a::before {
  font-family: "fontello";
  content: "\32";
  color: var(--clr_link);
  padding-right: 0.3rem;
}

body.open #nav {
  right: 0;
}
body.open .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #eeeeee;
  z-index: 11;
  transition: 0.3s;
}

@media screen and (min-width: 48em), print {
  header {
    padding: 0;
    width: 100%;
    min-width: 1260px;
    margin: 0;
    position: relative;
    z-index: 1000;
    transition: all 0.8s;
    height: 14rem;
  }
  header > .wrap {
    margin: 0 auto;
    padding: 0 4rem;
    align-items: center;
    justify-content: space-between;
    display: flex;
    height: 14rem;
  }
  header > .wrap .h_left {
    width: 37.3rem;
  }
  header > .wrap .logo {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  header > .wrap .h_right {
    line-height: 1;
    letter-spacing: 0;
    text-align: right;
    width: 75rem;
    padding-bottom: 2.5rem;
    height: 14rem;
  }
  header > .wrap .h_right ul.sp_n {
    margin: 0 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    height: 6.5rem;
  }
  header > .wrap .h_right ul.sp_n li {
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.5rem;
  }
  header > .wrap .h_right ul.sp_n li.h_tel {
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-size: 2.6rem;
    background: var(--clr_main);
    border-radius: 0 0 1rem 1rem;
    width: 25rem;
    font-weight: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6.5rem;
    gap: 0.7rem;
    letter-spacing: 0.1rem;
  }
  header > .wrap .h_right ul.sp_n li.h_tel a {
    color: #fff;
    display: block;
    height: 6.5rem;
  }
  header > .wrap .h_right ul.sp_n li.h_tel::before {
    font-family: "fontello";
    content: "\a002";
  }
  header > .wrap .h_right ul.sp_n li.h_reserve a {
    color: #fff;
    font-size: 2.2rem;
    border-radius: 0 0 1rem 1rem;
    width: 15.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6.5rem;
    font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
    font-weight: 500;
    letter-spacing: 0.088rem;
    gap: 0.7rem;
    color: #fff;
    height: 6.5rem;
    background: var(--orange);
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  }
  header > .wrap .h_right ul.sp_n li.h_reserve a:hover {
    letter-spacing: 0.07em;
  }
  header > .wrap .h_right ul.sp_n li.h_reserve a::before {
    font-family: "fontello";
    content: "\a003";
  }
  header > .wrap .h_right ul.sp_n li.h_address {
    padding-right: 1rem;
    font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
    font-weight: 500;
    letter-spacing: 0.072rem;
  }
  header > .wrap .h_right ul.sp_n li.h_address::before {
    font-family: "fontello";
    content: "\a001";
    color: var(--clr_main);
    font-size: 2.7rem;
  }
  #nav {
    padding: 0;
    margin: 0;
    position: static;
    overflow: visible !important;
    transition: none;
    display: block;
    width: 100%;
    background-color: transparent;
    height: 7.5rem;
    align-content: center;
  }
  #nav ul.gnav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    max-width: none;
    line-height: 2rem;
    letter-spacing: 0.072rem;
    margin: 0;
    text-align: center;
    gap: 3.1rem;
    height: 6.5rem;
  }
  #nav ul.gnav > li {
    margin: 0;
    position: relative;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  #nav ul.gnav > li::after {
    content: "";
    display: block;
    width: 10%;
    height: 60%;
    border-left: var(--clr_sub9) 0.1rem solid;
    transform: rotate(28deg);
    position: absolute;
    top: 1.2rem;
    right: -2.2rem;
  }
  #nav ul.gnav > li:last-child {
    display: none;
  }
  #nav ul.gnav > li.access::after {
    display: none;
  }
  #nav ul.gnav > li > a {
    text-align: center;
    padding: 0;
    position: relative;
    margin: 0;
    width: 100%;
    color: var(--clr_txt);
    transition: color 0.3s;
    background-color: transparent;
    height: 4.5rem;
  }
  #nav ul.gnav > li > a::before {
    position: absolute;
    bottom: 0.5rem;
    top: auto;
    left: 30%;
    content: "" !important;
    width: 40%;
    height: 0.3rem;
    background: var(--clr_main);
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  #nav ul.gnav > li > a:hover::before {
    transform: scale(1, 1);
    content: "" !important;
  }
  #nav ul.gnav > li.dropdown {
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
  #nav ul.gnav > li.dropdown > a {
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown > a:after {
    font-family: "fontello";
    content: "\a004";
    padding-left: 0.5rem;
    color: var(--clr_main);
  }
  #nav ul.gnav > li.dropdown > a.close::after {
    font-family: "fontello";
    content: "\a007";
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    padding: 1rem 0 1rem 3rem;
    margin: 0;
    z-index: 100;
    top: 5.5rem;
    left: -24rem;
    text-align: left;
    overflow: hidden;
    width: 60rem;
    background-color: #fff;
    box-shadow: 0 1rem 2rem rgba(51, 51, 51, 0.15);
    border-radius: 2rem;
    align-content: center;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem 2rem;
    padding: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    width: auto;
    margin: 0;
    padding: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    color: var(--clr_txt);
    margin: 0;
    transition: color 0.3s;
    line-height: 2.8rem;
    display: block;
    padding: 0;
    letter-spacing: 0.18rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    color: var(--clr_main);
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a::before {
    font-family: "fontello";
    content: "\a006";
  }
  body.nav_fixed #nav {
    position: fixed;
    width: 100%;
    height: 6.5rem;
    min-width: 1260px;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 1rem 2rem rgba(51, 51, 51, 0.15);
    display: flex;
    justify-content: center;
    gap: 3.1rem;
  }
  body.nav_fixed #nav ul.gnav {
    justify-content: center;
  }
  body.nav_fixed #nav .n_reserve {
    display: block;
  }
  body.nav_fixed #nav .n_reserve a {
    width: 15.6rem;
    height: 6.5rem;
    background-color: var(--orange);
    color: #fff;
    font-size: 2.2rem;
    width: 15.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
    font-weight: 500;
    gap: 0.7rem;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
    letter-spacing: 0.088rem;
  }
  body.nav_fixed #nav .n_reserve a:hover {
    letter-spacing: 0.07em;
  }
  body.nav_fixed #nav .n_reserve a::before {
    font-family: "fontello";
    content: "\a003";
  }
}
/* main   -------------------------------------- */
main {
  display: block;
}
main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
main li,
main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  main {
    margin: 0;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
#overview {
  background-image: url(../img/overview_wave.png), url(../img/overview_corner_r.png), url(../img/overview_corner_l.png);
  background-color: var(--clr_sub10);
  background-repeat: no-repeat;
  background-position: top center, bottom right, top left;
  background-size: 120% auto, 9rem auto, 12rem auto;
  margin: 0 0;
  padding: 1.5rem 0 5rem;
  line-height: 1.4;
  position: relative;
}
#overview .logo img {
  margin: 0 auto;
  height: 8rem;
}
#overview .o_address {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  gap: 0.5rem;
  margin: 0.5em auto;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-weight: 500;
  line-height: 1.8rem;
}
#overview .o_address::before {
  font-family: "fontello";
  content: "\a001";
  color: var(--clr_main);
  font-size: 1.8rem;
}
#overview .o_address + ul.flex_LRTB {
  margin-bottom: 2rem;
}
#overview .o_address + ul.flex_LRTB .o_tel {
  background: var(--clr_main);
  color: #fff;
  font-size: 1.4rem;
  width: 100%;
  max-width: 19rem;
  padding: 0.5rem;
  border-radius: 1rem;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik", sans-serif;
  gap: 0.6rem;
}
#overview .o_address + ul.flex_LRTB .o_tel::before {
  font-family: "fontello";
  content: "\a002";
}
#overview .o_address + ul.flex_LRTB .o_tel a {
  color: #fff;
}
#overview .o_address + ul.flex_LRTB .o_reserve a {
  background: var(--orange);
  color: #fff;
  display: block;
  font-size: 1.4rem;
  width: 100%;
  max-width: 19rem;
  padding: 0.5rem;
  border-radius: 1rem;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-weight: 500;
}
#overview .o_address + ul.flex_LRTB .o_reserve a::before {
  font-family: "fontello";
  content: "\a003";
}
#overview .o_address + ul.flex_LRTB .o_insta {
  width: 4rem;
  margin: 2rem auto;
}

.dl_overview {
  margin-bottom: 0;
}
.dl_overview > dt {
  border-bottom: 0.1rem solid var(--clr_sub1);
  padding: 0.5rem;
  text-align: center;
  color: var(--clr_sub1);
  margin-bottom: 1rem;
}
.dl_overview > dd {
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.dl_overview > dd em {
  font-size: 140%;
}

.gmap {
  height: 29rem;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 8rem 0 1rem;
    margin: 0;
    letter-spacing: normal;
    background-size: auto;
  }
  #overview .wrap {
    width: 76.5rem;
    padding: 0;
  }
  #overview .logo img {
    width: 55.8rem;
    margin: 0 auto 2.5rem;
    height: auto;
  }
  #overview .o_address {
    font-size: 2.6rem;
    gap: 1.2rem;
    line-height: 3rem;
    margin-bottom: 3.4rem;
  }
  #overview .o_address::before {
    font-size: 3rem;
  }
  #overview .o_address + ul.flex_LRTB {
    gap: 1.1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
  }
  #overview .o_address + ul.flex_LRTB .o_tel {
    font-size: 3.4rem;
    width: 32rem;
    height: 6.5rem;
    max-width: none;
    margin: 0;
    letter-spacing: 0.136rem;
  }
  #overview .o_address + ul.flex_LRTB .o_reserve {
    margin: 0;
  }
  #overview .o_address + ul.flex_LRTB .o_reserve a {
    font-size: 2.8rem;
    width: 19rem;
    height: 6.5rem;
    margin: 0;
    letter-spacing: 0.088rem;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  }
  #overview .o_address + ul.flex_LRTB .o_reserve a:hover {
    letter-spacing: 0.07em;
  }
  #overview .o_address + ul.flex_LRTB .o_insta {
    width: 6.5rem;
    margin: 0 0 0 3.5rem;
  }
  .dl_overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6.3rem;
    font-size: 2.4rem;
    letter-spacing: 0.096rem;
  }
  .dl_overview > dt {
    width: 13.5rem;
    margin: 0 0;
    padding: 0 0;
    height: 7rem;
    align-content: center;
  }
  .dl_overview > dd {
    width: calc(100% - 13.5rem);
    margin: 0 0;
    padding: 0 0 0 4.5rem;
    height: 7rem;
    border-bottom: #dedede solid 0.1rem;
    align-content: center;
  }
  .gmap {
    height: 43rem;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  caption-side: bottom;
  line-height: 1;
  border-radius: 1rem 1rem 0 0;
}
.tbl_time caption {
  margin-top: 0.5rem;
  margin-left: 0.7rem;
  line-height: 1.4;
  text-align: left;
}
.tbl_time caption dl {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5em;
  margin: 0.5em 0;
}
.tbl_time caption dl dt {
  background: var(--red);
  border-radius: 1rem;
  text-align: center;
  align-content: center;
  width: 4.6em;
  color: #fff;
}
.tbl_time caption dl dd {
  width: calc(100% - 6.5em);
  word-break: auto-phrase;
}
.tbl_time thead th {
  padding: 1rem 0.2rem;
  background: var(--clr_sub3);
  color: #fff;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
}
.tbl_time tbody th,
.tbl_time tbody td {
  padding: 1rem 0;
  vertical-align: middle;
  font-weight: normal;
  background: #fff;
}
.tbl_time tbody td {
  color: var(--clr_main);
}
.tbl_time tbody tr:first-child th,
.tbl_time tbody tr:first-child td {
  border-bottom: 0.1rem solid #ddd;
}
.tbl_time tbody th {
  font-family: "Rubik", sans-serif;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    margin: 0 0 3rem;
  }
  .tbl_time thead th {
    padding: 2rem 0.9rem;
    font-size: 2.4rem;
    letter-spacing: normal;
  }
  .tbl_time thead th:last-child {
    padding: 2rem 2rem 2rem 0;
  }
  .tbl_time tbody tr th {
    padding: 2.7rem 1.5rem;
    line-height: 1;
    width: 22rem;
    letter-spacing: 0.1em;
    font-size: 2.6rem;
  }
  .tbl_time tbody tr td {
    padding: 2.7rem 0;
    width: calc((100% - 25rem) / 7);
    font-size: 2.4rem;
  }
  .tbl_time tbody tr td:last-child {
    width: calc((100% - 25rem) / 7 + 3rem);
    padding: 2rem 2rem 2rem 0;
  }
  .tbl_time caption {
    margin-top: 1.5rem;
    font-size: 2.6rem;
  }
  .tbl_time caption dl {
    margin-top: 2rem;
  }
}
.tbl_charge {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  caption-side: bottom;
  line-height: 1;
  border-radius: 1rem 1rem 0 0;
}
.tbl_charge caption div {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}
.tbl_charge caption div span {
  margin: 0;
}
.tbl_charge {
  /*
  span {
      display: block;
      border-radius: 0.5rem;
      width: 3.6em;
      background: var(--clr_sub1);
      align-content: center;
      color: #fff;
      line-height: 1.5;
      margin: auto;
      padding: 0 0 0.2rem;

      &.bg {
          background: #009e41;
      }

      &.bo {
          background: #E26900;
      }

      +span {
          margin-top: 0.5rem;
      }
  }*/
}
.tbl_charge.nenshi tbody tr {
  background: #fff;
  color: var(--clr_main);
}
.tbl_charge thead th {
  padding: 1rem 0.2rem;
  background: var(--clr_main);
  color: #fff;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-weight: 500;
  border-left: 0.1rem solid #fff;
}
.tbl_charge thead th:first-child {
  border-left: none;
}
.tbl_charge tbody tr {
  background: var(--clr_sub4);
  color: var(--clr_main);
}
.tbl_charge tbody tr.test td, .tbl_charge tbody tr.test th {
  background: #DEEBCD;
  color: #009e41;
}
.tbl_charge tbody th,
.tbl_charge tbody td {
  padding: 0;
  vertical-align: middle;
  align-content: center;
  font-weight: normal;
  border-bottom: 0.1rem solid var(--clr_main);
}
.tbl_charge tbody th[rowspan],
.tbl_charge tbody td[rowspan] {
  background: #fff;
}
.tbl_charge tbody td {
  width: calc((100% - 1.2em) / 6);
  height: 5em;
  font-size: 90%;
  border-left: 0.1rem solid var(--clr_main);
  position: relative;
  padding: 0.5rem 0;
}
.tbl_charge tbody td.close {
  color: var(--red);
}
.tbl_charge tbody td em {
  font-size: 60%;
  letter-spacing: normal;
}
.tbl_charge tbody td span {
  display: block;
}
.tbl_charge tbody th {
  width: 1.2em;
  font-size: 80%;
  color: var(--clr_main);
  /*    &.bb{
     color:#fff;
     background: var(--clr_main);
     }
         &.bg {
     color:#fff;
             background: #009e41;
         }

         &.bo {
     color:#fff;
             background: #E26900;
         }
    span {
         display: block;
         border-radius: 0.5rem;
         width: 3.6em;
         background: var(--clr_sub1);
         align-content: center;
         color: #fff;
         line-height: 1.5;
         margin: auto;
         padding: 0 0 0.2rem;

         &.bg {
             background: #009e41;
         }

         &.bo {
             background: #E26900;
         }

         +span {
             margin-top: 0.5rem;
         }
     }*/
}
.tbl_charge.nenshi tbody td,
.tbl_charge.nenshi tbody th {
  height: 3em;
}

@media screen and (min-width: 48em), print {
  .tbl_charge {
    /* span {
         width: 8.5rem;
         // height: 3.5rem;
         line-height: 3.5rem;
         font-size: 2.4rem;
         padding-bottom: 0.3rem;
     }*/
  }
  .tbl_charge thead th {
    font-size: 2.4rem;
    padding: 1.8rem 0;
    height: 6rem;
  }
  .tbl_charge tbody th {
    width: 5.5rem;
    font-size: 2.4rem;
    padding: 0 1rem;
  }
  .tbl_charge tbody td {
    width: 12.6rem;
    font-size: 2.4rem;
    padding: 0.7rem 0;
  }
  .tbl_charge.nenshi tbody th,
  .tbl_charge.nenshi tbody td {
    height: 6rem;
  }
}
/* ページトップ -------------------------------------- */
#pageup {
  position: fixed;
  bottom: -15rem;
  right: 1rem;
  z-index: 100;
  width: 3rem;
  height: 3rem;
  font-size: 1.7rem;
  transition: bottom 0.8s;
  border-radius: 50%;
  color: var(--clr_main);
}
#pageup:hover {
  animation: bound 0.3s ease infinite alternate;
}

#pageup.block {
  bottom: 1.5rem;
}

/*アニメーション*/
@keyframes bound {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@media screen and (min-width: 48em), print {
  #pageup {
    width: 8.2rem;
    height: 8.2rem;
    font-size: 4rem;
  }
  #pageup:hover {
    animation: bound 0.3s ease infinite alternate;
  }
  #pageup.block {
    bottom: 1rem;
  }
}
/* footer -------------------------------------- */
footer {
  background: #0a80cc;
  margin: 0 auto 0;
}
footer .wrap.pc_n {
  padding: 2.5rem 0 1rem;
}
footer .wrap.pc_n > dl {
  color: #fff;
}
footer .wrap.pc_n > dl > dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
  margin-bottom: 1em;
}
footer .wrap.pc_n > dl > dt::before, footer .wrap.pc_n > dl > dt::after {
  display: block;
  width: calc((100% - 7em) / 2);
  height: 0.1rem;
  display: block;
  content: "";
  background: #fff;
}
footer .wrap.pc_n > dl ul {
  margin: 0;
  padding: 0 0 1rem 0.5rem;
  display: flex;
  flex-wrap: wrap;
  font-size: 90%;
}
footer .wrap.pc_n > dl ul li {
  width: 45%;
  margin: 0.7rem 0;
}
footer .wrap.pc_n > dl ul li.dropdown {
  display: none;
}
footer .wrap.pc_n > dl ul li:nth-child(even), footer .wrap.pc_n > dl ul li:last-child {
  width: 54%;
}
footer .wrap.pc_n > dl ul li.access {
  width: 45%;
}
footer .wrap.pc_n > dl ul li a {
  display: block;
  padding: 0.5rem 0 0.5rem;
  color: #fff;
  white-space: nowrap;
}
footer .wrap.pc_n > dl ul li a::before {
  font-family: "fontello";
  content: "\32";
  padding-right: 0.3rem;
}
footer .wrap.pc_n > dl dl {
  border-top: 0.1rem solid #fff;
  padding-top: 1em;
}
footer .wrap.pc_n > dl dl dt {
  text-align: center;
  margin-bottom: 1em;
}
footer .wrap > ul {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
}
footer .wrap > ul:first-child {
  margin-bottom: 2rem;
}
footer .wrap > ul > li {
  padding: 0;
  margin: 0 0 0.8rem;
  width: 55%;
}
footer .wrap > ul > li:nth-child(even) {
  width: 45%;
}
footer .wrap > ul > li a {
  color: var(--clr_txt);
  padding: 0;
  line-height: 1;
}
footer .wrap > ul > li.dropdown {
  display: none;
}

address {
  background: var(--clr_sub11);
  padding: 1rem 0;
  font-style: normal;
  text-align: center;
  font-size: 1.2rem;
}
address a {
  color: #fff;
}

@media screen and (min-width: 48em), print {
  footer .wrap {
    padding: 4.8rem 0;
  }
  footer .wrap > ul {
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }
  footer .wrap > ul:last-child {
    margin-bottom: 0;
  }
  footer .wrap > ul > li {
    padding: 0;
    margin: 0 0;
    border-left: 0.1rem solid #fff;
    width: auto !important;
  }
  footer .wrap > ul > li a {
    color: #fff;
    padding: 0 0.5em;
    line-height: 1;
  }
  footer .wrap > ul > li:first-child {
    border-left: none;
  }
  footer .wrap > ul > li.dropdown {
    display: none;
  }
  address {
    margin: 0 auto;
    padding: 0;
    font-size: 2rem;
    line-height: 6rem;
  }
}
/*
nav,
footer,
#treatment,
.pc_right li:last-child{
    a {
              pointer-events: none;
    }
}

a[href*="internal.html"],
a[href*="respiratory.html"],
a[href*="lifestyle-related.html"],
a[href*="checkup.html"],
a[href*="vaccination.html"]
{ pointer-events: none; }*/
/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage #kv {
  background-size: auto 25rem;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin: 0 auto 1rem;
}
#TopPage #kv::after {
  content: "";
  display: block;
  width: 100%;
  height: 25rem;
  background: url(../img/kv_wave_SP.svg) no-repeat center bottom -2rem;
  background-size: contain;
  position: absolute;
  top: 0;
}
#TopPage #kv .kv_txt {
  line-height: 1.77;
  color: #fff;
  padding: 1rem;
  font-size: 1.5rem;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-weight: 500;
  height: 25rem;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5rem;
}
#TopPage #kv .kv_open {
  background: rgba(0, 117, 193, 0.9);
  border-radius: 1rem;
  display: flex;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-weight: 500;
  gap: 1rem;
  padding: 0 1rem;
  margin: 1rem 0;
}
#TopPage #kv .kv_open p {
  width: calc(100% - 5rem);
  display: grid;
  align-content: space-evenly;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
}
#TopPage #kv .kv_open::before {
  display: block;
  content: "";
  width: 5rem;
  height: 10rem;
  background: url(../img/kv_open_bg.png) no-repeat left center;
  background-size: contain;
}
#TopPage .sp_top.fixed + div + #kv {
  margin-top: 5rem !important;
}
#TopPage main {
  margin-top: 3rem;
}
#TopPage #charge h2,
#TopPage #feature h2,
#TopPage #medical h2 {
  margin: 0 0 1rem;
  line-height: 1;
  text-align: center;
}
#TopPage #charge h2 div,
#TopPage #feature h2 div,
#TopPage #medical h2 div {
  font-weight: 500;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
#TopPage #charge h2 div::before, #TopPage #charge h2 div::after,
#TopPage #feature h2 div::before,
#TopPage #feature h2 div::after,
#TopPage #medical h2 div::before,
#TopPage #medical h2 div::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 1.5rem;
  background: url(../img/h2.png) no-repeat center;
  background-size: contain;
}
#TopPage #charge h2 span,
#TopPage #feature h2 span,
#TopPage #medical h2 span {
  display: block;
  font-size: 1.2rem;
  color: var(--clr_main);
  font-family: "Rubik", sans-serif;
  font-weight: normal;
}
#TopPage #charge {
  margin: 3rem 0 5rem;
}
#TopPage #charge .box {
  display: flex;
  gap: 1rem;
  color: var(--clr_main);
  background: var(--clr_sub4);
  padding: 1rem;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
#TopPage #charge .box_attention {
  background: #ffe8e8;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  margin-top: 2em;
}
#TopPage #charge .box_attention dl {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5em;
  margin: 0 0 1em;
}
#TopPage #charge .box_attention dl dt {
  background: var(--red);
  border-radius: 1rem;
  text-align: center;
  align-content: center;
  width: 4.6em;
  color: #fff;
}
#TopPage #charge .box_attention dl dd {
  width: fit-content;
  word-break: auto-phrase;
}
#TopPage #news {
  position: relative;
  background-image: url(../img/news_wave.png), url(../img/news_corner_r.png), url(../img/news_corner_l.png);
  background-color: var(--clr_sub10);
  background-repeat: no-repeat;
  background-position: top center, bottom right, top 0.5rem left;
  background-size: 120% auto, 9rem auto, 12rem auto;
  padding: 0 0 6rem;
}
#TopPage #news h2 {
  background: url(../img/news_h2.png) no-repeat center;
  background-size: contain;
  width: 14rem;
  height: 14rem;
  font-size: 2rem;
  display: grid;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  margin: 0 auto 2rem;
}
#TopPage #news h2 span {
  display: block;
  font-size: 1.2rem;
  font-family: "Rubik", sans-serif;
  font-weight: normal;
}
#TopPage #news .wrap {
  position: relative;
  z-index: 10;
}
#TopPage #news dl {
  padding: 0 1rem 0.5rem 0.5rem;
  margin-bottom: 3rem;
  position: relative;
  max-height: 20rem;
  overflow-y: auto;
}
#TopPage #news dl::-webkit-scrollbar {
  width: 1.4rem;
}
#TopPage #news dl::-webkit-scrollbar-track {
  background: var(--clr_sub5) 0% 0% no-repeat padding-box;
  border-radius: 7px;
}
#TopPage #news dl::-webkit-scrollbar-thumb {
  background: var(--clr_main);
  border-radius: 10px;
  box-shadow: none;
}
#TopPage #news dl dt {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0 0 1.6rem;
  margin: 1rem 0 0;
  font-size: 1.4rem;
  cursor: pointer;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  gap: 0 0.8rem;
  border-top: 0.1rem solid #e5dbc4;
}
#TopPage #news dl dt::before {
  color: var(--clr_main);
  font-family: "fontello";
  content: "\a004";
  position: absolute;
  top: 1rem;
  left: 0;
  font-weight: normal;
}
#TopPage #news dl dt .date {
  display: inline-block;
  font-size: 1.2rem;
  color: var(--clr_main);
  line-height: 1.2;
  padding-top: 0.3rem;
  font-family: "Rubik", sans-serif;
}
#TopPage #news dl dt .new_tag {
  display: none;
}
#TopPage #news dl dt:first-child {
  border-top: none;
  margin-top: 0;
}
#TopPage #news dl dt.open::before {
  font-family: "fontello";
  content: "\a007";
}
#TopPage #news dl dd a {
  margin: 1em 0 0;
  display: block;
  width: fit-content;
}
#TopPage #news dl dd:not(:nth-of-type(-n + 3)) {
  display: none;
}
#TopPage #feature {
  padding: 8rem 0 3rem;
  background: url(../img/feature_bg.webp) no-repeat top center;
  background-size: cover;
  position: relative;
  margin-top: -5rem;
}
#TopPage #feature::before {
  content: "";
  display: block;
  width: 100%;
  height: 7rem;
  background: url(../img/feature_orn.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 1rem;
}
#TopPage #feature ul {
  margin: 4rem 0;
}
#TopPage #feature ul li {
  padding: 0 0 3rem;
  margin: 0;
}
#TopPage #feature ul li figure {
  box-shadow: 1rem 1rem 0 var(--clr_main);
  border-radius: 2rem;
  display: block;
  position: relative;
  width: 20rem;
  margin: 0 auto;
}
#TopPage #feature ul li figure img {
  display: block;
  border-radius: 2rem;
}
#TopPage #feature ul li figure figcaption {
  position: absolute;
  background: var(--clr_main);
  border-radius: 2rem;
  width: 15rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  font-family: "Rubik", sans-serif;
  top: -1rem;
  left: 0;
  right: 0;
  margin: auto;
}
#TopPage #feature ul li figure figcaption span {
  font-size: 1.8rem;
}
#TopPage #feature ul li figure figcaption::before, #TopPage #feature ul li figure figcaption::after {
  content: "●";
  font-size: 0.5rem;
  color: #e5a003;
  width: 2rem;
  text-align: center;
}
#TopPage #feature ul li dl {
  background: url(../img/feature_deco.png) no-repeat top left #fff;
  border-radius: 1rem;
  padding: 3rem;
  margin-top: -3rem;
  position: relative;
  background-size: 3rem auto;
}
#TopPage #feature ul li dl > dt {
  font-size: 1.5rem;
  color: var(--clr_main);
  margin-bottom: 1rem;
  width: fit-content;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
}
#TopPage #feature ul li dl > dt span {
  background: linear-gradient(transparent 65%, #daebfc 65%);
}
#TopPage #feature ul li dl .btn {
  max-width: 24.5rem;
  display: block;
}
#TopPage .fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
#TopPage .fadein.is-active {
  opacity: 1;
  transform: translateY(0);
}
#TopPage #medical {
  position: relative;
  margin-bottom: 4rem;
}
#TopPage #medical::before {
  width: 100%;
  height: 10rem;
  background: url(../img/medical_wave.png) no-repeat center;
  background-size: auto 10rem;
  position: absolute;
  top: -5rem;
  display: block;
  content: "";
}
#TopPage #medical .wrap {
  position: relative;
  padding-top: 4rem;
}
#TopPage #medical ul.flex_LRTB {
  border: 0.1rem solid #ccc;
  border-radius: 1rem;
}
#TopPage #medical ul.flex_LRTB li {
  padding: 2rem 1.5rem;
  border-bottom: 0.1rem solid #ccc;
  margin: 0;
}
#TopPage #medical ul.flex_LRTB li:last-child {
  border-bottom: none;
}
#TopPage #medical ul.flex_LRTB li a {
  width: 22rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  font-size: 1.4rem;
  border: none;
  align-content: center;
  position: relative;
  background: var(--clr_sub12);
  border-radius: 5rem;
  color: var(--clr_main);
  margin: 1rem auto 0;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
}
#TopPage #medical ul.flex_LRTB li a::after {
  position: absolute;
  right: 1rem;
  font-family: "fontello";
  content: "\a006";
}
#TopPage #medical ul.flex_LRTB figure img {
  width: 5rem;
  margin: auto;
  display: block;
}
#TopPage #medical ul.flex_LRTB figure figcaption {
  font-size: 1.4rem;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-weight: 500;
  color: var(--clr_main);
  text-align: center;
  margin-bottom: 1rem;
}
#TopPage #favor dl {
  background: #f0f6fd;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  margin: 4rem 0;
  box-shadow: 1rem 1rem 0 var(--clr_main);
}
#TopPage #favor dl dt {
  color: var(--clr_main);
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 1.6rem;
}
#TopPage #favor dl dt::before, #TopPage #favor dl dt::after {
  content: "●";
  font-size: 1rem;
  width: 2rem;
  text-align: center;
}

@media screen and (min-width: 48em), print {
  #TopPage #kv {
    margin: 0 auto 0;
    background-size: auto;
    height: 89rem;
  }
  #TopPage #kv::after {
    background: url(../img/kv_wave_PC.svg) no-repeat center top;
    background-size: auto;
    bottom: -1rem;
    top: auto;
    height: 27rem;
  }
  #TopPage #kv .wrap {
    margin: 0 auto;
    position: relative;
    padding-top: 43.5rem;
  }
  #TopPage #kv .kv_txt {
    text-align: left;
    font-size: 4.4rem;
    height: auto;
    line-height: 7.7rem;
    letter-spacing: 0.61rem;
    padding: 0;
  }
  #TopPage #kv .kv_open {
    background-color: transparent;
  }
  #TopPage #kv .kv_open::before {
    display: none;
  }
  #TopPage #kv .kv_open {
    position: absolute;
    bottom: -1.5rem;
    right: 3rem;
  }
  #TopPage #kv .kv_open p {
    display: none;
  }
  #TopPage #kv .kv_open img {
    width: auto;
    max-width: none;
    margin: 0 auto 0 0;
  }
  #TopPage .sp_top.fixed + div + #kv {
    margin-top: 0 !important;
  }
  #TopPage main {
    padding: 0;
    margin: 0;
  }
  #TopPage main #charge h2,
  #TopPage main #feature h2,
  #TopPage main #medical h2 {
    margin: 0 0 3.5rem;
  }
  #TopPage main #charge h2 div,
  #TopPage main #feature h2 div,
  #TopPage main #medical h2 div {
    font-size: 3.8rem;
    gap: 2rem;
    margin-bottom: 0.5rem;
    line-height: 5.5rem;
    letter-spacing: 0.532rem;
  }
  #TopPage main #charge h2 div::before, #TopPage main #charge h2 div::after,
  #TopPage main #feature h2 div::before,
  #TopPage main #feature h2 div::after,
  #TopPage main #medical h2 div::before,
  #TopPage main #medical h2 div::after {
    content: "";
    display: block;
    width: 6.4rem;
    height: 2.5rem;
    background-size: auto;
  }
  #TopPage main #charge h2 span,
  #TopPage main #feature h2 span,
  #TopPage main #medical h2 span {
    font-size: 1.6rem;
  }
  #TopPage main #charge {
    margin: 1rem 0 0;
  }
  #TopPage main #charge .wrap {
    width: 76.6rem;
    padding: 0;
  }
  #TopPage main #charge .box {
    width: 50rem;
    height: 9rem;
    margin: 0 auto 3.5rem;
    align-content: center;
    font-size: 2.2rem;
  }
  #TopPage main #charge .box_attention {
    padding: 3.3rem 4.1rem;
    font-size: 2.4rem;
    margin-top: 4.5rem;
  }
  #TopPage main #news {
    background-size: 200rem auto, 34rem auto, 34rem auto;
    background-position: top -21rem center, bottom right, top 0.5rem left;
    padding: 16rem 0;
    margin-top: 3rem;
  }
  #TopPage main #news h2 {
    width: 30rem;
    height: 30rem;
    font-size: 3.8rem;
    margin: 0;
  }
  #TopPage main #news h2 span {
    font-size: 1.6rem;
  }
  #TopPage main #news .wrap {
    justify-content: space-between;
  }
  #TopPage main #news dl {
    width: 80.5rem;
    margin: 0 auto;
    max-height: 75rem;
    padding: 0 1rem 0 0;
  }
  #TopPage main #news dl dt {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    padding-left: 3rem;
    padding-top: 2.4rem;
    line-height: 3.5rem;
    margin-bottom: 2rem;
    font-size: 2.4rem;
    gap: 1.8rem;
    width: 74rem;
  }
  #TopPage main #news dl dt .date {
    font-size: 1.8rem;
  }
  #TopPage main #news dl dt::before {
    top: 2.4rem;
  }
  #TopPage main #news dl dd {
    width: 74rem;
    margin-bottom: 2.4rem;
  }
  #TopPage main #feature {
    padding: 18rem 0 10rem 0;
    margin-top: -6rem;
  }
  #TopPage main #feature::before {
    height: 24rem;
    top: -4rem;
  }
  #TopPage main #feature ul.flex_LRTB {
    margin-top: 7rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  #TopPage main #feature ul.flex_LRTB li {
    width: 55.5rem;
    padding: 0;
    margin: 0;
  }
  #TopPage main #feature ul.flex_LRTB li:nth-child(even) {
    margin-top: 9rem;
  }
  #TopPage main #feature ul.flex_LRTB li:nth-child(3) {
    margin-top: -11rem;
  }
  #TopPage main #feature ul.flex_LRTB li figure {
    width: 48rem;
    margin: 0 auto 0 0;
    box-shadow: 15px 15px 0 var(--clr_main);
  }
  #TopPage main #feature ul.flex_LRTB li figure figcaption {
    width: 19rem;
    height: 4.4rem;
    top: -2.2rem;
    left: 2rem;
    right: auto;
    padding: 0 2rem;
    border-radius: 2.2rem;
  }
  #TopPage main #feature ul.flex_LRTB li figure figcaption div {
    line-height: 4.5rem;
    font-size: 1.8rem;
  }
  #TopPage main #feature ul.flex_LRTB li figure figcaption div span {
    font-size: 2.2rem;
  }
  #TopPage main #feature ul.flex_LRTB li figure figcaption::before, #TopPage main #feature ul.flex_LRTB li figure figcaption::after {
    font-size: 0.8rem;
    line-height: 4.5rem;
  }
  #TopPage main #feature ul.flex_LRTB li dl {
    width: 48.4rem;
    padding: 4.5rem 3.8rem 3rem 4.9rem;
    margin: -13rem 0 0 auto;
    border-radius: 2rem;
    background-size: auto;
  }
  #TopPage main #feature ul.flex_LRTB li dl dt {
    font-size: 2.8rem;
    margin-bottom: 2.3rem;
    letter-spacing: 0.392rem;
  }
  #TopPage main #feature ul.flex_LRTB li dl dd p {
    line-height: 3.2rem;
  }
  #TopPage main #medical {
    padding-top: 15rem;
    margin-bottom: 0;
  }
  #TopPage main #medical::before {
    height: 27.3rem;
    width: 100%;
    background-size: auto;
  }
  #TopPage main #medical h2 {
    margin-bottom: 6.5rem;
  }
  #TopPage main #medical ul.flex_LRTB {
    border-radius: 4rem;
  }
  #TopPage main #medical ul.flex_LRTB li {
    width: 29.43rem;
    padding: 4rem 0 15.5rem;
    position: relative;
    border-right: 0.1rem solid #ccc;
  }
  #TopPage main #medical ul.flex_LRTB li.respiratory {
    border-right: none;
  }
  #TopPage main #medical ul.flex_LRTB li:nth-child(n+5) {
    border-bottom: none;
  }
  #TopPage main #medical ul.flex_LRTB li figure {
    margin-bottom: 2.8rem;
  }
  #TopPage main #medical ul.flex_LRTB li figure img {
    width: auto;
  }
  #TopPage main #medical ul.flex_LRTB li figure figcaption {
    font-size: 2.8rem;
    line-height: 3.2rem;
    letter-spacing: 0.112rem;
    margin-top: 1.4rem;
    white-space: nowrap;
  }
  #TopPage main #medical ul.flex_LRTB li p {
    padding-left: 2.7rem;
    padding-right: 2.7rem;
    margin-bottom: 2.8rem;
  }
  #TopPage main #medical ul.flex_LRTB li a {
    position: absolute;
    bottom: 5.3rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 23rem;
    height: 7.2rem;
    line-height: 7.2rem;
    font-size: 2.2rem;
    letter-spacing: 0.07rem;
    padding: 0;
    transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  }
  #TopPage main #medical ul.flex_LRTB li a:hover {
    transform: translateY(-0.5rem);
  }
  #TopPage main #medical ul.flex_LRTB li a::after {
    right: 1.2rem;
  }
  #TopPage main #medical ul.flex_LRTB li.checkup a {
    width: 27.6rem;
    padding-right: 1rem;
  }
  #TopPage main #medical ul.flex_LRTB li.visit a {
    padding-right: 1rem;
  }
  #TopPage main #favor {
    padding: 9rem 0 12rem;
  }
  #TopPage main #favor dl {
    width: 91.6rem;
    padding: 3rem 5rem 3.4rem;
    margin: auto;
    box-shadow: 1.5rem 1.5rem 0 var(--clr_main);
    border-radius: 2rem;
  }
  #TopPage main #favor dl dt {
    font-size: 2.6rem;
    line-height: 3.7rem;
    margin-bottom: 2.2rem;
  }
  #TopPage main #favor dl dt::before, #TopPage main #favor dl dt::after {
    font-size: 1.4rem;
  }
  #TopPage main #favor dl dd {
    line-height: 3.2rem;
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower .breadcrumb {
  display: flex;
  margin: 6rem 1rem 1rem;
  justify-content: flex-start;
}
#lower .breadcrumb li a {
  color: var(--clr_link);
  border: none;
}
#lower .breadcrumb li:first-child::after {
  content: "2";
  font-family: fontello;
  padding: 0 1rem;
}
#lower main {
  margin-top: 1rem;
  position: relative;
}
#lower main section {
  margin: 0 auto 4rem;
  padding: 2rem 0 0;
}
#lower main section section {
  margin: 3.5rem auto;
}
#lower main section section section {
  margin: 3rem auto;
}
#lower main section section section section {
  margin: 2.5rem auto;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  font-weight: 500;
  word-break: auto-phrase;
  font-family: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif, serif;
}
#lower h1 {
  background: url(../img/h1.jpg) no-repeat center;
  background-size: cover;
  margin: 0 0 2rem;
  font-size: 2rem;
  line-height: 1.2;
  padding: 3.5rem 0 10rem;
  color: #fff;
  position: relative;
  text-align: center;
}
#lower h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 12rem;
  background: url(../img/h1_wave_SP.svg) no-repeat center bottom;
  background-size: contain;
  position: absolute;
  bottom: -2.5rem;
  left: 0;
  right: 0;
}
#lower h1 span {
  display: block;
  width: fit-content;
  background: var(--clr_main);
  padding: 1rem 2rem;
  max-width: 90%;
  margin: auto;
  border-radius: 2rem;
  box-shadow: 0.6rem 0.6rem 0 #fff;
  position: relative;
}
#lower h1 span::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/h1_orn.png) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: -2rem;
  left: 0;
  right: 0;
  margin: auto;
}
#lower h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
  color: var(--clr_main);
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#lower h2:before, #lower h2:after {
  content: "";
  display: block;
  width: 4rem;
  height: 2rem;
  background: url(../img/h2.png) no-repeat center;
  background-size: contain;
}
#lower h2::after {
  transform: scale(-1, 1);
}
#lower h2 span {
  max-width: calc(100% - 9rem);
}
#lower h3 {
  margin: 0 0 2rem;
  color: #fff;
  background: var(--clr_main);
  font-size: 1.8rem;
  padding: 0.5rem 2rem 0.5rem 1rem;
  position: relative;
  border-radius: 0.5rem;
}
#lower h3::after {
  position: absolute;
  width: 6rem;
  height: 5rem;
  top: -2.5rem;
  right: 0.2rem;
  background: url(../img/h3.png) no-repeat top right;
  background-size: contain;
  content: "";
}
#lower h4 {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  padding: 0 0 0.5rem;
  color: var(--clr_sub14);
  border-bottom: 0.2rem solid #eee;
  position: relative;
}
#lower h4::after {
  content: "";
  display: block;
  background: var(--clr_main);
  width: 8.35%;
  height: 0.2rem;
  position: absolute;
  left: 0;
  bottom: -0.2rem;
}
#lower h5 {
  margin: 0rem 0 2rem;
  font-size: 1.4rem;
  padding: 0.1rem 0.5rem;
  border-bottom: var(--clr_sub2) dotted 0.1rem;
  color: var(--clr_sub2);
}
#lower h6 {
  margin: 0rem 0 2rem;
  font-size: 1.4rem;
  padding: 0.1rem 0.5rem;
  border-bottom: var(--clr_main) dotted 0.1rem;
  color: var(--clr_main);
}
#lower {
  /* main   -------------------------------------- */
}
#lower main {
  display: block;
}
#lower main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
  word-break: break-all;
}
#lower main li,
#lower main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  #lower .breadcrumb {
    margin: 8rem auto 0;
    width: 1260px;
  }
  #lower main {
    padding-bottom: 0;
    margin: 1rem auto;
    width: 1260px;
  }
  #lower main > .wrap {
    width: 108rem;
  }
  #lower main > .wrap > .inner {
    margin-bottom: 10rem;
  }
  #lower main > .wrap section {
    margin: 7rem auto 7rem;
  }
  #lower main > .wrap section section {
    margin: 6rem 0;
  }
  #lower main > .wrap section section section {
    margin: 5rem 0;
  }
  #lower main > .wrap section section section section {
    margin: 4rem 0;
  }
  #lower h1 {
    font-size: 4rem;
    margin: 0 auto 0;
    line-height: 1;
    display: grid;
    place-items: center;
    position: relative;
    height: 51rem;
    text-align: right;
    padding-bottom: 22.5rem;
  }
  #lower h1 span {
    padding: 2.5rem 3.5rem;
  }
  #lower h1 span::after {
    width: 4.5rem;
    height: 4.5rem;
    position: absolute;
    bottom: -3.5rem;
  }
  #lower h1::after {
    width: 100%;
    background: url(../img/h1_wave_PC.svg) no-repeat center top;
    height: 27rem;
  }
  #lower h2 {
    font-size: 3.8rem;
    margin: 0 0 4rem;
    gap: 2rem;
  }
  #lower h2::before, #lower h2::after {
    width: 6.5rem;
    height: 2.5rem;
    background-size: contain;
  }
  #lower h2 + section {
    margin-top: 0 !important;
  }
  #lower h3 {
    font-size: 3.2rem;
    margin: 0 0 3rem;
  }
  #lower h3 + section {
    margin-top: 0 !important;
  }
  #lower h3::after {
    height: 7.6rem;
    width: 8.2rem;
    top: -3.5rem;
  }
  #lower h4 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    padding: 0 0 0.8rem;
  }
  #lower h4 + section {
    margin-top: 0 !important;
  }
  #lower h5 {
    font-size: 2rem;
    margin: 0 0 2.5rem;
    padding: 0.2rem 1rem;
  }
  #lower h5 + section {
    margin-top: 0 !important;
  }
  #lower h6 {
    font-size: 1.8rem;
    margin: 0 0 2.5rem;
    padding: 0.1rem 0 0.1rem 2.6rem;
  }
}
.tbl_scroll {
  overflow-x: scroll;
}

.tbl_def {
  width: 100%;
  border-right: 1px solid var(--clr_main);
  border-bottom: 1px solid var(--clr_main);
  line-height: 1.3em;
  border-top: 1px solid var(--clr_main);
  border-left: 1px solid var(--clr_main);
  border-collapse: collapse;
}
.tbl_def thead {
  background: var(--clr_main);
  color: var(--clr_sub3);
}
.tbl_def thead th {
  padding: 1% 1% 0.8% 1%;
  border: 1px solid var(--clr_sub3);
}
.tbl_def tbody th {
  background: var(--clr_sub3);
}
.tbl_def tbody th,
.tbl_def tbody td {
  padding: 1% 1% 0.8% 1%;
  border: 1px solid var(--clr_main);
}

.tbl_price {
  width: 100%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  line-height: 1.3em;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-collapse: collapse;
}
.tbl_price tr {
  border-bottom: 1px solid #ccc;
}
.tbl_price tr th {
  text-align: left;
  font-size: 94%;
  padding: 1% 0% 0.8% 2%;
}
.tbl_price tr td {
  padding: 1% 2% 0.8% 2%;
  border-left: 1px solid #ccc;
}
.tbl_price thead {
  background: var(--blue);
  color: #fff;
}
.tbl_price thead th {
  text-align: center;
  font-weight: bold;
}
.tbl_price tbody th {
  background: var(--blue3);
}
.tbl_price tbody td {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  #lower .tbl_scroll {
    overflow-x: inherit;
  }
  #lower .tbl_def th,
  #lower .tbl_def td {
    padding: 1.5rem;
  }
}
#lower #checkup .dl_flex dt, #lower #checkup .dl_flex dd {
  width: 100%;
}

@media screen and (min-width: 48em), print {
  #lower #checkup .dl_flex dt {
    width: 13em;
    text-align: center;
  }
  #lower #checkup .dl_flex dd {
    width: calc(100% - 13em);
  }
}
/* Slider */
#lower .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
#lower .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
#lower .slick-list:focus {
  outline: none;
}
#lower .slick-list.dragging {
  cursor: pointer;
}
#lower .slick-slider .slick-track,
#lower .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#lower .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#lower .slick-track:before,
#lower .slick-track:after {
  content: "";
  display: table;
}
#lower .slick-track:after {
  clear: both;
}
#lower .slick-loading .slick-track {
  visibility: hidden;
}
#lower .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
#lower [dir=rtl] .slick-slide {
  float: right;
}
#lower .slick-slide img {
  display: block;
}
#lower .slick-slide.slick-loading img {
  display: none;
}
#lower .slick-slide.dragging img {
  pointer-events: none;
}
#lower .slick-initialized .slick-slide {
  display: block;
}
#lower .slick-loading .slick-slide {
  visibility: hidden;
}
#lower .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
#lower .slick-arrow.slick-hidden {
  display: none;
}
#lower *:focus:not(:focus-visible),
#lower *::before:focus:not(:focus-visible),
#lower *::after:focus:not(:focus-visible) {
  outline: none;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 6.5rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.4rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}

.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--clr_main);
  line-height: 1.4;
}

.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}

.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}

.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}

.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--clr_main);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clr_main);
  z-index: 1;
}

.slick-arrow::before {
  font-size: 1.2rem;
}

.slick-arrow.slick-prev {
  left: -2.6rem;
}

.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}

.slick-arrow.slick-next {
  right: -2.6rem;
}

.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\f006";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--clr_main);
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    color: var(--clr_main);
    background: #fff;
    opacity: 1;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}

.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}

.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_main);
}

.slick-dots li button:hover,
.slick-dots li button:focus-visible {
  opacity: 0.8;
}

.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
/* /_lower.scss　出力ここまで */

/*# sourceMappingURL=style.css.map */
