@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
:root {
  /*基本背景色PC*/
  --clr_bg: #fff;
  /*基本文字色*/
  --clr_txt: #313131;
  /*リンク色*/
  --clr_link: #0090D8;
  --clr_linkH: #006497;
  /*ポイントカラーメイン*/
  --clr_main: #0090D8;
  /*ポイントカラーサブ*/
  --clr_sub1: #51B5CF;
  --clr_sub2: #006497;
  --clr_sub3: #EBF5F8;
  --clr_sub4: #F8F8F8;
  --clr_sub5: #FFF7F0;
  --clr_sub6: #CCCCCC;
  --clr_sub7: #B4E6FF;
  --clr_sub8: #8FD0E1;
  --clr_sub9: #F8E9DC;
  --clr_sub10: #C68F5F;
  --clr_sub11:#87CC97;
  --clr_sub12:#7D6F5F;
  --clr_sub13:#DECD04;
  --clr_sub14:#B2C331;
  --clr_sub15:#E49717;
  /*赤*/
  --red: #d80024;
  /*緑*/
  --green:#00d8b4;
  /*橙*/
  --orange: #d84800;
  /*青*/
  --blue: #0090D8;
}

@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: normal;
  font-weight: 500;
}

.underline {
  background: linear-gradient(transparent 60%, #f8f2bd 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_blue {
  color: var(--blue) !important;
}

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

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

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
    border-radius: 3rem;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
    border-radius: 3rem;
  }
  .img_c {
    border-radius: 3rem;
  }
  #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;
  }
}
/* マージン -------------------------------------- */
.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;
}

/* マージン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_pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* 幅 -------------------------------------- */
.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 {
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@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 > 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 {
    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: flex-start;
    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.third::after {
    content: "";
    display: block;
    width: 32%;
    height: 0.1rem;
  }
}
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
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_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;
  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: "\f138";
  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: flex;
    flex-wrap: wrap;
    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: "\e808";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_sub1);
}

/* 数値 -------------------------------------- */
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 {
  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: flex;
    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_main);
}

.dl_flex {
  display: flex;
  flex-wrap: wrap;
  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_sub4);
}

@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_sub3);
  border-radius: 0.5rem;
}
.box1 > dt,
.box2 > dt,
.box3 > dt {
  border-bottom: var(--clr_main) dotted 2px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-weight: bold;
  font-size: large;
  word-break: auto-phrase;
}
.box1 > dd,
.box2 > dd,
.box3 > dd {
  margin: 1rem 1rem 2rem;
}
.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(--clr_sub1) dotted 2px;
}
.box2 ul.list_maru > li::before {
  color: var(--clr_sub1);
}

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

@media screen and (min-width: 48em), print {
  .box1 > dd,
  .box2 > dd {
    margin-bottom: 3rem;
  }
}
/* リンク -------------------------------------- */
a {
  text-decoration: none;
}

main a {
  border-bottom: 1px solid var(--clr_link);
  color: var(--clr_link);
}
main a.border_n {
  border: none !important;
}
main a.border_n:hover {
  border: none;
}

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

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

a:hover img {
  opacity: 0.8;
}

a.btn,
span.btn {
  background: var(--clr_main);
  color: #fff;
  padding: 0.5rem 2rem 0.8rem;
  text-align: center;
  margin: 5px auto 1rem;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: relative;
  border: none;
  border-radius: 2rem;
  border: 0.2rem solid #fff;
}
a.btn::after,
span.btn::after {
  font-family: "fontello";
  content: "\e80a";
  padding-left: 0.5em;
}

@media screen and (min-width: 48em), print {
  a.btn {
    transition: transform 0.3s;
    padding: 0.6rem 2.5rem 0.8rem 3rem;
    border-radius: 2rem;
  }
  a.btn:hover {
    transform: translateY(-0.8rem);
    background: var(--clr_linkH);
    color: #fff;
    border: #fff 0.2rem solid;
  }
}
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: YakuHanRPs, "Zen Maru Gothic", "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", 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;
  width: 100%;
  position: relative;
  font-weight: 500;
}

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

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%; /* ベースを10pxに */
  }
  body {
    min-width: 128rem;
    font-size: 1.8rem;
  }
}
/* 全体の横幅設定  -------------------------------------- */
.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: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
  }
  section {
    margin-bottom: 5rem;
  }
  main {
    margin-top: 6rem;
  }
}
/* header  -------------------------------------- */
header > .wrap {
  margin: 0;
}
header {
  /*&::after {
      content: "";
      display: block;
      width: 100%;
      height: 5rem;
  }*/
}
header .h_left {
  position: relative;
  z-index: 1000;
  width: 100%;
  padding: 0 6rem 0 2rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
}
header .logo img {
  max-height: 3.5rem;
  width: 100%;
  display: block;
  margin: auto;
}

/* ハンバーガーメニュー  -------------------------------------- */
#sp_menu {
  width: 5rem;
  height: 5rem;
  background: var(--clr_sub1);
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  transition: 0.5s;
  display: grid;
  align-content: center;
}

