@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
:root {
  /*基本背景色PC*/
  --clr_bg:#FFF;
  /*基本文字色*/
  --clr_txt: #222;
  /*リンク色*/
  --clr_link:#A6C361;
  --clr_linkH:#58A04B;
  /*ポイントカラーメイン*/
  --clr_main:#58A04B;
  /*ポイントカラーサブ*/
  --clr_sub1:#A6C361;
  --clr_sub2:#E5EDD1;
  --clr_sub3:#707070;
  --clr_sub4:#EDF5EC;
  --clr_sub5:#FAF6EC;
  --clr_sub6:#F3F3F3;
  --clr_sub7:#654220;
  --clr_sub8:#9FC898;
  --clr_sub9:#F4F9F3;
  --clr_sub10:#ccc;
  --clr_sub11:#36622E;
  /*赤*/
  --red:#ee2a31;
  /*緑*/
  --green:#58A04B;
  /*橙*/
  --orange:#FACA72;
  /*青*/
  --blue:#2a93ee;
  --blue_light:#4dabf7;
}

/* _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 {
  -webkit-box-sizing: border-box;
          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]) {
  -webkit-text-decoration-skip: ink;
          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;
  -webkit-appearance: none;
     -moz-appearance: none;
          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;
  -o-object-fit: contain;
     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;
}

@media screen and (min-width: 48em), print {
  .txt_c_pc {
    text-align: center !important;
  }
}
.txt_l {
  text-align: left !important;
}

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

.bold {
  font-weight: bold;
}

.underline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff38b));
  background: linear-gradient(transparent 60%, #fff38b 60%);
}

.font_s {
  font-size: smaller;
}

.font_l {
  font-size: larger;
}

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

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

.fc_red {
  color: var(--red) !important;
}

.fc_pink {
  color: var(--pink) !important;
}

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

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

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

@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: 35rem;
  }
}
.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;
  }
}
/* マージン -------------------------------------- */
.mt_00 {
  margin-top: 0 !important;
}

.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;
}

/* margin PC -------------------------------------- */
@media screen and (min-width: 48em), print {
  .mb_05_pc {
    margin-bottom: 0.5rem !important;
  }
  .mb_10_pc {
    margin-bottom: 1rem !important;
  }
  .mb_15_pc {
    margin-bottom: 1.5rem !important;
  }
  .mb_20_pc {
    margin-bottom: 2rem !important;
  }
  .mb_25_pc {
    margin-bottom: 2.5rem !important;
  }
  .mb_30_pc {
    margin-bottom: 3rem !important;
  }
  .mb_35_pc {
    margin-bottom: 3.5rem !important;
  }
  .mb_40_pc {
    margin-bottom: 4rem !important;
  }
  .mb_45_pc {
    margin-bottom: 4.5rem !important;
  }
  .mb_50_pc {
    margin-bottom: 5rem !important;
  }
}
.mlr_auto {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 48em), print {
  .mlr_auto_pc {
    margin-left: auto;
    margin-right: auto;
  }
}
/* 幅 -------------------------------------- */
.w_10 {
  width: 10% !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 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex_LRTB.j_center,
.flex_RLTB.j_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex_LRTB.j_start,
.flex_RLTB.j_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (min-width: 48em), print {
  /* PCで左→右に配置／SPで上→下に配置 */
  .flex_LRTB {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_LRTB.half {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_LRTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_LRTB.half > li {
    margin-bottom: 1rem;
  }
  .flex_LRTB.half > section {
    margin: 0 !important;
  }
  .flex_LRTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_LRTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* PCで右→左に配置／SPで上→下に配置 */
  .flex_RLTB {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_RLTB.half {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        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%;
  }
}
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
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;
  text-indent: -0.5em;
}
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_txt);
  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_sub1);
}

/*　● インライン -------------------------------------- */
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: var(--clr_main);
}

