@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
/* CSS変数 */
:root {
  --clr_txt:#673E12;
  --clr_bg:#FFFDF2;
  --clr_link:#673E12;
  --clr_linkH:#F88C22;
  --clr_main:#FFA957;
  --clr_sub1:#86C688;
  --clr_sub2:#F88C22;
  --red:#f35152;
  --blue:#51a3f3;
  --green:#A2D5A4;
  --orange:#F3A151;
  --yellow:#FFE280;
}

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

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

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

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

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

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

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

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

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

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

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

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

a {
  text-decoration: none;
}

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

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

.underline {
  text-decoration: underline !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: linear-gradient(transparent 60%, #fff38b 60%);
}

.font_s {
  font-size: smaller;
}

.font_l {
  font-size: larger;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.w_15 {
  width: 15% !important;
}

.w_20 {
  width: 20% !important;
}

.w_25 {
  width: 25% !important;
}

.w_30 {
  width: 30% !important;
}

.w_35 {
  width: 35% !important;
}

.w_40 {
  width: 40% !important;
}

.w_45 {
  width: 45% !important;
}

.w_50 {
  width: 50% !important;
}

.w_55 {
  width: 55% !important;
}

.w_60 {
  width: 60% !important;
}

.w_65 {
  width: 65% !important;
}

.w_70 {
  width: 70% !important;
}

.w_75 {
  width: 75% !important;
}

.w_80 {
  width: 80% !important;
}

.w_85 {
  width: 85% !important;
}

.w_90 {
  width: 90% !important;
}

.w_95 {
  width: 95% !important;
}

.w_100 {
  width: 100% !important;
}

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

@media screen and (min-width: 48em), print {
  /* PCで左→右に配置／SPで上→下に配置 */
  .flex_LRTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
  }
  .flex_LRTB.half {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_LRTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_LRTB.half > li {
    margin-bottom: 1rem;
  }
  .flex_LRTB.half > section {
    margin: 0 !important;
  }
  .flex_LRTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_LRTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.center {
    justify-content: center;
  }
  .flex_LRTB.fwrap,
  .flex_RLTB.fwrap {
    flex-wrap: wrap;
  }
  /* PCで右→左に配置／SPで上→下に配置 */
  .flex_RLTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
  }
  .flex_RLTB.half {
    justify-content: space-between;
    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 0;
}
ul.list_sim > li {
  margin: 0 0 10px 0;
  padding: 0 0 0 1.5rem;
  position: relative;
}
ul.list_sim > li::before {
  display: inline-block;
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--clr_sub1);
  position: absolute;
  left: 0;
  top: 0.3em;
}

/* ● -------------------------------------- */
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: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
  ul.list_pl li {
    width: 33%;
  }
  ul.list_pl li a {
    background: rgba(103, 62, 18, 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: "\e808";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_main);
}

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

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow > li {
  border: 5px solid var(--clr_sub1);
  border-radius: 10px;
  margin-bottom: 35px;
  padding: 0.5rem 1rem 1rem;
  position: relative;
}
ol.list_flow > li p.ttl {
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 0.5rem;
}
ol.list_flow > li p.ttl::first-letter {
  color: var(--clr_main);
  font-size: 2.5rem;
  padding-right: 0.5rem;
}
ol.list_flow > li *:last-child {
  margin-bottom: 0;
}
ol.list_flow > li::after {
  bottom: -30px;
  color: var(--clr_sub1);
  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;
  }
  ol.list_flow > li 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: flex;
    flex-wrap: wrap;
  }
  .dl_career dt {
    width: 5em;
  }
  .dl_career dd {
    width: calc(100% - 6em);
  }
}
/* 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: flex;
  flex-wrap: wrap;
  align-items: center;
  border-left: 0.1rem solid #ccc;
  border-right: 0.1rem solid #ccc;
  border-top: 0.1rem solid #ccc;
  padding: 0;
}
.dl_flow dt,
.dl_flow dd {
  border-bottom: 0.1rem solid #ccc;
  margin: 0;
  padding: 0.5rem;
}

@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 {
  background: var(--clr_sub1);
  padding: 0.5rem 1rem;
  color: #fff;
}
.dl_tbl > dd {
  background: #fff;
  padding: 0.5rem 1rem;
  margin: 0;
}
.dl_tbl > dd *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  .dl_tbl {
    display: flex;
    flex-wrap: wrap;
  }
  .dl_tbl dt {
    border-top: #fff 0.1rem solid;
    padding: 1.5rem 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: #fff8cf;
  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: #eff8e1;
}
.box2 dt {
  border-bottom: var(--clr_sub1) dotted 2px;
}
.box2 ul.list_maru > li::before {
  color: var(--clr_sub1);
}

.box3 {
  background: var(--blue3);
}

@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;
  color: var(--clr_txt);
}

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: #ffda5e;
  color: var(--clr_txt);
  padding: 1rem 4rem;
  text-align: center;
  margin: 5px auto;
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  line-height: 1;
  position: relative;
  font-size: 110%;
  border-radius: 3rem;
  border: 0.2rem dotted #fff !important;
  box-shadow: 0 0 0 0.2rem #ffda5e;
}
a.btn::before {
  content: "\e80e";
  font-family: fontello;
  font-size: 115%;
}

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

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

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

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

.list_access li {
  margin-bottom: 0;
  line-height: 1;
}
.list_access li::before {
  font-family: fontello;
  content: "\e80f";
  color: var(--orange);
}
.list_access li span {
  color: #ff9833;
  font-size: 175%;
  padding: 0 0.2rem;
}

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

* {
  box-sizing: border-box;
}

html {
  font-size: 3.125vw;
  width: 100%;
}

body {
  font-family: "Zen Maru 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;
  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: 1300px;
  }
  body {
    min-width: 1300px;
    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: 1300px;
    margin: 0 auto;
    padding: 0 6rem;
  }
  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 {
  padding: 1rem 0 0;
  margin: 0 6rem 1rem 0.5rem;
}
header .h_right {
  letter-spacing: normal;
  margin: 0 0.5rem 0.5rem;
  width: auto;
  padding: 0;
}
header .h_right > ul > li {
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
header .h_right > ul > li:last-child dl dt {
  border-radius: 10rem;
  background: var(--yellow);
  padding: 0.5rem;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 48em), print {
  .js-btn {
    display: none;
  }
}
#nav {
  width: 100%;
  padding: 1rem 1rem 0;
  background-color: #fff8cf;
  position: absolute;
  right: -100vw;
  top: 0;
  transition: 0.3s;
  z-index: 90;
  position: fixed;
  max-height: 94%;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  font-family: "Zen Maru Gothic", sans-serif;
}
#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 > li a br {
  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 .dropdown ul li a::before {
  content: "\f006";
}

#nav.open {
  right: 0;
}

@media screen and (min-width: 48em), print {
  header {
    padding: 0;
    width: 100%;
    min-width: 1300px;
    margin: 0;
  }
  header > .wrap {
    margin: 0 auto;
    padding: 2rem 4rem 1rem;
    align-items: center;
    justify-content: space-between;
    display: flex;
  }
  header > .wrap .logo {
    height: auto;
    width: 59rem;
    margin: 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .logo img {
    width: 100%;
  }
  header > .wrap .h_right {
    margin: 0 0;
    padding: 0;
    width: 46rem;
  }
  header > .wrap .h_right > ul {
    margin: 0;
  }
  header > .wrap .h_right > ul > li:first-child {
    text-align: right;
  }
  header > .wrap .h_right > ul > li:last-child dl {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  header > .wrap .h_right > ul > li:last-child dl dt {
    padding: 0;
    width: 10rem;
    line-height: 4.7rem;
  }
  #nav {
    padding: 1rem 0 0;
    margin: 0 auto;
    position: sticky;
    left: 0;
    right: 0;
    overflow: visible !important;
    transition: none;
    display: block;
    width: 100%;
    min-width: 1300px;
    background-color: var(--clr_bg);
  }
  #nav::before {
    content: "";
    display: block;
    background: url(../img/nav_wave.png) center bottom;
    height: 4.2rem;
    width: 100%;
    background-size: auto;
    position: absolute;
    bottom: -4.2rem;
    left: 0;
    right: 0;
  }
  #nav ul.gnav {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0;
    max-width: none;
    line-height: 2.4rem;
    margin: 0 auto;
    text-align: center;
    width: 1300px;
  }
  #nav ul.gnav > li {
    margin: 0;
    padding: 0;
    width: 12.1428571429%;
    border-left: 0.1rem dotted var(--clr_txt);
  }
  #nav ul.gnav > li.access {
    width: 15%;
    border-right: 0.1rem dotted var(--clr_txt);
  }
  #nav ul.gnav > li > a {
    display: inline-block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    line-height: 1;
    color: var(--clr_txt);
    transition: color 0.3s;
    font-size: 1.8rem;
  }
  #nav ul.gnav > li > a:hover {
    color: var(--clr_linkH);
  }
  #nav ul.gnav > li > a::before {
    display: none;
  }
  #nav ul.gnav > li.dropdown {
    padding: 0;
    margin: 0;
    overflow: hidden;
    max-height: 2.5rem;
  }
  #nav ul.gnav > li.dropdown > a {
    margin: 0;
  }
  #nav ul.gnav > li.dropdown > a::after {
    content: "4";
    font-family: fontello;
  }
  #nav ul.gnav > li.dropdown > a.close::after {
    content: "3";
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    padding: 0 2rem;
    margin: 0 auto;
    top: 5.2rem;
    left: 0;
    right: 0;
    width: 118rem;
    overflow: hidden;
    box-shadow: 0 1rem 2rem #eee;
    display: flex;
    background: #fff8cf;
    border-radius: 2rem;
    height: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    margin: 0;
  }
  #nav ul.gnav > li.dropdown .subnav ul a {
    background: #fff;
    color: var(--clr_txt);
    margin: 0;
    width: auto;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    transition: transform 0.3s;
    line-height: 1;
    border-radius: 3rem;
    border: 0.2rem dotted #FFE280;
    height: 6rem;
    padding: 0 2rem;
    font-size: 2rem;
    letter-spacing: normal;
    box-shadow: 0 0 0 0.4rem #fff, 6px 6px 0px #ffefb4;
  }
  #nav ul.gnav > li.dropdown .subnav ul a::before {
    content: "\e80e";
    font-family: fontello;
    font-size: 115%;
    color: var(--orange);
  }
  #nav ul.gnav > li.dropdown .subnav ul a:hover {
    background-color: var(--orange);
    box-shadow: 0 0 0 0.4rem var(--orange);
    border-color: #fff;
    color: #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul a:hover::before {
    color: #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul .allergy a {
    max-width: 25rem;
    justify-content: flex-start;
    padding-left: 4.3rem;
    align-content: center;
    font-size: 1.8rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul .allergy a span {
    display: inline-block;
  }
  #nav ul.gnav > li.dropdown .subnav ul .allergy a::before {
    position: absolute;
    left: 2rem;
  }
  #nav ul.gnav > li.dropdown .sub.close + .subnav {
    height: auto;
    overflow: inherit;
    padding: 3rem 2rem;
  }
  #nav ul.gnav > li.dropdown .sub.close + .subnav ul {
    height: auto;
  }
  #nav ul.gnav > li.dropdown .sub.close + .subnav ul li {
    height: auto;
  }
  #nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0 auto;
    width: 100%;
    min-width: 1300px;
  }
  #nav.fixed + * {
    margin-top: 3.4rem;
  }
  #nav.fixed + * + #kv {
    margin-top: 3.4rem;
  }
}
/* main   -------------------------------------- */
main {
  display: block;
}
main::after {
  display: block;
  content: "";
  width: 100%;
  margin: 0;
  height: 2rem;
  background: url(../img/overview_wave.png) no-repeat center bottom;
  background-size: auto 2rem;
}
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;
  }
  main::after {
    height: 4.2rem;
    background-size: auto;
    margin-top: 10rem;
  }
}
/* ページ下部 医院概要  -------------------------------------- */
#overview {
  margin: 0 0;
  padding: 4rem 0;
  line-height: 1.4;
  background: #fff8cf;
}
#overview .bg {
  background: #fff;
  border-radius: 2rem;
  padding: 3rem 1rem;
}
#overview .o_address {
  margin-bottom: 0.5rem;
  letter-spacing: normal;
}
#overview .o_address span {
  display: inline-block;
}
#overview .o_address + ul .o_tel {
  font-size: 175%;
}
#overview .o_address + ul .o_tel::before {
  color: var(--orange);
  font-family: fontello;
  content: "\e80c";
  padding-right: 0.3rem;
}
#overview .o_address + ul .o_reserve a {
  display: block;
  border-radius: 10rem;
  font-size: 112%;
  background: var(--orange);
  padding: 0.5rem;
  color: #fff;
}
#overview .o_address + ul .o_reserve a::before {
  font-family: fontello;
  content: "\e80a";
  padding-right: 0.3rem;
}
#overview .logo {
  width: calc(100% - 3rem);
  margin: 0 auto 2rem;
}
#overview .overviewL p {
  margin: 0;
}
#overview .overviewL .tbl_time {
  margin-bottom: 0;
}
#overview .overviewR img {
  display: block;
  margin: 1rem auto;
}

