@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
/* CSS変数 */
:root {
  --clr_txt:#333;
  --clr_bg:#DBEDFC;
  --clr_link:#8A1E74;
  --clr_linkH:#277EBE;
  --clr_main:#09A0D8;
  --clr_sub1:#277EBE;
  --clr_sub2:#08A791;
  --clr_sub3:#135B8F;
  --clr_sub4:#DBEDFC;
  --clr_sub5:#BDECE6;
  --clr_sub6:#ECF6FE;
  --clr_sub7:#D7EBFB;
  --clr_sub8:#1C81CC;
  --clr_sub9:#FFF5F8;
  --clr_sub10:#DBEDFC;
  --clr_sub11:#DFF6F3;
  --clr_sub12:#E2F0FB;
  --clr_sub13:#BACCD9;
  --clr_sub14:#D7EBFB;
  --clr_sub15:#1AA7DE;
  --clr_sub16:#F6FAFE;
  --clr_sub17:#CACDD2;
  --clr_sub18:#16B59F;
  --red:#D81241;
  --blue:#09A0D8;
  --green:#04C4AA;
  --orange:#F98D45;
}

/* _reset.scss　出力*/
*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

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

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

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

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

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

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

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

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

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

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

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

a {
  text-decoration: none;
}

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

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

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

.font_s {
  font-size: smaller;
}

.font_l {
  font-size: larger;
}

/* テキストカラー -------------------------------------- */
.fc_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 !important;
  }
}
/* マージン -------------------------------------- */
.mb_00 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

.w_15 {
  width: 15% !important;
}

.w_20 {
  width: 20% !important;
}

.w_25 {
  width: 25% !important;
}

.w_30 {
  width: 30% !important;
}

.w_35 {
  width: 35% !important;
}

.w_40 {
  width: 40% !important;
}

.w_45 {
  width: 45% !important;
}

.w_50 {
  width: 50% !important;
}

.w_55 {
  width: 55% !important;
}

.w_60 {
  width: 60% !important;
}

.w_65 {
  width: 65% !important;
}

.w_70 {
  width: 70% !important;
}

.w_75 {
  width: 75% !important;
}

.w_80 {
  width: 80% !important;
}

.w_85 {
  width: 85% !important;
}

.w_90 {
  width: 90% !important;
}

.w_95 {
  width: 95% !important;
}

.w_100 {
  width: 100% !important;
}

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

@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;
  }
  .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;
  }
  .flex_LRTB.fwrap,
  .flex_RLTB.fwrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* 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%;
  }
}
/* ----------------------------------------------------------------------------------
リストなど　_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 1rem 1rem;
}
ul.list_sim > li {
  margin: 0 0 1rem 1.1em;
  padding: 0;
}
ul.list_sim > li::before {
  display: inline-block;
  content: "・";
  font-weight: bold;
  margin-left: -1.1em;
  color: var(--clr_main);
}

/* ● -------------------------------------- */
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: var(--clr_sub9);
    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: "\e800";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_main);
}

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

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow > li {
  border: 5px solid var(--clr_main);
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 0.5rem 1rem 1rem;
  position: relative;
  background: var(--clr_sub16);
}
ol.list_flow > li > dl > dt {
  font-weight: bold;
  font-size: 140%;
}
ol.list_flow > li > dl > dd {
  margin-top: 0.5em;
}
ol.list_flow > li *:last-child {
  margin-bottom: 0;
}
ol.list_flow > li::after {
  bottom: -30px;
  color: var(--clr_main);
  content: "▼";
  font-size: 24px !important;
  left: 48%;
  position: absolute;
}
ol.list_flow > li:last-child::after {
  /*最後の▼を外す*/
  content: "";
}

@media screen and (min-width: 48em), print {
  ol.list_flow > li {
    padding: 2.5rem 2.5rem;
    /*p.ttl::first-letter {
      font-size: 3rem;
    }*/
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.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: 10em;
  }
  .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;
}
.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: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 0.1rem solid var(--clr_main);
  border-right: 0.1rem solid var(--clr_main);
  border-top: 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 {
  background: #bdebc2;
}

@media screen and (min-width: 48em), print {
  .dl_flow dt,
  .dl_flow dd {
    padding: 1rem;
  }
}
/* テーブルもどき -------------------------------------- */
.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 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .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_sub16);
  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: 15px;
  padding-bottom: 5px;
  font-weight: bold;
}
.box1 > dd,
.box2 > dd,
.box3 > dd {
  margin: 10px;
}
.box1 > dd dt,
.box2 > dd dt,
.box3 > dd dt {
  color: var(--clr_main);
}
.box1 > *:last-child,
.box2 > *:last-child,
.box3 > *:last-child {
  margin-bottom: 0;
}

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

.box3 {
  border: var(--blue) 0.1rem solid;
}

@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);
  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%;
  border-radius: 0.5rem;
}

a.btn_reserve,
a.btn_interview {
  line-height: normal;
  border-radius: 1rem;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 22.7rem;
  background: var(--clr_main) !important;
  color: #fff !important;
  margin: 1rem auto;
  padding: 1rem 0;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
}
a.btn_reserve::before,
a.btn_interview::before {
  content: "\e820";
  font-family: fontello;
  padding-right: 1rem;
  font-weight: normal;
}

