@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
/* CSS変数 */
:root {
  --clr_txt:#333;
  --clr_bg:#FFF;
  --clr_link:#F3BD7B;
  --clr_linkH:#F5C72D;
  --clr_main:#FFA843;
  --clr_sub1:#A9C96C;
  --clr_sub2:#F3BD7B;
  --clr_sub3:#F6FCE5;
  --clr_sub4:#FFF8EC;
  --clr_sub5:#FFD69C;
  --clr_sub6:#B86504;
  --clr_sub7:#DCF6A9;
  --clr_sub8:#66950B;
  --clr_sub9:#E67C00;
  --clr_sub10:#707070;
  --clr_sub11:#FFD69C;
  --clr_sub12:#90AB5C;
  --red:#ff4a43;
  --blue:#439aff;
  --green:#A9C96C;
  --orange:#FFA843;
}

/* _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;
}

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

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

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

.bold {
  font-weight: bold;
}

em {
  font-style: normal;
}

.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_red {
  color: var(--red) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w_13 {
  width: 13% !important;
}

.w_15 {
  width: 15% !important;
}

.w_20 {
  width: 20% !important;
}

.w_25 {
  width: 25% !important;
}

.w_30 {
  width: 30% !important;
}

.w_35 {
  width: 35% !important;
}

.w_40 {
  width: 40% !important;
}

.w_45 {
  width: 45% !important;
}

.w_50 {
  width: 50% !important;
}

.w_55 {
  width: 55% !important;
}

.w_60 {
  width: 60% !important;
}

.w_65 {
  width: 65% !important;
}

.w_70 {
  width: 70% !important;
}

.w_75 {
  width: 75% !important;
}

.w_80 {
  width: 80% !important;
}

.w_85 {
  width: 85% !important;
}

.w_90 {
  width: 90% !important;
}

.w_95 {
  width: 95% !important;
}

.w_100 {
  width: 100% !important;
}

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

@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 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -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%;
  }
  .flex_LRTB.fourth > * {
    width: 24%;
  }
}
/* ----------------------------------------------------------------------------------
リストなど　_basic.scss
---------------------------------------------------------------------------------- */
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
ul {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
ul li {
  margin: 0 0 10px;
  padding: 0;
}

/* シンプル -------------------------------------- */
ul.list_sim {
  margin: 0 0 10px 20px;
}
ul.list_sim > li {
  margin: 0 0 8px 0;
  padding: 0;
}
ul.list_sim > li::before {
  position: relative;
  top: -0.1em;
  left: -0.5em;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  content: "";
  border-radius: 100%;
  background: var(--clr_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;
  margin-right: 0.1em;
  color: #f0013c;
}

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

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

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

/* 数値 -------------------------------------- */
ol.list_num {
  -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 {
  background: var(--clr_sub4);
  margin-bottom: 5rem;
  padding: 1.5rem 1.5rem;
  position: relative;
}
ol.list_flow > li > dl > dt {
  font-weight: bold;
  font-size: 130%;
  margin-bottom: 0.5em;
  color: var(--clr_main);
  border-bottom: 0.1rem solid var(--clr_main);
  padding-bottom: 0.2rem;
}
ol.list_flow > li::after {
  background: var(--clr_sub2);
  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 {
    width: 116rem;
    margin: auto;
  }
  ol.list_flow > li {
    padding: 2rem;
    margin-bottom: 7rem;
  }
  ol.list_flow > li::after {
    width: 6rem;
    height: 3rem;
    bottom: -5rem;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.dl_career dd {
  margin: 0 0 1em 5px;
}

@media screen and (min-width: 48em), print {
  .dl_career {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .dl_career dt {
    width: 6em;
  }
  .dl_career dd {
    width: calc(100% - 11em);
  }
}
/* dtシンプル -------------------------------------- */
.dl_sim {
  margin: 0 auto 1.5rem;
}
.dl_sim > dt {
  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 2rem 0;
}
.dl_def > dt {
  font-weight: bold;
  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_flow {
  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 var(--clr_main);
  border-right: 0.1rem solid var(--clr_main);
  border-top: 0.1rem solid var(--clr_main);
  border-bottom: 0.1rem solid var(--clr_main);
  padding: 0;
}
.dl_flow dt,
.dl_flow dd {
  border-bottom: 0.1rem solid var(--clr_main);
  margin: 0;
  padding: 0.5rem;
}
.dl_flow dt:last-child,
.dl_flow dd:last-child {
  border-bottom: none;
}
.dl_flow dt {
  color: var(--clr_sub3);
  background: var(--clr_main);
  border-bottom-color: #fff;
}
.dl_flow dt:nth-last-child(2) {
  border-bottom: none;
}

@media screen and (min-width: 48em), print {
  .dl_flow dt,
  .dl_flow 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_sub4);
  border-radius: 0.5rem;
}
.box1 ul li::before,
.box2 ul li::before,
.box3 ul li::before {
  color: var(--clr_main);
}
.box1 > dt,
.box2 > dt,
.box3 > dt {
  border-bottom: var(--clr_main) dotted 2px;
  margin-bottom: 1em;
  padding-bottom: 5px;
  font-weight: bold;
}
.box1 > dd,
.box2 > dd,
.box3 > dd {
  margin-bottom: 1.5rem;
}
.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_sub3);
}
.box2 > dt {
  border-bottom: var(--clr_sub1) dotted 2px;
}
.box2 > dd dt {
  color: var(--clr_sub1);
}
.box2 ul.list_maru > li::before {
  color: var(--clr_sub1);
}

.box3 {
  background: #eee;
}

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

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

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

a:hover img {
  opacity: 0.8;
}

a.btn {
  background: var(--clr_link) url(../img/btn_bg.png) no-repeat center;
  background-size: contain;
  color: #fff !important;
  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;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  line-height: 1;
  position: relative;
  font-size: 110%;
  margin: 1rem auto;
  border: none;
}
a.btn::after {
  content: "2";
  font-family: fontello;
  padding-left: 1rem;
}
a.btn:hover {
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
  background-image: url(../img/btn_bg_h.png);
  background-color: var(--clr_linkH);
}

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

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

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

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

/* /_module.scss　出力ここまで */
/* _common.scss　出力 */
@font-face {
  font-family: "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;
}

* {
  -webkit-box-sizing: border-box;
          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, 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;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  position: relative;
}

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

main {
  line-height: 1.4;
}

.inner {
  padding: 0;
}

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

section {
  margin-bottom: 3rem;
}

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

/* ハンバーガーメニュー  -------------------------------------- */
.sp_top {
  z-index: 1000;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 10px 10px -6px rgba(100, 100, 100, 0.1);
          box-shadow: 0px 10px 10px -6px rgba(100, 100, 100, 0.1);
}
.sp_top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 100%;
  margin: 0;
}
.sp_top ul li {
  width: 19.8%;
  margin: 0;
  letter-spacing: normal;
  text-align: center;
  border-right: 0.1rem solid #fff;
}
.sp_top ul li a,
.sp_top ul li button {
  display: block;
  width: 100%;
  color: #fff;
  background: var(--clr_main);
  padding: 0.5rem 0 0.7rem 0;
}
.sp_top ul li a::before,
.sp_top ul li button::before {
  display: block;
  content: "";
  background: url(../img/icon_home.png) no-repeat center;
  height: 2.3rem;
  width: 2.5rem;
  margin: auto;
}
.sp_top ul li:nth-child(3) a, .sp_top ul li:nth-child(3) button {
  background: var(--clr_sub12);
}
.sp_top ul li:nth-child(3) a::before {
  background-image: url(../img/icon_rsv.png);
}
.sp_top ul li:nth-child(2) a::before {
  background-image: url(../img/icon_first.png);
}
.sp_top ul li:nth-child(4) a::before {
  background-image: url(../img/icon_access.png);
}
.sp_top ul li:last-child {
  border-right: none;
}
.sp_top ul li:last-child button {
  background: var(--clr_sub1);
}
.sp_top ul li:last-child button::before {
  background-image: url(../img/icon_menu.png);
}
.sp_top.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*
  + div.overlay  + div + #kv,
  + div.overlay + h1 {
      margin-top: 7rem !important;
  }*/
}

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

#nav {
  width: 100%;
  padding: 1rem 2rem 2rem;
  position: absolute;
  right: -100vw;
  top: 4.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 11;
  position: fixed;
  max-height: 94%;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  background: #eee;
}
#nav a {
  text-decoration: none;
  background: #fff;
  display: block;
  line-height: 1;
  color: #5e5245;
}
#nav a.n_reserve {
  display: none;
}
#nav ul.gnav > li {
  margin: 1.5rem 0;
}
#nav ul.gnav > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 3.5rem;
  padding-left: 1rem;
}
#nav ul.gnav > li > a::before {
  font-family: fontello;
  content: "\f006";
  color: var(--clr_main);
  width: 1.8rem;
  display: inline-block;
}
#nav ul.gnav > li.dropdown a:before {
  content: "\f004";
}
#nav ul.gnav > li.dropdown a.open::before {
  content: "\f005";
}
#nav .dropdown {
  background: #fff;
}
#nav .dropdown > a {
  margin: 1.5rem 0 0;
}
#nav .dropdown ul {
  margin: 0;
  padding: 0 0 1rem;
  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;
}
#nav .dropdown ul li {
  width: 48%;
  margin: 0.7rem 0;
}
#nav .dropdown ul li a {
  display: block;
  padding-left: 3rem;
}
#nav .dropdown ul li a::before {
  content: "2" !important;
  font-family: fontello;
  padding-right: 0.3rem;
}

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

