@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
/* CSS変数 */
:root {
  --clr_txt:#313131;
  --clr_bg:#fff;
  --clr_link:#0C8963;
  --clr_linkH:#CB334D;
  --clr_main:#0C8963;
  --clr_sub1:#CB334D;
  --clr_sub2:#9C6124;
  --red:#A00015;
  --blue:#0B509B;
  --green:#6AB40E;
  --orange:#9C6124;
}

/* _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 10px 20px;
}
ul.list_sim > li {
  margin: 0 0 10px 1.1em;
  padding: 0;
}
ul.list_sim > li::before {
  display: inline-block;
  content: "・";
  margin-left: -1.1em;
}

/* ● -------------------------------------- */
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: rgba(12, 137, 99, 0.2);
    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;
  /*p.ttl::first-letter {
     color: var(--clr_main);
     font-size: 2.5rem;
     padding-right: 0.5rem;
   }*/
}
ol.list_flow > li p.ttl {
  font-weight: bold;
  font-size: 140%;
  margin-bottom: 0.5rem;
}
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: 1.5rem 1.5rem 1.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: #F4F6DC;
  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: #FFE8EC;
}
.box2 dt {
  border-bottom: var(--clr_sub1) dotted 2px;
}
.box2 ul.list_maru > li::before {
  color: var(--clr_sub1);
}

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

@media screen and (min-width: 48em), print {
  a.btn {
    border-radius: 1rem;
  }
  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;
  width: 100%;
}

body {
  font-family: "Sawarabi Gothic", 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に */
    min-width: 1180px;
  }
  body {
    min-width: 1180px;
    font-size: 1.6rem;
  }
}
/* 全体の横幅設定  -------------------------------------- */
.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: 1180px;
    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: 24.4rem;
  height: 5rem;
  margin: 1rem auto;
}
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 .kv_event {
  display: none;
}
header .h_right {
  display: none;
}

/* ハンバーガーメニュー  -------------------------------------- */
.sp_top {
  background: var(--orange1);
  z-index: 10;
  position: relative;
  -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);
  background: rgba(255, 255, 255, 0.85);
}
.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_main);
}
.sp_top ul li a,
.sp_top ul li button {
  display: block;
  width: 100%;
  color: var(--clr_txt);
  padding: 0 0 1rem 0;
}
.sp_top ul li a::before,
.sp_top ul li button::before {
  display: block;
  font-family: fontello;
  content: "\e80b";
  color: var(--clr_main);
  padding: 1rem 0 0.5rem;
  font-size: 2rem;
}
.sp_top ul li:nth-child(2) a::before {
  content: "\e80a";
}
.sp_top ul li:nth-child(3) a::before {
  content: "\e81a";
  font-size: 2.5rem;
  padding: 0.8rem 0 0.2rem;
}
.sp_top ul li:nth-child(4) a::before {
  content: "\e805";
  font-size: 2.5rem;
  padding: 0.8rem 0 0.2rem;
}
.sp_top ul li:last-child {
  border-right: none;
}
.sp_top ul li:last-child button::before {
  content: "\e802";
  font-size: 3.2rem;
  padding: 0.3rem 0 0rem;
}
.sp_top.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
}
.sp_top.fixed + .overlay + h1,
.sp_top.fixed + .overlay + div + #kv {
  margin-top: 7rem !important;
}