/* 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: "\f006";
  padding-right: 0.3rem;
  font-weight: bold;
  color: var(--clr_link);
}
ul.list_lnk a {
  color: var(--clr_link);
}

/* ページ内リンク -------------------------------------- */
ul.list_pl li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 8px;
}
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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  ul.list_pl li {
    width: 33%;
  }
  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: "\e800";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_main);
}

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

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow > li {
  border: 0.2rem solid var(--clr_main);
  border-radius: 0.5rem;
  margin-bottom: 4rem;
  padding: 1rem 1rem;
  position: relative;
}
ol.list_flow > li dt {
  font-size: 120%;
  margin-bottom: 0.5rem;
  color: var(--clr_main);
}
ol.list_flow > li *:last-child {
  margin-bottom: 0 !important;
}
ol.list_flow > li::after {
  background: var(--clr_main);
  content: "";
  display: block;
  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 > li {
    padding: 3rem 3.5rem 3.5rem;
    margin-bottom: 9rem;
  }
  ol.list_flow > li::after {
    width: 20rem;
    height: 3.3rem;
    bottom: -6.5rem;
  }
  ol.list_flow > li dt {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.dl_career dd {
  margin: 0 0 1em 5px;
}

@media screen and (min-width: 48em), print {
  .dl_career {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dl_career dt {
    width: 9em;
  }
  .dl_career dd {
    width: calc(100% - 10em);
  }
}
/* dtシンプル -------------------------------------- */
.dl_sim {
  margin: 0 auto 1.5rem;
}
.dl_sim > dt {
  font-weight: bold;
  color: var(--clr_main);
  margin-bottom: 0.7rem;
  font-size: 110%;
}
.dl_sim > dd {
  margin-bottom: 2.5rem;
}

/* dtに二重線 -------------------------------------- */
.dl_def {
  margin: 2rem auto;
}
.dl_def > dt {
  border-bottom: double 3px var(--clr_main);
  margin-bottom: 0.7rem;
  font-size: 110%;
}
.dl_def > dd {
  margin-bottom: 1.5rem;
}
.dl_def > dd ul.list_maru li::before {
  color: var(--clr_sub1);
}

.dl_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-left: 0.1rem solid #ccc;
  border-right: 0.1rem solid #ccc;
  border-top: 0.1rem solid #ccc;
  padding: 0;
}
.dl_flex dt,
.dl_flex dd {
  border-bottom: 0.1rem solid #ccc;
  margin: 0;
  padding: 0.5rem;
}
.dl_flex dt {
  background: var(--clr_sub3);
}

@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: 20px;
  background: var(--clr_sub2);
  border-radius: 0.5rem;
}
.box1 > dt,
.box2 > dt,
.box3 > dt {
  border-bottom: var(--clr_main) dotted 2px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-weight: bold;
}
.box1 > dd,
.box2 > dd,
.box3 > dd {
  margin: 10px;
}
.box1 > dd dt,
.box2 > dd dt,
.box3 > dd dt {
  color: var(--clr_main);
  font-weight: bold;
}
.box1 > *:last-child,
.box2 > *:last-child,
.box3 > *:last-child {
  margin-bottom: 0;
}

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

.box3 {
  background: #fbfbfb;
  border: 0.2rem solid #d4d4d4;
}

@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 {
  border-bottom: 1px solid var(--clr_sub3);
  color: var(--clr_sub3);
}

a[href^="tel:"] {
  border-bottom: none;
}

a:hover img {
  opacity: 0.8;
}

a.btn {
  border-radius: 3rem;
  background: #fff;
  color: var(--clr_main);
  padding: 1rem 4rem;
  text-align: center;
  margin: 5px auto;
  width: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: var(--clr_main) 0.1rem solid;
  -webkit-transition: background 1s, color 1s;
  transition: background 1s, color 1s;
  line-height: 1;
  position: relative;
}
a.btn:hover {
  border: var(--clr_main) 0.1rem solid;
  background: var(--clr_main);
  color: #fff;
}
a.btn::after {
  content: "\f006";
  font-family: fontello;
  position: absolute;
  right: 1rem;
}

@media screen and (min-width: 48em), print {
  a.btn {
    padding: 1.5rem 6rem;
  }
}
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: "fontello";
  src: url("fontello/font/fontello.eot");
  src: url("fontello/font/fontello.eot#iefix") format("embedded-opentype"), url("fontello/font/fontello.woff2") format("woff2"), url("fontello/font/fontello.woff") format("woff"), url("fontello/font/fontello.ttf") format("truetype"), url("fontello/font/fontello.svg#fontello") format("svg");
}
.demo-icon {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@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");
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 2.7777777778vw;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  font-optical-sizing: auto;
  -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;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%; /* ベースを10pxに */
    min-width: 1220px;
  }
  body {
    min-width: 1220px;
    font-size: 1.8rem;
    font-weight: 500;
  }
}
/* 全体の横幅設定  -------------------------------------- */
.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: 1220px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  section {
    margin-bottom: 5rem;
  }
  .inner {
    padding: 0;
  }
  main {
    margin-top: 6rem;
  }
}
/* header  -------------------------------------- */
header {
  z-index: 1000;
}
header::before {
  content: "";
  display: block;
  width: 100%;
  height: 15rem;
  background: var(--clr_sub5);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
header .logo {
  width: calc(100% - 8rem);
  padding: 1rem 0 0.5rem 0.5rem;
  margin: 0 auto 0 0;
}
header .logo img {
  width: 100%;
}
header .h_right {
  margin: 0 auto 1rem;
}
header .h_right ul {
  margin-bottom: 0;
}
header .h_right li {
  margin-bottom: 0;
}
header .h_right .h_tel {
  color: var(--clr_main);
  font-size: 1.8rem;
  letter-spacing: 0.09rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
header .h_right .h_tel::before {
  font-family: fontello;
  content: "\e80d";
}
header .h_right .h_tel a {
  color: var(--clr_main);
}
header .h_right .h_address {
  text-align: center;
  margin-bottom: 0.5rem;
}
header .h_right .h_access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.2;
}

/* ハンバーガーメニュー  -------------------------------------- */
.js-btn {
  margin: 0;
  padding: 0.8rem 0.8rem;
  border: 0;
  border-radius: 0;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  top: 0;
  right: 0;
  /* ボタンの大きさ  */
  width: 4.5rem;
  height: 4.5rem;
  /* 最前面に */
  z-index: 100;
  background-color: var(--clr_main);
  border: none;
  position: fixed;
}

.btn-txt {
  display: block;
  text-align: center;
  width: 100%;
  padding-top: 1.6rem;
  font-size: 1.2rem;
  color: #fff;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  display: block;
  position: relative; /* バーガー線の位置基準として設定 */
  width: 100%; /* 線の長さと高さ */
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/****** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  left: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.btn-line::before {
  /* 上の線の位置 */
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
}

.btn-line::after {
  /* 下の線の位置 */
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
}

/***** メニューオープン時 *****/
.btn-line.open {
  background-color: transparent; /* 真ん中の線を透明に */
}

.btn-line.open::before,
.btn-line.open::after {
  content: "";
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.btn-line.open::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); /* 上の線を傾ける */
}

.btn-line.open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); /* 下の線を傾ける */
}

@media screen and (min-width: 48em), print {
  .js-btn {
    display: none;
  }
}
#nav {
  width: 100%;
  padding: 2rem 0 0;
  background: var(--clr_sub4);
  position: absolute;
  right: -100vw;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 99;
  position: fixed;
  height: 100%;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
}
#nav a {
  color: var(--clr_txt);
  text-decoration: none;
}
#nav ul.gnav > li {
  margin: 2rem 0;
}
#nav ul.gnav > li.reserve {
  display: none;
}
#nav ul.gnav > li a {
  padding: 0 0 0 1.1em;
  display: block;
  position: relative;
  line-height: 1.2;
}
#nav ul.gnav + a {
  display: none;
}
#nav a::before {
  font-family: fontello;
  content: "\f006";
  padding-right: 0.2rem;
  text-align: center;
}
#nav .dropdown > a {
  margin: 1.5rem 0 0;
}
#nav .dropdown > a::before,
#nav .dropdown .subsub::before {
  content: "\f004";
}
#nav .dropdown > a.close::before {
  content: "\f005";
}
#nav .dropdown ul {
  margin-left: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#nav .dropdown ul li {
  margin: 1.5rem 0 2rem;
  width: 50%;
}
#nav .dropdown ul li a {
  margin: 0;
}
#nav > a {
  display: none;
}

#nav.open {
  right: 0;
}

