@charset "UTF-8";
/*文字PC*/
/*基本フォント*/
:root {
  /*基本背景色PC*/
  --clr_bg: #fff;
  /*基本文字色*/
  --clr_txt: #333;
  /*リンク色*/
  --clr_link: #0096DF;
  --clr_linkH: #35C77A;
  /*ポイントカラーメイン*/
  --clr_main: #0096DF;
  /*ポイントカラーサブ*/
  --clr_sub1: #35C77A;
  --clr_sub2: #19BADC;
  --clr_sub3: #F38B1A;
  --clr_sub4: #D3EDF6;
  --clr_sub5: #FFF8DE;
  --clr_sub6: #81C9EC;
  --clr_sub7: #DCEDF5;
  --clr_sub8: #C5C5C5;
  --clr_sub9: #ECECEC;
  --clr_sub10:#1EBAC5;
  --clr_sub11: #8E8E8E;
  /*赤*/
  --red: #df0027;
  /*緑*/
  --green: #35C77A;
  /*橙*/
  --orange: #F38B1A;
  /*青*/
  --blue: #0096DF;
}

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

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

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

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

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

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

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

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

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

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

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

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

a {
  text-decoration: none;
}

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

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.medium {
  font-weight: 500;
}

.bold {
  font-weight: bold;
}

em {
  font-style: normal;
  font-weight: bold;
}

strong {
  font-weight: 500;
}

.underline {
  background: linear-gradient(transparent 60%, #f8f2bd 60%);
}

.font_s {
  font-size: smaller;
}

.font_l {
  font-size: larger;
}

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

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

.fc_red {
  color: var(--red) !important;
}

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

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

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

@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: 35rem;
  }
}
.bnr {
  width: 96% !important;
  max-width: 320px;
  height: auto;
  border-radius: 0 !important;
  margin: 0 auto;
}