.dl_overview {
  margin-bottom: 2rem;
}
.dl_overview dt {
  padding: 0.3rem;
  border-radius: 0.5rem;
  background: var(--yellow);
  text-align: center;
}
.dl_overview dd {
  padding: 0.3rem 0 1rem 0;
}
.dl_overview dd .line {
  display: block;
  width: fit-content;
  margin: 20px;
}

.gmap {
  height: 29rem;
  margin: 3rem 0 1rem;
  display: block;
  border-radius: 1rem;
}
.gmap + a {
  display: block;
  max-width: 26.5rem;
  margin: 0 auto;
  border-radius: 2.5rem;
  line-height: 3;
  background-color: var(--yellow);
  text-align: center;
}
.gmap + a::before {
  font-family: fontello;
  content: "\e80d";
  padding-right: 0.5rem;
}

@media screen and (min-width: 48em), print {
  #overview {
    margin: 0 0;
  }
  #overview .bg {
    padding: 5rem;
  }
  #overview .logo {
    width: 63rem;
    margin: auto auto 5rem;
  }
  #overview div.flex_LRTB {
    justify-content: space-between;
  }
  #overview .overviewL {
    width: 53rem;
  }
  #overview .overviewL .o_address {
    text-align: center;
    font-size: 1.8rem;
  }
  #overview .overviewL ul.flex_LRTB {
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.8rem auto 2.4rem;
  }
  #overview .overviewL ul.flex_LRTB li.o_reserve {
    width: 15rem;
  }
  #overview .overviewR {
    width: 49rem;
  }
  .dl_overview {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.7rem 1.7rem;
  }
  .dl_overview dt {
    width: 9.3rem;
    display: grid;
    padding: 0.7rem 0.5rem 0.9rem;
    align-content: center;
    margin-bottom: 1rem;
  }
  .dl_overview dt:nth-last-child(2) {
    height: 4.5rem;
  }
  .dl_overview dd {
    width: calc(100% - 11rem);
    padding: 0.7rem 0 1rem;
  }
  .dl_overview dd:nth-last-child(3) {
    padding-top: 0;
  }
  .dl_overview dd:last-child {
    padding: 0 0 0 2rem;
  }
  .dl_overview dd:last-child img, .dl_overview dd:last-child a {
    display: block;
  }
  .dl_overview dd .line {
    margin: 0;
  }
  .gmap {
    height: 54rem;
  }
  .gmap + a {
    margin-top: 1.5rem;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  margin-bottom: 1rem;
}
.tbl_time table {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border-radius: 1rem 1rem;
  caption-side: bottom;
  line-height: 1;
}
.tbl_time table thead {
  background: var(--orange);
  color: #fff;
}
.tbl_time table thead th {
  padding: 0.7rem 0;
  font-weight: normal;
}
.tbl_time table tbody {
  overflow: hidden;
}
.tbl_time table tbody tr:nth-child(2) > * {
  border-bottom: 0.1rem solid var(--clr_txt);
  border-top: 0.1rem solid var(--clr_txt);
}
.tbl_time table tbody tr:last-child th {
  border-radius: 0 0 0 1rem;
}
.tbl_time table tbody tr:last-child td:last-child {
  border-radius: 0 0 1rem 0;
}
.tbl_time table tbody th,
.tbl_time table tbody td {
  padding: 0.9rem 0;
  vertical-align: middle;
  letter-spacing: normal;
  background: #fdf6c6;
}
.tbl_time table tbody td {
  min-width: 2.2rem;
}
.tbl_time table tbody th {
  width: 10rem;
  font-weight: normal;
}
.tbl_time .caption {
  padding-top: 0.5rem;
  line-height: 1.24;
}
.tbl_time .caption dl {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.5rem;
  margin: 0.5rem 0 0.5rem 0.2rem;
}
.tbl_time .caption dl dt {
  width: 4.5em;
  text-align: center;
  background: #f26469;
  color: #fff;
  padding: 0.2rem;
  border-radius: 0.5rem;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    margin: 0 !important;
    padding: 0 !important;
  }
  .tbl_time table thead th {
    padding: 1.2rem 0.5rem;
  }
  .tbl_time table tbody tr th {
    padding: 1.6rem 0;
    width: 17rem;
    line-height: 1;
  }
  .tbl_time table tbody tr td {
    padding: 1.6rem 1.5rem;
    font-size: 1.8rem;
  }
  .tbl_time table .caption {
    padding-top: 1rem;
  }
  .tbl_time table .caption dl {
    gap: 1rem;
    margin-bottom: 1rem;
  }
  .tbl_time table .caption dl dt {
    width: 8rem;
  }
}
/* ページトップ -------------------------------------- */
.sp_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: #f4f9fc;
  margin: 0;
  width: 100%;
  height: 6.5rem;
  padding: 0.1rem 0;
  text-align: center;
  z-index: 100;
  letter-spacing: normal;
  font-size: 1.4rem;
  line-height: 1.2;
  box-shadow: 0 -0.2rem 0.2rem rgba(50, 50, 50, 0.2);
}
.sp_bottom li {
  width: 33%;
  position: relative;
  margin: 0;
  height: 100%;
}
.sp_bottom li a {
  padding: 1rem 0;
  color: #fff;
  background: var(--clr_sub2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.sp_bottom li a.line {
  padding: 0.5rem 0;
  background: #fff;
}
.sp_bottom li a.line img {
  width: 40px;
}
.sp_bottom li img {
  height: 90%;
}

@media screen and (min-width: 48em), print {
  .sp_bottom {
    display: none;
  }
  #pageup {
    position: fixed;
    bottom: -15rem;
    right: 0;
    z-index: 100;
    width: 10.9rem;
    height: 8rem;
    transition: bottom 0.8s;
  }
  #pageup a {
    cursor: pointer;
  }
  #pageup.block {
    bottom: 4rem;
  }
  .pc_right {
    position: fixed;
    top: 21rem;
    right: 0;
    z-index: 1000;
  }
  .pc_right li {
    width: 80px;
    margin-bottom: 3rem;
  }
  .pc_right li .line {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 2px solid var(--clr_sub2);
    border-radius: 10px 0 0 10px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .pc_right li .line img {
    width: 40px;
    margin-bottom: 20px;
  }
}
/* footer -------------------------------------- */
footer .wrap {
  display: none;
}
footer a {
  color: var(--clr_txt);
}