@media screen and (min-width: 48em), print {
  header {
    padding: 0 0;
    width: 100%;
    min-width: 1220px;
    margin: 0 auto 0;
    padding: 0;
  }
  header::before {
    height: 31rem;
  }
  header > .wrap {
    margin: 0 auto;
    padding: 2rem 1rem 2.5rem 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 16rem;
  }
  header > .wrap .logo {
    height: auto;
    width: 51rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .logo img {
    width: 100%;
  }
  header > .wrap .h_right {
    width: 58rem;
    margin: 0 0 0 auto;
  }
  header > .wrap .h_right > ul {
    margin: 0;
    line-height: 2.6rem;
  }
  header > .wrap .h_right > ul > li {
    margin: 0;
    padding: 1rem 0;
  }
  header > .wrap .h_right > ul > li:first-child {
    padding: 1rem 0 2rem;
  }
  header > .wrap .h_right > ul > li ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 0;
  }
  header > .wrap .h_right > ul > li ul li {
    margin-bottom: 0;
  }
  header > .wrap .h_right > ul > li .h_tel {
    color: var(--clr_main);
    font-size: 3.6rem;
    letter-spacing: 0.09rem;
    line-height: 4rem;
  }
  header > .wrap .h_right > ul > li .h_tel::before {
    font-family: fontello;
    content: "\e80d";
  }
  header > .wrap .h_right > ul > li .h_tel a {
    color: var(--clr_main);
  }
  header > .wrap .h_right > ul > li.h_access {
    letter-spacing: 0.045rem;
  }
  header > .wrap .h_right > ul > li:first-child {
    border-bottom: 0.1rem solid var(--clr_main);
  }
  header > .wrap .h_right > ul > li:first-child ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.8rem;
  }
  #nav {
    padding: 0 0 3rem;
    margin: 0 auto;
    font-weight: normal;
    position: static;
    overflow: visible !important;
    -webkit-transition: none;
    transition: none;
    display: block;
    width: 100%;
    height: auto;
    background-color: transparent;
    line-height: 1;
  }
  #nav ul.gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
    width: 1220px;
    margin: 0 auto;
    letter-spacing: normal;
    text-align: center;
    width: 100%;
  }
  #nav ul.gnav > li {
    margin: 0;
    padding: 0;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    border-right: 0.1rem dashed var(--clr_sub3);
    width: 16.6666666667%;
  }
  #nav ul.gnav > li:first-child {
    border-left: 0.1rem dashed var(--clr_sub3);
  }
  #nav ul.gnav > li::before {
    display: none;
  }
  #nav ul.gnav > li > a {
    border-radius: 1rem;
    height: 4rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 4rem;
    line-height: 1;
    color: var(--clr_sub3);
    -webkit-transition: color 0.3s, background-color 0.3s;
    transition: color 0.3s, background-color 0.3s;
  }
  #nav ul.gnav > li > a::before {
    display: none;
  }
  #nav ul.gnav > li > a:hover {
    background: var(--clr_sub1);
    color: #fff;
  }
  #nav ul.gnav > li.dropdown {
    margin: 0;
  }
  #nav ul.gnav > li.dropdown > a {
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown > a::after {
    font-family: fontello;
    content: "\f004";
    padding: 0.2rem 0 0 0.5rem;
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    margin: 0;
    z-index: 100;
    top: 4.8rem;
    overflow: hidden;
    width: 40rem;
    border-radius: 1rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    margin: 0;
    padding: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    text-align: left;
    background: var(--clr_sub4);
    color: var(--clr_txt);
    margin: 0;
    padding: 1rem 0 1rem 2rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    background: var(--clr_sub1);
    color: #fff;
  }
  #nav.fixed {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 0;
  }
}
/* 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 {
  margin: 5rem 0 0;
  padding: 3rem 0 3rem;
  line-height: 1.4;
  position: relative;
  background: url(../img/overview_bg.jpg) no-repeat center;
  background-size: cover;
}
#overview .wrap {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
}
#overview .logo {
  margin-bottom: 2rem;
}
#overview .logo img {
  width: 25rem;
  display: block;
  margin: 0 auto;
}
#overview .overviewL {
  max-width: 37rem;
  margin: 3rem auto 1rem;
}

p.o_tel {
  text-align: center;
  font-size: 200%;
  border: 0.2rem solid var(--clr_main);
  background: #fff;
  border-radius: 3rem;
  margin: 0 0 1rem;
}
p.o_tel span::before {
  font-family: fontello;
  color: var(--clr_main);
  content: "\e80d";
  padding-right: 1rem;
}
p.o_tel span a {
  color: var(--clr_txt);
}

.dl_overview {
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.dl_overview > dt {
  padding: 0.7rem 0;
  border-top: 0.2rem solid var(--clr_sub8);
  width: 6em;
  text-align: center;
}
.dl_overview > dd {
  width: calc(100% - 6em);
  padding: 0.7rem 0;
  border-top: 0.2rem solid #ccc;
  word-break: auto-phrase;
}

.btn_reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  border-radius: 3rem;
  width: 100%;
  height: 4rem;
  margin: 2rem auto;
  background: var(--clr_main);
  color: #fff;
}
.btn_reserve::before {
  font-family: fontello;
  content: "\e811";
}

.gmap {
  height: 29rem;
  display: block;
  margin-bottom: 1rem;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 6rem 0;
    margin: 10rem 0 0;
  }
  #overview .wrap {
    width: 120rem;
    padding: 4rem 6rem 6rem;
    border-radius: 3rem;
  }
  #overview .logo {
    width: 51rem;
    margin: 0 auto 4rem;
  }
  #overview .logo img {
    width: 100%;
  }
  #overview .overviewL {
    width: 51rem;
    max-width: none;
    margin: 0;
  }
  #overview p.o_tel {
    margin-bottom: 2rem;
    padding: 0.11rem;
  }
  #overview .overviewR {
    width: 51rem;
  }
  .dl_overview {
    margin-bottom: 3rem;
  }
  .dl_overview > dt {
    width: 10rem;
    padding: 1.85rem 0;
  }
  .dl_overview > dd {
    width: calc(100% - 10rem);
    padding: 1.85rem 0 1.85rem 1rem;
  }
  .gmap {
    margin: 0 0;
    height: 65.3rem;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time, .tbl_doctor {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 1rem 1rem;
}
.tbl_time + div.caption, .tbl_doctor + div.caption {
  text-align: left;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}
.tbl_time + div.caption ul, .tbl_doctor + div.caption ul {
  margin-bottom: 0;
}
.tbl_time + div.caption ul li, .tbl_doctor + div.caption ul li {
  margin-bottom: 0;
}
.tbl_time + div.caption dl, .tbl_doctor + div.caption dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tbl_time + div.caption dl dt, .tbl_doctor + div.caption dl dt {
  width: 4em;
  text-align: center;
  background-color: var(--clr_sub2);
  padding: 0.2rem 0;
}
.tbl_time + div.caption dl dd, .tbl_doctor + div.caption dl dd {
  width: calc(100% - 6em);
}
.tbl_time thead th, .tbl_doctor thead th {
  background: var(--clr_main);
  padding: 0.7rem 0;
  font-weight: normal;
  color: #fff;
}
.tbl_time tbody, .tbl_doctor tbody {
  background: var(--clr_sub4);
}
.tbl_time tbody tr:first-child th,
.tbl_time tbody tr:first-child td, .tbl_doctor tbody tr:first-child th,
.tbl_doctor tbody tr:first-child td {
  border-bottom: 0.1rem solid #ccc;
}
.tbl_time tbody th,
.tbl_time tbody td, .tbl_doctor tbody th,
.tbl_doctor tbody td {
  padding: 0.7rem 0;
  vertical-align: middle;
  font-weight: normal;
  letter-spacing: 0.02em;
}
.tbl_time tbody td, .tbl_doctor tbody td {
  color: var(--clr_main);
  position: relative;
  width: 2.25em;
}
.tbl_time tbody td:last-child, .tbl_doctor tbody td:last-child {
  width: 3.2em;
}
.tbl_time tbody td sup, .tbl_doctor tbody td sup {
  position: absolute;
  top: 0.2rem;
  left: 63%;
}

.tbl_doctor thead th {
  background: var(--clr_sub11);
}
.tbl_doctor tbody td {
  color: var(--clr_sub11);
}
.tbl_doctor tbody td span {
  font-size: smaller;
  display: block;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tbl_time + div.caption, .tbl_doctor + div.caption {
    margin-top: 1rem;
    margin-bottom: 4rem;
    letter-spacing: normal;
  }
  .tbl_time thead th, .tbl_doctor thead th {
    padding: 0.7rem 0;
  }
  .tbl_time tbody th, .tbl_doctor tbody th {
    width: 14rem;
    padding: 1.6rem 0;
  }
  .tbl_time tbody td, .tbl_doctor tbody td {
    padding: 1.6rem 0;
    width: 4rem;
  }
  .tbl_time tbody td:last-child, .tbl_doctor tbody td:last-child {
    width: 5rem;
  }
}
/* ページトップ -------------------------------------- */
.floating_bnr {
  display: none;
}