@media screen and (min-width: 48em), print {
  header {
    padding: 0;
    width: 100%;
    min-width: 1280px;
    margin: 0;
    position: relative;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
  }
  header > .wrap {
    margin: 0 auto;
    padding: 1rem 4rem;
    -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;
  }
  header > .wrap .h_left {
    width: 48rem;
  }
  header > .wrap .logo {
    width: 48rem;
    height: 5.2rem;
    margin: 0 auto;
    padding: 0;
    display: block;
    background: url(../img/logo.svg) no-repeat center center;
    background-size: contain;
  }
  header > .wrap .logo img {
    opacity: 0;
  }
  header > .wrap .h_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 1;
    letter-spacing: 0;
    text-align: right;
  }
  header > .wrap .h_right ul.sp_n {
    margin: 0 1rem;
    padding: 0;
  }
  header > .wrap .h_right ul.sp_n li.h_tel {
    color: var(--clr_main);
    font-size: 3rem;
    height: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 1.1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 3.6rem;
    line-height: 4rem;
    margin: 0 0 0 auto;
  }
  header > .wrap .h_right ul.sp_n li.h_tel a {
    color: var(--clr_main);
  }
  header > .wrap .h_right ul.sp_n li.h_tel span:first-child {
    background: var(--clr_main);
    color: #fff;
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: normal;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #nav {
    padding: 0 0;
    margin: 0.5rem auto 1rem;
    font-weight: normal;
    position: static;
    overflow: visible !important;
    -webkit-transition: none;
    transition: none;
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  #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;
    padding: 0 4rem;
    max-width: none;
    line-height: 1;
    margin: 0 auto;
    text-align: center;
    font-size: 1.6rem;
    width: 1280px;
  }
  #nav ul.gnav > li {
    margin: 0;
    position: relative;
    white-space: nowrap;
    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;
    width: 16.6666666667%;
  }
  #nav ul.gnav > li::before {
    content: "";
    display: block;
    width: 0.1rem;
    height: 2rem;
    background: var(--clr_sub9);
  }
  #nav ul.gnav > li > a {
    text-align: center;
    padding: 0 2.4rem;
    position: relative;
    margin: 0;
    width: 100%;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    place-items: center;
    line-height: 1;
    color: var(--clr_txt);
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    background-color: transparent;
  }
  #nav ul.gnav > li > a:hover {
    border-radius: 0.6rem;
    background: var(--clr_sub3);
  }
  #nav ul.gnav > li > a::before {
    display: none;
  }
  #nav ul.gnav > li > a::after {
    content: "Home";
    color: #ccc;
    font-size: 1.2rem;
  }
  #nav ul.gnav > li.doctor a::after {
    content: "Doctor";
  }
  #nav ul.gnav > li.clinic a::after {
    content: "Clinic";
  }
  #nav ul.gnav > li.dropdown > a::after {
    content: "Treatment";
  }
  #nav ul.gnav > li.access::after {
    content: "";
    display: block !important;
    width: 0.1rem;
    height: 2rem;
    background: var(--clr_sub9);
  }
  #nav ul.gnav > li.access a::after {
    content: "Access";
  }
  #nav ul.gnav > li.first a::after {
    content: "First";
  }
  #nav ul.gnav > li.dropdown {
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
  #nav ul.gnav > li.dropdown > a {
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    padding: 1.2rem 1.2rem;
    margin: 0;
    z-index: 100;
    top: 5rem;
    background: #fff;
    text-align: left;
    overflow: hidden;
    border-radius: 1.2rem;
    -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 1rem rgba(0, 0, 0, 0.2);
    width: auto;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0 auto;
    display: block;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    padding: 0.9rem 1rem;
    color: var(--clr_txt);
    margin: 0;
    -webkit-transition: background 0.3s, color 0.3s;
    transition: background 0.3s, color 0.3s;
    display: block;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    background: #eff4fa;
  }
  #nav.fixed {
    position: fixed;
    width: 100%;
    height: 4.5rem;
    min-width: 1280px;
    margin: 0 auto;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.8);
    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;
  }
  #nav.fixed + * {
    margin-top: 7rem !important;
  }
  #nav.fixed + div + #kv {
    padding-top: 66rem;
  }
}
/* 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;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
.footer_bg {
  background: url(../img/overview_bg.jpg) no-repeat center top 28.5rem;
  background-size: cover;
}

#overview {
  margin: 0 0;
  padding: 4rem 0;
  line-height: 1.4;
  color: #333;
}
#overview .overview_bg {
  padding: 3rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}
#overview .logo {
  padding-bottom: 1rem;
}
#overview .logo img {
  width: 24rem;
  margin: 0 auto;
}
#overview .o_tel {
  font-size: 2rem;
  text-align: center;
  color: var(--clr_sub2);
}
#overview .o_tel::before {
  content: "Tel:";
  font-size: 1.2rem;
}
#overview .o_tel a {
  color: var(--clr_sub2);
}
#overview .overviewL,
#overview .overviewR {
  max-width: 37rem;
  margin: 1rem auto 2rem;
}

.dl_overview {
  margin-bottom: 0;
}
.dl_overview > dt {
  color: var(--clr_sub1);
  margin-bottom: 1rem;
}
.dl_overview > dt::before {
  font-family: fontello;
  content: "\f006";
  padding-right: 0.3rem;
}
.dl_overview > dd {
  margin-bottom: 2rem;
}

.ymap + div {
  height: 29rem !important;
  width: 100% !important;
}

@media screen and (min-width: 48em), print {
  .footer_bg {
    background-position: top 49.5rem center;
  }
  #overview {
    padding: 6rem 0;
    margin: 0;
    font-size: 1.8rem;
  }
  #overview .logo {
    padding: 0;
  }
  #overview .logo img {
    width: 58.6rem;
    margin: 0 auto 0;
  }
  #overview .o_tel {
    font-size: 3.6rem;
    margin-bottom: 2.7rem;
  }
  #overview .o_tel::before {
    font-size: 2rem;
  }
  #overview .overview_bg {
    padding: 2.5rem 6rem;
  }
  #overview .overview_bg div.flex_LRTB {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #overview .overviewL,
  #overview .overviewR {
    width: 45rem;
    max-width: none;
    margin: 0;
  }
  #overview .overviewL .dl_overview,
  #overview .overviewR .dl_overview {
    font-size: 1.6rem;
  }
  #overview .overviewL .tbl_time,
  #overview .overviewR .tbl_time {
    font-size: 1.4rem;
  }
  #overview .logo {
    margin: auto;
    width: 68.5rem;
  }
  .dl_overview {
    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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .dl_overview > dt {
    width: 14rem;
    margin: 0 0 1.3rem 0;
  }
  .dl_overview > dd {
    width: calc(100% - 14rem);
    margin: 0 0 1.3rem 0;
  }
  .ymap + div {
    height: 50rem !important;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  text-align: center;
}
.tbl_time table {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  caption-side: bottom;
  line-height: 1;
}
.tbl_time table caption {
  margin-top: 0.5rem;
  margin-left: 0.7rem;
  line-height: 1.4;
}
.tbl_time table thead th {
  padding: 0.7rem 0.2rem;
  font-weight: normal;
  background: var(--clr_main);
  color: #fff;
}
.tbl_time table tbody th,
.tbl_time table tbody td {
  padding: 0.7rem 0;
  vertical-align: middle;
  font-weight: normal;
  border-bottom: 0.1rem solid var(--clr_main);
  background: #fff;
}
.tbl_time table tbody tr:last-child th,
.tbl_time table tbody tr:last-child td {
  border-bottom-width: 0.2rem;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    margin: 0 0 3rem;
  }
  .tbl_time table thead th {
    padding: 0.8rem 0.9rem;
  }
  .tbl_time table thead th:first-child {
    letter-spacing: 0.4em;
  }
  .tbl_time table tbody tr th {
    padding: 1.7rem 1.5rem;
    line-height: 1;
    width: 17rem;
    letter-spacing: 0.1em;
  }
  .tbl_time table tbody tr td {
    padding: 1.7rem 0;
  }
  .tbl_time table caption {
    margin-top: 1rem;
  }
}
/* ページトップ -------------------------------------- */
.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: var(--clr_sub4);
  margin: 0;
  width: 100%;
  height: 4rem;
  padding: 0.1rem 0;
  text-align: center;
  z-index: 100;
  letter-spacing: normal;
  font-size: 1.4rem;
}
.sp_bottom li {
  width: calc(100% - 4.21rem);
  position: relative;
  margin: 0;
  height: 100%;
}
.sp_bottom li a {
  padding: 1rem 0;
  color: var(--clr_sub4);
  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%;
}
.sp_bottom li:nth-child(1) a {
  background: var(--clr_sub1);
}
.sp_bottom li:nth-child(2) a::before {
  display: inline-block;
  content: "";
  background: url(../img/icon_tel.png) no-repeat center;
  height: 2.3rem;
  width: 2.4rem;
}
.sp_bottom li:last-child {
  width: 4.2rem;
}
.sp_bottom li:last-child a {
  background: var(--clr_sub9);
}

