@charset "UTF-8";
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/* -----------------------------------------------------------
 関数
----------------------------------------------------------- */
/*サイトの横幅*/
/*media screen*/
/*文字SP*/
/*文字PC*/
/*基本フォント*/
/*游明朝*/
/*基本文字色*/
/*基本背景色*/
/*白*/
/*黒*/
/*赤*/
/*ハンバーガー棒と文字*/
/*ハンバーガー背景*/
/*汎用テーブルカラー*/
/*th背景*/
/*td背景*/
/*th文字*/
/*td文字*/
/*thボーダー*/
/*tdボーダー*/
/*リンクカラー*/
/*リンクカラーホバー*/
/*青*/
/*青*/
/*黒*/
/*灰色*/
/*黒*/
/*白透過*/
/*白透過*/
/*白透過*/
/*水色*/
/*オレンジ*/
/*フォント*/
/* -----------------------------------------------------------
 特殊フォント読込
----------------------------------------------------------- */
@font-face {
  font-family: "crimsonText_regular";
  src: url(../font/CrimsonText-Regular.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "crimsonText_bold";
  src: url(../font/CrimsonText-Bold.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "shipporimincho_medium";
  src: url(../font/ShipporiMincho-Medium.ttf);
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "shipporimincho_bold";
  src: url(../font/ShipporiMincho-Bold.ttf);
  font-weight: bold;
  font-style: normal;
}
/*共通モジュール*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* ----------------------------------------------------------------------------------
モジュール　_module.scss
---------------------------------------------------------------------------------- */
/* clearfix -------------------------------------- */
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

/* float -------------------------------------- */
.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

/* txt -------------------------------------- */
.txt_c {
  text-align: center;
}

.txt_l {
  text-align: left;
}

.txt_r {
  text-align: right;
}

.bold {
  font-weight: bold;
}

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

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

@media screen and (min-width: 768px), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
  }
}
/* PC・SP　表示・非表示 -------------------------------------- */
.sp_n {
  display: none;
}

@media screen and (min-width: 768px), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
/*ハンバーガー*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.main_nav_sp {
  width: 100%;
}
.main_nav_sp .drawr {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0 0 2rem 0;
  margin: 0 0 0 0;
  z-index: 99999999;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow: auto;
  height: 100%;
  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: #333333 1px solid;
  width: 90%;
  margin: 20vw auto 20vw auto;
}
.main_nav_sp .drawr ul.hbg li {
  width: 100%;
  text-align: center;
}
.main_nav_sp .drawr ul.hbg li.treatment:hover {
  cursor: pointer;
  cursor: hand;
}
.main_nav_sp .drawr ul.hbg li .nav_new {
  display: inline-block;
  margin-left: 0.6em;
  background: #e60033;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0.2em 0.6em 0.3em;
  border-radius: 999px;
  line-height: 1;
  vertical-align: middle;
  order: -1;
  margin-left: 0;
  margin-right: 0.6em;
}
.main_nav_sp .drawr ul.hbg li .nav_new::before {
  display: none;
}
.main_nav_sp .drawr ul.hbg li a, .main_nav_sp .drawr ul.hbg li button {
  color: #0047AB;
  font-family: "shipporimincho_bold";
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  padding: 1rem;
  border-bottom: #0047AB 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%;
}
.main_nav_sp .drawr ul.hbg li a span {
  display: none;
}
.main_nav_sp .drawr ul.hbg li button {
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  width: 100%;
}
.main_nav_sp .drawr ul.hbg li button span {
  position: relative;
  padding-right: 2rem;
}
.main_nav_sp .drawr ul.hbg li button span::before {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/icon_arrow.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 0;
  top: 0.45rem;
  transform: rotateX(180deg);
}
.main_nav_sp .drawr ul.hbg li button.close span::before {
  transform: rotateX(0deg);
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub {
  display: none;
  width: 100%;
  list-style-type: none;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub.open_nav {
  display: block;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a {
  color: #0047AB;
  border-bottom: none;
  text-align: center;
  border-bottom: #0047AB 1px solid;
}
.main_nav_sp .drawr ul.hbg li ul.main_nav_sub li a::after {
  content: "" !important;
}
.main_nav_sp .drawr ul.hbg li.depression {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.bipolar {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.schizophrenia {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.panic {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.ocd {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.social_anxiety {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.adjustment {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.sleeping {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.dementia {
  display: none;
}
.main_nav_sp .drawr ul.hbg li.developmental_disorders {
  display: none;
}
.main_nav_sp .drawr ul.hbg .subnav li {
  list-style: none;
}
.main_nav_sp .drawr ul.hbg .subnav li a {
  background: #0047AB;
  color: #fff;
  border-bottom: #fff 1px solid;
}

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

.toggle-label {
  cursor: pointer;
  display: block;
  width: 14%;
  height: 10vw;
  padding: 0 0 0.5vw 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,
.toggle-label .toggle-icon:before,
.toggle-label .toggle-icon:after {
  position: relative;
  display: block;
  top: 50%;
  left: 50%;
  height: 3px;
  width: 28px;
  background: #ffffff;
  content: "";
  transition: all 500ms ease-in-out;
}

.toggle-label .toggle-text {
  position: relative;
  display: block;
  top: calc(100% - 10px);
  height: 14px;
  color: #ffffff;
  text-align: center;
}

.toggle-label .toggle-text:before {
  position: absolute;
  width: 100%;
  left: 0;
  content: "MENU";
  transition: all 500ms ease-in-out;
  visibility: visible;
  opacity: 1;
  font-size: 1rem;
}

.toggle-label .toggle-text:after {
  position: absolute;
  width: 100%;
  left: 0;
  content: "CLOSE";
  transition: all 500ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  font-size: 1rem;
}

.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: 8.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: 15%;
  max-width: 15%;
  position: fixed;
  cursor: pointer;
  right: 2%;
  top: 2vw;
  z-index: 99999999999;
  padding: 0 0 0.6rem 0;
  background-color: #0047AB;
  height: 12vw;
}

/*見出し*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
h1 {
  margin: 0;
}

h2.top_title {
  font-family: "shipporimincho_medium";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #222222;
  letter-spacing: 0.1em;
  margin: 0;
}
h2.top_title span {
  font-family: "crimsonText_regular";
  font-size: 1.2rem;
  font-weight: normal;
  color: #0047AB;
  display: block;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.01em;
}
h2.treatment_title {
  color: #ffffff;
  text-shadow: 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85;
}
h2.treatment_title span {
  color: #ffffff;
}
h2.low {
  font-family: "shipporimincho_medium";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #222222;
  letter-spacing: 0.1em;
  margin: 5rem 0 2rem 0;
  padding: 1rem 0 0 0;
  box-sizing: border-box;
  position: relative;
}
h2.low::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  content: "";
  display: block;
  width: 20%;
  border-top: #0047AB 2px solid;
}
h2.first {
  margin: 0 0 2rem 0;
}

h3.top_sub_title {
  color: #0047AB;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 140%;
}
h3.top_sub_title::after {
  content: "";
  width: 30%;
  height: 1rem;
  display: block;
  background: url(../img/h3_line.svg) no-repeat;
  background-position: center top;
  background-size: contain;
  margin: 0.8rem auto 0 auto;
}
h3.low {
  font-family: "shipporimincho_medium";
  font-size: 2rem;
  font-weight: normal;
  color: #0047AB;
  border-bottom: #0047AB 1px solid;
  padding: 0 0 0.3rem 0.5rem;
  box-sizing: border-box;
  margin: 2rem 0 1.2rem 0;
  line-height: 120%;
}
h3.first {
  margin: 0 0 1.2rem 0;
}

h4.low {
  color: #ffffff;
  background-color: #0047AB;
  font-family: "shipporimincho_medium";
  font-size: 1.9rem;
  font-weight: normal;
  border-bottom: #0047AB 1px solid;
  margin: 1.9rem 0 1.2rem 0;
  padding: 0.8rem 0 0.5rem 0.8rem;
  line-height: 120%;
}
h4.first {
  margin: 0 0 1.2rem 0;
}

h5.low {
  color: #1e1e1e;
  font-family: "shipporimincho_medium";
  font-size: 1.8rem;
  font-weight: normal;
  border-left: #0047AB 1px solid;
  margin: 1.9rem 0 1.2rem 0;
  padding: 0.4rem 0 0.5rem 0.8rem;
  line-height: 120%;
}
h5.first {
  margin: 0 0 1rem 0;
}

p {
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px), print {
  h1 {
    margin: 0;
  }
  h2.top_title {
    font-family: "shipporimincho_medium";
    font-size: 3.6rem;
    font-weight: normal;
    text-align: center;
    color: #222222;
    letter-spacing: 0.1em;
    margin: 0;
  }
  h2.top_title span {
    font-family: "crimsonText_regular";
    font-size: 2rem;
    font-weight: normal;
    color: #0047AB;
    display: block;
    margin: 0 0 8px 0;
    letter-spacing: 0.01em;
  }
  h2.treatment_title {
    color: #ffffff;
    text-shadow: 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85;
  }
  h2.treatment_title span {
    color: #ffffff;
  }
  h2.low {
    font-family: "shipporimincho_medium";
    font-size: 3.6rem;
    font-weight: normal;
    text-align: center;
    color: #222222;
    letter-spacing: 0.1em;
    margin: 100px 0 50px 0;
    padding: 26px 0 0 0;
    box-sizing: border-box;
    position: relative;
  }
  h2.low::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    content: "";
    display: block;
    width: 60px;
    border-top: #0047AB 2px solid;
  }
  h2.first {
    margin: 0 0 50px 0;
  }
  h3.top_sub_title {
    color: #0047AB;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 140%;
  }
  h3.top_sub_title::after {
    content: "";
    width: 100px;
    height: 10px;
    display: block;
    background: url(../img/h3_line.svg) no-repeat;
    background-position: center top;
    background-size: contain;
    margin: 15px auto 0 auto;
  }
  h3.low {
    font-family: "shipporimincho_medium";
    font-size: 3.2rem;
    font-weight: normal;
    color: #0047AB;
    border-bottom: #0047AB 1px solid;
    padding: 0 0 12px 15px;
    box-sizing: border-box;
    margin: 60px 0 20px 0;
    line-height: 120%;
  }
  h3.first {
    margin: 0 0 20px 0;
  }
  h4.low {
    color: #ffffff;
    background-color: #0047AB;
    font-size: 2.6rem;
    font-weight: normal;
    border-bottom: #0047AB 1px solid;
    margin: 60px 0 20px 0;
    padding: 8px 0 9px 15px;
    line-height: 120%;
  }
  h4.first {
    margin: 0 0 20px 0;
  }
  h5.low {
    color: #1e1e1e;
    font-family: "shipporimincho_medium";
    font-size: 2.4rem;
    font-weight: normal;
    border-left: #0047AB 1px solid;
    margin: 60px 0 20px 0;
    padding: 5px 0 5px 8px;
    line-height: 120%;
  }
  h5.first {
    margin: 0 0 1rem 0;
  }
  p {
    font-size: 2rem;
    margin: 0 0 30px 0;
    line-height: 160%;
    letter-spacing: 0.05em;
  }
}
/*診療時間表*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
table.timetable {
  padding: 0;
  margin: 0 auto;
  vertical-align: middle;
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  box-sizing: border-box;
  line-height: 140%;
}
table.timetable tr th {
  box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #ffffff;
  background-color: #0047AB;
  width: 10%;
}
table.timetable tr th.time {
  letter-spacing: 0.1em;
}
table.timetable tr td {
  box-sizing: border-box;
  font-weight: normal;
  font-size: 1.2rem;
  padding: 0.8rem 0;
  vertical-align: middle;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: #0047AB 1px solid;
}
table.timetable tr td i {
  font-size: 1rem;
  color: #0047AB;
}
table.timetable tr td.time {
  width: 30%;
  text-align: center;
  color: #333333;
}
table.timetable caption {
  caption-side: bottom;
  font-size: 1.2rem;
  margin: 1.2rem 0 0.5rem 0;
  width: 100%;
  color: #333333;
  box-sizing: border-box;
  text-align: left;
  font-weight: bold;
  position: relative;
  padding: 0.2rem 0 0 6.8rem;
  line-height: 120%;
}
table.timetable caption span {
  position: absolute;
  top: -0.1rem;
  left: 0;
  font-size: 1.3rem;
  color: #0047AB;
  background-color: #ffffff;
  border: #0047AB 1px solid;
  box-sizing: border-box;
  padding: 0.1em 1rem;
  margin: 0 0.5rem 0 0;
}

@media screen and (min-width: 768px), print {
  table.timetable {
    padding: 0;
    margin: 0 auto;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    box-sizing: border-box;
    line-height: 140%;
  }
  table.timetable tr th {
    box-sizing: border-box;
    font-weight: normal;
    font-size: 2rem;
    padding: 0;
    vertical-align: middle;
    color: #ffffff;
    background-color: #0047AB;
    width: 10%;
    height: 50px;
    box-sizing: border-box;
  }
  table.timetable tr th.time {
    width: 30%;
    letter-spacing: 0.1em;
  }
  table.timetable tr td {
    box-sizing: border-box;
    font-weight: normal;
    font-size: 2rem;
    padding: 0;
    vertical-align: middle;
    color: #333333;
    height: 70px;
    box-sizing: border-box;
    border-bottom: #0047AB 1px solid;
  }
  table.timetable tr td i {
    font-size: 2rem;
    color: #0047AB;
  }
  table.timetable tr td.time {
    text-align: center;
    color: #333333;
    font-size: 2rem;
  }
  table.timetable caption {
    caption-side: bottom;
    font-size: 2rem;
    font-weight: bold;
    margin: 15px 0 5px 0;
    width: 100%;
    color: #333333;
    padding: 0;
    box-sizing: border-box;
    line-height: 160%;
    text-align: left;
    position: relative;
    padding: 0 0 0 140px;
    line-height: 120%;
  }
  table.timetable caption span {
    position: absolute;
    top: -4px;
    left: 0;
    font-size: 2rem;
    color: #0047AB;
    background-color: #ffffff;
    border: #0047AB 1px solid;
    box-sizing: border-box;
    padding: 2px 30px;
    margin: 0 10px 0 0;
  }
}
/*テーブル*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用テーブル
----------------------------------------------------------- */
table.low_table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
table.low_table caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table tr th {
  width: 40%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #0047AB;
  border: #CCCCCC 1px solid;
  background-color: #EBF3FF;
}
table.low_table tr td {
  width: 60%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}