.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--clr_sub4);
  margin: 0;
  width: 100%;
  height: 5rem;
  padding: 0.1rem 0;
  text-align: center;
  z-index: 100;
  letter-spacing: normal;
  font-size: 1.6rem;
}
.sp_bottom li {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  position: relative;
  margin: 0;
  height: 100%;
}
.sp_bottom li:nth-of-type(odd) a {
  background: var(--clr_main);
  color: #fff;
}
.sp_bottom li:nth-of-type(even) a {
  color: var(--clr_main);
  background: var(--clr_sub2);
}
.sp_bottom li a.int_neuro_rsv {
  background: var(--blue_light);
  color: #fff;
}
.sp_bottom li#pageup {
  width: 4rem;
}
.sp_bottom li a {
  padding: 1rem 0;
  color: #fff;
  background: var(--clr_main);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  gap: 1rem;
}

/*
#pageup {
    position: fixed;
    bottom: -15rem;
    right: 0.5rem;
    z-index: 1000;
    cursor: pointer;
    transition: 0.8s;
    display: block;
    width: 4rem;
    height: 4rem;
    a {
        width: 4rem;
        height: 4rem;
        background: #fff;
        color: var(--clr_sub2);
        border-radius: 50%;
        border: 0.1rem solid var(--clr_sub2);
        display: grid;
        place-items: center;
        font-size: 2rem;
    }

    &.block {
        bottom: 5rem;
    }
}
*/
@media screen and (min-width: 48em), print {
  .floating_bnr {
    position: fixed;
    z-index: 100;
    top: 200px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .floating_bnr li {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: upright; /* 文字の向きを正しくする */
  }
  .floating_bnr li:nth-of-type(odd) a {
    color: var(--clr_main);
    background: var(--clr_sub2);
  }
  .floating_bnr li:nth-of-type(even) a {
    background: var(--clr_main);
    color: #fff;
  }
  .floating_bnr li a {
    display: block;
    border-radius: 10px 0 0 10px;
    padding: 2.5rem 1.5rem;
    font-size: 2.4rem;
    text-align: center;
  }
  .floating_bnr li a.int_neuro_rsv {
    background: var(--blue_light);
    color: #fff;
  }
  .sp_bottom {
    background-color: transparent;
    width: 0;
    height: 0;
  }
  .sp_bottom li:first-child {
    display: none;
  }
  #pageup {
    position: fixed;
    bottom: -15rem;
    right: 0.5rem;
    z-index: 1000;
    cursor: pointer;
    display: block;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    width: 6rem;
    height: 6rem;
  }
  #pageup a {
    background: var(--clr_sub1);
    color: #fff;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 3rem;
    width: 6rem;
    height: 6rem;
  }
  #pageup.block {
    bottom: 5rem;
  }
}
/* footer -------------------------------------- */
footer {
  background: var(--clr_sub4);
}
footer div.wrap {
  display: none;
}

address {
  background: var(--clr_main);
  padding: 0.8rem 0 6rem;
  font-style: normal;
  text-align: center;
  line-height: 1;
}
address a {
  color: #fff;
}