.sp_n,
.sp_n_i {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* マージンPC -------------------------------------- */
@media screen and (min-width: 48em), print {
  .mb_05_pc {
    margin-bottom: 0.5rem !important;
  }
  .mb_10_pc {
    margin-bottom: 1rem !important;
  }
  .mb_15_pc {
    margin-bottom: 1.5rem !important;
  }
  .mb_20_pc {
    margin-bottom: 2rem !important;
  }
  .mb_25_pc {
    margin-bottom: 2.5rem !important;
  }
  .mb_30_pc {
    margin-bottom: 3rem !important;
  }
  .mb_35_pc {
    margin-bottom: 3.5rem !important;
  }
  .mb_40_pc {
    margin-bottom: 4rem !important;
  }
  .mb_45_pc {
    margin-bottom: 4.5rem !important;
  }
  .mb_50_pc {
    margin-bottom: 5rem !important;
  }
  .mlr_auto_pc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* 幅 -------------------------------------- */
.w_10 {
  width: 10% !important;
}

.w_15 {
  width: 15% !important;
}

.w_20 {
  width: 20% !important;
}

.w_25 {
  width: 25% !important;
}

.w_30 {
  width: 30% !important;
}

.w_35 {
  width: 35% !important;
}

.w_40 {
  width: 40% !important;
}

.w_45 {
  width: 45% !important;
}

.w_50 {
  width: 50% !important;
}

.w_55 {
  width: 55% !important;
}

.w_60 {
  width: 60% !important;
}

.w_65 {
  width: 65% !important;
}

.w_70 {
  width: 70% !important;
}

.w_75 {
  width: 75% !important;
}

.w_80 {
  width: 80% !important;
}

.w_85 {
  width: 85% !important;
}

.w_90 {
  width: 90% !important;
}

.w_95 {
  width: 95% !important;
}

.w_100 {
  width: 100% !important;
}

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

@media screen and (min-width: 48em), print {
  /* PCで左→右に配置／SPで上→下に配置 */
  .flex_LRTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
    -webkit-flex-direction: row;
  }
  .flex_LRTB.half {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .flex_LRTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_LRTB.half > li {
    margin-bottom: 1rem;
  }
  .flex_LRTB.half > section {
    margin: 0 !important;
  }
  .flex_LRTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_LRTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.center {
    justify-content: center;
  }
  /* PCで右→左に配置／SPで上→下に配置 */
  .flex_RLTB {
    display: flex;
    display: -webkit-flex;
    flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
  }
  .flex_RLTB.half {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .flex_RLTB.half > * {
    width: 48%;
    margin-bottom: 0;
  }
  .flex_RLTB.half > figure.w30 {
    width: 30% !important;
    margin-right: 2%;
  }
  .flex_RLTB.half > figure + ul {
    width: 68% !important;
  }
  .flex_LRTB.third > * {
    width: 32%;
  }
  .flex_LRTB.third::after {
    content: "";
    display: block;
    width: 32%;
    height: 0.1rem;
  }
}
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*　なし -------------------------------------- */
ul {
  list-style-type: none;
  margin: 0 0 10px;
  padding: 0;
}
ul li {
  margin: 0 0 10px;
  padding: 0;
}

/* シンプル -------------------------------------- */
ul.list_sim {
  margin: 0 0 10px 20px;
}
ul.list_sim > li {
  margin: 0 0 8px 0;
  padding: 0;
  text-indent: -0.5em;
}
ul.list_sim > li::before {
  position: relative;
  top: -0.1em;
  left: -0.5em;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  content: "";
  border-radius: 100%;
  background: var(--clr_txt);
  vertical-align: middle;
}

/* ● -------------------------------------- */
ul.list_maru {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_maru li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_maru li::before {
  display: inline-block;
  content: "●";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_main);
}

/*　● インライン -------------------------------------- */
ul.list_maru.list_in li {
  display: inline-block;
  margin: 0 40px 8px 0;
}

/* ※ -------------------------------------- */
ul.list_kome {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_kome li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_kome li::before {
  display: inline-block;
  content: "※";
  margin-left: -1.1em;
  color: #f0013c;
}

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

/* ページ内リンク -------------------------------------- */
ul.list_pl {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
ul.list_pl li {
  min-width: 40%;
}
ul.list_pl a {
  color: var(--clr_link);
  border: 2px solid var(--clr_link);
  border-radius: 100vh;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 1rem;
  line-height: 1.4;
  text-decoration: none !important;
  text-align: center;
  transition: all 0.5s;
}
ul.list_pl a::before {
  font-family: "fontello";
  content: "b";
  padding-right: 5px;
  font-weight: bold;
}
ul.list_pl a:hover {
  background: var(--clr_link);
  color: #fff;
  border: 2px solid var(--clr_link);
}

@media screen and (min-width: 48em), print {
  ul.list_pl {
    gap: 2rem;
  }
  ul.list_pl li {
    min-width: auto;
  }
  ul.list_pl li a {
    padding: 1.3rem 3rem;
    gap: 1rem;
  }
}
/* チェックボックス -------------------------- */
ul.list_check {
  padding: 0;
  margin: 0 0 10px 1.1em;
}
ul.list_check li {
  list-style-type: none;
  margin: 0 0 0.8rem 0;
}
ul.list_check li::before {
  display: inline-block;
  font-family: fontello;
  content: "\e808";
  margin-left: -1.1em;
  margin-right: 0.1em;
  color: var(--clr_sub1);
}

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

/* 流れ図 -------------------------------------- */
ol.list_flow {
  list-style: none;
  padding: 0;
  margin: 0;
}
ol.list_flow > li {
  border: 0.2rem solid var(--clr_main);
  border-radius: 0.5rem;
  margin-bottom: 4rem;
  padding: 1rem 1rem;
  position: relative;
}
ol.list_flow > li dt {
  font-size: 120%;
  margin-bottom: 0.5rem;
  color: var(--clr_main);
}
ol.list_flow > li *:last-child {
  margin-bottom: 0 !important;
}
ol.list_flow > li::after {
  background: var(--clr_main);
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 0;
  right: 0;
  bottom: -3.25rem;
  margin: auto;
  position: absolute;
  width: 5rem;
  height: 2rem;
}
ol.list_flow > li:last-child::after {
  /*最後の▼を外す*/
  display: none;
}

@media screen and (min-width: 48em), print {
  ol.list_flow > li {
    padding: 3rem 3.5rem 3.5rem;
    margin-bottom: 9rem;
  }
  ol.list_flow > li::after {
    width: 20rem;
    height: 3.3rem;
    bottom: -6.5rem;
  }
  ol.list_flow > li dt {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/* 経歴 -------------------------------------- */
.dl_career dd {
  margin: 0 0 1em 5px;
}

@media screen and (min-width: 48em), print {
  .dl_career {
    display: flex;
    flex-wrap: wrap;
  }
  .dl_career dt {
    width: 8em;
  }
  .dl_career dd {
    width: calc(100% - 9em);
  }
}
/* dtシンプル -------------------------------------- */
.dl_sim {
  margin: 0 auto 1.5rem;
}
.dl_sim > dt {
  font-weight: bold;
  color: var(--clr_main);
  margin-bottom: 0.7rem;
  font-size: 110%;
}
.dl_sim > dd {
  margin-bottom: 2.5rem;
}

/* dtに二重線 -------------------------------------- */
.dl_def {
  margin: 2rem auto;
}
.dl_def > dt {
  border-bottom: double 3px var(--clr_main);
  margin-bottom: 0.7rem;
  font-size: 110%;
}
.dl_def > dd {
  margin-bottom: 1.5rem;
}
.dl_def > dd ul.list_maru li::before {
  color: var(--clr_main);
}

.dl_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  border-left: 0.1rem solid #ccc;
  border-right: 0.1rem solid #ccc;
  border-top: 0.1rem solid #ccc;
  padding: 0;
}
.dl_flex dt,
.dl_flex dd {
  border-bottom: 0.1rem solid #ccc;
  margin: 0;
  padding: 0.5rem;
}
.dl_flex dt {
  background: var(--clr_sub4);
}

@media screen and (min-width: 48em), print {
  .dl_flex dt,
  .dl_flex dd {
    padding: 1.5rem;
  }
}
/* テーブルもどき -------------------------------------- */
.dl_tbl {
  border: var(--clr_sub1) solid 1px;
  margin-bottom: 0.5rem;
}
.dl_tbl > dt {
  font-weight: bold;
  background: var(--clr_sub1);
  padding: 0.5rem 1rem;
  color: #fff;
}
.dl_tbl > dd {
  padding: 1rem;
  margin: 0;
}
.dl_tbl > dd *:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 48em), print {
  .dl_tbl dt {
    border-top: #fff 0.1rem solid;
    padding: 1rem 0 1rem 2rem;
  }
  .dl_tbl dt:first-child {
    border-top: none;
  }
  .dl_tbl dd {
    border-top: var(--clr_sub1) 0.1rem solid;
    padding: 1.5rem 2rem;
  }
  .dl_tbl dd:nth-child(2) {
    border-top: none;
  }
}
/* box -------------------------------------- */
.box1,
.box2,
.box3 {
  padding: 20px !important;
  margin-bottom: 20px;
  background: var(--clr_sub4);
  border-radius: 0.5rem;
}
.box1 > dt,
.box2 > dt,
.box3 > dt {
  border-bottom: var(--clr_main) dotted 2px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  font-weight: bold;
  font-size: large;
  word-break: auto-phrase;
}
.box1 > dd,
.box2 > dd,
.box3 > dd {
  margin: 1rem 1rem 2rem;
}
.box1 > dd dt,
.box2 > dd dt,
.box3 > dd dt {
  color: var(--clr_main);
  font-weight: bold;
}
.box1 > *:last-child,
.box2 > *:last-child,
.box3 > *:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

a:hover img {
  opacity: 0.8;
}

a.btn,
span.btn {
  background: var(--clr_main);
  color: #fff;
  padding: 1rem 4rem 1rem 3rem;
  text-align: center;
  margin: 5px auto;
  width: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  position: relative;
  border: none;
  border-radius: 2rem;
  font-weight: 500;
}
a.btn::after,
span.btn::after {
  font-family: fontello;
  content: "\ebaa";
  position: absolute;
  right: 1rem;
}

@media screen and (min-width: 48em), print {
  a.btn {
    transition: transform 0.3s;
    line-height: 1;
    padding: 2rem 6rem 2rem 4rem;
    border-radius: 4rem;
  }
  a.btn:hover {
    transform: translateY(-0.8rem);
    color: #fff;
    border: none;
  }
  a.btn::after {
    right: 2rem;
  }
}
a.border_n {
  border: none !important;
}

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

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

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

a:has(img) {
  display: inline-block;
  margin: auto;
  border: none !important;
}

main a img {
  transition: transform 0.3s;
}

main a:hover img {
  transform: translateY(-0.8rem);
}

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

@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 400;
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: AdjustedYuGothic;
  font-weight: 700;
  src: local("Yu Gothic Bold");
}
* {
  box-sizing: border-box;
}

html {
  font-size: 3.125vw;
  font-weight: 500;
}

body {
  font-family: YakuHanJPs, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--clr_txt);
  font-size: 1.25rem;
  background-color: var(--clr_bg);
  line-height: 1;
  margin: 0;
  padding: 0;
  letter-spacing: 0.08em;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  width: 100%;
  position: relative;
}

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

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

main {
  line-height: 1.4;
}

.inner {
  padding: 0;
}

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

section {
  margin-bottom: 3rem;
}

@media screen and (min-width: 48em), print {
  .wrap {
    width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
  }
  section {
    margin-bottom: 5rem;
  }
  .inner {
    padding: 0;
  }
  main {
    margin-top: 6rem;
  }
}
/* header  -------------------------------------- */
header > .wrap {
  margin: 0;
}
header::after {
  content: "";
  display: block;
  width: 100%;
  height: 5.5rem;
}
header .h_left {
  position: fixed;
  z-index: 1000;
  width: 100%;
  padding: 0 6rem 0 2rem;
  display: flex;
  align-items: center;
  height: 5.5rem;
  background: #fff;
}
header .logo img {
  max-height: 4rem;
  width: 100%;
  display: block;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  header {
    padding: 0;
    width: 100%;
    min-width: 1280px;
    margin: 0 auto;
    z-index: auto;
    position: relative;
    z-index: 10;
    font-weight: 500;
  }
  header::after {
    display: none;
  }
  header > .wrap {
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    display: flex;
    height: 13rem;
  }
  header > .wrap .logo {
    height: auto;
    width: 40.6rem;
    margin: 0 auto 0 0;
    padding: 0;
    display: block;
  }
  header > .wrap .logo img {
    width: 100%;
    height: auto;
    max-height: none;
    width: 40.6rem;
  }
  header > .wrap .h_left {
    width: 40.6rem;
    height: auto;
    position: relative;
    padding: 0;
  }
  header > .wrap .h_right {
    position: inherit;
    margin: auto 0 auto auto;
    width: 48rem;
    display: flex;
  }
  header > .wrap .h_right ul {
    margin: 0;
  }
  header > .wrap .h_right ul .h_address {
    text-align: right;
    margin: 0;
  }
  header > .wrap .h_right ul .h_tel {
    color: var(--clr_main);
    font-size: 3.4rem;
    margin: 0;
    text-align: right;
    font-family: "DM Sans", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, serif;
    letter-spacing: 0.136rem;
    height: 4.5rem;
    line-height: 1;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  header > .wrap .h_right ul .h_tel::before {
    font-family: fontello;
    padding-right: 0.5rem;
    content: "\ebfc";
    font-size: 4.5rem;
  }
  header > .wrap .h_right ul .h_tel a {
    color: var(--clr_main);
  }
  #nav {
    padding: 0;
    margin: 0 auto;
    position: relative;
    top: auto;
    right: auto;
    overflow: visible !important;
    transition: none;
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 1;
    z-index: 100;
    height: 6rem;
    background: var(--clr_main);
    padding: 0.5rem 0;
    font-weight: 500;
  }
  #nav ul.gnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: normal;
    max-width: none;
    margin: 0 auto;
    text-align: center;
    width: 1280px;
    padding: 0 4rem;
    height: 5rem;
  }
  #nav ul.gnav > li {
    margin: 0;
    padding: 0;
  }
  #nav ul.gnav > li > a {
    text-align: center;
    padding: 0 1rem 0.4rem;
    position: relative;
    margin: 0;
    width: 100%;
    line-height: 1;
    color: #fff;
    transition: color 0.3s;
    display: grid;
    align-items: center;
    height: 5rem;
  }
  #nav ul.gnav > li > a::before {
    position: absolute;
    bottom: 0.8rem;
    top: auto;
    left: 30%;
    content: "";
    width: 40%;
    height: 0.2rem;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  #nav ul.gnav > li > a:hover::before {
    transform: scale(1, 1);
  }
  #nav ul.gnav > li.dropdown > a {
    position: relative;
    margin: 0;
  }
  #nav ul.gnav > li.dropdown > a::after {
    content: "t";
    font-family: fontello;
    position: absolute;
    bottom: -0.2rem;
    left: 0;
    right: 0;
  }
  #nav ul.gnav > li.dropdown .subnav {
    display: none;
    position: absolute;
    margin: 0;
    z-index: 100;
    top: 6rem;
    left: 0;
    width: 100%;
    padding: 3rem 0;
    background: rgba(220, 237, 245, 0.9);
  }
  #nav ul.gnav > li.dropdown .subnav ul {
    margin: 0;
    width: 1280px;
    padding: 0 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 2.6rem;
    margin: 0 auto;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    margin: 0;
    padding: 0;
    position: relative;
    width: 28rem;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    word-break: auto-phrase;
    height: 6rem;
    border-radius: 0.5rem;
    line-height: 1.2;
    color: var(--clr_txt);
    position: relative;
    padding-left: 2em;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a::before {
    font-family: "fontello";
    content: "\ec00";
    position: absolute;
    left: 1rem;
    color: var(--clr_main);
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover {
    background: var(--clr_main);
    color: #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul li > a:hover::before {
    color: #fff;
  }
  #nav ul.gnav > li.dropdown .subnav ul li {
    /*                    
    .subsubnav {
        position: absolute;
        left: 16.5rem;
        width: 16.5rem;
        top: 0;

        a {
            z-index: 100;
            border-bottom: 0.05rem solid #fff;
            color: #fff;
            margin: 0;
            padding-left: 1.4rem;
            transition: all 0.3s;
            display: grid;
            text-align: left;
            align-content: center;
            width: 16.5rem;
            height: 5rem;
            background: rgba(#559cd2, 0.8);

            &:hover {
                background: var(--clr_main);
            }

            &::before {
                display: none;
            }
        }
    }*/
  }
  #nav.fixed {
    position: fixed;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 1000;
    min-width: 1280px;
    width: 100%;
    height: 5rem;
    padding: 0;
  }
  #nav.fixed .subnav {
    top: 5rem !important;
  }
  #nav.fixed .gnav {
    margin: auto;
  }
  #nav.fixed + h1,
  #nav.fixed + div + #kv {
    margin-top: 6rem !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 {
  padding: 5rem 0;
}
#overview .logo {
  width: 80%;
  max-width: 20rem;
  display: block;
  margin: 0 auto 1rem;
}
#overview .logo img {
  width: 100%;
}
#overview .o_tel {
  text-align: center;
  color: var(--clr_main);
  font-family: "DM Sans", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, serif;
  font-size: 188%;
}
#overview .o_tel::before {
  font-family: fontello;
  content: "\ebfc";
  padding-right: 0.5rem;
}
#overview .o_tel a {
  color: var(--clr_main);
}
#overview .overviewL {
  margin: 2rem 0;
}
.dl_overview {
  margin-bottom: 0;
  font-weight: 500;
}
.dl_overview > dt {
  margin: 0 0 1em;
  background: var(--clr_sub4);
  border-radius: 1rem;
  text-align: center;
  height: 2.75em;
  display: grid;
  place-items: center;
  font-weight: 500;
}
.dl_overview > dd {
  margin: 0 0 2em;
  word-break: auto-phrase;
}