a.btn_interview {
  background: var(--clr_sub1) !important;
}
a.btn_interview::before {
  content: "\e80a";
}

@media screen and (min-width: 48em), print {
  a.btn {
    border-radius: 1rem;
  }
  a.btn:hover {
    -webkit-transform: translateY(-0.4rem);
            transform: translateY(-0.4rem);
  }
  .btn_interview,
  .btn_reserve {
    height: 7.4rem;
    font-size: 3.2rem;
  }
  .btn_interview:hover,
  .btn_reserve: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: "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", 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;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%; /* ベースを10pxに */
  }
  body {
    min-width: 1200px;
    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: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  section {
    margin-bottom: 5rem;
  }
  .inner {
    padding: 0;
  }
  main {
    margin-top: 6rem;
  }
}
/* header  -------------------------------------- */
header {
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  position: relative;
  line-height: 1;
  background: #fff;
}
header .wrap {
  margin: 0;
  padding: 0 1rem 1rem;
}
header .logo {
  width: 24.4rem;
  height: 5rem;
  margin: 0 auto 0 1rem;
}
header .logo a {
  background-image: url(../img/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
header .h_right ul.flex_LRTB {
  margin-bottom: 0;
}
header .h_right ul.flex_LRTB li {
  margin-bottom: 0;
  text-align: center;
  font-size: 2rem;
}
header .h_right ul.flex_LRTB li::before {
  font-family: fontello;
  content: "\e80d";
  color: var(--clr_sub15);
}
header .h_right ul.flex_LRTB li:last-child::before {
  content: "\e801";
}
header .h_right ul.flex_LRTB li:last-child a {
  color: var(--clr_txt);
}

/* ハンバーガーメニュー  -------------------------------------- */
.sp_top {
  z-index: 10;
  position: relative;
  background: var(--clr_sub14);
}
.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 var(--clr_sub13);
}
.sp_top ul li.dropdown, .sp_top ul li.doctor {
  display: none;
}
.sp_top ul li a {
  display: -ms-grid;
  display: grid;
  height: 6rem;
  padding: 3rem 0.1rem 0.5rem;
  place-items: center;
  width: 100%;
  color: var(--clr_txt);
  font-size: 1.2rem;
  line-height: 1.2;
  position: relative;
}
.sp_top ul li a::before {
  position: absolute;
  top: 0.5rem;
  display: block;
  font-family: fontello;
  content: "\e80f";
  color: var(--clr_main);
  font-size: 2.2rem;
}
.sp_top ul li.clinic a::before {
  content: "\e80c";
}
.sp_top ul li.information {
  word-break: auto-phrase;
}
.sp_top ul li.information a {
  padding: 3rem 1.1rem 0.5rem;
}
.sp_top ul li.information a::before {
  content: "\e80b";
}
.sp_top ul li.access a::before {
  content: "\e80d";
}
.sp_top ul li:last-child {
  border-right: none;
}
.sp_top ul li:last-child a {
  color: #fff;
  background: var(--clr_sub8);
}
.sp_top ul li:last-child a::before {
  color: #fff;
  content: "\e80e";
}
.sp_top.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.sp_top.fixed + h1,
.sp_top.fixed + div + #kv {
  margin-top: 6rem !important;
}

@media screen and (min-width: 48em), print {
  .sp_top.fixed + h1,
  .sp_top.fixed + div + #kv {
    margin-top: auto !important;
  }
  #nav.fixed + .sp_top.fixed + h1,
  #nav.fixed + .sp_top.fixed + div + #kv .wrap {
    margin-top: 6rem !important;
  }
}
/* ハンバーガーメニュー  -------------------------------------- */
.js-btn {
  margin: 0;
  padding: 0.8rem 0.8rem;
  border: 0;
  border-radius: 0;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  top: 0;
  right: 0;
  /* ボタンの大きさ  */
  width: 4.5rem;
  height: 4.5rem;
  /* 最前面に */
  z-index: 1000;
  background-color: var(--clr_sub14);
  border: none;
  position: absolute;
}

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

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

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

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

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

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

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

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

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

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

#nav.open {
  right: 0;
}

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