/*アニメーション*/
@-webkit-keyframes bound {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes bound {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media screen and (min-width: 48em), print {
  .sp_bottom {
    background-color: transparent;
  }
  .sp_bottom li:nth-child(1) {
    display: none;
  }
  .sp_bottom li:nth-child(2) {
    display: none;
  }
  #pageup a {
    display: -ms-grid;
    display: grid;
    place-items: center;
    position: fixed;
    bottom: -15rem;
    right: 1rem;
    z-index: 100;
    width: 5rem;
    height: 5rem;
    font-size: 3rem;
    -webkit-transition: bottom 0.8s;
    transition: bottom 0.8s;
    border-radius: 50%;
    color: #fff;
    line-height: 3rem;
    background: var(--clr_sub1);
  }
  #pageup a:hover {
    -webkit-animation: bound 0.3s ease infinite alternate;
            animation: bound 0.3s ease infinite alternate;
  }
  #pageup.block a {
    bottom: 1rem;
  }
  .pc_right {
    position: fixed;
    top: 30rem;
    right: 0;
    z-index: 100;
  }
}
/* footer -------------------------------------- */
footer {
  background: rgba(255, 255, 255, 0.8);
}
footer .wrap {
  display: none;
}

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

@media screen and (min-width: 48em), print {
  footer {
    display: block;
    margin: 0 auto 0;
  }
  footer .wrap {
    display: block;
    padding: 2.5rem 0;
  }
  footer .wrap > ul {
    margin: 0 auto 2rem;
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  footer .wrap > ul:last-child {
    margin-bottom: 0;
  }
  footer .wrap > ul > li {
    padding: 0;
    margin: 0 0;
    border-left: 0.1rem solid var(--clr_sub10);
  }
  footer .wrap > ul > li a {
    color: var(--clr_sub10);
    padding: 0 3rem;
    line-height: 1;
    font-size: 1.4rem;
  }
  footer .wrap > ul > li:last-child {
    border-right: 0.1rem solid var(--clr_sub10);
  }
  footer .wrap > ul > li.dropdown {
    display: none;
  }
  address {
    margin: 0 auto;
    padding: 0.8rem;
    border-top: 0.1rem solid #fff;
  }
}
/*
nav,
footer,
#treatment,
.pc_right li:last-child{
    a {
              pointer-events: none;
    }
}

a[href*="internal.html"],
a[href*="respiratory.html"],
a[href*="lifestyle-related.html"],
a[href*="checkup.html"],
a[href*="vaccination.html"]
{ pointer-events: none; }*/
/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage #kv {
  background-size: auto 20rem;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin: 0 auto 1rem;
  padding-top: 17rem;
}
#TopPage #kv .kv_txt {
  line-height: 1.77;
  padding: 3rem 1rem;
  font-size: 1.4rem;
  letter-spacing: normal;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(10%, rgba(255, 255, 255, 0.7)), color-stop(17%, #ffffff)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.7) 10%, #ffffff 17%) 0% 0% no-repeat padding-box;
  color: var(--clr_sub6);
  text-align: center;
}
#TopPage .sp_top.fixed + div + #kv {
  margin-top: 4.7rem !important;
}
#TopPage main {
  margin: 0 0;
}
#TopPage main section {
  margin-bottom: 0;
}
#TopPage h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  line-height: 1;
  color: var(--clr_main);
  background: url(../img/h2.png) no-repeat center;
  background-size: auto 8rem;
  height: 8rem;
  font-weight: normal;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
}
#TopPage h2 span {
  display: block;
  font-size: 1.2rem;
  color: var(--clr_sub11);
}
#TopPage .pickup {
  width: 96%;
  margin: 2rem auto 6rem;
  border: 3px solid var(--orange);
  padding: 1rem;
}
#TopPage #info {
  padding: 2rem 0 6rem;
  background: url(../img/news_orn02.png) no-repeat top center, url(../img/news_orn01.png) no-repeat bottom center;
  background-size: auto 6rem;
}
#TopPage #info .tbl_time {
  margin-bottom: 3rem;
}
#TopPage #info dl {
  padding: 0 1rem 0.5rem 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 0.1rem dashed #ccc;
  position: relative;
  max-height: 20rem;
  overflow-y: auto;
}
#TopPage #info dl::-webkit-scrollbar {
  width: 1rem;
}
#TopPage #info dl::-webkit-scrollbar-track {
  background: var(--clr_sub4) 0% 0% no-repeat padding-box;
  border-radius: 7px;
}
#TopPage #info dl::-webkit-scrollbar-thumb {
  background: var(--clr_sub1);
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#TopPage #info dl dt {
  position: relative;
  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;
  padding: 1rem 0 0 1.6rem;
  margin: 1rem 0 0;
  color: var(--clr_sub1);
  font-weight: bold;
  font-size: 1.4rem;
  cursor: pointer;
  border-top: 0.1rem dashed #ccc;
}
#TopPage #info dl dt::before {
  content: "\e80b";
  font-family: fontello;
  position: absolute;
  top: 1rem;
  left: 0;
  font-weight: normal;
}
#TopPage #info dl dt .date {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}
#TopPage #info dl dt .new_tag {
  display: none;
}
#TopPage #info dl dt:first-child {
  border-top: none;
  margin-top: 0;
}
#TopPage #info dl dt.close::before {
  content: "\e80c";
}
#TopPage #info dl dt.close .more {
  display: none;
}
#TopPage #info dl dd {
  padding-left: 1.6rem;
}
#TopPage #info dl dd .news_lnk {
  margin-bottom: 1em;
}
#TopPage #info dl dd:not(:nth-of-type(-n + 3)) {
  display: none;
}
#TopPage #greeting {
  padding: 2rem 0;
  margin-bottom: 4rem;
  background: url(../img/greeting_bg.jpg) no-repeat top center;
  background-size: cover;
}
#TopPage #greeting h2 {
  background-image: url(../img/h2_w.png);
}
#TopPage #features {
  padding: 5rem 0 3rem;
  overflow: hidden;
}
#TopPage #features ul {
  margin: 4rem 0;
}
#TopPage #features ul li {
  margin-bottom: 4rem;
  position: relative;
  padding-bottom: 1rem;
}
#TopPage #features ul li figure::before {
  content: "";
  display: block;
  width: calc(100vw - 5rem);
  height: 5rem;
  background: var(--clr_sub11);
  position: absolute;
  top: 2.25rem;
  left: 5rem;
}
#TopPage #features ul li img {
  display: block;
  width: 20rem;
  margin: 0 auto 0 0;
  position: relative;
  z-index: 1;
}
#TopPage #features ul li:nth-child(even) figure::before {
  right: 5rem;
  left: auto;
}
#TopPage #features ul li:nth-child(even) img {
  margin: 0 0 0 auto;
}
#TopPage #features ul li dl > dt {
  font-size: 1.5rem;
  padding: 0.5rem 0;
  color: var(--clr_main);
  margin-bottom: 0.7rem;
  border-bottom: 0.1rem solid var(--clr_main);
}
#TopPage #treatments {
  padding: 5rem 0;
  background: transparent -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dcf6a9)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, #ffffff 0%, #dcf6a9 100%) 0% 0% no-repeat padding-box;
}
#TopPage #treatments a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#TopPage #treatments a:hover {
  -webkit-transform: translateY(-0.4rem);
          transform: translateY(-0.4rem);
}
#TopPage #treatments ul {
  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;
  gap: 2rem 0;
}
#TopPage #treatments ul li {
  width: 49%;
}
#TopPage #treatments ul li a {
  display: block;
  text-align: center;
  padding: 6.5rem 1rem 0;
  width: 100%;
  background: url(../img/treatments_internal.png) no-repeat center top;
  background-size: auto 6rem;
  border: none;
  color: var(--clr_sub8);
}
#TopPage #treatments ul li.chinese_medicine a {
  background-image: url(../img/treatments_chinese_medicine.png);
}
#TopPage #treatments ul li.pediatrics a {
  background-image: url(../img/treatments_pediatrics.png);
}
#TopPage #treatments ul li.psychosomatic a {
  background-image: url(../img/treatments_psychosomatic.png);
}
#TopPage #treatments ul li.vaccination a {
  background-image: url(../img/treatments_vaccination.png);
}