.gmap {
  height: 29rem;
  border-radius: 1rem;
  display: block;
}

@media screen and (min-width: 48em), print {
  #overview {
    padding: 7.5rem 0;
  }
  #overview .logo {
    width: 40.6rem;
    max-width: none;
    margin-bottom: 3rem;
  }
  #overview .logo a {
    display: block;
    width: 100%;
  }
  #overview .o_tel {
    margin-bottom: 4rem;
  }
  #overview .overviewL {
    max-width: none;
    width: 58rem;
    padding: 0;
  }
  #overview .overviewR {
    width: 56.4rem;
  }
  .dl_overview {
    margin: 1rem 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    font-size: 1.8rem;
  }
  .dl_overview > dt {
    width: 14.6rem;
    margin-bottom: 1.2rem;
    height: auto;
    min-height: 5rem;
  }
  .dl_overview > dd {
    width: calc(100% - 14.6rem);
    margin-bottom: 1.2rem;
    padding: 0 0 0 1.8rem;
    display: flex;
    align-items: center;
    line-height: 2.8rem;
    min-height: 5rem;
  }
  .gmap {
    margin: 0;
    height: 38rem;
  }
  .overviewR .gmap {
    margin-top: 2rem;
  }
}
/* 診療時間表 -------------------------------------- */
.tbl_time {
  width: 100%;
  text-align: center;
  border-spacing: 0;
  overflow: hidden;
  font-weight: 500;
}
.tbl_time caption {
  margin: 1em 0 0;
  text-align: left;
  caption-side: bottom;
}
.tbl_time caption dl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
.tbl_time caption dl dt {
  background: var(--clr_sub3);
  color: #fff;
  border-radius: 1rem;
  width: 5.6em;
  padding: 0.35em 0;
  text-align: center;
}
.tbl_time caption ul li {
  margin-bottom: 0.67em;
}
.tbl_time caption ul li i {
  color: var(--clr_main);
  padding-right: 0.67em;
}
.tbl_time thead tr th {
  padding: 0.5rem 0;
  color: #fff;
  background: var(--clr_main);
  font-weight: bold;
}
.tbl_time tbody th,
.tbl_time tbody td {
  padding: 0.7rem 0;
  vertical-align: middle;
  border-bottom: 0.1rem solid var(--clr_sub8);
  background: #fff;
}
.tbl_time tbody td {
  width: 2.8em;
  font-weight: bold;
  color: var(--clr_main);
}
.tbl_time tbody tr:nth-child(2) td {
  line-height: 1.2;
}
.tbl_time.-tbl {
  border: 0.1rem solid var(--clr_main);
}
.tbl_time.-tbl thead tr th {
  padding: 2.5rem 0;
  background: var(--clr_main);
  border-left: 0.1rem solid #fff;
}
.tbl_time.-tbl thead tr th:first-child {
  border-left: initial;
}
.tbl_time.-tbl thead tr th:first-child {
  border-radius: initial;
}
.tbl_time.-tbl thead tr th:last-child {
  border-radius: initial;
}
.tbl_time.-tbl th,
.tbl_time.-tbl td {
  border: 0.1rem solid var(--clr_main);
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    font-size: 1.8rem;
  }
  .tbl_time caption div.flex_LRTB {
    justify-content: space-between;
  }
  .tbl_time caption dl dt {
    height: 4rem;
    width: 8rem;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    letter-spacing: normal;
  }
  .tbl_time thead tr th {
    padding: 1.2rem 0;
  }
  .tbl_time thead tr th:last-child {
    padding-right: 1rem;
    border-radius: 0 1rem 1rem 0;
  }
  .tbl_time thead tr th:first-child {
    border-radius: 1rem 0 0 1rem;
    padding-left: 1rem;
  }
  .tbl_time tbody tr th {
    line-height: 1;
    width: 18rem;
    padding: 2.5rem 0;
    padding-left: 1rem;
  }
  .tbl_time tbody tr td {
    padding: 2.5rem 0;
    line-height: 1;
    width: 6rem;
  }
}
/* ページトップ -------------------------------------- */
.f_contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  background: var(--clr_sub4);
  margin: 0;
  width: 100%;
  height: 4rem;
  padding: 0.1rem 0;
  text-align: center;
  z-index: 1000;
  letter-spacing: normal;
  font-size: 1.4rem;
}
.f_contact li {
  width: 42.4%;
  position: relative;
  margin: 0;
  height: 100%;
  border-right: 0.1rem solid #fff;
}
.f_contact li a {
  padding: 1rem 0;
  color: #fff;
  background: var(--clr_sub2);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 1;
  height: 100%;
}
.f_contact li a::before {
  font-family: fontello;
  padding-right: 0.5em;
}
.f_contact li.f_tel {
  width: 45%;
}
.f_contact li.f_tel a {
  background: var(--clr_sub4);
  color: var(--clr_main);
  font-size: 110%;
}
.f_contact li.f_tel a::before {
  content: "\ebfc";
  font-size: 115%;
}
.f_contact li.f_reserve a {
  background: var(--clr_main);
}
.f_contact li.f_reserve a::before {
  content: "\ebfb";
  font-size: 111%;
}
.f_contact li:last-child {
  width: 15%;
  border-right: none;
}
.f_contact li #pageup span {
  display: none;
}
.f_contact li #pageup::before {
  content: "v";
  font-family: fontello;
  font-size: 200%;
  padding-right: 0;
}