address {
  padding: 0.8rem 0 2rem;
  font-style: normal;
  text-align: center;
  background: var(--orange);
}

@media screen and (min-width: 48em), print {
  footer {
    display: block;
    padding: 3.5rem 0 0 0;
    margin: 0 auto 0;
  }
  footer .wrap {
    display: block;
    position: relative;
  }
  footer .wrap > ul {
    margin: 0 auto 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .wrap > ul a {
    padding: 0 1em;
  }
  footer .wrap > ul li {
    border-right: 0.1rem solid var(--clr_txt);
  }
  footer .wrap > ul li:last-child, footer .wrap > ul li.constipation, footer .wrap > ul li.covid19, footer .wrap > ul li.molluscum_contagiosum {
    border-right: none;
  }
  footer .wrap > ul .subnav {
    display: none;
  }
  address {
    margin: 2rem auto 0;
    padding: 1.8rem 0;
  }
  address a {
    color: #fff;
  }
}
/*#nav,
footer,
#TopPage main {
    a {
        pointer-events: none;
    }
}
.js-btn  {
    pointer-events: none;
}
#TopPage main #news a{
    pointer-events: all;
}*/
/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage #kv {
  background-size: auto 20rem;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
#TopPage #kv::after {
  content: "";
  display: block;
  background: url(../img/h1_curve.png) center top;
  height: 2.2rem;
  width: 100%;
  background-size: auto 2.2rem;
  position: absolute;
  top: 17.9rem;
  left: 0;
  right: 0;
}
#TopPage #kv .wrap {
  position: relative;
  padding-top: 20rem;
}
#TopPage #kv .kv_txt {
  text-align: center;
  line-height: 1.6;
  font-size: 1.6rem;
}
#TopPage #kv .kv_open {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 1rem;
}
#TopPage #kv .kv_open li {
  width: 35%;
  margin: 0 auto;
}
#TopPage main {
  margin: 0 0;
}
#TopPage main section {
  margin-bottom: 0;
}
#TopPage #greeting h2,
#TopPage #medical h2,
#TopPage #features h2,
#TopPage #disease h2,
#TopPage #checkup h2 {
  font-size: 1.8rem;
  margin: 0 0 2rem;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  padding-top: 1rem;
  background: url(../img/h2.png) center top no-repeat;
  background-size: auto 0.5rem;
  position: relative;
}
#TopPage #greeting h2 span,
#TopPage #medical h2 span,
#TopPage #features h2 span,
#TopPage #disease h2 span,
#TopPage #checkup h2 span {
  font-size: 1.2rem;
  display: block;
  color: var(--clr_sub2);
  padding-top: 0.5rem;
}
#TopPage #news {
  padding: 5rem 0 7rem;
}
#TopPage #news h2 {
  position: relative;
  font-size: 1.8rem;
  margin: 0 0 2rem;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  background: url(../img/news_h2.png) no-repeat center;
  background-size: auto 10rem;
  height: 10rem;
  display: grid;
  place-items: center;
  align-content: center;
  color: #fff;
  z-index: 5;
}
#TopPage #news h2 span {
  font-size: 1.2rem;
  display: block;
  padding-top: 0.5rem;
}
#TopPage #news .inner {
  background: #fff;
  padding: 3rem 1rem 2rem 2rem;
  margin-top: -5rem;
  border-radius: 5rem 0 0 5rem;
  position: relative;
}
#TopPage #news dl::after {
  content: "";
  width: 1.5rem;
  height: 100%;
  display: block;
  background: #fff;
  position: absolute;
  top: 0;
  right: -1.5rem;
}
#TopPage #news dl dt {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.1em;
  color: var(--clr_sub2);
  font-size: 1.4rem;
  border-top: 0.1rem dotted var(--clr_txt);
}
#TopPage #news dl dt:first-child {
  border-top: none;
}
#TopPage #news dl dt span {
  display: none;
}
#TopPage #news dl dt::before {
  content: "\e800";
  font-family: fontello;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