@media screen and (min-width: 48em), print {
  footer {
    display: block;
    padding: 0;
    margin: 0 auto 0;
  }
  footer div.wrap {
    display: block;
    padding: 2rem 0 1.2rem;
    width: 90rem;
  }
  footer div.wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer div.wrap ul > li {
    padding: 0 0.5rem;
    margin: 0 0 1.8rem;
    border-right: 0.1rem solid var(--clr_sub3);
  }
  footer div.wrap ul > li a {
    padding: 0 0.5rem;
    color: var(--clr_txt);
  }
  footer div.wrap ul > li a:hover {
    color: var(--clr_main);
  }
  footer div.wrap ul > li.dropdown {
    display: none;
  }
  footer div.wrap ul > li:last-child, footer div.wrap ul > li.numbness {
    border-right: none;
  }
  address {
    margin: 0 auto;
    padding: 1.6rem 0;
  }
}
/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage .kv_wrap .wrap > * {
  border-radius: 1rem;
}
#TopPage #kv {
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: 17rem;
  z-index: 10;
  border-radius: 1rem; /* 角丸を#kvに付ける */
  overflow: hidden; /* 背景/中身を角丸でクリップ */
}
#TopPage .kv_wrap {
  position: relative;
}
#TopPage .kv_txt {
  margin: 0;
  color: var(--clr_main);
  position: static;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  padding: 1rem 0;
}
#TopPage .kv_txt p {
  background: rgba(255, 255, 255, 0.5);
  display: inline;
  padding: 0 5px;
}
#TopPage .subject {
  position: static;
  width: 100%;
}
#TopPage .subject p {
  text-align: center;
  margin: 0;
  font-size: 1.6rem;
}
#TopPage .subject ul {
  width: 100%;
  margin: 0;
}
#TopPage .subject ul li {
  font-size: 1.6rem;
  color: #fff;
  border-radius: 3rem 0 3rem 0;
  padding: 1rem 0 1rem 2rem;
}
#TopPage .subject ul li li:last-child {
  padding: 1rem 0 0 2rem;
}
#TopPage .subject ul li:nth-child(1) {
  background: #58a04b;
}
#TopPage .subject ul li:nth-child(2) {
  background: rgb(77.75, 151.75, 84.75);
}
#TopPage .subject ul li:nth-child(3) {
  background: rgb(67.5, 143.5, 94.5);
}
#TopPage .subject ul li:nth-child(4) {
  background: rgb(57.25, 135.25, 104.25);
}
#TopPage .subject ul li:nth-child(5) {
  background: #2f7f72;
}
#TopPage main {
  margin: 0 0;
  overflow-x: hidden;
}
#TopPage main section {
  margin-bottom: 0;
}
#TopPage h2 {
  font-size: 2.4rem;
  margin: 0 0 2rem;
  text-align: center;
  font-weight: 500;
}
#TopPage h2 span {
  display: block;
  font-size: 1.2rem;
  color: var(--clr_main);
}
#TopPage #tt {
  padding: 3rem 0;
}
#TopPage #news {
  padding: 4rem 0;
}
#TopPage #news h2 {
  border-radius: 1rem;
  background: var(--clr_main);
  color: #fff;
  padding: 0.5rem;
}
#TopPage #news h2 span {
  color: #fff;
}
#TopPage #news .inner {
  background: var(--clr_sub9);
  padding: 1rem 1.5rem 2.5rem;
  border-radius: 1rem;
}
#TopPage #news dl {
  padding: 0 0;
  position: relative;
  border-bottom: 0.1rem dotted var(--clr_sub1);
}
#TopPage #news dl dt {
  position: relative;
  padding: 1rem 0.5rem 1rem 1.2em;
  font-size: 1.4rem;
  font-weight: 500;
  border-top: 0.1rem dotted var(--clr_main);
  margin-top: 0;
}
#TopPage #news dl dt:first-child {
  border-top: none;
  margin-top: 0;
}
#TopPage #news dl dt::before {
  font-family: fontello;
  color: var(--clr_main);
  content: "\e800";
  position: absolute;
  top: 1rem;
  left: 0;
  width: 1.6rem;
  height: 1.4rem;
}
#TopPage #news dl dt.close::before {
  content: "\e803";
}
#TopPage #news dl dt span {
  display: none;
}
#TopPage #news dl dd {
  padding-bottom: 1rem;
}
#TopPage #news dl dd:not(:nth-of-type(-n + 3)) {
  display: none;
}
#TopPage #symptoms {
  background: url(../img/symptoms_bg.png) no-repeat center var(--clr_sub9);
  background-size: cover;
  padding: 5rem 0;
}
#TopPage #symptoms ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#TopPage #symptoms ul li {
  width: 48%;
}
#TopPage #symptoms ul li a {
  width: 12rem;
  height: 12rem;
  background: url(../img/icon_amnesia.png) no-repeat center;
  font-weight: 500;
  background-size: contain;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 3rem;
  text-align: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  border: none;
  color: var(--clr_sub3);
  margin: auto;
}
#TopPage #symptoms ul li.dizzy a {
  background-image: url(../img/icon_dizzy.png);
}
#TopPage #symptoms ul li.headache a {
  background-image: url(../img/icon_headache.png);
}
#TopPage #symptoms ul li.numbness a {
  background-image: url(../img/icon_numbness.png);
}
#TopPage #symptoms ul li.trace a {
  background-image: url(../img/icon_trace.png);
}
#TopPage #symptoms ul li.weakness a {
  background-image: url(../img/icon_weakness.png);
}
#TopPage #treatment {
  padding: 0 0 3rem;
}
#TopPage #treatment .inner {
  margin-top: 4rem;
}
#TopPage #treatment .inner > div {
  margin-bottom: 2.5rem;
  border-radius: 1rem;
  padding: 2rem 1rem 1rem;
  background: var(--clr_sub2);
  position: relative;
  text-align: center;
}
#TopPage #treatment .inner > div dt {
  font-size: 167%;
  color: var(--clr_main);
  margin-bottom: 1.5rem;
}
#TopPage #treatment .inner > div::before {
  content: "";
  display: block;
  width: 4rem;
  height: 3.5rem;
  background: url(../img/treatment_ttl.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -2rem;
  right: 0;
  left: 0;
  margin: 0 auto;
}
#TopPage #treatment .inner > div dl {
  position: relative;
  z-index: 10;
}
#TopPage #treatment .inner > div .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
}
#TopPage #treatment .inner > div .point li {
  width: calc(33.3333333333% - 0.6rem);
  margin: 0 0 1em;
  text-align: center;
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#TopPage #treatment .inner > div .frm {
  margin: 0 0 1em;
  padding: 1rem;
}
#TopPage #treatment .inner > div .frm.arrow_over {
  margin: 2em 0 1em;
  position: relative;
}
#TopPage #treatment .inner > div .frm.arrow_over::before {
  position: absolute;
  top: -1em;
  left: 50%;
  margin-left: -0.5em;
  text-align: center;
  content: "\e811";
  font-family: fontello;
  font-size: 2.6rem;
  color: var(--clr_main);
}
#TopPage #treatment .inner > div .frm p {
  margin: 1rem 0 0;
}
#TopPage #treatment .inner > div .frm .lead {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
#TopPage #treatment .inner > div .frm strong {
  color: var(--clr_main);
}
#TopPage #treatment .inner > div .frm .list_maru {
  margin: 1rem 0 0 1.1em;
  text-align: left;
}
#TopPage #treatment .inner > div .frm .list_maru li {
  margin: 0 0 0.5em;
}
#TopPage #treatment .inner > div .point li, #TopPage #treatment .inner > div .frm {
  background: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