@media screen and (min-width: 48em), print {
  .f_contact {
    width: 6.4rem;
    height: 6.4rem;
    background-color: transparent;
  }
  .f_contact li #pageup {
    cursor: pointer;
    transition: 0.8s;
    width: 6.4rem;
    height: 6.4rem;
    border-radius: 2rem;
    display: grid;
    align-content: center;
    right: 7rem;
    bottom: -10rem;
    position: fixed;
    font-weight: bold;
    line-height: 1;
  }
  .f_contact li #pageup.block {
    bottom: 2rem;
  }
  .f_contact li #pageup::before {
    padding: 0 0 0.7rem;
    font-size: 6rem;
    font-weight: normal;
  }
  .pc_tab {
    width: 6.8rem;
    position: fixed;
    right: 0;
    top: 20rem;
    z-index: 1000;
  }
}
/* footer -------------------------------------- */
footer {
  background: var(--clr_sub4);
}
footer div.wrap {
  display: none;
}
footer ul.hbg {
  list-style-type: none;
  border-top: var(--clr_sub8) 1px solid;
  /*margin: 20vw auto 20vw auto;*/
  margin: 0 auto auto;
}
footer ul.hbg > li {
  width: 100%;
  text-align: center;
  margin: 0;
}
footer ul.hbg > li > a {
  width: 92%;
  color: var(--clr_txt);
  font-size: 1.2rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: var(--clr_sub8) 1px solid;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  line-height: 140%;
  margin: auto;
}
footer ul.hbg > li.dd:hover {
  cursor: pointer;
}
footer ul.hbg > li.dd .dd_sub {
  display: none;
}
footer ul.hbg > li.dd ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 1rem 0;
  width: 92%;
  margin: 0 auto;
}
footer ul.hbg > li.dd ul li {
  width: 48%;
  margin: 0;
}
footer ul.hbg > li.dd ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  word-break: auto-phrase;
  height: 3em;
  border-radius: 0.5rem;
  line-height: 1.2;
  color: var(--clr_txt);
  position: relative;
  font-size: 1.2rem;
  padding-left: 1.5em;
}
footer ul.hbg > li.dd ul li a::before {
  font-family: "fontello";
  content: "\ec00";
  font-size: 1.2rem;
  position: absolute;
  left: 0.5rem;
  color: var(--clr_main);
}
footer ul.hbg > li.dd.open_internal .dd_sub {
  display: block;
  padding: 1rem 0;
  background-color: var(--clr_sub4);
}
footer ul.hbg > li.internal_hbg > a {
  position: relative;
}
footer ul.hbg > li.internal_hbg > a::after {
  font-family: "fontello";
  content: "t";
  font-size: 1.2rem;
  position: absolute;
  right: 1rem;
  color: var(--clr_main);
}
footer ul.hbg > li.open_internal > a::after {
  transform: scale(1, -1);
}

address {
  padding: 1em 0 5.2rem;
  font-style: normal;
  text-align: center;
  line-height: 1;
  background: var(--clr_main);
  font-weight: 500;
  display: grid;
  gap: 1em;
}
address small,
address a {
  color: #fff;
}
address small:hover,
address a:hover {
  color: var(--clr_sub4);
}