#TopPage #news dl dt.close::before {
  content: "\e803";
}
#TopPage #news dl dd {
  padding-bottom: 1rem;
  font-weight: bold;
}
#TopPage #news dl dd:not(:nth-of-type(-n + 3)) {
  display: none;
}
#TopPage #greeting {
  background: #fff8cf;
  position: relative;
  padding: 5rem 0 7rem;
}
#TopPage #greeting::before {
  content: "";
  display: block;
  background: url(../img/greeting_bubble.png) no-repeat center;
  background-size: auto 4rem;
  width: 3rem;
  height: 4rem;
  top: -2rem;
  left: 1rem;
  position: absolute;
}
#TopPage #greeting::after {
  content: "";
  display: block;
  background: url(../img/greeting_dot_circle.png) no-repeat center;
  background-size: auto 5rem;
  width: 10rem;
  height: 5rem;
  bottom: -2rem;
  right: 1rem;
  left: auto;
  position: absolute;
  z-index: 5;
}
#TopPage #greeting h2 {
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
}
#TopPage #greeting p {
  margin-bottom: 0.5rem;
}
#TopPage #medical {
  position: relative;
  padding: 2rem 0 7rem;
}
#TopPage #medical::before {
  content: "";
  display: block;
  background: url(../img/medical_wave.png) center bottom;
  height: 3.2rem;
  width: 100%;
  background-size: auto;
  position: absolute;
  top: -3.2rem;
  left: 0;
  right: 0;
}
#TopPage #medical div.flex_LRTB ul {
  margin-bottom: 1.5rem;
}
#TopPage #medical div.flex_LRTB ul li {
  display: none;
}
#TopPage #medical div.flex_LRTB ul li.information {
  display: block;
  max-width: 36rem;
  text-align: center;
}
#TopPage #medical div.flex_LRTB ul li.information a {
  color: #fff;
  display: block;
  background: var(--orange);
  margin: 5px auto;
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  line-height: 1;
  position: relative;
  font-size: 110%;
  border-radius: 3rem;
  border: 0.2rem dotted #fff;
  box-shadow: 0 0 0 0.2rem var(--orange);
  padding: 1rem 4rem;
}
#TopPage #medical div.flex_LRTB ul li.information a::before {
  content: "\e80e";
  font-family: fontello;
  font-size: 115%;
}
#TopPage #medical div.flex_LRTB + ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
#TopPage #medical div.flex_LRTB + ul li {
  width: 49%;
}
#TopPage #medical div.flex_LRTB + ul li.information {
  display: none;
}
#TopPage #medical div.flex_LRTB + ul li a {
  padding-top: 10rem;
  white-space: nowrap;
  background: url(../img/medical_pediatrics.png) top center no-repeat;
  background-size: auto 9.5rem;
  display: block;
  text-align: center;
  letter-spacing: normal;
  border: none;
}
#TopPage #medical div.flex_LRTB + ul li a::before {
  content: "\e80e";
  font-family: fontello;
  font-size: 115%;
  color: var(--clr_sub2);
}
#TopPage #medical div.flex_LRTB + ul li.injury a {
  background-image: url(../img/medical_injury.png);
}
#TopPage #medical div.flex_LRTB + ul li.infant a {
  background-image: url(../img/medical_infant.png);
}
#TopPage #disease {
  padding: 2rem 0 7rem;
}
#TopPage #disease .wrap {
  background: url(../img/disease_wave.png) bottom center no-repeat #fff8cf;
  background-size: auto 2rem;
  border-radius: 3rem;
  padding: 5rem 1rem 2rem;
  position: relative;
}
#TopPage #disease .wrap::before {
  content: "";
  display: block;
  background: url(../img/greeting_bubble.png) no-repeat center;
  background-size: auto 4rem;
  width: 3rem;
  height: 4rem;
  top: -2rem;
  right: 1rem;
  position: absolute;
  transform: scale(-1, 1);
}
#TopPage #disease .wrap h2 {
  position: absolute;
  top: -1.8rem;
  left: 0;
  right: 0;
}
#TopPage #disease .wrap ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#TopPage #disease .wrap a {
  background: #fff;
  color: var(--clr_txt);
  padding: 1rem 1rem;
  margin: 0;
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transition: transform 0.3s;
  line-height: 1;
  position: relative;
  font-size: 110%;
  border-radius: 3rem;
  border: 0.2rem dotted #ffe280;
  box-shadow: 0 0 0 0.2rem #fff;
}
#TopPage #disease .wrap a::before {
  content: "\e80e";
  font-family: fontello;
  font-size: 115%;
  color: var(--orange);
}
#TopPage #disease .wrap .allergy a {
  max-width: 25rem;
  justify-content: flex-start;
  padding-left: 3rem;
  align-content: center;
}
#TopPage #disease .wrap .allergy a span {
  display: inline-block;
}
#TopPage #disease .wrap .allergy a::before {
  position: absolute;
  left: 1rem;
}
#TopPage #checkup {
  position: relative;
  margin-bottom: 3rem;
}
#TopPage #checkup::before {
  content: "";
  display: block;
  background: url(../img/greeting_dot_circle.png) no-repeat center;
  background-size: auto 5rem;
  width: 10rem;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
}
#TopPage #checkup li.infant {
  display: none;
}
#TopPage #checkup div.flex_LRTB ul {
  margin-bottom: 1.5rem;
}
#TopPage #checkup div.flex_LRTB ul li {
  display: none;
}
#TopPage #checkup div.flex_LRTB ul li.checkup00 {
  display: block;
  max-width: 36rem;
  text-align: center;
}
#TopPage #checkup div.flex_LRTB ul li.checkup00 a {
  color: #fff;
  display: block;
  background: var(--clr_sub1);
  margin: 5px auto;
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  line-height: 1;
  position: relative;
  font-size: 110%;
  border-radius: 3rem;
  border: 0.2rem dotted #fff;
  box-shadow: 0 0 0 0.2rem var(--clr_sub1);
  padding: 1rem 4rem;
}
#TopPage #checkup div.flex_LRTB ul li.checkup00 a::before {
  content: "\e80e";
  font-family: fontello;
  font-size: 115%;
}
#TopPage #checkup div.flex_LRTB + ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
#TopPage #checkup div.flex_LRTB + ul li {
  width: 49%;
  margin-bottom: 2rem;
}
#TopPage #checkup div.flex_LRTB + ul li.checkup00 {
  display: none;
}
#TopPage #checkup div.flex_LRTB + ul li a {
  padding-top: 10rem;
  background: url(../img/checkup_img01.png) top center no-repeat;
  background-size: auto 9.5rem;
  display: block;
  text-align: center;
  letter-spacing: normal;
  border: none;
}
#TopPage #checkup div.flex_LRTB + ul li a::before {
  content: "\e80e";
  font-family: fontello;
  font-size: 115%;
  color: var(--clr_sub2);
}
#TopPage #checkup div.flex_LRTB + ul li.checkup02 a {
  background-image: url(../img/checkup_img02.png);
}
#TopPage #checkup div.flex_LRTB + ul li.checkup03 a {
  background-image: url(../img/checkup_img03.png);
}
#TopPage #checkup div.flex_LRTB + ul li.checkup04 a {
  background-image: url(../img/checkup_img04.png);
}
#TopPage #features {
  padding: 5rem 0 0;
}
#TopPage #features ul li {
  margin-bottom: 2rem;
}
#TopPage #features ul li .wrap {
  margin: 0;
}
#TopPage #features ul li .wrap img {
  max-width: 25rem;
  margin: 0 auto -15rem;
}
#TopPage #features ul li .wrap > dl {
  background: #fff8cf;
  padding: 15rem 1.5rem 1.5rem;
}
#TopPage #features ul li .wrap > dl > dt {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  line-height: 1;
}
#TopPage #features ul li .wrap > dl > dt span {
  font-size: 4rem;
  color: var(--clr_sub2);
}
#TopPage #features ul li .wrap > dl > dt::before {
  content: "";
  background: url(../img/orn_hitode.png) no-repeat center;
  background-size: contain;
  width: 4.5rem;
  height: 4.2rem;
  display: block;
}
#TopPage #features ul li .wrap > dl > dd {
  border-top: var(--clr_sub2) 0.1rem dotted;
}
#TopPage #features ul li .wrap > dl > dd dt {
  font-size: 2rem;
  color: var(--clr_sub2);
  text-align: center;
  margin-bottom: 1rem;
}
#TopPage #features ul li:nth-child(even) .wrap > dl {
  background: #fff;
}
#TopPage #features ul li:nth-child(even) .wrap > dl > dt span {
  color: var(--clr_sub1);
}
#TopPage #features ul li:nth-child(even) .wrap > dl > dt::before {
  background-image: url(../img/orn_kamekiti.png);
}