#nav {
  width: 100%;
  padding: 1rem 2rem 2rem;
  position: absolute;
  right: -100vw;
  top: 4.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1000;
  position: fixed;
  max-height: 94%;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  background: #f4f6dc;
}
#nav a {
  text-decoration: none;
  background: #fff;
  display: block;
  line-height: 1;
  color: var(--clr_txt);
}
#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: "\e80b";
  color: #fff;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: transparent -webkit-gradient(linear, left top, right top, from(#a0c870), color-stop(10%, #93c15c), color-stop(30%, #87be5b), color-stop(53%, #71b75d), color-stop(76%, #4bab3c), to(#1a981e)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #a0c870 0%, #93c15c 10%, #87be5b 30%, #71b75d 53%, #4bab3c 76%, #1a981e 100%) 0% 0% no-repeat padding-box;
  letter-spacing: normal;
  line-height: 1;
  padding-top: 0.1rem;
}
#nav ul.gnav > li.doctor a:before {
  content: "\e80c";
}
#nav ul.gnav > li.clinic a:before {
  content: "\e80d";
}
#nav ul.gnav > li.dropdown a:before {
  content: "\e80e";
}
#nav ul.gnav > li.first a:before {
  content: "\e80f";
}
#nav ul.gnav > li.access a:before {
  content: "\e811";
}
#nav .dropdown {
  background: #fff;
}
#nav .dropdown > a {
  margin: 1.5rem 0 0;
}
#nav .dropdown > a::after {
  content: "▼";
  padding-left: 0.5rem;
  color: var(--clr_main);
}
#nav .dropdown > a.close::after {
  content: "▲";
}
#nav .dropdown ul {
  margin: 0;
  padding: 0 0 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#nav .dropdown ul li {
  margin: 0.5rem 0 1.5rem 0;
  width: 50%;
}
#nav .dropdown ul li a {
  display: block;
}
#nav .dropdown ul li a::before {
  content: "・" !important;
  padding-right: 0.3rem;
}

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: 1180px;
    margin: 0;
  }
  header > .wrap {
    margin: 0 auto;
    padding: 1.7rem 4rem 0.5rem;
    -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 {
    height: 8.6rem;
    width: 45.4rem;
    margin: 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .logo img {
    width: 100%;
  }
  header > .wrap .h_right {
    margin: 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .h_right > ul {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 1.8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
  header > .wrap .h_right > ul .h_tel {
    font-size: 3.2rem;
    margin: 0;
    color: var(--clr_main);
  }
  header > .wrap .h_right > ul .h_tel::before {
    content: "\e801";
    font-size: 2rem;
    font-family: fontello;
  }
  header > .wrap .h_right > ul li:last-child {
    margin: 0;
  }
  header > .wrap .h_right > ul li:last-child::before {
    content: "\e80b";
    font-family: fontello;
    color: var(--clr_main);
  }
  header > .wrap .h_right .tbl_time {
    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: 1180px;
  }
  #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 1rem;
    max-width: none;
    line-height: 1.8rem;
    margin: 0 auto;
    text-align: center;
    width: 1180px;
  }
  #nav ul.gnav > li {
    margin: 0;
    padding: 0;
    position: relative;
  }
  #nav ul.gnav > li > a {
    text-align: center;
    padding: 2.5rem 0;
    position: relative;
    margin: 0;
    width: 100%;
    line-height: 1;
    background-color: transparent;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  #nav ul.gnav > li > a::before {
    width: 3.3rem;
    height: 3.3rem;
    font-size: 1.8rem;
  }
  #nav ul.gnav > li > a:hover {
    color: var(--clr_main);
  }
  #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: 0;
    margin: 0;
    z-index: 100;
    top: 5.1rem;
    text-align: left;
    overflow: hidden;
    width: 19rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0;
    padding: 0;
    display: block;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    margin: 0;
    padding: 0;
    width: 100%;
    border-bottom: 0.1rem solid #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    padding: 0.9rem 1rem;
    color: #fff;
    background: #148410;
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    background: #e7f2e7;
    color: var(--clr_main);
  }
  #nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0 auto;
    width: 100%;
    min-width: 1180px;
  }
  #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: 5rem 0 5rem;
  line-height: 1.4;
  background: transparent -webkit-gradient(linear, left top, right top, from(#a7d96b), color-stop(15%, #a4d470), color-stop(34%, #96d25b), color-stop(56%, #87ca6d), color-stop(81%, #75c25f), to(#4ab95d)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #a7d96b 0%, #a4d470 15%, #96d25b 34%, #87ca6d 56%, #75c25f 81%, #4ab95d 100%) 0% 0% no-repeat padding-box;
}
#overview .wrap.bg {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 1rem;
  border: 0.1rem dotted #f9c3c3;
  -webkit-box-shadow: 0 0 0 0.5rem #fff;
          box-shadow: 0 0 0 0.5rem #fff;
}
#overview .logo {
  width: calc(100% - 3rem);
  margin: 0 auto 2rem;
}
#overview .overviewR .tbl_time {
  margin-bottom: 2.5rem;
}

.dl_overview {
  margin-bottom: 2rem;
}
.dl_overview > dt {
  line-height: 1;
  padding: 0.5rem;
  background: #6ab40e;
  border-radius: 0.8rem;
  text-align: center;
  color: #fff;
}
.dl_overview > dd {
  padding: 0.5rem 0 1rem;
}