@media screen and (min-width: 48em), print {
  footer {
    display: block;
    padding: 0 0;
    margin: 0 auto 0;
    background: #fff;
    font-weight: 500;
  }
  footer div.wrap {
    display: block;
    margin: 0 auto;
    padding: 5rem 0;
    width: 110rem;
  }
  footer div.wrap ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }
  footer div.wrap ul a {
    line-height: 1;
    color: var(--clr_txt);
    padding: 0 1rem;
  }
  footer div.wrap ul a:hover {
    color: var(--clr_main);
  }
  footer div.wrap ul.f_gn {
    justify-content: space-between;
    margin-bottom: 3rem;
  }
  footer div.wrap ul.f_gn a::before {
    font-family: "fontello";
    content: "\ebaa";
    color: var(--clr_main);
    padding-right: 1rem;
  }
  footer div.wrap ul.f_tn {
    gap: 3.7rem 0;
  }
  footer div.wrap ul.f_tn li {
    border-left: 0.1rem solid var(--clr_txt);
    padding: 0;
  }
  footer div.wrap ul.f_tn li:last-child, footer div.wrap ul.f_tn li.sas {
    border-right: 0.1rem solid var(--clr_txt);
  }
  address {
    margin: 0 auto 0;
    padding: 4rem;
    text-align: center;
    gap: 2em;
  }
}
/*
nav,
footer,
#treatments,
.main_nav_sp,.pc_tab,#about,#greeting{
    pointer-events: none;
}*/
/* /_common.scss　出力ここまで */
/* _top.scss　出力 */
#TopPage #kv_wrap {
  width: 100%;
  position: relative;
  font-weight: 500;
}
#TopPage #kv_wrap #kv {
  background-size: auto 28rem;
  background-position: center top;
  background-repeat: no-repeat;
  height: 25rem;
}
#TopPage #kv_wrap #kv::after {
  content: "";
  width: 100%;
  height: 3rem;
  display: block;
  background: url(../img/kv_orn.png) no-repeat top center;
  background-size: cover;
  top: 22rem;
  position: absolute;
}
#TopPage .kv_txt {
  padding: 0 0 0;
  z-index: 5;
  bottom: 0;
}
#TopPage .kv_txt .wrap {
  position: relative;
}
#TopPage .kv_txt p {
  line-height: 1.4;
  margin: 0 0 1em;
}
#TopPage .kv_txt .kv_address {
  display: flex;
  justify-content: center;
}
#TopPage .kv_txt .kv_catch {
  color: #fff;
  text-shadow: 0.5rem 0.5rem 1rem var(--clr_txt);
  position: absolute;
  top: -10rem;
  left: 1rem;
  font-size: 1.3rem;
  text-shadow: 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565;
}
#TopPage .kv_txt ul {
  margin: 0;
  line-height: 1;
  font-size: 1.4rem;
}
#TopPage .kv_txt ul li {
  margin: 0.5rem 0;
  background: #fff;
  border-radius: 2.7rem;
  padding: 0.5rem;
  text-align: center;
}
#TopPage .kv_txt ul li::before {
  font-family: fontello;
  padding-right: 0.5em;
  content: "\ebfd";
  color: var(--clr_main);
}
#TopPage .kv_txt ul li span {
  padding-left: 0.5em;
}
#TopPage main {
  margin: 0 0;
}
#TopPage main section {
  margin-bottom: 0;
}
#TopPage h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 2rem;
  word-break: auto-phrase;
  position: relative;
  font-weight: bold;
  color: var(--clr_main);
}
#TopPage h2 span {
  font-size: 45%;
  display: block;
  color: var(--clr_sub11);
  font-family: "DM Sans", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, serif;
}
#TopPage #info h2,
#TopPage #treatments h2,
#TopPage #features h2,
#TopPage #greeting h2 {
  background: url(../img/h2.png) no-repeat center top;
  background-size: auto 4rem;
  padding-top: 4rem;
}
#TopPage #info {
  padding: 5rem 0 6rem;
}
#TopPage #info .inner {
  border-top: 0.1rem solid var(--clr_main);
  padding-top: 1rem;
}
#TopPage #info dl {
  padding: 0 1rem 0 0;
  position: relative;
}
#TopPage #info dl dt {
  position: relative;
  padding: 1rem 0.5rem 1rem 1.2em;
  border-top: 0.1rem solid #ccc;
  margin-top: 1rem;
  font-size: 105%;
  font-weight: bold;
  cursor: pointer;
}
#TopPage #info dl dt:first-child {
  margin-top: 0;
  border-top: none;
}
#TopPage #info dl dt::before {
  font-family: fontello;
  content: "\ebab";
  position: absolute;
  top: 1.1rem;
  left: 0;
  font-weight: normal;
  color: var(--clr_main);
}
#TopPage #info dl dt.open::before {
  content: "\eba9";
}
#TopPage #info dl {
  /*dd:not(:nth-of-type(-n + 3)) {
      display: none;
  }*/
}
#TopPage #about {
  background: url(../img/about_orn.png) no-repeat top 5rem right 2rem;
  background-size: 40% auto;
}
#TopPage #about h2 {
  border-bottom: 0.2rem solid var(--clr_sub6);
  margin: 0 1rem 2rem 0;
  text-align: right;
  padding-bottom: 0.2em;
  font-family: "DM Sans", "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, serif;
}
#TopPage #about h3 {
  font-size: 1.4rem;
  width: 17em;
  margin: 0 auto 2rem;
  font-weight: bold;
}
#TopPage #about h3 em {
  font-size: 1.6rem;
  display: block;
}
#TopPage #about h3 span.txt_r {
  display: block;
}
#TopPage #about ul.flex_LRTB {
  width: 20rem;
  margin: auto;
}
#TopPage #about ul.flex_LRTB a {
  width: 100%;
}
#TopPage #about .about_img {
  position: relative;
  margin: 3rem 0;
}
#TopPage #about .about_img::after {
  content: "";
  display: block;
  width: 80%;
  height: 18rem;
  background: url(../img/about_bg.webp) center right 3rem no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20%;
  z-index: -1;
  margin: auto;
}
#TopPage #about .about_img img {
  max-width: 20rem;
  border-radius: 2rem;
}
#TopPage #about .about_img li:first-child img {
  margin: 0 1rem 0 auto;
}
#TopPage #about .about_img li:last-child img {
  margin: 0 auto 0 1rem;
}
#TopPage #treatments {
  padding: 5rem 0;
}
#TopPage #treatments .in {
  background: url(../img/treatmnet_bg.webp) center;
  border-radius: 4rem;
  padding: 3rem 0;
  margin-bottom: 3rem;
}
#TopPage #treatments .in h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
#TopPage #treatments .in h3::before, #TopPage #treatments .in h3::after {
  width: calc((100% - 6em) / 2);
  height: 2rem;
  display: block;
  background: url(../img/treatment_h3.png) no-repeat center;
  background-size: contain;
  content: "";
}
#TopPage #treatments .in ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 3rem 1rem;
  margin: 0 1rem;
}
#TopPage #treatments .in ul li {
  width: 45%;
  margin: 0;
}
#TopPage #treatments .in ul li.np {
  display: none;
}
#TopPage #treatments .in ul li a {
  display: block;
  width: 100%;
  padding: 0 0;
  text-align: center;
  border: none;
  color: var(--clr_txt);
  font-size: 1.3rem;
  word-break: auto-phrase;
  line-height: 1.3;
}
#TopPage #treatments .in ul li a::before {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  background: url(../img/treatment_internal.png) no-repeat center #fff;
  background-size: auto 7rem;
  border-radius: 50%;
  box-shadow: 0px 3px 10px #d8e1e6;
  margin: 0 auto 1rem;
}
#TopPage #treatments .in ul li.checkup a::before {
  background-image: url(../img/treatment_checkup.png);
}
#TopPage #treatments .in ul li.diabetes a::before {
  background-image: url(../img/treatment_diabetes.png);
}
#TopPage #treatments .in ul li.fever a::before {
  background-image: url(../img/treatment_fever.png);
}
#TopPage #treatments .in ul li.dyslipidemia a::before {
  background-image: url(../img/treatment_dyslipidemia.png);
}
#TopPage #treatments .in ul li.hay_fever a::before {
  background-image: url(../img/treatment_hay_fever.png);
}
#TopPage #treatments .in ul li.high_blood_pressure a::before {
  background-image: url(../img/treatment_high_blood_pressure.png);
}
#TopPage #treatments .in ul li.hyperuricemia a::before {
  background-image: url(../img/treatment_hyperuricemia.png);
}
#TopPage #treatments .in ul li.sas a::before {
  background-image: url(../img/treatment_sas.png);
}
#TopPage #treatments .other ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#TopPage #treatments .other ul li {
  width: 48%;
}
#TopPage #treatments .other ul li a {
  font-weight: 500;
  display: block;
  background: url(../img/treatment_ortho.png) no-repeat top 1rem center #fff;
  background-size: auto 4rem;
  border-radius: 1rem;
  border: 0.3rem solid var(--clr_sub4);
  padding: 5rem 0 1rem;
  text-align: center;
  color: var(--clr_txt);
}
#TopPage #treatments .other ul li a::before {
  font-family: fontello;
  padding-right: 0.5em;
  content: "\ec00";
  color: var(--clr_main);
  padding-right: 0.3rem;
}
#TopPage #treatments .other ul li.pediatrics a {
  background-image: url(../img/treatment_pediatrics.png);
}
#TopPage #treatments .other ul li.checkup a {
  background-image: url(../img/treatment_checkup.png);
}
#TopPage #treatments .other ul li.vaccination a {
  background-image: url(../img/treatment_vaccination.png);
}
#TopPage #treatments .other ul li.visit a {
  background-image: url(../img/treatment_visit.png);
}
#TopPage #features {
  padding: 5rem 0;
  background: url(../img/features_bg.webp) no-repeat center top;
  background-size: 100% auto;
}
#TopPage #features ul {
  margin: 0 1.5rem 0;
}
#TopPage #features ul li {
  margin-bottom: 3rem;
}
#TopPage #features ul img {
  max-width: 20rem;
  margin: auto;
}
#TopPage #features ul dl dt {
  font-size: 1.6rem;
  text-align: center;
  color: var(--clr_main);
  margin-bottom: 1rem;
  font-weight: bold;
}
#TopPage #features ul dl dt::after {
  content: "";
  display: block;
  width: 6rem;
  height: 0.2rem;
  background: var(--clr_sub6);
  margin: 1rem auto 0;
}
#TopPage #greeting {
  padding: 0 0 5rem 0;
}
#TopPage #greeting img {
  border-radius: 2rem;
  width: 20rem;
  margin: 0 auto 1rem;
  display: block;
}
#TopPage #greeting figure span {
  display: block;
  font-size: 133%;
  margin-bottom: 1rem;
}
#TopPage #greeting figure .btn {
  font-size: 110%;
}
#TopPage #cooperation {
  padding: 5rem 0;
  background: url(../img/cooperation_bg.webp);
}
#TopPage #cooperation .wrap {
  background: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-radius: 4rem;
}
#TopPage #cooperation .inner {
  padding: 0 1.5rem;
}
#TopPage #cooperation .inner ul {
  border-top: 0.2rem solid var(--clr_sub6);
  padding-top: 1em;
}