@media screen and (min-width: 768px), print {
  table.low_table {
    width: 100%;
    border-collapse: collapse;
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
  table.low_table caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table tr th {
    width: 40%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #0047AB;
    border: #CCCCCC 1px solid;
    background-color: #EBF3FF;
  }
  table.low_table tr td {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
}
/* -----------------------------------------------------------
　テーブル横スライド
----------------------------------------------------------- */
table.low_table_slide {
  width: 1000px;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
  line-height: 140%;
}
table.low_table_slide caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_slide tr th {
  width: 40%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #0047AB;
  border: #CCCCCC 1px solid;
  background-color: #EBF3FF;
}
table.low_table_slide tr td {
  width: 60%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  color: #333333;
  border: #CCCCCC 1px solid;
  background-color: #ffffff;
}

/*横スライドテーブル用*/
.js-scrollable {
  margin: 0 0 2rem 0;
}

@media screen and (min-width: 768px), print {
  table.low_table_slide {
    width: 100%;
    border-collapse: collapse;
    font-size: 2rem;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  table.low_table_slide caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_slide tr th {
    width: 40%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #0047AB;
    border: #CCCCCC 1px solid;
    background-color: #EBF3FF;
  }
  table.low_table_slide tr td {
    width: 60%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    color: #333333;
    border: #CCCCCC 1px solid;
    background-color: #ffffff;
  }
  /*横スライドテーブル用*/
  .js-scrollable {
    margin: 0 0 20px 0;
  }
}
/* -----------------------------------------------------------
　SPは縦並び、PCは横並びバージョン
----------------------------------------------------------- */
table.low_table_spblock {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
table.low_table_spblock caption {
  caption-side: bottom;
  text-align: left;
  margin: 0.5rem 0 0 0;
}
table.low_table_spblock tr th {
  width: 100%;
  padding: 1rem 0.5rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #0047AB;
  background-color: #EBF3FF;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
}
table.low_table_spblock tr td {
  width: 100%;
  padding: 1rem 0.5rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
  line-height: 140%;
  display: block;
  color: #333333;
  background-color: #ffffff;
  border-bottom: #CCCCCC 1px solid;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
}
table.low_table_spblock tr td span {
  color: #0047AB;
  font-weight: bold;
}
table.low_table_spblock tr td span a {
  color: #0047AB;
  font-weight: bold;
  text-decoration: none;
}
table.low_table_spblock tr:first-child th {
  border-top: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  table.low_table_spblock {
    width: 100%;
    border-collapse: collapse;
    font-size: 2rem;
    margin: 0 0 20px 0;
    box-sizing: border-box;
  }
  table.low_table_spblock caption {
    caption-side: bottom;
    text-align: left;
    margin: 10px 0 0 0;
  }
  table.low_table_spblock tr th {
    width: 30%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #0047AB;
    background-color: #EBF3FF;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr td {
    width: 70%;
    padding: 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    font-weight: normal;
    line-height: 140%;
    display: table-cell;
    color: #333333;
    background-color: #ffffff;
    border-bottom: #CCCCCC 1px solid;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr td span {
    color: #0047AB;
    font-weight: bold;
  }
  table.low_table_spblock tr td span a {
    color: #0047AB;
    font-weight: bold;
    text-decoration: none;
  }
  table.low_table_spblock tr:first-child th {
    border-top: #CCCCCC 1px solid;
  }
  table.low_table_spblock tr:first-child td {
    border-top: #CCCCCC 1px solid;
  }
}
/*画像*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
.img_right {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_right img {
  width: 70%;
  height: auto;
}

.img_center {
  margin: 0 0 10px 0;
  text-align: center;
}
.img_center img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px), print {
  .img_right {
    float: right;
    margin: 0 0 20px 20px;
  }
  .img_right img {
    width: 400px;
    height: auto;
  }
  .img_center {
    float: none;
    margin: 0 0 20px 0;
    text-align: center;
  }
  .img_center img {
    width: auto;
    height: auto;
  }
}
/*リスト*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　リスト
----------------------------------------------------------- */
/*標準 disc*/
ul.list_normal {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_normal li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準2列 disc*/
ul.list_normal_two {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_two li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準3列 disc*/
ul.list_normal_three {
  list-style-type: disc;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_normal_three li {
  margin: 0 0 1rem 1.8rem;
  padding: 0;
}

/*標準 maru*/
ul.list_maru {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.6rem;
  background-size: 0.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*標準2列 maru*/
ul.list_maru_two {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_two li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.6rem;
  background-size: 0.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

/*標準3列 maru*/
ul.list_maru_three {
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 0 2rem 0;
}
ul.list_maru_three li {
  background: url(../img/maru.svg) no-repeat;
  background-position: left 0.4rem top 0.6rem;
  background-size: 0.8rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}

@media screen and (min-width: 768px), print {
  ul.list_normal {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
  ul.list_normal li {
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準2列 disc*/
  ul.list_normal_two {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_normal_two li {
    width: 45%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準3列 disc*/
  ul.list_normal_three {
    list-style-type: disc;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_normal_three li {
    width: 30%;
    margin: 0 0 10px 25px;
    padding: 0;
  }
  /*標準 maru*/
  ul.list_maru {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2rem;
    margin: 0 0 20px 0;
  }
  ul.list_maru li {
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 10px;
    background-size: 8px;
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
  }
  /*標準2列 maru*/
  ul.list_maru_two {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_maru_two li {
    width: 45%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 10px;
    background-size: 8px;
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
  }
  /*標準3列 maru*/
  ul.list_maru_three {
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2rem;
    margin: 0 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ul.list_maru_three li {
    width: 30%;
    background: url(../img/maru.svg) no-repeat;
    background-position: left 4px top 10px;
    background-size: 8px;
    margin: 0 0 10px 0;
    padding: 0 0 0 20px;
  }
}
/* -----------------------------------------------------------
　定義リスト
----------------------------------------------------------- */
/*略歴*/
dl.bio_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.bio_list dt {
  width: 30%;
  margin: 0 0 1rem 0;
}
dl.bio_list dd {
  width: 70%;
  margin: 0 0 1rem 0;
}

/*数字*/
dl.num_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
  width: 100%;
}
dl.num_list dt {
  width: 10%;
  margin: 0 0 1rem 0;
}
dl.num_list dd {
  width: 90%;
  margin: 0 0 1rem 0;
}

/*タイトルボックス*/
dl.title_box {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.4rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
  line-height: 160%;
}
dl.title_box dt {
  width: 100%;
  margin: 0;
  background-color: #EBF3FF;
  color: #0047AB;
  padding: 1rem;
  box-sizing: border-box;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}
dl.title_box dt:first-child {
  border-top: #CCCCCC 1px solid;
}
dl.title_box dd {
  width: 100%;
  margin: 0;
  padding: 1rem;
  box-sizing: border-box;
  color: #333333;
  background-color: #ffffff;
  border-left: #CCCCCC 1px solid;
  border-right: #CCCCCC 1px solid;
  border-bottom: #CCCCCC 1px solid;
}

@media screen and (min-width: 768px), print {
  /*略歴*/
  dl.bio_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 2rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.bio_list dt {
    width: 100px;
    margin: 0 0 1rem 0;
  }
  dl.bio_list dd {
    width: 1100px;
    margin: 0 0 1rem 0;
  }
  /*数字*/
  dl.num_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 2rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
    width: 1200px;
  }
  dl.num_list dt {
    width: 20px;
    margin: 0 0 1rem 0;
  }
  dl.num_list dd {
    width: 1180px;
    margin: 0 0 1rem 0;
  }
  /*タイトルボックス*/
  dl.title_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 2rem;
    box-sizing: border-box;
    margin: 0 0 20px 0;
    line-height: 160%;
  }
  dl.title_box dt {
    width: 100%;
    margin: 0;
    background-color: #EBF3FF;
    color: #0047AB;
    padding: 15px;
    box-sizing: border-box;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
  dl.title_box dt:first-child {
    border-top: #CCCCCC 1px solid;
  }
  dl.title_box dd {
    width: 100%;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    color: #333333;
    background-color: #ffffff;
    border-left: #CCCCCC 1px solid;
    border-right: #CCCCCC 1px solid;
    border-bottom: #CCCCCC 1px solid;
  }
}
/*汎用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　汎用
----------------------------------------------------------- */
/*矢印*/
.arrow {
  width: 4rem;
  height: 2rem;
  margin: 2rem auto;
  background: url("../img/icon_arrow3.svg") no-repeat;
  background-size: contain;
  border: none;
}

/*強調*/
.emphasis {
  background-color: #EBF3FF;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.emphasis p.mb_none {
  margin: 0;
}

/*二列*/
/*下層電話*/
.low_tel {
  margin: 0 0 1rem 0;
  font-size: 2.4rem;
  font-weight: bold;
  color: #0047AB;
}
.low_tel span a {
  color: #0047AB;
  font-weight: bold;
  text-decoration: none;
}

@media screen and (min-width: 768px), print {
  /*矢印*/
  .arrow {
    width: 60px;
    height: 30px;
    margin: 20px auto;
    background: url("../img/icon_arrow3.svg") no-repeat;
    background-size: contain;
    border: none;
  }
  /*二列*/
  .two_box {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1200px;
  }
  .two_box section {
    width: 48%;
  }
  /*強調*/
  .emphasis {
    background-color: #EBF3FF;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 20px 0;
  }
  .emphasis p.mb_none {
    margin: 0;
  }
  /*下層電話*/
  .low_tel {
    margin: 0 0 20px 0;
    font-size: 4rem;
    font-weight: bold;
    color: #0047AB;
  }
  .low_tel span a {
    color: #0047AB;
    font-weight: bold;
    text-decoration: none;
  }
}
/* -----------------------------------------------------------
　ぱんくず
----------------------------------------------------------- */
ul.pankuzu_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  width: 96%;
  margin: 2rem auto 1rem auto;
}
ul.pankuzu_list li::after {
  content: "＞";
  font-size: 1.4rem;
  color: #333333;
  margin: 0 0.5rem;
}
ul.pankuzu_list li a {
  font-size: 1.4rem;
  color: #333333;
  text-decoration: none;
}
ul.pankuzu_list li:last-child:after {
  content: "";
  margin: 0;
}
ul.pankuzu_list li:first-child a {
  color: color1;
  text-decoration: underline;
}

@media screen and (min-width: 768px), print {
  ul.pankuzu_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
    width: 1200px;
    margin: 20px auto 0 auto;
  }
  ul.pankuzu_list li::after {
    content: "＞";
    font-size: 2rem;
    color: #333333;
    margin: 0 10px;
  }
  ul.pankuzu_list li a {
    font-size: 1.8rem;
    color: #333333;
    text-decoration: none;
  }
  ul.pankuzu_list li:last-child:after {
    content: "";
    margin: 0;
  }
  ul.pankuzu_list li:first-child a {
    color: color1;
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
　ライトボックス
----------------------------------------------------------- */
.lightbox {
  z-index: 9999999 !important;
}

.lightbox_frame {
  width: 100%;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lightbox_frame .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  box-sizing: border-box;
}
.lightbox_frame .img_box a {
  text-decoration: none;
  width: 100%;
}
.lightbox_frame .img_box a img {
  width: 100%;
}
.lightbox_frame .img_box a span {
  display: block;
  text-align: center;
  color: #333333;
  font-size: 1.4rem;
  margin: 1.5rem 0 0 0;
  font-weight: bold;
}

.lightbox_frame2 {
  width: 100%;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lightbox_frame2 .img_box {
  width: 48%;
  margin: 0 0 2rem 0;
  box-sizing: border-box;
}
.lightbox_frame2 .img_box a {
  text-decoration: none;
  width: 100%;
}
.lightbox_frame2 .img_box a img {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .lightbox {
    z-index: 9999999 !important;
  }
  .lightbox_frame {
    width: 100%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lightbox_frame .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    box-sizing: border-box;
  }
  .lightbox_frame .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame .img_box a img {
    width: 380px;
  }
  .lightbox_frame .img_box a span {
    display: block;
    text-align: center;
    color: #333333;
    font-size: 2rem;
    margin: 30px 0 0 0;
    font-weight: bold;
  }
  .lightbox_frame2 {
    width: 100%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .lightbox_frame2 .img_box {
    width: 380px;
    margin: 0 0 60px 0;
    box-sizing: border-box;
  }
  .lightbox_frame2 .img_box a {
    text-decoration: none;
    width: 380px;
  }
  .lightbox_frame2 .img_box a img {
    width: 380px;
  }
}
/* -----------------------------------------------------------
　バナー
----------------------------------------------------------- */
.banner_01 {
  width: 96%;
  margin: 0 auto 2rem auto;
  border: #0047AB 2px solid;
  border-radius: 1rem;
  box-sizing: border-box;
  display: block;
  background-color: #004D85;
  padding: 1rem;
  text-decoration: none;
  color: #333333;
}
.banner_01 img {
  width: 70%;
  display: block;
  margin: 0 auto 1rem auto;
}
.banner_01 .banner_title {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333333;
  margin: 0 0 1rem 0;
}
.banner_01 .banner_text {
  display: block;
  text-align: left;
  font-size: 1.4rem;
  font-weight: normal;
  color: #333333;
  margin: 0 0 1rem 0;
  line-height: 140%;
}
.banner_01 ul {
  color: #333333;
}

@media screen and (min-width: 768px), print {
  .banner_01 {
    width: 800px;
    height: 300px;
    margin: 0 auto 40px auto;
    border: #0047AB 2px solid;
    border-radius: 1rem;
    box-sizing: border-box;
    display: block;
    background-color: #004D85;
    padding: 20px;
    text-decoration: none;
    color: #333333;
    position: relative;
  }
  .banner_01 img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
    display: block;
    margin: 0;
  }
  .banner_01 .banner_title {
    position: absolute;
    top: 20px;
    left: 240px;
    display: block;
    text-align: left;
    font-size: 3rem;
    font-weight: bold;
    color: #333333;
    margin: 0 0 0 0;
  }
  .banner_01 .banner_text {
    position: absolute;
    top: 80px;
    left: 240px;
    display: block;
    text-align: left;
    font-size: 1.6rem;
    font-weight: normal;
    color: #333333;
    margin: 0 0 1rem 0;
    line-height: 160%;
    width: 500px;
  }
  .banner_01 ul {
    position: absolute;
    top: 80px;
    left: 240px;
  }
}
/* -----------------------------------------------------------
　リンク、ボタン
----------------------------------------------------------- */
.low_link_text {
  color: #0047AB;
}

.low_button {
  background: url("../img/icon_arrow2.svg") no-repeat;
  background-position: right 0.5rem center;
  background-size: 1.5rem;
  background-color: #0047AB;
  width: auto;
  height: auto;
  margin: 0 0 2rem 0;
  text-align: left;
  text-decoration: none;
  padding: 1rem 4rem 1rem 2.5rem;
  line-height: 120%;
  display: inline-block;
  box-sizing: border-box;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: normal;
}

@media screen and (min-width: 768px), print {
  .low_link_text {
    color: #0047AB;
    transition: 0.5s;
  }
  .low_link_text:hover {
    color: #497bc1;
    transition: 0.5s;
  }
  .low_button {
    background: url("../img/icon_arrow2.svg") no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    background-color: #0047AB;
    width: auto;
    height: auto;
    margin: 0 0 2rem 0;
    text-align: left;
    text-decoration: none;
    padding: 20px 80px 20px 80px;
    line-height: 120%;
    display: inline-block;
    box-sizing: border-box;
    color: #ffffff;
    font-size: 2rem;
    font-weight: normal;
    transition: 0.5s;
  }
  .low_button:hover {
    background-color: #497bc1;
    transition: 0.5s;
  }
}
/*下層*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　院長紹介
----------------------------------------------------------- */
.img_doctor {
  margin: 0 0 1rem 0;
  text-align: center;
}
.img_doctor img {
  width: 70%;
  height: auto;
}

.doctor_name {
  text-align: right;
}

@media screen and (min-width: 768px), print {
  .img_doctor {
    float: right;
    margin: 0 0 20px 20px;
    text-align: right;
  }
  .img_doctor img {
    width: 400px;
    height: auto;
  }
  .doctor_name {
    text-align: right;
  }
}
/* -----------------------------------------------------------
　医院紹介
----------------------------------------------------------- */
.machine_box {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box figure {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box figure figcaption {
  text-align: center;
  font-weight: normal;
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
}
.machine_box figure img {
  width: 100%;
  margin: 0 0 1rem 0;
}

.machine_box2 {
  width: 96%;
  margin: 4rem auto 0 auto;
}
.machine_box2 section {
  width: 100%;
  margin: 0 0 4rem 0;
}
.machine_box2 section h3 {
  margin: 0 0 1rem 0;
}
.machine_box2 section img {
  width: 100%;
  margin: 0 0 1rem 0;
}

/*スライダー*/
.slider-pro {
  margin: 0 auto 2rem auto !important;
}
.slider-pro p.sp-layer {
  font-size: 2.4rem !important;
}

@media screen and (min-width: 768px), print {
  .machine_box {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .machine_box figure {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box figure figcaption {
    text-align: center;
    font-weight: normal;
    margin: 0 0 10px 0;
    font-size: 2.2rem;
  }
  .machine_box figure img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .machine_box2 {
    width: 100%;
    margin: 80px 0 20px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .machine_box2 section {
    width: 48%;
    margin: 0 0 40px 0;
  }
  .machine_box2 section h3 {
    margin: 0 0 20px 0;
  }
  .machine_box2 section img {
    width: 100%;
    margin: 0 0 20px 0;
  }
  /*スライダー*/
  .slider-pro {
    margin: 0 auto 30px auto !important;
  }
  .slider-pro p.sp-layer {
    font-size: 2rem !important;
  }
}
/* -----------------------------------------------------------
　初めての方へ
----------------------------------------------------------- */
.flow_box {
  background-color: #ffffff;
  padding: 1rem;
  box-sizing: border-box;
  margin: 0 0 2rem 0;
}
.flow_box h3 {
  margin: 0 0 1rem 0;
}
.flow_box p.mb_none {
  margin: 0;
}
.flow_box p .low_button {
  margin: 0;
}

@media screen and (min-width: 768px), print {
  .flow_box {
    background-color: #ffffff;
    padding: 32px;
    box-sizing: border-box;
    margin: 0 0 0 0;
  }
  .flow_box h3 {
    margin: 0 0 20px 0;
  }
  .flow_box p.mb_none {
    margin: 0;
  }
  .flow_box p .low_button {
    margin: 0;
  }
}
/* -----------------------------------------------------------
　アクセス・診療時間
----------------------------------------------------------- */
iframe.accessmap {
  width: 96%;
  height: 110vw;
  display: block;
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  iframe.accessmap {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0;
  }
}
/* -----------------------------------------------------------
　ブログ
----------------------------------------------------------- */
.oshirase_ttl {
  color: #54c2f0;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto;
  padding: 0.5rem 0 0.75rem;
  text-align: center;
}

.oshirase p {
  font-size: 1.3rem;
  line-height: 1.7em;
}
@media screen and (min-width: 768px), print {
  .oshirase p {
    font-size: 1.8rem;
  }
}

dl.diary {
  width: 95%;
  margin: 0 auto;
}
dl.diary dt {
  background: #0047AB;
  border-radius: 4px;
  position: relative;
  margin: 0 auto 1.5rem;
  color: #fff;
  cursor: pointer;
}
dl.diary dt span {
  padding: 12px 20px;
  padding-right: 10px;
  margin-left: 20px;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.6;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px), print {
  dl.diary dt span {
    width: 80%;
    font-size: 2rem;
  }
}
dl.diary dt::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/icon_arrow_w.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 10px;
  top: 14px;
}
@media screen and (min-width: 768px), print {
  dl.diary dt::before {
    top: 18px;
  }
}
dl.diary dt.selected::before {
  transform: rotateX(180deg);
}
dl.diary span.new {
  background: #e60033;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.4em 0.7em;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  margin-left: 0.4rem;
}
@media screen and (min-width: 768px), print {
  dl.diary span.new {
    width: 2.9rem;
    font-size: 1.2rem;
    margin-left: 1rem;
  }
}

/*メールフォームプロ用*/
/* Scss Document */
/* =======================================================================

 共通項目

======================================================================= */
/*関数*/
/*関数*/
/* -----------------------------------------------------------
　お問い合わせ・メールフォーム
----------------------------------------------------------- */
#mailformpro table {
  font-size: 1.4rem;
  line-height: 140%;
  width: 100%;
}
#mailformpro table tr th {
  display: block;
  text-align: left;
  font-weight: normal;
  background-color: #1e1e1e;
  padding: 1rem 1rem 1rem 1rem;
  box-sizing: border-box;
  color: #333333;
  border-top: #0047AB 1px solid;
  border-left: #0047AB 1px solid;
  border-right: #0047AB 1px solid;
}
#mailformpro table tr th span {
  color: #ff0000;
  display: inline-block;
  padding: 0 0.2rem;
  box-sizing: border-box;
  margin: 0 0 0 0.6rem;
}
#mailformpro table tr td {
  display: block;
  text-align: left;
  border-top: #0047AB 1px solid;
  border-left: #0047AB 1px solid;
  border-right: #0047AB 1px solid;
  padding: 1rem;
  box-sizing: border-box;
}
#mailformpro table tr td ol {
  list-style-type: none;
}
#mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
  font-size: 1.2rem;
  width: 90%;
  margin: 0 0 0.6rem 0;
}
#mailformpro table tr td select {
  font-size: 1.2rem;
  width: 90%;
}
#mailformpro table tr td select.time {
  width: 12%;
}
#mailformpro table tr td textarea {
  font-size: 1.2rem;
  width: 90%;
  min-height: 40vw;
}
#mailformpro table tr:last-child td {
  border-bottom: #0047AB 1px solid;
}

@media screen and (min-width: 768px), print {
  #mailformpro table {
    font-size: 2rem;
    line-height: 140%;
    width: 1200px;
  }
  #mailformpro table tr th {
    width: 400px;
    display: table-cell;
    text-align: left;
    font-weight: normal;
    background-color: #1e1e1e;
    padding: 1.5rem 1rem 1.5rem 1rem;
    box-sizing: border-box;
    border-top: #0047AB 1px solid;
    border-left: #0047AB 1px solid;
    border-right: #0047AB 1px solid;
    vertical-align: middle;
  }
  #mailformpro table tr th span {
    color: #ff0000;
    display: inline-block;
    padding: 0 0.2rem;
    box-sizing: border-box;
    margin: 0 0 0 1rem;
  }
  #mailformpro table tr td {
    width: 800px;
    display: table-cell;
    text-align: left;
    border-top: #0047AB 1px solid;
    border-left: #0047AB 1px solid;
    border-right: #0047AB 1px solid;
    padding: 1.5rem 3rem 1.5rem 3rem;
    box-sizing: border-box;
    vertical-align: middle;
    line-height: 140%;
  }
  #mailformpro table tr td ol {
    list-style-type: none;
  }
  #mailformpro table tr td ol li {
    margin: 0 0 5px 0;
  }
  #mailformpro table tr td input[type=text], #mailformpro table tr td input[type=tel], #mailformpro table tr td input[type=email] {
    font-size: 1.6rem;
    width: 300px;
    margin: 0 1rem 0 0;
  }
  #mailformpro table tr td select {
    font-size: 1.6rem;
    width: 300px;
  }
  #mailformpro table tr td select.time {
    width: 60px;
  }
  #mailformpro table tr td textarea {
    font-size: 1.6rem;
    width: 600px;
    min-height: 300px;
  }
}
/* -----------------------------------------------------------
 フォントサイズ基本
----------------------------------------------------------- */
html {
  font-size: 3.125vw;
  overflow-y: auto;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  color: #333333;
  background: url("../img/index_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 0 0 13vw 0;
  /*ページ内リンク用*/
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px), print {
  html {
    font-size: 62.5%;
    overflow-y: scroll;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    color: #333333;
    background: url("../img/index_bg.jpg") no-repeat;
    background-size: 100%;
    background-position: center top;
    padding: 0;
    /*ページ内リンク用*/
    scroll-behavior: smooth;
    /*スクロール後の余白設定*/
    scroll-padding-top: 60px;
  }
}
/* -----------------------------------------------------------
 構成
----------------------------------------------------------- */
body {
  position: relative;
  width: 100%;
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

section {
  height: auto;
  overflow: hidden;
  margin: 0;
}

.sentence {
  height: auto;
  overflow: hidden;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.pc_none_span {
  display: inline;
}

.sp_none_span {
  display: none;
}

@media screen and (min-width: 768px), print {
  body {
    position: relative;
    z-index: 0;
    overflow: hidden;
    min-width: 1280px;
    -webkit-text-size-adjust: 100%;
  }
  section {
    height: auto;
    overflow: hidden;
    margin: 0;
  }
  .pc_none {
    display: none;
  }
  .sp_none {
    display: block;
  }
  .pc_none_span {
    display: none;
  }
  .sp_none_span {
    display: inline;
  }
}
/* -----------------------------------------------------------
　枠
----------------------------------------------------------- */
.wrapper {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
}

.wrapper_low {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
}

.main {
  height: auto;
  width: 100%;
  margin: 0 auto 0 auto;
  padding: 0;
}

.main_low {
  height: auto;
  width: 96%;
  margin: 2rem auto 4rem auto;
  padding: 0;
}

@media screen and (min-width: 768px), print {
  .wrapper {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .wrapper_low {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .main {
    height: auto;
    width: 100%;
    margin: 0 0 100px 0;
    padding: 0;
  }
  .main_low {
    height: auto;
    width: 1200px;
    margin: 50px auto 100px auto;
    padding: 0;
  }
}
/* -----------------------------------------------------------
　ヘッダー
----------------------------------------------------------- */
header.header {
  padding: 2vw 0 1rem 0;
  box-sizing: border-box;
  position: relative;
  z-index: 9999;
}
header.header .header_box {
  /*ロゴとハンバーガー*/
}
header.header .header_box .header_top {
  width: 100%;
  height: 14vw;
  margin: 0;
  position: relative;
  z-index: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /*ハンバーガー*/
}
header.header .header_box .header_top .container {
  width: 15%;
}
header.header .header_box .header_top {
  /*ロゴ*/
}
header.header .header_box .header_top .head_logo {
  width: 80%;
  margin: 0 0 0 2%;
}
header.header .header_box .header_top .head_logo a {
  display: block;
  width: 100%;
  text-decoration: none;
}
header.header .header_box .header_top .head_logo a img {
  width: 95%;
}

@media screen and (min-width: 768px), print {
  header.header {
    padding: 0;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    width: 100%;
    height: 120px;
  }
  header.header .header_box {
    width: 1200px;
    height: 120px;
    margin: 0 auto;
    position: relative;
    /*ロゴとハンバーガー*/
  }
  header.header .header_box .header_top {
    width: 368px;
    height: 80px;
    margin: 0 auto;
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    z-index: 0;
    display: block;
    /*ハンバーガー*/
  }
  header.header .header_box .header_top .container {
    display: none;
  }
  header.header .header_box .header_top {
    /*ロゴ*/
  }
  header.header .header_box .header_top .head_logo {
    width: 368px;
    margin: 0;
  }
  header.header .header_box .header_top .head_logo a {
    display: block;
    width: 368px;
    text-decoration: none;
  }
  header.header .header_box .header_top .head_logo a img {
    width: 368px;
  }
}
/* -----------------------------------------------------------
　グローバルナビ
----------------------------------------------------------- */
nav.main_nav_pc {
  display: none;
}

@media screen and (min-width: 768px), print {
  nav.main_nav_pc {
    display: block;
    width: 100%;
    height: 80px;
    margin: 0;
  }
  nav.main_nav_pc > ul {
    width: 1200px;
    height: 80px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
  }
  nav.main_nav_pc > ul li {
    display: block;
    width: auto;
    height: 80px;
    margin: 0;
    padding: 0;
    position: relative;
  }
  nav.main_nav_pc > ul li.treatment:hover {
    cursor: pointer;
    cursor: hand;
  }
  nav.main_nav_pc > ul li a, nav.main_nav_pc > ul li button {
    width: 100%;
    height: 80px;
    text-decoration: none;
    text-align: center;
    color: #0047AB;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
    font-family: "shipporimincho_bold";
    font-size: 2rem;
    font-weight: bold;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
  }
  nav.main_nav_pc > ul li a::before, nav.main_nav_pc > ul li button::before {
    position: absolute;
    content: "";
    transition: 0.3s;
    opacity: 0;
    top: 0;
    bottom: 30px;
    left: 0;
    right: 0;
    border-bottom: #0047AB 1px solid;
  }
  nav.main_nav_pc > ul li a:hover::before, nav.main_nav_pc > ul li button:hover::before {
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: 20px;
  }
  nav.main_nav_pc > ul li button {
    background: none;
    border: none;
    cursor: pointer;
  }
  nav.main_nav_pc > ul li button span {
    position: relative;
    padding-right: 2rem;
  }
  nav.main_nav_pc > ul li button span::before {
    display: block;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/icon_arrow.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    right: 0;
    top: 0.85rem;
    transform: rotateX(180deg);
  }
  nav.main_nav_pc > ul li button.close span::before {
    transform: rotateX(0deg);
  }
  nav.main_nav_pc > ul li .subnav {
    position: absolute;
    z-index: 999;
    background: #0047AB;
    left: 50%;
    transform: translateX(-50%);
  }
  nav.main_nav_pc > ul li .subnav li {
    height: auto;
    border-bottom: 1px solid #fff;
  }
  nav.main_nav_pc > ul li .subnav li a {
    height: auto;
    color: #fff;
    white-space: nowrap;
    padding: 1.2em 1.5em;
  }
  nav.main_nav_pc > ul .nav_new {
    position: absolute;
    top: 6px;
    left: 0;
    transform: none;
    background: #e60033;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0.2em 0.6em;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
  }
  nav.main_nav_pc > ul .nav_new::before {
    display: none;
  }
  .nav_add {
    position: fixed;
    top: 0;
    z-index: 9999999999;
    background-color: #ffffff;
  }
}
/* -----------------------------------------------------------
　キービジュアル
----------------------------------------------------------- */
/*トップキービジュアル*/
.key_visual {
  position: relative;
  width: 100%;
  height: 130vw;
}
.key_visual .key {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  /*大枠*/
}
.key_visual .key .key_bg {
  width: 100%;
  height: 70vw;
}
.key_visual .key .key_01 {
  background: url("../img/key_visual_01.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_02 {
  background: url("../img/key_visual_02.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_03 {
  background: url("../img/key_visual_03.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_04 {
  background: url("../img/key_visual_04.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key .key_05 {
  background: url("../img/key_visual_05.png") no-repeat;
  background-size: cover;
  background-position: center top;
}
.key_visual .key_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 140vw;
  box-sizing: border-box;
}
.key_visual .key_contents .key_text {
  font-family: "shipporimincho_medium";
  font-weight: normal;
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 0 0 0.5rem #004D85, 0 0 0.5rem #004D85, 0 0 0.5rem #004D85, 0 0 0.5rem #004D85;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 12vw auto 0 auto;
  line-height: 120%;
  padding: 0 4vw 0 0;
}
.key_visual .key_contents .key_open {
  position: absolute;
  bottom: 27vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.key_visual .key_contents .key_open p {
  width: auto;
  margin: 0;
  padding: 0.4rem;
  box-sizing: border-box;
  text-align: center;
  font-family: "shipporimincho_medium";
  font-weight: normal;
  font-size: 1.4rem;
}
.key_visual .key_contents .key_open p.key_open_ym {
  width: 60%;
  background-color: #0047AB;
  color: #ffffff;
}
.key_visual .key_contents .key_open p.key_open_ym span {
  font-size: 1.8rem;
}
.key_visual .key_contents .key_open p.key_open_text {
  width: 40%;
  background-color: #ffffff;
  color: #0047AB;
  border: #0047AB 1px solid;
  box-sizing: border-box;
  font-size: 1.6rem;
}
.key_visual .key_contents .key_copy {
  position: absolute;
  bottom: 27vw;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 80%;
  display: block;
}
.key_visual .key_contents .key_copy p {
  width: auto;
  margin: 0;
  padding: 0.4rem;
  box-sizing: border-box;
  text-align: center;
  font-family: "shipporimincho_medium";
  font-weight: normal;
  font-size: 1.4rem;
}
.key_visual .key_contents .key_copy p.key_copy_ym {
  width: 96%;
  background-color: #0047AB;
  color: #ffffff;
}
.key_visual .key_contents .key_copy p.key_copy_text {
  width: 96%;
  background-color: #ffffff;
  color: #0047AB;
  border: #0047AB 1px solid;
  box-sizing: border-box;
  text-align: left;
  font-size: 1.6rem;
}
.key_visual .key_contents .key_copy p.key_copy_text span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #f0a719;
}
.key_visual .key_contents .key_access {
  position: absolute;
  bottom: 13vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: "shipporimincho_medium";
  font-weight: bold;
  font-size: 1.4rem;
  color: #0047AB;
  margin: 0;
  text-align: center;
}
.key_visual .key_contents .key_access span {
  font-size: 1.2rem;
}
.key_visual .key_contents .key_tel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 60%;
  height: 10vw;
  background: linear-gradient(180deg, #d68f10 0%, #b8780c 50%, #9c6408 100%);
  font-family: "crimsonText_regular";
  font-weight: normal;
  font-size: 1.4rem;
  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;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.key_visual .key_contents .key_tel i {
  color: #ffffff;
  margin: 0 0.5rem 0 0;
}
.key_visual .key_contents .key_tel span {
  font-size: 2rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.key_visual .key_contents .key_tel span a {
  color: #ffffff;
  text-decoration: none;
}

/*下層キービジュアル*/
.key_visual_low {
  width: 100%;
  height: 30vw;
  background: url("../img/key_visual_low.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  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;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.key_visual_low h1 {
  font-family: "shipporimincho_medium";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #ffffff;
  line-height: 160%;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85;
}

@media screen and (min-width: 768px), print {
  /*トップキービジュアル*/
  .key_visual {
    position: relative;
    width: 100%;
    height: 840px;
  }
  .key_visual .key {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 840px;
    margin: 0 auto;
    overflow: hidden;
    /*大枠*/
  }
  .key_visual .key .key_bg {
    width: 100%;
    height: 840px;
  }
  .key_visual .key .key_01 {
    background: url("../img/key_visual_01.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_02 {
    background: url("../img/key_visual_02.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_03 {
    background: url("../img/key_visual_03.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_04 {
    background: url("../img/key_visual_04.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key .key_05 {
    background: url("../img/key_visual_05.png") no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .key_visual .key_contents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    width: 1200px;
    height: 840px;
    padding: 0;
    box-sizing: border-box;
  }
  .key_visual .key_contents .key_text {
    font-family: "shipporimincho_medium";
    font-weight: normal;
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 192px auto 0 auto;
    line-height: 170%;
    letter-spacing: 0.2em;
    padding: 0 70px 0 0;
  }
  .key_visual .key_contents .key_open {
    position: absolute;
    bottom: 195px;
    left: 0;
    right: 0;
    margin: 0;
    width: 360px;
    height: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .key_visual .key_contents .key_open p {
    width: auto;
    height: 50px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: "shipporimincho_medium";
    font-weight: normal;
    font-size: 2rem;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .key_visual .key_contents .key_open p.key_open_ym {
    width: 220px;
    background-color: #0047AB;
    color: #ffffff;
  }
  .key_visual .key_contents .key_open p.key_open_ym span {
    font-size: 2.4rem;
  }
  .key_visual .key_contents .key_open p.key_open_text {
    width: 140px;
    background-color: #ffffff;
    color: #0047AB;
    border: #0047AB 1px solid;
    box-sizing: border-box;
    font-size: 2.4rem;
  }
  .key_visual .key_contents .key_copy {
    position: absolute;
    bottom: 85px;
    left: auto;
    right: 0;
    margin: 0;
    width: 360px;
    height: auto;
    display: block;
  }
  .key_visual .key_contents .key_copy p {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: "shipporimincho_medium";
    font-weight: normal;
    font-size: 2rem;
    display: inline-block;
  }
  .key_visual .key_contents .key_copy p.key_copy_ym {
    width: 300px;
    background-color: #0047AB;
    color: #ffffff;
  }
  .key_visual .key_contents .key_copy p.key_copy_ym span {
    font-size: 2.4rem;
  }
  .key_visual .key_contents .key_copy p.key_copy_text {
    width: 300px;
    background-color: #ffffff;
    color: #0047AB;
    border: #0047AB 1px solid;
    box-sizing: border-box;
    font-size: 2.2rem;
    text-align: left;
    padding: 0.5rem 0 0.5rem 1rem;
  }
  .key_visual .key_contents .key_copy p.key_copy_text span {
    font-size: 2.2rem;
  }
  .key_visual .key_contents .key_access {
    position: absolute;
    bottom: 136px;
    left: 0;
    right: auto;
    margin: 0;
    font-family: "shipporimincho_medium";
    font-weight: bold;
    font-size: 2.4rem;
    color: #0047AB;
    margin: 0;
    text-align: left;
    text-shadow: 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff, 0 0 10px #ffffff;
  }
  .key_visual .key_contents .key_access span {
    font-size: 2rem;
  }
  .key_visual .key_contents .key_tel {
    position: absolute;
    bottom: 59px;
    left: 0;
    right: auto;
    margin: 0;
    width: 280px;
    height: 50px;
    background: linear-gradient(180deg, #d68f10 0%, #b8780c 50%, #9c6408 100%);
    font-family: "crimsonText_regular";
    font-weight: bold;
    font-size: 2.8rem;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .key_visual .key_contents .key_tel i {
    color: #ffffff;
    margin: 0 8px 0 0;
    font-size: 3rem;
  }
  .key_visual .key_contents .key_tel span {
    font-size: 2.8rem;
    color: #ffffff;
    letter-spacing: 0.1em;
  }
  .key_visual .key_contents .key_tel span a {
    color: #ffffff;
    text-decoration: none;
  }
  /*下層キービジュアル*/
  .key_visual_low {
    width: 100%;
    height: 300px;
    background: url("../img/key_visual_low.jpg") no-repeat;
    background-position: center top;
    background-size: cover;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .key_visual_low h1 {
    font-family: "shipporimincho_medium";
    font-size: 4.8rem;
    font-weight: normal;
    text-align: center;
    color: #ffffff;
    line-height: 160%;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px #004D85, 0 0 10px #004D85, 0 0 10px #004D85;
  }
}
/* -----------------------------------------------------------
　お知らせ
----------------------------------------------------------- */
.notice_frame {
  width: 100%;
  margin: 5.5rem 0 2.7rem 0;
  padding: 0 0 4rem 0;
  background: url("../img/index_news_bg.png") no-repeat;
  background-size: 80%;
  background-position: right 2% top 40vw;
}
.notice_frame h2.notice_title {
  font-family: "shipporimincho_medium";
  font-size: 2.2rem;
  font-weight: normal;
  text-align: center;
  color: #222222;
  letter-spacing: 0.1em;
}
.notice_frame h2.notice_title span {
  font-family: "crimsonText_regular";
  font-size: 1.2rem;
  font-weight: normal;
  color: #0047AB;
  display: block;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.01em;
}
.notice_frame .notice_box {
  width: 98%;
  height: auto;
  margin: 0 auto 0 auto;
  padding: 0 0 2rem 0;
  box-sizing: border-box;
}
.notice_frame .notice_box dl {
  height: auto;
  margin: 0 auto 0 auto;
  width: 96%;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding: 0 0 1.5rem 0;
  box-sizing: border-box;
  border-bottom: #CCCCCC 1px solid;
}
.notice_frame .notice_box dl dt {
  color: #0047AB;
  margin: 1rem 0 0 0;
  padding: 2rem 0 1rem 2rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.5rem;
  box-sizing: border-box;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 120%;
  position: relative;
  border-top: #CCCCCC 1px solid;
}
.notice_frame .notice_box dl dt::before {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url("../img/icon_arrow.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 2.2rem;
}
.notice_frame .notice_box dl dt.open::before {
  content: "";
}
.notice_frame .notice_box dl dt.close::before {
  content: "";
  transform: rotateX(180deg);
}
.notice_frame .notice_box dl dt:first-child {
  border-top: none;
}
.notice_frame .notice_box dl dd {
  margin: 0 0 1rem 0;
  padding: 0 0 0 2rem;
  color: #333333;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 120%;
  display: none;
}
.notice_frame .notice_box dl dd.open {
  display: block;
}
.notice_frame .notice_box dl dd p a {
  color: #333333;
}

@media screen and (min-width: 768px), print {
  .notice_frame {
    width: 1200px;
    margin: 0 auto 0 auto;
    padding: 86px 0 170px 0;
    background: url("../img/index_news_bg.png") no-repeat;
    background-size: 300px;
    background-position: right top;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .notice_frame h2.notice_title {
    width: 300px;
    font-family: "shipporimincho_medium";
    font-size: 3.6rem;
    font-weight: normal;
    text-align: center;
    color: #222222;
    letter-spacing: 0.1em;
    line-height: 100%;
  }
  .notice_frame h2.notice_title span {
    font-family: "crimsonText_regular";
    font-size: 2rem;
    font-weight: normal;
    color: #0047AB;
    display: block;
    margin: 9px 0 0 0;
    line-height: 180%;
  }
  .notice_frame .notice_box {
    width: 900px;
    height: auto;
    margin: 14px 0 0 0;
    padding: 0;
    box-sizing: border-box;
  }
  .notice_frame .notice_box dl {
    height: auto;
    margin: 0;
    width: 900px;
    overflow-x: hidden;
    overflow-wrap: break-word;
    padding: 0 0 20px 0;
    box-sizing: border-box;
    border-bottom: #CCCCCC 1px solid;
  }
  .notice_frame .notice_box dl dt {
    color: #0047AB;
    margin: 0 0 10px 0;
    padding: 22px 0 0 30px;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 2.2rem;
    box-sizing: border-box;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 130%;
    position: relative;
    border-top: #CCCCCC 1px solid;
    transition: 0.5s;
  }
  .notice_frame .notice_box dl dt::before {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url("../img/icon_arrow.svg") no-repeat;
    background-size: contain;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 26px;
  }
  .notice_frame .notice_box dl dt.open::before {
    content: "";
  }
  .notice_frame .notice_box dl dt.close::before {
    content: "";
    transform: rotateX(180deg);
  }
  .notice_frame .notice_box dl dt:first-child {
    border-top: none;
    padding: 0 0 0 30px;
  }
  .notice_frame .notice_box dl dt:first-child::before {
    top: 5px;
  }
  .notice_frame .notice_box dl dt:hover {
    cursor: pointer;
    cursor: hand;
    color: #1e1e1e;
    transition: 0.5s;
  }
  .notice_frame .notice_box dl dd {
    margin: 0 0 16px 0;
    padding: 0 0 0 30px;
    color: #333333;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Arial, sans-serif;
    font-size: 2rem;
    line-height: 180%;
    display: none;
  }
  .notice_frame .notice_box dl dd.open {
    display: block;
  }
  .notice_frame .notice_box dl dd p {
    font-size: 1.8rem;
    margin: 0 0 10px 0;
  }
  .notice_frame .notice_box dl dd p a {
    color: #0047AB;
  }
  .notice_frame .notice_box dl dd p a:hover {
    color: #1e1e1e;
  }
}
/* -----------------------------------------------------------
当院の診療方針
----------------------------------------------------------- */
.pclicy_frame {
  background-color: #ffffff;
  overflow: visible;
  position: relative;
  padding: 10vw 0 3rem 0;
  box-sizing: border-box;
}
.pclicy_frame h2.top_title {
  position: absolute;
  top: -10vw;
  left: 0;
  right: 0;
}
.pclicy_frame .pclicy_text {
  width: 94%;
  margin: 2rem auto 0 auto;
  line-height: 180%;
  font-size: 1.6rem;
  text-align: justify;
}
.pclicy_frame .top_btn {
  width: 70%;
  height: 13vw;
  margin: 2rem auto 0 auto;
  background-color: #0047AB;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 1.4rem;
  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;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.pclicy_frame .top_btn::after {
  font-family: "fontello";
  content: "\eb66";
  font-size: 1.2rem;
  position: absolute;
  right: 4%;
}

@media screen and (min-width: 768px), print {
  .pclicy_frame {
    background-color: #ffffff;
    overflow: visible;
    position: relative;
    padding: 80px 0 84px 0;
    box-sizing: border-box;
  }
  .pclicy_frame h2.top_title {
    position: absolute;
    top: -52px;
    left: 0;
    right: 0;
  }
  .pclicy_frame .pclicy_text {
    width: 1000px;
    margin: 19px auto 0 auto;
    line-height: 202%;
    font-size: 2.2rem;
    text-align: justify;
  }
  .pclicy_frame .top_btn_wrap {
    display: flex;
    gap: 0 44px;
    justify-content: center;
  }
  .pclicy_frame .top_btn {
    width: 320px;
    height: 60px;
    margin: 44px 0 0;
    background-color: #0047AB;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    transition: 0.5s;
  }
  .pclicy_frame .top_btn::after {
    font-family: "fontello";
    content: "\eb66";
    font-size: 1.6rem;
    position: absolute;
    right: 12px;
  }
  .pclicy_frame .top_btn:hover {
    background-color: #1e1e1e;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
このような症状でお悩みの方はご相談ください
----------------------------------------------------------- */
.symptom_frame {
  width: 96%;
  padding: 3rem 0 2rem 0;
  box-sizing: border-box;
  margin: 0 auto;
}
.symptom_frame h2.top_title {
  line-height: 120%;
}
.symptom_frame {
  /*旧*/
  /*
  .symptom_box{
    margin: 3rem 0 0 0;
    section{
      display: -webkit-flex;
      display: flex;
      -webkit-flex-direction:column;
      flex-direction:column;
      background-color: $color_white;
      width: 90%;
      margin: 40vw auto 0 auto;
      overflow: visible;
      padding: 1rem 0 2rem 0;
      box-sizing: border-box;
      h3.top_sub_title{
        order: 2;
      }
      img{
        order: 1;
        width: 50%;
        display: block;
        margin: -30vw auto 2rem auto;
      }
      ul.symptom_list{
        width: 94%;
        order: 3;
        list-style-type:none;    
        line-height:140%;
        letter-spacing: 0.05em;
        font-size:1.6rem;
        margin:2rem auto 0 auto;
        li{
          background:url(../img/maru2.svg) no-repeat;
          background-position:left 0.4rem top 0.65rem;
          background-size: 0.7rem;    
          margin:0 0 1rem 0;
          padding:0 0 0 1.8rem;
        }
      }
    }
  }
  */
}
.symptom_frame .symptom_box2 {
  background-color: #ffffff;
  width: 96%;
  margin: 3rem auto 0 auto;
  padding: 1rem 0 2rem 0;
  box-sizing: border-box;
  position: relative;
  border-radius: 1rem;
}
.symptom_frame .symptom_box2::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/index_symptom_01.svg"), url("../img/index_symptom_02.svg"), url("../img/index_symptom_03.svg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 40%, 40%, 40%;
  background-position: right 5vw top 10vw, right 5vw center, right 5vw bottom 40vw;
  opacity: 0.4;
}
.symptom_frame .symptom_box2 ul.symptom_list {
  position: relative;
  z-index: 2;
  width: 94%;
  order: 3;
  list-style-type: none;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 2rem auto 2rem auto;
}
.symptom_frame .symptom_box2 ul.symptom_list li {
  background: url(../img/maru2.svg) no-repeat;
  background-position: left 0.4rem top 0.65rem;
  background-size: 0.7rem;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.8rem;
}
.symptom_frame .symptom_box2 .symptom_notice {
  font-size: 1.6rem;
  width: 94%;
  margin: 0 auto 0 auto;
}

@media screen and (min-width: 768px), print {
  .symptom_frame {
    width: 100%;
    padding: 97px 0 100px 0;
    box-sizing: border-box;
    margin: 0;
  }
  .symptom_frame h2.top_title {
    line-height: 90%;
  }
  .symptom_frame {
    /*旧*/
    /*
        .symptom_box{
          width: $hp_width;
          margin: 66px auto 0 auto;
          display: -webkit-flex;
          display: flex;
          -webkit-justify-content: space-between;
          justify-content: space-between;
          -webkit-flex-direction:row;
          flex-direction:row;
          -webkit-flex-wrap: wrap;
          flex-wrap: wrap;

          section{
            display: -webkit-flex;
            display: flex;
            -webkit-flex-direction:column;
            flex-direction:column;
            background-color: $color_white;
            width: 370px;
            height: 400px;
            margin: 140px 0 0 0;
            overflow: visible;
            padding: 0 0 0 0;
            box-sizing: border-box;
            h3.top_sub_title{
              order: 2;
            }
            img{
              order: 1;
              width: 200px;
              display: block;
              margin: -140px auto 29px auto;
            }
            ul.symptom_list{
              width: 330px;
              order: 3;
              list-style-type:none;    
              line-height:140%;
              letter-spacing: 0.05em;
              font-size:2.2rem;
              margin:26px auto 0 auto;
              li{
                background:url(../img/maru2.svg) no-repeat;
                background-position:left 4px top 8px;
                background-size: 10px;    
                margin:0 0 14px 0;
                padding:0 0 0 20px;
              }
            }
          }
        }
        */
  }
  .symptom_frame .symptom_box2 {
    background-color: #ffffff;
    width: 1200px;
    margin: 66px auto 0 auto;
    padding: 70px 0 56px 100px;
    box-sizing: border-box;
    position: relative;
    border-radius: 20px;
  }
  .symptom_frame .symptom_box2::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url("../img/index_symptom_01.svg"), url("../img/index_symptom_02.svg"), url("../img/index_symptom_03.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 233px, 233px, 233px;
    background-position: right 90px top 70px, right 90px center, right 90px bottom 154px;
    opacity: 1;
  }
  .symptom_frame .symptom_box2 ul.symptom_list {
    position: relative;
    z-index: 2;
    width: 100%;
    list-style-type: none;
    line-height: 140%;
    letter-spacing: 0.05em;
    font-size: 2.2rem;
    margin: 0 0 54px 0;
  }
  .symptom_frame .symptom_box2 ul.symptom_list li {
    background: url(../img/maru2.svg) no-repeat;
    background-position: left top 8px;
    background-size: 10px;
    margin: 0 0 14px 0;
    padding: 0 0 0 20px;
  }
  .symptom_frame .symptom_box2 .symptom_notice {
    font-size: 2.6rem;
    width: auto;
    margin: 0 0 0 0;
  }
}
/* -----------------------------------------------------------
　診療内容
----------------------------------------------------------- */
.treatment_frame {
  width: 100%;
  padding: 8rem 0 6rem 0;
  box-sizing: border-box;
  background: url("../img/index_treatment_bg.png") no-repeat;
  background-position: center top;
  background-size: cover;
}
.treatment_frame ul.treatment_list {
  width: 96%;
  margin: 4rem auto 0 auto;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
}
.treatment_frame ul.treatment_list li {
  width: 48%;
  margin: 0 0 2rem 0;
}
.treatment_frame ul.treatment_list li a {
  width: 13rem;
  height: 13rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0047AB;
  text-decoration: none;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 50%;
  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;
}
.treatment_frame ul.treatment_list li a::before {
  content: "";
  width: 5rem;
  height: 5rem;
  display: block;
  margin: -0.8rem 0 1.8rem 0;
}
.treatment_frame ul.treatment_list li a {
  pointer-events: none;
}
.treatment_frame ul.treatment_list li.depression a::before {
  background: url("../img/index_treatment_01.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.bipolar a::before {
  background: url("../img/index_treatment_02.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.schizophrenia a::before {
  background: url("../img/index_treatment_03.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.panic a::before {
  background: url("../img/index_treatment_04.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.ocd a::before {
  background: url("../img/index_treatment_05.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.social_anxiety a::before {
  background: url("../img/index_treatment_06.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.adjustment a::before {
  background: url("../img/index_treatment_07.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.sleeping a::before {
  background: url("../img/index_treatment_08.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.dementia a::before {
  background: url("../img/index_treatment_09.svg") no-repeat;
  background-size: cover;
}
.treatment_frame ul.treatment_list li.developmental_disorders a::before {
  background: url("../img/index_treatment_10.svg") no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px), print {
  .treatment_frame {
    width: 100%;
    height: 875px;
    padding: 126px 0 0 0;
    box-sizing: border-box;
    background: url("../img/index_treatment_bg.png") no-repeat;
    background-position: center top;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list {
    width: 1200px;
    margin: 68px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style-type: none;
  }
  .treatment_frame ul.treatment_list li {
    width: 220px;
    margin: 0 0 58px 0;
  }
  .treatment_frame ul.treatment_list li a {
    width: 220px;
    height: 220px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.9);
    color: #0047AB;
    text-decoration: none;
    text-align: center;
    font-size: 2.4rem;
    border-radius: 50%;
    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;
    transition: 0.5s;
  }
  .treatment_frame ul.treatment_list li a::before {
    content: "";
    width: 80px;
    height: 80px;
    display: block;
    margin: -4px 0 32px 0;
  }
  .treatment_frame ul.treatment_list li a {
    pointer-events: none;
    /*
    &:hover{
      background-color: $color_white;
      transform: translateY(-10px);             
      transition: 0.5s; 
    }
    */
  }
  .treatment_frame ul.treatment_list li.depression a::before {
    background: url("../img/index_treatment_01.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.bipolar a::before {
    background: url("../img/index_treatment_02.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.schizophrenia a::before {
    background: url("../img/index_treatment_03.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.panic a::before {
    background: url("../img/index_treatment_04.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.ocd a::before {
    background: url("../img/index_treatment_05.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.social_anxiety {
    /*margin: 0 0 58px 110px; */
  }
  .treatment_frame ul.treatment_list li.social_anxiety a::before {
    background: url("../img/index_treatment_06.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.adjustment a::before {
    background: url("../img/index_treatment_07.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.sleeping a::before {
    background: url("../img/index_treatment_08.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.dementia {
    /*margin: 0 110px 58px 0;*/
  }
  .treatment_frame ul.treatment_list li.dementia a::before {
    background: url("../img/index_treatment_09.svg") no-repeat;
    background-size: cover;
  }
  .treatment_frame ul.treatment_list li.developmental_disorders a::before {
    background: url("../img/index_treatment_10.svg") no-repeat;
    background-size: cover;
  }
}
/* -----------------------------------------------------------
　クリニックの特長
----------------------------------------------------------- */
.features_frame {
  width: 100%;
  margin: 3rem 0 0 0;
}
.features_frame .features_box {
  list-style-type: none;
  width: 96%;
  margin: 2rem auto 0 auto;
}
.features_frame .features_box section {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  margin: 0 0 6rem 0;
}
.features_frame .features_box section h3.top_sub_title {
  order: 2;
}
.features_frame .features_box section figure {
  order: 1;
  width: 100%;
  position: relative;
  margin: 0 0 1.5rem 0;
}
.features_frame .features_box section figure img {
  width: 100%;
}
.features_frame .features_box section figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 3.5rem;
  height: 3.5rem;
  color: #ffffff;
  background-color: #0047AB;
  font-family: "crimsonText_regular";
  font-weight: normal;
  font-size: 1.6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.features_frame .features_box section .features_text {
  order: 3;
  line-height: 220%;
  margin: 1rem 0 0 0;
  font-size: 1.6rem;
}
.features_frame .features_box section.right {
  margin: 0 0 0 0;
}

@media screen and (min-width: 768px), print {
  .features_frame {
    width: 100%;
    margin: 104px 0 0 0;
  }
  .features_frame .features_box {
    list-style-type: none;
    /*width: $hp_width;*/
    /*4個用*/
    width: 786px;
    margin: 68px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .features_frame .features_box section {
    width: 370px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0 0 58px 0;
  }
  .features_frame .features_box section h3.top_sub_title {
    order: 2;
  }
  .features_frame .features_box section figure {
    order: 1;
    width: 100%;
    position: relative;
    margin: 0 0 27px 0;
  }
  .features_frame .features_box section figure img {
    width: 100%;
  }
  .features_frame .features_box section figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    color: #ffffff;
    background-color: #0047AB;
    font-family: "crimsonText_regular";
    font-weight: normal;
    font-size: 2.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .features_frame .features_box section .features_text {
    order: 3;
    line-height: 200%;
    margin: 22px 0 0 0;
    font-size: 2rem;
  }
  .features_frame .features_box section {
    /*
            &.left{
              margin: 0 0 0 185px;        
            }
            &.right{
              margin: 0 185px 0 0;        
            }
    */
  }
}
/* -----------------------------------------------------------
　医院概要
----------------------------------------------------------- */
.overview {
  width: 100%;
  background: url("../img/overview_bg.png") no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 7rem 0 4rem 0;
  box-sizing: border-box;
}
.overview .overview_logo {
  width: 75%;
  margin: 0 auto;
  display: block;
}
.overview .overview_logo img {
  width: 100%;
}
.overview .overview_box {
  width: 96%;
  margin: 3rem auto 0 auto;
  /*左側*/
}
.overview .overview_box .overview_info_box_left {
  width: 100%;
}
.overview .overview_box .overview_info_box_left dl.overview_list {
  width: 100%;
  margin: 0 0 1.5rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 160%;
  font-weight: bold;
}
.overview .overview_box .overview_info_box_left dl.overview_list dt {
  width: 28%;
  margin: 0 0 0.7rem 0;
  padding: 0.5rem 0;
  box-sizing: border-box;
  color: #0047AB;
  text-align: center;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #ffffff;
  border-left: #0047AB 1px solid;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd {
  width: 72%;
  margin: 0 0 0.7rem 0;
  padding: 0.5rem 0;
  box-sizing: border-box;
  color: #333333;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: center;
  align-items: center;
  background-color: #ffffff;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd a {
  color: #333333;
  text-decoration: none;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd .fax {
  pointer-events: none;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd .dr_license {
  margin-top: 0.25em;
}
.overview .overview_box .overview_info_box_left dl.overview_list dd .dr_license li {
  list-style: none;
  font-size: 85%;
  font-weight: normal;
}
.overview .overview_box {
  /*右側*/
}
.overview .overview_box .overview_info_box_right {
  margin: 3rem 0 0 0;
}
.overview .overview_box .overview_info_box_right iframe.googlemap {
  width: 100%;
  height: 100vw;
  display: block;
  margin: 0;
}
.overview .overview_box .overview_info_box_right .googlemap_btn {
  width: 70%;
  height: 13vw;
  margin: 1.5rem auto 0 auto;
  background-color: #0047AB;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  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;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
.overview .overview_box .overview_info_box_right .googlemap_btn::after {
  font-family: "fontello";
  content: "\eb66";
  font-size: 1.2rem;
  position: absolute;
  right: 4%;
}

@media screen and (min-width: 768px), print {
  .overview {
    width: 100%;
    height: auto;
    background: url("../img/overview_bg.png") no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 120px 0 80px;
    box-sizing: border-box;
  }
  .overview .overview_logo {
    width: 414px;
    margin: 0 auto;
    display: block;
  }
  .overview .overview_logo img {
    width: 100%;
  }
  .overview .overview_box {
    width: 1200px;
    margin: 58px auto 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /*左側*/
  }
  .overview .overview_box .overview_info_box_left {
    width: 590px;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list {
    width: 590px;
    margin: 0 0 30px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 2rem;
    line-height: 160%;
    font-weight: bold;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dt {
    width: 130px;
    margin: 0 0 10px 0;
    padding: 9px 0;
    box-sizing: border-box;
    color: #0047AB;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    background-color: #ffffff;
    border-left: #0047AB 1px solid;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd {
    width: 460px;
    margin: 0 0 10px 0;
    padding: 9px 0;
    box-sizing: border-box;
    color: #333333;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-align-items: center;
    align-items: center;
    background-color: #ffffff;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd a {
    color: #333333;
    text-decoration: none;
  }
  .overview .overview_box .overview_info_box_left dl.overview_list dd .fax {
    pointer-events: none;
  }
  .overview .overview_box {
    /*右側*/
  }
  .overview .overview_box .overview_info_box_right {
    margin: 0 0 0 0;
    width: 570px;
  }
  .overview .overview_box .overview_info_box_right iframe.googlemap {
    width: 570px;
    height: 550px;
    display: block;
    margin: 0;
  }
  .overview .overview_box .overview_info_box_right .googlemap_btn {
    width: 285px;
    height: 60px;
    margin: 30px auto 0 auto;
    background-color: #0047AB;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    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;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    transition: 0.5s;
  }
  .overview .overview_box .overview_info_box_right .googlemap_btn::after {
    font-family: "fontello";
    content: "\eb66";
    font-size: 1.6rem;
    position: absolute;
    right: 12px;
  }
  .overview .overview_box .overview_info_box_right .googlemap_btn:hover {
    background-color: #1e1e1e;
    transition: 0.5s;
  }
}
/* -----------------------------------------------------------
　フッター
----------------------------------------------------------- */
footer .footer_frame {
  display: none;
}
footer .copyright {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  height: auto;
  width: 100%;
  letter-spacing: 0.05em;
  background-color: #0047AB;
}
footer .copyright a {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.footer_link {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  z-index: 999999;
  border-top: #ffffff 1px solid;
  box-sizing: border-box;
  /* --- Instagramボタン --- */
}
.footer_link a.footer_insta {
  width: 20%;
  height: 13vw;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-right: #ffffff 1px solid;
}
.footer_link a.footer_insta img {
  width: 30px;
  height: auto;
}
.footer_link {
  /* --- 電話ボタン --- */
}
.footer_link a.footer_tel {
  width: 60%;
  height: 13vw;
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: "crimsonText_regular";
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, #d68f10 0%, #b8780c 50%, #9c6408 100%);
  box-sizing: border-box;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_link a.footer_tel i {
  color: #ffffff;
  font-size: 1.6rem;
  margin: 0 0.5rem 0 0;
}
.footer_link {
  /* --- PageTopボタン --- */
}
.footer_link .smoothScrolls {
  background-color: #0047AB;
  width: 20%;
  height: 13vw;
}
.footer_link .smoothScrolls a {
  width: 100%;
  height: 13vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
}
.footer_link .smoothScrolls a i {
  font-size: 3rem;
}

@media screen and (min-width: 768px), print {
  footer {
    margin: 0 0 0 0;
    padding: 52px 0 0 0;
    background-color: rgba(255, 255, 255, 0.4);
    box-sizing: border-box;
    width: 100%;
    height: 184px;
    overflow: hidden;
    position: relative;
  }
  footer .footer_frame {
    display: block;
    width: 1200px;
    margin: 0 auto 0 auto;
  }
  footer .footer_frame ul.footer_list {
    line-height: 130%;
    font-size: 1.6rem;
    margin: 0 0 0 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .footer_frame ul.footer_list li {
    width: auto;
    margin: 0 10px 0 0;
    padding: 0 10px 0 0;
    list-style-type: none;
    position: relative;
    height: 20px;
    border-right: #333333 1px solid;
  }
  footer .footer_frame ul.footer_list li a {
    color: #333333;
    text-decoration: none;
    font-weight: normal;
    font-size: 2rem;
    position: relative;
  }
  footer .footer_frame ul.footer_list li a::before {
    position: absolute;
    content: "";
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: #333333 1px solid;
  }
  footer .footer_frame ul.footer_list li a:hover::before {
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: -3px;
  }
  footer .footer_frame ul.footer_list li button {
    display: none;
  }
  footer .footer_frame ul.footer_list li .subnav {
    display: flex;
  }
  footer .footer_frame ul.footer_list li .subnav li:last-of-type {
    margin: 0;
    padding: 0;
  }
  footer .footer_frame ul.footer_list li.treatment {
    display: none;
  }
  footer .footer_frame ul.footer_list li:last-child {
    border-right: none;
  }
  footer .footer_frame ul.footer_list li .nav_new {
    display: none;
  }
  footer .copyright {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    height: 60px;
    width: 100%;
    letter-spacing: 0.05em;
    background-color: #0047AB;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  footer .copyright a {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
    position: relative;
  }
  footer .copyright a::before {
    position: absolute;
    content: "";
    transition: 0.3s;
    opacity: 0;
    top: 25%;
    bottom: 25%;
    left: 0;
    right: 0;
    border-bottom: 1px solid #ffffff;
  }
  footer .copyright a:hover::before {
    transition: 0.3s;
    opacity: 1;
    top: 0;
    bottom: -2px;
  }
  .footer_link {
    display: none;
  }
}
/* -----------------------------------------------------------
　ページトップへ
----------------------------------------------------------- */
#pagetop_position {
  display: none;
}

@media screen and (min-width: 768px), print {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 60px;
    height: 60px;
  }
  #pagetop_position #linkpagetop a img {
    width: 60px;
    height: 60px;
  }
  #pagetop_position #linkpagetop a:hover {
    opacity: 0.6;
    transition: all 0.3s ease 0s;
  }
  #pagetop {
    position: fixed;
    bottom: 34px;
    right: 60px;
    z-index: 999999;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  #pagetop_position {
    display: block;
    margin: 0;
    padding: 0;
  }
  #pagetop_position #linkpagetop a {
    width: 60px;
    height: 60px;
  }
  #pagetop_position #linkpagetop a img {
    width: 60px;
    height: 60px;
  }
  #pagetop {
    position: fixed;
    bottom: 34px;
    right: 60px;
    z-index: 999999;
  }
}
.fixed_tel {
  display: none;
}

@media screen and (min-width: 768px), print {
  .fixed_tel {
    position: fixed;
    top: 220px;
    right: 0;
    margin: 0;
    width: 280px;
    height: 70px;
    background: linear-gradient(180deg, #d68f10 0%, #b8780c 50%, #9c6408 100%);
    font-family: "crimsonText_regular";
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
  }
  .fixed_tel .txt {
    font-size: 1.5rem;
    color: #ffffff;
    letter-spacing: 0.1em;
    line-height: 1.1;
    margin-bottom: 2px;
    margin-left: 3.5rem;
  }
  .fixed_tel {
    /* 下の電話行（横並び） */
  }
  .fixed_tel .tel_line {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fixed_tel i {
    color: #ffffff;
    margin: 0 8px 0 0;
    font-size: 2.5rem;
  }
  .fixed_tel .tel {
    font-size: 2.8rem;
    color: #ffffff;
    letter-spacing: 0.1em;
  }
}
/*@media screen and (min-width: $breakpoint), print {
  .fixed_tel {
    display: flex;
    position: fixed;
    bottom: 40px;
    right: 140px;
    margin: 0;
    width: 280px;
    height: 50px;
    background: linear-gradient(
      180deg,
      #d68f10 0%,
      #b8780c 50%,
      #9c6408 100%
    );

    font-family: 'crimsonText_regular';
    font-weight: bold;
    font-size: 2.8rem;

    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;

    z-index: 999999;

    i {
      color: $color_white;
      margin: 0 8px 0 0;
      font-size: 3rem;
    }

    span {
        &.tel {
            font-size: 2.8rem;
            color: $color_white;
            letter-spacing: 0.1em;  
        }
        &.txt {
            font-size: 1.8rem;
            color: $color_white;
            letter-spacing: 0.1em;  
        }

      a {
        color: $color_white;
        text-decoration: none;
      }
    }
  }
}
*/
.fixed_insta {
  display: none;
}

@media screen and (min-width: 768px) {
  .fixed_insta {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 300px;
    right: 0px;
    width: 80px;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .fixed_insta img {
    width: 35px;
    height: 35px;
  }
  .fixed_insta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }
}