.gmap {
  height: 29rem;
  margin: 3rem 0 1.5rem;
}
.gmap + a {
  display: block;
  background: #fff;
  border: 0.1rem solid #3b3b3b;
  color: #3b3b3b;
  padding: 0.7rem;
  width: 20.5rem;
  text-align: center;
  border-radius: 3rem;
  margin: 0 auto;
}
.gmap + a i {
  color: #6ab40e;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 10rem 0 7rem;
    margin: 0;
    position: relative;
  }
  #overview::before {
    content: "";
    background: url(../img/leaf01.png) no-repeat center;
    width: 200rem;
    height: 122.5rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  #overview .wrap.bg {
    padding: 4.4rem 6.7rem 6.6rem;
    width: 107.8rem;
    position: relative;
    margin-bottom: 6.5rem;
  }
  #overview .wrap.bg .flex_LRTB {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #overview .wrap.bg .flex_LRTB .overviewL {
    width: 49rem;
    margin-bottom: 5rem;
  }
  #overview .wrap.bg .flex_LRTB .overviewR {
    width: 45rem;
  }
  #overview .logo {
    width: 59.4rem;
    margin: 0 auto 4.5rem;
  }
  #overview .logo img {
    width: 100%;
  }
  #overview .overviewR .tbl_time {
    margin-bottom: 2.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: 10rem;
    padding: 0.8rem 0;
  }
  .dl_overview > dd {
    width: calc(100% - 11rem);
    margin-bottom: 1rem;
  }
  .gmap {
    height: 52rem;
    margin: 0 0 2.5rem;
  }
  .footer_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 86rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
  .footer_nav ul .dropdown {
    display: none;
  }
  .footer_nav ul li {
    border-right: 0.1rem solid #fff;
    padding: 0 2rem;
  }
  .footer_nav ul li:last-child {
    border-right: none;
  }
  .footer_nav ul a {
    color: #fff;
  }
}
/* 診療時間表 -------------------------------------- */
.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;
}
.tbl_time table caption {
  padding-top: 0.5rem;
  line-height: 1.5;
}
.tbl_time table thead {
  background: #6ab40e;
  color: #fff;
}
.tbl_time table thead th {
  padding: 0.7rem 0;
  font-weight: normal;
}
.tbl_time table tbody {
  background: #f3f5d9;
}
.tbl_time table tbody th,
.tbl_time table tbody td {
  padding: 0.9rem 0;
  vertical-align: middle;
  border-bottom: 0.1rem solid #ccc;
  letter-spacing: normal;
}
.tbl_time table tbody td {
  min-width: 2.2rem;
  color: var(--clr_main);
}
.tbl_time table tbody td.close {
  color: var(--clr_txt);
}
.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;
    padding: 0 !important;
  }
  .tbl_time table {
    font-weight: bold;
  }
  .tbl_time table thead th {
    padding: 1.2rem 0.5rem;
  }
  .tbl_time table tbody tr th {
    padding: 1.5rem 0;
    width: 14rem;
    line-height: 1;
  }
  .tbl_time table tbody tr td {
    padding: 1.5rem 0.8rem;
  }
  .tbl_time table caption {
    margin-top: 1rem;
    font-weight: normal;
  }
  .tbl_time table caption dl {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .tbl_time table caption dl dt {
    width: 12rem;
    padding: 0.8rem;
  }
}
/* ページトップ -------------------------------------- */
.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5rem;
}
.sp_bottom a {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: space-evenly;
      align-content: space-evenly;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  bottom: -15rem;
  right: 1rem;
  z-index: 10;
  width: 5rem;
  height: 5rem;
  -webkit-transition: bottom 0.8s;
  transition: bottom 0.8s;
  background: transparent -webkit-gradient(linear, left top, right top, from(#abc8e5), color-stop(24%, #baa8c2), color-stop(58%, #cc7f96), color-stop(84%, #d8667b), to(#dc5d71)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #abc8e5 0%, #baa8c2 24%, #cc7f96 58%, #d8667b 84%, #dc5d71 100%) 0% 0% no-repeat padding-box;
  border: 0.1rem solid #fff;
  -webkit-box-shadow: 0.7rem 0.7rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0.7rem 0.7rem 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 0.8rem;
  text-align: center;
}
.sp_bottom a::before {
  font-family: fontello;
  content: "\e819";
  font-size: 3rem;
  line-height: 1;
  display: block;
}
.sp_bottom a.insta {
  left: 1rem;
  right: auto;
  background: #fff;
}
.sp_bottom a.insta::before {
  display: none;
}
.sp_bottom a.block {
  bottom: 1rem;
}

@media screen and (min-width: 48em), print {
  .sp_bottom a {
    width: 10.5rem;
    height: 10.5rem;
    font-size: 1.4rem;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .sp_bottom a::before {
    font-size: 6rem;
  }
  #pageup.block {
    bottom: 4rem;
  }
}
/* footer -------------------------------------- */
.pc_right {
  position: fixed;
  right: 0;
  top: 15rem;
}

address {
  padding: 0.8rem 0;
  font-style: normal;
  text-align: center;
}
address a {
  color: #477113;
}

@media screen and (min-width: 48em), print {
  address {
    margin: 2.5rem auto;
    padding: 0;
  }
}
/*#nav,
.footer_nav ,
#menu{
    a {
        pointer-events: none;
    }
}*/
#nav.open {
  right: -100vw !important;
}

/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage header .kv_event {
  display: block;
  text-align: center;
}
#TopPage header .kv_event .kv_open {
  background: transparent -webkit-gradient(linear, left top, right top, from(#f8e6ef), color-stop(59%, #f8dae0), to(#f6c8d0)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #f8e6ef 0%, #f8dae0 59%, #f6c8d0 100%) 0% 0% no-repeat padding-box;
  border-radius: 2rem;
  padding: 0.5rem;
  color: var(--clr_sub1);
  max-width: 26.4rem;
  margin: 0.5rem auto;
}
#TopPage header .kv_event .kv_open + li {
  color: #7fa156;
}
#TopPage #kv {
  background-size: auto 20rem;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin: 0 auto 1rem;
  height: 20rem;
}
#TopPage #kv .kv_txt {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  text-align: right;
}
#TopPage #kv .kv_txt p {
  border-radius: 2rem;
  background: #fff;
  display: inline-block;
  padding: 0.5rem;
  margin: 0 0 0.5rem;
}
#TopPage main {
  margin: 0 0;
}
#TopPage main section {
  margin-bottom: 0;
}
#TopPage main h2 {
  font-size: 1.6rem;
  font-weight: normal;
}
#TopPage #info {
  padding: 3rem 0 5rem;
}
#TopPage #info h2 {
  color: #fff;
  background: url(../img/news_h2.png) no-repeat center;
  height: 8rem;
  width: 8rem;
  background-size: contain;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem auto;
}
#TopPage #info dl {
  padding: 1rem;
  height: 23rem;
  overflow-y: auto;
}
#TopPage #info dl::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 2px #f5efe1;
          box-shadow: inset 0 0 2px #f5efe1;
}
#TopPage #info dl::-webkit-scrollbar-thumb {
  background: rgba(12, 137, 99, 0.8);
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#TopPage #info dl dt {
  position: relative;
  padding: 0 0 0.5rem 2.2rem;
  font-weight: 900;
  font-size: 1.4rem;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.3rem;
  color: var(--clr_main);
  position: relative;
}
#TopPage #info dl dt span {
  font-size: 70%;
  color: #82847c;
}
#TopPage #info dl dt::before {
  font-family: fontello;
  content: "4";
  font-weight: normal;
  background: var(--clr_main);
  color: #fff;
  border-radius: 50%;
  width: 1.8rem;
  height: 1.8rem;
  display: -ms-grid;
  display: grid;
  place-items: center;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
}
#TopPage #info dl dt.close::before {
  content: "3";
}
#TopPage #info dl dd {
  padding: 0 0 1rem 2.2rem;
  display: none;
}
#TopPage #feature {
  padding: 5rem 0;
  background: transparent -webkit-gradient(linear, left top, right top, from(#a7d96b), color-stop(15%, #a4d470), color-stop(34%, #96d25b), color-stop(56%, #87ca6d), color-stop(81%, #75c25f), to(#4ab95d)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #a7d96b 0%, #a4d470 15%, #96d25b 34%, #87ca6d 56%, #75c25f 81%, #4ab95d 100%) 0% 0% no-repeat padding-box;
}
#TopPage #feature h2 {
  text-align: center;
  background: url(../img/h2_w.png) no-repeat center;
  background-size: contain;
  padding: 1rem 0;
  color: #fff;
  margin-bottom: 2rem;
}
#TopPage #feature .f01,
#TopPage #feature .f02,
#TopPage #feature .f03,
#TopPage #feature .f04 {
  margin: 0 0 3rem;
  background: url(../img/leaf02.png) no-repeat bottom right #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0.8rem 0.8rem 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0.8rem 0.8rem 0 rgba(0, 0, 0, 0.1);
}
#TopPage #feature .f01 dl,
#TopPage #feature .f02 dl,
#TopPage #feature .f03 dl,
#TopPage #feature .f04 dl {
  position: relative;
  padding: 1.2rem;
}
#TopPage #feature .f01 dl > dt,
#TopPage #feature .f02 dl > dt,
#TopPage #feature .f03 dl > dt,
#TopPage #feature .f04 dl > dt {
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--clr_sub1);
  margin: 0 0 0.5rem;
  background: url(../img/feature_icon01.png) no-repeat center left;
  background-size: 2.5rem auto;
  padding-left: 3.2rem;
  min-height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#TopPage #feature .f01 dl > dd,