@media screen and (min-width: 48em), print {
  #TopPage #kv_wrap #kv {
    height: 70rem;
    position: relative;
    background-size: auto;
  }
  #TopPage #kv_wrap #kv::after {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 10rem;
    background-size: auto;
  }
  #TopPage #kv_wrap .kv_txt {
    width: 100%;
    padding: 0;
    bottom: 13rem;
    position: absolute;
  }
  #TopPage #kv_wrap .kv_txt .wrap {
    align-items: center;
  }
  #TopPage #kv_wrap .kv_txt p {
    font-size: 3.4rem;
    line-height: 5.6rem;
    letter-spacing: 0.544rem;
    text-align: left;
    margin: 0;
    color: #fff;
    text-shadow: 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565, 0 0 1.5rem #656565;
    position: inherit;
    top: auto;
    left: auto;
  }
  #TopPage #kv_wrap .kv_txt p.kv_address {
    display: none;
  }
  #TopPage #kv_wrap .kv_txt ul {
    width: 39rem;
    margin: 0;
  }
  #TopPage #kv_wrap .kv_txt ul li {
    height: 5.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 7rem;
    padding-right: 3rem;
    font-size: 2.2rem;
    box-shadow: 0 0.3rem 0.6rem #ccc;
    margin-bottom: 1.5rem;
  }
  #TopPage #kv_wrap .kv_txt ul li:last-child {
    margin: 0;
  }
  #TopPage #kv_wrap .kv_txt ul li::before {
    position: absolute;
    left: 3rem;
    font-size: 2.5rem;
  }
  #TopPage main {
    margin: 0;
  }
  #TopPage main .wrap {
    margin: 0 auto;
  }
  #TopPage main h2 {
    font-size: 3.6rem;
    margin: 0 0 3.5rem;
  }
  #TopPage main #info h2,
  #TopPage main #treatments h2,
  #TopPage main #features h2,
  #TopPage main #greeting h2 {
    background-size: 6.2rem auto;
  }
  #TopPage main #info {
    padding: 5rem 0 0;
    margin: 0;
  }
  #TopPage main #info .inner {
    padding-top: 2.7rem;
  }
  #TopPage main #info dl dt {
    padding: 2rem 1rem 1.4rem 4rem;
    font-size: 2rem;
  }
  #TopPage main #info dl dt::before {
    top: 2rem;
    left: 1rem;
    font-size: 2.2rem;
  }
  #TopPage main #info dl dt span {
    padding-right: 1rem;
  }
  #TopPage main #info dl dd {
    margin-bottom: 2rem;
    padding: 0 1rem 1rem 4rem;
  }
  #TopPage main #about {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
  }
  #TopPage main #about h2 {
    width: 120rem;
    margin: auto;
    border: none;
  }
  #TopPage main #about h2::before {
    width: 150rem;
    height: 0.2rem;
    background: var(--clr_sub6);
    position: absolute;
    bottom: 0rem;
    right: 0;
    display: block;
    content: "";
  }
  #TopPage main #about .wrap {
    width: 120rem;
    padding: 0;
  }
  #TopPage main #about .inner {
    width: 55rem;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 5;
  }
  #TopPage main #about .inner p {
    line-height: 3.2rem;
    letter-spacing: 0.108rem;
  }
  #TopPage main #about h3 {
    margin: 6rem 0 3rem;
    line-height: 5rem;
    font-size: 3.2rem;
  }
  #TopPage main #about h3 em {
    font-size: 3.6rem;
    letter-spacing: 0.34rem;
    text-align: center;
  }
  #TopPage main #about ul.flex_LRTB {
    width: 100%;
    margin-top: 5rem;
  }
  #TopPage main #about ul.flex_LRTB li {
    width: 25.5rem;
  }
  #TopPage main #about ul.flex_LRTB li a {
    height: 6rem;
  }
  #TopPage main #about section {
    width: 1280px;
    padding: 0 4rem;
    margin: auto;
    position: relative;
  }
  #TopPage main #about .about_img {
    position: absolute;
    width: 120rem;
    padding-right: 70rem;
    top: -4rem;
  }
  #TopPage main #about .about_img img {
    width: auto;
    max-width: none;
  }
  #TopPage main #about .about_img::after {
    width: 100rem;
    height: 45rem;
    right: 61rem;
  }
  #TopPage main #about .about_img li:first-child {
    margin-bottom: 4rem;
  }
  #TopPage main #treatments {
    padding: 8rem 0;
  }
  #TopPage main #treatments .in {
    padding: 4rem 10rem 5rem;
    margin-bottom: 6rem;
    background-size: 15rem auto;
  }
  #TopPage main #treatments .in h3 {
    letter-spacing: 1.4rem;
    gap: 0;
    justify-content: space-between;
    font-size: 2.8rem;
    line-height: 5rem;
    margin-bottom: 3.5rem;
  }
  #TopPage main #treatments .in h3::before, #TopPage main #treatments .in h3::after {
    width: 38.8rem;
    height: 0.8rem;
  }
  #TopPage main #treatments .in ul {
    justify-content: space-between;
    gap: 2rem;
  }
  #TopPage main #treatments .in ul li {
    width: 20rem;
  }
  #TopPage main #treatments .in ul li a {
    font-size: 2rem;
    border-radius: 4rem;
    transition: transform 0.3s;
  }
  #TopPage main #treatments .in ul li a:hover {
    transform: translateY(-0.8rem);
  }
  #TopPage main #treatments .in ul li a::before {
    width: 19rem;
    height: 19rem;
    background-size: auto;
  }
  #TopPage main #treatments .other ul {
    gap: 6rem 4rem;
    justify-content: center;
  }
  #TopPage main #treatments .other ul li {
    width: 36rem;
    margin: 0;
  }
  #TopPage main #treatments .other ul li a {
    height: 25rem;
    background-size: auto;
    background-position: top 3rem center;
    padding-top: 17rem;
    border-width: 0.6rem;
    font-size: 2.4rem;
    border-radius: 4rem;
    transition: transform 0.3s;
  }
  #TopPage main #treatments .other ul li a:hover {
    transform: translateY(-0.8rem);
  }
  #TopPage main #features {
    padding: 24.5rem 0 0;
  }
  #TopPage main #features ul {
    justify-content: space-between;
    align-items: stretch;
    margin: 0;
  }
  #TopPage main #features ul li {
    width: 35.4rem;
  }
  #TopPage main #features ul li:nth-child(2), #TopPage main #features ul li:nth-child(5) {
    position: relative;
  }
  #TopPage main #features ul li:nth-child(2):before, #TopPage main #features ul li:nth-child(2)::after, #TopPage main #features ul li:nth-child(5):before, #TopPage main #features ul li:nth-child(5)::after {
    width: 0.1rem;
    height: 100%;
    display: block;
    content: "";
    background: var(--clr_sub8);
    position: absolute;
    top: 0;
  }
  #TopPage main #features ul li:nth-child(2):before, #TopPage main #features ul li:nth-child(5):before {
    left: -3.5rem;
  }
  #TopPage main #features ul li:nth-child(2)::after, #TopPage main #features ul li:nth-child(5)::after {
    right: -3.5rem;
  }
  #TopPage main #features ul li dl dt {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
  }
  #TopPage main #features ul li dl dt::after {
    margin: 2rem auto 0;
  }
  #TopPage main #features ul li img {
    max-width: none;
    width: 35.4rem;
    margin: 0 0 2.3rem;
  }
  #TopPage main #greeting {
    padding: 8rem 0;
  }
  #TopPage main #greeting .inner div {
    width: 70rem;
  }
  #TopPage main #greeting .inner div p {
    line-height: 3.2rem;
  }
  #TopPage main #greeting .inner figure {
    width: 40rem;
  }
  #TopPage main #greeting .inner figure img {
    width: auto;
    margin: 0 0 2.5rem;
  }
  #TopPage main #greeting .inner figure figcaption span {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  #TopPage main #greeting .inner figure figcaption .btn {
    width: 32rem;
    height: 6rem;
  }
  #TopPage main #cooperation {
    padding: 8rem 0;
  }
  #TopPage main #cooperation h2 {
    font-size: 2.6rem;
    margin-bottom: 1.4rem;
  }
  #TopPage main #cooperation p {
    text-align: center;
    margin-bottom: 2.2rem;
  }
  #TopPage main #cooperation ul.list_lnk {
    padding-top: 3.4rem;
  }
}
/* /_top.scss　出力ここまで */
/* _lower.scss　出力 */
#lower .breadcrumb {
  margin: 1rem 0 1rem 1rem;
  display: flex;
}
#lower .breadcrumb li {
  color: var(--clr_txt);
}
#lower .breadcrumb li a {
  border: none;
  color: var(--clr_txt);
}
#lower .breadcrumb li:first-child::after {
  content: "c";
  font-family: fontello;
  padding: 0 1rem;
}
#lower main {
  margin-top: 1rem;
  position: relative;
}
#lower main section {
  margin: 0 auto 4rem;
  padding: 2rem 0 0 0;
}
#lower main section section {
  margin: 0 auto 3rem;
  padding: 0 0 0 0;
}
#lower main section section section {
  margin: 0 auto 2.5rem;
  padding: 0 0 0 0;
}
#lower main section section section section {
  margin: 0 auto 2rem;
  padding: 0 0 0 0;
}
#lower main .wrap {
  position: relative;
  z-index: 1;
}
#lower main .wrap > .inner {
  margin: 3rem auto;
}
#lower h1,
#lower h2,
#lower h3,
#lower h4,
#lower h5,
#lower h6 {
  word-break: auto-phrase;
}
#lower h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
  line-height: 1.2;
  padding: 2.5rem 1rem;
  text-align: center;
  background: url(../img/h1.jpg) no-repeat center;
  background-size: cover;
  color: var(--clr_main);
}
#lower h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 1.5rem;
  word-break: auto-phrase;
  position: relative;
  background: url(../img/h2.png) no-repeat center top;
  background-size: auto 4rem;
  padding-top: 4rem;
}
#lower h2::after {
  content: "";
  display: block;
  background: var(--clr_main);
  width: 1.8em;
  height: 0.1em;
  margin: 0.6rem auto;
}
#lower h2 + section h3 {
  margin-top: 0;
}
#lower h3 {
  margin: 2.6rem 0 1rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.35;
  padding: 0.3rem 1rem;
  background: var(--clr_main);
  border-radius: 0.45em;
}
#lower h3 + section h4 {
  margin-top: 0;
}
#lower h4 {
  margin: 2rem 0 0.5rem;
  font-size: 1.6rem;
  line-height: 1.35;
  padding: 0.2rem 1rem 0.2rem 1.2em;
  color: var(--clr_main);
  border-bottom: 0.2rem dashed var(--clr_sub11);
  position: relative;
}
#lower h4::before {
  content: "\e924";
  font-family: fontello;
  color: var(--clr_main);
  position: absolute;
  left: 0;
}
#lower h4 + section h5 {
  margin-top: 0;
}
#lower h5 {
  margin: 1.5rem 0.5rem 0.5rem 0;
  font-size: 1.4rem;
  line-height: 1.35;
  padding: 0 0.5rem 0.2rem 1.2em;
  position: relative;
}
#lower h5::before {
  content: "\ebc8";
  font-family: fontello;
  color: var(--clr_sub11);
  position: absolute;
  left: 0;
}
#lower h6 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.5rem;
}
#lower {
  /* main   -------------------------------------- */
}
#lower main {
  display: block;
  z-index: 50;
}
#lower main p {
  margin: 0 0 1em;
  line-height: 1.6;
  text-align: justify;
}
#lower main li,
#lower main dl {
  line-height: 1.6;
}