#TopPage #treatment .inner > div .lst_link {
  margin: 1.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#TopPage #treatment .inner > div .lst_link.single {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#TopPage #treatment .inner > div .lst_link:not(.wide) li {
  width: 48%;
}
#TopPage #treatment .inner > div .lst_link.wide li {
  width: 100%;
}
#TopPage #treatment .inner > div .lst_link.wide li a {
  font-size: 1.7rem;
  line-height: 5rem;
}
#TopPage #treatment .inner > div .lst_link.wide li a::before {
  font-family: fontello;
  font-size: 2.6rem;
  color: var(--clr_main);
  line-height: 5rem;
}
#TopPage #treatment .inner > div .lst_link li a {
  background: #fff;
  margin: auto;
  color: var(--clr_txt);
  border-radius: 2rem;
  border: none;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.1;
  height: 4.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.5rem;
  position: relative;
}
#TopPage #treatment .inner > div .lst_link li a::after {
  content: "\e4a2";
  font-family: fontello;
  line-height: 4.7rem;
  position: absolute;
  right: 0.5rem;
  color: var(--clr_sub1);
  top: 0.15rem;
  bottom: 0;
}
#TopPage #treatment .inner > div .link_hand {
  color: var(--clr_main);
  margin: 1.5rem 0 0;
  font-size: 1.5rem;
}
#TopPage #treatment .inner > div .link_hand::before {
  content: "\e813";
  font-family: fontello;
  margin-right: 0.4em;
}
#TopPage #treatment .inner > div::after {
  position: absolute;
  font-family: fontello;
  color: var(--clr_sub4);
  top: 0;
  right: 2rem;
  font-size: 6rem;
}
#TopPage #treatment .inner > div.headache::after {
  content: "\e80b";
}
#TopPage #treatment .inner > div.headache .point li, #TopPage #treatment .inner > div.headache .frm {
  background: #fff3c4;
}
#TopPage #treatment .inner > div.internal::after {
  content: "\e80a";
}
#TopPage #treatment .inner > div.internal .point li, #TopPage #treatment .inner > div.internal .frm {
  background: #ffdfc2;
}
#TopPage #treatment .inner > div.neurosurgery::after {
  content: "\e80b";
}
#TopPage #treatment .inner > div.neurosurgery .point li, #TopPage #treatment .inner > div.neurosurgery .frm {
  background: #d9ecfa;
}
#TopPage #treatment .inner > div.visit::after {
  content: "\e80c";
}
#TopPage #treatment .inner > div.visit .point li, #TopPage #treatment .inner > div.visit .frm {
  background: #dbfbf2;
}
#TopPage #treatment .inner > div.checkup::after {
  content: "\e809";
}
#TopPage #treatment .inner > div.checkup .lst_link li a::before {
  content: "\e80a";
  margin-right: 0.4em;
}
#TopPage #treatment .inner > div.vaccination::after {
  content: "\e80e";
}
#TopPage #treatment .inner > div.vaccination .lst_link li a::before {
  content: "\e805";
  margin-right: 0.2em;
}
#TopPage #treatment .list_maru.txt_c {
  display: inline-block;
}
#TopPage #treatment .list_maru.txt_c li {
  text-align: left !important;
}
#TopPage #features h2 {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(40%, #fff), color-stop(40%, var(--clr_sub5)), to(var(--clr_sub5)));
  background: linear-gradient(180deg, #fff 0%, #fff 40%, var(--clr_sub5) 40%, var(--clr_sub5) 100%);
  margin-bottom: 0;
}
#TopPage #features .features_bg {
  background: var(--clr_sub5);
  padding: 3rem 0;
}
#TopPage #features ul.flex_LRTB {
  margin: auto;
}
#TopPage #features ul.flex_LRTB li {
  margin-bottom: 3rem;
}
#TopPage #features ul.flex_LRTB li dt {
  font-size: 1.8rem;
  text-align: center;
}
#TopPage #features ul.flex_LRTB li dt figure img {
  border-radius: 3rem;
  width: 25rem;
  margin: auto;
}
#TopPage #features ul.flex_LRTB li dt figure figcaption {
  position: relative;
  text-align: center;
  background: var(--clr_main);
  border-radius: 2rem 0 2rem 0;
  width: 4.4rem;
  height: 4rem;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
  margin: -2rem auto 0.5rem;
}
#TopPage #features ul.flex_LRTB li:nth-child(even) dt figure figcaption {
  background: var(--clr_sub1);
}
#TopPage #links {
  padding: 3rem 0;
}
#TopPage #links .inner {
  margin-top: -5rem;
  border-radius: 1rem;
  padding: 5rem 1rem 2rem;
  background: var(--clr_sub9);
}
#TopPage #links .inner a {
  background: #fff;
  margin: auto;
  color: var(--clr_txt);
  border-radius: 2rem;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.1;
  height: 3rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  word-break: auto-phrase;
  padding: 0 1.5rem;
  position: relative;
  border: 0.1rem solid var(--clr_sub1);
}
#TopPage #links .inner a::after {
  content: "\e4a2";
  font-family: fontello;
  line-height: 3rem;
  position: absolute;
  right: 1.6rem;
  color: var(--clr_sub1);
  top: 0;
  bottom: 0;
}