@media screen and (min-width: 48em), print {
  header {
    padding: 0;
    width: 100%;
    min-width: 1200px;
    margin: 0;
  }
  header > .wrap {
    margin: 0 auto;
    padding: 2rem 2rem;
    -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 .logo {
    width: 51.2rem;
    height: 5.6rem;
    margin: 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .h_right {
    margin: 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .h_right > ul.flex_LRTB {
    gap: 0.8rem;
  }
  header > .wrap .h_right > ul.flex_LRTB li {
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header > .wrap .h_right > ul.flex_LRTB li::before {
    font-size: 2rem;
  }
  header > .wrap .h_right > ul.flex_LRTB li:last-child {
    font-size: 3.4rem;
  }
  header > .wrap .h_right > ul.flex_LRTB li:last-child::before {
    font-size: 2.5rem;
  }
  .js-btn {
    display: none;
  }
  #nav {
    padding: 0 0;
    margin: 0 auto;
    position: static;
    overflow: visible !important;
    -webkit-transition: none;
    transition: none;
    display: block;
    width: 100%;
    min-width: 1200px;
    height: 6rem;
    font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  }
  #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: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    padding: 0 2rem;
    max-width: none;
    line-height: 1;
    margin: 0 auto;
    text-align: center;
    width: 1200px;
    letter-spacing: normal;
  }
  #nav ul.gnav > li {
    margin: 0;
    padding: 0;
    position: relative;
    min-width: 13rem;
    border-left: 0.1rem solid var(--clr_sub13);
  }
  #nav ul.gnav > li > a {
    text-align: center;
    padding: 0 1em;
    height: 6rem;
    font-size: 2rem;
    position: relative;
    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;
    margin: 0;
    width: 100%;
    line-height: 1;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    color: var(--clr_sub8);
  }
  #nav ul.gnav > li > a::before {
    position: absolute;
    bottom: 0.5rem;
    display: block;
    top: auto;
    left: 20%;
    content: "";
    width: 60%;
    height: 0.3rem;
    background: var(--clr_main);
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    content: "" !important;
  }
  #nav ul.gnav > li > a:hover::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    content: "" !important;
  }
  #nav ul.gnav > li.hard_to_see a {
    background: var(--clr_sub8);
    color: #fff;
  }
  #nav ul.gnav > li.hard_to_see a::before {
    content: "\e80e";
    font-family: fontello;
    display: inline;
    font-size: xx-large;
  }
  #nav ul.gnav > li.dropdown {
    padding: 0;
    margin: 0;
    background-color: transparent;
  }
  #nav ul.gnav > li.dropdown > a {
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown > a.close::after {
    content: "3" !important;
  }
  #nav ul.gnav > li.dropdown > a::after {
    font-family: fontello;
    content: "4" !important;
    padding-left: 0.5rem;
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    padding: 0;
    margin: 0;
    z-index: 100;
    top: 6rem;
    text-align: left;
    overflow: hidden;
    width: 70rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    width: 50%;
    margin: 0;
    padding: 0;
    border-bottom: 0.1rem solid #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul li:nth-child(even) {
    border-left: 0.1rem solid #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    padding: 2.4rem 1.2rem;
    color: #fff;
    background: var(--clr_sub1);
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a::before {
    display: none;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    background: var(--clr_sub3);
  }
  #nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0 auto;
    width: 100%;
    min-width: 1200px;
  }
  #nav.fixed + * {
    margin-top: 6.8rem;
  }
  #nav.fixed + * + #kv {
    margin-top: 6.8rem;
  }
}
@media screen and (min-width: 48em), print {
  .sp_top.fixed + .overlay + h1,
  .sp_top.fixed + .overlay + div + #kv {
    margin-top: auto !important;
  }
}
/* main   -------------------------------------- */
main {
  display: block;
}
main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
main li,
main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  main {
    margin: 0;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
#overview {
  overflow: hidden;
  margin: 0 0;
  padding: 0 0 3rem;
  line-height: 1.4;
  background: var(--clr_sub6);
}
#overview::before {
  background: url(../img/bg_overview.png) no-repeat center top var(--clr_bg);
  background-size: auto 100%;
  content: "";
  display: block;
  width: 100%;
  height: 4rem;
}
#overview .logo {
  width: calc(100% - 3rem);
  margin: 0 auto 2rem;
}
#overview .logo + ul.flex_LRTB {
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#overview .logo + ul.flex_LRTB li {
  line-height: 1;
  text-align: center;
}
#overview .logo + ul.flex_LRTB li::before {
  font-family: fontello;
  color: var(--clr_main);
  content: "\e80d";
  padding-right: 0.5rem;
  font-size: 140%;
}
#overview .logo + ul.flex_LRTB li:nth-child(2) {
  font-size: 160%;
}
#overview .logo + ul.flex_LRTB li:nth-child(2)::before {
  content: "\e801";
}
#overview .logo + ul.flex_LRTB li:nth-child(2) a {
  color: var(--clr_txt);
}
#overview .logo + ul.flex_LRTB li:last-child {
  width: 20rem;
  margin: 0 auto;
  border-top: 0.1rem dotted var(--clr_txt);
  border-bottom: 0.1rem dotted var(--clr_txt);
  padding: 0.5rem;
}
#overview .logo + ul.flex_LRTB li:last-child::before {
  content: "\e809";
}
#overview .logo + ul.flex_LRTB li:last-child span {
  font-size: 140%;
  color: var(--clr_main);
}
#overview .wrap {
  position: relative;
}