#sp_menu.hide {
  transform: translateY(-220%);
}

#sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e802";
  font-size: 2rem;
  padding-bottom: 0.1rem;
}

#sp_menu::after {
  display: block;
  content: "MENU";
}

#sp_menu.open::before {
  font-family: "fontello";
  content: "\e806";
}

#sp_menu.open::after {
  content: "CLOSE";
}

#sp_menu span {
  display: none;
}

#nav {
  width: 100%;
  max-height: calc(100dvh - 8rem);
  overflow-y: auto;
  background: var(--clr_sub3);
  margin: auto;
  position: fixed;
  top: -100vh;
  left: 0;
  right: 0;
  z-index: 100;
  transition: 0.3s;
  -webkit-overflow-scrolling: touch;
  padding: 1rem;
}
#nav.open {
  top: 4.6rem;
}
#nav a {
  color: var(--clr_txt);
  text-decoration: none;
  word-break: auto-phrase;
  font-size: 1.4rem;
}
#nav .wrap {
  overflow: auto;
}
#nav ul.gnav > li {
  padding: 0;
  margin: 0;
  border-bottom: 0.1rem solid var(--clr_main);
}
#nav ul.gnav > li a {
  padding: 1.5rem 0.5rem;
  display: block;
  position: relative;
  line-height: 1;
  text-align: center;
}
#nav {
  left: 0;
}

.dropdown > a::after,
.dropdown .subsub::after {
  font-family: "fontello";
  content: "\e809";
  padding-left: 0.5rem;
  font-weight: normal;
  color: var(--clr_sub1);
}
.dropdown > a.close::after {
  content: "\e80b";
}
.dropdown ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-top: 0.1rem solid var(--clr_sub1);
}
.dropdown ul li {
  margin: 0;
  width: 50%;
}
.dropdown ul li:nth-child(odd) {
  border-right: 0.1rem solid var(--clr_sub1);
}
.dropdown ul li:last-child a {
  border-bottom: none;
}
.dropdown ul li a {
  margin: 0;
  background: var(--clr_sub4);
  align-content: center;
  height: 100%;
  border-bottom: 0.1rem solid var(--clr_sub1);
}
.dropdown ul li a span {
  display: inline-block;
}
.dropdown > a {
  display: none;
}

#nav.open {
  right: 0;
}

@media screen and (min-width: 48em), print {
  #sp_menu {
    display: none;
  }
  header {
    padding: 0;
    width: 100%;
    min-width: 1280px;
    margin: 0 auto;
    z-index: auto;
    position: relative;
    z-index: 1000;
  }
  header > .wrap {
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    display: flex;
    height: 12rem;
    padding: 2rem 4rem;
  }
  header > .wrap .h_left {
    height: 7.5rem;
    width: 44.7rem;
    position: relative;
    padding: 0;
    justify-content: flex-start;
    background-color: transparent;
  }
  header > .wrap .logo {
    height: auto;
    width: 100%;
    margin: 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .logo img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  header > .wrap .h_right {
    position: inherit;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin: 0 0 0 auto;
    width: 67rem;
  }
  header > .wrap .h_right ul {
    display: grid;
    gap: 1rem;
    margin: 0;
    font-size: 1.4rem;
  }
  header > .wrap .h_right ul li {
    margin: 0;
  }
  header > .wrap .h_right ul li::before {
    font-family: "fontello";
    content: "\e800";
    color: var(--clr_sub8);
    padding-right: 1rem;
  }
  header > .wrap .h_right ul li.h_address::before {
    font-family: "fontello";
    content: "\e803";
  }
  header > .wrap .h_right .h_tel {
    width: 30rem;
    height: 6.1rem;
    color: #fff;
    background: var(--clr_main);
    border-radius: 3rem;
    font-size: 2.8rem;
    align-content: center;
    text-align: center;
  }
  header > .wrap .h_right .h_tel::before {
    content: "tel.";
    font-size: 2rem;
  }
  header > .wrap .h_right .h_tel a {
    color: #fff;
  }
  #nav {
    padding: 0;
    margin: 0 auto;
    position: relative;
    top: auto;
    right: auto;
    overflow: visible !important;
    transition: none;
    display: flex;
    align-items: center;
    line-height: 1;
    z-index: 100;
    background-color: transparent;
    height: 5rem;
    background-color: var(--clr_sub3);
    min-width: 1280px;
  }
  #nav ul.gnav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: none;
    margin: 0;
    text-align: center;
    width: 100%;
  }
  #nav ul.gnav > li {
    margin: 0;
    padding: 0;
    position: relative;
    border: none;
  }
  #nav ul.gnav > li.privacy_policy {
    display: none;
  }
  #nav ul.gnav > li > a {
    text-align: center;
    padding: 0;
    height: 5rem;
    align-content: center;
    position: relative;
    margin: 0;
    line-height: 1;
    color: var(--clr_txt);
    transition: color 0.3s;
    letter-spacing: 0.2rem;
    font-size: 2rem;
  }
  #nav ul.gnav > li > a::before {
    position: absolute;
    bottom: 0.5rem;
    top: auto;
    left: 30%;
    content: "";
    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);
  }
  #nav ul.gnav > li.dropdown > a {
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown.treatment .subnav {
    width: 45rem;
    left: -17rem;
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    margin: 0;
    z-index: 100;
    top: 5rem;
    left: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0;
    gap: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    border-bottom: 0.05rem solid var(--clr_sub6);
    color: var(--clr_txt);
    margin: 0;
    padding: 1rem;
    transition: all 0.3s;
    place-items: center;
    width: 100%;
    background: rgba(248, 248, 248, 0.8);
    position: relative;
    font-weight: bold;
    font-size: 2rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    color: #fff;
    background: var(--clr_main);
  }
  .nav_fixed #nav {
    position: fixed;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 5rem;
    background: rgba(235, 245, 248, 0.9);
  }
  .nav_fixed #nav .gnav {
    height: 5rem;
    margin: auto;
  }
  .nav_fixed #kv {
    margin-top: 5rem;
  }
}
/* main   -------------------------------------- */
main {
  display: block;
}
main p {
  margin: 0 0 1em;
  line-height: 1.66;
  text-align: justify;
}
main li,
main dl {
  line-height: 1.66;
}