@media screen and (min-width: 48em), print {
  #TopPage #kv {
    margin: 0 auto 0;
    background-size: auto;
    padding: 0;
    height: 77rem;
    max-width: 200rem;
    min-width: 1300px;
  }
  #TopPage #kv::after {
    bottom: 0;
    top: auto;
    height: 12.7rem;
    background-size: auto;
  }
  #TopPage #kv .wrap {
    height: 77rem;
    padding: 0;
  }
  #TopPage #kv .kv_txt {
    font-size: 3rem;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 5rem;
    z-index: 5;
  }
  #TopPage #kv .kv_txt > span {
    display: inline-block;
    background: #fff;
    padding: 0.5rem 1.9rem;
    margin-bottom: 1.5rem;
    border-radius: 10rem;
  }
  #TopPage #kv .kv_open {
    position: absolute;
    bottom: 3rem;
    right: 4rem;
    align-items: flex-end;
    gap: 2rem;
    z-index: 5;
  }
  #TopPage #kv .kv_open li {
    width: auto !important;
  }
  #TopPage main {
    padding: 0 0;
  }
  #TopPage main .wrap {
    margin: 0 auto;
  }
  #TopPage main #greeting h2,
  #TopPage main #medical h2,
  #TopPage main #features h2,
  #TopPage main #disease h2,
  #TopPage main #checkup h2 {
    font-size: 3.8rem;
    letter-spacing: 0.76rem;
    margin-bottom: 3rem;
    background-size: auto;
    padding-top: 2rem;
  }
  #TopPage main #greeting h2 span,
  #TopPage main #medical h2 span,
  #TopPage main #features h2 span,
  #TopPage main #disease h2 span,
  #TopPage main #checkup h2 span {
    font-size: 1.8rem;
    letter-spacing: 0.36rem;
  }
  #TopPage main #news {
    padding: 12rem 0;
    overflow: hidden;
  }
  #TopPage main #news h2 {
    font-size: 3.8rem;
    letter-spacing: 0.76rem;
    background-size: auto;
    width: 39rem;
    height: 28rem;
  }
  #TopPage main #news h2 span {
    font-size: 1.8rem;
    letter-spacing: 0.36rem;
  }
  #TopPage main #news .inner {
    margin: 0 0 0 -12rem;
    padding: 5.7rem 0 5.7rem 15rem;
    font-size: 1.8rem;
    width: 90rem;
  }
  #TopPage main #news dl {
    width: 72rem;
  }
  #TopPage main #news dl dt {
    font-size: 2.2rem;
  }
  #TopPage main #news dl::after {
    width: 100rem;
    right: -100rem;
    z-index: -1;
  }
  #TopPage main #news .btn {
    width: 35rem;
    height: 6.8rem;
    border-radius: 10rem;
    font-size: 2rem;
  }
  #TopPage main #greeting {
    padding: 12rem 0;
  }
  #TopPage main #greeting::before {
    width: 1300px;
    margin: auto;
    height: 9.1rem;
    background-position: left center;
    background-size: auto;
  }
  #TopPage main #greeting::after {
    background-size: auto;
    background-position: right center;
    width: 110rem;
    height: 18rem;
    margin: auto;
    bottom: -7rem;
    left: 1rem;
  }
  #TopPage main #greeting h2 {
    margin-top: -2rem;
  }
  #TopPage main #greeting p {
    margin-bottom: 2rem;
  }
  #TopPage main #greeting .btn {
    width: 35rem;
    height: 6.8rem;
    border-radius: 10rem;
    font-size: 2rem;
  }
  #TopPage main #medical {
    padding: 4rem 0 15rem;
  }
  #TopPage main #medical::before {
    height: 4.2rem;
    background-size: auto;
  }
  #TopPage main #medical a {
    transition: transform 0.3s;
  }
  #TopPage main #medical a:hover {
    transform: translateY(-0.4rem);
  }
  #TopPage main #medical .flex_LRTB {
    font-size: 1.8rem;
    margin-bottom: 6rem;
    justify-content: space-between;
  }
  #TopPage main #medical .flex_LRTB p {
    width: 72rem;
  }
  #TopPage main #medical .flex_LRTB ul {
    width: 35rem;
  }
  #TopPage main #medical .flex_LRTB ul li.information a {
    width: 100%;
    height: 6.8rem;
    font-size: 2rem;
    padding: 0;
    border-radius: 10rem;
  }
  #TopPage main #medical .flex_LRTB ul li.information a:hover {
    color: var(--clr_txt);
  }
  #TopPage main #medical .flex_LRTB + ul li {
    width: 35rem;
  }
  #TopPage main #medical .flex_LRTB + ul li a {
    padding-top: 29rem;
    background-size: auto;
    font-size: 2.4rem;
  }
  #TopPage main #disease .wrap {
    width: 119rem;
    padding: 10rem 3rem 6rem;
    background-size: auto;
  }
  #TopPage main #disease .wrap ul {
    gap: 1.5rem;
  }
  #TopPage main #disease .wrap a {
    height: 6rem;
    padding: 0 2rem;
    font-size: 2rem;
    letter-spacing: normal;
    box-shadow: 0 0 0 0.4rem #fff, 6px 6px 0px #ffefb4;
  }
  #TopPage main #disease .wrap a span {
    padding: 0;
  }
  #TopPage main #disease .wrap a:hover {
    background-color: var(--orange);
    box-shadow: 0 0 0 0.4rem var(--orange);
    border-color: #fff;
    color: #fff;
  }
  #TopPage main #disease .wrap a:hover::before {
    color: #fff;
  }
  #TopPage main #disease .wrap .allergy a {
    font-size: 1.8rem;
    padding-left: 4.3rem;
    line-height: 1.1;
  }
  #TopPage main #disease .wrap .allergy a::before {
    left: 2rem;
  }
  #TopPage main #checkup a {
    transition: transform 0.3s;
  }
  #TopPage main #checkup a:hover {
    transform: translateY(-0.4rem);
  }
  #TopPage main #checkup .flex_LRTB {
    font-size: 1.8rem;
    margin-bottom: 6rem;
    justify-content: space-between;
  }
  #TopPage main #checkup .flex_LRTB p {
    width: 72rem;
  }
  #TopPage main #checkup .flex_LRTB ul {
    width: 35rem;
  }
  #TopPage main #checkup .flex_LRTB ul li.checkup00 a {
    width: 100%;
    height: 6.8rem;
    font-size: 2rem;
    padding: 0;
    border-radius: 10rem;
  }
  #TopPage main #checkup .flex_LRTB ul li.checkup00 a:hover {
    color: var(--clr_txt);
  }
  #TopPage main #checkup .flex_LRTB + ul {
    justify-content: space-between;
  }
  #TopPage main #checkup .flex_LRTB + ul li {
    width: 26rem;
  }
  #TopPage main #checkup .flex_LRTB + ul li a {
    padding-top: 28rem;
    background-size: auto;
    font-size: 2.4rem;
  }
  #TopPage main #features {
    padding: 8rem 0 0;
  }
  #TopPage main #features ul li {
    margin-bottom: 5rem;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, #fff8cf 50%, #fff8cf 100%);
  }
  #TopPage main #features ul li .wrap {
    display: flex;
    padding: 0 6rem;
    margin: auto;
  }
  #TopPage main #features ul li .wrap img {
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 5;
  }
  #TopPage main #features ul li .wrap > dl {
    padding: 5rem 0 5rem 37rem;
    margin-left: -37rem;
    border-radius: 30rem 0 0 30rem;
  }
  #TopPage main #features ul li .wrap > dl > dt {
    padding-left: 14rem;
    text-align: left;
    justify-content: flex-start;
    font-size: 2.4rem;
    position: relative;
  }
  #TopPage main #features ul li .wrap > dl > dt span {
    font-size: 6rem;
  }
  #TopPage main #features ul li .wrap > dl > dt::before {
    width: 7rem;
    height: 6.5rem;
    background-size: auto;
    position: absolute;
    left: 7rem;
  }
  #TopPage main #features ul li .wrap > dl > dd {
    margin: 2.5rem 0 0 7rem;
    padding-top: 2.5rem;
    width: 61rem;
  }
  #TopPage main #features ul li .wrap > dl > dd dt {
    text-align: left;
    font-size: 3.4rem;
    margin-bottom: 2.8rem;
  }
  #TopPage main #features ul li .wrap > dl > dd dd {
    font-size: 2rem;
    line-height: 3.4rem;
  }
  #TopPage main #features ul li:nth-child(even) {
    background: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
  }
  #TopPage main #features ul li:nth-child(even) .wrap {
    flex-direction: row-reverse;
  }
  #TopPage main #features ul li:nth-child(even) .wrap > dl {
    border-radius: 0 30rem 30rem 0;
    padding: 5rem 37rem 5rem 0;
    margin-right: -37rem;
  }
  #TopPage main #features ul li:nth-child(even) .wrap > dl > dt {
    padding-right: 7rem;
    padding-left: 9rem;
  }
  #TopPage main #features ul li:nth-child(even) .wrap > dl > dt::before {
    height: 7rem;
    width: 9.8rem;
    left: 0;
  }
  #TopPage main #features ul li:nth-child(even) .wrap > dl > dd {
    margin: 2.5rem 7rem 0 0;
  }
  #TopPage main #counseling {
    padding: 3rem 0 8rem;
  }
  #TopPage main #counseling .inner {
    font-size: 2rem;
    padding: 0 15rem;
  }
  #TopPage main #counseling .inner .img_r {
    width: auto;
  }
  #TopPage main #counseling .inner ul.list_sim li::before {
    top: 0.5em;
  }
  #TopPage main #contents::before {
    width: auto;
  }
  #TopPage main #contents h2 {
    margin-top: 12rem;
  }
  #TopPage main #contents ul {
    margin: 0 5rem;
    gap: 9rem 5rem;
  }
  #TopPage main #contents ul li {
    width: 15rem;
    height: 15rem;
  }
  #TopPage main #contents ul li a {
    border-width: 0.3rem;
    font-size: 2rem;
    transition: 0.3s;
  }
  #TopPage main #contents ul li a:hover {
    transform: translateY(-0.8rem);
    background: rgba(194, 163, 149, 0.3);
  }
}
/* カレンダー -------------------------------------- */
.tab_wrap {
  width: 100%;
  margin: 0 auto;
}