#TopPage #feature .f02 dl > dd,
#TopPage #feature .f03 dl > dd,
#TopPage #feature .f04 dl > dd {
  position: relative;
  z-index: 1;
  font-size: 1.4rem;
  color: #675461;
}
#TopPage #feature .f01 dl > dd img,
#TopPage #feature .f02 dl > dd img,
#TopPage #feature .f03 dl > dd img,
#TopPage #feature .f04 dl > dd img {
  position: absolute;
  top: -7rem;
  right: 0rem;
  width: 7rem;
}
#TopPage #symptom {
  background: url(../img/symptom_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 4rem 0;
}
#TopPage #symptom h2 {
  padding: 0;
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: var(--clr_main);
}
#TopPage #symptom h2::before {
  color: #fff;
  background: transparent -webkit-gradient(linear, left top, right top, color-stop(6%, #9dc814), color-stop(28%, #8ebf20), color-stop(69%, #62a631), color-stop(94%, #3d9738)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #9dc814 6%, #8ebf20 28%, #62a631 69%, #3d9738 94%) 0% 0% no-repeat padding-box;
  width: 3rem;
  height: 3rem;
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: fontello;
  content: "\e815";
  border-radius: 50%;
}
#TopPage #symptom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#TopPage #symptom ul li {
  min-width: 48%;
}
#TopPage #symptom ul li::before {
  font-family: fontello;
  content: "\e816";
  color: #e88497;
}
#TopPage #menu .wrap {
  margin: 0;
}
#TopPage #menu .inner {
  background-image: url("../img/parallax.jpg");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 8rem 1rem 2rem;
}
#TopPage #menu h2 {
  margin-bottom: -5rem;
  position: relative;
  text-align: center;
  background: url(../img/h2.png) no-repeat center;
  background-size: 4rem auto;
  padding-top: 5rem;
}
#TopPage #menu 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 #menu ul li {
  margin: 0 0 2rem 0;
  width: 33%;
}
#TopPage #menu ul li a {
  color: #3b3b3b;
  display: block;
  text-align: center;
  border: none;
  background: url(../img/icon_internal.png) no-repeat center top;
  padding-top: 5.5rem;
  background-size: auto 5rem;
}
#TopPage #menu ul li.cardiology a {
  background-image: url(../img/icon_cardiology.png);
}
#TopPage #menu ul li.diabetes a {
  background-image: url(../img/icon_diabetes.png);
}
#TopPage #menu ul li.footcare a {
  background-image: url(../img/icon_footcare.png);
}
#TopPage #menu ul li.examination a {
  background-image: url(../img/icon_examination.png);
}
#TopPage #menu ul li.vaccination a {
  background-image: url(../img/icon_vaccination.png);
}