@media screen and (min-width: 48em), print {
  main {
    margin: 0;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
#overview {
  padding: 0 0 3rem;
  line-height: 1.4;
}
#overview .logo {
  background: var(--clr_sub7);
  padding: 1rem;
  margin-bottom: 2rem;
}
#overview .logo img {
  max-height: 3.5rem;
  margin: 0 auto;
}
#overview .overviewL {
  margin: 0 0 2rem;
}
.dl_overview {
  margin-bottom: 2.21em;
}
.dl_overview > dt {
  padding: 0.5rem;
  margin: 1.5rem 0 1rem;
  background: var(--clr_sub3);
  border-radius: 1rem;
  text-align: center;
  color: var(--clr_main);
}
.dl_overview > dd {
  margin: 0 0;
  word-break: auto-phrase;
}
.dl_overview > dd a {
  color: var(--clr_txt);
}

.gmap {
  height: 29rem;
  display: block;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 0 0 12rem;
    max-width: 100%;
  }
  #overview .logo {
    padding: 5rem;
    margin-bottom: 7rem;
  }
  #overview .logo a {
    width: fit-content;
    margin: auto;
  }
  #overview .logo img {
    max-height: none;
    height: 12rem;
  }
  #overview div.flex_LRTB {
    align-items: stretch;
    justify-content: space-between;
  }
  #overview div.flex_LRTB .overviewL {
    width: 63rem;
    margin: 0;
  }
  #overview div.flex_LRTB .overviewR {
    width: 50rem;
    height: auto !important;
  }
  #overview .overviewL {
    max-width: none;
    padding: 0;
  }
  .dl_overview {
    margin: 0 0 4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem 2rem;
  }
  .dl_overview > dt {
    width: 16rem;
    height: 3.7rem;
    padding: 0;
    margin: 0;
    align-content: center;
  }
  .dl_overview > dd {
    width: calc(100% - 18rem);
    padding: 0;
    margin: 0;
  }
  .gmap {
    margin: 0;
    height: 38rem;
  }
  .overviewR .gmap {
    height: 100%;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
}
.tbl_time caption {
  margin: 0.5rem 0 1rem;
  text-align: left;
  caption-side: bottom;
}
.tbl_time caption dl {
  display: flex;
  gap: 0.5em;
  align-items: center;
  line-height: 1.8;
  margin-top: 0.5em;
}
.tbl_time caption dl dt {
  width: 6em;
  text-align: center;
  background: var(--clr_main);
  color: #fff;
  border-radius: 0.5rem;
}
.tbl_time caption dl dd {
  width: calc(100% - 7em);
}
.tbl_time thead tr th {
  padding: 0.5rem 0;
  color: #fff;
  background: var(--clr_main);
}
.tbl_time thead tr th:last-child {
  padding-right: 0.5em;
  width: 2.7em;
}
.tbl_time tbody th,
.tbl_time tbody td {
  padding: 0.7rem 0;
  vertical-align: middle;
  background: #fff;
  font-weight: normal;
  color: var(--clr_txt);
  border-bottom: 0.1rem solid var(--clr_main);
}
.tbl_time tbody th:last-child,
.tbl_time tbody td:last-child {
  padding-right: 0.5em;
  width: 2.7em;
}
.tbl_time tbody td {
  width: 2.2em;
  font-weight: bold;
}