@media screen and (min-width: 48em), print {
  #TopPage header::before {
    height: 41.5rem;
  }
  #TopPage #kv {
    margin: 0 auto 0;
    width: 60rem;
    height: 36rem;
    padding: 0;
    background-size: auto;
  }
  #TopPage .kv_wrap {
    height: 48rem;
    position: relative;
    margin-bottom: 3rem;
  }
  #TopPage .kv_wrap .wrap {
    height: 48rem;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #TopPage .kv_wrap .wrap .kv_right {
    width: 38.5rem;
    margin: 0 auto;
  }
  #TopPage .kv_wrap .wrap > * {
    border-radius: 6rem;
  }
  #TopPage .kv_wrap .wrap > * .kv_txt {
    margin: 0;
    color: var(--clr_main);
    font-size: 2.2rem;
    text-align: left;
    line-height: 1.8;
  }
  #TopPage .kv_wrap .wrap > * .kv_txt p {
    background: rgba(255, 255, 255, 0.5);
    display: inline;
    padding: 0 5px;
  }
  #TopPage .kv_wrap .wrap > * .subject {
    /*background: rgba(255,255,255,0.5);*/
    padding: 2rem 0 0;
    border-radius: 5rem;
  }
  #TopPage .kv_wrap .wrap > * .subject p {
    text-align: center;
  }
  #TopPage .kv_wrap .wrap > * .subject ul {
    display: block;
  }
  #TopPage .kv_wrap .wrap > * .subject ul li {
    width: 300px;
    color: #fff;
    border-radius: 3rem 0 3rem 0;
    padding: 1rem 0 1rem 2rem;
    margin: 0 auto 10px;
  }
  #TopPage .kv_wrap .wrap > * .subject ul li:nth-child(1) {
    background: #58a04b;
  }
  #TopPage .kv_wrap .wrap > * .subject ul li:nth-child(2) {
    background: rgb(77.75, 151.75, 84.75);
  }
  #TopPage .kv_wrap .wrap > * .subject ul li:nth-child(3) {
    background: rgb(67.5, 143.5, 94.5);
  }
  #TopPage .kv_wrap .wrap > * .subject ul li:nth-child(4) {
    background: rgb(57.25, 135.25, 104.25);
  }
  #TopPage .kv_wrap .wrap > * .subject ul li:nth-child(5) {
    background: #2f7f72;
  }
  #TopPage .kv_wrap .wrap > div:first-child {
    top: 50px !important;
  }
  #TopPage main {
    padding: 0 0 0;
  }
  #TopPage main .wrap {
    margin: 0 auto;
  }
  #TopPage main h2 {
    margin-bottom: 7rem;
    font-size: 3.6rem;
  }
  #TopPage main h2 span {
    font-size: 1.8rem;
  }
  #TopPage main #tt {
    padding: 8rem 0;
  }
  #TopPage main #tt h2 {
    margin-bottom: 4rem;
  }
  #TopPage main #news {
    padding: 7rem 0 10rem;
  }
  #TopPage main #news .wrap {
    position: relative;
  }
  #TopPage main #news h2 {
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    position: absolute;
    top: 5rem;
  }
  #TopPage main #news h2::after {
    content: "";
    display: block;
    background: url(../img/news_ttl.png) no-repeat;
    width: 10rem;
    height: 10rem;
    margin: 2rem auto 0;
  }
  #TopPage main #news .inner {
    width: 107rem;
    border-radius: 3rem;
    margin: 0 0 0 auto;
    padding: 6rem 6rem 6rem 20.6rem;
  }
  #TopPage main #news dl {
    width: 100%;
  }
  #TopPage main #news dl dt {
    font-size: 2rem;
  }
  #TopPage main #symptoms {
    padding: 7rem 0 10rem;
    background-size: auto;
  }
  #TopPage main #symptoms ul {
    gap: 4rem;
    width: 90rem;
    margin: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #symptoms ul li {
    margin: 0;
    width: 24rem;
  }
  #TopPage main #symptoms ul li a {
    width: 24rem;
    height: 24rem;
    font-size: 2.4rem;
    padding-top: 6rem;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #TopPage main #symptoms ul li a:hover {
    -webkit-transform: translateY(-0.4rem);
            transform: translateY(-0.4rem);
  }
  #TopPage main #treatment {
    padding: 7rem 0 12rem;
  }
  #TopPage main #treatment .inner > div:not(:last-of-type) {
    margin: 0 0 6rem;
  }
  #TopPage main #treatment .inner > div {
    padding: 4rem 18rem;
  }
  #TopPage main #treatment .inner > div p:last-child {
    margin-bottom: 0;
  }
  #TopPage main #treatment .inner > div::before {
    width: 6rem;
    height: 4.6rem;
  }
  #TopPage main #treatment .inner > div::after {
    font-size: 12rem;
    top: -2rem;
    right: 4rem;
  }
  #TopPage main #treatment .inner > div .point li {
    width: calc(33.3333333333% - 2rem);
    padding: 1em;
  }
  #TopPage main #treatment .inner > div .frm {
    padding: 1.5em 1em;
    text-align: center;
  }
  #TopPage main #treatment .inner > div .frm p {
    text-align: center;
  }
  #TopPage main #treatment .inner > div .frm .lead {
    font-size: 2.2rem;
  }
  #TopPage main #treatment .inner > div .lst_link {
    margin: 3rem 0 0;
    gap: 1rem 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #treatment .inner > div .lst_link:not(.wide) li {
    width: auto;
  }
  #TopPage main #treatment .inner > div .lst_link li {
    margin: 0;
    width: auto;
  }
  #TopPage main #treatment .inner > div .lst_link li a {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    background-size: auto;
    background-position: top 2.5rem center;
    width: 26rem;
    height: 6rem;
    font-size: 1.8rem;
    border-radius: 3rem;
    transition: transform 0.3s;
  }
  #TopPage main #treatment .inner > div .lst_link li a:hover {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  #TopPage main #treatment .inner > div .lst_link li a::after {
    line-height: 6rem;
    right: 1.6rem;
  }
  #TopPage main #treatment .inner > div .lst_link.wide {
    margin: 3rem 0;
    gap: 3rem 2rem;
  }
  #TopPage main #treatment .inner > div .lst_link.wide li {
    width: auto;
  }
  #TopPage main #treatment .inner > div .lst_link.wide li a {
    width: 40rem;
    height: 7rem;
    font-size: 2.2rem;
    border-radius: 3.5rem;
  }
  #TopPage main #treatment .inner > div .lst_link.wide li a::before {
    font-family: fontello;
    font-size: 3.2rem;
    color: var(--clr_main);
    line-height: 7rem;
  }
  #TopPage main #treatment .inner > div .link_hand {
    display: inline-block;
    margin: 2.5rem 0 0;
    font-size: 1.8rem;
  }
  #TopPage main #features ul.flex_LRTB li {
    width: 37.2rem;
    gap: 4.2rem;
  }
  #TopPage main #features ul.flex_LRTB li dt {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
  #TopPage main #features ul.flex_LRTB li dt figure {
    margin-bottom: 1rem;
  }
  #TopPage main #features ul.flex_LRTB li dt figure figcaption {
    width: 6.6rem;
    height: 6rem;
    border-radius: 3rem 0 3rem 0;
    font-size: 3rem;
  }
  #TopPage main #features ul.flex_LRTB li dt figure img {
    width: 100%;
  }
  #TopPage main #links {
    padding: 7rem 0 10rem;
  }
  #TopPage main #links .inner {
    padding: 9.6rem 6rem 6rem;
    margin-top: -12rem;
  }
  #TopPage main #links .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem 6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #links .inner ul li {
    margin: 0;
    width: 51rem;
  }
  #TopPage main #links .inner ul li a {
    height: 5.6rem;
    font-size: 1.8rem;
    border-radius: 3rem;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  #TopPage main #links .inner ul li a:hover {
    -webkit-transform: translateY(-0.4rem);
            transform: translateY(-0.4rem);
  }
  #TopPage main #links .inner ul li a::after {
    right: 1.6rem;
    line-height: 5.6rem;
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.5rem 0;
  padding: 0 2rem;
}
#lower .breadcrumb li a {
  color: var(--clr_link);
}
#lower .breadcrumb li:first-child::after {
  content: "\f006";
  font-family: fontello;
  padding: 0 1rem;
}
#lower header::before {
  height: 19rem;
}
#lower main {
  margin-top: 1rem;
  position: relative;
}
#lower main section {
  margin: 0 auto 6rem;
  padding: 0;
}
#lower main section section {
  margin-bottom: 5rem;
}
#lower main section section section {
  margin-bottom: 4rem;
}
#lower main .wrap {
  position: relative;
  z-index: 1;
}
#lower main .wrap > .inner {
  margin: 3rem auto;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  font-weight: 500;
}
#lower h1 {
  background: url(../img/h1.png) no-repeat center;
  background-size: auto 100%;
  margin: 0 0 1.5rem;
  font-size: 2rem;
  line-height: 1.2;
  padding: 3.5rem 1rem;
  text-align: center;
  border-radius: 1rem;
}
#lower h1 span {
  display: block;
  padding: 2rem;
}
#lower h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.9rem;
  margin: 3rem 0 2rem;
  position: relative;
  padding: 1.6rem 0 0;
  min-height: 5rem;
  line-height: 1.35;
}
#lower h2::after {
  content: "";
  display: block;
  width: 8%;
  height: 0.4rem;
  background: var(--clr_sub8);
  margin: 0 auto;
  position: absolute;
  bottom: -0.2rem;
}
#lower h3 {
  margin: 4rem 0 2rem;
  color: #fff;
  font-size: 1.8rem;
  background: url(../img/h3.png) no-repeat right bottom var(--clr_main);
  background-size: 3rem auto;
  line-height: 1.35;
  padding: 0.3rem 3rem 0.3rem 1rem;
  border-radius: 1rem;
}
#lower h4 {
  margin: 3.5rem 0 2rem;
  font-size: 1.6rem;
  line-height: 1.35;
  padding: 0 0 0.5rem;
  position: relative;
  border-bottom: var(--clr_sub10) 0.2rem solid;
}
#lower h4::before {
  content: "";
  display: block;
  width: 10.5%;
  height: 0.2rem;
  background: var(--clr_main);
  position: absolute;
  bottom: -0.2rem;
  left: 0;
}
#lower h5 {
  margin: 3.5rem 0 2rem;
  font-size: 1.4rem;
  line-height: 1.35;
  padding: 0.2rem 0 0.2rem 2.5rem;
  background: url(../img/h5.png) no-repeat left center;
  background-size: auto 1.4rem;
}
#lower h6 {
  font-size: 1.4rem;
  margin: 3rem 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