.dl_overview {
  margin-bottom: 2rem;
  background: #fff;
}
.dl_overview > dt {
  padding: 0.5rem;
  background: var(--clr_sub1);
  text-align: center;
  color: #fff;
  border-bottom: 0.1rem solid var(--clr_sub13);
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.dl_overview > dd {
  padding: 1rem 1rem 1rem;
  border-bottom: 0.1rem solid var(--clr_sub13);
}
.dl_overview > dd span {
  color: var(--clr_main);
  font-size: 112%;
  font-weight: bold;
}
.dl_overview > dd span.fc_red {
  font-weight: normal;
}

.gmap {
  height: 29rem;
  margin: 3rem 0 1.5rem;
}
.gmap + a {
  display: block;
  background: var(--clr_main);
  border: 0.1rem solid var(--clr_main);
  color: #fff;
  padding: 0.7rem;
  width: 20.5rem;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-align: center;
  border-radius: 3rem;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gmap + a:hover {
  background: #fff;
  color: var(--clr_main);
}
.gmap + a::before {
  font-family: fontello;
  content: "\e80a";
  font-size: 150%;
  padding-right: 0.5rem;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 0 0 8rem;
    margin: 0;
  }
  #overview::before {
    width: 100%;
    height: 9.1rem;
    background-size: auto;
  }
  #overview div.flex_LRTB {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #overview .logo {
    width: 67rem;
    margin: 4.5rem auto 3rem;
  }
  #overview .logo img {
    width: 100%;
  }
  #overview .logo + ul.flex_LRTB {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6rem;
    font-size: 2rem;
    margin-bottom: 5rem;
  }
  #overview .logo + ul.flex_LRTB li {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #overview .logo + ul.flex_LRTB li::before {
    font-size: 2.2rem;
  }
  #overview .logo + ul.flex_LRTB li:nth-child(2)::before {
    font-size: 2.8rem;
  }
  #overview .logo + ul.flex_LRTB li:last-child {
    margin: 0;
  }
  #overview .overviewL {
    width: 56rem;
  }
  #overview .overviewR {
    width: 56rem;
  }
  .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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 3.5rem;
  }
  .dl_overview > dt {
    width: 15.2rem;
    padding: 1.5rem 0;
  }
  .dl_overview > dd {
    width: calc(100% - 15.2rem);
    padding: 1.5rem 1.8rem;
  }
  .gmap {
    height: 58rem;
    margin: 0 0 2rem;
  }
  .gmap + a {
    width: 27rem;
    height: 6rem;
    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;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  text-align: center;
}
.tbl_time table {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 0.8rem 0.8rem 0 0;
  caption-side: bottom;
  line-height: 1;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.tbl_time table caption {
  padding-top: 0.5rem;
  line-height: 1.5;
}
.tbl_time table caption dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0.5rem 0 0;
}
.tbl_time table caption dl dt {
  text-align: center;
  background: var(--red);
  border-radius: 0.5rem;
  padding: 0.3rem 0.8rem;
  color: #fff;
}
.tbl_time table caption dl dd {
  padding: 0.3rem 0 0.3rem 1rem;
  width: calc(100% - 9rem);
}
.tbl_time table thead {
  background: var(--clr_main);
  color: #fff;
}
.tbl_time table thead th {
  padding: 0.7rem 0;
  font-weight: normal;
}
.tbl_time table tbody {
  background: #fff;
}
.tbl_time table tbody th,
.tbl_time table tbody td {
  padding: 0.9rem 0;
  vertical-align: middle;
  border-bottom: 0.1rem solid var(--clr_main);
  letter-spacing: normal;
}
.tbl_time table tbody td {
  min-width: 2.2rem;
  color: var(--clr_main);
}
.tbl_time table tbody th {
  width: 9rem;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    border-bottom: none !important;
    margin: 0 0 1.8rem;
    padding: 0 !important;
  }
  .tbl_time table thead th {
    padding: 1.7rem 0.5rem;
  }
  .tbl_time table tbody tr th {
    padding: 1.4rem 0;
    width: 16rem;
    line-height: 1;
  }
  .tbl_time table tbody tr td {
    font-size: 2rem;
    line-height: 1;
    padding: 1.4rem 0.8rem;
  }
  .tbl_time table caption dl {
    margin: 1rem 0 0;
  }
  .tbl_time table caption dl dt {
    width: 5em;
  }
}
/* ページトップ -------------------------------------- */
.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--clr_sub4);
  margin: 0;
  width: 100%;
  height: 4rem;
  padding: 0.1rem 0;
  text-align: center;
  z-index: 100;
  letter-spacing: normal;
  font-size: 1.4rem;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.sp_bottom li {
  width: 49.5%;
  position: relative;
  margin: 0;
  height: 100%;
}
.sp_bottom li a {
  padding: 1rem 0;
  color: #fff;
  background: var(--clr_main);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.sp_bottom li i {
  padding-right: 0.5rem;
}

@media screen and (min-width: 48em), print {
  .sp_bottom {
    background-color: transparent;
    width: 0;
    height: 0;
  }
  .sp_bottom li:first-child {
    display: none;
  }
  #pageup {
    position: fixed;
    bottom: -15rem;
    right: 4rem;
    z-index: 1000;
    width: 6rem;
    height: 6rem;
    -webkit-transition: bottom 0.8s;
    transition: bottom 0.8s;
  }
  #pageup a {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
        align-content: center;
    cursor: pointer;
    border-radius: 50%;
    color: #fff;
    background: var(--clr_sub1);
    font-size: 1.8rem;
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #pageup a i {
    display: block;
    padding: 0;
    width: 100%;
    font-size: 110%;
  }
  #pageup.block {
    bottom: 4rem;
  }
}
/* footer -------------------------------------- */
address {
  padding: 0.8rem 0;
  font-style: normal;
  text-align: center;
  background: var(--clr_main);
}
address a {
  color: #fff;
}