@media screen and (min-width: 48em), print {
  .tbl_time caption {
    margin-top: 1rem;
  }
  .tbl_time thead tr th {
    padding: 1.3rem 0;
    font-size: 1.6rem;
  }
  .tbl_time tbody th {
    line-height: 1;
    padding: 1.3rem 0;
  }
  .tbl_time tbody td {
    line-height: 1;
    width: 5rem;
    padding: 1.3rem 0;
  }
  .tbl_time tbody td:last-child {
    width: 6.5rem;
  }
}
/* ページトップ -------------------------------------- */
.f_contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: var(--clr_sub3);
  margin: 0;
  width: 100%;
  height: 4rem;
  padding: 0.1rem 0;
  text-align: center;
  z-index: 100;
  letter-spacing: normal;
  font-size: 1.4rem;
}
.f_contact li {
  width: 28.3333333333%;
  position: relative;
  margin: 0;
  height: 100%;
}
.f_contact li a {
  padding: 1rem 0;
  color: #fff;
  background: var(--clr_sub2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.f_contact li#pageup {
  width: 14.5%;
}

@media screen and (min-width: 48em), print {
  .pc_right {
    position: fixed;
    top: 25rem;
    right: 0;
    width: 8rem;
  }
  .pc_right .tab_tel {
    width: 100%;
    height: 9.7rem;
    padding: 0 0.5rem;
    background: var(--clr_sub9);
    color: var(--clr_sub10);
    border: #fff solid 0.2rem;
    border-radius: 1rem 0 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.6rem;
    align-content: center;
    font-weight: bold;
  }
  .pc_right .tab_tel span {
    padding: 0 2.5rem;
  }
  .pc_right .tab_tel a {
    color: var(--clr_sub10);
  }
  .pc_right .tab_tel::before {
    font-family: "fontello";
    content: "\e80d";
    font-size: 3rem;
    padding-bottom: 0.5rem;
  }
  .f_contact {
    background-color: transparent;
  }
  .f_contact .f_reserve,
  .f_contact .f_tel,
  .f_contact .f_instagram {
    display: none;
  }
  .f_contact li#pageup {
    cursor: pointer;
    position: fixed;
    height: 10rem;
    width: 10rem;
    right: 2rem;
    bottom: -12rem;
    transition: bottom 0.8s;
    width: 10rem;
  }
  .f_contact li#pageup.block {
    bottom: 2rem;
  }
  .f_contact li#pageup a {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: block;
    align-content: center;
    background: var(--clr_sub3);
    border: 0.2rem solid #fff;
    font-size: 5rem;
    color: var(--clr_main);
    padding: 0 0 1rem 0;
  }
  .f_contact li#pageup a::before {
    font-family: "fontello";
    content: "\e80b";
  }
  .f_contact li#pageup span {
    display: none;
  }
}
/* footer -------------------------------------- */
footer {
  background: var(--clr_sub1);
}
footer a {
  color: #fff;
}
footer a:hover {
  color: var(--clr_sub3);
}
footer div.wrap {
  display: none;
}

address {
  padding: 0.8rem 0 5rem;
  font-style: normal;
  text-align: center;
  line-height: 1;
  background: var(--clr_sub8);
}