@media screen and (min-width: 48em), print {
  #lower .breadcrumb {
    margin: 0 auto 0;
    width: 1280px;
    padding: 0 2rem 0;
    position: relative;
    z-index: 100;
  }
  #lower h1 {
    font-size: 3.4rem;
    margin: 0 auto 0;
    line-height: 1;
    height: 22rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #lower main {
    padding: 0 0;
    margin-bottom: 12rem;
  }
  #lower main .wrap {
    position: relative;
    z-index: 50;
  }
  #lower main .wrap > .inner {
    margin: 10rem 0;
  }
  #lower main .wrap > .inner + section {
    padding-top: 6rem;
  }
  #lower main .wrap > .inner + section h2 {
    margin-top: 0;
  }
  #lower main .wrap > section {
    margin: 7rem auto 10rem;
  }
  #lower main .wrap > section > section {
    margin: 0 auto 6rem;
  }
  #lower main .wrap > section > section > section {
    margin: 0 auto 5rem;
  }
  #lower main .wrap > section > section > section > section {
    margin: 0 auto 4rem;
  }
  #lower main h2 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    line-height: 5rem;
    padding-top: 4.7rem;
    background-size: auto 4rem;
  }
  #lower main h2::after {
    margin-top: 1.5rem;
  }
  #lower main h3 {
    font-size: 2.2rem;
    margin: 5rem 0 1.5rem;
    padding: 0.9rem 1.6rem;
  }
  #lower main h3 + section h4 {
    margin-top: 2rem;
  }
  #lower main h4 {
    font-size: 2.6rem;
    padding: 0 1rem 1rem 1.4em;
    margin: 4rem 0 2rem;
  }
  #lower main h4 + section h5 {
    margin-top: 1.5rem;
  }
  #lower main h5 {
    margin: 3rem 0 1rem;
    font-size: 2.2rem;
    padding: 0 1rem 0.7rem 1.4em;
  }
  #lower main h6 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    padding: 0 1.9rem 0.7rem;
  }
}
/* table 関連 */
#lower .tbl_scroll {
  overflow-x: scroll;
}
#lower .tbl_def {
  width: 100%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  line-height: 1.3em;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-collapse: collapse;
}
#lower .tbl_def thead {
  background: var(--clr_main);
  color: #fff;
}
#lower .tbl_def thead th {
  padding: 0.5rem 1% 0.5rem 1%;
  border: 1px solid #fff;
}
#lower .tbl_def tbody th {
  background: var(--clr_sub4);
}
#lower .tbl_def tbody th,
#lower .tbl_def tbody td {
  padding: 0.5rem 1% 0.4rem 1%;
  border: 1px solid #ccc;
}
#lower .tbl_price {
  width: 100%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  line-height: 1.3em;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-collapse: collapse;
}
#lower .tbl_price tr {
  border-bottom: 1px solid #ccc;
}
#lower .tbl_price tr th {
  text-align: left;
  color: #663300;
  font-size: 94%;
  padding: 1% 0% 0.8% 2%;
}
#lower .tbl_price tr td {
  padding: 1% 2% 0.8% 2%;
  border-left: 1px solid #ccc;
}
#lower .tbl_price tr td:last-child {
  text-align: right;
}