@media screen and (min-width: 48em), print {
  footer {
    background: #fff;
  }
  footer .wrap {
    padding: 4rem 2rem 2.5rem;
  }
  footer .wrap ul {
    margin: 0 auto 1.5rem;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem 0;
  }
  footer .wrap ul li {
    margin-bottom: 0;
    padding: 0 1em;
    border-right: 0.1rem solid var(--clr_txt);
  }
  footer .wrap ul li:last-child, footer .wrap ul li.age_related_macular_degeneration {
    border: none;
  }
  footer .wrap ul li a {
    color: var(--clr_txt);
  }
  footer .wrap ul .dropdown {
    display: none;
  }
  address {
    margin: 0;
    padding: 1.7rem 0;
    font-size: 1.4rem;
  }
}
/*#nav,
#footer ul a,
#menu {
    a {
        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: 0rem auto 5rem;
}
#TopPage #kv .wrap {
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  padding-top: 21rem;
  position: relative;
}
#TopPage #kv .kv_catch span {
  display: inline-block;
  margin: 0 auto 0.5rem 1rem;
  border-radius: 1rem;
  background: rgba(28, 129, 204, 0.9);
  -webkit-box-shadow: 0 0.3rem 0.6rem #eee;
          box-shadow: 0 0.3rem 0.6rem #eee;
  padding: 0.5rem 1.3rem;
  color: #fff;
}
#TopPage #kv .kv_txt {
  word-break: auto-phrase;
  margin: 1rem;
}
#TopPage main {
  margin: 0 0;
}
#TopPage main section {
  margin-bottom: 0;
}
#TopPage main h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
}
#TopPage main h2 span {
  display: block;
  color: var(--clr_sub8);
}
#TopPage #tt {
  margin: 0 0 3rem;
}
#TopPage #attention {
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  background: var(--clr_sub9);
  padding: 2rem 0;
}
#TopPage #attention dl {
  border-radius: 1rem;
  border: 0.4rem solid var(--red);
  padding: 2rem 1rem;
}
#TopPage #attention dl dt {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--red);
}
#TopPage #news {
  padding: 0 0 3rem;
  background: #fff;
}
#TopPage #news h2 {
  color: #fff;
  background: url(../img/bg_news_title.png) no-repeat right top var(--clr_sub1);
  background-size: 4rem auto;
  padding: 1rem 0;
  text-align: center;
  margin: 0 0 1rem;
}
#TopPage #news h2 span {
  color: #fff;
}
#TopPage #news dl {
  border-bottom: 1px dashed var(--clr_txt);
}
#TopPage #news dl dt {
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  position: relative;
  padding: 1rem 0 0.5rem 0;
  font-size: 1.4rem;
  border-top: 1px dashed var(--clr_txt);
}
#TopPage #news dl dt:first-child {
  border-top: none;
}
#TopPage #news dl dt div {
  position: relative;
  padding-left: 1.1em;
}
#TopPage #news dl dt div::before {
  font-family: fontello;
  content: "\f005";
  font-weight: normal;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--clr_main);
}
#TopPage #news dl dt.open div::before {
  content: "\f004";
}
#TopPage #news dl dt span {
  background: var(--clr_main);
  color: #fff;
  padding: 0.3rem 1.5rem;
  border-radius: 1rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
#TopPage #news dl dd {
  padding: 0 0 1rem 0;
}
#TopPage #news dl dd:not(:nth-of-type(-n + 3)) {
  display: none;
}
#TopPage #feature {
  padding: 3rem 0;
  background: var(--clr_sub6) url(../img/bg_feature_title.webp) no-repeat center top;
  background-size: 160% auto;
}
#TopPage #feature ul li {
  margin-bottom: 2rem;
}
#TopPage #feature ul li figure {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  width: 20rem;
  margin: 0 auto 1rem;
}
#TopPage #feature ul li figure figcaption {
  position: absolute;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  top: 0;
  left: 0;
  padding: 1rem;
  font-size: 110%;
  display: block;
  background: var(--clr_sub1);
  color: #fff;
  border-radius: 2rem 0;
}
#TopPage #feature ul li dt {
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  background: var(--clr_sub1);
  color: #fff;
  border-radius: 2rem 0;
  font-size: 1.4rem;
  word-break: auto-phrase;
  text-align: center;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}
#TopPage #feature ul li dd {
  text-align: justify;
  margin-bottom: 1rem;
}
#TopPage #feature ul li:nth-child(even) figure figcaption {
  background: var(--clr_sub2);
}
#TopPage #feature ul li:nth-child(even) dt {
  background: var(--clr_sub2);
}
#TopPage #medical {
  padding: 9rem 0 3rem;
  background: url(../img/bg_medical.webp) no-repeat center;
  background-size: auto 100%;
}
#TopPage #medical 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;
}
#TopPage #medical ul li {
  margin: 0 0 2rem 0;
  width: 46%;
}
#TopPage #medical ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  border: none;
  color: var(--clr_txt);
  word-break: auto-phrase;
}
#TopPage #medical ul li a::before {
  display: block;
  content: "";
  width: 9.5rem;
  height: 9.5rem;
  margin: 0 auto;
  border-radius: 0 2rem;
  border: 0.1rem solid var(--clr_sub1);
  background: url(../img/icon_myopia.svg) no-repeat center #fff;
  background-size: 50% auto;
}
#TopPage #medical ul li.age_related_macular_degeneration a::before {
  background-image: url(../img/icon_age_related_macular_degeneration.svg);
}
#TopPage #medical ul li.cataract a::before {
  background-image: url(../img/icon_cataract.svg);
}
#TopPage #medical ul li.diabetic a::before {
  background-image: url(../img/icon_diabetic.svg);
}
#TopPage #medical ul li.dry_eye a::before {
  background-image: url(../img/icon_dry_eye.svg);
}
#TopPage #medical ul li.glasses a::before {
  background-image: url(../img/icon_glasses.svg);
}
#TopPage #medical ul li.glaucoma a::before {
  background-image: url(../img/icon_glaucoma.svg);
}
#TopPage #medical ul li.low_vision_care a::before {
  background-image: url(../img/icon_low_vision_care.svg);
}
#TopPage #medical ul li.pediatric a::before {
  background-image: url(../img/icon_pediatric.svg);
}
#TopPage #overview::before {
  display: none;
}
#TopPage .index {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
#TopPage .index ul {
  display: -ms-grid;
  display: grid;
  row-gap: 1em;
}
#TopPage .index img {
  width: revert-layer;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  #TopPage #kv {
    margin: 0 auto 0;
    background-size: auto;
    padding: 0;
    height: 78rem;
    min-width: 1200px;
    top: 0;
  }
  #TopPage #kv .wrap {
    position: relative;
    height: 78rem;
    padding-top: 48rem;
  }
  #TopPage #kv .kv_catch {
    width: 65rem;
  }
  #TopPage #kv .kv_catch span {
    height: 7rem;
    border-radius: 3.6rem;
    font-size: 3.6rem;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1rem;
  }
  #TopPage #kv .kv_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70rem;
    height: 10rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.4rem;
    padding: 0 0 0 2rem;
    position: relative;
    letter-spacing: normal;
    line-height: 3.6rem;
    text-shadow: #fff 0.2rem 0 0.2rem, #fff -0.2rem 0 0.2rem, #fff 0 -0.2rem 0.2rem, #fff -0.2rem 0 0.2rem, #fff 0.2rem 0.2rem 0.2rem, #fff -0.2rem 0.2rem 0.2rem, #fff 0.2rem -0.2rem 0.2rem, #fff -0.2rem -0.2rem 0.2rem, #fff 0.1rem 0.2rem 0.2rem, #fff -0.1rem 0.2rem 0.2rem, #fff 0.1rem -0.2rem 0.2rem, #fff -0.1rem -0.2rem 0.2rem, #fff 0.2rem 0.1rem 0.2rem, #fff -0.2rem 0.1rem 0.2rem, #fff 0.2rem -0.1rem 0.2rem, #fff -0.2rem -0.1rem 0.2rem, #fff 0.1rem 0.1rem 0.2rem, #fff -0.1rem 0.1rem 0.2rem, #fff 0.1rem -0.1rem 0.2rem, #fff -0.1rem -0.1rem 0.2rem;
  }
  #TopPage #kv .kv_txt::before {
    z-index: -1;
    display: block;
    width: 70rem;
    height: 10rem;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70rem;
    border-radius: 4.6rem;
    background: #ffffff 0% 0% no-repeat padding-box;
    opacity: 0.73;
    -webkit-filter: blur(12px);
            filter: blur(12px);
  }
  #TopPage main {
    padding: 0 0;
  }
  #TopPage main .wrap {
    margin: 0 auto;
  }
  #TopPage main h2 {
    font-size: 4.4rem;
    margin-bottom: 7rem;
  }
  #TopPage main h2 span {
    font-size: 2rem;
  }
  #TopPage main #tt {
    padding: 5rem 0;
  }
  #TopPage main #tt .tbl_time {
    width: 100rem;
    margin: 0 auto;
  }
  #TopPage main #attention {
    padding: 5rem 0;
  }
  #TopPage main #attention dl {
    padding: 5.1rem 0;
    width: 100rem;
    margin: 0 auto;
  }
  #TopPage main #attention dl dt {
    font-size: 4.4rem;
    margin-bottom: 3.5rem;
  }
  #TopPage main #attention dl dd {
    font-size: 2.2rem;
    text-align: center;
  }
  #TopPage main #news {
    padding: 0;
    background: -webkit-gradient(linear, left top, right top, from(var(--clr_sub1)), color-stop(50%, var(--clr_sub1)), color-stop(50%, #fff), to(#fff));
    background: linear-gradient(90deg, var(--clr_sub1) 0%, var(--clr_sub1) 50%, #fff 50%, #fff 100%);
  }
  #TopPage main #news .flex_LRTB {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #news h2 {
    width: 25.2rem;
    position: relative;
    padding-top: 6.8rem;
    background-image: none;
  }
  #TopPage main #news h2 div {
    position: relative;
    z-index: 10;
  }
  #TopPage main #news h2::before {
    content: "";
    display: block;
    width: 45.5rem;
    height: 40rem;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../img/bg_news_title.png) no-repeat;
  }
  #TopPage main #news .inner {
    padding: 5rem 0 10rem 5rem;
    width: 86.2rem;
    background: #fff;
  }
  #TopPage main #news dl dt {
    font-size: 2.6rem;
    padding: 1rem 0 1.2rem 0;
  }
  #TopPage main #news dl dt div::before {
    width: 2rem;
    height: 2rem;
    top: 0.5rem;
  }
  #TopPage main #news dl dt span.date_tag {
    font-size: 2rem;
    height: 3.8rem;
    width: 15rem;
    border-radius: 2rem;
  }
  #TopPage main #news dl dd {
    margin-bottom: 2rem;
    padding-bottom: 0;
    font-size: 2rem;
  }
  #TopPage main #feature {
    margin: 0;
    padding: 6rem 0 2rem;
    background-size: auto;
  }
  #TopPage main #feature .wrap {
    position: relative;
  }
  #TopPage main #feature ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #TopPage main #feature ul li {
    width: 57rem;
    margin-bottom: 5.1rem;
  }
  #TopPage main #feature ul li figure {
    width: 100%;
  }
  #TopPage main #feature ul li figure figcaption {
    font-size: 3.6rem;
    height: 7.5rem;
    width: 7.5rem;
    padding: 0;
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  #TopPage main #feature ul li dt {
    font-size: 2.8rem;
    height: 11.3rem;
    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;
    margin-bottom: 3rem;
  }
  #TopPage main #feature ul li dd {
    font-size: 2.2rem;
  }
  #TopPage main #feature ul img {
    width: auto;
  }
  #TopPage main #medical {
    padding: 10rem 0 12rem;
    background-size: auto 100%;
  }
  #TopPage main #medical ul {
    margin: auto;
    gap: 4rem 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #medical ul li {
    width: 20%;
    margin: 0;
  }
  #TopPage main #medical ul li a {
    letter-spacing: normal;
    font-size: 2.3rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #TopPage main #medical ul li a::before {
    width: 20rem;
    height: 20rem;
  }
  #TopPage main #medical ul li a:is(:hover, :focus-visible, .current):before {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-box-shadow: inset 0 0 0.6rem 0.3rem rgba(39, 126, 190, 0.8);
            box-shadow: inset 0 0 0.6rem 0.3rem rgba(39, 126, 190, 0.8);
    background-size: 60% auto;
  }
  #TopPage main #medical ul li a::after {
    font-size: 1.2rem;
    top: 18rem;
    right: 1.7rem;
  }
  #TopPage .index {
    width: 1000px;
  }
  #TopPage .index ul {
    -ms-grid-columns: 1fr 0.5em 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 0.5em;
       -moz-column-gap: 0.5em;
            column-gap: 0.5em;
  }
}
/* anime*/
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower {
  /* main   -------------------------------------- */
}
#lower .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 3rem 1rem;
}
#lower .breadcrumb li a {
  color: var(--clr_txt);
  border: none;
}
#lower .breadcrumb li:first-child::after {
  content: ">";
  padding: 0 1rem;
}
#lower main {
  margin-top: 1rem;
  position: relative;
}
#lower main section {
  margin: 0 auto 4rem;
  padding: 0;
}
#lower main .wrap {
  background: #fff;
  padding: 2rem 1.5rem;
}
#lower main .wrap > .inner {
  margin: 3rem auto;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  font-weight: normal;
  font-family: "Kosugi Maru", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