@media screen and (min-width: 48em), print {
  footer {
    display: block;
    padding: 0 0;
    margin: 0 auto 0;
    font-size: 1.4rem;
  }
  footer div.wrap {
    display: grid;
    justify-content: center;
    gap: 1em;
    margin: 0 auto;
    padding: 3rem 4rem;
  }
  footer div.wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    gap: 1em 0;
    width: 70rem;
  }
  footer div.wrap ul li {
    margin: 0;
    padding: 0 0.5em;
    border-left: 0.1rem solid #fff;
  }
  footer div.wrap ul li:first-child, footer div.wrap ul li.locomo, footer div.wrap ul li.pilates {
    border-left: none;
  }
  footer div.wrap ul li.dropdown {
    display: none;
  }
  address {
    margin: 0 auto 0;
    padding: 1.5rem;
  }
}
/*
nav,
footer,
#treatment,
#message {
    pointer-events: none;
}*/
/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage {
  /* Slider */
}
#TopPage .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
#TopPage .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
#TopPage .slick-list:focus {
  outline: none;
}
#TopPage .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
#TopPage .slick-slider .slick-track,
#TopPage .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
#TopPage .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#TopPage .slick-track:before,
#TopPage .slick-track:after {
  content: "";
  display: table;
}
#TopPage .slick-track:after {
  clear: both;
}
#TopPage .slick-loading .slick-track {
  visibility: hidden;
}
#TopPage .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
#TopPage [dir=rtl] .slick-slide {
  float: right;
}
#TopPage .slick-slide img {
  display: block;
}
#TopPage .slick-slide.slick-loading img {
  display: none;
}
#TopPage .slick-slide.dragging img {
  pointer-events: none;
}
#TopPage .slick-initialized .slick-slide {
  display: block;
}
#TopPage .slick-loading .slick-slide {
  visibility: hidden;
}
#TopPage .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
#TopPage .slick-arrow.slick-hidden {
  display: none;
}
#TopPage .keyvsl {
  width: 100%;
  position: relative;
}
#TopPage .keyvsl .add-animation {
  animation: zoomUp 10s linear 0.2s normal both;
}
#TopPage #keyvsl {
  width: 100%;
  height: 26rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  animation: fade 2s ease-out 0s 1 normal forwards;
}
#TopPage #keyvsl .slick-list div img {
  height: 26rem !important;
  width: 100%;
  object-fit: cover;
}
#TopPage #keyvsl .slick-dots {
  position: relative;
  z-index: 2;
  margin: -1.8rem auto;
}
#TopPage #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
#TopPage #keyvsl .slick-dots li button {
  background: var(--clr_green);
}
@keyframes fade {
  from {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
#TopPage #kv {
  position: relative;
  width: 100%;
}
#TopPage .kv_txt {
  line-height: 1.3;
  font-size: 1.8rem;
  color: var(--clr_sub2);
  text-align: center;
  padding: 1rem;
  text-shadow: 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff, 0 0 0.5rem #fff;
}
#TopPage .kv_open {
  display: flex;
  gap: 1rem;
  margin: 0;
  justify-content: center;
}
#TopPage .kv_open li {
  margin: 0;
  max-width: 20rem;
}
#TopPage main {
  margin: 0 0;
}
#TopPage main section {
  margin-bottom: 0;
}
#TopPage h2 {
  font-size: 1.9rem;
  text-align: center;
  margin: 0 auto 2rem;
  word-break: auto-phrase;
  position: relative;
  padding: 0 0 0.6rem;
  width: fit-content;
  color: var(--clr_main);
  background-image: radial-gradient(circle, var(--clr_sub8) 0.25rem, transparent 0.25rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 1rem 0.5rem;
}
#TopPage h2::before {
  background: url(../img/h2.png) no-repeat top center;
  content: "";
  width: 3.5rem;
  height: 2rem;
  background-size: contain;
  display: block;
  margin: auto;
}
#TopPage #info {
  padding: 3rem 0 3rem;
  background: transparent linear-gradient(180deg, #e3f8ff 0%, #feffff 100%) 0% 0% no-repeat padding-box;
}
#TopPage #info .bnr_recruit {
  margin-bottom: 3rem;
}
#TopPage #info .bnr_recruit a {
  display: block;
  max-width: 100%;
  width: fit-content;
  height: auto;
  margin: 1rem auto;
  border: none !important;
}
#TopPage #info dl {
  padding: 0 1rem;
  position: relative;
  max-height: 20rem;
  overflow: auto;
}
#TopPage #info dl::-webkit-scrollbar {
  width: 1rem;
}
#TopPage #info dl::-webkit-scrollbar-track {
  background: #d6d6d6;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 2px var(--clr_sub4);
}
#TopPage #info dl::-webkit-scrollbar-thumb {
  background: var(--clr_sub1);
  border-radius: 10px;
  box-shadow: none;
}
#TopPage #info dl dt {
  position: relative;
  padding: 0 1.2em 1rem 0;
  margin-top: 1.5rem;
}
#TopPage #info dl dt:first-child {
  margin-top: 0;
}
#TopPage #info dl dt .date {
  width: 7em;
  background: var(--clr_sub8);
  color: #fff;
  border-radius: 1rem;
  text-align: center;
  line-height: 2rem;
}
#TopPage #info dl dt [role=button] {
  font-size: 1.6rem;
  color: var(--clr_main);
  font-weight: bold;
}
#TopPage #info dl dt::before {
  font-family: "fontello";
  content: "\67";
  position: absolute;
  top: 1.1rem;
  right: 0;
  color: var(--clr_main);
}
#TopPage #info dl dt.open::before {
  font-family: "fontello";
  content: "\68";
}
#TopPage #info dl dd {
  margin-bottom: 2em;
}
#TopPage #info dl a {
  display: block;
  width: fit-content;
  margin-top: 0.5em;
}
#TopPage #info dl dd:not(:nth-of-type(-n + 3)) {
  display: none;
}
#TopPage #feature {
  padding: 3rem 0;
}
#TopPage #feature ul {
  margin: 0;
}
#TopPage #feature ul li {
  margin-bottom: 3rem;
}
#TopPage #feature ul dl dt {
  font-size: 1.6rem;
  color: var(--clr_sub1);
  font-weight: bold;
  position: relative;
}
#TopPage #feature ul dl dt div {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 900;
}
#TopPage #feature ul dl dt div em {
  font-size: 170%;
  font-weight: 900;
}
#TopPage #feature ul dl dt::after {
  content: "";
  width: 5.2rem;
  height: 0.3rem;
  border-radius: 1rem;
  background-color: var(--clr_sub1);
  margin: 0.5rem 0 1.5rem 0;
  display: block;
}
#TopPage #feature ul img {
  border-radius: 3rem;
  max-width: 20rem;
  margin: 1rem auto;
}
#TopPage #greeting {
  background: url(../img/greeting_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 3rem 0;
}
#TopPage #greeting h2 {
  color: #fff;
  background-image: radial-gradient(circle, #fff 0.25rem, transparent 0.25rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 1rem 0.5rem;
}
#TopPage #greeting .btn {
  margin: 1rem auto;
}
#TopPage #greeting figure {
  width: 20rem;
  display: block;
  margin: 2rem auto;
}
#TopPage #greeting figure img {
  box-shadow: 1.5rem 1.5rem 0 #78afbd;
  border-radius: 1.5rem;
  overflow: hidden;
}
#TopPage #greeting figure figcaption {
  margin: 3rem 0 0;
}
#TopPage #symptom {
  padding: 3rem 0;
}
#TopPage #symptom .inner {
  padding: 35rem 0 0;
  background: url(../img/symptom_body.png) no-repeat top center/50% auto;
}
#TopPage #symptom .list_part a {
  background: var(--clr_sub3);
  border: var(--clr_sub8) 0.2rem solid;
  border-radius: 1.5rem;
  padding: 0.3rem 1rem;
  display: block;
  word-break: auto-phrase;
  color: var(--clr_txt);
}
#TopPage #treatment {
  padding: 3rem 0;
  background: url(../img/treatment_bg.png);
}
#TopPage #treatment ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
}
#TopPage #treatment ul li {
  width: 46%;
  margin: 0;
  text-align: center;
}
#TopPage #treatment ul li a {
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  color: var(--clr_main);
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
  word-break: auto-phrase;
  border-bottom: var(--clr_sub7) 0.3rem solid;
}
#TopPage #treatment ul li a span {
  display: inline-block;
}
#TopPage #treatment ul li a::before {
  width: 10rem;
  height: 10rem;
  display: block;
  content: "";
  background: url(../img/treatment_injury.png) no-repeat top center;
  background-size: 10rem auto;
  margin: 0 auto;
}
#TopPage #treatment ul li.locomo a::before {
  background-image: url(../img/treatment_locomo.png);
}
#TopPage #treatment ul li.ortho a::before {
  background-image: url(../img/treatment_ortho.png);
}
#TopPage #treatment ul li.osteoporosis a::before {
  background-image: url(../img/treatment_osteoporosis.png);
}
#TopPage #treatment ul li.pediatric_ortho a::before {
  background-image: url(../img/treatment_pediatric_ortho.png);
}
#TopPage #treatment ul li.pilaties a::before {
  background-image: url(../img/treatment_pilaties.png);
}
#TopPage #treatment ul li.rehabilitation a::before {
  background-image: url(../img/treatment_rehabilitation.png);
}
#TopPage #treatment ul li.spinesurgery a::before {
  background-image: url(../img/treatment_spinesurgery.png);
}
#TopPage #treatment ul li.sports_spinesurgery a::before {
  background-image: url(../img/treatment_sports_spinesurgery.png);
}
#TopPage #treatment ul li.traffic_accident a::before {
  background-image: url(../img/treatment_traffic_accident.png);
}
#TopPage #treatment ul li.vaccination a::before {
  background-image: url(../img/treatment_vaccination.png);
}
#TopPage #treatment ul li.pilates a::before {
  background-image: url(../img/treatment_pilates.png);
}
#TopPage #treatment ul li.echo_guided_block_injection a::before {
  background-image: url(../img/treatment_echo_guided_block_injection.png);
}
#TopPage #treatment ul li.high_frequency_pulse a::before {
  background-image: url(../img/treatment_high_frequency_pulse.png);
}
#TopPage #treatment ul li.silent_manipulation a::before {
  background-image: url(../img/treatment_silent_manipulation.png);
}
#TopPage #treatment ul li.private a::before {
  background-image: url(../img/treatment_private.png);
}