@media screen and (min-width: 48em), print {
  #TopPage .sp_top.fixed + div + #kv {
    margin-top: inherit !important;
  }
  #TopPage #header.fixed + a + .sp_top.fixed + div + #kv {
    margin-top: 7rem !important;
  }
  #TopPage #kv {
    margin: 0 auto 0;
    background-size: auto;
    padding-top: 54rem;
  }
  #TopPage #kv .wrap {
    margin: 0 auto;
    position: relative;
  }
  #TopPage #kv .kv_txt {
    font-size: 2.6rem;
    padding: 13rem 0 3rem;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(23%, rgba(255, 255, 255, 0.5)), color-stop(90%, #ffffff)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.5) 23%, #ffffff 90%) 0% 0% no-repeat padding-box;
  }
  #TopPage main {
    padding: 0;
  }
  #TopPage main h2 {
    font-size: 3rem;
    margin: 0 auto;
    height: 19.5rem;
    line-height: 1;
    background-size: auto;
    letter-spacing: 0.72rem;
  }
  #TopPage main h2 span {
    font-size: 1.4rem;
  }
  #TopPage main .pickup {
    max-width: 860px;
    padding: 2rem;
  }
  #TopPage main #info {
    background-size: auto;
    padding: 6rem 0;
  }
  #TopPage main #info .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto;
  }
  #TopPage main #info .tbl_time {
    width: 45rem;
    font-size: 1.4rem;
  }
  #TopPage main #info dl {
    width: 65rem;
    margin: 0 auto;
    max-height: 40rem;
    padding: 0 1rem 0 0;
  }
  #TopPage main #info dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 2.2rem;
    padding-top: 1rem;
    line-height: 2.9rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    gap: 3rem;
  }
  #TopPage main #info dl dt div {
    width: 48rem;
  }
  #TopPage main #info dl dt .date {
    font-size: 1.6rem;
  }
  #TopPage main #info dl dd {
    padding-left: 2.2rem;
    margin-bottom: 3rem;
  }
  #TopPage main #greeting .inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #TopPage main #greeting .inner > div {
    width: 82rem;
  }
  #TopPage main #greeting .inner > div p {
    line-height: 2;
    letter-spacing: 0.108rem;
  }
  #TopPage main #greeting .inner figure {
    width: 29rem;
  }
  #TopPage main #greeting .inner figure .img_c {
    margin: 0 auto 1.4rem;
  }
  #TopPage main #features ul li {
    margin-bottom: 6rem;
  }
  #TopPage main #features ul li .wrap {
    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 main #features ul li figure::before {
    height: 16rem;
    width: 50vw;
    left: auto;
    right: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  #TopPage main #features ul li img {
    width: auto;
  }
  #TopPage main #features ul li dl {
    width: 68rem;
    position: relative;
    margin-top: 2rem;
  }
  #TopPage main #features ul li dl dt {
    font-size: 2.8rem;
    padding: 0 1rem 0.7rem 10rem;
    margin-bottom: 1.5rem;
  }
  #TopPage main #features ul li dl dd {
    padding: 0 1rem 0 10rem;
  }
  #TopPage main #features ul li:nth-child(even) .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #TopPage main #features ul li:nth-child(even) .wrap figure::before {
    left: 50%;
  }
  #TopPage main #features ul li:nth-child(even) .wrap dt {
    padding: 0 10rem 0.7rem 1rem;
  }
  #TopPage main #features ul li:nth-child(even) .wrap dd {
    padding: 0 10rem 0 1rem;
  }
  #TopPage main #treatments {
    padding: 7.6rem 0 10rem;
  }
  #TopPage main #treatments ul {
    width: 1280px;
    padding: 2rem;
    gap: 6.2rem;
    margin: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #treatments ul li {
    width: 16rem;
  }
  #TopPage main #treatments ul li a {
    background-size: auto;
    padding-top: 17rem;
    font-size: 2rem;
    white-space: nowrap;
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower {
  /* main   -------------------------------------- */
}
#lower .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1rem 3rem 1rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#lower .breadcrumb li a {
  color: var(--clr_link);
  border: none;
}
#lower .breadcrumb li:first-child::after {
  content: "\f006";
  font-family: fontello;
  padding: 0 1rem;
}
#lower main {
  margin-top: 1rem;
  margin-bottom: 5rem;
  position: relative;
}
#lower main section {
  margin: 0 auto 4rem;
  padding: 0;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  font-weight: normal;
  word-break: auto-phrase;
}
#lower h1 {
  background: url(../img/h1.jpg) no-repeat center;
  background-size: cover;
  margin: 0 0 2rem;
  font-size: 2rem;
  line-height: 1.2;
  padding: 2.5rem 1rem;
  color: var(--clr_sub2);
  position: relative;
  text-align: center;
}
#lower h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
  line-height: 1;
  color: var(--clr_main);
  background: url(../img/h2.png) no-repeat center;
  background-size: auto 8rem;
  height: 8rem;
  font-weight: normal;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0.5rem;
  padding-top: 1.5rem;
}
#lower h3 {
  margin: 4rem 0 2rem;
  color: #fff;
  background: var(--clr_sub2);
  font-size: 1.8rem;
  padding: 0.5rem 1rem;
}
#lower h4 {
  margin: 0rem 0 2rem;
  font-size: 1.6rem;
  background: url(../img/h4.png) no-repeat center left;
  background-size: 2.5rem auto;
  padding: 0.2rem 0 0.2rem 2.8rem;
  border-bottom: var(--clr_main) solid 0.2rem;
  color: var(--clr_main);
}
#lower h5 {
  margin: 0rem 0 2rem;
  font-size: 1.4rem;
  padding: 0.1rem 0.5rem;
  border-bottom: var(--clr_sub2) dotted 0.1rem;
  color: var(--clr_sub2);
}
#lower h6 {
  margin: 0rem 0 2rem;
  font-size: 1.4rem;
  padding: 0.1rem 0.5rem;
  border-bottom: var(--clr_main) dotted 0.1rem;
  color: var(--clr_main);
}
#lower main {
  display: block;
}
#lower main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
  word-break: break-all;
}
#lower main li,
#lower main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  #lower .breadcrumb {
    margin: 2rem auto 0;
    width: 1280px;
    padding: 0 6rem;
  }
  #lower main {
    padding-bottom: 0;
    margin: 1rem auto 10rem;
    width: 1280px;
  }
  #lower main > .wrap > .inner {
    margin-bottom: 10rem;
  }
  #lower main > .wrap > section {
    margin: 0 auto 7rem;
    padding-top: 5rem;
  }
  #lower main > .wrap > section .inner + section,
  #lower main > .wrap > section .inner + .flex_LRTB.half {
    padding-top: 5rem;
  }
  #lower main > .wrap > section > section {
    margin: 0 auto 1rem;
    padding-top: 7rem;
  }
  #lower main > .wrap > section > section > section {
    margin: 0 auto 1rem;
    padding-top: 6rem;
  }
  #lower main > .wrap > section > section > section > section {
    margin: 0 auto 1rem;
    padding-top: 5rem;
  }
  #lower main > .wrap > section h3 + section {
    padding-top: 2rem;
  }
  #lower h1 {
    font-size: 3.6rem;
    margin: 0 auto 0;
    line-height: 1;
    display: -ms-grid;
    display: grid;
    place-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-size: auto;
    position: relative;
    height: 12rem;
    background-size: auto;
    background-position: center;
  }
  #lower h2 {
    font-size: 3rem;
    margin: 0 auto;
    height: 19.5rem;
    line-height: 1;
    background-size: auto;
    letter-spacing: 0.72rem;
  }
  #lower h3 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    padding: 0.6rem 2rem;
  }
  #lower h3:has(+ section) {
    margin-bottom: 1rem;
  }
  #lower h4 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    padding: 1.2rem 0 1.2rem 5.5rem;
    background-size: auto;
    min-height: 5rem;
  }
  #lower h5 {
    font-size: 2rem;
    margin: 0 0 2.5rem;
    padding: 0.2rem 1rem;
  }
  #lower h6 {
    font-size: 1.8rem;
    margin: 0 0 2.5rem;
    padding: 0.1rem 0 0.1rem 2.6rem;
  }
}
.tbl_scroll {
  overflow-x: scroll;
}

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

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