@media screen and (min-width: 48em), print {
  #lower .tbl_scroll {
    overflow-x: inherit;
  }
  #lower .tbl_def thead th,
  #lower .tbl_def thead td {
    padding: 1rem;
  }
  #lower .tbl_def tbody th,
  #lower .tbl_def tbody td {
    padding: 1rem;
  }
}
#lower #dyslipidemia .dl_flex dt,
#lower #dyslipidemia .dl_flex dd {
  width: 100%;
}
#lower #ortho .dl_flex dt {
  text-align: center;
}
#lower #ortho .dl_flex dt,
#lower #ortho .dl_flex dd {
  width: 100%;
}

@media screen and (min-width: 48em), print {
  #lower #dyslipidemia .dl_flex {
    width: 40em;
  }
  #lower #dyslipidemia .dl_flex dt,
  #lower #dyslipidemia .dl_flex dd {
    width: 50%;
  }
  #lower #dyslipidemia .dl_flex dt {
    text-align: center;
  }
  #lower #ortho .dl_flex dt {
    width: 15em;
    word-break: auto-phrase;
  }
  #lower #ortho .dl_flex dd {
    width: calc(100% - 15em);
    word-break: auto-phrase;
  }
}
#lower #clinic ul.flex_LRTB.half.txt_c li {
  margin-bottom: 1.5em;
}
#lower #clinic ul.flex_LRTB.half.txt_c figure {
  border-radius: 0.5em;
  overflow: hidden;
}
#lower #clinic ul.flex_LRTB.half.txt_c figcaption {
  font-size: 110%;
  font-weight: 500;
  background: var(--clr_main);
  color: #fff;
  padding: 0.3em;
}

/* /_lower.scss　出力ここまで */
/* _hbg.scss　出力 */
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 99999999;
  background-color: #fff;
  overflow-x: hidden;
  overflow: auto;
  height: calc(100% - 7rem);
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.main_nav_sp .drawr::-webkit-scrollbar {
  display: none;
}
.main_nav_sp .drawr ul.hbg {
  list-style-type: none;
  border-top: var(--clr_sub8) 1px solid;
  /*margin: 20vw auto 20vw auto;*/
  margin: 0 auto auto;
}
.main_nav_sp .drawr ul.hbg > li {
  width: 100%;
  text-align: center;
  margin: 0;
}
.main_nav_sp .drawr ul.hbg > li > a {
  width: 92%;
  color: var(--clr_txt);
  font-size: 1.2rem;
  text-decoration: none;
  padding: 1rem;
  border-bottom: var(--clr_sub8) 1px solid;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  flex-direction: row;
  line-height: 140%;
  margin: auto;
}
.main_nav_sp .drawr ul.hbg > li.dd:hover {
  cursor: pointer;
}
.main_nav_sp .drawr ul.hbg > li.dd .dd_sub {
  display: none;
}
.main_nav_sp .drawr ul.hbg > li.dd ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 1rem 0;
  width: 92%;
  margin: 0 auto;
}
.main_nav_sp .drawr ul.hbg > li.dd ul li {
  width: 48%;
  margin: 0;
}
.main_nav_sp .drawr ul.hbg > li.dd ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  word-break: auto-phrase;
  height: 3em;
  border-radius: 0.5rem;
  line-height: 1.2;
  color: var(--clr_txt);
  position: relative;
  font-size: 1.2rem;
  padding-left: 1.5em;
}
.main_nav_sp .drawr ul.hbg > li.dd ul li a::before {
  font-family: "fontello";
  content: "\ec00";
  font-size: 1.2rem;
  position: absolute;
  left: 0.5rem;
  color: var(--clr_main);
}
.main_nav_sp .drawr ul.hbg > li.dd.open_internal .dd_sub {
  display: block;
  padding: 1rem 0;
  background-color: var(--clr_sub4);
}
.main_nav_sp .drawr ul.hbg > li {
  /* ul.internal_nav_sub{
     display: none;
     width: 100%;            
     list-style-type: none;
     &.open_nav{
      display: flex;
      flex-wrap: wrap;

     }
     li{
       a{
         display: -webkit-flex;
         display: flex;
         -webkit-justify-content: center;
         justify-content: center;        
         -webkit-align-items: center;
         align-items: center;
        // -webkit-flex-direction:column;
        // flex-direction:column;              
         background-color: var(--clr_sub3);
         color: var(--clr_txt);        
         border-bottom: none;
         text-align: center;
         border-bottom: var(--clr_sub1) 1px solid;
         &::after{
           content: "" !important;
         }
         br{
           display: none; 
         }
       }
     }
   }  */
}
.main_nav_sp .drawr ul.hbg > li.internal_hbg > a {
  position: relative;
}
.main_nav_sp .drawr ul.hbg > li.internal_hbg > a::after {
  font-family: "fontello";
  content: "t";
  font-size: 1.2rem;
  position: absolute;
  right: 1rem;
  color: var(--clr_main);
}
.main_nav_sp .drawr ul.hbg > li.open_internal > a::after {
  transform: scale(1, -1);
}

@media screen and (min-width: 48em), print {
  .main_nav_sp {
    display: none;
  }
}
.toggle {
  display: none;
  height: 14vw;
}

.toggle-label {
  cursor: pointer;
  display: block;
  width: 14%;
  height: 14vw;
  /*padding:2vw 0 0 0;*/
  padding: 0 0 0 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.toggle-label:active {
  -webkit-tap-highlight-color: transparent;
}

/*
.toggle-label {
  cursor: pointer;
  width: 100%;  

}

.toggle-label .toggle-icon{
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 28px;
  //background:var(--clr_sub1) ;
  background:#fff;
  content: '';
  transition: all 500ms ease-in-out;
}



.toggle-label .toggle-icon:before{
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 28px;
  //background:var(--clr_sub1) ;
  background:#fff;
  content: '';
  transition: all 500ms ease-in-out;
}


.toggle-label .toggle-icon:after {
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  height: 1px;
  width: 28px;
  //background:var(--clr_sub1) ;
  background:#fff;
  content: '';
  transition: all 500ms ease-in-out;
  margin: 4px 0 0 0;
}

.toggle-label .toggle-icon {
  transform: translate3d(-50%, -5px, 0);
}
.toggle-label .toggle-icon:before {
  transform: translate3d(-50%, -11.5px, 0);
}
.toggle-label .toggle-icon:after {
  transform: translate3d(-50%, 5px, 0);
}
.toggle:checked ~ .toggle-label .toggle-icon {
  background-color: transparent;
}
.toggle:checked ~ .toggle-label .toggle-icon:before,
.toggle:checked ~ .toggle-label .toggle-icon:after {
  top: 0;
}
.toggle:checked ~ .toggle-label .toggle-icon:before {
  transform: translateX(-50%) rotate(45deg);
  top: 1.5px;
}
.toggle:checked ~ .toggle-label .toggle-icon:after {
  transform: translateX(-50%) translateY(-10px) rotate(-45deg);
  top: 7.5px;
}
.toggle:checked ~ .toggle-label .toggle-text:before {
  visibility: hidden;
  opacity: 0;
}
.toggle:checked ~ .toggle-label .toggle-text:after {
  visibility: visible;
  opacity: 1;
}*/
.container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  width: 14%;
  max-width: 14%;
  position: fixed;
  cursor: pointer;
  right: 3.5%;
  top: 0.5rem;
  z-index: 99999999999;
  padding: 0 0 1vw 0;
  height: 14vw;
  box-sizing: border-box;
  background: url("../img/hbg_menu.png") no-repeat center var(--clr_main);
  background-size: contain;
  border-radius: 0.3rem;
}
.container.open_container {
  background-image: url(../img/hbg_open.png);
}
.container {
  /*&::after{
    content:'MENU';
    font-size: 1rem;
    position: absolute;
    bottom: 0.5rem;
    color:#fff;
  }*/
}

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