input[type=radio] {
  display: none;
}

.tab_area {
  margin: 0;
  display: flex;
  justify-content: center;
}

.tab_area label {
  width: 33.1%;
  margin: 0;
  display: inline-block;
  padding: 0.9rem 0;
  color: var(--clr_sub2);
  background: #fff;
  border: var(--clr_sub2) solid 0.1rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: ease 0.2s opacity;
  transition: ease 0.2s opacity;
  border-radius: 1rem 1rem 0 0;
}

.panel_area {
  background: #fff;
}

.tab_panel {
  width: 100%;
  padding: 0;
  display: none;
}

.tab_panel p {
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}

#tab1:checked ~ .tab_area .tab1_label {
  background: var(--clr_sub2);
  color: #fff;
}

#tab1:checked ~ .panel_area #panel1 {
  display: block;
}

#tab2:checked ~ .tab_area .tab2_label {
  background: var(--clr_sub2);
  color: #fff;
}

#tab2:checked ~ .panel_area #panel2 {
  display: block;
}

#tab3:checked ~ .tab_area .tab3_label {
  background: var(--clr_sub2);
  color: #fff;
}

#tab3:checked ~ .panel_area #panel3 {
  display: block;
}

table.caledit {
  width: 100%;
  font-weight: 500;
  border-collapse: collapse;
  border-spacing: 0;
  position: relative; /* afterの位置基準 */
}