#lower h1 {
  background: url(../img/h1.webp) no-repeat center;
  background-size: auto 110%;
  margin: 0 0 2rem;
  font-size: 2rem;
  line-height: 1.2;
  padding: 3rem 1rem;
  text-align: center;
  color: #fff;
}
#lower h1 span {
  padding: 1rem 2rem;
  display: inline-block;
  width: auto;
  background: rgba(28, 129, 204, 0.9);
  -webkit-box-shadow: 0 0.3rem 0.6rem #eee;
          box-shadow: 0 0.3rem 0.6rem #eee;
  border-radius: 0 3rem;
}
#lower h2 {
  font-size: 1.9rem;
  margin: 0 0 2rem;
  padding-left: 1rem;
  border-left: 0.4rem solid var(--clr_main);
}
#lower h3 {
  margin: 4rem 0 2rem;
  color: #fff;
  font-size: 1.8rem;
  background: var(--clr_sub1);
  line-height: 1.35;
  padding: 0.3rem 1.5rem;
  border-radius: 0 1.5rem;
}
#lower h4 {
  margin: 0 0 2rem;
  font-size: 1.6rem;
}
#lower h4::after {
  content: "";
  height: 0.3rem;
  width: 100%;
  display: block;
  margin: 1rem auto 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--clr_main)), color-stop(12%, var(--clr_main)), color-stop(12%, var(--clr_sub17)), to(var(--clr_sub17)));
  background: linear-gradient(90deg, var(--clr_main) 0%, var(--clr_main) 12%, var(--clr_sub17) 12%, var(--clr_sub17) 100%);
}
#lower h5 {
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.35;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
}
#lower h5::before {
  content: "";
  width: 1.3rem;
  height: 0.479rem;
  background: var(--clr_sub18);
  display: block;
}
#lower h6 {
  color: var(--clr_main);
}
#lower main {
  display: block;
}
#lower main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
#lower main li,
#lower main dl {
  line-height: 1.6;
}
#lower main .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 main .tbl_def thead {
  background: var(--clr_Main);
  color: #fff;
}
#lower main .tbl_def thead th {
  padding: 1% 1% 0.8% 1%;
  border: 1px solid #fff;
}
#lower main .tbl_def tbody th {
  background: var(--blue1);
}
#lower main .tbl_def tbody th,
#lower main .tbl_def tbody td {
  padding: 1% 1% 0.8% 1%;
  border: 1px solid #ccc;
}
#lower 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;
}
#lower main .tbl_price tr {
  border-bottom: 1px solid #ccc;
}
#lower main .tbl_price tr th {
  text-align: left;
  color: #663300;
  font-size: 94%;
  padding: 1% 0% 0.8% 2%;
}
#lower main .tbl_price tr td {
  padding: 1% 2% 0.8% 2%;
  border-left: 1px solid #ccc;
}
#lower main .tbl_price tr td:last-child {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  #lower .breadcrumb {
    margin: 2rem auto 6.5rem;
    width: 1200px;
    padding: 0 4rem;
  }
  #lower main {
    padding-bottom: 0;
    margin-bottom: 10rem;
  }
  #lower main::after {
    height: 13rem;
    background-size: auto;
  }
  #lower main > .wrap {
    width: 118rem;
    padding: 6rem 9rem;
  }
  #lower main > .wrap > .inner {
    margin-bottom: 10rem;
  }
  #lower main > .wrap > section {
    margin: -9rem auto 7rem;
    padding-top: 9rem;
    /*.inner + section,
    .inner + .flex_LRTB.half {
        padding-top: 5rem;
    }*/
  }
  #lower main > .wrap > section > section {
    margin: -5rem auto 8rem;
    padding-top: 10rem;
  }
  #lower main > .wrap > section > section > section {
    margin: -5rem auto 7rem;
    padding-top: 10rem;
  }
  #lower main > .wrap > section > section > section > section {
    margin: -5rem auto 6rem;
    padding-top: 10rem;
  }
  #lower main > .wrap > section h3 + section {
    padding-top: 2rem;
  }
  #lower h1 {
    font-size: 4rem;
    margin: 0 auto 0;
    line-height: 1;
    background-size: auto;
    position: relative;
    height: 27rem;
    max-width: 200rem;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #lower h1 span {
    padding: 1rem 5rem;
    margin: auto;
  }
  #lower h2 {
    font-size: 4rem;
    margin-bottom: 5rem;
    background-size: auto;
    padding: 1rem 0 1rem 2rem;
    border-width: 0.7rem;
  }
  #lower h3 {
    font-size: 3rem;
    margin: 0 0 3rem;
    padding: 1rem 1.6rem;
  }
  #lower h4 {
    font-size: 2.6rem;
    margin: 0 0 3rem;
  }
  #lower h4::after {
    margin-top: 0.7rem;
  }
  #lower h5 {
    font-size: 2.4rem;
    margin: 0 0 2.5rem;
  }
}
#lower #clinic #device ul.flex_LRTB.half {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#lower #clinic #device ul.flex_LRTB.half::after {
  content: "";
  width: 48%;
  height: 0.1rem;
  display: block;
}
#lower #clinic #device ul.flex_LRTB.half li {
  margin-bottom: 1.5em;
}
#lower #clinic #device ul.flex_LRTB.half dt {
  font-size: large;
  color: #fff;
  background: var(--clr_main);
  padding: 0.5rem;
  font-weight: bold;
  word-break: auto-phrase;
  text-align: center;
}
#lower #clinic #device ul.flex_LRTB.half dd {
  margin-top: 0.5em;
}
#lower #clinic #device ul.flex_LRTB.half dd img {
  display: block;
}

#lower #hard_to_see main .wrap {
  background: #000;
  color: #fff;
  font-size: 1.6rem;
}
#lower #hard_to_see main .wrap .dl_overview dd {
  background: #000;
}
#lower #hard_to_see main .wrap .dl_overview dd .fc_red {
  color: var(--clr_sub9) !important;
}
#lower #hard_to_see main .wrap .tbl_time tbody {
  background: #000;
}
#lower #hard_to_see main .wrap .box1 {
  background: var(--clr_main);
}

@media screen and (min-width: 48em), print {
  #lower #hard_to_see main .wrap {
    font-size: 2rem;
  }
}
/* 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　出力ここまで */