@charset "UTF-8";

/* ----------------------------------------------------------------------------------
リセット　_reset.scss
---------------------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-style: normal !important;
}

html {
  font-size: calc( 100vw / 32 );
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳＰゴシック", sans-serif;
  font-weight: 500;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  color: #241606;
  line-height: 1;
  margin: 0;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: normal;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

input, select {
  vertical-align: middle;
}

/*CLEARFIX*/
.cf {
  zoom: 1;
}

.cf:before, .cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

section {
  zoom: 1;
  clear: both;
}

section:before, section:after {
  content: "";
  display: table;
}

section:before, section:after {
  clear: both;
}

/* -----------------------------------------------------------------------
　モジュール　_module.scss
----------------------------------------------------------------------- */
/* 汎用 　*/
/* タイトル　*/
/* リスト */
/* 画像回り込み */
/* 診察概要 */
/* お知らせ　*/
/* top back */
/* map */
/* テーブルタイプ */
/*:::::::::::::::::::::::::::::::::::::::::::::::

汎用 

:::::::::::::::::::::::::::::::::::::::::::::::*/
/*画像
------------------------------------*/
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 表示・非表示
------------------------------------*/
@media screen and (min-width: 768px) {
  .pcN {
    display: none !important;
  }

  .spN {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .pcN {
    display: block !important;
  }

  .spN {
    display: none;
  }
}
/*テキスト配置*/
.txC {
  text-align: center;
}

.txR {
  text-align: right;
}

/*一部テキストカラー変更*/
.textCl-type01 {
  color: #714627;
}

.textCl-type02 {
  color: #e6008e;
  font-weight: bold;
}

/****ギャラリーのテキスト****/
.slider-pro p.sp-layer {
  font-size: 3.5rem;
}

@media (min-width: 768px) {
  .slider-pro p.sp-layer {
    font-size: 3.0rem;
  }
}
/****フォント一部小さく****/
.font-small {
  font-size: 70% !important;
}

/****リンク　クリニックしない****/
.pointerN {
  pointer-events: none;
}

/* Spaces
------------------------------------*/
.pT0 {
  padding-top: 0;
}

.content-xs {
  padding-top: 10px;
  padding-bottom: 10px;
}

.content {
  padding-top: 20px;
  padding-bottom: 20px;
}

.content-sm {
  padding-top: 30px;
  padding-bottom: 30px;
}

.content-md {
  padding-top: 40px;
  padding-bottom: 40px;
}

.content-lg {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .content-xs {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .content-sm {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .content-md {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .content-lg {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.mB0, .mB5, .mB10, .mB15, .mB20, .mB25, .mB30, .mB35, .mB40, .mB45, .mB50, .mB55, .mB60 {
  clear: both;
}

.mB0 {
  margin-bottom: 0px !important;
}

.mB5 {
  margin-bottom: 5px !important;
}

.mB10 {
  margin-bottom: 10px !important;
}

.mB15 {
  margin-bottom: 15px !important;
}

.mB20 {
  margin-bottom: 20px !important;
}

.mB25 {
  margin-bottom: 25px !important;
}

.mB30 {
  margin-bottom: 30px !important;
}

.mB35 {
  margin-bottom: 35px !important;
}

.mB40 {
  margin-bottom: 40px !important;
}

.mB45 {
  margin-bottom: 45px !important;
}

.mB50 {
  margin-bottom: 50px !important;
}

.mB55 {
  margin-bottom: 55px !important;
}

.mB60 {
  margin-bottom: 60px !important;
}

@media (max-width: 768px) {
  .sm_mB10 {
    margin-bottom: 10px !important;
  }

  .sm_mB20 {
    margin-bottom: 20px !important;
  }

  .sm_mB30 {
    margin-bottom: 30px !important;
  }

  .sm_mB40 {
    margin-bottom: 40px !important;
  }

  .sm_mB50 {
    margin-bottom: 50px !important;
  }

  .sm_mB60 {
    margin-bottom: 60px !important;
  }
}
@media (max-width: 992px) {
  .md_mB10 {
    margin-bottom: 10px !important;
  }

  .md_mB20 {
    margin-bottom: 20px !important;
  }

  .md_mB30 {
    margin-bottom: 30px !important;
  }

  .md_mB40 {
    margin-bottom: 40px !important;
  }

  .md_mB50 {
    margin-bottom: 50px !important;
  }

  .md_mB60 {
    margin-bottom: 60px !important;
  }
}
.mT0 {
  margin-top: 0px !important;
}

.mT5 {
  margin-top: 5px !important;
}

.mT10 {
  margin-top: 10px !important;
}

.mT15 {
  margin-top: 15px !important;
}

.mT20 {
  margin-top: 20px !important;
}

.mT25 {
  margin-top: 25px !important;
}

.mT30 {
  margin-top: 30px !important;
}

.mT35 {
  margin-top: 35px !important;
}

.mT40 {
  margin-top: 40px !important;
}

.mT45 {
  margin-top: 45px !important;
}

.mT50 {
  margin-top: 50px !important;
}

.mT55 {
  margin-top: 55px !important;
}

.mT60 {
  margin-top: 60px !important;
}

@media (max-width: 768px) {
  .sm_mT10 {
    margin-top: 10px !important;
  }

  .sm_mT20 {
    margin-top: 20px !important;
  }

  .sm_mT30 {
    margin-top: 30px !important;
  }

  .sm_mT40 {
    margin-top: 40px !important;
  }

  .sm_mT50 {
    margin-top: 50px !important;
  }

  .sm_mT60 {
    margin-top: 60px !important;
  }
}
@media (max-width: 992px) {
  .md_mT10 {
    margin-top: 10px !important;
  }

  .md_mT20 {
    margin-top: 20px !important;
  }

  .md_mT30 {
    margin-top: 30px !important;
  }

  .md_mT40 {
    margin-top: 40px !important;
  }

  .md_mT50 {
    margin-top: 50px !important;
  }

  .md_mT60 {
    margin-top: 60px !important;
  }
}
.mL0 {
  margin-left: 0px !important;
}

.mL5 {
  margin-left: 5px !important;
}

.mL10 {
  margin-left: 10px !important;
}

.mL15 {
  margin-left: 15px !important;
}

.mL20 {
  margin-left: 20px !important;
}

.mL25 {
  margin-left: 25px !important;
}

.mL30 {
  margin-left: 30px !important;
}

.mL35 {
  margin-left: 35px !important;
}

.mL40 {
  margin-left: 40px !important;
}

.mL45 {
  margin-left: 45px !important;
}

.mL50 {
  margin-left: 50px !important;
}

.mL55 {
  margin-left: 55px !important;
}

.mL60 {
  margin-left: 60px !important;
}

@media (max-width: 768px) {
  .sm_mL10 {
    margin-left: 10px !important;
  }

  .sm_mL20 {
    margin-left: 20px !important;
  }

  .sm_mL30 {
    margin-left: 30px !important;
  }

  .sm_mL40 {
    margin-left: 40px !important;
  }

  .sm_mL50 {
    margin-left: 50px !important;
  }

  .sm_mL60 {
    margin-left: 60px !important;
  }
}
@media (max-width: 992px) {
  .md_mL10 {
    margin-left: 10px !important;
  }

  .md_mL20 {
    margin-left: 20px !important;
  }

  .md_mL30 {
    margin-left: 30px !important;
  }

  .md_mL40 {
    margin-left: 40px !important;
  }

  .md_mL50 {
    margin-left: 50px !important;
  }

  .md_mL60 {
    margin-left: 60px !important;
  }
}
.mR0 {
  margin-right: 0px !important;
}

.mR5 {
  margin-right: 5px !important;
}

.mR10 {
  margin-right: 10px !important;
}

.mR15 {
  margin-right: 15px !important;
}

.mR20 {
  margin-right: 20px !important;
}

.mR25 {
  margin-right: 25px !important;
}

.mR30 {
  margin-right: 30px !important;
}

.mR35 {
  margin-right: 35px !important;
}

.mR40 {
  margin-right: 40px !important;
}

.mR45 {
  margin-right: 45px !important;
}

.mR50 {
  margin-right: 50px !important;
}

.mR55 {
  margin-right: 55px !important;
}

.mR60 {
  margin-right: 60px !important;
}

@media (max-width: 768px) {
  .sm_mR10 {
    margin-right: 10px !important;
  }

  .sm_mR20 {
    margin-right: 20px !important;
  }

  .sm_mR30 {
    margin-right: 30px !important;
  }

  .sm_mR40 {
    margin-right: 40px !important;
  }

  .sm_mR50 {
    margin-right: 50px !important;
  }

  .sm_mR60 {
    margin-right: 60px !important;
  }
}
@media (max-width: 992px) {
  .md_mR10 {
    margin-right: 10px !important;
  }

  .md_mR20 {
    margin-right: 20px !important;
  }

  .md_mR30 {
    margin-right: 30px !important;
  }

  .md_mR40 {
    margin-right: 40px !important;
  }

  .md_mR50 {
    margin-right: 50px !important;
  }

  .md_mR60 {
    margin-right: 60px !important;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

タイトル

:::::::::::::::::::::::::::::::::::::::::::::::*/
.tit-type01 {
  padding: 2px;
  border: 1px solid #dedbd7;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 4px #CCC;
}
.tit-type01 span {
  font-size: 2.0rem;
  color: #FFF;
  background: #000000;
  padding: 1.5rem 0;
  display: block;
  border-radius: 10px;
  text-align: center;
  font-family: "gen_jyuu_gothicmedium";
}

.tit-type02 {
  padding: 2px;
  border: 1px solid #dedbd7;
  border-radius: 10px;
  margin-bottom: 1.0rem;
  box-shadow: 0 0 4px #CCC;
}
.tit-type02 span {
  font-size: 1.7rem;
  color: #ffffff;
  background: #000000;
  padding: 0.5rem 1.0rem;
  display: block;
  border-radius: 10px;
  letter-spacing: .15em;
  font-family: "gen_jyuu_gothicmedium";
}

.tit-type03 {
  color: #7a6245;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.tit-type05 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  padding: 12px 5px 8px 5rem;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.tit-type05::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  background: url(./images/type05.png) no-repeat 0 0;
  width: 4rem;
  height: 4rem;
}

.tit-type06 {
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  padding: 12px 5px 8px 0rem;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.tit-type07 {
  font-size: 1.4rem;
  margin-bottom: 0rem;
  padding: 0px 5px 5px 0rem;
  position: relative;
}

@media (min-width: 768px) {
  .tit-type01 {
    border: 1px solid #dedbd7;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  .tit-type01 span {
    font-size: 2.6rem;
    color: #FFF;
    background: #000000;
    padding: 2.0rem 0;
    display: block;
    border-radius: 10px;
    text-align: center;
    font-family: "gen_jyuu_gothicmedium";
    letter-spacing: 0.5rem;
  }

  .tit-type02 {
    font-size: 2.6rem;
    font-weight: 500 !important;
  }
  .tit-type02 span {
    font-size: 1.8rem;
    padding: 1.0rem 1.0rem 1.0rem 3.0rem;
  }

  .tit-type03 {
    font-size: 2.1rem;
  }

  .tit-type04 {
    padding: 2px;
    box-shadow: 0 0 4px #CCC;
    border-radius: 10px;
    margin-bottom: 1.5rem;
  }
  .tit-type04 span {
    font-size: 1.8rem;
    color: #FFF;
    background: #000000;
    padding: 0.7rem;
    display: block;
    border-radius: 8px;
    text-align: center;
    font-family: "gen_jyuu_gothicmedium";
    letter-spacing: 0.5rem;
  }

  .tit-type05 {
    font-size: 2.1rem;
    margin-bottom: 2.0rem;
    padding: 19px 5px 12px 8rem;
    border-bottom: 1px solid #ccc;
  }
  .tit-type05::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    background: url(./images/type05.png) no-repeat 0 0;
    width: 7rem;
    height: 6.5rem;
  }
    
  .tit-type06 {
    font-size: 2.1rem;
    margin-bottom: 2.0rem;
    padding: 19px 5px 12px 0rem;
    border-bottom: 1px solid #ccc;
  } 

  .tit-type07 {
    font-size: 1.7rem;
    margin-bottom: 0rem;
    padding: 0px 5px 5px 0rem;
    position: relative;
  }    
    
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

リンク

:::::::::::::::::::::::::::::::::::::::::::::::*/
.link-type01 {
  font-size: 1.4rem;
  padding-right: 20px;
  margin-top: 5px;
  display: block;
  text-align: left;
  color: #241606;
  position: relative;
  margin: 0 auto;
}

.link-type01::after {
  font-family: "fontello";
  content: '\f101';
  position: relative;
  font-size: 1.4rem;
  display: inline-block;
  right: -5px;
  color: #EB6112;
}

.link-type01:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .link-type01 {
    font-size: 1.6rem;
    display: inline-block;
    float: right;
  }

  .link-type01::after {
    font-size: 2.0rem;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

ボタン

:::::::::::::::::::::::::::::::::::::::::::::::*/
.contact_btn {
  text-decoration: none;
  color: #745029;
  border: double 4px #745029;
  border-radius: 3px;
  text-align: left;
  width: 25rem;
  font-size: 2.2rem;
  position: relative;
  margin: 0 auto;
  display: block;
  font-weight: 600;
}
.contact_btn a {
  display: block;
  color: #745029;
  padding: 1.0rem 2.0rem 1.0rem 5.5rem;
  line-height: 1.3;
}
.contact_btn::before {
  font-family: "fontello";
  content: '\e800';
  position: absolute;
  font-size: 3.5rem;
  display: block;
  left: 1.5rem;
  color: #745029;
  top: 2.2rem;
}

@media (min-width: 768px) {
  .contact_btn {
    padding: 1.0rem 2.0rem 1.0rem 5.5rem;
    line-height: 1.3;
  }
  .contact_btn::before {
    top: 1.3rem;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

リスト

:::::::::::::::::::::::::::::::::::::::::::::::*/
/* list-type別
------------------------------------*/
.list-type01 {
  margin-bottom: 10px;
  list-style-type: none;
}
.list-type01 li {
  line-height: 1.5;
  font-size: 1.5rem;
  padding-left: 20px;
  position: relative;
  margin-bottom: 5px;
  text-indent: -0.5em;
}
.list-type01 li::before {
  content: '';
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #EB6112;
  left: -10px;
  margin-top: 4px;
  position: relative;
}

.list-type02 {
  margin-bottom: 10px;
  list-style-type: none;
}
.list-type02 li {
  line-height: 1.5;
  font-size: 1.4rem;
  padding-left: 20px;
  position: relative;
  margin-bottom: 15px;
  text-indent: -0.5em;
}
.list-type02 li::before {
  content: '';
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #000000;
  left: -10px;
  margin-top: 4px;
  position: relative;
}

.list-type03 li {
  margin-bottom: 0;
}
.list-type03 li dl {
  border: 1px solid #CCC;
}
.list-type03 li dt {
  background: #eee;
  padding-left: 10px;
  margin-bottom: 0;
}
.list-type03 li dd {
  border-bottom: 1px solid #CCC;
  margin-bottom: 0;
  padding: 5px 0 5px 10px;
}
.list-type03 li dd:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .list-type01 li {
    font-size: 1.6rem;
    margin-left: .8rem;
  }
  .list-type01 li::before {
    width: 1.0rem;
    height: 1.0rem;
    left: -15px;
    margin-top: 2px;
    top: -2px;
  }

  .list-type02 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .list-type02 li {
    font-size: 1.6rem;
    flex-basis: 47.5%;
    margin-bottom: 12px;
    margin-left: .8rem;
  }
  .list-type02 li::before {
    width: 1.0rem;
    height: 1.0rem;
    left: -15px;
    margin-top: 2px;
    top: -2px;
  }

  .list-type03 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .list-type03 li {
    margin-bottom: 0;
    flex-basis: 50%;
  }
  .list-type03 li dl {
    border: 1px solid #ccc;
  }
  .list-type03 li dt {
    background: #eee;
    padding: 10px;
    margin-bottom: 0;
  }
  .list-type03 li dd {
    border-bottom: 1px solid #ccc;
    margin-bottom: 0;
    padding: 5px 0 5px 10px;
  }
  .list-type03 li dd:last-child {
    border-bottom: none;
  }
}
/****リンクのリスト****/
.link-list-type01 li a {
  font-size: 1.5rem;
  padding-left: 5px;
  margin-top: 5px;
  display: inline-block;
  text-align: left;
  color: #000000;
  position: relative;
  padding-left: 20px;
}
.link-list-type01 li a::before {
  /*サイトによって変更WEBフォント*/
  font-family: "fontello";
  content: '\e811';
  position: absolute;
  font-size: 1.6rem;
  display: block;
  right: 0;
  left: 0;
  color: #000000;
  top: 4px;
}
.link-list-type01 li a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .link-list-type01 li a {
    font-size: 1.6rem;
  }
  .link-list-type01 li a::before {
    font-size: .7rem;
  }
}
/*番号リスト*/
.number-type01 {
  counter-reset: number 0;
}
.number-type01 li::before {
  counter-increment: number 1;
  /* number カウンタを増加 */
  content: "※" counter(number);
  /* 表示形式を指定 */
  padding-right: 5px;
}

/* detail-type(dl)
------------------------------------*/
.detail-type01 dt {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 5px;
  font-weight: 600;
}
.detail-type01 dd {
  font-size: 1.6rem;
  margin-bottom: 2.0rem;
}

@media (min-width: 768px) {
  .detail-type01 dt {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  .detail-type01 dd {
    margin-bottom: 20px;
  }
}
.detail-type02 dt {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 5px 15px 5px 1.5rem;
  color: #765915;
  background: #FDF3D2;
  border-radius: 10px;
  border: 2px solid #00e6cb;
}
.detail-type02 dd {
  font-size: 1.6rem;
  margin-bottom: 2.0rem;
}

@media (min-width: 768px) {
  .detail-type02 dt {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
  .detail-type02 dd {
    margin-bottom: 20px;
  }
}
/****flowBox(流れ)****/
.flowBox {
  list-style: none;
  padding: 0;
  margin: 10px auto 0px;
}

.flowBox li {
  margin-bottom: 5.0rem;
  position: relative;
  border: 1px solid #A49062;
  /*詳細がない場合があるため先にlastから記載*/
}
.flowBox li span:last-child {
  display: block;
  background: #FFF;
  padding: 10px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.flowBox li span:first-child {
  background: #A49062;
  padding: 5px 10px;
  display: block;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #FFF;
}
.flowBox li span:first-child::first-letter {
  /*1文字めを大きく*/
  font-size: 2.2rem;
  letter-spacing: 0.15em;
}

@media (min-width: 768px) {
  .flowBox li {
    margin-bottom: 5.0rem;
    position: relative;
    border: 1px solid #A49062;
    /*詳細がない場合があるため先にlastから記載*/
  }
  .flowBox li span:last-child {
    padding: 15px;
    font-size: 1.6rem;
  }
  .flowBox li span:first-child {
    padding: 5px 10px;
    font-size: 1.9rem;
  }
  .flowBox li span:first-child::first-letter {
    /*1文字めを大きく*/
    font-size: 2.5rem;
  }
  .flowBox li .imgR2 {
    margin-bottom: 0 !important;
  }
}
.flowBox li::after {
  bottom: -3.5rem;
  color: #A49062;
  content: "▼";
  font-size: 2.0rem !important;
  left: 47.5%;
  position: absolute;
}

.flowBox li:last-child {
  margin-bottom: 0;
}

.flowBox li:last-child::after {
  /*最後の▼を外す*/
  content: "";
}

@media (min-width: 768px) {
  .flowBox li::after {
    bottom: -43px;
    font-size: 2.5rem !important;
  }
}
/*経歴*/
.career-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-content: center;
  font-size: 1.5rem;
  margin: 0;
}
.career-list dt {
  flex-basis: 100%;
  margin-bottom: 5px;
  font-size: 1.5rem;
}
.career-list dd {
  flex-basis: 100%;
  margin-left: 0;
  margin-bottom: 25px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .career-list dt {
    flex-basis: 6em;
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .career-list dd {
    flex-basis: calc(100% - 7em);
    margin-bottom: 20px;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

カラムボックス

:::::::::::::::::::::::::::::::::::::::::::::::*/
/****PC カラム****/
@media (min-width: 768px) {
  .flex_col2, .flex_col3 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }

  .flex_col3:after {
    content: "";
    display: block;
    width: 32.5%;
  }

  /*2カラム*/
  .col-6 {
    flex-basis: 48.5%;
  }

  /*3カラム*/
  .col-4 {
    flex-basis: 32.5%;
  }

  /*テキストがあれば*/
  .col-6 span, .col-4 span {
    display: block;
  }
  .col-6 span:nth-of-type(1), .col-4 span:nth-of-type(1) {
    text-align: center;
    margin: 15px 0;
    font-size: 1.7rem;
    line-height: 1.5;
  }
  .col-6 span:nth-of-type(2), .col-4 span:nth-of-type(2) {
    margin: 15px 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

画像回り込み

:::::::::::::::::::::::::::::::::::::::::::::::*/
.imgNomal img {
  width: auto;
  margin: 10px 5px 0 5px;
}

@media (min-width: 768px) {
  .imgNomal img {
    width: auto;
    margin: 10px 5px;
  }
}
/*-----------------------------------------

右

----------------------------------------------*/
/**** PC テキスト回り込こみのみ　imgにクラス追加****/
.imgR2 {
  width: 80%;
  /*サイトによって変更*/
  padding-bottom: 15px;
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .imgR2 {
    float: right;
    width: 25%;
    margin-left: 2.0rem;
    margin-bottom: 2.0rem;
    padding-bottom: 0px;
  }
}
@media (max-width: 768px) {
  .imgR2 {
    text-align: center;
  }

  /*院長紹介用*/
  .imgR2 img {
    width: 70%;
  }
}
/****テキスト回り込なし　右 imgタグを　div alignRboxで囲む****/
@media (min-width: 768px) {
  .alignRbox p {
    width: 71%;
    overflow: hidden;
  }
}
/*-----------------------------------------

左

----------------------------------------------*/
/**** PC テキスト回り込こみのみ　imgにクラス追加****/
.imgL2 {
  width: 80%;
  /*サイトによって変更*/
  padding-bottom: 15px;
  margin: 0 auto;
  display: block;
}

@media (min-width: 768px) {
  .imgL2 {
    float: left;
    width: 33%;
    /*サイトによって変更*/
    padding-bottom: 0px;
  }
}
/****テキスト回り込なし　右 imgタグを　div alignRboxで囲む****/
@media (min-width: 768px) {
  .alignLbox p {
    width: 65%;
    overflow: hidden;
  }
}
/*-----------------------------------------

中央

----------------------------------------------*/
/*中央配置*/
.alignCbox {
  text-align: center;
  margin-bottom: 20px;
}
.alignCbox img {
  width: 80%;
}

@media (min-width: 768px) {
  .alignCbox {
    margin-bottom: 30px;
  }
  .alignCbox img {
    width: auto;
  }
}
/*画像丸*/
.imgMaru {
  border-radius: 50%;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::

診療概要

:::::::::::::::::::::::::::::::::::::::::::::::*/
.gaiyo {
  box-shadow: 0 0 4px #CCC;
  padding: 20px 10px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .gaiyo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 35px 15px 40px;
  }
}
.gaiyoBox dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-content: center;
  margin-bottom: 1.5rem;
}
.gaiyoBox dt {
  color: #FFF;
  text-align: center;
  background: #000000;
  padding: 2px 0;
  flex-basis: 5em;
  font-size: 1.4rem;
  border-radius: 5px;
  align-self: flex-start;
}
.gaiyoBox dd {
  flex-basis: calc(100% - 5.5em);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}
.gaiyoBox dd .tel a {
  color: #241606;
}

@media (min-width: 768px) {
  .gaiyoBox {
    width: 48%;
  }
  .gaiyoBox dt {
    padding: 2px 0;
    flex-basis: 6em;
    font-size: 1.5rem;
    max-width: 84px;
  }
  .gaiyoBox dd {
    flex-basis: calc(100% - 6em);
    max-width: 230px;
    font-size: 1.5rem;
  }
  .gaiyoBox dd .tel {
    font-size: 1.8rem;
    color: #000000;
  }
  .gaiyoBox dd .tel a {
    color: #000000;
  }
}
.timetable {
  width: 100%;
}
.timetable th {
  font-weight: normal;
  font-size: 1.4rem;
  background: #000000;
  color: #FFF;
  border: 1px solid #DDD;
}
.timetable tr td {
  width: 9%;
  text-align: center;
  font-size: 1.5rem;
  border: 1px solid #DDD;
  color: #e6d873;
}
.timetable td:first-child {
  width: 33%;
  font-size: 1.3rem;
  color: #241606;
}

@media (min-width: 768px) {
  .timetable {
    width: 100%;
    margin-bottom: 0;
  }
  .timetable th {
    font-size: 1.4rem;
  }
  .timetable th:first-child {
    text-align: center;
  }
  .timetable tr td {
    width: 10%;
    text-align: center;
    font-size: 1.6rem;
  }
  .timetable td:first-child {
    width: 30%;
    font-size: 1.4rem;
    text-align: center;
  }
  .timetable td:last-child {
    width: 10%;
  }
}
.timetable th, .timetable td {
  padding: 10px 0;
  border-bottom: 1px solid #DDD;
  text-align: center;
}

@media (min-width: 768px) {
  .timetable th, .timetable td {
    padding: 7px 0;
  }
}
caption {
  caption-side: bottom;
  padding: 10px 0 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}
caption span {
  color: #896931;
  display: inline-block;
}

@media (min-width: 768px) {
  caption {
    font-size: 1.4rem;
  }
}
.timetable-caption dl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-content: center;
  margin-bottom: 0;
  margin-top: 10px;
}
.timetable-caption dt {
  color: #fff;
  text-align: center;
  background: #45a8e6;
  padding: 2px 0;
  flex-basis: 5em;
  font-size: 1.4rem;
  border-radius: 5px;
  align-self: flex-start;
}
.timetable-caption dd {
  flex-basis: calc(100% - 5.5em);
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::

お知らせ

:::::::::::::::::::::::::::::::::::::::::::::::*/
.notice_frame {
  height: 360px;
  overflow-y: scroll;
  padding: 10px;
  border: 1px solid #dedbd7;
  border-radius: 10px;
}
.notice_frame dl {
  margin-top: 0;
}

@media only screen and (min-width: 768px) {
  .notice_frame {
    height: 360px;
    overflow-y: scroll;
    padding: 15px 20px;
  }
  .notice_frame dl {
    margin-top: 0;
  }
}
.news_title {
  padding: 0px;
  font-size: 1.4rem;
  margin: 5px 0 5px;
  color: #7a6245;
  /*color: #e6008e;ピンク*/
}

@media only screen and (min-width: 768px) {
  .news_title {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}
.news_body {
  margin-left: 0;
  border-bottom: 1px dashed #000000;
  margin: 0 0 30px 0;
  padding-bottom: 30px;
}

.news_body p {
  line-height: 1.3;
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .news_body p {
    font-size: 1.6rem;
  }
}
/*リンク*/
.news_body a {
  color: #00e6cb;
  font-size: 1.4rem;
  display: block;
}
.news_body a::before {
  content: "\f105";
  font-family: 'fontello';
  position: relative;
  display: inline-block;
  padding-right: 5px;
}

@media (min-width: 768px) {
  .news_body a {
    font-size: 1.6rem;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

Back To Top

:::::::::::::::::::::::::::::::::::::::::::::::*/
/* Back To Top
------------------------------------*/
#topcontrol {
  position: relative;
  z-index: 99;
  right: 1.0rem !important;
  bottom: 10px !important;
  width: 5rem;
  height: 5rem;
}

#topcontrol:after {
  position: absolute;
  content: "";
  background: url(../images/pagetop.png) no-repeat;
  width: 100%;
  height: 100%;
  background-size: 100%;
}

#topcontrol:hover {
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media (min-width: 768px) {
  #topcontrol {
    right: 1.5rem !important;
    width: 8rem;
    height: 8rem;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

map

:::::::::::::::::::::::::::::::::::::::::::::::*/
@media (min-width: 768px) {
  .gmap {
    width: 48%;
    height: 35rem;
  }
}
.gmap iframe {
  vertical-align: bottom;
  width: 100%;
  height: 30rem;
}

@media (min-width: 768px) {
  .gmap iframe {
    height: 100%;
  }
}
.mapLink {
  display: block;
  margin-top: 10px;
  background: url(../images/btn_access.png) no-repeat center center/cover;
  text-indent: 120%;
  white-space: nowrap;
  overflow: hidden;
  height: 3.8rem;
}

@media (min-width: 768px) {
  .mapLink {
    height: 4.3rem;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

テーブルタイプ

:::::::::::::::::::::::::::::::::::::::::::::::*/
/* 自分で追加 */
.table6{
    width: 100%;
    border-collapse: separate;
    border-spacing: 0px;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .table6{
        font-size: 1.8rem;
    }
}

.table6 th{
width:20%;
padding:10px;
text-align: left;
vertical-align: top;
color: #333;
background-color: #00e6cb;
border-left: 3px #999;
border-top: 1px solid #fff;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
.table6 td{
width:80%;
padding:10px;
background-color: #fff;
border-right: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}




/*スマホ用　2行のため　カラム落ちタイプ*/
@media (max-width: 768px) {
  .table-type02 {
    overflow: auto;
  }
  .table-type02 table, .table-type02 td, .table-type02 th {
    display: block;
    border: 1px solid #ccc;
    line-height: 1.5;
    text-align: center;
  }
  .table-type02 table {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.4rem;
    margin: 0 0 30px 0;
    border: none;
    border-bottom: 1px solid #595959;
    display: inline-table;
    /*キャプション*/
  }
  .table-type02 table tr {
    display: block;
  }
  .table-type02 table tr:first-child {
    margin-bottom: 0;
  }
  .table-type02 table th {
    font-size: 1.4rem;
    font-weight: 400;
    background: #eee;
    padding: 10px 0;
    width: 100%;
    vertical-align: middle;
    border-bottom: none;
  }
  .table-type02 table td {
    width: 100%;
    padding: 5px;
  }
  .table-type02 table th, .table-type02 table td {
    border: none;
  }
  .table-type02 table th {
    border-right: 1px solid #595959;
    border-left: 1px solid #595959;
    border-top: 1px solid #595959;
  }
  .table-type02 table td {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #595959;
    border-right: 1px solid #595959;
    border-left: 1px solid #595959;
    background: #FFF;
  }
  .table-type02 table .timetable-caption {
    caption-side: top;
    padding: 5px 0;
    font-size: 1.5rem;
    border-top: 1px solid #595959;
    border-left: 1px solid #595959;
    border-right: 1px solid #595959;
    font-weight: 600;
    text-align: center;
    background: #CCC;
  }
}
/*pc用は通常テーブル*/
@media (min-width: 768px) {
  .table-type02 {
    overflow: inherit;
    white-space: normal;
    margin-bottom: 30px;
    /*キャプション*/
  }
  .table-type02 table, .table-type02 td, .table-type02 th {
    border: 1px solid #595959;
    border-collapse: collapse;
  }
  .table-type02 table {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.7rem;
    margin: 0 0 30px 0;
  }
  .table-type02 table th {
    font-size: 1.7rem;
    font-weight: 600;
    background: #eee;
    border: #808080 1px solid;
    padding: 10px 0;
    width: 40%;
    vertical-align: middle;
    font-weight: 400;
    height: 65px;
  }
  .table-type02 table td {
    width: 60%;
    padding: 5px;
    vertical-align: middle;
    text-align: center;
    background: #FFF;
    font-size: 1.7rem;
  }
  .table-type02 .timetable-caption {
    caption-side: top;
    padding: 15px 0;
    font-size: 1.7rem;
    border-top: 1px solid #595959;
    border-left: 1px solid #595959;
    border-right: 1px solid #595959;
    font-weight: 600;
    text-align: center;
    background: #CCC;
  }
}
/*タイプ3*/
@media (max-width: 768px) {
  .table-type03 {
    overflow: auto;
    margin-bottom: 30px;
  }
  .table-type03 table, .table-type03 td, .table-type03 th {
    display: block;
    border: 1px solid #ccc;
  }
  .table-type03 table {
    width: 100%;
    box-sizing: border-box;
    font-size: 1.5rem;
    margin: 0 0 30px 0;
    border: none;
    display: inline-table;
    border-bottom: 1px solid #595959;
    /*キャプション*/
  }
  .table-type03 table tr {
    display: block;
  }
  .table-type03 table tr:first-child {
    margin-bottom: 0;
  }
  .table-type03 table th {
    font-size: 1.5rem;
    font-weight: 400;
    background: #eee;
    padding: 8px 0;
    width: 100%;
    vertical-align: middle;
    border-bottom: none;
  }
  .table-type03 table thead {
    display: none;
  }
  .table-type03 table th, .table-type03 table td {
    display: list-item;
    list-style-type: none;
    border: none;
    padding: 10px 0;
    line-height: 1.5;
  }
  .table-type03 table th {
    border-right: 1px solid #595959;
    border-left: 1px solid #595959;
    border-top: 1px solid #595959;
  }
  .table-type03 table td {
    width: 100%;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #595959;
    border-right: 1px solid #595959;
    border-left: 1px solid #595959;
    background: #FFF;
  }
  .table-type03 table .timetable-caption {
    caption-side: top;
    padding: 5px 0;
    font-size: 1.5rem;
    border-top: 1px solid #595959;
    border-left: 1px solid #595959;
    border-right: 1px solid #595959;
    text-align: center;
    background: #CCC;
  }

  /****テキスト SP時****/
  .table-type03 tbody td:nth-of-type(1):before {
    content: '『標準的接種期間』';
    margin-right: 20px;
    display: block;
  }

  .table-type03 tbody td:nth-of-type(2):before {
    content: '『接種回数』';
    margin-right: 20px;
    display: block;
  }

  .table-type03 tbody td:nth-of-type(3):before {
    content: '『接種費用』';
    margin-right: 20px;
    display: block;
  }
}
/*pc用は通常テーブル*/
@media (min-width: 768px) {
  .table-type03 {
    overflow: inherit;
    white-space: normal;
    margin: 15px 0 30px 0;
    /*キャプション*/
  }
  .table-type03 table, .table-type03 td, .table-type03 th {
    border: 1px solid #595959;
    border-collapse: collapse;
  }
  .table-type03 table {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
    font-size: 1.6rem;
  }
  .table-type03 table td {
    background: #FFF;
  }
  .table-type03 table thead th {
    background: #eee;
    font-size: 1.6rem;
  }
  .table-type03 table .trTh {
    background: #eee;
    width: 40%;
    height: 65px;
    font-size: 1.6rem;
  }
  .table-type03 table td, .table-type03 table th {
    font-weight: normal;
    padding: 20px 5px;
    text-align: center;
    border: 1px solid #595959;
    line-height: 1.5;
    vertical-align: middle;
  }
  .table-type03 .timetable-caption {
    caption-side: top;
    padding: 15px 0;
    font-size: 1.6rem;
    border-top: 1px solid #595959;
    border-left: 1px solid #595959;
    border-right: 1px solid #595959;
    font-weight: 600;
    text-align: center;
    background: #CCC;
  }
}
/* ----------------------------------------------------------------------------------
共通　_common.scss
---------------------------------------------------------------------------------- */
/* body 　*/
/* フォント 　*/
/* webフォント 　*/
/* ノーマル 　*/
/* レイアウト　*/
/* section　スペース　*/
/* キーヴィジュアル　*/
/* プルダウン(診療内容)*/
/*:::::::::::::::::::::::::::::::::::::::::::::::

body

:::::::::::::::::::::::::::::::::::::::::::::::*/
@media screen and (min-width: 768px) {
  body {
    min-width: 1038px;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

フォント

:::::::::::::::::::::::::::::::::::::::::::::::*/
/* 源柔ゴシックM -------------------------------------- */
@font-face {
  font-family: 'gen_jyuu_gothicmedium';
  src: url("./font/GenJyuuGothic-Medium.woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

webフォント 

:::::::::::::::::::::::::::::::::::::::::::::::*/
@font-face {
  font-family: 'fontello';
  src: url("fnt/font/fontello.eot?1131762");
  src: url("fnt/font/fontello.eot?1131762#iefix") format("embedded-opentype"), url("fnt/font/fontello.woff?1131762") format("woff"), url("fnt/font/fontello.ttf?1131762") format("truetype"), url("fnt/font/fontello.svg?1131762#fontello") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

ノーマル

:::::::::::::::::::::::::::::::::::::::::::::::*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

p {
  font-size: 1.5rem;
  margin-bottom: 1em;
  line-height: 1.5;
}

@media (min-width: 768px) {
  p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
ul li, ol li {
  font-size: 1.5rem;
  margin-bottom: 0.8em;
}

@media (min-width: 768px) {
  ul li, ol li {
    font-size: 1.6rem;
    margin-bottom: 1em;
    line-height: 1.5;
  }
}
dl dt {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
dl dd {
  font-size: 1.5rem;
  margin-bottom: 1em;
  line-height: 1.5;
}

@media (min-width: 768px) {
  dl dt {
    font-size: 1.6rem;
  }
  dl dd {
    font-size: 1.6rem;
  }
}
.logo a:hover img {
  opacity: 0.9;
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  filter: alpha(opacity=90);
}

a:hover, a:active, .current {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  opacity: 0.7;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  filter: alpha(opacity=70);
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figcaption {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  margin: 10px 0;
}
figcaption span {
  font-size: 1.4rem;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::

レイアウト(base)

:::::::::::::::::::::::::::::::::::::::::::::::*/
.contents {
  width: 100%;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .contents {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0rem;
    box-shadow: -1px -1px 2px #efefef;
  }
}
#page .contents {
  padding-top: 1.0rem;
}

@media (min-width: 768px) {
  #page .contents {
    padding-top: 2.0rem;
  }
}
main {
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 768px) {
  main {
    flex-basis: 710px;
    max-width: 710px;
    /*margin: 0 0 0 38px;*/
    margin: 0 0 0 0px;
    padding: 0;
  }
}
aside {
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  aside {
    flex-basis: 240px;
    max-width: 240px;
    padding: 0;
  }
}
/*※ブロックにてcontainer幅変更あり*/
.container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container {
    max-width: 100%;
    width: 988px;
    margin: 0 auto;
  }
}
.innerBox {
  padding: 1.5rem 1.5rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 4px #CCC;
}

@media (min-width: 768px) {
  .innerBox {
    padding: 2.0rem 3.0rem;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

section　スペース

:::::::::::::::::::::::::::::::::::::::::::::::*/
main > section ~ section {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  main > section ~ section {
    margin-top: 2.0rem;
  }
}
section section {
  margin-top: 2.5rem;
}
section section section {
  margin-top: 2.0rem;
}

.innerBox > section {
  margin-top: 0;
}

.innerBox > section ~ section {
  margin-top: 2.5rem;
  /*2コ目*/
}

/*:::::::::::::::::::::::::::::::::::::::::::::::

visual

:::::::::::::::::::::::::::::::::::::::::::::::*/
/*top*/
.keyVisual {
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .keyVisual{
        display: none;
    }
}

@media (min-width: 768px) {
  .keyVisual {
    flex-basis: 100%;
    box-shadow: 1px 1px 2px #efefef;
    margin-bottom: 2.0rem;
  }
}
.visual {
  position: relative;
  height: 13rem;
  background: url(./images/beach_001_005.jpg) no-repeat top center/auto;
  background-size: 100% 100%;
  border: 1px solid #dedbd7;
  border-radius: 10px;
  box-shadow: 0 0 4px #CCC;
}

.copy {
  width: 30rem;
  margin: 0 auto;
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  .visual {
    position: relative;
    padding: 0px;
    overflow: hidden;
    height: 26rem;
  }

  .copy {
    width: 60rem;
    margin: 0 auto;
    padding: 9rem 0;
  }
}
/****下層ページ****/
#page .keyVisual {
  height: 10rem;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  #page .keyVisual {
    height: 200px;
    padding: 30px 0;
    flex-basis: 100%;
    margin-bottom: 35px;
  }
}
#page .visual {
  margin-bottom: 5rem;
  background: url(../images/low_kevy.jpg) no-repeat top center/auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  height: 7rem;
  position: relative;
  margin: 0 auto;
  background-size: 100% 100%;
}

@media (min-width: 768px) {
  #page .visual {
    height: 14rem;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

プルダウン/SPのみアコーディオン（診療内容）

:::::::::::::::::::::::::::::::::::::::::::::::*/
/*@media (max-width: 768px) {
.treatment ul {
	list-style: none;
	margin:0;
}
label{
	cursor: pointer;
	display: block;
}
.toggle{
	display: none;
}
.toggle + label + ul{
	max-height: 0;
	overflow: hidden;
	transition: all .5s ease-out;
}
.toggle:checked + label + ul{
	max-height: 999px;
	transition: all 2s ease-in;
}
}

@media (min-width: 768px) {
	
	label{
	display: none !important;
}
	
	.toggle{
		display: none;
	}
}*/
/* ----------------------------------------------------------------------------------
_header.scss
---------------------------------------------------------------------------------- */
/* --------------------------
スマホ
---------------------------- */
/*visual*/
header .headGroup {
  padding: 20px 10px 0;
}
header .logo {
/*  width: 24rem;*/
  margin-bottom: 25px;
}
header .telBox {
  width: 28rem;
  font-family: "gen_jyuu_gothicmedium";
  color: #241606;
  margin: 0 auto;
}
header .telBox span {
  display: block;
  font-size: 1.6rem;
}
header .telBox dt {
  float: left;
  margin-right: 15px;
  padding-top: .5rem;
  font-size: 2.5rem;
  margin-bottom: 0;
}
header dd {
  margin-bottom: 0;
}
header dd a {
  font-size: 2.9rem;
  color: #ff476a;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
  font-weight: bold;
}

.tel {
  margin: 0px 0 25px 0;
}

/* ------------------------
pc
---------------------------*/
@media (min-width: 768px) {
  header {
    padding: 0;
  }
  header .headGroup {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
  header .headGroup .logo {
    flex-basis: 128px;
    max-width: 128px;
    padding-top: 20px;
    padding-bottom: 2.5rem;
    margin-bottom: 0;
  }
  header .headGroup .telBox {
    flex-basis: calc(100% - 45rem);
    max-width: 450px;
    width: auto;
    margin: 0;
    padding-left: 12rem;
    padding-top: 35px;
  }
  header .headGroup .telBox dt {
    font-size: 3.0rem;
  }
  header .headGroup .telBox dd {
    font-size: 3.5rem;
    color: #ff476a;
    letter-spacing: .05em;
  }
  header .headGroup .telBox dd a {
    font-size: 3.5rem;
    color: #ff476a;
    margin-bottom: 0;
    letter-spacing: 0.2rem;
    font-weight: bold;
  }
  .tel {
    margin: 70px 0 0 0;
  }

}
/* ----------------------------------------------------------------------------------
_nav.scss
---------------------------------------------------------------------------------- */
/* --------------------------
スマホ
---------------------------- */
nav.globalMenuPc {
  display: none;
}


/* サイドバー　診療内容 -------------------------------------- */
/*.treatment {
margin-bottom: 30px;
text-align: center;}

.toggle:checked + label::before {
    content: "▲";
}

.treatment ul{
@include flex;
@include SetPrefix(justify-content, space-between);
@include SetPrefix(flex-wrap, wrap);

}

.treatment  ul li {
width: 49.83%;
font-size: 1.4rem;
margin-bottom: 1px;
background: $clr_base1;
letter-spacing: -0.05em;
padding: 10px 5px;

a{
  color: #FFF;
}
}*/
/* ------------------------
pc
---------------------------*/
@media (min-width: 768px) {
  nav.globalMenuPc {
    display: block;
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 3px 0;
  }
  nav #menu_pc {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
  nav #menu_pc li {
    text-align: center;
    width: 19.5%;
    margin-bottom: 0;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  nav #menu_pc li a {
    font-size: 1.8rem;
    padding: 0;
    color: #241606;
    padding: 1.0rem 0;
    font-family: "gen_jyuu_gothicmedium";
    letter-spacing: .05em;
    line-height: 1.5;
  }
  nav #menu_pc li a:hover {
    color: #000000;
  }
  nav #menu_pc li a {
    border-left: 1px dotted #b1762f;
    border-right: 1px dotted #b1762f;
  }
  nav #menu_pc li + li a {
    border-left: 0;
    border-right: 1px dotted #b1762f;
  }

  /*6個目以降　非表示*/
  nav #menu_pc li:nth-child(n + 6) {
    display: none;
  }

  .slicknav_btn {
    display: none;
  }
}
nav #menu {
  display: none;
}

/*-----------------------------------------

スマホ

----------------------------------------------*/
aside.subnav {
  /****sp　サイドバー消えて　nav.scssのspに記載****/
  display: none;
}

/*-----------------------------------------

pc

----------------------------------------------*/
@media (min-width: 768px) {
  aside.subnav {
    display: block;
    /****サイドバーのタイトル****/
  }
  aside.subnav .treatment ul {
    box-shadow: 0 0 4px #CCC;
    border-radius: 10px;
    padding: 0px 10px 0px;
  }
  aside.subnav .treatment ul li {
    margin-bottom: 0;
  }
  aside.subnav .treatment ul li a {
    font-size: 2.0rem;
    padding: 10px 1rem 10px 1rem;
    display: block;
    border-bottom: 1px dotted #64c4d0;
    color: #241606;
    position: relative;
    font-family: "gen_jyuu_gothicmedium";
    text-align: center;
  }
  aside.subnav .treatment ul li a:hover {
    color: #000000;
  }
  aside.subnav .treatment ul li:last-of-type a {
    border-bottom: none;
  }
  aside.subnav .tit-side {
    color: #f6ffda;
    font-size: 2.0rem;
    padding: 0 0 15px;
    text-align: center;
  }
}
/* ----------------------------------------------------------------------------------
_main.scss
---------------------------------------------------------------------------------- */
/*-----------------------------------------

ボタンエリア

----------------------------------------------*/
.btn_box {
  font-family: "gen_jyuu_gothicmedium";
}
.btn_box .btn_reserve01, .btn_box .btn_reserve02, .btn_box .btn_pdf {
  padding: 3px;
  box-shadow: 0 0 6px #BBB;
  border-radius: 10px;
  margin-bottom: 1.0rem;
}
.btn_box .btn_reserve01 a, .btn_box .btn_reserve02 a, .btn_box .btn_pdf a {
  display: block;
  border: 1px solid #FFF;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 0 2px #CCC;
}
.btn_box .btn_reserve01 a {
  position: relative;
}
/*
.btn_box .btn_reserve01 a::after {
  font-family: "fontello";
  content: '\f138';
  position: absolute;
  font-size: 2.0rem;
  display: block;
  right: 1rem;
  color: #99cc00;
  bottom: .5rem;
}
*/
.btn_box .btn_reserve01 dt {
  margin-bottom: 10px;
}
.btn_box .btn_reserve02 dd {
  color: #7a6245;
}
.btn_box .btn_reserve02 dd span.tel {
  display: block;
  color: #ff476a;
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.btn_box .btn_reserve02 dd span.tel a {
  box-shadow: none !important;
  color: #ff476a;
  pointer-events: all !important;
}
.btn_box .btn_pdf {
  margin-bottom: 2.5rem;
}
.btn_box .btn_pdf dl {
  text-align: center;
}
.btn_box .btn_pdf dt {
  font-size: 1.5rem;
  padding: 1.0rem 0;
}
.btn_box .btn_pdf dd {
  background: url(./images/external.png) no-repeat right center/1.5rem 1.5rem;
  padding: 5px 1.5rem 5px 0;
  display: inline-block;
}
.btn_box dl dt {
  background: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  color: #FFF;
  margin-top: 10px;
}
.btn_box dl dd {
  font-size: 1.4rem;
  font-weight: 600;
  color: #241606;
  text-align: center;
  margin-bottom: .5em;
}

@media (min-width: 768px) {
  .btn_box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .btn_box .btn_reserve01 {
    flex-basis: 70%;
    max-width: 54%;
    margin-left: auto;
    margin-right: auto;
  }
  .btn_box .btn_reserve02 {
    flex-basis: 49%;
    max-width: 49%;
  }
  .btn_box .btn_reserve02 dd {
    line-height: 1.0;
  }
  .btn_box .btn_reserve02 dd span.tel {
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
  }
  .btn_box .btn_pdf {
    flex-basis: 100%;
    max-width: 100%;
  }
  .btn_box .btn_pdf dt {
    font-size: 2.5rem;
  }
  .btn_box .btn_pdf dd {
    background: url(./images/external.png) no-repeat right center/3rem 3rem;
    padding: 0 3.0rem 0 0;
  }
  .btn_box dl dt {
    font-size: 2.0rem;
  }
  .btn_box dl dd {
    font-size: 1.8rem;
  }
}
/*-----------------------------------------

about

----------------------------------------------*/
.about_Box {
  border: 1px solid #dedbd7;
  padding: 15px 10px;
  border-radius: 10px;
  background: #cfe6e3;
  background-size: 8rem;
  background-position: 95% calc(100% - 2rem);
  /*padding-bottom: 9rem;*/
}

@media (min-width: 768px) {
  .about_Box {
    background-size: 100px;
    padding: 30px;
    overflow: hidden;
    position: relative;
  }
  .about_Box::before {
    content: "";
    position: absolute;
    top: -26px;
    left: -110px;
    background: #cfe6e3;
    background-size: 100% 100%;
    display: inline-block;
    width: 25rem;
    height: 28rem;
    opacity: 0.1;
    overflow: hidden;
  }
}
/*:::::::::::::::::::::::::::::::::::::::::::::::

下層

:::::::::::::::::::::::::::::::::::::::::::::::*/
/****院長紹介****/
.name {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

/*-----------------------------------------

アクセス

----------------------------------------------*/
.access_box {
  /*診療時間*/
}
.access_box .timeBox .timetable tr th {
  font-size: 1.8rem;
}
.access_box .timeBox .timetable tr td {
  background: #FFF;
  font-size: 1.8rem;
}
.access_box .gmap {
  position: relative;
  height: 0;
  margin-bottom: 1.5rem;
  padding-bottom: 75%;
  overflow: hidden;
  width: 100%;
}
.access_box .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .access_box {
    /*診療時間*/
  }
  .access_box .timeBox .timetable tr th {
    font-size: 1.3rem;
  }
  .access_box .timeBox .timetable tr td {
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .access_box .gmap {
    padding-bottom: 75%;
  }
  .access_box .gaiyoBox {
    width: 100%;
  }
  .access_box .gaiyoBox dl {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .access_box .gaiyoBox dt {
    color: #FFF;
    text-align: center;
    background: #000000;
    padding: 2px 0;
    flex-basis: 8em;
    font-size: 1.45rem;
    border-radius: 5px;
    align-self: flex-start;
    max-width: 84px;
  }
  .access_box .gaiyoBox dd {
    flex-basis: calc(100% - 9em);
    font-size: 1.55rem;
    margin-bottom: 1rem;
    max-width: 235px;
  }
  .access_box .gaiyoBox dd .tel {
    color: #ff7422;
    font-size: 1.7rem;
  }
}
@media (min-width: 768px) {
  .access_box .timeBox caption {
    font-size: 1.8rem;
  }
  .access_box .timeBox caption dt, .access_box .timeBox caption dd {
    font-size: 1.8rem;
  }
}
/* ----------------------------------------------------------------------------------
_foooter.scss
---------------------------------------------------------------------------------- */
/* --------------------------
スマホ
---------------------------- */
footer {
  position: relative;
}

.footerBox {
  display: none;
}

.copyright {
  font-size: 12px;
  text-align: center;
  padding: 15px 0;
  margin-bottom: 0;
  color: #FFF;
  display: block;
  background: #000000;
}

/* ------------------------
pc
---------------------------*/
@media (min-width: 768px) {
  footer {
    box-shadow: -1px -1px 2px #efefef;
    padding-top: 4rem;
  }

  .footerBox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /*background: #FFF;*/
  }

  .footer-info {
    flex-basis: 368px;
  }
  .footer-info a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -moz-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer-info img {
    width: 245px;
  }

  .footerMenu {
    flex-basis: 620px;
    display: block;
    padding: 40px 0;
  }
  .footerMenu ul li {
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 8px;
  }
  .footerMenu ul li a {
    font-size: 1.4rem;
    padding: 5px 5px 5px 10px;
    color: #333;
    position: relative;
  }
  .footerMenu ul li a br {
    display: none;
  }
  .footerMenu ul li a span {
    display: none;
  }
}