table.caledit th {
  text-align: center;
  color: #fff;
  padding: 0.6rem 0;
}

table.caledit td {
  text-align: center;
  padding: 0.8rem 0;
  vertical-align: middle;
  cursor: default;
  background-color: #eaf2d6;
  color: #707070;
  border: 1px solid #ccc;
}

table.caledit tr.month th {
  background: var(--clr_sub2);
  font-size: 1.4rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

table.caledit tr.week th {
  padding: 0.5rem 0;
  background: var(--yellow);
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
}

table.caledit .day td .shortTitle {
  display: none;
}

table.caledit .day td:hover .shortTitle {
  color: #333333;
}

table.caledit td.today {
  font-weight: bold;
}

table.caledit td.openSun {
  background: #c3d8f0;
}

table.caledit td.amOnly {
  background: #f2d6ec;
}

table.caledit td.amOnly {
  background: #f2d6ec;
}

table.caledit td.pmOnly {
  background: #d6ecf2;
}

/* 休診日 */
table.caledit td.holiday,
table.caledit td.outPatient,
table.caledit td.extraOutPatient {
  background: #feddde;
}

table.caledit td.notTheMonth {
  color: #f7f7f7;
  background: #f7f7f7;
}

table.caleditWeek div.date {
  font-weight: normal;
  font-size: 10px;
}

.calendar-cellcolor {
  display: flex;
  gap: 1rem;
}
.calendar-cellcolor li {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.calendar-cellcolor li::before {
  background: #feddde;
  content: "";
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  margin-right: 0.5rem;
  border: #3a2216 solid 0.1rem;
}
.calendar-cellcolor li:first-child::before {
  background: #eaf2d6;
}
.calendar-cellcolor li:last-child::before {
  background: #c3d8f0;
}

@media screen and (min-width: 48em), print {
  .calendar-cellcolor {
    gap: 3rem;
    margin-top: 2rem;
  }
  table.caledit tr.month th {
    font-size: 2.1rem;
    padding: 1.2rem;
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower .breadcrumb {
  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;
  border-radius: 1rem;
  padding: 3rem 1rem;
  margin-bottom: 5rem;
}
#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 right;
  background-size: auto 110%;
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.2;
  padding: 5rem 0;
  position: relative;
  text-align: center;
  text-shadow: #fff 2px 0px 2px, #fff -2px 0px 2px, #fff 0px -2px 2px, #fff -2px 0px 2px, #fff 2px 2px 2px, #fff -2px 2px 2px, #fff 2px -2px 2px, #fff -2px -2px 2px, #fff 1px 2px 2px, #fff -1px 2px 2px, #fff 1px -2px 2px, #fff -1px -2px 2px, #fff 2px 1px 2px, #fff -2px 1px 2px, #fff 2px -1px 2px, #fff -2px -1px 2px, #fff 1px 1px 2px, #fff -1px 1px 2px, #fff 1px -1px 2px, #fff -1px -1px 2px;
}
#lower h1::before {
  content: "";
  display: block;
  background: url(../img/nav_wave.png) center;
  height: 2.2rem;
  width: 100%;
  background-size: auto 2.2rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#lower h1::after {
  content: "";
  display: block;
  background: url(../img/h1_curve.png) center top;
  height: 2.2rem;
  width: 100%;
  background-size: auto 2.2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
#lower h2 {
  font-size: 1.9rem;
  margin: 0 0 2rem;
  padding: 1.3rem 0 0;
  display: flex;
  justify-content: center;
  background: url(../img/h2.png) no-repeat top center;
  background-size: auto 1rem;
}
#lower h3 {
  margin: 4rem 0 2rem;
  color: #fff;
  font-size: 1.8rem;
  background-color: var(--clr_main);
  line-height: 1.35;
  padding: 0.5rem 0.5rem;
  border-radius: 0.5rem;
  position: relative;
}
#lower h3::before {
  content: "";
  display: block;
  background: url(../img/h3.png) no-repeat center;
  width: 4rem;
  height: 2.4rem;
  background-size: contain;
  position: absolute;
  top: -1rem;
  right: 1rem;
}
#lower h4 {
  margin: 3.5rem 0 2rem;
  font-size: 1.6rem;
  line-height: 1.35;
  padding: 0.2rem 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0.6rem;
}
#lower h4::before {
  width: 0.3rem;
  content: "";
  display: block;
  background: linear-gradient(180deg, var(--clr_main) 0%, var(--clr_main) 50%, var(--yellow) 50%, var(--yellow) 100%);
}
#lower h5 {
  margin: 3rem 0 2rem;
  font-size: 1.4rem;
  line-height: 1.35;
  padding: 0 0 0.2rem 2rem;
  color: var(--blue);
  background: url(../img/h5.svg) no-repeat top center;
  background-size: 1.6rem auto;
}
#lower {
  /* 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: 1300px;
    padding: 0 4rem;
  }
  #lower main {
    padding-bottom: 0;
  }
  #lower main .wrap {
    padding: 4.5rem 15rem;
  }
  #lower main .wrap > .inner {
    margin-bottom: 10rem;
  }
  #lower main .wrap > section {
    margin: -9rem auto 12rem;
    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: 3rem auto 7rem;
  }
  #lower main .wrap > section > section > section > section {
    margin: 3rem auto 6rem;
  }
  #lower main .wrap > section h3 + section {
    padding-top: 2rem;
  }
  #lower h1 {
    font-size: 4.4rem;
    margin: 0 auto 0;
    line-height: 1;
    background-size: auto;
    position: relative;
    height: 38.5rem;
    background-size: auto;
    max-width: 200rem;
    display: grid;
    align-items: center;
  }
  #lower h1 span {
    max-width: 1300px;
    display: block;
    margin: auto;
    padding: 0 4rem;
  }
  #lower h1::before {
    display: none;
  }
  #lower h1::after {
    height: 12.5rem;
    background-size: auto;
  }
  #lower h2 {
    font-size: 3.8rem;
    line-height: 5.5rem;
    margin-bottom: 6rem;
    padding: 2rem 0 0;
    background-size: auto;
  }
  #lower h3 {
    font-size: 2.6rem;
    line-height: 3rem;
    margin: 0 0 3rem;
    padding: 0.85rem 1.6rem 1.35rem;
  }
  #lower h3::before {
    top: -2rem;
    width: 8.5rem;
    height: 5rem;
    background-size: auto;
  }
  #lower h4 {
    font-size: 2.2rem;
    margin: 0 0 3rem;
    gap: 1rem;
    line-height: 1.8;
  }
  #lower h4::before {
    width: 0.6rem;
  }
  #lower h5 {
    font-size: 2rem;
    margin: 0 0 2.5rem;
    padding: 0 0 0 4rem;
  }
  #lower h6 {
    font-size: 1.8rem;
  }
}
#lower #access #overview .bg {
  display: none;
}
#lower #clinic .flex_LRTB.half.txt_c li {
  margin-bottom: 2rem;
}
#lower #clinic .flex_LRTB.half.txt_c figcaption {
  margin-top: 0.5rem;
  background: url(../img/h5.svg) no-repeat bottom 0.2rem left 0.5rem #fff8e8;
  background-size: 2.5rem auto;
  padding: 0.8rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: bold;
}
#lower #clinic .dl_flow {
  margin: auto;
}
#lower #clinic .dl_flow dt {
  width: 60%;
}
#lower #clinic .dl_flow dd {
  width: 40%;
  text-align: right;
}
#lower #information .dl_faq dt span,
#lower #information .dl_faq dd span,
#lower #vaccination_fever .dl_faq dt span,
#lower #vaccination_fever .dl_faq dd span,
#lower #influenza .dl_faq dt span,
#lower #influenza .dl_faq dd span {
  font-family: "Nunito", sans-serif;
  padding-right: 0.5rem;
  font-size: 150%;
  color: var(--clr_main);
}
#lower #information .dl_faq dd,
#lower #vaccination_fever .dl_faq dd,
#lower #influenza .dl_faq dd {
  margin-bottom: 1.5em;
}
#lower #information .dl_faq dd span,
#lower #vaccination_fever .dl_faq dd span,
#lower #influenza .dl_faq dd span {
  color: var(--clr_sub1);
}
#lower #information .dl_flow,
#lower #vaccination_fever .dl_flow,
#lower #influenza .dl_flow {
  margin: auto;
}
#lower #information .dl_flow dt,
#lower #vaccination_fever .dl_flow dt,
#lower #influenza .dl_flow dt {
  width: 100%;
  border-bottom-width: 0;
}
#lower #information .dl_flow dd,
#lower #vaccination_fever .dl_flow dd,
#lower #influenza .dl_flow dd {
  width: 100%;
  text-align: right;
}

@media screen and (min-width: 48em), print {
  #lower #access .dl_overview dt {
    width: 12em;
  }
  #lower #access .dl_overview dd {
    width: calc(100% - 12em);
  }
  #lower #access .gmap {
    height: 50rem;
    width: 100%;
  }
  #lower #information .img_c {
    width: 50rem;
  }
  #lower #clinic .flex_LRTB.half.txt_c li {
    margin-bottom: 3rem;
  }
  #lower #clinic .flex_LRTB.half.txt_c figcaption {
    padding: 1rem;
    font-size: 2.2rem;
    background-size: 4.2rem auto;
    background-position: left 1rem bottom 0.5rem;
  }
  #lower #clinic .dl_tbl {
    line-height: 1;
    width: 50rem;
  }
  #lower #clinic .dl_tbl dt {
    width: 30rem;
  }
  #lower #clinic .dl_tbl dd {
    width: calc(100% - 30rem);
  }
  #lower #information .dl_flow dt {
    width: 50%;
    border-bottom-width: 0.1rem;
  }
  #lower #information .dl_flow dd {
    width: 50%;
  }
}
/* Slider */
#lower .slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
#lower .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
#lower .slick-list:focus {
  outline: none;
}
#lower .slick-list.dragging {
  cursor: pointer;
}
#lower .slick-slider .slick-track,
#lower .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#lower .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#lower .slick-track:before,
#lower .slick-track:after {
  content: "";
  display: table;
}
#lower .slick-track:after {
  clear: both;
}
#lower .slick-loading .slick-track {
  visibility: hidden;
}
#lower .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
#lower [dir=rtl] .slick-slide {
  float: right;
}
#lower .slick-slide img {
  display: block;
}
#lower .slick-slide.slick-loading img {
  display: none;
}
#lower .slick-slide.dragging img {
  pointer-events: none;
}
#lower .slick-initialized .slick-slide {
  display: block;
}
#lower .slick-loading .slick-slide {
  visibility: hidden;
}
#lower .slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
#lower .slick-arrow.slick-hidden {
  display: none;
}
#lower *:focus:not(:focus-visible),
#lower *::before:focus:not(:focus-visible),
#lower *::after:focus:not(:focus-visible) {
  outline: none;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 6.5rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.4rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}

.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--clr_main);
  line-height: 1.4;
}

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

.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}

.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}

.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--clr_main);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--clr_main);
  z-index: 1;
}

.slick-arrow::before {
  font-size: 1.2rem;
}

.slick-arrow.slick-prev {
  left: -2.6rem;
}

.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\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: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 1rem auto;
}

.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}

.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_main);
}

.slick-dots li button:hover,
.slick-dots li button:focus-visible {
  opacity: 0.8;
}

.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
/* /_lower.scss　出力ここまで */

/*# sourceMappingURL=style.css.map */