@media screen and (min-width: 48em), print {
  #TopPage header {
    width: 100%;
    height: 61.4rem;
    min-width: 1180px;
    margin: 0 auto 0 0;
  }
  #TopPage header .wrap {
    display: block;
    width: 53rem;
    height: 61.4rem;
    min-width: auto;
    background: url(../img/kv_orn.png) no-repeat center right;
    margin: 0 auto 0 0;
    padding: 1.7rem 8rem 0.5rem;
    letter-spacing: normal;
  }
  #TopPage header .wrap .logo {
    width: 30.5rem;
    height: 23rem;
    margin: 0 auto 2rem;
  }
  #TopPage header .wrap .logo a {
    background: url(../img/logo_kv.svg) no-repeat center;
    margin: auto;
  }
  #TopPage header .wrap .kv_event {
    margin-bottom: 1.5rem;
  }
  #TopPage header .wrap .kv_event .kv_open {
    font-size: 2rem;
    margin: 1rem auto;
  }
  #TopPage header .wrap .kv_event .kv_open + li {
    font-size: 1.8rem;
  }
  #TopPage header .wrap .h_right ul {
    display: block !important;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  #TopPage header .wrap .h_right ul li {
    margin-bottom: 1rem;
  }
  #TopPage header .wrap .h_right .tbl_time {
    display: block !important;
  }
  #TopPage header .wrap .h_right .tbl_time table caption {
    margin-top: 0;
  }
  #TopPage header .wrap .h_right .tbl_time table thead th {
    padding: 1rem 0.6rem;
  }
  #TopPage header .wrap .h_right .tbl_time table tbody th {
    width: 12rem;
  }
  #TopPage header .wrap .h_right .tbl_time table tbody th,
  #TopPage header .wrap .h_right .tbl_time table tbody td {
    padding: 1rem 0.6rem;
  }
  #TopPage #kv {
    margin: 0 auto 0;
    background-size: auto;
    padding: 0;
    height: 61.4rem;
    min-width: 1180px;
    position: absolute;
    top: 0;
    /*.kv_open {
        margin: 0 auto;
        height: 72rem;
        padding-top: 53rem;

        img {
            width: auto;
            max-width: none;
            margin: 0 1rem 0 auto;
        }
    }
    .kv_reserve {
        position: absolute;
        top: 0;
        right: 0;
        background: transparent linear-gradient(180deg, #74566a 0%, #654a5c 57%, #523b4b 100%) 0% 0% no-repeat
            padding-box;
        width: 13.3rem;
        height: 13.3rem;
        color: #fff;
        display: grid;
        place-items: center;
        align-content: center;
        line-height: 1;

        i {
            font-size: 5.5rem;
            display: block;
            padding-bottom: 1rem;
            transition: 0.8s;
            transform: rotateY(0deg);
        }

        &:hover i {
            transform: rotateY(360deg);
        }
    }*/
  }
  #TopPage #kv .wrap {
    position: relative;
    height: 61.4rem;
  }
  #TopPage #kv .kv_txt {
    width: 67rem;
    font-size: 2.8rem;
    margin: 0 20rem 0 0;
  }
  #TopPage #kv .kv_txt p {
    padding: 0.7rem 2rem;
  }
  #TopPage #nav {
    width: 110rem;
    min-width: 110rem;
    margin: 4rem auto 8rem;
    border-radius: 3rem;
  }
  #TopPage #nav ul {
    width: 100%;
  }
  #TopPage #nav.fixed {
    margin: 0 auto;
  }
  #TopPage main {
    padding: 0 0;
  }
  #TopPage main .wrap {
    margin: 0 auto;
  }
  #TopPage main h2 {
    font-size: 4rem;
  }
  #TopPage main #info .flex_LRTB {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 10rem;
  }
  #TopPage main #info h2 {
    width: 20.2rem;
    height: 20.2rem;
    font-size: 2.7rem;
  }
  #TopPage main #info dl {
    width: 85rem;
  }
  #TopPage main #info dl dt {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    padding-left: 2.9rem;
  }
  #TopPage main #info dl dt::before {
    width: 2.2rem;
    height: 2.2rem;
    top: 0.4rem;
  }
  #TopPage main #info dl dd {
    padding-left: 4.8rem;
    margin-bottom: 4.8rem;
    padding-bottom: 0;
  }
  #TopPage main #contents {
    padding: 10rem 0 15rem;
  }
  #TopPage main #contents .inner > ul {
    gap: 0;
  }
  #TopPage main #contents .inner > ul > li {
    width: 27.1rem;
    height: 27.7rem;
  }
  #TopPage main #contents .inner > ul > li a {
    font-size: 2rem;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #TopPage main #contents .inner > ul > li a::before {
    width: 15.7rem;
    height: 16.2rem;
    background-size: auto;
    -webkit-transition: 0.8s;
    transition: 0.8s;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    margin-bottom: 0;
  }
  #TopPage main #contents .inner > ul > li a::after {
    border-width: 0 0 3.4rem 3.4rem;
  }
  #TopPage main #contents .inner > ul > li a:hover::before {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
  #TopPage main #contents .inner > ul > li:nth-child(-n+3) {
    height: auto;
    margin-bottom: 6.1rem;
  }
  #TopPage main #contents .inner > ul > li:nth-child(-n+3) a {
    display: block;
    font-size: 3rem;
    padding: 3rem 0 0;
  }
  #TopPage main #contents .inner > ul > li:nth-child(-n+3) a ul.list_sim {
    font-size: 2rem;
    margin: 3.5rem 0 3.5rem 1rem;
  }
  #TopPage main #contents .inner > ul > li:nth-child(-n+3) a::before {
    width: 21.3rem;
    height: 21.3rem;
    margin-bottom: 2rem;
  }
  #TopPage main #contents .inner > ul > li:first-child .list_sim li:first-child {
    letter-spacing: -0.1rem;
  }
  #TopPage main #feature {
    margin: 0;
    background: none;
    position: relative;
  }
  #TopPage main #feature .wrap {
    position: relative;
    padding: 10rem 4rem 0;
  }
  #TopPage main #feature .wrap::after {
    width: 200rem;
    height: 113rem;
    content: "";
    display: block;
    border-radius: 0 10rem 10rem 0;
    background: transparent -webkit-gradient(linear, left top, right top, from(#a7d96b), color-stop(15%, #a4d470), color-stop(34%, #96d25b), color-stop(56%, #87ca6d), color-stop(81%, #75c25f), to(#4ab95d)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #a7d96b 0%, #a4d470 15%, #96d25b 34%, #87ca6d 56%, #75c25f 81%, #4ab95d 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    right: 0;
  }
  #TopPage main #feature .container {
    position: relative;
    z-index: 5;
    width: 99rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 45.5rem 0 8rem 0 45.5rem;
    grid-template-columns: 45.5rem 8rem 45.5rem;
    -ms-grid-rows: 42rem 0 12rem 0 42rem;
    grid-template-rows: 42rem 12rem 42rem;
    gap: 0 0;
    grid-auto-flow: row;
        grid-template-areas: "f01 . f02" "h2 h2 h2" "f03 . f04";
    margin: auto;
  }
  #TopPage main #feature .h2 {
    grid-area: h2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #TopPage main #feature .f01 {
    grid-area: f01;
  }
  #TopPage main #feature .f02 {
    grid-area: f02;
  }
  #TopPage main #feature .f03 {
    grid-area: f03;
  }
  #TopPage main #feature .f04 {
    grid-area: f04;
  }
  #TopPage main #feature .f01,
  #TopPage main #feature .f02,
  #TopPage main #feature .f03,
  #TopPage main #feature .f04 {
    margin: 0;
  }
  #TopPage main #feature .f01 dl,
  #TopPage main #feature .f02 dl,
  #TopPage main #feature .f03 dl,
  #TopPage main #feature .f04 dl {
    min-height: 17.2rem;
    padding: 1.2rem 2.3rem 0;
  }
  #TopPage main #feature .f01 dl dt,
  #TopPage main #feature .f02 dl dt,
  #TopPage main #feature .f03 dl dt,
  #TopPage main #feature .f04 dl dt {
    font-size: 2.6rem;
    background-size: auto;
    padding-left: 4rem;
  }
  #TopPage main #symptom {
    padding: 10rem 0;
  }
  #TopPage main #symptom h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
  #TopPage main #symptom h2::before {
    width: 6.1rem;
    height: 6.1rem;
    font-size: 3.5rem;
  }
  #TopPage main #symptom ul li {
    font-size: 2.2rem;
    width: 23%;
    margin-bottom: 3rem;
    min-width: auto;
    letter-spacing: normal;
  }
  #TopPage main #symptom ul li:nth-child(8) {
    width: 30%;
  }
  #TopPage main #symptom ul li:nth-last-child(2) {
    width: 46%;
  }
  #TopPage main #menu .wrap {
    width: 100%;
    padding: 0;
  }
  #TopPage main #menu h2 {
    background-size: auto;
    padding-top: 15rem;
    margin-bottom: -11rem;
  }
  #TopPage main #menu .inner {
    padding: 15rem 1rem 8rem;
  }
  #TopPage main #menu ul {
    width: 100rem;
    margin: auto;
    gap: 3rem 7rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #TopPage main #menu ul li {
    width: 15.5rem;
    margin: 0;
  }
  #TopPage main #menu ul li a {
    background-size: auto;
    padding-top: 16rem;
    font-size: 2rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #TopPage main #menu ul li a:hover {
    -webkit-transform: translateY(-0.4rem);
            transform: translateY(-0.4rem);
  }
}