@media screen and (min-width: 48em), print {
  #TopPage .keyvsl #keyvsl {
    height: 80rem;
  }
  #TopPage .keyvsl #keyvsl .slick-list div img {
    height: 80rem !important;
  }
  #TopPage #kv {
    height: 74rem;
    margin-top: -74rem;
  }
  #TopPage #kv .wrap {
    height: 74rem;
  }
  #TopPage #kv .wrap .kv_txt {
    text-align: left;
    font-size: 3.6rem;
    line-height: 4.6rem;
    letter-spacing: 0.1em;
  }
  #TopPage #kv .wrap .kv_open {
    justify-content: center;
    gap: 3rem;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #TopPage #kv .wrap .kv_open li {
    max-width: none;
  }
  #TopPage main {
    margin: 0;
  }
  #TopPage main .wrap {
    margin: 0 auto;
  }
  #TopPage main h2 {
    font-size: 4rem;
    margin-bottom: 5rem;
    letter-spacing: 0.2rem;
    padding-bottom: 1.4rem;
    background-image: radial-gradient(circle, var(--clr_sub8) 0.55rem, transparent 0.55rem);
    background-size: 2.1rem 1.1rem;
  }
  #TopPage main h2::before {
    width: 3.8rem;
    height: 2.5rem;
  }
  #TopPage main #info {
    padding: 7rem 0 12rem;
    margin: 0;
  }
  #TopPage main #info .bnr_recruit {
    margin-bottom: 7rem;
  }
  #TopPage main #info .flex_LRTB {
    align-items: flex-start;
    justify-content: center;
    gap: 12rem;
  }
  #TopPage main #info h2 {
    width: 17rem;
    margin: 0;
  }
  #TopPage main #info dl {
    max-height: 60rem;
    width: 65rem;
    padding-right: 3rem;
  }
  #TopPage main #info dl::-webkit-scrollbar {
    width: 2rem;
  }
  #TopPage main #info dl dt {
    padding: 0 3.5rem 2rem 0;
  }
  #TopPage main #info dl dt [role=button] {
    font-size: 2.6rem;
  }
  #TopPage main #info dl dt .date {
    width: 11.5rem;
    height: 2.6rem;
    border-radius: 1.5rem;
    padding: 0;
  }
  #TopPage main #info dl dt::before {
    font-size: 2.5rem;
    top: 2.6rem;
  }
  #TopPage main #info dl dd {
    margin-bottom: 5rem;
  }
  #TopPage main #feature {
    padding: 12rem 0;
  }
  #TopPage main #feature .inner > ul > li {
    margin-bottom: 8rem;
    min-height: 33rem;
  }
  #TopPage main #feature .inner > ul > li dl {
    width: 50rem;
  }
  #TopPage main #feature .inner > ul > li dl dt {
    font-size: 2.8rem;
    padding: 0 0 3rem 0;
  }
  #TopPage main #feature .inner > ul > li dl dt::after {
    margin-top: 1rem;
    height: 0.5rem;
  }
  #TopPage main #feature .inner > ul > li dl dt div {
    font-size: 1.4rem;
  }
  #TopPage main #feature .inner > ul > li dl dt div em {
    font-size: 4rem;
  }
  #TopPage main #feature .inner > ul > li dl dd {
    text-align: justify;
  }
  #TopPage main #feature .inner > ul > li figure {
    width: 65rem;
    height: 33rem;
  }
  #TopPage main #feature .inner > ul > li figure img {
    max-width: none;
    margin: 0;
  }
  #TopPage main #greeting {
    padding: 12rem 0;
  }
  #TopPage main #greeting h2 {
    background-image: radial-gradient(circle, #fff 0.55rem, transparent 0.55rem);
    background-size: 2.1rem 1.1rem;
  }
  #TopPage main #greeting .flex_LRTB {
    gap: 11rem;
    align-items: flex-start;
  }
  #TopPage main #greeting .inner {
    width: 75rem;
  }
  #TopPage main #greeting .inner p.txt_r {
    margin-top: 5rem;
    font-size: 2.2rem;
  }
  #TopPage main #greeting .inner .btn {
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }
  #TopPage main #greeting figure {
    margin: 0;
    width: 34rem;
  }
  #TopPage main #symptom {
    padding: 12rem 0;
    pointer-events: none;
  }
  #TopPage main #symptom .inner {
    padding: 0;
    background-size: auto;
  }
  #TopPage main #symptom .list_part {
    width: 45rem;
  }
  #TopPage main #symptom .list_part li {
    margin-bottom: 2rem;
  }
  #TopPage main #symptom .list_part li a {
    padding: 1rem 3rem 1.2rem;
    border-radius: 3rem;
  }
  #TopPage main #symptom .list_part li a:hover {
    border-color: var(--clr_linkH);
  }
  #TopPage main #treatment {
    padding: 12rem 0;
  }
  #TopPage main #treatment ul {
    gap: 6rem 10rem;
    justify-content: flex-start;
    width: 112rem;
    margin: auto;
  }
  #TopPage main #treatment ul li {
    width: 20.5rem;
  }
  #TopPage main #treatment ul li a {
    font-size: 2rem;
  }
  #TopPage main #treatment ul li a::before {
    background-size: auto;
    width: 20.4rem;
    height: 20.4rem;
  }
  #TopPage main #treatment ul li a:hover::before {
    transition: transform 0.3s;
    transform: translateY(-0.8rem);
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower main > nav {
  background: var(--clr_sub3);
  padding: 1rem 1.5rem;
  margin-top: 5rem;
}
#lower .breadcrumb {
  margin: 0 auto;
  display: flex;
}
#lower .breadcrumb li {
  color: var(--clr_txt);
}
#lower .breadcrumb li a {
  border: none;
  color: var(--clr_txt);
}
#lower .breadcrumb li:first-child::after {
  content: "＞";
  padding: 0 1rem;
}
#lower main {
  margin-top: 1rem;
}
#lower main section {
  margin: 4rem auto 4rem;
  padding: 1rem 0 0 0;
}
#lower main section section {
  margin: 3.5rem auto;
  padding: 1rem 0 0 0;
}
#lower main section section section {
  margin: 3rem auto;
  padding: 0 0 0 0;
}
#lower main section section section section {
  margin: 2.5rem auto;
  padding: 0.1rem 0 0 0;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  word-break: auto-phrase;
}
#lower h1 {
  font-weight: 500;
  margin: 0 0;
  font-size: 2rem;
  line-height: 1.2;
  padding: 0 1rem;
  height: 8rem;
  align-content: center;
  text-align: center;
  background: url(../img/h1.jpg) no-repeat center;
  background-size: cover;
  color: var(--clr_sub2);
  text-shadow: 0 0.3rem 1.5rem #fff;
}
#lower h1 span {
  display: block;
}
#lower h2 {
  font-size: 1.9rem;
  text-align: center;
  margin: 0 auto 2rem;
  word-break: auto-phrase;
  position: relative;
  padding: 0 0 0.6rem;
  width: fit-content;
  color: var(--clr_main);
  background-image: radial-gradient(circle, var(--clr_sub8) 0.25rem, transparent 0.25rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 1rem 0.5rem;
}
#lower h2::before {
  background: url(../img/h2.png) no-repeat top center;
  content: "";
  width: 3.5rem;
  height: 2rem;
  background-size: contain;
  display: block;
  margin: auto;
}
#lower h2 + section h3 {
  margin-top: 0;
}
#lower h3 {
  margin: 0 0 2rem;
  font-size: 1.8rem;
  line-height: 1.35;
  padding: 0.3rem 0;
  display: flex;
  align-items: stretch;
  gap: 0.9rem;
  color: var(--clr_sub1);
}
#lower h3::before {
  content: "";
  display: block;
  height: auto;
  border-radius: 0.5rem;
  width: 0.5rem;
  background: var(--clr_sub1);
}
#lower h3 + section h4 {
  margin-top: 0;
}
#lower h4 {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.35;
  padding: 0.6rem 1rem;
  color: var(--clr_sub1);
  border: 0.2rem solid var(--clr_sub8);
  background: var(--clr_sub3);
  border-radius: 1rem;
}
#lower h5 {
  margin: 0 0.5rem 2rem;
  font-size: 1.4rem;
  line-height: 1.35;
  padding: 0 0 0.6rem;
  color: var(--clr_main);
  border-bottom: 0.2rem dotted var(--clr_main);
}
#lower h6 {
  color: var(--clr_sub1);
  border: 0.2rem solid var(--clr_sub1);
  background: transparent linear-gradient(180deg, #e3f8ff 0%, #feffff 100%) 0% 0% no-repeat padding-box;
  border-radius: 1rem;
  font-size: 1.4rem;
  padding: 0.5rem 0.2rem;
  margin: 0 0 2rem;
}
#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 .breadcrumb {
    margin: 0 auto 0;
    width: 120rem;
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 10;
  }
  #lower h1 {
    font-size: 4.2rem;
    margin: 0 auto 0;
    line-height: 1;
    height: 30rem;
  }
  #lower .nav_fixed h1 {
    margin-top: 5rem;
  }
  #lower main {
    padding: 0 0;
  }
  #lower main > nav {
    margin-top: 13rem;
  }
  #lower main .wrap > .inner {
    margin: 10rem 0;
  }
  #lower main .wrap > .inner + section {
    padding-top: 6rem;
  }
  #lower main .wrap > .inner + section h2 {
    margin-top: 0;
  }
  #lower main .wrap > section {
    margin: 12rem auto 12rem;
  }
  #lower main .wrap > section > section {
    margin: 8rem auto 8rem;
  }
  #lower main .wrap > section > section > section {
    margin: 7rem auto 7rem;
  }
  #lower main .wrap > section > section > section > section {
    margin: 6rem auto 6rem;
  }
  #lower main h2 {
    font-size: 4rem;
    margin-bottom: 5rem;
    letter-spacing: 0.2rem;
    padding-bottom: 1.4rem;
    background-image: radial-gradient(circle, var(--clr_sub8) 0.55rem, transparent 0.55rem);
    background-size: 2.1rem 1.1rem;
  }
  #lower main h2::before {
    width: 3.8rem;
    height: 2.5rem;
  }
  #lower main h3 {
    font-size: 3.2rem;
    margin: 0 0 3rem;
    gap: 2rem;
  }
  #lower main h3::before {
    width: 1rem;
    border-radius: 1rem;
  }
  #lower main h3 + section h4 {
    margin-top: 2rem;
  }
  #lower main h4 {
    font-size: 2.6rem;
    padding: 2rem 3rem;
    margin: 0 0 2rem;
    border-width: 0.3rem;
    border-radius: 3rem;
  }
  #lower main h5 {
    margin: 0 0 2rem;
    font-size: 2.4rem;
    padding: 0 0 0 1rem;
  }
  #lower main h6 {
    font-size: 2rem;
    margin: 0 0 2rem;
    padding: 1.2rem 2rem;
    border-radius: 3rem;
  }
}
/* 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_main);
  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_sub4);
}
#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 #access main .flex_LRTB .overviewL {
    width: 63rem;
  }
  #lower #access main .flex_LRTB .gmap {
    height: auto !important;
    width: 50rem;
  }
  #lower #ortho dl.box2 dt::before {
    font-family: "fontello";
    content: "\f138";
    padding-right: 0.3rem;
    font-weight: bold;
    color: var(--clr_link);
  }
}
#lower {
  /* 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;
    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;
  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: "\e80a";
  transform: scale(-1, 1);
}

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

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

@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 */