#lower h6::before {
  content: "";
  width: 1.2rem;
  height: 0.4rem;
  background-color: var(--clr_main);
  display: block;
}
#lower {
  /* main   -------------------------------------- */
}
#lower main {
  display: block;
  z-index: 50;
}
#lower main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
#lower main li,
#lower main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  #lower header::before {
    height: 28rem;
  }
  #lower .breadcrumb {
    margin: 1.5rem auto;
    width: 1220px;
    position: relative;
    z-index: 100;
  }
  #lower main {
    padding: 0 0;
    margin-bottom: 12rem;
  }
  #lower main > .wrap {
    position: relative;
    z-index: 50;
  }
  #lower main > .wrap > .inner {
    margin-bottom: 10rem;
  }
  #lower main > .wrap > section {
    margin: 0 auto 10rem;
    padding-top: 5rem;
  }
  #lower main > .wrap > section > .inner + section {
    margin-top: 6rem;
  }
  #lower main > .wrap > section > section {
    margin: -4rem auto 8rem;
    padding-top: 5rem;
  }
  #lower main > .wrap > section > section > .inner + section {
    padding-top: 6rem;
  }
  #lower main > .wrap > section > section > section {
    margin: -4rem auto 7rem;
    padding-top: 5rem;
  }
  #lower main > .wrap > section > section > section > .inner + section {
    margin-top: 4rem;
  }
  #lower main > .wrap > section > section > section > section {
    margin: 0rem auto 6rem;
  }
  #lower h1 {
    font-size: 4.8rem;
    margin: 0 auto 0;
    line-height: 1;
    height: 30rem;
    background-size: auto;
    z-index: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
  }
  #lower h2 {
    font-size: 3.6rem;
    margin-bottom: 6rem;
    padding: 0 0 2rem;
  }
  #lower h2::after {
    width: 4%;
  }
  #lower h3 {
    font-size: 3rem;
    margin: 0 0 3rem;
    padding: 0.7rem 7rem 1rem 1.6rem;
    background-size: auto;
  }
  #lower h4 {
    font-size: 2.4rem;
    padding: 0 0 1.3rem;
    margin: 0rem 0 2rem;
  }
  #lower h5 {
    margin: 0 0 2rem;
    font-size: 2rem;
    padding: 0 0 0 4.7rem;
    background-size: auto;
  }
  #lower h6 {
    font-size: 1.8rem;
  }
}
/* table 関連 */
#lower .tbl_scroll {
  overflow-x: scroll;
}
#lower .tbl_def {
  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;
}
#lower .tbl_def thead {
  background: var(--clr_sub4);
  color: #fff;
}
#lower .tbl_def thead th {
  padding: 0.5rem 1% 0.5rem 1%;
  border: 1px solid #fff;
}
#lower .tbl_def tbody th {
  background: var(--clr_sub8);
}
#lower .tbl_def tbody th,
#lower .tbl_def tbody td {
  padding: 0.5rem 1% 0.4rem 1%;
  border: 1px solid #ccc;
}
#lower .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;
}
#lower .tbl_price tr {
  border-bottom: 1px solid #ccc;
}
#lower .tbl_price tr th {
  text-align: left;
  color: #663300;
  font-size: 94%;
  padding: 1% 0% 0.8% 2%;
}
#lower .tbl_price tr td {
  padding: 1% 2% 0.8% 2%;
  border-left: 1px solid #ccc;
}
#lower .tbl_price tr td:last-child {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  #lower .tbl_scroll {
    overflow-x: inherit;
  }
  #lower .tbl_def thead th,
  #lower .tbl_def thead td {
    padding: 1rem;
  }
  #lower .tbl_def tbody th,
  #lower .tbl_def tbody td {
    padding: 1rem;
  }
}
@media screen and (min-width: 48em), print {
  #lower #clinic01_nav .slick-track, #lower #clinic01_nav .slick-list {
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
  }
}
#lower {
  /* Slider */
}
#lower .slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-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);
  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;
    z-index: 101;
    position: relative;
  }
  .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;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: var(--clr_main);
  line-height: 1.4;
}

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

.gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          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%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: 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 */