@media screen and (min-width: 48em), print {
  #lower .tbl_scroll {
    overflow-x: inherit;
  }
  #lower .tbl_def th, #lower .tbl_def td {
    padding: 1.5rem;
  }
}
#lower #clinic a.btn {
  padding: 1rem 3rem;
  width: 100%;
}
#lower #sports_ortho .dl_flow dt {
  width: 100%;
  background: var(--clr_main);
}
#lower #sports_ortho .dl_flow dd {
  width: 100%;
}
#lower #sports_ortho .dl_flow dd ul {
  margin-bottom: 0;
  gap: 0.5em;
}
#lower #sports_ortho .dl_flow dd ul li {
  margin: 0 1.5em 0 0;
}
#lower #sports_ortho .tbl_def {
  width: 30rem;
}
#lower #sports_ortho .tbl_def tbody th {
  width: 5rem;
}
#lower #sports_ortho .tbl_def tbody td {
  width: 12.5rem;
  word-break: auto-phrase;
}

@media screen and (min-width: 48em), print {
  #lower #clinic a.btn {
    padding: 2rem 3rem;
    width: 100%;
  }
  #lower #sports_ortho .dl_flow dt {
    width: 18%;
  }
  #lower #sports_ortho .dl_flow dd {
    width: 82%;
  }
  #lower #sports_ortho .tbl_def {
    width: 100%;
  }
  #lower #sports_ortho .tbl_def tbody th {
    width: 15%;
  }
  #lower #sports_ortho .tbl_def tbody td {
    width: 30%;
  }
  #lower #sports_ortho .tbl_def tbody td:last-child {
    width: 55%;
  }
}
/* 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;
  }
  .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　出力ここまで */