@media screen and (min-width: 48em), print{
  #TopPage main #feature .h2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 5;
  }
  #TopPage main #feature .f01 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  #TopPage main #feature .f02 {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  #TopPage main #feature .f03 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  #TopPage main #feature .f04 {
    -ms-grid-row: 5;
    -ms-grid-column: 5;
  }
}
/* /_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 > .inner {
  margin: 3rem auto;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  font-weight: normal;
}
#lower h1 {
  background: url(../img/h1.jpg) 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: var(--blue);
  text-shadow: 0 0 1rem #fff;
  text-align: right;
}
#lower h2 {
  font-size: 1.9rem;
  margin: 0 0 2rem;
  text-align: center;
  background: url(../img/h2.png) top center no-repeat;
  padding-top: 5rem;
  background-size: auto 4.5rem;
}
#lower h3 {
  margin: 4rem 0 2rem;
  color: #fff;
  font-size: 1.8rem;
  background: transparent -webkit-gradient(linear, right top, left top, from(#9ac766), color-stop(30%, #7fbb50), color-stop(53%, #71b75d), color-stop(76%, #4bab3c), to(#1a981e)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(270deg, #9ac766 0%, #7fbb50 30%, #71b75d 53%, #4bab3c 76%, #1a981e 100%) 0% 0% no-repeat padding-box;
  line-height: 1.35;
  padding: 0.3rem 2rem;
  border-radius: 3rem;
}
#lower h3::before {
  font-family: fontello;
  content: "\e81b";
  padding-right: 0.5rem;
}
#lower h4 {
  margin: 0 0 2rem;
  font-size: 1.6rem;
}
#lower h4::after {
  content: "";
  height: 0.3rem;
  width: 6.4rem;
  display: block;
  margin: 1rem auto 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--clr_main)), color-stop(50%, var(--clr_main)), color-stop(50%, #d4d5d6), to(#d4d5d6));
  background: linear-gradient(90deg, var(--clr_main) 0%, var(--clr_main) 50%, #d4d5d6 50%, #d4d5d6 100%);
}
#lower h5 {
  margin: 0 0 2rem;
  font-size: 1.4rem;
  line-height: 1.35;
  padding: 0;
  color: var(--clr_main);
}
#lower h5::before {
  content: "■";
  padding-right: 0.3rem;
}
#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: 1180px;
    padding: 0 4rem;
  }
  #lower main {
    padding-bottom: 0;
    margin-bottom: 10rem;
  }
  #lower main::after {
    height: 13rem;
    background-size: auto;
  }
  #lower main > .wrap > .inner {
    margin-bottom: 10rem;
  }
  #lower main > .wrap > section {
    margin: -9rem auto 7rem;
    padding-top: 9rem;
  }
  #lower main > .wrap > section .inner + section,
  #lower main > .wrap > section .inner + .flex_LRTB.half {
    padding-top: 5rem;
  }
  #lower main > .wrap > section > section {
    margin: 5rem auto 8rem;
  }
  #lower main > .wrap > section > section > section {
    margin: 7rem auto 7rem;
  }
  #lower main > .wrap > section > section > section > section {
    margin: 6rem auto 6rem;
  }
  #lower main > .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: 16.5rem;
    max-width: 200rem;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #lower h1 span {
    display: block;
    width: 1180px;
    padding: 0 4rem;
    margin: auto;
    text-align: right;
  }
  #lower h2 {
    font-size: 3.6rem;
    margin-bottom: 5rem;
    background-size: auto;
    padding-top: 9.4rem;
  }
  #lower h3 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
    padding: 1rem 1.6rem;
    border-radius: 5rem;
  }
  #lower h4 {
    font-size: 2.8rem;
    margin: 0 0 3rem;
  }
  #lower h4::after {
    margin-top: 0.7rem;
  }
  #lower h5 {
    font-size: 2.4rem;
    margin: 0 0 2.5rem;
    padding: 0 0 0 4rem;
  }
}
#lower #access #overview::before {
  display: none;
}
#lower #access #overview .bg.wrap {
  display: none;
}
#lower #first .bnr_app {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#lower #first .bnr_app li {
  width: 47%;
}
#lower #diabetes .dl_flow {
  margin-bottom: 2rem;
}
#lower #diabetes .dl_flow dt {
  width: 100%;
}
#lower #diabetes .dl_flow dd {
  width: 100%;
}
#lower #examination .dl_def {
  margin-bottom: 1.5rem;
}
#lower #examination .dl_def > dd > dl {
  margin-top: 1.5rem;
}
#lower #examination .dl_def > dd > dl > dd {
  margin-bottom: 1.5rem;
}
#lower #examination .dl_flow {
  margin-bottom: 2rem;
}
#lower #examination .dl_flow dt {
  width: 100%;
}
#lower #examination .dl_flow dd {
  width: 100%;
}

@media screen and (min-width: 48em), print {
  #lower #first .bnr_digikar {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #lower #diabetes .dl_flow dt {
    width: 40%;
  }
  #lower #diabetes .dl_flow dd {
    width: 60%;
  }
  #lower #examination .dl_flow dt {
    width: 15%;
  }
  #lower #examination .dl_flow dd {
    width: 85%;
  }
}
/* 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　出力ここまで */