@charset "UTF-8";
/* リセット
--------------------------------------- */
h1, h2, h3, h4, h5, h6, p, div, ul, ol, dl, dd {
  margin: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

input, button, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="submit"],
input[type="button"],
button[type="submit"],
textarea {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: 0;
  background: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="button"],
button[type="submit"] {
  cursor: pointer;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

iframe{
  max-width:100%;
}
p{
  word-break: break-all;
}

.red{
  color:#de3f3f;
}

/* ArialBlackフォント（外部ttfファイル）読み込み
相対パス：css/ArialBlack/***
---------------------------------------------------------------- */
@font-face {
  font-family: 'Arial Black';
  font-weight: bold;
  src: url(ArialBlack/arial-black.ttf) format("truetype");
}

/* 設定
--------------------------------------- */
/* PC ⇔ SP 切り替えクラス */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pc-inline {
  display: inline !important;
}

.sp-inline {
  display: none !important;
}

/* body全体 */
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}

/* 見出し */
main h1:not([class]) {
  font-size: 40px;
  line-height: 1.2em;
  text-align: center;
}

main .heading1-sub {
  font-size: 20px;
  text-align: center;
}

main h2:not([class]) {
  font-size: 30px;
  padding-left: 1em;
  position: relative;
}

main h2:not([class])::before,
main h2:not([class])::after {
  content: '';
  position: absolute;
  left: .3em;
  top: .5em;
  width: 1px;
  height: 18px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, #dd7a55), color-stop(33%, transparent), color-stop(67%, transparent), color-stop(67%, #dd7a55), to(#dd7a55));
  background: linear-gradient(0deg, #dd7a55 33%, transparent 33%, transparent 67%, #dd7a55 67%, #dd7a55 100%);
}

main h2:not([class])::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main h2:not([class])::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

main h2:not([class]) > .title-en {
  font-size: 16px;
  color: #969696;
  font-weight: bold;
  margin-left: 10px;
}

main h3:not([class]),
main h3.h_rbrown {
  font-size: 20px;
  line-height: 34px;
  position: relative;
}

main h3:not([class])::before,
main h3:not([class])::after,
main h3.h_rbrown::before,
main h3.h_rbrown::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 1px;
}

main h3:not([class])::before,
main h3.h_rbrown::before {
  background-color: #ffc1aa;
}

main h3:not([class])::after,
main h3.h_rbrown::after {
  width: 40px;
  background-color: #dd7a55;
}

main h4:not([class]) {
  font-size: 18px;
  line-height: 20px;
  padding-left: .6em;
  position: relative;
}

main h4:not([class])::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 100%;
  background-color: #dd7a55;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

main h5:not([class]) {
  font-size: 20px;
}

/* main内文章 */
main p:not([class]), main dd, main dt,
main p.text {
  line-height: 1.6em;
}

input[type="text"],
input[type="email"],
input[type="name"],
input[type="tel"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

button, input[type="submit"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/* a要素 */
a {
  color: #dd7a55;
}

/* a要素：button-link */
.button-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #dd7a55;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.button-link:hover {
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button-link > .icon {
  margin-left: .3em;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: .9em;
  height: .9em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  position: relative;
}

.button-link > .icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -50%) rotate(45deg);
          transform: translate(-60%, -50%) rotate(45deg);
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
}

/* text-link */
.text-link {
  position: relative;
}

.text-link::before,
.text-link::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
}

.text-link::before {
  right: 0;
  width: .25em;
  height: .25em;
  border-top: 1.2px solid #dd7a55;
  border-right: 1.2px solid #dd7a55;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
}

.text-link::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: -.55em;
  width: 1em;
  height: 1em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.text-link:hover {
  color: #666666;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.text-link:hover::before,
.text-link:hover::after {
  border-color: #666666;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ページ内リンク（4カラム） */
.button-link-jump {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #dd7a55;
  border-radius: 5px;
  border: 1px solid #dd7a55;
  font-weight: bold;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}

.button-link-jump::after {
  content: '';
  display: inline-block;
  margin-top: 3px;
  width: .5em;
  height: .5em;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* buttonLink（2カラム） */
.buttom-link-2column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 0 16px 17.6px;
  width: 100%;
  height: 100%;
  color: inherit;
  font-weight: bold;
  border: 1px solid #dd7a55;
  position: relative;
}

.buttom-link-2column::before,
.buttom-link-2column::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
}

.buttom-link-2column::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: .4em;
  width: 16px;
  height: 16px;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.buttom-link-2column::after {
  right: 12.8px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.buttom-link-2column:hover {
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* 電話番号・フリーダイヤル */
.tel, .freedial {
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-weight: bold;
  color: #dd7a55;
}

/* コンテナー */
.container {
  width: 1080px;
  margin: 0 auto;
}

@media all and (max-width: 1366px) {
  /* body全体 */
  body {
    font-size: 1.171vw;
  }
  /* 見出し */
  main h1:not([class]) {
    font-size: 2.928vw;
  }
  main h1.sub {
    font-size: 1.464vw;
  }
  main h2:not([class]) {
    font-size: 2.196vw;
  }
  main h2:not([class])::before,
  main h2:not([class])::after {
    height: 1.318vw;
  }
  main h2:not([class]) > .title-en {
    font-size: 1.171vw;
    margin-left: .732vw;
  }
  main h3:not([class]) {
    font-size: 1.464vw;
    line-height: 2.489vw;
  }
  main h4:not([class]) {
    font-size: 1.317vw;
    line-height: 1.464vw;
  }
  main h4:not([class])::before {
    width: .293vw;
  }
  main h5:not([class]) {
    font-size: 1.025vw;
  }
  /* a要素：button-link */
  .button-link {
    border-width: .073vw;
  }
  .button-link::before {
    border-width: .088vw;
  }
  .button-link::after {
    border-width: .073vw;
  }
  /* text-link */
  .text-link::before {
    border-width: .088vw;
  }
  .text-link::after {
    border-width: .073vw;
  }
  /* ページ内リンク（4カラム） */
  .button-link-jump {
    padding-top: .878vw;
    border-radius: .366vw;
    font-size: 1.025vw;
  }
  .button-link-jump::after {
    margin-top: .22vw;
    border-width: .146vw;
  }
  /* コンテナー */
  .container {
    width: 80%;
  }
}

@media all and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc-inline {
    display: none !important;
  }
  .sp-inline {
    display: inline !important;
  }
  body {
    font-size: 3.733vw;
  }
  /* 見出し */
  main h1:not([class]) {
    font-size: 8vw;
  }
  main h2:not([class]) {
    font-size: 5.867vw;
  }
  main h2:not([class])::before,
  main h2:not([class])::after {
    width: 1px;
    height: 3.733vw;
  }
  main h2:not([class]) > .title-en {
    font-size: 3.2vw;
    margin-left: .6em;
  }
  main h3:not([class]) {
    font-size: 4.8vw;
    line-height: 1.2em;
    padding-bottom: .2em;
  }
  main h4:not([class]),
  main h5:not([class]) {
    font-size: 4.8vw;
    line-height: 5.6vw;
  }
  main h4:not([class])::before {
    width: 1.067vw;
    height: 140%;
  }
  /* a要素：button-link */
  .button-link {
    font-size: 3.733vw;
    border-width: 1px;
  }
  .button-link::before {
    border-width: 1px;
  }
  .button-link::after {
    border-width: 1px;
  }
  /* text-link */
  .text-link::before {
    border-width: 1.2px;
  }
  .text-link::after {
    border-width: 1px;
  }
  /* ページ内リンク（4カラム） */
  .button-link-jump {
    padding-top: 3.733vw;
    border-radius: 1.333vw;
    font-size: 3.733vw;
  }
  .button-link-jump::after {
    margin-top: 1vw;
    border-width: 1px;
  }
  /* コンテナー */
  .container {
    width: 89.6%;
  }
}

/* header
--------------------------------------- */
header {
  position: relative;
  z-index: 2;
  font-size: 14px;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .high,
header .low {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .high {
  height: 80px;
}

header .logo {
  width: 25%;
}

header .logo img {
  width: 100%;
}

header .contact-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .contact-beauty {
  margin-left: 42px;
}

header .contact-title {
  font-size: 14px;
}

header .freedial-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4px;
  font-size: 18px;
  color: #dd7a55;
}

header .freedial-tel .freedial,
header .freedial-tel .tel {
  font-size: 18px;
}

header .freedial-tel .freedial + .tel {
  margin-left: 16px;
}

header .reception-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2px;
}

header .reception-block .reception-time + .reception {
  margin-left: 10px;
  font-size: 12px;
}

header .reception-time {
  font-weight: bold;
  font-size: 12px;
}

header .freedial-tel img {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  margin-right: 3px;
  height: 12px;
  vertical-align: middle;
}

header .low {
  height: 60px;
  border-top: 1px solid #f2f2f2;
}

header .low .container > nav {
  height: 100%;
}

header .main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
  height: inherit;
}

header .main-nav > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .main-nav > li > span,
header .main-nav > li > a {
  -webkit-transform: translateY(40%);
          transform: translateY(40%);
}

header .main-nav > li::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #dd7a55;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

header .main-nav > li:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

header .main-nav > li + li {
  margin-left: 2em;
}

header .main-nav > li > a {
  padding-right: .3em;
  color: #333333;
}

header .main-nav > li img {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  margin-right: 8px;
  height: 26px;
  vertical-align: middle;
}

header .low .form-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3px;
  width: 250px;
  border-bottom: 2px solid #999;
}

header form img {
  height: 24px;
  vertical-align: middle;
}

header input[type="text"] {
  width: 210px;
  font-size: 18px;
}

header input[type="text"]::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: 500;
  color: #999;
}

header input[type="text"]:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 500;
  color: #999;
}

header input[type="text"]::-ms-input-placeholder {
  font-size: 18px;
  font-weight: 500;
  color: #999;
}

header input[type="text"]::placeholder {
  font-size: 18px;
  font-weight: 500;
  color: #999;
}

@media all and (max-width: 1366px) {
  header {
    font-size: 1.025vw;
    -webkit-box-shadow: 0 0.22vw 0.22vw rgba(0, 0, 0, 0.3);
            box-shadow: 0 0.22vw 0.22vw rgba(0, 0, 0, 0.3);
  }
  header .high {
    height: 5.857vw;
  }
  header .contact-beauty {
    margin-left: 3.025vw;
  }
  header .contact-title {
    font-size: 1.025vw;
  }
  header .freedial-tel {
    margin-top: .293vw;
    font-size: 1.318vw;
  }
  header .freedial-tel .freedial,
  header .freedial-tel .tel {
    font-size: 1.318vw;
  }
  header .freedial-tel .freedial + .tel {
    margin-left: 1.171vw;
  }
  header .reception-block {
    margin-top: .146vw;
  }
  header .reception-block .reception-time + .reception {
    margin-left: .732vw;
    font-size: .878vw;
  }
  header .reception-time {
    font-size: .878vw;
  }
  header .freedial-tel img {
    -webkit-transform: translateY(-0.073vw);
            transform: translateY(-0.073vw);
    margin-right: .22vw;
    height: .878vw;
  }
  header .low {
    height: 4.392vw;
    border-width: .073vw;
  }
  header .main-nav > li::after {
    height: .22vw;
  }
  header .main-nav > li img {
    -webkit-transform: translateY(-0.146vw);
            transform: translateY(-0.146vw);
    margin-right: .586vw;
    height: 1.903vw;
  }
  header .low .form-item {
    padding: .22vw;
    width: 18.302vw;
    border-width: .146vw;
  }
  header .low form img {
    height: 1.757vw;
  }
  header .low input[type="text"] {
    width: 15.373vw;
    font-size: 1.318vw;
  }
  header .low input[type="text"]::-webkit-input-placeholder {
    font-size: 1.318vw;
  }
  header .low input[type="text"]:-ms-input-placeholder {
    font-size: 1.318vw;
  }
  header .low input[type="text"]::-ms-input-placeholder {
    font-size: 1.318vw;
  }
  header .low input[type="text"]::placeholder {
    font-size: 1.318vw;
  }
}

@media all and (max-width: 767px) {
  header {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  header .sp-header {
    position: relative;
    z-index: 10;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
  }
  header .sp-header .logo {
    margin-left: 4.73%;
    width: 41.6vw;
  }
  header .sp-header .logo img {
    width: 100%;
  }
  header .sp-header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .sp-header-nav > li {
    width: 50px;
  }
  header .sp-header-nav > li img {
    width: 100%;
  }
  header .sp-header .form-item,
  header .sp-header .tel-menu {
    display: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    bottom: 0;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    background-color: #dd7a55;
  }
  header .sp-header .form-item form {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .sp-header .form-item input[type="text"] {
    width: 270px;
    color: #fff;
  }
  header .sp-header .form-item input[type="text"]::-webkit-input-placeholder {
    font-size: 20px;
    color: #ffc1aa;
  }
  header .sp-header .form-item input[type="text"]:-ms-input-placeholder {
    font-size: 20px;
    color: #ffc1aa;
  }
  header .sp-header .form-item input[type="text"]::-ms-input-placeholder {
    font-size: 20px;
    color: #ffc1aa;
  }
  header .sp-header .form-item input[type="text"]::placeholder {
    font-size: 20px;
    color: #ffc1aa;
  }
  header .sp-header .tel-wrap {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  header .sp-header .tel-wrap p {
    font-size: 5.333vw;
  }
  header .sp-header .tel-wrap p a {
    color: #fff;
  }
  header .sp-header .tel-wrap .tap-close {
    position: absolute;
    top: 50%;
    right: 0;
    width: 5.333vw;
    height: 2px;
    background-color: #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  header .sp-header .tel-wrap .tap-close::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 5.333vw;
    height: 2px;
    background-color: #fff;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}

/* スライドメニュー（固定ヘッダー）
--------------------------------------- */
header .close {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  color: #fff;
  font-weight: bold;
  background-color: #dd7a55;
}

header .close nav ul:not(.sitemap-etc) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 20px;
}

header .close nav ul:not(.sitemap-etc) > li {
  line-height: 3em;
}

header .close nav ul:not(.sitemap-etc) > li a {
  position: relative;
  padding-right: 1.1em;
  color: #fff;
}

header .close nav ul:not(.sitemap-etc) > li a::before,
header .close nav ul:not(.sitemap-etc) > li a::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
}

header .close nav ul:not(.sitemap-etc) > li a::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: .7em;
  height: .7em;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

header .close nav ul:not(.sitemap-etc) > li a::after {
  width: .2em;
  height: .2em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
}

header .close nav ul > li a:hover {
  color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header .close nav ul > li a:hover::before,
header .close nav ul > li a:hover::after {
  border-color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header .news-blog {
  padding: 25px 0;
}

header .news-blog nav ul > li {
  padding-right: 1.7em;
}

header .clinic {
  padding: 25px 0;
}

header .clinic nav ul:not(.sitemap-etc) {
  padding-right: 80px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}

header .clinic nav ul:not(.sitemap-etc) > li {
  padding-right: 2.4em;
}

header .clinic nav .sitemap-etc {
  padding: 40px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}

header .clinic nav .sitemap-etc > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #fff;
}

header .clinic nav .sitemap-etc > li + li {
  margin-left: 2.8em;
}

header .clinic nav .sitemap-etc > li a::before {
  content: '';
  margin-right: .5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
}

header .clinic nav .sitemap-etc > li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: .5em;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

header .medical {
  padding: 70px 0 45px;
}

header .medical .subject-title {
  font-size: 24px;
  color: #333333;
}

header .medical ul + .subject-title {
  margin-top: 30px;
}

header .medical nav ul > li + li {
  margin-left: 1.5em;
}

@media all and (max-width: 1366px) {
  header .close nav ul:not(.sitemap-etc) {
    font-size: 1.464vw;
  }
  header .close nav ul:not(.sitemap-etc) > li a::after {
    border-width: .073vw;
  }
  header .news-blog {
    padding: 1.83vw 0;
  }
  header .clinic {
    padding: 1.83vw 0;
  }
  header .clinic nav ul:not(.sitemap-etc) {
    padding-right: 5.857vw;
    padding-bottom: 1.83vw;
    border-width: .073vw;
  }
  header .clinic nav .sitemap-etc {
    padding: 2.928vw 0 1.098vw;
  }
  header .clinic nav .sitemap-etc > li a::after {
    width: .22vw;
    height: .22vw;
  }
  header .medical {
    padding: 5.124vw 0 3.294vw;
  }
  header .medical .subject-title {
    font-size: 1.757vw;
  }
  header .medical ul + .subject-title {
    margin-top: 2.196vw;
  }
}

/* 追従メニュー(PC)
--------------------------------------- */
.follow-menu {
  display: none;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

.follow-menu .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.follow-menu .follow-menu-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.follow-menu .logo {
  width: 170px;
}

.follow-menu .logo img {
  width: 100%;
}

.follow-menu .main-nav {
  margin-top: 15px;
  margin-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.follow-menu .main-nav > li {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.follow-menu .main-nav > li::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #dd7a55;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.follow-menu .main-nav > li:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.follow-menu .main-nav > li + li {
  margin-left: 20px;
}

.follow-menu .main-nav > li span {
  display: block;
  margin-top: 6px;
}

.follow-menu .main-nav > li a {
  color: inherit;
}

.follow-menu .main-nav > li img {
  height: 25px;
}

.follow-menu .form-item {
  padding: 0 8px 8px 10px;
  border-bottom: 2px solid #999;
}

.follow-menu .form-item input[type="text"] {
  width: 130px;
}

.follow-menu .form-item input[type="text"]::-webkit-input-placeholder {
  font-size: 18px;
  color: #999;
}

.follow-menu .form-item input[type="text"]:-ms-input-placeholder {
  font-size: 18px;
  color: #999;
}

.follow-menu .form-item input[type="text"]::-ms-input-placeholder {
  font-size: 18px;
  color: #999;
}

.follow-menu .form-item input[type="text"]::placeholder {
  font-size: 18px;
  color: #999;
}

.follow-menu .form-item img {
  height: 25px;
}

.follow-menu .close {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  color: #fff;
  font-weight: bold;
  background-color: #dd7a55;
}

.follow-menu .close nav ul:not(.sitemap-etc) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 20px;
}

.follow-menu .close nav ul:not(.sitemap-etc) > li {
  line-height: 3em;
}

.follow-menu .close nav ul:not(.sitemap-etc) > li a {
  position: relative;
  padding-right: 1.1em;
  color: #fff;
}

.follow-menu .close nav ul:not(.sitemap-etc) > li a::before,
.follow-menu .close nav ul:not(.sitemap-etc) > li a::after {
  content: '';
  position: absolute;
  display: inline-block;
  top: 50%;
  right: 0;
}

.follow-menu .close nav ul:not(.sitemap-etc) > li a::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: .7em;
  height: .7em;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}

.follow-menu .close nav ul:not(.sitemap-etc) > li a::after {
  width: .2em;
  height: .2em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
}

.follow-menu .close nav ul:not(.sitemap-etc) > li a:hover {
  color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.follow-menu .close nav ul:not(.sitemap-etc) > li a:hover::before,
.follow-menu .close nav ul:not(.sitemap-etc) > li a:hover::after {
  border-color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* クローズメニュー(個別メニュー) */
.follow-menu .news-blog {
  padding: 25px 0;
}

.follow-menu .news-blog nav ul > li {
  padding-right: 1.7em;
}

.follow-menu .clinic {
  padding: 25px 0;
}

.follow-menu .clinic nav ul:not(.sitemap-etc) {
  padding-right: 80px;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
}

.follow-menu .clinic nav ul:not(.sitemap-etc) > li {
  padding-right: 2.4em;
}

.follow-menu .clinic nav .sitemap-etc {
  padding: 40px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}

.follow-menu .clinic nav .sitemap-etc > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #fff;
}

.follow-menu .clinic nav .sitemap-etc > li + li {
  margin-left: 2.8em;
}

.follow-menu .clinic nav .sitemap-etc > li a::before {
  content: '';
  margin-right: .5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
}

.follow-menu .clinic nav .sitemap-etc > li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: .5em;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.follow-menu .medical {
  padding: 70px 0 45px;
}

.follow-menu .medical .subject-title {
  text-align: left;
  font-size: 24px;
  color: #333333;
}

.follow-menu .medical ul + .subject-title {
  margin-top: 30px;
}

.follow-menu .medical nav ul > li + li {
  margin-left: 1.5em;
}

@media all and (max-width: 1366px) {
  .follow-menu {
    height: 5.857vw;
    -webkit-box-shadow: 0 0.22vw 0.22vw rgba(0, 0, 0, 0.3);
            box-shadow: 0 0.22vw 0.22vw rgba(0, 0, 0, 0.3);
  }
  .follow-menu .logo {
    width: 12.445vw;
  }
  .follow-menu .main-nav {
    margin-top: 1.098vw;
    margin-left: 2.928vw;
  }
  .follow-menu .main-nav > li {
    font-size: .878vw;
  }
  .follow-menu .main-nav > li::after {
    height: .22vw;
  }
  .follow-menu .main-nav > li + li {
    margin-left: 1.464vw;
  }
  .follow-menu .main-nav > li span {
    margin-top: .439vw;
  }
  .follow-menu .main-nav > li img {
    height: 1.83vw;
  }
  .follow-menu .form-item {
    padding: 0 .586vw .586vw .732vw;
    border-width: .146vw;
  }
  .follow-menu .form-item input[type="text"] {
    width: 9.517vw;
  }
  .follow-menu .form-item input[type="text"]::-webkit-input-placeholder {
    font-size: 1.318vw;
  }
  .follow-menu .form-item input[type="text"]:-ms-input-placeholder {
    font-size: 1.318vw;
  }
  .follow-menu .form-item input[type="text"]::-ms-input-placeholder {
    font-size: 1.318vw;
  }
  .follow-menu .form-item input[type="text"]::placeholder {
    font-size: 1.318vw;
  }
  .follow-menu .form-item img {
    height: 1.83vw;
  }
  .follow-menu .close nav ul:not(.sitemap-etc) {
    font-size: 1.464vw;
  }
  .follow-menu .close nav ul:not(.sitemap-etc) > li a::after {
    border-width: .073vw;
  }
  /* クローズメニュー(個別メニュー) */
  .follow-menu .news-blog {
    padding: 1.83vw 0;
  }
  .follow-menu .clinic {
    padding: 1.83vw 0;
  }
  .follow-menu .clinic nav ul:not(.sitemap-etc) {
    padding-right: 5.857vw;
    padding-bottom: 1.83vw;
    border-width: .073vw;
  }
  .follow-menu .clinic nav .sitemap-etc {
    padding: 2.928vw 0 1.098vw;
  }
  .follow-menu .clinic nav .sitemap-etc > li a::before {
    border-width: .073vw;
  }
  .follow-menu .clinic nav .sitemap-etc > li a::after {
    width: .22vw;
    height: .22vw;
  }
  .follow-menu .medical {
    padding: 5.124vw 0 3.294vw;
  }
  .follow-menu .medical .subject-title {
    font-size: 1.757vw;
  }
  .follow-menu .medical ul + .subject-title {
    margin-top: 2.196vw;
  }
}

/* 追従メニュー(SP)
--------------------------------------- */
.follow-menu-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: #fff;
  -webkit-box-shadow: 0 -1px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 -1px 7px rgba(0, 0, 0, 0.3);
}

.follow-menu-sp > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.follow-menu-sp > ul > li {
  width: 20vw;
}

.follow-menu-sp > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.follow-menu-sp > ul > li .image-wrapper {
  padding-top: 5px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.follow-menu-sp > ul > li img {
  width: 100%;
  max-width:50px;
}

.follow-menu-sp > ul > li .menu-title {
  margin-top: 1vw;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2vw;
  font-weight: normal;
  line-height: 1.2em;
  text-align: center;
  padding-bottom:5px;
}

.follow-menu-sp > ul > li.tap {
  color: #fff;
  background-color: #dd7a55;
}

.follow-menu-sp .close {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  padding: 7.467vw 5.333vw;
  background-color: #dd7a55;
}

.follow-menu-sp .close > .main > li {
  font-size: 4.267vw;
  font-weight: bold;
}

.follow-menu-sp .close > .main > li + li {
  margin-top: .87em;
}

.follow-menu-sp .close > .main a {
  color: #fff;
  position: relative;
  padding-right: 1.25em;
}

.follow-menu-sp .close > .main a::before,
.follow-menu-sp .close > .main a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
}

.follow-menu-sp .close > .main a::before {
  right: 0;
  width: .25em;
  height: .25em;
  border-top: 1.2px solid #fff;
  border-right: 1.2px solid #fff;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
}

.follow-menu-sp .close > .main a::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: -.55em;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.follow-menu-sp .close > .sitemap-etc {
  margin-top: 5.333vw;
  padding-top: 4.8vw;
  border-top: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.follow-menu-sp .close > .sitemap-etc > li {
  padding-right: 1.4em;
  font-size: 3.733vw;
}

.follow-menu-sp .close > .sitemap-etc > li:nth-of-type(n+3) {
  margin-top: 1em;
}

.follow-menu-sp .close > .sitemap-etc > li a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.follow-menu-sp .close > .sitemap-etc > li a::before {
  content: '';
  margin-right: .5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
}

.follow-menu-sp .close > .sitemap-etc > li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: .5em;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.follow-menu-sp .medical .subject-title {
  margin-bottom: .7em;
  font-size: 5.333vw;
  color: #333333;
}

.follow-menu-sp .medical .main + .subject-title {
  margin-top: 8.533vw;
}

/* footer
--------------------------------------- */
footer {
  color: #fff;
}

footer .high {
  height: 372px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #312828;
}

footer .address-block {
  text-align: center;
  -webkit-transform: translateY(-36%);
          transform: translateY(-36%);
}

footer .logo {
  font-family: Futura, sans-serif;
  font-weight: 500;
  font-size: 24px;
  max-width:300px;
  background: white;
}
footer .logo img{
  width:90%;
  padding:10px;
}

footer address {
  margin-top: 20px;
  font-size: 14px;
}

footer address .address + .access {
  margin-top: 20px;
  font-weight: bold;
}

footer address .address + .access > a {
  color: inherit;
  border-bottom: 1px solid #999;
}

footer address .address + .access > a:hover {
  color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

footer .medical-general {
  margin-left: 120px;
}

footer .medical-beauty {
  margin-left: 64px;
}

footer .medical-general .medical-title,
footer .medical-beauty .medical-title {
  display: inline-block;
  font-size: 18px;
  text-indent: 1.4em;
  position: relative;
}

footer .medical-general .medical-title::before,
footer .medical-beauty .medical-title::before,
footer .medical-general .medical-title::after,
footer .medical-beauty .medical-title::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 2px;
  width: 16px;
  height: 3px;
  background-color: #E64731;
  border-radius: 1.5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

footer .medical-general .medical-title::after,
footer .medical-beauty .medical-title::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

footer .medical-beauty .reservation {
  margin-left: 0.5em;
  font-size: 14px;
  font-weight: 500;
}

footer .medical-subject {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}

footer .medical-subject > li + li {
  margin-left: 1em;
}

footer .medical-subject > li::before {
  content: '●';
}

footer .medical-open {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 260px;
  font-size: 12px;
}

footer .medical-open dt {
  width: 30%;
  font-size: 14px;
  font-weight: bold;
}

footer .medical-open dd {
  width: 70%;
  font-size: 12px;
}

footer .medical-open dt:nth-of-type(n+2),
footer .medical-open dd:nth-of-type(n+2) {
  margin-top: 12px;
}

footer .medical-open ul > li {
  line-height: 1.5em;
}

footer .medical-open ul > li::before {
  content: '■';
  position: absolute;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

footer .medical-general .medical-tel {
  margin-top: 10px;
  color: #dd7a55;
}

footer .medical-beauty .medical-tel {
  margin-top: 27.6px;
  color: #dd7a55;
}

footer .medical-tel .freedial {
  font-size: 30px;
}

footer .medical-tel .freedial img {
  margin-right: 10px;
  width: 30px;
  vertical-align: baseline;
}

footer .medical-tel .telblock {
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer .medical-tel .no-freedial {
  font-size: 10px;
  line-height: 1.2em;
}

footer .medical-tel .tel {
  margin-left: 4px;
  font-size: 22px;
}

footer .medical-tel .tel img {
  margin-right: 3px;
  width: 11px;
  vertical-align: baseline;
}

footer .medical-tel .reception-block {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}

footer .medical-tel .reception-time {
  font-weight: bold;
}

footer .medical-tel .reception {
  margin-left: 1em;
}

footer .medical-contact {
  margin-top: 12px;
  font-size: 16px;
}

footer .medical-contact a {
  position: relative;
}

footer .medical-contact a::before,
footer .medical-contact a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
}

footer .medical-contact a::before {
  right: -1.25em;
  width: .25em;
  height: .25em;
  border-top: 1.2px solid #dd7a55;
  border-right: 1.2px solid #dd7a55;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
}

footer .medical-contact a::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: -1.8em;
  width: 1em;
  height: 1em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

footer .medical-contact a:hover {
  color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

footer .medical-contact a:hover::before,
footer .medical-contact a:hover::after {
  border-color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

footer .low {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 30px;
  height: 93.4px;
  text-align: center;
  font-size: 14px;
  background-color: #dd7a55;
}

footer .low ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

footer .low ul > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: inherit;
}

footer .low ul > li a:hover {
  color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

footer .low ul > li a:hover::before,
footer .low ul > li a:hover::after {
  border-color: #e5c6b2;
  -webkit-transition: all .3s;
  transition: all .3s;
}

footer .low ul > li + li {
  margin-left: 2.8em;
}

footer .low ul > li a::before {
  content: '';
  margin-right: .5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
}

footer .low ul > li a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: .5em;
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

footer .copyright {
  margin-top: 18px;
  width: 100%;
}

footer .copyright small {
  font-size: 10px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  footer .high {
    height: 27.233vw;
  }
  footer .logo {
    font-size: 1.75vw;
  }
  footer address {
    margin-top: 1.46vw;
    font-size: 1.02vw;
  }
  footer address .address + .access {
    margin-top: 1.46vw;
  }
  footer .medical-general {
    margin-left: 8.78vw;
  }
  footer .medical-beauty {
    margin-left: 4.685vw;
  }
  footer .medical-general .medical-title,
  footer .medical-beauty .medical-title {
    font-size: 1.3177vw;
  }
  footer .medical-general .medical-title::before,
  footer .medical-beauty .medical-title::before,
  footer .medical-general .medical-title::after,
  footer .medical-beauty .medical-title::after {
    left: .146vw;
    width: 1.17vw;
    height: .2196vw;
    border-radius: .11vw;
  }
  footer .medical-beauty .reservation {
    font-size: 1.025vw;
  }
  footer .medical-subject {
    margin-top: .585vw;
    font-size: .878vw;
  }
  footer .medical-open {
    margin-top: 1.464vw;
    width: 19.034vw;
    font-size: .878vw;
  }
  footer .medical-open dd {
    font-size: .878vw;
  }
  footer .medical-open dt {
    font-size: 1.025vw;
  }
  footer .medical-open dt:nth-of-type(n+2),
  footer .medical-open dd:nth-of-type(n+2) {
    margin-top: .878vw;
  }
  footer .medical-general .medical-tel {
    margin-top: .732vw;
  }
  footer .medical-beauty .medical-tel {
    margin-top: 2.02vw;
  }
  footer .medical-tel .freedial {
    font-size: 2.196vw;
  }
  footer .medical-tel .freedial img {
    margin-right: .732vw;
    width: 2.196vw;
  }
  footer .medical-tel .telblock {
    margin-top: .293vw;
  }
  footer .medical-tel .no-freedial {
    font-size: .732vw;
  }
  footer .medical-tel .tel {
    margin-left: .293vw;
    font-size: 1.611vw;
  }
  footer .medical-tel .tel img {
    margin-right: .22vw;
    width: .805vw;
  }
  footer .medical-tel .reception-block {
    margin-top: .586vw;
    font-size: .878vw;
  }
  footer .medical-contact {
    margin-top: .878vw;
    font-size: 1.171vw;
  }
  footer .medical-contact a::before {
    border-width: .088vw;
  }
  footer .medical-contact a::after {
    border-width: .073vw;
  }
  footer .low {
    padding-top: 2.196vw;
    height: 6.837vw;
    font-size: 1.025vw;
  }
  footer .low ul > li a::before {
    border-width: .073vw;
  }
  footer .low ul > li a::after {
    width: .22vw;
    height: .22vw;
  }
  footer .copyright {
    margin-top: 1.318vw;
  }
  footer .copyright small {
    font-size: .732vw;
  }
}

/* レスポンシブ：SP画面幅(768px以下) */
@media all and (max-width: 767px) {
  footer .high {
    height: auto;
    padding: 16vw 7.333vw 5.333vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
  }
  footer .address-block {
    -webkit-transform: none;
            transform: none;
  }
  footer .logo {
    font-size: 6.4vw;
  }
  footer address {
    margin-top: 4.267vw;
    font-size: 3.733vw;
  }
  footer address .address + .access {
    margin-top: 2.4vw;
  }
  footer address .address + .access > a {
    border-width: .267vw;
  }
  footer .medical-general {
    margin-top: 16vw;
    margin-left: 0;
  }
  footer .medical-beauty {
    margin-top: 12vw;
    margin-left: 0;
  }
  footer .medical-general .medical-title,
  footer .medical-beauty .medical-title {
    font-size: 5.333vw;
    text-indent: 2.1em;
  }
  footer .medical-general .medical-title::before,
  footer .medical-beauty .medical-title::before,
  footer .medical-general .medical-title::after,
  footer .medical-beauty .medical-title::after {
    content: '';
    left: .533vw;
    width: 5vw;
    height: .8vw;
    border-radius: .4vw;
  }
  footer .medical-beauty .reservation {
    font-size: 3.733vw;
  }
  footer .medical-subject {
    margin-top: 3.2vw;
    padding-bottom: 2.667vw;
    font-size: 3.2vw;
    border-bottom: 1px dashed #707070;
  }
  footer .medical-open {
    margin-top: 5.333vw;
    width: auto;
  }
  footer .medical-open dt {
    font-size: 3.733vw;
    text-indent: 1.4em;
  }
  footer .medical-open dd {
    font-size: 3.2vw;
  }
  footer .medical-open dt:nth-of-type(n+2),
  footer .medical-open dd:nth-of-type(n+2) {
    margin-top: 2vw;
  }
  footer .medical-general .medical-tel {
    margin-top: 5vw;
  }
  footer .medical-beauty .medical-tel {
    margin-top: 5vw;
  }
  footer .medical-tel .freedial {
    position: relative;
    font-size: 7.467vw;
    border: 0.267vw solid #dd7a55;
    border-radius: 1.333vw;
    height: 13.333vw;
  }
  footer .medical-tel .freedial a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 23.2vw;
    width: 100%;
    height: 100%;
  }
  footer .medical-tel .freedial img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 13.333vw;
    margin: auto;
    width: 8vw;
  }
  footer .medical-tel .telblock {
    position: relative;
    margin-top: 2.667vw;
    height: 13.333vw;
    border: 0.267vw solid #dd7a55;
    border-radius: 1.333vw;
  }
  footer .medical-tel .telblock a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 3vw;
    padding-left: 29.4vw;
    width: 100%;
    height: 100%;
  }
  footer .medical-tel .no-freedial {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    top: 2.2vw;
    left: 22vw;
    font-size: 2.667vw;
    font-weight: bold;
  }
  footer .medical-tel .tel {
    margin-left: 0;
    width: 100%;
    font-size: 5.333vw;
  }
  footer .medical-tel .tel img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 13.333vw;
    margin: auto;
    width: 8vw;
  }
  footer .medical-tel .reception-block {
    margin-top: 3.2vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 3.2vw;
  }
  footer .medical-tel .reception-time {
    font-weight: bold;
  }
  footer .medical-tel .reception {
    margin-left: 1em;
  }
  footer .medical-contact {
    margin-top: 12px;
    font-size: 16px;
  }
  footer .medical-contact a {
    position: relative;
  }
  footer .medical-contact a::before,
  footer .medical-contact a::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
  }
  footer .medical-contact a::before {
    right: -1.25em;
    width: .25em;
    height: .25em;
    border-top: 1.2px solid #dd7a55;
    border-right: 1.2px solid #dd7a55;
    -webkit-transform: translate(-100%, -50%) rotate(45deg);
            transform: translate(-100%, -50%) rotate(45deg);
  }
  footer .medical-contact a::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    right: -1.8em;
    width: 1em;
    height: 1em;
    border: 1px solid #dd7a55;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  footer .low {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8vw 0 0;
    height: 60vw;
    text-align: left;
    font-size: 3.2vw;
    background-color: #dd7a55;
  }
  footer .low ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 16vw;
  }
  footer .low ul > li {
    padding-right: 2.8em;
  }
  footer .low ul > li:nth-of-type(n+3) {
    margin-top: 4.533vw;
  }
  footer .low ul > li + li {
    margin-left: 0;
  }
  footer .low ul > li a::before {
    border-width: .267vw;
  }
  footer .low ul > li a::after {
    width: .8vw;
    height: .8vw;
  }
  footer .copyright {
    margin-top: 7.467vw;
    text-align: center;
  }
  footer .copyright small {
    font-size: 2.667vw;
  }
}

/* 診療科目系ページタイトル
--------------------------------------------- */
/* ファーストビュー */
.medicalCourses-firstview img {
  width: 100%;
}

/* ページタイトル */
.medicalCourses-pageTitle {
  margin-top: 10px;
}

.medicalCourses-pageTitle p {
  margin: 30px auto 0!important;
  width: 59.259259%;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* ページタイトル */
  .medicalCourses-pageTitle {
    margin-top: .732vw;
  }
  .medicalCourses-pageTitle p {
    margin: 2.196vw auto 0!important;
    width: 59.259259%;
  }
}

/* レスポンシブ：SP画面幅(768px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  .medicalCourses-pageTitle {
    margin-top: 8vw;
  }
  .medicalCourses-pageTitle p {
    margin: 8vw auto 0!important;
    width: auto;
  }
}

/* トピックパス（トップページ以外）
--------------------------------------------- */
.topic-pass ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0;
}

.topic-pass li {
  margin-bottom: .8em;
  font-size: 14px;
  color: #666666;
}

.topic-pass li + li {
  padding-left: 1em;
  position: relative;
}

.topic-pass li:not(:last-of-type) {
  margin-right: 1em;
}

.topic-pass li + li::before,
.topic-pass li + li::after {
  content: '';
  position: absolute;
  left: 0;
  display: inline-block;
  margin-right: 1em;
  width: .143em;
  height: .35em;
  background-color: #666666;
}

.topic-pass li + li::before {
  top: 50%;
  -webkit-transform: translateY(-100%) skewX(45deg);
          transform: translateY(-100%) skewX(45deg);
}

.topic-pass li + li::after {
  bottom: 50%;
  -webkit-transform: translateY(100%) skewX(-45deg);
          transform: translateY(100%) skewX(-45deg);
}

.topic-pass li a {
  font-weight: bold;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  .topic-pass ul {
    padding: 1.464vw 0;
  }
  .topic-pass li {
    font-size: 1.025vw;
  }
}

/* レスポンシブ：SP画面幅(768px以下) */
@media all and (max-width: 767px) {
  .topic-pass ul {
    padding: 2.74vw 0;
  }
  .topic-pass li {
    font-size: 3.2vw;
    line-height: 3.2vw;
  }
  .topic-pass li + li::before,
  .topic-pass li + li::after {
    height: .4em;
  }
}

/* スワイプアイコン（スマホのみ）
--------------------------------------------- */
@media all and (max-width: 767px) {
  .tableSwipe-wrap {
    position: relative;
  }
  .tableSwipe-wrap .swipe {
    position: absolute;
    top: 0;
    right: 5%;
    -webkit-transform: translateY(-110%);
            transform: translateY(-110%);
  }
  .tableSwipe-wrap .swipe img {
    width: 7.2vw;
    vertical-align: middle;
  }
  .tableSwipe-wrap .swipe span {
    font-family: "Helvetica Neue" , Helvetica, sans-serif;
    font-size: 2.933vw;
    color: #dd7a55;
    font-weight: bold;
    vertical-align: middle;
  }
}

/* トップページ(index.html)
--------------------------------------------- */
/* ファーストビュー */
.top-first-view .image-wrapper {
  width: 100%;
  position: relative;
}

.top-first-view .image-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.top-first-view .image-wrapper img {
  width: 100%;
}

.top-first-view .top-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.8em;
  color: #fff;
}

.top-first-view .top-title::before,
.top-first-view .top-title::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top-first-view .top-title::before {
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.top-first-view .top-title::after {
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: translate(-50%, -100%) rotate(45deg);
          transform: translate(-50%, -100%) rotate(45deg);
}

/* お知らせ */
.notice-wrapper {
  width: 100%;
  height: 50px;
  background-color: #312828;
}

.top-notice .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-notice a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.top-notice .notice {
  color: #dd7a55;
  border: 1px solid #dd7a55;
  padding: 3px 5px;
  font-size: 12px;
}

.top-notice .date {
  margin-left: 20px;
  font-size: 12px;
  color: #969696;
}

.top-notice .title {
  margin-left: 32px;
  font-size: 18px;
  color: #fff;
}

.top-notice .newslist {
  font-size: 16px;
}

.top-notice .newslist a {
  position: relative;
  color: #ffc1aa;
  padding-right: 1.5em;
}

.top-notice .newslist a::before,
.top-notice .newslist a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
}

.top-notice .newslist a::before {
  right: 0;
  width: .25em;
  height: .25em;
  border-top: 1px solid #ffc1aa;
  border-right: 1px solid #ffc1aa;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
}

.top-notice .newslist a::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: -.4em;
  width: .8em;
  height: .8em;
  border: 1px solid #ffc1aa;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* 診療科目 */
.top-medical-courses {
  padding-top: 60px;
}

.top-medical-courses .medical-courses {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-medical-courses .medical-course {
  width: 46.3%;
}

.top-medical-courses .medical-course .content-wrapper {
  margin-top: 15px;
}

.top-medical-courses .image-wrapper img {
  width: 100%;
}

.top-medical-courses .medical-course-title {
  font-size: 20px;
  position: relative;
  text-indent: 1.2em;
}

.top-medical-courses .medical-course-title::before,
.top-medical-courses .medical-course-title::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top-medical-courses .medical-course-title::before {
  width: 15px;
  height: 15px;
  border: 1px solid #e87449;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top-medical-courses .medical-course-title::after {
  width: 4px;
  height: 4px;
  background-color: #e87449;
  -webkit-transform: translate(130%, -50%);
          transform: translate(130%, -50%);
}

.top-medical-courses .medical-course-title > .reservation {
  margin-left: .5em;
  font-size: 14px;
}

.top-medical-courses .medical-course-title + p {
  margin-top: 16px;
}

.top-medical-courses .medical-course-view {
  margin-top: 12px;
}

.top-medical-courses .medical-course-view .text-link {
  padding-right: 1.25em;
}

/* ブログ */
.top-latest-blog {
  margin-top: 60px;
  padding: 60px 0;
  background-color: #f4eee4;
}

.top-latest-blog .container {
  position: relative;
}

.top-latest-blog .latest-blog-links {
  position: absolute;
  top: 30px;
  right: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-latest-blog .latest-blog-links .link + .link {
  margin-left: 2.8em;
}

.top-latest-blog .latest-blog-links .text-link {
  padding-right: 1.25em;
}

.top-latest-blog .latest-blogs {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.top-latest-blog .latest-blog {
  width: 22.3%;
}

.top-latest-blog .latest-blog:not(:nth-of-type(4n+1)) {
  margin-left: 3.6%;
}

.top-latest-blog .latest-blog .image-wrapper img {
  width: 100%;
  outline: 2px solid transparent;
}

.top-latest-blog .latest-blog a:hover > .image-wrapper img {
  outline-color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.top-latest-blog .latest-blog .meta-wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-latest-blog .latest-blog .meta-wrapper .qa {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: bold;
  color: #dd7a55;
  border: 1px solid #dd7a55;
}

.top-latest-blog .latest-blog .meta-wrapper .date {
  font-size: 14px;
  color: #969696;
}

.top-latest-blog .latest-blog a:hover .meta-wrapper .date {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.top-latest-blog .latest-blog .content-wrapper {
  margin-top: 6px;
  height: 100px;
  overflow: hidden;
}

.top-latest-blog .latest-blog .blog-title {
  font-size: 18px;
  color: #3b3b3b;
  line-height: 1.4em;
}

.top-latest-blog .latest-blog a:hover .blog-title {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.top-latest-blog .latest-blog .author-wrapper {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-latest-blog .latest-blog .author-wrapper > .image-wrapper {
  width: 40px;
}

.top-latest-blog .latest-blog .author-wrapper .name {
  margin-left: .8em;
  font-size: 14px;
  font-weight: bold;
  color: #969696;
}

.top-latest-blog .latest-blog a:hover .author-wrapper .name {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.top-latest-blog .bloglist-links-wrapper {
  margin-top: 33.5px;
}

.top-latest-blog .bloglist-links-wrapper .link {
  margin: 0 auto;
  width: 26.85%;
  height: 58px;
}

.top-latest-blog .bloglist-links-wrapper .button-link::before {
  right: 5.6em;
}

.top-latest-blog .bloglist-links-wrapper .button-link::after {
  right: 5.2em;
}

/* 当クリニックについて */
.top-about-us {
  padding-top: 60px;
}

.top-about-us .about-us-blocks {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-about-us .about-us-block {
  width: 22.3%;
  height: 240px;
}

.top-about-us .about-us-block a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  position: relative;
}

.top-about-us .about-us-block:not(:nth-of-type(4n+1)) {
  margin-left: 3.6%;
}

.top-about-us .about-us-block .image-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: 1px solid #dddddd;
}

.top-about-us .about-us-block a:hover .image-wrapper {
  outline-color: #dd7a55;
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.top-about-us .about-us-block .image-wrapper img {
  width: 100%;
}

.top-about-us .about-us-block .about-us-title {
  position: absolute;
  bottom: 15%;
  width: 100%;
  height: 2.6em;
  line-height: 1.3em;
  font-size: 18px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* 担当医表 */
#front_page .top-schedule {
  padding-top: 60px;
}

.top-schedule .schedule-table-title {
  font-size: 20px;
}

.top-schedule .schedule-table-title > .reservation {
  margin-left: .5em;
  font-size: 16px;
  font-weight: 500;
}

.top-schedule .schedule-blocks {
  margin-top: 20px;
}

.top-schedule .schedule-block + .schedule-block {
  margin-top: 40px;
}

.top-schedule .precautionary {
  margin-top: 14px;
}

.top-schedule .schedule-table-title + .table-wrapper {
  margin-top: 20px;
}

.top-schedule table {
  width: 100%;
}

.top-schedule table thead tr {
  height: 40px;
  color: #fff;
}

.top-schedule table tbody th {
  width: 18.5%;
  font-weight: inherit;
}

.top-schedule table tbody tr {
  height: 70px;
  border-bottom: 1px solid #cccccc;
}

.top-schedule table tbody td {
  width: 10.1875%;
  text-align: center;
}

.top-schedule table .holiday {
  font-weight: bold;
  color: #e64731;
}

.top-schedule table thead th:nth-child(odd) {
  background-color: #ed9573;
}

.top-schedule table thead th:nth-child(even) {
  background-color: #dd7a55;
}

.top-schedule table tbody td:nth-child(even) {
  background-color: #f2f2f2;
}
.top-schedule h3, .top-schedule h3:before, .top-schedule h3:after{
  content:""!important;
  background-color: white!important;
}

/* その他 患者さんの声etc */
.top-other {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-other .other-block {
  width: 50%;
  height: 200px;
  border: 1px solid transparent;
}

.top-other .other-block:hover {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.top-other .other-block a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-other .other-block img {
  height: 30%;
}

.top-other .other-block.patient {
  background-color: #f4ecdc;
}

.top-other .other-block.question {
  background-color: #efe3cd;
}

.top-other .other-block.disease {
  background-color: #ddd0b8;
}

.top-other .other-block.patient:hover,
.top-other .other-block.question:hover,
.top-other .other-block.disease:hover {
  background-color: transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.top-other .other-title {
  margin-left: 1em;
  font-size: 18px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  .top-first-view .top-title {
    bottom: 4.392vw;
    font-size: 1.903vw;
  }
  .top-first-view .top-title::before,
  .top-first-view .top-title::after {
    bottom: -2.343vw;
  }
  .top-first-view .top-title::before {
    width: 1.098vw;
    height: 1.098vw;
    border-width: .073vw;
  }
  .top-first-view .top-title::after {
    width: .366vw;
    height: .366vw;
    border-width: .073vw;
  }
  .notice-wrapper {
    height: 3.66vw;
  }
  .top-notice .notice {
    border-width: .073vw;
    padding: .22vw .366vw;
    font-size: .878vw;
  }
  .top-notice .date {
    margin-left: 1.464vw;
    font-size: .878vw;
  }
  .top-notice .title {
    margin-left: 2.343vw;
    font-size: 1.318vw;
  }
  .top-notice .newslist {
    font-size: 1.171vw;
  }
  .top-notice .newslist a::before {
    border-width: .073vw;
  }
  .top-notice .newslist a::after {
    border-width: .073vw;
  }
  .top-medical-courses {
    padding-top: 4.392vw;
  }
  .top-medical-courses .medical-courses {
    margin-top: 1.464vw;
  }
  .top-medical-courses .medical-course .content-wrapper {
    margin-top: 1.098vw;
  }
  .top-medical-courses .medical-course-title {
    font-size: 1.464vw;
  }
  .top-medical-courses .medical-course-title::before {
    width: 1.098vw;
    height: 1.098vw;
  }
  .top-medical-courses .medical-course-title::after {
    width: .298vw;
    height: .298vw;
  }
  .top-medical-courses .medical-course-title > .reservation {
    font-size: 1.025vw;
  }
  .top-medical-courses .medical-course-title + p {
    margin-top: 1.171vw;
  }
  .top-medical-courses .medical-course-view {
    margin-top: .878vw;
  }
  .top-latest-blog {
    margin-top: 4.392vw;
    padding: 4.392vw 0;
  }
  .top-latest-blog .latest-blog-links {
    top: 2.196vw;
  }
  .top-latest-blog .latest-blogs {
    margin-top: 2.928vw;
  }
  .top-latest-blog .latest-blog .meta-wrapper {
    margin-top: 1.464vw;
  }
  .top-latest-blog .latest-blog .meta-wrapper .qa {
    padding: .22vw .732vw;
    font-size: .878vw;
    border-width: .073vw;
  }
  .top-latest-blog .latest-blog .meta-wrapper .date {
    font-size: 1.025vw;
  }
  .top-latest-blog .latest-blog .content-wrapper {
    margin-top: .439vw;
    height: 7.321vw;
  }
  .top-latest-blog .latest-blog .blog-title {
    font-size: 1.318vw;
  }
  .top-latest-blog .latest-blog .author-wrapper {
    margin-top: .366vw;
  }
  .top-latest-blog .latest-blog .author-wrapper > .image-wrapper {
    width: 2.928vw;
  }
  .top-latest-blog .latest-blog .author-wrapper .name {
    font-size: 1.025vw;
  }
  .top-latest-blog .bloglist-links-wrapper {
    margin-top: 2.452vw;
  }
  .top-latest-blog .bloglist-links-wrapper .link {
    height: 4.246vw;
  }
  .top-about-us {
    padding-top: 4.392vw;
  }
  .top-about-us .about-us-blocks {
    margin-top: 1.464vw;
  }
  .top-about-us .about-us-block {
    height: 17.57vw;
    outline-width: .073vw;
  }
  .top-about-us .about-us-block .about-us-title {
    font-size: 1.318vw;
  }
  .top-schedule {
    padding-top: 4.392vw;
  }
  .top-schedule .schedule-table-title {
    font-size: 1.464vw;
  }
  .top-schedule .schedule-table-title > .reservation {
    font-size: 1.171vw;
  }
  .top-schedule .schedule-blocks {
    margin-top: 1.464vw;
  }
  .top-schedule .schedule-block + .schedule-block {
    margin-top: 2.928vw;
  }
  .top-schedule .precautionary {
    margin-top: 1.025vw;
  }
  .top-schedule .schedule-table-title + .table-wrapper {
    margin-top: 1.464vw;
  }
  .top-schedule table thead tr {
    height: 2.928vw;
  }
  .top-schedule table tbody tr {
    height: 5.417vw;
    border-width: .073vw;
  }
  .top-other {
    margin-top: 4.392vw;
  }
  .top-other .other-block {
    height: 14.641vw;
  }
  .top-other .other-title {
    font-size: 1.318vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  .top-first-view .image-wrapper::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .top-first-view .image-wrapper img {
    width: 100%;
  }
  .top-first-view .top-title {
    margin: 0 auto;
    width: 58.667vw;
    bottom: 14vw;
    font-size: 4.8vw;
  }
  .top-first-view .top-title::before,
  .top-first-view .top-title::after {
    bottom: -5vw;
  }
  .top-first-view .top-title::before {
    width: 15px;
    height: 15px;
    border-width: 1px;
  }
  .top-first-view .top-title::after {
    width: 5px;
    height: 5px;
    border-width: 1px;
  }
  .notice-wrapper {
    height: 26.667vw;
  }
  .top-notice .container {
    display: block;
    padding-top: 4.267vw;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .top-notice a {
    display: block;
    width: 100%;
  }
  .top-notice .notice {
    display: inline-block;
    color: #dd7a55;
    border: 1px solid #dd7a55;
    padding: .667vw 1.2vw;
    font-size: 2.667vw;
  }
  .top-notice .date {
    position: absolute;
    top: 0;
    right: 0;
    margin-left: 0;
    font-size: 3.2vw;
  }
  .top-notice .title {
    margin-top: 2.267vw;
    margin-left: 0;
    font-size: 3.733vw;
  }
  .top-notice .newslist {
    margin-top: 3.067vw;
    font-size: 3.2vw;
  }
  .top-notice .newslist a {
    display: inline;
  }
  .top-notice .newslist a::before,
  .top-notice .newslist a::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
  }
  .top-notice .newslist a::before {
    right: 0;
    width: .25em;
    height: .25em;
    border-top: 1px solid #ffc1aa;
    border-right: 1px solid #ffc1aa;
    -webkit-transform: translate(-80%, -50%) rotate(45deg);
            transform: translate(-80%, -50%) rotate(45deg);
  }
  .top-notice .newslist a::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    right: -.4em;
    width: .8em;
    height: .8em;
    border: 1px solid #ffc1aa;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .top-medical-courses {
    padding-top: 5.333vw;
  }
  .top-medical-courses .medical-courses {
    margin-top: 5.333vw;
    display: block;
  }
  .top-medical-courses .medical-course {
    width: auto;
  }
  .top-medical-courses .medical-course + .medical-course {
    margin-top: 8.533vw;
  }
  .top-medical-courses .medical-course .content-wrapper {
    margin-top: 5.333vw;
  }
  .top-medical-courses .image-wrapper img {
    width: 100%;
  }
  .top-medical-courses .medical-course-title {
    font-size: 4.8vw;
    text-indent: 1.2em;
  }
  .top-medical-courses .medical-course-title::before {
    width: 3.2vw;
    height: 3.2vw;
  }
  .top-medical-courses .medical-course-title::after {
    width: .933vw;
    height: .933vw;
  }
  .top-medical-courses .medical-course-title > .reservation {
    margin-left: .5em;
    font-size: 3.2vw;
  }
  .top-medical-courses .medical-course-title + p {
    margin-top: 5.333vw;
  }
  .top-medical-courses .medical-course-view {
    margin-top: 5.333vw;
  }
  .top-latest-blog {
    margin-top: 10.667vw;
    padding: 10.667vw 0;
  }
  .top-latest-blog .container {
    position: static;
  }
  .top-latest-blog .latest-blog-links {
    margin-top: 5.333vw;
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .top-latest-blog .latest-blog-links .link + .link {
    margin-left: 1.4em;
  }
  .top-latest-blog .latest-blogs {
    margin-top: 5.333vw;
    display: block;
  }
  .top-latest-blog .latest-blog {
    width: auto;
    padding: 5.333vw 0 5.333vw 24%;
    border-top: 1px solid #d6d6d6;
    position: relative;
  }
  .top-latest-blog .latest-blog:last-of-type {
    border-bottom: 1px solid #d6d6d6;
  }
  .top-latest-blog .latest-blog:not(:nth-of-type(4n+1)) {
    margin-left: 0;
  }
  .top-latest-blog .latest-blog a > .image-wrapper {
    position: absolute;
    left: 0;
    width: 18.667vw;
    height: 18.667vw;
  }
  .top-latest-blog .latest-blog a > .image-wrapper img {
    width: 100%;
  }
  .top-latest-blog .latest-blog .meta-wrapper {
    margin-top: 0;
  }
  .top-latest-blog .latest-blog .meta-wrapper .qa {
    padding: .15em 1.35em;
    font-size: 2.667vw;
    border-width: 1px;
  }
  .top-latest-blog .latest-blog .meta-wrapper .date {
    font-size: 3.2vw;
  }
  .top-latest-blog .latest-blog .content-wrapper {
    margin-top: 3.2vw;
    height: auto;
    overflow: hidden;
  }
  .top-latest-blog .latest-blog .blog-title {
    height: 2.8em;
    font-size: 3.733vw;
    line-height: 1.4em;
    overflow: hidden;
  }
  .top-latest-blog .latest-blog .author-wrapper {
    margin-top: 2.667vw;
  }
  .top-latest-blog .latest-blog .author-wrapper > .image-wrapper {
    width: 6.933vw;
  }
  .top-latest-blog .latest-blog .author-wrapper .name {
    margin-left: .8em;
    font-size: 3.2vw;
  }
  .top-latest-blog .bloglist-links-wrapper {
    margin-top: 9vw;
  }
  .top-latest-blog .bloglist-links-wrapper .link {
    width: 81vw;
    height: 16vw;
  }
  .top-latest-blog .bloglist-links-wrapper .button-link::before {
    right: 7.4em;
  }
  .top-latest-blog .bloglist-links-wrapper .button-link::after {
    right: 7em;
  }
  .top-about-us {
    padding-top: 9.6vw;
  }
  .top-about-us .about-us-blocks {
    margin-top: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-about-us .about-us-block {
    width: 43.2vw;
    height: 43.2vw;
    outline: 1px solid #dddddd;
  }
  .top-about-us .about-us-block:nth-of-type(n+3) {
    margin-top: 4vw;
  }
  .top-about-us .about-us-block:not(:nth-of-type(4n+1)) {
    margin-left: 0;
  }
  .top-about-us .about-us-block .about-us-title {
    font-size: 3.733vw;
  }
  .top-schedule {
    padding-top: 10.133vw;
  }
  .top-schedule .schedule-table-title {
    font-size: 4.267vw;
  }
  .top-schedule .schedule-table-title > .reservation {
    font-size: 3.2vw;
  }
  .top-schedule .schedule-blocks {
    margin-top: 5.333vw;
  }
  .top-schedule .schedule-block + .schedule-block {
    margin-top: 5.867vw;
  }
  .top-schedule .precautionary {
    margin-top: 2.667vw;
    font-size: 2.667vw;
  }
  .top-schedule .table-wrapper {
    position: relative;
  }
  .top-schedule .schedule-table-title + .tableSwipe-wrap {
    margin-top: 2.667vw;
  }
  .top-schedule .schedule-block {
    margin-bottom:10vw;
  }
  .top-schedule table {
    width: 100%;
    font-size: 3.2vw;
  }
  .top-schedule table thead tr {
    height: 8vw;
    color: #fff;
    display: none;
  }
  .top-schedule table tbody {
    display: flex;
    justify-content: space-between;
  }
  .top-schedule table tbody tr{
    height:auto;
    width:100%;
  }
  .top-schedule table tbody th, .top-schedule table tbody td{
    display: block;
    width:auto;
    padding:15px 0;
  }
  .top-schedule table tbody tr th{
    background-color: #808080;
    color:white;
  }
  .top-schedule table tbody td:nth-child(even){
    background-color: white;
  }
  .top-schedule table tbody td:nth-child(odd){
    background-color: #f2f2f2;
  }
  .top-schedule table .holiday {
    font-weight: bold;
    color: #e64731;
  }
  .top-schedule table tbody tr:first-child{
    width:15%;
    min-width:80px;
  }
  .top-schedule table tbody tr:last-child{
    border-left:1px solid #ccc;
  }
  .top-schedule table tbody tr:first-child th:nth-child(odd) {
    background-color: #ed9573;
  }
  .top-schedule table tbody tr:first-child th:nth-child(even) {
    background-color: #dd7a55;
  }
  .top-schedule table tbody tr:first-child td:nth-child(even) {
    background-color: #f2f2f2;
  }
  .top-other {
    margin-top: 8vw;
    display: block;
  }
  .top-other .other-block {
    width: auto;
    height: 26.667vw;
  }
  .top-other .other-block a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 24vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .top-other .other-block a img {
    position: absolute;
    left: 15%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 16vw;
  }
  .top-other .other-title {
    margin-left: 0;
    font-size: 3.733vw;
  }
}

/* 各ページファーストビュー画像ブロック
--------------------------------------------- */
.firstview-image img {
  width: 100%;
}

/* 診療科目(medicalCourses.html)
--------------------------------------------- */
/* 診療科目 */
.medicalCourses-pageTitle + .medicalCourses-courses {
  margin-top: 40px;
}

.medicalCourses-courses .medical-course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.medicalCourses-courses .medical-course + .medical-course {
  margin-top: 60px;
}

.medicalCourses-courses .medical-course .heading-wrapper {
  width: 28%;
}

.medicalCourses-courses .medical-course .heading-wrapper h2 {
  margin-top: 40px;
}

.medicalCourses-courses .medical-course .heading-wrapper .subtitle {
  margin-top: 9px;
  font-size: 18px;
  font-weight: bold;
  text-indent: 30px;
}

.medicalCourses-courses .medical-course .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#ed9573), color-stop(62.7%, #ed9573), color-stop(62.7%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0%, #ed9573 62.7%, #999999 62.7%, #999999 100%);
}

.medicalCourses-courses .medical-course .content-wrapper {
  width: 69.2%;
}

.medicalCourses-courses .medical-course .course-list {
  margin-top: 40px;
}

.medicalCourses-courses .medical-course .course + .course {
  margin-top: 9px;
}

.medicalCourses-courses .medical-course .course a {
  border: 1px solid #dddddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  position: relative;
  height: 100px;
}

.medicalCourses-courses .medical-course .course a:hover {
  border-color: #dd7a55;
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.medicalCourses-courses .medical-course .course .image-wrapper {
  margin-left: 5.1%;
  height: 100%;
}

.medicalCourses-courses .medical-course .course .image-wrapper img {
  height: 100%;
}

.medicalCourses-courses .medical-course .course .course-title {
  margin-left: 10%;
  width: 19%;
  font-size: 18px;
}

.medicalCourses-courses .medical-course .course .course-content {
  width: 47%;
  font-size: 14px;
  line-height: 1.5em;
}

.medicalCourses-courses .medical-course .course a::before,
.medicalCourses-courses .medical-course .course a::after {
  content: '';
  position: absolute;
  right: 3%;
  display: inline-block;
  width: 2px;
  height: 5px;
  background-color: #969696;
}

.medicalCourses-courses .medical-course .course a::before {
  top: 50%;
  -webkit-transform: translateY(-100%) skewX(45deg);
          transform: translateY(-100%) skewX(45deg);
}

.medicalCourses-courses .medical-course .course a::after {
  bottom: 50%;
  -webkit-transform: translateY(100%) skewX(-45deg);
          transform: translateY(100%) skewX(-45deg);
}

/* その他 */
.medicalCourses-other {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.medicalCourses-other .other-block {
  width: 50%;
  height: 268px;
  border: 1px solid transparent;
  position: relative;
}

.medicalCourses-other .other-block:hover {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.medicalCourses-other .other-block a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

.medicalCourses-other .other-block.docter {
  background-color: #f4ecdc;
}

.medicalCourses-other .other-block.difference {
  background-color: #efe3cd;
}

.medicalCourses-other .other-block.patient {
  background-color: #ddd0b8;
}

.medicalCourses-other .other-block.docter:hover,
.medicalCourses-other .other-block.difference:hover,
.medicalCourses-other .other-block.patient:hover {
  background-color: transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.medicalCourses-other .other-block img {
  position: absolute;
  top: 22%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 22.388%;
}

.medicalCourses-other .other-title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 88%;
  font-size: 18px;
  text-align: center;
  line-height: 1.5em;
}

.medicalCourses-other p {
  width: 79.12%;
  position: absolute;
  top: 74%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 診療科目 */
  .medicalCourses-pageTitle + .medicalCourses-courses {
    margin-top: 2.928vw;
  }
  .medicalCourses-courses .medical-course {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .medicalCourses-courses .medical-course + .medical-course {
    margin-top: 4.392vw;
  }
  .medicalCourses-courses .medical-course .heading-wrapper {
    width: 28%;
  }
  .medicalCourses-courses .medical-course .heading-wrapper h2 {
    margin-top: 2.928vw;
  }
  .medicalCourses-courses .medical-course .heading-wrapper .subtitle {
    margin-top: .659vw;
    font-size: 1.318vw;
    font-weight: bold;
    text-indent: 2.196vw;
  }
  .medicalCourses-courses .medical-course .heading-wrapper::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(#ed9573), color-stop(62.7%, #ed9573), color-stop(62.7%, #999999), to(#999999));
    background: linear-gradient(90deg, #ed9573 0%, #ed9573 62.7%, #999999 62.7%, #999999 100%);
  }
  .medicalCourses-courses .medical-course .course-list {
    margin-top: 2.928vw;
  }
  .medicalCourses-courses .medical-course .course + .course {
    margin-top: .659vw;
  }
  .medicalCourses-courses .medical-course .course a {
    border: 1px solid #dddddd;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 7.321vw;
    color: inherit;
    position: relative;
  }
  .medicalCourses-courses .medical-course .course a:hover {
    border-color: #dd7a55;
    background-color: #ffe8d9;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .medicalCourses-courses .medical-course .course .image-wrapper {
    margin-left: 5.1%;
    height: 100%;
  }
  .medicalCourses-courses .medical-course .course .image-wrapper img {
    height: 100%;
  }
  .medicalCourses-courses .medical-course .course .course-title {
    margin-left: 10%;
    width: 19%;
    font-size: 1.318vw;
  }
  .medicalCourses-courses .medical-course .course .course-content {
    width: 47%;
    font-size: 1.025vw;
    line-height: 1.5em;
  }
  .medicalCourses-courses .medical-course .course a::before,
  .medicalCourses-courses .medical-course .course a::after {
    content: '';
    position: absolute;
    right: 3%;
    display: inline-block;
    width: .146vw;
    height: .366vw;
    background-color: #969696;
  }
  .medicalCourses-courses .medical-course .course a::before {
    top: 50%;
    -webkit-transform: translateY(-100%) skewX(45deg);
            transform: translateY(-100%) skewX(45deg);
  }
  .medicalCourses-courses .medical-course .course a::after {
    bottom: 50%;
    -webkit-transform: translateY(100%) skewX(-45deg);
            transform: translateY(100%) skewX(-45deg);
  }
  /* その他 */
  .medicalCourses-other {
    margin-top: 4.392vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .medicalCourses-other .other-block {
    width: 50%;
    height: 19.619vw;
    border: 1px solid transparent;
    position: relative;
  }
  .medicalCourses-other .other-block:hover {
    border-color: #dd7a55;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .medicalCourses-other .other-block a {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
  }
  .medicalCourses-other .other-block.docter {
    background-color: #f4ecdc;
  }
  .medicalCourses-other .other-block.difference {
    background-color: #efe3cd;
  }
  .medicalCourses-other .other-block.patient {
    background-color: #ddd0b8;
  }
  .medicalCourses-other .other-block.docter:hover,
  .medicalCourses-other .other-block.difference:hover,
  .medicalCourses-other .other-block.patient:hover {
    background-color: transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .medicalCourses-other .other-block img {
    position: absolute;
    top: 22%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .medicalCourses-other .other-title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 88%;
    font-size: 1.318vw;
    text-align: center;
    line-height: 1.5em;
  }
  .medicalCourses-other p {
    width: 79.12%;
    position: absolute;
    top: 80%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/* レスポンシブ：SP画面幅以下(768px以下) */
@media all and (max-width: 767px) {
  /* 診療科目 */
  .medicalCourses-pageTitle + .medicalCourses-courses {
    margin-top: 10.4vw;
  }
  .medicalCourses-courses .medical-course {
    display: block;
  }
  .medicalCourses-courses .medical-course + .medical-course {
    margin-top: 10.4vw;
  }
  .medicalCourses-courses .medical-course .heading-wrapper {
    width: auto;
  }
  .medicalCourses-courses .medical-course .heading-wrapper h2 {
    margin-top: 0;
    display: inline-block;
  }
  .medicalCourses-courses .medical-course .heading-wrapper .subtitle {
    margin-top: 0;
    font-size: 3.733vw;
    text-indent: 0;
    display: inline-block;
  }
  .medicalCourses-courses .medical-course .heading-wrapper::before {
    content: none;
  }
  .medicalCourses-courses .medical-course .content-wrapper {
    margin-top: 5.6vw;
    width: auto;
  }
  .medicalCourses-courses .medical-course .course-list {
    margin-top: 5.333vw;
  }
  .medicalCourses-courses .medical-course .course:first-of-type {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }
  .medicalCourses-courses .medical-course .course + .course {
    margin-top: 0;
    border-bottom: 1px solid #dddddd;
  }
  .medicalCourses-courses .medical-course .course a {
    border: none;
    display: block;
    padding: 5.6vw 3.733vw;
    height: auto;
  }
  .medicalCourses-courses .medical-course .course .image-wrapper {
    display: none;
  }
  .medicalCourses-courses .medical-course .course .course-title {
    margin-left: 0;
    padding-left: 1em;
    width: auto;
    font-size: 3.733vw;
    position: relative;
  }
  .medicalCourses-courses .medical-course .course .course-title::before,
  .medicalCourses-courses .medical-course .course .course-title::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
  }
  .medicalCourses-courses .medical-course .course .course-title::before {
    left: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: .8em;
    height: .8em;
    border: 1px solid #e87449;
    border-radius: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .medicalCourses-courses .medical-course .course .course-title::after {
    left: .4em;
    width: .2em;
    height: .2em;
    background-color: #e87449;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .medicalCourses-courses .medical-course .course .course-content {
    width: 74.667vw;
    margin-top: 1vw;
    font-size: 3.2vw;
    line-height: 1.58em;
  }
  .medicalCourses-courses .medical-course .course a::before,
  .medicalCourses-courses .medical-course .course a::after {
    width: .533vw;
    height: 1.333vw;
  }
  /* その他 */
  .medicalCourses-other {
    margin-top: 10.667vw;
    display: block;
  }
  .medicalCourses-other .other-block {
    width: auto;
    height: 26.667vw;
  }
  .medicalCourses-other .other-block a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5.6vw 5.75vw 0;
  }
  .medicalCourses-other .other-block img {
    top: 50%;
    left: 14%;
    height: 15vw;
  }
  .medicalCourses-other .other-title {
    position: static;
    -webkit-transform: none;
            transform: none;
    width: 68.4vw;
    font-size: 3.733vw;
    text-align: center;
    line-height: 1.5em;
    text-align: left;
    margin-left: auto;
  }
  .medicalCourses-other p {
    margin-top: 1vw;
    position: static;
    width: 68.4vw;
    font-size: 3.2vw;
    -webkit-transform: none;
            transform: none;
    margin-left: auto;
  }
}

/* 泌尿器科(medicalCourses_hinyoukika.html)
--------------------------------------------- */
/* ファーストビュー */
.medicalCourses-condition-firstview img {
  width: 100%;
  height: auto;
}

/* ページタイトル */
#maincolumn .h_brown_main {
  margin-top: 10px;
  text-align: center;
}

#maincolumn .wrap_section:nth-of-type(1) p {
  margin: 30px auto 0;
  width: 59.259259%;
}

/* トピックパス */
#breadclumb {
  padding: 20px 0;
  font-size: 14px;
}

#breadclumb a {
  margin-right: 1em;
  padding-right: 1em;
  position: relative;
}

#breadclumb a {
  margin-right: 1em;
  padding-right: 1em;
  position: relative;
}

#breadclumb a::before,
#breadclumb a::after {
  content: '';
  position: absolute;
  right: 0;
  display: inline-block;
  margin-left: 1em;
  width: .143em;
  height: 30%;
  background-color: #666666;
}

#breadclumb a::before {
  top: 50%;
  -webkit-transform: translateY(-100%) skewX(45deg);
          transform: translateY(-100%) skewX(45deg);
}

#breadclumb a::after {
  bottom: 50%;
  -webkit-transform: translateY(100%) skewX(-45deg);
          transform: translateY(100%) skewX(-45deg);
}

#breadclumb a {
  font-weight: bold;
}

/* ページ内リンク */
.wrap_section + .medicalCourses-jumpLinks {
  margin-top: 60px;
}

.medicalCourses-jumpLinks .links-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.medicalCourses-jumpLinks .link-block {
  width: 22.3%;
  height: 50px;
  text-align: center;
}

.medicalCourses-jumpLinks .link-block:not(:nth-of-type(4n+1)) {
  margin-left: 3.6%;
}

/* セクション */
.medicalCourses-jumpLinks + .wrap_section {
  margin-top: 60px;
}

.wrap_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wrap_section {
  position: relative;
}

.wrap_section + .wrap_section {
  margin-top: 40px;
}

.section_txt + .wrap_section {
  margin-top: 40px;
}

.wrap_section:nth-of-type(n+2)::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#ed9573), color-stop(62.7%, #ed9573), color-stop(62.7%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0%, #ed9573 62.7%, #999999 62.7%, #999999 100%);
}

/* セクションタイトル */
.wrap_section .h_border,
.wrap_section .h_border2 {
  margin-top: 40px;
  height: 1em;
  font-size: 30px;
  padding-left:1em;
  position: relative;
}

.wrap_section .h_border::before,
.wrap_section .h_border::after,
.wrap_section .h_border2::before,
.wrap_section .h_border2::after {
  content: '';
  position: absolute;
  left: .3em;
  top: 0.5em;
  width: 1px;
  height: 18px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, #dd7a55), color-stop(33%, transparent), color-stop(67%, transparent), color-stop(67%, #dd7a55), to(#dd7a55));
  background: linear-gradient(0deg, #dd7a55 33%, transparent 33%, transparent 67%, #dd7a55 67%, #dd7a55 100%);
}

#medicalCourses_general .wrap_section .h_border::after{
  top: .5em;
}

.wrap_section .h_border::before,
.wrap_section .h_border2::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wrap_section .h_border::after,
.wrap_section .h_border2::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.wrap_section .wrap_h_more a {
  pointer-events: none;
  color: inherit;
}

/* 右コンテンツ */
.wrap_section .section_in {
  width: 747px;
}

.wrap_section .wrap_h_more + .section_txt {
  width: 747px;
}

/* 症状・疾患名・検査種目等リンク集 */
.wrap_section .sectionlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wrap_section .sectionlist li {
  width: 49.3%;
}

.wrap_section .sectionlist li:nth-of-type(n+3) {
  margin-top: 10px;
}

.wrap_section:nth-of-type(3) + .section_txt {
  margin-top: 20px;
  text-align: right;
}

.medicalCourses-contents .inspection-block li.small {
  font-size: 13px;
}

.wrap_section .sectionlist li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em 2em 1em 1em;
  width: 100%;
  height: 100%;
  color: inherit;
  font-weight: bold;
  border: 1px solid #dd7a55;
  position: relative;
}

.wrap_section .sectionlist li a::before,
.wrap_section .sectionlist li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
}

.wrap_section .sectionlist li a::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1em;
  height: 1em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.wrap_section .sectionlist li a::after {
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-125%, -50%) rotate(45deg);
          transform: translate(-125%, -50%) rotate(45deg);
}

.wrap_section .sectionlist li a:hover {
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* 一般診療コラム */
.medicalCourses-column {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.medicalCourses-column .heading-wrapper {
  width: 300px;
  position: relative;
}

.medicalCourses-column .heading-wrapper h2 {
  margin-top: 40px;
}

.medicalCourses-column .heading-wrapper::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
}

.medicalCourses-column .contents-wrapper {
  width: 747px;
}

.medicalCourses-column .blog-block {
  padding: 20px 30px;
  border-top: 1px solid #999999;
}

.medicalCourses-column .blog-block:last-of-type {
  border-bottom: 1px solid #999999;
}

.medicalCourses-column .blog-block a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  padding-left: 37%;
  width: 100%;
  height: 100%;
  color: inherit;
}

.medicalCourses-column .blog-block a {
  position: relative;
}

.medicalCourses-column .blog-block a > .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 140px;
  overflow: hidden;
  outline: 2px solid transparent;
}

.medicalCourses-column .blog-block a:hover > .image-wrapper {
  outline-color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.medicalCourses-column .blog-block a > .image-wrapper img {
  width: 100%;
}

.medicalCourses-column .blog-block .meta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.medicalCourses-column .blog-block .meta-wrapper .medical {
  padding: .2em .3em;
  font-size: 12px;
  font-weight: bold;
  color: #e87449;
  border: 1px solid #e87449;
}

.medicalCourses-column .blog-block .meta-wrapper .date {
  font-size: 14px;
  color: #969696;
}

.medicalCourses-column .blog-block a:hover .meta-wrapper .date {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.medicalCourses-column .blog-block .info-wrapper {
  margin-top: 10px;
}

.medicalCourses-column .blog-block .info-wrapper .blog-title {
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

.medicalCourses-column .blog-block a:hover .info-wrapper .blog-title {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.medicalCourses-column .blog-block .author-wrapper {
  margin-top: 20px;
}

.medicalCourses-column .blog-block .author-wrapper .name {
  display: inline-block;
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #969696;
}

.medicalCourses-column .blog-block a:hover .author-wrapper .name {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.medicalCourses-column .blog-block .author-wrapper .image-wrapper {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
}

.medicalCourses-column .blog-block .author-wrapper .image-wrapper img {
  width: 100%;
}

.medicalCourses-column .bloglist-links-wrapper {
  margin-top: 40px;
}

.medicalCourses-column .bloglist-links-wrapper .link {
  width: 294px;
  height: 60px;
}

.medicalCourses-column .bloglist-links-wrapper .button-link::before {
  right: 3.8em;
}

.medicalCourses-column .bloglist-links-wrapper .button-link::after {
  right: 3.4em;
}

/* 診療時間 */
.consultation-hours {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.consultation-hours .heading-wrapper {
  width: 300px;
  position: relative;
}

.consultation-hours .heading-wrapper h2 {
  margin-top: 40px;
}

.consultation-hours .heading-wrapper::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
}

.consultation-hours .contents-wrapper {
  width: 747px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.consultation-hours .hours-block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
  width: 370px;
  /*height: 170px;*/
  background-color: #f4eee4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.consultation-hours dt {
  width: 27.6%;
  font-size: 18px;
  font-weight: bold;
  text-indent: 30px;
}

.consultation-hours dd {
  width: 72.4%;
  font-size: 16px;
}

.consultation-hours dd li {
  position: relative;
  padding-left: 1em;
  line-height: 1.4em;
}

.consultation-hours dd li::before {
  content: '■';
  position: absolute;
  left: 0;
}

.consultation-hours .precautionary-block {
  width: 357px;
  font-size: 14px;
  line-height: 1.42em;
}

/* 担当医表 */
.schedule-table {
  margin: 80px auto 0;
  width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.schedule-table .heading-wrapper {
  width: 300px;
  position: relative;
}

.schedule-table .heading-wrapper h2 {
  margin-top: 40px;
}

.schedule-table .heading-wrapper::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
}

.schedule-table .contents-wrapper {
  width: 747px;
}

.schedule-table .table-wrapper table {
  width: 100%;
  text-align: center;
}

.schedule-table .table-wrapper tr:first-of-type {
  height: 40px;
  color: #fff;
  background-color: #ed9573;
}

.schedule-table .table-wrapper tr:first-of-type th:nth-child(even) {
  background-color: #dd7a55;
}

.schedule-table .table-wrapper th.th_first-child {
  width: 16.8%;
}

.schedule-table .table-wrapper th:not(.th_first-child) {
  width: 10.4%;
}

.schedule-table .table-wrapper tr:nth-of-type(n+2) {
  height: 70px;
  border-bottom: 1px solid #cccccc;
}

.schedule-table .table-wrapper .rest {
  font-weight: bold;
  color: #e64731;
}

.schedule-table .table-wrapper td:nth-child(even) {
  background-color: #f2f2f2;
}

.schedule-table .precautionary {
  margin-top: 10px;
}

.schedule-table .introduction-wrapper {
  margin-top: 20px;
  width: 414px;
  height: 250px;
  background-color: #f4ecdc;
}

.schedule-table .introduction-wrapper a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding-top: 30%;
  width: 100%;
  height: 100%;
  color: inherit;
  position: relative;
}

.schedule-table .introduction-wrapper img {
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 24%;
}

.schedule-table .introduction-wrapper h3 {
  text-align: center;
  font-size: 18px;
}

.schedule-table .introduction-wrapper p {
  margin: 26px auto 0;
  width: 320px;
  font-size: 16px;
}

/* お知らせ */
.notice-news {
  margin: 60px 0 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.notice-news .heading-wrapper {
  width: 300px;
  position: relative;
}

.notice-news .heading-wrapper h2 {
  margin-top: 40px;
}

.notice-news .heading-wrapper::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(45deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
}

.notice-news .contents-wrapper {
  width: 747px;
}

.notice-news .news {
  padding: 20px 50px 20px 20px;
  border-top: 1px solid #999999;
}

.notice-news .news:last-of-type {
  border-bottom: 1px solid #999999;
}

.notice-news .news a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  color: inherit;
}

.notice-news .news a > .image-wrapper {
  width: 100px;
  height: 100px;
  overflow: hidden;
  outline: 2px solid transparent;
}

.notice-news .news a:hover > .image-wrapper {
  outline-color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.notice-news .news a > .image-wrapper img {
  width: 100%;
}

.notice-news .news .info-wrapper {
  width: 560px;
}

.notice-news .news .info-wrapper .date {
  font-size: 14px;
  color: #969696;
}

.notice-news .news a:hover .info-wrapper .date {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.notice-news .news .info-wrapper {
  margin-top: 12px;
}

.notice-news .news .info-wrapper .blog-title {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

.notice-news .news a:hover .info-wrapper .blog-title {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.notice-news .notice-links-wrapper {
  margin-top: 40px;
}

.notice-news .notice-links-wrapper .link {
  width: 294px;
  height: 60px;
}

.notice-news .notice-links-wrapper .button-link::before {
  right: 5.2em;
}

.notice-news .notice-links-wrapper .button-link::after {
  right: 4.8em;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* ページタイトル */
  #maincolumn .h_brown_main {
    margin-top: .733vw;
  }
  #maincolumn .wrap_section:nth-of-type(1) p {
    margin: 2.196vw auto 0;
  }
  /* トピックパス */
  #breadclumb {
    padding: 1.464vw 0;
    font-size: 1.025vw;
  }
  /* ページ内リンク */
  .wrap_section + .medicalCourses-jumpLinks {
    margin-top: 4.392vw;
  }
  .medicalCourses-jumpLinks .link-block {
    height: 3.66vw;
  }
  /* セクション */
  .medicalCourses-jumpLinks + .wrap_section {
    margin-top: 4.392vw;
  }
  .wrap_section + .wrap_section {
    margin-top: 2.928vw;
  }
  .section_txt + .wrap_section {
    margin-top: 2.928vw;
  }
  .wrap_section:nth-of-type(n+2)::before {
    width: 21.962vw;
  }
  /* セクションタイトル */
  .wrap_section .h_border,
  .wrap_section .h_border2 {
    margin-top: 2.928vw;
    font-size: 2.196vw;
    height:auto;
    padding-left:2rem;
    text-indent: 0;
  }
  .wrap_section .h_border::before,
  .wrap_section .h_border::after,
  .wrap_section .h_border2::before,
  .wrap_section .h_border2::after {
    height: 1.318vw;
  }
  /* 右コンテンツ */
  .wrap_section .section_in {
    width: 54.685vw;
  }
  .wrap_section .wrap_h_more + .section_txt {
    width: 54.685vw;
  }
  /* 症状・疾患名・検査種目等リンク集 */
  .wrap_section .sectionlist li:nth-of-type(n+3) {
    margin-top: .732vw;
  }
  .wrap_section:nth-of-type(3) + .section_txt {
    margin-top: 1.464vw;
  }
  .medicalCourses-contents .inspection-block li.small {
    font-size: .952vw;
  }
  /* 一般診療コラム */
  .medicalCourses-column {
    margin-top: 4.392vw;
  }
  .medicalCourses-column .heading-wrapper {
    width: 21.962vw;
  }
  .medicalCourses-column .heading-wrapper h2 {
    margin-top: 2.928vw;
  }
  .medicalCourses-column .contents-wrapper {
    width: 54.685vw;
  }
  .medicalCourses-column .blog-block {
    padding: 1.464vw 2.196vw;
  }
  .medicalCourses-column .blog-block a > .image-wrapper {
    width: 17.57vw;
    height: 10.249vw;
    outline-width: .146vw;
  }
  .medicalCourses-column .blog-block .meta-wrapper .medical {
    font-size: .878vw;
  }
  .medicalCourses-column .blog-block .meta-wrapper .date {
    font-size: 1.025vw;
  }
  .medicalCourses-column .blog-block .info-wrapper {
    margin-top: .732vw;
  }
  .medicalCourses-column .blog-block .info-wrapper .blog-title {
    font-size: 1.318vw;
  }
  .medicalCourses-column .blog-block .author-wrapper {
    margin-top: 1.464vw;
  }
  .medicalCourses-column .blog-block .author-wrapper .name {
    margin-left: .732vw;
    font-size: 1.025vw;
  }
  .medicalCourses-column .blog-block .author-wrapper .image-wrapper {
    width: 2.928vw;
    height: 2.928vw;
  }
  .medicalCourses-column .bloglist-links-wrapper {
    margin-top: 2.928vw;
  }
  .medicalCourses-column .bloglist-links-wrapper .link {
    width: 21.523vw;
    height: 4.392vw;
  }
  /* 診療時間 */
  .consultation-hours {
    margin-top: 4.392vw;
  }
  .consultation-hours .heading-wrapper {
    width: 21.962vw;
  }
  .consultation-hours .heading-wrapper h2 {
    margin-top: 2.928vw;
  }
  .consultation-hours .contents-wrapper {
    width: 54.685vw;
  }
  .consultation-hours .hours-block {
    padding: 2.196vw 0;
    width: 27.086vw;
    /*height: 12.455vw;*/
  }
  .consultation-hours dt {
    font-size: 1.318vw;
    text-indent: 2.196vw;
  }
  .consultation-hours dd {
    font-size: 1.171vw;
  }
  .consultation-hours .precautionary-block {
    width: 26.135vw;
    font-size: 1.025vw;
  }
  /* 担当医表 */
  .schedule-table {
    margin-top: 5.857vw;
    width: 80%;
  }
  .schedule-table .heading-wrapper {
    width: 21.962vw;
  }
  .schedule-table .heading-wrapper h2 {
    margin-top: 2.928vw;
  }
  .schedule-table .contents-wrapper {
    width: 54.685vw;
  }
  .schedule-table .table-wrapper tr:first-of-type {
    height: 2.928vw;
  }
  .schedule-table .table-wrapper tr:nth-of-type(n+2) {
    height: 5.124vw;
  }
  .schedule-table .precautionary {
    margin-top: .732vw;
  }
  .schedule-table .introduction-wrapper {
    margin-top: 1.464vw;
    width: 30.307vw;
    height: 18.302vw;
  }
  .schedule-table .introduction-wrapper h3 {
    font-size: 1.318vw;
  }
  .schedule-table .introduction-wrapper p {
    margin: 1.903vw auto 0;
    width: 23.426vw;
    font-size: 1.171vw;
  }
  /* お知らせ */
  .notice-news {
    margin: 4.392vw 0 8.053vw;
  }
  .notice-news .heading-wrapper {
    width: 21.962vw;
  }
  .notice-news .heading-wrapper h2 {
    margin-top: 2.928vw;
  }
  .notice-news .contents-wrapper {
    width: 54.685vw;
  }
  .notice-news .news {
    padding: 1.464vw 3.66vw 1.464vw 1.464vw;
  }
  .notice-news .news a > .image-wrapper {
    width: 7.321vw;
    height: 7.321vw;
    outline-width: .146vw;
  }
  .notice-news .news .info-wrapper {
    width: 40.996vw;
  }
  .notice-news .news .info-wrapper .date {
    font-size: 1.025vw;
  }
  .notice-news .news .info-wrapper {
    margin-top: .878vw;
  }
  .notice-news .news .info-wrapper .blog-title {
    margin-top: .586vw;
    font-size: 1.318vw;
  }
  .notice-news .notice-links-wrapper {
    margin-top: 2.928vw;
  }
  .notice-news .notice-links-wrapper .link {
    width: 21.523vw;
    height: 4.392vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #maincolumn .h_brown_main {
    margin-top: 8vw;
    font-size: 8vw;
  }
  #maincolumn .wrap_section:nth-of-type(1) p {
    margin: 9.867vw auto 0;
    width: auto;
  }
  /* トピックパス */
  #breadclumb {
    padding: 2.667vw 0;
    font-size: 3.2vw;
  }
  #breadclumb a {
    margin-right: .6em;
  }
  #breadclumb a {
    font-weight: bold;
  }
  /* ページ内リンク */
  .wrap_section + .medicalCourses-jumpLinks {
    margin-top: 5.333vw;
  }
  .medicalCourses-jumpLinks .links-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .medicalCourses-jumpLinks .link-block {
    width: 48.5%;
    height: 13.333vw;
  }
  .medicalCourses-jumpLinks .link-block:nth-of-type(n+3) {
    margin-top: 3vw;
  }
  .medicalCourses-jumpLinks .link-block:not(:nth-of-type(4n+1)) {
    margin-left: 0;
  }
  /* セクション */
  .medicalCourses-jumpLinks + .wrap_section {
    margin-top: 10.667vw;
  }
  .wrap_section {
    display: block;
  }
  .wrap_section {
    position: relative;
  }
  .wrap_section + .wrap_section {
    margin-top: 40px;
  }
  .section_txt + .wrap_section {
    margin-top: 40px;
  }
  .wrap_section:nth-of-type(n+2)::before {
    content: none;
  }
  /* セクションタイトル */
  .wrap_section .h_border,
  .wrap_section .h_border2 {
    margin-top: 2em;
    width: auto;
    font-size: 5.866vw;
  }
  .wrap_section .h_border::before,
  .wrap_section .h_border::after,
  .wrap_section .h_border2::before,
  .wrap_section .h_border2::after {
    content: '';
    position: absolute;
    left: .3em;
    top: 50%;
    width: 1px;
    height: 3.733vw;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, #dd7a55), color-stop(33%, transparent), color-stop(67%, transparent), color-stop(67%, #dd7a55), to(#dd7a55));
    background: linear-gradient(0deg, #dd7a55 33%, transparent 33%, transparent 67%, #dd7a55 67%, #dd7a55 100%);
  }
  .wrap_section .h_border::before,
  .wrap_section .h_border2::before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .wrap_section .h_border::after,
  .wrap_section .h_border2::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .wrap_section .wrap_h_more a {
    pointer-events: none;
    color: inherit;
  }
  /* 右コンテンツ */
  .wrap_section .section_in {
    margin-top: 5.333vw;
    width: auto;
  }
  .wrap_section .wrap_h_more + .section_txt {
    width: auto;
  }
  /* 症状・疾患名・検査種目等リンク集 */
  .wrap_section .sectionlist {
    display: block;
  }
  .wrap_section .sectionlist li {
    width: auto;
    border-top: 1px solid #dddddd;
  }
  .wrap_section .sectionlist li:last-of-type {
    border-bottom: 1px solid #dddddd;
  }
  .wrap_section .sectionlist li:nth-of-type(n+3) {
    margin-top: 0;
  }
  .wrap_section:nth-of-type(3) + .section_txt {
    margin-top: 20px;
    text-align: right;
  }
  .medicalCourses-contents .inspection-block li.small {
    font-size: 13px;
  }
  .wrap_section .sectionlist li a {
    padding: 1em 2em 1em 0;
    font-weight: 500;
    border: none;
  }
  .wrap_section .sectionlist li a::before {
    content: none;
  }
  .wrap_section .sectionlist li a::after {
    right: 0;
    width: 1.867vw;
    height: 1.867vw;
    border-color: #969696;
  }
  /* 一般診療コラム */
  .medicalCourses-column {
    margin-top: 10.667vw;
    display: block;
  }
  .medicalCourses-column .heading-wrapper {
    width: auto;
  }
  .medicalCourses-column .heading-wrapper h2 {
    margin-top: 0;
    font-size: 5.866vw;
  }
  .medicalCourses-column .heading-wrapper::before {
    content: none;
  }
  .medicalCourses-column .contents-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  .medicalCourses-column .blog-block {
    padding: 5.333vw 0;
    height: 18.667vw;
    border-color: #dddddd;
  }
  .medicalCourses-column .blog-block:last-of-type {
    border-color: #dddddd;
  }
  .medicalCourses-column .blog-block a {
    padding-left: 21.333vw;
  }
  .medicalCourses-column .blog-block a > .image-wrapper {
    width: 18.667vw;
    height: 18.667vw;
    outline-width: 1px;
  }
  .medicalCourses-column .blog-block .meta-wrapper .medical {
    font-size: 2.667vw;
    border-width: 1px;
  }
  .medicalCourses-column .blog-block .meta-wrapper .date {
    font-size: 3.2vw;
  }
  .medicalCourses-column .blog-block .info-wrapper {
    margin-top: 2.667vw;
  }
  .medicalCourses-column .blog-block .info-wrapper .blog-title {
    font-size: 3.733vw;
  }
  .medicalCourses-column .bloglist-links-wrapper {
    margin-top: 5.333vw;
  }
  .medicalCourses-column .bloglist-links-wrapper .link {
    margin: 0 auto;
    width: 78.4vw;
    height: 16vw;
  }
  .medicalCourses-column .bloglist-links-wrapper .button-link::before {
    right: 5.2em;
  }
  .medicalCourses-column .bloglist-links-wrapper .button-link::after {
    right: 4.8em;
  }
  /* 診療時間 */
  .consultation-hours {
    margin-top: 10.667vw;
    display: block;
  }
  .consultation-hours .heading-wrapper {
    width: auto;
    position: relative;
  }
  .consultation-hours .heading-wrapper h2 {
    margin-top: 0;
  }
  .consultation-hours .heading-wrapper::before {
    content: none;
  }
  .consultation-hours .contents-wrapper {
    width: auto;
    display: block;
  }
  .consultation-hours .hours-block {
    margin-top: 2.4vw;
    padding: 4vw 0;
    width: auto;
    height: auto;
  }
  .consultation-hours dt {
    font-size: 3.733vw;
    text-indent: 6vw;
    line-height: 1.6em;
  }
  .consultation-hours dd {
    font-size: 3.733vw;
  }
  .consultation-hours dt:nth-of-type(n+2),
  .consultation-hours dd:nth-of-type(n+2) {
    margin-top: 5vw;
  }
  .consultation-hours dd li {
    position: relative;
    padding-left: 1em;
    line-height: 1.6em;
  }
  .consultation-hours .precautionary-block {
    margin-top: 2.4vw;
    width: auto;
    font-size: 3.2vw;
  }
  /* 担当医表 */
  .schedule-table {
    margin-top: 6.933vw;
    display: block;
    width: auto;
  }
  .schedule-table .heading-wrapper {
    margin: 0 auto;
    width: 89%;
  }
  .schedule-table .heading-wrapper h2 {
    margin-top: 0;
    font-size: 3.733vw;
    padding-left: 0;
  }
  .schedule-table .heading-wrapper h2::before,
  .schedule-table .heading-wrapper h2::after {
    content: none;
  }
  .schedule-table .heading-wrapper::before {
    content: none;
  }
  .schedule-table .contents-wrapper {
    margin-top: 2.667vw;
    width: auto;
  }
  .schedule-table .tableSwipe-wrap .swipe {
    right: 10%;
  }
  .schedule-table .table-wrapper {
    margin: 0 auto;
    width: 89%;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .schedule-table .table-wrapper table {
    width: 149.333vw;
    font-size: 3.2vw;
  }
  .schedule-table .table-wrapper tr:first-of-type {
    height: 8vw;
  }
  .schedule-table .table-wrapper th.th_first-child {
    width: 14.4%;
  }
  .schedule-table .table-wrapper th:not(.th_first-child) {
    width: 10.7%;
  }
  .schedule-table .table-wrapper tr:nth-of-type(n+2) {
    height: 13.333vw;
  }
  .schedule-table .table-wrapper td:nth-child(even) {
    background-color: #f2f2f2;
  }
  .schedule-table .precautionary {
    margin: 2.667vw auto 0;
    width: 89%;
    font-size: 2.667vw;
  }
  .schedule-table .introduction-wrapper {
    margin-top: 5.333vw;
    width: auto;
    height: 26.667vw;
  }
  .schedule-table .introduction-wrapper a {
    padding: 6% 5.5% 0 26%;
  }
  .schedule-table .introduction-wrapper img {
    top: 50%;
    left: 7%;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    height: 50%;
  }
  .schedule-table .introduction-wrapper h3 {
    text-align: left;
    font-size: 3.733vw;
  }
  .schedule-table .introduction-wrapper p {
    margin: 2.133vw auto 0;
    width: auto;
    font-size: 3.2vw;
  }
  /* お知らせ */
  .notice-news {
    margin: 10.667vw 0 16vw;
    display: block;
  }
  .notice-news .heading-wrapper {
    width: auto;
    position: relative;
  }
  .notice-news .heading-wrapper h2 {
    margin-top: 0;
  }
  .notice-news .heading-wrapper::before {
    content: none;
  }
  .notice-news .contents-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  .notice-news .news {
    padding: 5.333vw 0;
    border-color: lightgray;
  }
  .notice-news .news:last-of-type {
    border-color: lightgray;
  }
  .notice-news .news a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: 100%;
    color: inherit;
  }
  .notice-news .news a > .image-wrapper {
    width: 18.667vw;
    height: 18.667vw;
    outline-width: 1px;
  }
  .notice-news .news .info-wrapper {
    width: 67.733vw;
  }
  .notice-news .news .info-wrapper .date {
    font-size: 3.2vw;
  }
  .notice-news .news .info-wrapper {
    margin-top: 0;
  }
  .notice-news .news .info-wrapper .blog-title {
    margin-top: 3.733vw;
    font-size: 3.733vw;
  }
  .notice-news .notice-links-wrapper {
    margin-top: 5.333vw;
  }
  .notice-news .notice-links-wrapper .link {
    margin: 0 auto;
    width: 78.4vw;
    height: 16vw;
  }
  .notice-news .notice-links-wrapper .button-link::before {
    right: 6.2em;
  }
  .notice-news .notice-links-wrapper .button-link::after {
    right: 5.8em;
  }
}

/* 美容皮膚科(medicalCourses_beautySkin.html)
--------------------------------------------- */
/* 各セクション */
#medicalCourses_beautySkin .wrap-section {
  margin-top: 60px;
}

#medicalCourses_beautySkin .wrap-section:last-of-type {
  margin-bottom: 140px;
}

#medicalCourses_beautySkin .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#medicalCourses_beautySkin .wrap-section .heading-wrapper {
  width: 300px;
}

#medicalCourses_beautySkin .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#medicalCourses_beautySkin .wrap-section .content-wrapper {
  width: 750px;
}

/* セクション：ページタイトルブロック */
#medicalCourses_beautySkin .title-block p {
  width: 640px;
  margin: 40px auto 0;
}

/* セクション：「美容診療内容」 */
#medicalCourses_beautySkin .beautyMedicals {
  margin-top: 30px;
}

#medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block {
  width: 22.3%;
  height: 50px;
  text-align: center;
}

#medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block:not(:nth-of-type(4n+1)) {
  margin-left: 3.6%;
}

#medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block:nth-of-type(n+5) {
  margin-top: 40px;
}

/* セクション：費用について */
#medicalCourses_beautySkin .cost {
  margin-top: 40px;
}

#medicalCourses_beautySkin .cost-wrap {
  width: 48.148148%;
  height: 50px;
  border: 1px solid #ddd;
}

#medicalCourses_beautySkin .cost-wrap a {
  display: block;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1em;
  color: inherit;
  position: relative;
}

#medicalCourses_beautySkin .cost-wrap a:hover {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicalCourses_beautySkin .cost-wrap a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: .4em;
  height: .4em;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
}

#medicalCourses_beautySkin .cost-wrap a:hover::after {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicalCourses_beautySkin .cost-wrap img {
  height: 100%;
  vertical-align: middle;
}

#medicalCourses_beautySkin .cost-wrap span {
  margin-left: .9em;
  font-size: 14px;
  font-weight: bold;
}

/* セクション：「ピックアップ」「症例」 */
#medicalCourses_beautySkin .list-wrap .list {
  padding: 20px;
  border-top: 1px solid #999999;
}

#medicalCourses_beautySkin .list-wrap .list:last-of-type {
  border-bottom: 1px solid #999999;
}

#medicalCourses_beautySkin .list-wrap .list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
}

#medicalCourses_beautySkin .list-wrap .list .image-wrap {
  margin-right: 20px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#medicalCourses_beautySkin .list-wrap .list a:hover .image-wrap {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicalCourses_beautySkin .list-wrap .list .image-wrap img {
  width: 100%;
}

#medicalCourses_beautySkin .list-wrap .list .content-wrap {
  width: 560px;
}

#medicalCourses_beautySkin .list-wrap .list .content-wrap .date {
  margin-top: 12px;
  font-size: 14px;
  color: #969696;
}

#medicalCourses_beautySkin .list-wrap .list .content-wrap .title {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

#medicalCourses_beautySkin .list-wrap .list a:hover .content-wrap .date,
#medicalCourses_beautySkin .list-wrap .list a:hover .content-wrap .title {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* リンクブロック */
#medicalCourses_beautySkin .link-wrap {
  margin-top: 40px;
  width: 294px;
  height: 60px;
}

/* セクション：「美容診療コラム」*/
#medicalCourses_beautySkin .column-list .column {
  padding: 20px 20px 20px 30px;
  border-top: 1px solid #969696;
}

#medicalCourses_beautySkin .column-list .column:last-of-type {
  border-bottom: 1px solid #969696;
}

#medicalCourses_beautySkin .column-list .column a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
}

#medicalCourses_beautySkin .column-list .column a > .image-wrap {
  margin-right: 20px;
  width: 240px;
  height: 140px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#medicalCourses_beautySkin .column-list .column a > .image-wrap img {
  width: 100%;
}

#medicalCourses_beautySkin .column-list .column a:hover > .image-wrap {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicalCourses_beautySkin .column-list .column a .content-wrap {
  width: 440px;
}

#medicalCourses_beautySkin .column-list .column a .meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#medicalCourses_beautySkin .column-list .column a .meta-wrap .cat {
  font-size: 12px;
  font-weight: bold;
  color: #e87449;
  border: 1px solid #e87449;
  padding: .2em .5em;
}

#medicalCourses_beautySkin .column-list .column a .meta-wrap .date {
  font-size: 14px;
  color: #969696;
}

#medicalCourses_beautySkin .column-list .column a .title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

#medicalCourses_beautySkin .column-list .column a .author-wrap {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#medicalCourses_beautySkin .column-list .column a .author-wrap .image-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

#medicalCourses_beautySkin .column-list .column a .author-wrap .image-wrap img {
  width: 100%;
}

#medicalCourses_beautySkin .column-list .column a .author-wrap .name {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #969696;
}

#medicalCourses_beautySkin .column-list .column a:hover .meta-wrap .date,
#medicalCourses_beautySkin .column-list .column a:hover .title,
#medicalCourses_beautySkin .column-list .column a:hover .author-wrap .name {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* セクション：「お知らせ」 */
#medicalCourses_beautySkin .notice-list .notice {
  padding: 20px;
  border-top: 1px solid #999999;
}

#medicalCourses_beautySkin .notice-list .notice:last-of-type {
  border-bottom: 1px solid #999999;
}

#medicalCourses_beautySkin .notice-list .notice a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
}

#medicalCourses_beautySkin .notice-list .notice .image-wrap {
  margin-right: 20px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#medicalCourses_beautySkin .notice-list .notice a:hover .image-wrap {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicalCourses_beautySkin .notice-list .notice .image-wrap img {
  width: 100%;
}

#medicalCourses_beautySkin .notice-list .notice .content-wrap {
  width: 560px;
}

#medicalCourses_beautySkin .notice-list .notice .content-wrap .date {
  margin-top: 12px;
  font-size: 14px;
  color: #969696;
}

#medicalCourses_beautySkin .notice-list .notice .content-wrap .title {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

#medicalCourses_beautySkin .notice-list .notice a:hover .content-wrap .date,
#medicalCourses_beautySkin .notice-list .notice a:hover .content-wrap .title {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* セクション：「顔」「肌」「体」「男性の方へ」 */
#medicalCourses_beautySkin .medical-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#medicalCourses_beautySkin .medical-list > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 49.2%;
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #dd7a55;
}

#medicalCourses_beautySkin .medical-list > li:hover {
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicalCourses_beautySkin .medical-list > li:nth-of-type(n+3) {
  margin-top: 10px;
}

#medicalCourses_beautySkin .medical-list > li > a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  height: 100%;
  color: inherit;
  padding: 1em 2em 1em 1em;
  position: relative;
}

#medicalCourses_beautySkin .medical-list > li > a::before,
#medicalCourses_beautySkin .medical-list > li > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
}

#medicalCourses_beautySkin .medical-list > li > a::before {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 1px solid #dd7a55;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#medicalCourses_beautySkin .medical-list > li > a::after {
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-125%, -50%) rotate(45deg);
          transform: translate(-125%, -50%) rotate(45deg);
}

/* セクション：「診療時間」 */
#medicalCourses_beautySkin .consultation-hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

#medicalCourses_beautySkin .consultation-hours .hours {
  width: 370px;
  padding: 30px 0;
  background-color: #f4eee4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#medicalCourses_beautySkin .consultation-hours .hours dt {
  width: 27.6%;
  font-size: 18px;
  font-weight: bold;
  text-indent: 30px;
  line-height: 1.4em;
}

#medicalCourses_beautySkin .consultation-hours .hours dd {
  width: 72.4%;
  font-size: 16px;
}

#medicalCourses_beautySkin .consultation-hours .hours dd ul > li {
  padding-left: 1em;
  line-height: 1.6em;
}

#medicalCourses_beautySkin .consultation-hours .hours dd ul > li::before {
  content: '■';
  display: inline;
}

#medicalCourses_beautySkin .consultation-hours .attention-list {
  width: 360px;
}

#medicalCourses_beautySkin .consultation-hours .attention-list > li {
  font-size: 14px;
  line-height: 1.43em;
}

/* セクション：「担当医表」 */
#medicalCourses_beautySkin .Schedule-table .table-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

#medicalCourses_beautySkin .Schedule-table table {
  width: 100%;
  font-size: 16px;
}

#medicalCourses_beautySkin .Schedule-table thead tr {
  height: 40px;
  color: #fff;
  background-color: #ed9573;
}

#medicalCourses_beautySkin .Schedule-table thead tr th:first-of-type {
  width: 16.8%;
}

#medicalCourses_beautySkin .Schedule-table thead tr th:nth-of-type(n+2) {
  width: 10.4%;
}

#medicalCourses_beautySkin .Schedule-table thead tr th:nth-of-type(even) {
  background-color: #dd7a55;
}

#medicalCourses_beautySkin .Schedule-table tbody tr {
  height: 70px;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}

#medicalCourses_beautySkin .Schedule-table tbody tr th {
  font-weight: 500;
}

#medicalCourses_beautySkin .Schedule-table tbody tr td:nth-child(even) {
  background-color: #f2f2f2;
}

#medicalCourses_beautySkin .Schedule-table tbody tr td.rest {
  font-weight: bold;
  color: #e64731;
}

#medicalCourses_beautySkin .Schedule-table .introduction-wrapper {
  margin-top: 40px;
  width: 414px;
  height: 250px;
  background-color: #f4ecdc;
  text-align: center;
}

#medicalCourses_beautySkin .Schedule-table .introduction-wrapper a {
  display: block;
  height: 100%;
  color: inherit;
}

#medicalCourses_beautySkin .Schedule-table .introduction-wrapper a img {
  margin-top: 30px;
  height: 24%;
}

#medicalCourses_beautySkin .Schedule-table .introduction-wrapper a .title {
  margin-top: 26px;
  font-size: 18px;
}

#medicalCourses_beautySkin .Schedule-table .introduction-wrapper a .text {
  margin: 28px auto 0;
  width: 320px;
  font-size: 16px;
  text-align: left;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #medicalCourses_beautySkin .wrap-section {
    margin-top: 4.392vw;
  }
  #medicalCourses_beautySkin .wrap-section:last-of-type {
    margin-bottom: 10.249vw;
  }
  /* 左の見出しブロック */
  #medicalCourses_beautySkin .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #medicalCourses_beautySkin .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #medicalCourses_beautySkin .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* セクション：ページタイトルブロック */
  #medicalCourses_beautySkin .title-block p {
    width: 46.822vw;
    margin: 2.928vw auto 0;
  }
  /* セクション：「美容診療内容」 */
  #medicalCourses_beautySkin .beautyMedicals {
    margin-top: 2.196vw;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks {
    margin-top: 2.196vw;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block {
    height: 3.66vw;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block:nth-of-type(n+5) {
    margin-top: 2.928vw;
  }
  /* セクション：費用について */
  #medicalCourses_beautySkin .cost {
    margin-top: 2.928vw;
  }
  #medicalCourses_beautySkin .cost-wrap {
    height: 3.66vw;
  }
  #medicalCourses_beautySkin .cost-wrap span {
    font-size: 1.025vw;
  }
  /* セクション：「ピックアップ」「症例」 */
  #medicalCourses_beautySkin .list-wrap .list {
    padding: 1.464vw;
  }
  #medicalCourses_beautySkin .list-wrap .list .image-wrap {
    margin-right: 1.464vw;
    width: 7.321vw;
    height: 7.321vw;
    outline-width: .146vw;
  }
  #medicalCourses_beautySkin .list-wrap .list .content-wrap {
    width: 40.966vw;
  }
  #medicalCourses_beautySkin .list-wrap .list .content-wrap .date {
    margin-top: .878vw;
    font-size: 1.025vw;
  }
  #medicalCourses_beautySkin .list-wrap .list .content-wrap .title {
    margin-top: .439vw;
    font-size: 1.318vw;
  }
  /* リンクブロック */
  #medicalCourses_beautySkin .link-wrap {
    margin-top: 2.928vw;
    width: 21.533vw;
    height: 4.392vw;
  }
  /* セクション：「美容診療コラム」*/
  #medicalCourses_beautySkin .column-list .column {
    padding: 1.464vw 1.464vw 1.464vw 2.196vw;
  }
  #medicalCourses_beautySkin .column-list .column a > .image-wrap {
    margin-right: 1.464vw;
    width: 17.57vw;
    height: 10.249vw;
    outline-width: .146vw;
  }
  #medicalCourses_beautySkin .column-list .column a .content-wrap {
    width: 32.211vw;
  }
  #medicalCourses_beautySkin .column-list .column a .meta-wrap .cat {
    font-size: .878vw;
  }
  #medicalCourses_beautySkin .column-list .column a .meta-wrap .date {
    font-size: 1.025vw;
  }
  #medicalCourses_beautySkin .column-list .column a .title {
    margin-top: .732vw;
    font-size: 1.318vw;
  }
  #medicalCourses_beautySkin .column-list .column a .author-wrap {
    margin-top: .878vw;
  }
  #medicalCourses_beautySkin .column-list .column a .author-wrap .image-wrap {
    width: 2.928vw;
    height: 2.928vw;
  }
  #medicalCourses_beautySkin .column-list .column a .author-wrap .name {
    margin-left: .732vw;
    font-size: 1.025vw;
  }
  /* セクション：「お知らせ」 */
  #medicalCourses_beautySkin .notice-list .notice {
    padding: 1.464vw;
  }
  #medicalCourses_beautySkin .notice-list .notice .image-wrap {
    margin-right: 1.464vw;
    width: 7.321vw;
    height: 7.321vw;
    outline-width: .146vw;
  }
  #medicalCourses_beautySkin .notice-list .notice .content-wrap {
    width: 40.966vw;
  }
  #medicalCourses_beautySkin .notice-list .notice .content-wrap .date {
    margin-top: .878vw;
    font-size: 1.025vw;
  }
  #medicalCourses_beautySkin .notice-list .notice .content-wrap .title {
    margin-top: .439vw;
    font-size: 1.318vw;
  }
  /* セクション：「顔」「肌」「体」「男性の方へ」 */
  #medicalCourses_beautySkin .medical-list > li {
    height: 3.66vw;
    font-size: 1.171vw;
  }
  #medicalCourses_beautySkin .medical-list > li:nth-of-type(n+3) {
    margin-top: .732vw;
  }
  /* セクション：「診療時間」 */
  #medicalCourses_beautySkin .consultation-hours .hours {
    width: 27.086vw;
    padding: 2.196vw 0;
  }
  #medicalCourses_beautySkin .consultation-hours .hours dt {
    font-size: 1.318vw;
    text-indent: 2.196vw;
  }
  #medicalCourses_beautySkin .consultation-hours .hours dd {
    font-size: 1.171vw;
  }
  #medicalCourses_beautySkin .consultation-hours .attention-list {
    width: 26.354vw;
  }
  #medicalCourses_beautySkin .consultation-hours .attention-list > li {
    font-size: 1.025vw;
  }
  /* セクション：「担当医表」 */
  #medicalCourses_beautySkin .Schedule-table table {
    font-size: 1.171vw;
  }
  #medicalCourses_beautySkin .Schedule-table thead tr {
    height: 2.928vw;
  }
  #medicalCourses_beautySkin .Schedule-table tbody tr {
    height: 5.124vw;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper {
    margin-top: 2.928vw;
    width: 30.307vw;
    height: 18.302vw;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper a img {
    margin-top: 2.196vw;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper a .title {
    margin-top: 1.903vw;
    font-size: 1.318vw;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper a .text {
    margin: 2.05vw auto 0;
    width: 23.456vw;
    font-size: 1.171vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* 各セクション */
  #medicalCourses_beautySkin .wrap-section {
    margin-top: 10.667vw;
  }
  #medicalCourses_beautySkin .wrap-section:last-of-type {
    margin-bottom: 26.667vw;
  }
  #medicalCourses_beautySkin .wrap-section .container {
    display: block;
  }
  /* 左の見出しブロック */
  #medicalCourses_beautySkin .wrap-section .heading-wrapper {
    width: auto;
  }
  #medicalCourses_beautySkin .wrap-section .heading-wrapper::before {
    content: none;
  }
  /* 右のコンテンツブロック */
  #medicalCourses_beautySkin .wrap-section .content-wrapper {
    margin-top: 4.8vw;
    width: auto;
  }
  /* セクション：ページタイトルブロック */
  #medicalCourses_beautySkin .title-block {
    margin-top: 6vw;
  }
  #medicalCourses_beautySkin .title-block p {
    width: auto;
    margin: 9.6vw auto 0;
  }
  /* セクション：「美容診療内容」 */
  #medicalCourses_beautySkin .beautyMedicals {
    margin-top: 10.667vw;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks {
    margin-top: 0;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block {
    width: 48.5%;
    height: 13.333vw;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block:not(:nth-of-type(4n+1)) {
    margin-left: 0;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block:nth-of-type(even) {
    margin-left: 3%;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block:nth-of-type(n+5) {
    margin-top: 0;
  }
  #medicalCourses_beautySkin .beautyMedicals .medicalCourses-jumpLinks .link-block:nth-of-type(n+3) {
    margin-top: 2.667vw;
  }
  /* セクション：費用について */
  #medicalCourses_beautySkin .cost {
    margin-top: 2.667vw;
  }
  #medicalCourses_beautySkin .cost-wrap {
    width: auto;
    height: 14.933vw;
    border: none;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  #medicalCourses_beautySkin .cost-wrap a {
    padding-left: .5em;
  }
  #medicalCourses_beautySkin .cost-wrap a:hover {
    color: inherit;
    -webkit-transition: none;
    transition: none;
  }
  #medicalCourses_beautySkin .cost-wrap a::after {
    right: 4%;
  }
  #medicalCourses_beautySkin .cost-wrap a:hover::after {
    border-color: #ddd;
    -webkit-transition: none;
    transition: none;
  }
  #medicalCourses_beautySkin .cost-wrap span {
    margin-left: .4em;
    font-size: 3.733vw;
  }
  /* セクション：「ピックアップ」「症例」 */
  #medicalCourses_beautySkin .list-wrap .list {
    padding: 5.333vw 0;
  }
  #medicalCourses_beautySkin .list-wrap .list .image-wrap {
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #medicalCourses_beautySkin .list-wrap .list .content-wrap {
    width: 68vw;
  }
  #medicalCourses_beautySkin .list-wrap .list .content-wrap .date {
    margin-top: 0;
    font-size: 3.2vw;
  }
  #medicalCourses_beautySkin .list-wrap .list .content-wrap .title {
    margin-top: 3.2vw;
    font-size: 3.733vw;
  }
  /* リンクブロック */
  #medicalCourses_beautySkin .link-wrap {
    margin: 5.867vw auto 0;
    width: 78.4vw;
    height: 16vw;
  }
  /* セクション：「美容診療コラム」 */
  #medicalCourses_beautySkin .column-list .column {
    padding: 5.333vw 0;
  }
  #medicalCourses_beautySkin .column-list .column a > .image-wrap {
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #medicalCourses_beautySkin .column-list .column a .content-wrap {
    width: 67.1vw;
  }
  #medicalCourses_beautySkin .column-list .column a .meta-wrap .cat {
    font-size: 2.667vw;
  }
  #medicalCourses_beautySkin .column-list .column a .meta-wrap .date {
    font-size: 3.2vw;
  }
  #medicalCourses_beautySkin .column-list .column a .title {
    margin-top: 2.667vw;
    font-size: 3.733vw;
  }
  #medicalCourses_beautySkin .column-list .column a .author-wrap {
    display: none;
  }
  /* セクション：「お知らせ」 */
  #medicalCourses_beautySkin .notice-list .notice {
    padding: 5.333vw 0;
  }
  #medicalCourses_beautySkin .notice-list .notice .image-wrap {
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #medicalCourses_beautySkin .notice-list .notice .content-wrap {
    width: 67.1vw;
  }
  #medicalCourses_beautySkin .notice-list .notice .content-wrap .date {
    font-size: 3.2vw;
    margin-top: 0;
  }
  #medicalCourses_beautySkin .notice-list .notice .content-wrap .title {
    margin-top: 2.667vw;
    font-size: 3.733vw;
  }
  /* セクション：「顔」「肌」「体」「男性の方へ」 */
  #medicalCourses_beautySkin .medical-list {
    display: block;
  }
  #medicalCourses_beautySkin .medical-list > li {
    width: auto;
    height: 11.2vw;
    font-size: 3.733vw;
    font-weight: 500;
    border: none;
    border-top: 1px solid #dddddd;
  }
  #medicalCourses_beautySkin .medical-list > li:last-of-type {
    border-bottom: 1px solid #dddddd;
  }
  #medicalCourses_beautySkin .medical-list > li:nth-of-type(n+3) {
    margin-top: 0;
  }
  #medicalCourses_beautySkin .medical-list > li > a {
    padding: 1em 2em 1em 0;
  }
  #medicalCourses_beautySkin .medical-list > li > a::before {
    content: none;
  }
  #medicalCourses_beautySkin .medical-list > li > a::after {
    right: 0;
    width: 1.867vw;
    height: 1.867vw;
    border-color: #969696;
  }
  #medicalCourses_beautySkin .face h2,
  #medicalCourses_beautySkin .skin h2,
  #medicalCourses_beautySkin .body h2,
  #medicalCourses_beautySkin .man h2 {
    margin-bottom: 2.667vw;
    padding-left: 0;
    font-size: 4.8vw;
    color: #dd7a55;
  }
  #medicalCourses_beautySkin .face h2::before,
  #medicalCourses_beautySkin .skin h2::before,
  #medicalCourses_beautySkin .body h2::before,
  #medicalCourses_beautySkin .man h2::before {
    content: none;
  }
  #medicalCourses_beautySkin .face h2::after,
  #medicalCourses_beautySkin .skin h2::after,
  #medicalCourses_beautySkin .body h2::after,
  #medicalCourses_beautySkin .man h2::after {
    content: none;
  }
  #medicalCourses_beautySkin .face {
    margin-top: 4.267vw;
  }
  /* セクション：「診療時間」 */
  #medicalCourses_beautySkin .consultation-hours {
    display: block;
  }
  #medicalCourses_beautySkin .consultation-hours .hours {
    width: auto;
    padding: 5.333vw 0;
  }
  #medicalCourses_beautySkin .consultation-hours .hours dt {
    font-size: 3.733vw;
    text-indent: 5.867vw;
  }
  #medicalCourses_beautySkin .consultation-hours .hours dd {
    font-size: 3.733vw;
  }
  #medicalCourses_beautySkin .consultation-hours .hours dd ul > li {
    line-height: 1.4em;
  }
  #medicalCourses_beautySkin .consultation-hours .hours dt:nth-of-type(n+2),
  #medicalCourses_beautySkin .consultation-hours .hours dd:nth-of-type(n+2) {
    margin-top: 5vw;
  }
  #medicalCourses_beautySkin .consultation-hours .attention-list {
    margin-top: 1.333vw;
    width: auto;
  }
  #medicalCourses_beautySkin .consultation-hours .attention-list > li {
    font-size: 3.2vw;
    line-height: 1.58em;
  }
  /* セクション：「担当医表」 */
  #medicalCourses_beautySkin .schedule .container {
    width: auto;
  }
  #medicalCourses_beautySkin .schedule .heading-wrapper {
    margin: 0 auto;
    width: 88.5%;
  }
  #medicalCourses_beautySkin .schedule .heading-wrapper h2 {
    padding-left: 0;
    font-size: 3.733vw;
  }
  #medicalCourses_beautySkin .schedule .heading-wrapper h2::before,
  #medicalCourses_beautySkin .schedule .heading-wrapper h2::after {
    content: none;
  }
  #medicalCourses_beautySkin .schedule .content-wrapper {
    margin-top: 2.667vw;
  }
  #medicalCourses_beautySkin .tableSwipe-wrap .swipe {
    right: 10%;
  }
  #medicalCourses_beautySkin .Schedule-table .table-wrapper {
    margin: 0 auto;
    width: 88.5%;
  }
  #medicalCourses_beautySkin .Schedule-table table {
    width: 146.9vw;
    font-size: 3.2vw;
  }
  #medicalCourses_beautySkin .Schedule-table thead tr {
    height: 8vw;
  }
  #medicalCourses_beautySkin .Schedule-table thead tr th:first-of-type {
    width: 18.9vw;
  }
  #medicalCourses_beautySkin .Schedule-table thead tr th:nth-of-type(n+2) {
    width: 16vw;
  }
  #medicalCourses_beautySkin .Schedule-table tbody tr {
    height: 13.333vw;
  }
  #medicalCourses_beautySkin .Schedule-table tbody tr th {
    font-weight: 500;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper {
    margin-top: 5.333vw;
    width: auto;
    height: 26.667vw;
    position: relative;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 7.2vw 5.75vw 0;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper a img {
    margin-top: 0;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 8%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper a .title {
    margin-top: 0;
    margin-left: 20vw;
    font-size: 3.733vw;
    text-align: left;
  }
  #medicalCourses_beautySkin .Schedule-table .introduction-wrapper a .text {
    margin: 2.133vw 0 0 20vw;
    width: auto;
    font-size: 3.2vw;
  }
}

/* 美容皮膚科：詳細ページ（顔・フェイスライン）
（medicalCourses_faceline.html）
--------------------------------------------- */
/* h1見出し */
#medicalCourses_beautySkin_details .page_h1 {
  margin-bottom: .6em;
  font-size: 40px;
  line-height: 1.2em;
}

/* h2見出し */
#medicalCourses_beautySkin_details .page_h2 {
  font-size: 30px;
  padding-left: 1em;
  position: relative;
  margin-bottom: .5em;
}

#medicalCourses_beautySkin_details .page_h2::before,
#medicalCourses_beautySkin_details .page_h2::after {
  content: '';
  position: absolute;
  left: .3em;
  top: .5em;
  width: 1px;
  height: 18px;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, #dd7a55), color-stop(33%, transparent), color-stop(67%, transparent), color-stop(67%, #dd7a55), to(#dd7a55));
  background: linear-gradient(0deg, #dd7a55 33%, transparent 33%, transparent 67%, #dd7a55 67%, #dd7a55 100%);
}

#medicalCourses_beautySkin_details .page_h2::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#medicalCourses_beautySkin_details .page_h2::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

/* p文章 */
#medicalCourses_beautySkin_details p {
  line-height: 1.6em;
  margin-bottom: 1em;
}

/* .layout */
#medicalCourses_beautySkin_details .layout {
  margin-bottom: 2em;
}

/* .tabs（タブメニュー） */
#medicalCourses_beautySkin_details .tabs {
  padding: 20px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* .tabs > li（個別） */
#medicalCourses_beautySkin_details .tabs > li {
  margin-bottom: 1em;
  padding: 0.5em 1.2em;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  border:1px solid #dd7a55;
  border-radius: 5px;
}

#medicalCourses_beautySkin_details .tabs > li:not(:last-child) {
  margin-right: 1.3em;
}

#medicalCourses_beautySkin_details .tabs > li a {
  color: inherit;
  pointer-events: none;
  color:#dd7a55;
}

/* .tabs > li（個別）.active */
#medicalCourses_beautySkin_details .tabs > li.active {
  pointer-events: none;
  background: #dd7a55;
}
#medicalCourses_beautySkin_details .tabs > li.active a{
  color:white;
}

/* .tabs_content（タブ各コンテンツ） */
#medicalCourses_beautySkin_details .tabs_content > div {
  display: none;
}

/* .tabs_content h1見出し */
#medicalCourses_beautySkin_details .tabs_content > div .tab_head {
  margin-bottom: 1em;
  font-size: 20px;
  margin-top:20px;
}
#medicalCourses_beautySkin_details .tabs_content > div .tab_head .red{
  font-size:16px;
}

/* .tabs_content ※スムースリンクブロック前 */
#medicalCourses_beautySkin_details .tabs_content > div > img:nth-child(-n+4) {
  margin-top: .8em;
  max-width: 100%;
}

#medicalCourses_beautySkin_details .tabs_content > div > .red,
#medicalCourses_beautySkin_details .tabs_content > div > div > div > .red  {
  font-size: 18px;
  line-height: 1.44em;
  color: #de3f3f;
  font-weight: bold;
}

/* .tabs_content img */
#medicalCourses_beautySkin_details .tabs_content > div > img {
  max-width: 100%;
}

#medicalCourses_beautySkin_details .tabs_content > div > p > img {
  max-width: 100%;
}

/* .tabs_content div > p */
#medicalCourses_beautySkin_details .tabs_content > div > div > p {
  margin-top: 1em;
}

/* .tabs_content h2 */
#medicalCourses_beautySkin_details .tabs_content > div > h2 {
  margin-bottom: .5em;
  clear: both;
  font-size: 30px;
  padding-left: 1em;
  position: relative;
}
#medicalCourses_beautySkin_details .tabs_content > div > h2:not(:first-of-type) {
  margin-top: 1.2em;
}

#medicalCourses_beautySkin_details .tabs_content > div > h2::before,
#medicalCourses_beautySkin_details .tabs_content > div > h2::after {
  content: '';
  position: absolute;
  left: .3em;
  top: .5em;
  width: 1px;
  height: .6em;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, #dd7a55), color-stop(33%, transparent), color-stop(67%, transparent), color-stop(67%, #dd7a55), to(#dd7a55));
  background: linear-gradient(0deg, #dd7a55 33%, transparent 33%, transparent 67%, #dd7a55 67%, #dd7a55 100%);
}

#medicalCourses_beautySkin_details .tabs_content > div > h2::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#medicalCourses_beautySkin_details .tabs_content > div > h2::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

/* .tabs_content ul */
#medicalCourses_beautySkin_details .tabs_content > div > h2 + ul:not([class]) {
  margin-top: 1em;
}

#medicalCourses_beautySkin_details .tabs_content > div > ul:not([class]) > li {
  line-height: 1.6em;
}

#medicalCourses_beautySkin_details .tabs_content > div > ul:not([class]) > li + li {
  margin-top: 1em;
}

#medicalCourses_beautySkin_details .tabs_content > div > ul:not([class]) > li::before {
  content: '・';
}

/* .tabs_content div */
#medicalCourses_beautySkin_details .tabs_content > div > div {
  margin-top: 1em;
}

#medicalCourses_beautySkin_details .tabs_content > div > div > div {
  margin-top: 1em;
}

/* .tabs_content div > ul */
#medicalCourses_beautySkin_details .tabs_content > div > div > div:not([class]) {
  padding-left: 1.2em;
}

#medicalCourses_beautySkin_details .tabs_content > div > div > ul {
  padding-left: 1.2em;
}

#medicalCourses_beautySkin_details .tabs_content > div > div > ul > li {
  padding-left: 1.5em;
  line-height: 1.6em;
  position: relative;
}

#medicalCourses_beautySkin_details .tabs_content > div > div > ul > li + li {
  margin-top: 1.6em;
}

#medicalCourses_beautySkin_details .tabs_content > div > div > ul > li::before {
  content: '■';
  color: #dd7a55;
  position: absolute;
  left: 0;
}

/* .tabs_content div > img */
#medicalCourses_beautySkin_details .tabs_content > div > div > img {
  max-width: 100%;
}

#medicalCourses_beautySkin_details .tabs_content > div > div > div > img {
  max-width: 100%;
}

/* .tabs_content ol */
#medicalCourses_beautySkin_details .tabs_content > div > h2 + ol:not([class]) {
  margin-top: 1em;
}

#medicalCourses_beautySkin_details .tabs_content > div > ol:not([class]) {
  margin-top: 1em;
}

#medicalCourses_beautySkin_details .tabs_content > div > ol:not([class]) > li {
  line-height: 1.6em;
}

#medicalCourses_beautySkin_details .tabs_content > div > ol:not([class]) > li + li {
  margin-top: 1em;
}

/* .tabs_content img + p */
#medicalCourses_beautySkin_details .tabs_content > div > img {
  margin-bottom: 1em;
}

/* .tabs_content ページ内リンクセクション */
#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu {
  margin-bottom: 2.6em;
  padding-top: 40px;
  clear: both;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li {
  width: 29.8%;
  height: 50px;
  background-color: #dd7a55;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li:nth-of-type(3n+2) {
  margin: 0 5.3%;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li:nth-of-type(n+4) {
  margin-top: 20px;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 12px;
  height: 100%;
  color: #fff;
  text-align: center;
  position: relative;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 15%;
  width: .5em;
  height: .5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

/* .tabs_content（テーブルコンテンツ） */
#medicalCourses_beautySkin_details .tabs_content > div > .tableSwipe-wrap {
  margin-top: 4vw;
}

#medicalCourses_beautySkin_details .tableSwipe-wrap .swipe {
  right: auto;
  left: 0;
}

#medicalCourses_beautySkin_details .table-wrapper table {
  margin-top: 1em;
  margin-bottom: 1em;
  width: 100%;
  text-align: left;
}

#medicalCourses_beautySkin_details .table-wrapper table {
  margin-top: 1em;
  margin-bottom: 1em;
  width: 100%;
  text-align: left;
}

#medicalCourses_beautySkin_details .table-wrapper thead tr {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

#medicalCourses_beautySkin_details .table-wrapper thead th:nth-child(n+2) {
  padding: .7em 1em;
  /*font-size: 12px;*/
  font-weight: 500;
  color: #fff;
  background-color: #dd7a55;
  border-left: 1px solid #cccccc;
}

#medicalCourses_beautySkin_details .table-wrapper tbody tr {
  border-bottom: 1px solid #cccccc;
}

#medicalCourses_beautySkin_details .table-wrapper tbody th {
  padding: 1em;
  color: #969696;
}

#medicalCourses_beautySkin_details .table-wrapper tbody td {
  padding: 1em;
  width: 26.7%;
  line-height: 1.6em;
  border-left: 1px solid #cccccc;
}

#medicalCourses_beautySkin_details .table-wrapper tbody td:first-of-type {
  background-color: #fff3ef;
}

#medicalCourses_beautySkin_details .table-wrapper tbody td:not(:first-of-type) {
  background-color: #f2f2f2;
}

/* .tabs_content STEP1～5の流れ(tab_in_num_list) */
#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_num_list + h2 {
  padding-top: 1.2em;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_num_list + h2::before,
#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_num_list + h2::after {
  top: 75%;
}

#medicalCourses_beautySkin_details .tab_in_num_list {
  margin-top: 30px;
}

#medicalCourses_beautySkin_details .tab_in_num_list > li {
  clear: both;
}

#medicalCourses_beautySkin_details .tab_in_num_list > li:not(:first-of-type)::before {
  content: '';
  display: block;
  margin: 0 auto 30px;
  width: 30px;
  height: 30px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#medicalCourses_beautySkin_details .tab_in_num_list .list_head {
  font-size: 20px;
  color: #dd7a55;
  font-weight: bold;
}

#medicalCourses_beautySkin_details .tab_in_num_list img {
  float: right;
  width: 35.3%;
  margin-left: 30px;
}

/* .tabs_content 症例写真(.ac) */
#medicalCourses_beautySkin_details .ac {
  text-align: left;
}

#medicalCourses_beautySkin_details .ac img {
  max-width: 100%;
}

#medicalCourses_beautySkin_details .img_provider_pc {
  display: block;
}

#medicalCourses_beautySkin_details .img_provider_sp {
  display: none;
}

#medicalCourses_beautySkin_details .tabs_content > div > .img_provider_pc > div:not([class]) {
  padding-left: 0;
}

#medicalCourses_beautySkin_details .tabs_content > div .tab_table_block {
  display: table;
  table-layout: fixed;
}

#medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image {
  display: table-cell;
  vertical-align: middle;
  padding-right:20px;
}

#medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  width: 20%;
}

#medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 .size-full {
  height: 186px;
}

#medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 div {
  margin-top: 1em;
}

#medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 .line125 {
  font-size: 12.5px;
}

/* .tabs_content 副作用(.tab_in_list) */
#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list {
  margin-top: 1em;
  padding-left: 1.2em;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list > li {
  padding-left: 1.5em;
  line-height: 1.6em;
  position: relative;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list > li::before {
  content: '■';
  color: #dd7a55;
  position: absolute;
  left: 0;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list > li:nth-of-type(n+2) {
  margin-top: 1em;
}

/* .tabs_content 副作用(.tab_in_list) + p*/
#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list + p {
  margin-top: .4em;
  padding-left: 1.5em;
  font-size: 14px;
}

#medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list + p + p {
  padding-left: 1.5em;
  font-size: 14px;
}

/* 更新日 */
#medicalCourses_beautySkin_details .last_updated {
  margin-top: 2em;
  text-align: right;
}

/* 美容に関するお悩みなら、お気軽にご相談ください：画像（PC表示） */
#medicalCourses_beautySkin_details .sp_display_none {
  margin-top: 40px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

#medicalCourses_beautySkin_details .sp_display_none img {
  max-width: 100%;
  height: auto;
}

/* 美容に関するお悩みなら、お気軽にご相談ください：HTML（SP表示） */
#medicalCourses_beautySkin_details #contact_link_sp {
  display: none;
}

/* 美容皮膚科に戻るリンク */
#medicalCourses_beautySkin_details .link-wrap {
  margin-top: 50px;
  width: 294px;
  height: 60px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* h1見出し */
  #medicalCourses_beautySkin_details .page_h1 {
    font-size: 2.928vw;
  }
  /* h2見出し */
  #medicalCourses_beautySkin_details .page_h2 {
    font-size: 2.18vw;
  }
  #medicalCourses_beautySkin_details .page_h2::before,
  #medicalCourses_beautySkin_details .page_h2::after {
    height: 1.318vw;
  }
  /* .tabs（タブメニュー） */
  #medicalCourses_beautySkin_details .tabs {
    padding: 1.464vw 1.464vw 0;
  }
  /* .tabs_content h1見出し */
  #medicalCourses_beautySkin_details .tabs_content > div .tab_head {
    font-size: 1.464vw;
  }
  /* .tabs_content p文章 赤字 ※スムースリンクブロック前 */
  #medicalCourses_beautySkin_details .tabs_content > div > .red {
    font-size: 1.317vw;
  }
  /* .tabs_content h2 */
  #medicalCourses_beautySkin_details .tabs_content > div > h2 {
    font-size: 2.196vw;
  }
  /* .tabs_content ページ内リンクセクション */
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu {
    padding-top: 2.928vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li {
    height: 3.66vw;
    border-radius: .366vw;
    font-size: 1.024vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li:nth-of-type(n+4) {
    margin-top: 1.464vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li a {
    padding-top: .878vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li a::after {
    border-width: .146vw;
  }
  #medicalCourses_beautySkin_details .table-wrapper thead th:nth-child(n+2) {
    /*font-size: .878vw;*/
  }
  /* .tabs_content STEP1～5の流れ(tab_in_num_list) */
  #medicalCourses_beautySkin_details .tab_in_num_list {
    margin-top: 2.196vw;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list > li:not(:first-of-type)::before {
    margin: 0 auto 2.196vw;
    width: 2.196vw;
    height: 2.196vw;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list .list_head {
    font-size: 1.464vw;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list img {
    margin-left: 2.196vw;
  }
  /* .tabs_content 症例写真(.ac) */
  #medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 .size-full {
    height: 13.616vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 .line125 {
    font-size: .915vw;
  }
  /* .tabs_content 副作用(.tab_in_list) + p*/
  /*
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list + p {
    font-size: 1.024vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_list + p + p {
    font-size: 1.024vw;
  }*/
  /* 美容に関するお悩みなら、お気軽にご相談ください：画像（PC表示） */
  #medicalCourses_beautySkin_details .sp_display_none {
    margin-top: 2.928vw;
  }
  /* 美容皮膚科に戻るリンク */
  #medicalCourses_beautySkin_details .link-wrap {
    margin-top: 3.66vw;
    width: 21.523vw;
    height: 4.392vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* h1見出し */
  #medicalCourses_beautySkin_details .page_h1 {
    font-size: 8vw;
    text-align: center;
  }
  /* h2見出し */
  #medicalCourses_beautySkin_details .page_h2 {
    font-size: 5.867vw;
  }
  #medicalCourses_beautySkin_details .page_h2::before,
  #medicalCourses_beautySkin_details .page_h2::after {
    height: 3.733vw;
  }
  /* .tabs（タブメニュー） */
  #medicalCourses_beautySkin_details .tabs-wrapper {
    overflow-x: scroll;
  }
  #medicalCourses_beautySkin_details .tabs {
    padding: 0em 1em 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-bottom:1px solid #dd7a55;
    align-items: flex-end;
  }
  #medicalCourses_beautySkin_details .tabs > li:not(:last-child){
    margin-right:0.3em;
  }
  /* .tabs > li（個別） */
  #medicalCourses_beautySkin_details .tabs > li {
    font-size: 3.2vw;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: 5px 5px 0 0;
    border-bottom: 0px;
    margin-bottom:0;
  }
  /* .tabs_content h1見出し */
  #medicalCourses_beautySkin_details .tabs_content > div .tab_head {
    margin-right: 0;
    width: auto;
    font-size: 4.8vw;
    float: none;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_head .red{
    font-size: 3.733vw;
  }
  /* .tabs_content img画像 ※スムースリンクブロック前 */
  #medicalCourses_beautySkin_details .tabs_content > div > img:nth-child(-n+4) {
    margin-top: 1em;
    width: 100%;
  }
  /* .tabs_content p文章 赤字 */
  #medicalCourses_beautySkin_details .tabs_content > div > .red {
    font-size: 3.733vw;
  }
  /* .tabs_content h2 */
  #medicalCourses_beautySkin_details .tabs_content > div > h2 {
    margin-top: 10.667vw;
    font-size: 5.867vw;
    clear: none;
  }
  /* .tabs_content ページ内リンクセクション */
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu {
    padding-top: 10.667vw;
    clear: both;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li {
    width: 48.5%;
    height: 13.333vw;
    border-radius: 1.333vw;
    font-size: 3.733vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li:nth-of-type(3n+2) {
    margin: 0;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li:nth-of-type(n+4) {
    margin-top: 0;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li:nth-of-type(odd) {
    margin-right: 3%;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li:nth-of-type(n+3) {
    margin-top: 2.667vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li a {
    padding-top: 3.2vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_menu > li a::after {
    border-width: 2px;
  }
  /* .tabs_content img */
  #medicalCourses_beautySkin_details .tabs_content > div > img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  /* .tabs_content div > ul */
  #medicalCourses_beautySkin_details .tabs_content > div > div > div:not([class]) {
    padding-left: 0;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > div > ul {
    padding-left: 0;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > div > ul > li {
    padding-left: 1.3em;
  }
  /* .tabs_content（テーブルコンテンツ） */
  #medicalCourses_beautySkin_details .tableSwipe-wrap {
    margin-top: 10vw;
  }
  #medicalCourses_beautySkin_details .table-wrapper {
    overflow-x: scroll;
  }
  #medicalCourses_beautySkin_details .table-wrapper table {
    width: 173.87vw;
    font-size: 3.2vw;
  }
  #medicalCourses_beautySkin_details .table-wrapper thead th:nth-child(n+2) {
    padding: .7em 1em;
    font-size: 3.2vw;
  }
  #medicalCourses_beautySkin_details .table-wrapper tbody th {
    padding: 1em;
    color: inherit;
    font-weight: 500;
  }
  #medicalCourses_beautySkin_details .table-wrapper tbody td {
    padding: 1em;
    width: 27.6%;
  }
  /* .tabs_content STEP1～5の流れ(tab_in_num_list) */
  #medicalCourses_beautySkin_details .tab_in_num_list {
    margin-top: 5.333vw;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list > li {
    clear: none;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list > li:not(:first-of-type)::before {
    margin: 0 auto 8vw;
    width: 8vw;
    height: 8vw;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list .list_head {
    font-size: 3.733vw;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list img {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-top: .2em;
  }
  #medicalCourses_beautySkin_details .tab_in_num_list img + p {
    margin-top: .8em;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_num_list + h2 {
    padding-top: 0;
  }
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_num_list + h2::before,
  #medicalCourses_beautySkin_details .tabs_content > div > .tab_in_num_list + h2::after {
    top: 50%;
  }
  /* .tabs_content 「治療の流れ」以降のタイトル→h3と同様に */
  #medicalCourses_beautySkin_details .tabs_content > div .tab_in_num_list ~ h2 {
    padding-left: 0;
    padding-bottom: .4em;
    font-size: 4.8vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_in_num_list ~ h2::before,
  #medicalCourses_beautySkin_details .tabs_content > div .tab_in_num_list ~ h2::after {
    content: '';
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
    display: block;
    width: auto;
    right: 0;
    height: 1px;
    background: none;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_in_num_list ~ h2::before {
    background-color: #ffc1aa;
    -webkit-transform: none;
            transform: none;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_in_num_list ~ h2::after {
    width: 10.667vw;
    background-color: #dd7a55;
    -webkit-transform: none;
            transform: none;
  }
  /* .tabs_content 症例写真(.ac) */
  #medicalCourses_beautySkin_details .ac {
    font-size: 3.2vw;
  }
  #medicalCourses_beautySkin_details .ac img {
    width: 100%;
    margin-bottom: .8em;
  }
  #medicalCourses_beautySkin_details .img_provider_pc {
    display: none;
  }
  #medicalCourses_beautySkin_details .img_provider_sp {
    display: block;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 .size-full {
    height: 20vw;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image02 .line125 {
    font-size: 2.13vw;
  }
  /* .tabs_content 副作用など(.tab_in_list) */
  #medicalCourses_beautySkin_details div[id^="faceline"] > .tab_in_list,
  #medicalCourses_beautySkin_details div[id^="houreisen"] > .tab_in_list {
    margin-top: .4em;
    padding-left: 0;
  }
  #medicalCourses_beautySkin_details div[id^="faceline"] > .tab_in_list > li,
  #medicalCourses_beautySkin_details div[id^="houreisen"] > .tab_in_list > li {
    padding-left: 1.3em;
  }
  #medicalCourses_beautySkin_details div[id^="faceline"] > .tab_in_list > li:nth-of-type(n+2),
  #medicalCourses_beautySkin_details div[id^="houreisen"] > .tab_in_list > li:nth-of-type(n+2) {
    margin-top: 1.6em;
  }
  /* .tabs_content 副作用(.tab_in_list) + p*/
  #medicalCourses_beautySkin_details div[id^="faceline"] > .tab_in_list + p,
  #medicalCourses_beautySkin_details div[id^="houreisen"] > .tab_in_list + p {
    margin-top: .4em;
    padding-left: 0;
    font-size: 3.733vw;
  }
  #medicalCourses_beautySkin_details div[id^="faceline"] > .tab_in_list + p + p,
  #medicalCourses_beautySkin_details div[id^="houreisen"] > .tab_in_list + p + p {
    padding-left: 0;
    font-size: 3.733vw;
  }
  /* 美容に関するお悩みなら、お気軽にご相談ください：画像（PC表示） */
  #medicalCourses_beautySkin_details .sp_display_none {
    display: none;
  }
  /* 美容に関するお悩みなら、お気軽にご相談ください：HTML周辺（SP表示） */
  #medicalCourses_beautySkin_details #contact_link_sp {
    display: block;
    margin-top: 10.667vw;
  }
  #medicalCourses_beautySkin_details #contact_link_sp h3 + p {
    margin-top: 5.333vw;
  }
  #medicalCourses_beautySkin_details #contact_link_sp p {
    line-height: 13.333vw;
    height: 13.333vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
    text-align: center;
  }
  #medicalCourses_beautySkin_details #contact_link_sp .tel {
    font-size: 7.467vw;
  }
  #medicalCourses_beautySkin_details #contact_link_sp p + p {
    margin-top: 5.333vw;
  }
  /* 美容皮膚科に戻るリンク */
  #medicalCourses_beautySkin_details .link-wrap {
    margin-top: 10.667vw;
    margin-right: auto;
    margin-left: auto;
    width: 78.4vw;
    height: 16vw;
  }
}

/* メイン&サイドカラムページ共通
--------------------------------------------- */
/* メイン */
#columnsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px auto 100px;
  width: 1080px;
}

#mainColumn {
  width: 750px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#mainColumn h1 {
  text-align: left;
}

#sideColumn {
  width: 270px;
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

#mainColumn > ul{
  margin-top:20px;
}

/* サイドカラム共通 */
#sideColumn .column-block + .column-block {
  margin-top: 40px;
}

#sideColumn .column-block .title {
  height: 45px;
  font-size: 16px;
  background-color: #f4eee4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#sideColumn .column-block .title::before {
  content: '';
  display: inline-block;
  margin-right: 11px;
  width: 5px;
  height: 100%;
  background-color: #6e573e;
}

#sideColumn .column-block .title + .contents-list {
  margin-top: 10px;
}

#sideColumn .column-block .contents-list > li {
  font-weight: bold;
  border-top: 1px solid #f2f2f2;
}

#sideColumn .column-block .contents-list > li:last-of-type {
  border-bottom: 1px solid #f2f2f2;
}

#sideColumn .column-block .contents-list > li > a {
  display: block;
  padding: 20px 0;
  color: inherit;
}

#sideColumn .column-block .contents-list > li > a:hover {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#sideColumn .column-block .contents-list .date {
  font-size: 14px;
  font-weight: 500;
  color: #969696;
}

#sideColumn .column-block .contents-list a:hover .date {
  color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#sideColumn .column-block .contents-list .date + .heading {
  margin-top: 10px;
}

#sideColumn .column-block .contents-list .heading {
  font-size: 16px;
  line-height: 1.4em;
}

/* サイドカラム共通：カラムリンクブロック */
#sideColumn .column-block .column-link {
  margin-top: 20px;
  height: 60px;
  font-size: 16px;
}

#sideColumn .button-link {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 1.2em;
  position: relative;
}

#sideColumn .button-link > .icon {
  position: absolute;
  right: 5%;
  margin-left: 0;
}

/* サイドカラム右矢印：
「一般診療」「一般診療コラム」「美容診療」「美容診療コラム」「人気ブログ」「よくある質問」「最新NEWS」 */
#sideColumn .general-medical .contents-list a,
#sideColumn .general-medical-column .contents-list a,
#sideColumn .beauty-medical .contents-list a,
#sideColumn .beauty-medical-column .contents-list a,
#sideColumn .popularity-blog .contents-list a,
#sideColumn .faq .contents-list a,
#sideColumn .dictionary .contents-list a,
#sideColumn .latest-news .contents-list a {
  position: relative;
}

#sideColumn .general-medical .contents-list a::before,
#sideColumn .general-medical .contents-list a::after,
#sideColumn .general-medical-column .contents-list a::before,
#sideColumn .general-medical-column .contents-list a::after,
#sideColumn .beauty-medical .contents-list a::before,
#sideColumn .beauty-medical .contents-list a::after,
#sideColumn .beauty-medical-column .contents-list a::before,
#sideColumn .beauty-medical-column .contents-list a::after,
#sideColumn .popularity-blog .contents-list a::before,
#sideColumn .popularity-blog .contents-list a::after,
#sideColumn .faq .contents-list a::before,
#sideColumn .faq .contents-list a::after,
#sideColumn .dictionary .contents-list a::before,
#sideColumn .dictionary .contents-list a::after,
#sideColumn .latest-news .contents-list a::before,
#sideColumn .latest-news .contents-list a::after {
  content: '';
  position: absolute;
  display: inline-block;
  right: 1em;
  width: 2px;
  height: .3em;
  background-color: #969696;
}

#sideColumn .general-medical .contents-list a:hover::before,
#sideColumn .general-medical .contents-list a:hover::after,
#sideColumn .general-medical-column .contents-list a:hover::before,
#sideColumn .general-medical-column .contents-list a:hover::after,
#sideColumn .beauty-medical .contents-list a:hover::before,
#sideColumn .beauty-medical .contents-list a:hover::after,
#sideColumn .beauty-medical-column .contents-list a:hover::before,
#sideColumn .beauty-medical-column .contents-list a:hover::after,
#sideColumn .popularity-blog .contents-list a:hover::before,
#sideColumn .popularity-blog .contents-list a:hover::after,
#sideColumn .faq .contents-list a:hover::before,
#sideColumn .faq .contents-list a:hover::after,
#sideColumn .dictionary .contents-list a:hover::before,
#sideColumn .dictionary .contents-list a:hover::after,
#sideColumn .latest-news .contents-list a:hover::before,
#sideColumn .latest-news .contents-list a:hover::after {
  background-color: #e87449;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#sideColumn .general-medical .contents-list a::before,
#sideColumn .general-medical-column .contents-list a::before,
#sideColumn .beauty-medical .contents-list a::before,
#sideColumn .beauty-medical-column .contents-list a::before,
#sideColumn .popularity-blog .contents-list a::before,
#sideColumn .faq .contents-list a::before,
#sideColumn .dictionary .contents-list a::before,
#sideColumn .latest-news .contents-list a::before {
  top: 50%;
  -webkit-transform: translateY(-100%) skewX(45deg);
          transform: translateY(-100%) skewX(45deg);
}

#sideColumn .general-medical .contents-list a::after,
#sideColumn .general-medical-column .contents-list a::after,
#sideColumn .beauty-medical .contents-list a::after,
#sideColumn .beauty-medical-column .contents-list a::after,
#sideColumn .popularity-blog .contents-list a::after,
#sideColumn .faq .contents-list a::after,
#sideColumn .dictionary .contents-list a::after,
#sideColumn .latest-news .contents-list a::after {
  bottom: 50%;
  -webkit-transform: translateY(100%) skewX(-45deg);
          transform: translateY(100%) skewX(-45deg);
}

/* サイドカラム：タイトル
「一般診療コラム」「美容診療コラム」「人気ブログ」「最新NEWS」 */
#sideColumn .general-medical-column .heading,
#sideColumn .beauty-medical-column .heading,
#sideColumn .popularity-blog .heading,
#sideColumn .latest-news .heading {
  width: 85.185%;
  height: 2.8em;
  overflow: hidden;
}

/* サイドカラム：「お知らせ」 */
#sideColumn .news .heading {
  position: relative;
  /*height: 3.2em;*/
  overflow: hidden;
}

/* サイドカラム：「月別アーカイブ」 */
#sideColumn .archives .number {
  height: 60px;
  line-height: 60px;
  position: relative;
}

#sideColumn .archives .number::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 2%;
  width: .5em;
  height: .5em;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#sideColumn .archives .number.opened::after {
  -webkit-transform: translate(-50%, -50%) rotate(225deg);
          transform: translate(-50%, -50%) rotate(225deg);
}

#sideColumn .archives .number-list {
  display: none;
  margin-top: 10px;
}

#sideColumn .archives .number-list > li {
  border: none;
  margin-bottom: 20px;
  padding-left: 1em;
}

#sideColumn .archives .number-list > li a {
  display: block;
  padding: 0;
  color: #dd7a55;
  position: relative;
}

#sideColumn .archives .number-list > li a::before,
#sideColumn .archives .number-list > li a::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
}

#sideColumn .archives .number-list > li a::before {
  left: 6em;
  width: 1em;
  height: 1em;
  border: 1px solid #dd7a55;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#sideColumn .archives .number-list > li a::after {
  left: 6.23em;
  width: .3em;
  height: .3em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* サイドカラム：「NEWSカテゴリ」 */
#sideColumn .news-category .contents-list a {
  position: relative;
}

#sideColumn .news-category .contents-list a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: .5em;
  height: .5em;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#sideColumn .news-category .contents-list a:hover::after {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* メイン */
  #columnsWrap {
    margin: 2.196vw auto 7.32vw;
    width: 80%;
  }
  #mainColumn {
    width: 69.4%;
  }
  #sideColumn {
    width: 25%;
  }
  /* サイドカラム */
  #sideColumn .column-block + .column-block {
    margin-top: 2.928vw;
  }
  #sideColumn .column-block .title {
    height: 3.294vw;
    font-size: 1.171vw;
  }
  #sideColumn .column-block .title::before {
    margin-right: .805vw;
    width: .366vw;
  }
  #sideColumn .column-block .title + .contents-list {
    margin-top: .732vw;
  }
  #sideColumn .column-block .contents-list > li a {
    padding: 1.464vw 0;
  }
  #sideColumn .column-block .contents-list .date {
    font-size: 1.025vw;
  }
  #sideColumn .column-block .contents-list .date + .heading {
    margin-top: .732vw;
  }
  #sideColumn .column-block .contents-list .heading {
    font-size: 1.171vw;
  }
  /* サイドカラム：カラムリンクブロック */
  #sideColumn .column-block .column-link {
    margin-top: 1.464vw;
    height: 4.392vw;
    font-size: 1.171vw;
  }
  /* サイドカラム右矢印：「一般診療」「一般診療コラム」「美容診療」「美容診療コラム」「人気ブログ」「よくある質問」 */
  #sideColumn .general-medical .contents-list a::before,
  #sideColumn .general-medical .contents-list a::after,
  #sideColumn .general-medical-column .contents-list a::before,
  #sideColumn .general-medical-column .contents-list a::after,
  #sideColumn .beauty-medical .contents-list a::before,
  #sideColumn .beauty-medical .contents-list a::after,
  #sideColumn .beauty-medical-column .contents-list a::before,
  #sideColumn .beauty-medical-column .contents-list a::after,
  #sideColumn .popularity-blog .contents-list a::before,
  #sideColumn .popularity-blog .contents-list a::after,
  #sideColumn .faq .contents-list a::before,
  #sideColumn .faq .contents-list a::after,
  #sideColumn .dictionary .contents-list a::before,
  #sideColumn .dictionary .contents-list a::after {
    width: .146vw;
  }
  /* サイドカラム：「月別アーカイブ」 */
  #sideColumn .archives .number {
    height: 4.392vw;
    line-height: 4.392vw;
  }
  #sideColumn .archives .number-list {
    margin-top: .732vw;
  }
  #sideColumn .archives .number-list > li {
    margin-bottom: 1.464vw;
  }
  #sideColumn .archives .number-list > li a {
    padding: 0;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* カラム全体 */
  #columnsWrap {
    display: block;
    margin: 6vw auto 26.667vw;
    width: 89.3%;
  }
  /* メインカラム */
  #mainColumn {
    width: auto;
  }
  /* サイドカラム */
  #sideColumn {
    margin-top: 10.667vw;
    width: auto;
  }
  /* カラム同士のスペース */
  #sideColumn .sp + .column-block {
    margin-top: 11.733vw;
  }
  #sideColumn .column-block + .column-block {
    margin-top: 11.733vw;
  }
  /* タイトルとカラム */
  #sideColumn .column-block .title + .contents-list {
    margin-top: 5.333vw;
  }
  /* サイドカラムタイトル */
  #sideColumn .column-block .title {
    font-size: 5.867vw;
    height: 1em;
    padding-left: 1em;
    position: relative;
    background-color: transparent;
  }
  /* サイドカラムタイトル：見出し先頭アイコン */
  #sideColumn .column-block .title::before,
  #sideColumn .column-block .title::after {
    content: '';
    position: absolute;
    left: .3em;
    top: .5em;
    width: 1px;
    height: 3.733vw;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, #dd7a55), color-stop(33%, transparent), color-stop(67%, transparent), color-stop(67%, #dd7a55), to(#dd7a55));
    background: linear-gradient(0deg, #dd7a55 33%, transparent 33%, transparent 67%, #dd7a55 67%, #dd7a55 100%);
  }
  #sideColumn .column-block .title::before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #sideColumn .column-block .title::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  /* 各カラムアイテム */
  #sideColumn .column-block .contents-list > li {
    font-weight: bold;
    border-top: 1px solid #f2f2f2;
  }
  #sideColumn .column-block .contents-list > li:last-of-type {
    border-bottom: 1px solid #f2f2f2;
  }
  #sideColumn .column-block .contents-list > li a {
    padding: 5.333vw 0;
  }
  #sideColumn .column-block .contents-list .date {
    font-size: 3.2vw;
  }
  #sideColumn .column-block .contents-list .date + .heading {
    margin-top: 2vw;
    line-height: 1.6em;
  }
  #sideColumn .column-block .contents-list .heading {
    font-size: 3.733vw;
  }
  /* 各カラム末のリンクブロック */
  #sideColumn .column-block .column-link {
    margin-top: 6.267vw;
    height: 16vw;
    font-size: 3.733vw;
  }
  #sideColumn .button-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 0;
    position: static;
  }
  #sideColumn .button-link > .icon {
    position: relative;
    right: 0;
    margin-left: .3em;
  }
  /* サイドカラム右矢印：「一般診療」「一般診療コラム」「美容診療」「美容診療コラム」「人気ブログ」 */
  #sideColumn .general-medical .contents-list a,
  #sideColumn .general-medical-column .contents-list a,
  #sideColumn .beauty-medical .contents-list a,
  #sideColumn .beauty-medical-column .contents-list a,
  #sideColumn .popularity-blog .contents-list a,
  #sideColumn .faq .contents-list a,
  #sideColumn .dictionary .contents-list a {
    content: none;
  }
  #sideColumn .general-medical .contents-list a::before,
  #sideColumn .general-medical .contents-list a::after,
  #sideColumn .general-medical-column .contents-list a::before,
  #sideColumn .general-medical-column .contents-list a::after,
  #sideColumn .beauty-medical .contents-list a::before,
  #sideColumn .beauty-medical .contents-list a::after,
  #sideColumn .beauty-medical-column .contents-list a::before,
  #sideColumn .beauty-medical-column .contents-list a::after,
  #sideColumn .popularity-blog .contents-list a::before,
  #sideColumn .popularity-blog .contents-list a::after,
  #sideColumn .faq .contents-list a::before,
  #sideColumn .faq .contents-list a::after,
  #sideColumn .dictionary .contents-list a::before,
  #sideColumn .dictionary .contents-list a::after {
    content: none;
  }
  /* サイドカラム：「一般診療」「美容診療」「病名・症例辞典」 */
  #sideColumn .general-medical .contents-list li,
  #sideColumn .beauty-medical .contents-list li,
  #sideColumn .dictionary .contents-list li {
    border: none;
    margin: 0 auto;
    width: 78.4vw;
  }
  #sideColumn .general-medical .contents-list li:nth-of-type(n+2),
  #sideColumn .beauty-medical .contents-list li:nth-of-type(n+2),
  #sideColumn .dictionary .contents-list li:nth-of-type(n+2) {
    margin-top: 2.667vw;
  }
  #sideColumn .general-medical .contents-list li a,
  #sideColumn .beauty-medical .contents-list li a,
  #sideColumn .dictionary .contents-list li a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    width: 100%;
    height: 16vw;
    font-weight: 500;
    color: #dd7a55;
    border: 1px solid #dd7a55;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #sideColumn .general-medical .contents-list li a > .icon,
  #sideColumn .beauty-medical .contents-list li a > .icon,
  #sideColumn .dictionary .contents-list li a > .icon {
    display: inline-block;
    margin-left: .3em;
    width: 1em;
    height: 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 1px solid #dd7a55;
    border-radius: 50%;
    position: relative;
  }
  #sideColumn .general-medical .contents-list li a > .icon::before,
  #sideColumn .beauty-medical .contents-list li a > .icon::before,
  #sideColumn .dictionary .contents-list li a > .icon::before {
    content: '';
    width: .3em;
    height: .3em;
    border-top: 1px solid #dd7a55;
    border-right: 1px solid #dd7a55;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-60%, -50%) rotate(45deg);
            transform: translate(-60%, -50%) rotate(45deg);
  }
  /* サイドカラム・リスト高さ：「一般診療コラム」「美容診療コラム」「お知らせ」 */
  #sideColumn .general-medical-column .contents-list a,
  #sideColumn .beauty-medical-column .contents-list a,
  #sideColumn .news .contents-list a {
    height: 18.667vw;
  }
  /* サイドカラム・アイキャッチ画像包括ブロック：「一般診療コラム」「美容診療コラム」「お知らせ」「人気ブログ」 */
  #sideColumn .general-medical-column .contents-list .image-wrapper,
  #sideColumn .beauty-medical-column .contents-list .image-wrapper,
  #sideColumn .news .contents-list .image-wrapper {
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    float: left;
  }
  /* サイドカラム・アイキャッチ画像：「一般診療コラム」「美容診療コラム」「お知らせ」「人気ブログ」 */
  #sideColumn .general-medical-column .contents-list .image-wrapper img,
  #sideColumn .beauty-medical-column .contents-list .image-wrapper img,
  #sideColumn .news .contents-list .image-wrapper img,
  #sideColumn .popularity-blog .contents-list .image-wrapper img {
    width: 100%;
  }
  /* サイドカラム・タイトル幅一杯まで：「一般診療コラム」「美容診療コラム」 */
  #sideColumn .general-medical-column .contents-list .heading,
  #sideColumn .beauty-medical-column .contents-list .heading,
  #sideColumn .popularity-blog .contents-list .heading {
    width: auto;
  }
  /* サイドカラムタイトル：「月別アーカイブ」「人気ブログ」「NEWSカテゴリ」「最新NEWS」 */
  #sideColumn .column-block.popularity-blog .title::before,
  #sideColumn .column-block.archives .title::before,
  #sideColumn .column-block.news-category .title::before,
  #sideColumn .column-block.popularity-blog .title::after,
  #sideColumn .column-block.archives .title::after,
  #sideColumn .column-block.news-category .title::after,
  #sideColumn .column-block.latest-news .title::after {
    content: none;
  }
  #sideColumn .popularity-blog .title,
  #sideColumn .archives .title,
  #sideColumn .news-category .title,
  #sideColumn .latest-news .title {
    font-size: 3.733vw;
    background: none;
    padding-left: 0;
    color: #666666;
  }
  /* サイドカラム：「人気ブログ」 */
  #sideColumn .popularity-blog .meta-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #sideColumn .popularity-blog .contents-list li {
    padding: 5.333vw 0;
  }
  #sideColumn .popularity-blog .contents-list li a {
    padding: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 21.333vw;
  }
  #sideColumn .popularity-blog .meta-wrapper .qa {
    padding: .2em 1.5em;
    font-size: 2.667vw;
    color: #e87449;
    border: 1px solid #e87449;
  }
  #sideColumn .popularity-blog .contents-list a > .image-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    overflow: hidden;
  }
  #sideColumn .popularity-blog .contents-list .author-wrapper .image-wrapper {
    margin-right: 0;
    width: 6.933vw;
    height: 6.933vw;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    overflow: hidden;
  }
  #sideColumn .popularity-blog .contents-list .heading {
    margin-top: 3.2vw;
  }
  #sideColumn .popularity-blog .contents-list .author-wrapper {
    margin-top: 2.667vw;
  }
  #sideColumn .popularity-blog .contents-list .author-wrapper .name {
    display: inline-block;
    font-size: 3.2vw;
    color: #969696;
  }
  /* サイドカラム：「月別アーカイブ」 */
  #sideColumn .archives .title {
    padding-left: 0;
    color: #666666;
  }
  #sideColumn .archives .number {
    height: 3em;
    line-height: 3em;
    position: relative;
  }
  #sideColumn .archives .number::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 2%;
    width: .5em;
    height: .5em;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    border-right: 1px solid #333333;
    border-bottom: 1px solid #333333;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #sideColumn .archives .number.opened::after {
    -webkit-transform: translate(-50%, -50%) rotate(225deg);
            transform: translate(-50%, -50%) rotate(225deg);
  }
  #sideColumn .archives .number-list {
    display: none;
    margin-top: 2.667vw;
  }
  #sideColumn .archives .number-list > li {
    border: none;
    margin-bottom: 5.333vw;
    padding-left: 1em;
  }
  #sideColumn .archives .number-list > li a {
    padding: 0;
    color: #dd7a55;
    position: relative;
  }
  #sideColumn .archives .number-list > li a::before,
  #sideColumn .archives .number-list > li a::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
  }
  #sideColumn .archives .number-list > li a::before {
    left: 24vw;
  }
  #sideColumn .archives .number-list > li a::after {
    left: 25vw;
  }
  /* サイドカラム：「NEWSカテゴリ」 */
  #sideColumn .news-category .title {
    padding-left: 0;
    color: #666666;
  }
  #sideColumn .news-category .contents-list li {
    font-weight: 500;
  }
  #sideColumn .news-category .contents-list li a {
    padding: 1em 0;
  }
  /* サイドカラム：「最新NEWS」 */
  #sideColumn .latest-news .title {
    padding-left: 0;
    color: #666666;
  }
  #sideColumn .latest-news .heading {
    height: 1.4em;
  }
  #sideColumn .latest-news .cat {
    margin-left: 1em;
    padding: .1em .5em;
    font-size: 2.667vw;
    color: #e87449;
    border: 1px solid #e87449;
  }

  #medicalCourses_beautySkin_details .tabs_content > div > div > div > img {
    max-width: 150px;
  }
  #medicalCourses_beautySkin_details .tabs_content > div .tab_table_block .tab_table_image{
    margin-right: 10px;
  }
}

/* よくあるご質問(faq.html)
/* よくあるご質問(faq-category.html)
--------------------------------------------- */
/* 各セクション */
#faq .wrap-section {
  margin-top: 40px;
}

#faq .wrap-section + .wrap-section {
  margin-top: 60px;
}

#faq .wrap-section:last-of-type {
  margin-bottom: 80px;
}

#faq .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#faq .wrap-section .heading-wrapper {
  width: 300px;
}

#faq .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#faq .wrap-section .content-wrapper {
  width: 750px;
}

/* セクション：ページタイトルブロック */
#faq .title-block h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
  -webkit-transform: translateX(8%);
          transform: translateX(8%);
}

#faq .title-block h1::before {
  content: '';
  background-image: url(../img/faq-headingIcon.png);
  background-size: cover;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: -1.1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#faq .title-block p {
  margin: 0 auto 50px;
  width: 59.259%;
}

/* セクション：ページ内リンクブロック */
#faq .medicalCourses-jumpLinks {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#faq .medicalCourses-jumpLinks .link-block {
  width: 22.3%;
}

#faq .medicalCourses-jumpLinks .link-block:not(:nth-of-type(4n+1)) {
  margin-left: 3.6%;
}

#faq .medicalCourses-jumpLinks .link-block:nth-of-type(n+5) {
  margin-top: 20px;
}

/* セクション：カテゴリタイトル */
#faq .category-title {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1.4em;
}

/* セクション：「FAQ一般診療」「FAQ美容診療」 */
#faq .faq-list > li {
  height: 60px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #dd7a55;
  position: relative;
}

#faq .faq-list > li::before {
  content: 'Q';
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-weight: 500;
  background-color: #dd7a55;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 1.667em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  font-size: 12px;
}

#faq .faq-list > li:nth-of-type(n+2) {
  margin-top: 10px;
}

#faq .faq-list > li > a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 21px 21px 21px 46px;
  height: 100%;
  line-height: 1.25em;
  color: inherit;
}

#faq .faq-list > li > a:hover {
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#faq .faq-list > li > a::before,
#faq .faq-list > li > a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#faq .faq-list > li > a::before {
  width: 1em;
  height: 1em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#faq .faq-list > li > a::after {
  width: .4em;
  height: .4em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-90%, -50%) rotate(45deg);
          transform: translate(-90%, -50%) rotate(45deg);
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #faq .wrap-section {
    margin-top: 2.928vw;
  }
  #faq .wrap-section + .wrap-section {
    margin-top: 4.392vw;
  }
  #faq .wrap-section:last-of-type {
    margin-bottom: 5.857vw;
  }
  /* 左の見出しブロック */
  #faq .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #faq .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #faq .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* セクション：ページタイトルブロック */
  #faq .title-block h1 {
    margin: 0 auto 2.928vw;
  }
  #faq .title-block p {
    margin: 0 auto 3.66vw;
  }
  /* セクション：ページ内リンクブロック */
  #faq .medicalCourses-jumpLinks {
    margin-top: 2.928vw;
  }
  #faq .medicalCourses-jumpLinks .link-block:nth-of-type(n+5) {
    margin-top: 1.464vw;
  }
  /* セクション：カテゴリタイトル */
  #faq .category-title {
    margin-bottom: 1.464vw;
    font-size: 1.464vw;
  }
  /* セクション：「FAQ一般診療」「FAQ美容診療」 */
  #faq .faq-list > li {
    height: 4.392vw;
    font-size: 1.171vw;
  }
  #faq .faq-list > li::before {
    width: 1.464vw;
    height: 1.464vw;
    left: 1.464vw;
    font-size: .878vw;
  }
  #faq .faq-list > li:nth-of-type(n+2) {
    margin-top: .732vw;
  }
  #faq .faq-list > li > a {
    padding: 1.537vw 1.537vw 1.537vw 3.367vw;
  }
  #faq .faq-list > li > a::before,
  #faq .faq-list > li > a::after {
    right: 1.464vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* 各セクション */
  #faq .wrap-section {
    margin-top: 10.667vw;
  }
  #faq .wrap-section + .wrap-section {
    margin-top: 10.667vw;
  }
  #faq .wrap-section:last-of-type {
    margin-bottom: 18.667vw;
  }
  #faq .wrap-section .container {
    display: block;
  }
  /* 左の見出しブロック */
  #faq .wrap-section .heading-wrapper {
    width: auto;
  }
  #faq .wrap-section .heading-wrapper::before {
    content: none;
  }
  /* 右のコンテンツブロック */
  #faq .wrap-section .content-wrapper {
    margin-top: 4.267vw;
    width: auto;
  }
  /* セクション：ページタイトルブロック */
  #faq .title-block h1 {
    margin: 8vw auto 40px;
  }
  #faq .title-block h1::before {
    width: .8em;
    height: .8em;
  }
  #faq .title-block p {
    margin: 0 auto;
    width: auto;
  }
  /* セクション：ページ内リンクブロック */
  #faq .medicalCourses-jumpLinks {
    margin-top: 9.6vw;
  }
  #faq .medicalCourses-jumpLinks .link-block {
    width: 48.5%;
  }
  #faq .medicalCourses-jumpLinks .link-block:not(:nth-of-type(4n+1)) {
    margin-left: 0;
  }
  #faq .medicalCourses-jumpLinks .link-block:nth-of-type(n+5) {
    margin-top: 0;
  }
  #faq .medicalCourses-jumpLinks .link-block:nth-of-type(even) {
    margin-left: 3%;
  }
  #faq .medicalCourses-jumpLinks .link-block:nth-of-type(n+3) {
    margin-top: 5.333vw;
  }
  /* セクション：カテゴリタイトル */
  #faq .category-title {
    margin-bottom: 3.2vw;
    font-size: 4.8vw;
    color: #dd7a55;
  }
  /* セクション：「FAQ一般診療」「FAQ美容診療」 */
  #faq .faq-list > li {
    height: 13.333vw;
    font-size: 3.733vw;
    font-weight: 500;
    border: none;
    border-top: 1px solid #cccccc;
  }
  #faq .faq-list > li:last-of-type {
    border-bottom: 1px solid #cccccc;
  }
  #faq .faq-list > li::before {
    width: 8vw;
    height: 8vw;
    left: 0;
    line-height: 2.143em;
    font-size: 3.733vw;
  }
  #faq .faq-list > li:nth-of-type(n+2) {
    margin-top: 0;
  }
  #faq .faq-list > li > a {
    padding: 5.067vw 5.067vw 5.067vw 10.667vw;
    line-height: 1em;
  }
  #faq .faq-list > li > a::before,
  #faq .faq-list > li > a::after {
    right: 2.667vw;
  }
  #faq .faq-list > li > a::before {
    content: none;
  }
  #faq .faq-list > li > a::after {
    width: .6em;
    height: .6em;
    border-color: #815532;
  }
}

/* よくあるご質問詳細ページ(faq-details.html)
--------------------------------------------- */
/* ご質問のメタ情報 */
#faq_details .entry-meta {
  margin-bottom: 20px;
}

#faq_details .entry-meta .post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#faq_details .entry-meta .post-categories li {
  font-size: 16px;
  border: 1px solid #fa8d37;
  border-radius: 4px;
}

#faq_details .entry-meta .post-categories li:nth-of-type(n+2) {
  margin-left: .75em;
}

#faq_details .entry-meta .post-categories li a {
  display: block;
  padding: .2em .6em;
  color: inherit;
}

/* ページタイトル */
#faq_details .entry-title {
  position: relative;
  margin-bottom: 1em;
  padding-left: 1.3em;
  font-size: 40px;
  line-height: 1.2em;
}

#faq_details .entry-title::before {
  content: 'Q';
  position: absolute;
  top: .8em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5em;
  font-family: "Helvetica Neue", Helvetica, sans-serif;
  color: #fff;
  background-color: #dd7a55;
  border-radius: 50%;
}

/* 本文基本タグ */
#faq_details .entry-content h2 {
  margin-bottom: .4em;
}

#faq_details .entry-content h3 {
  margin-bottom: .6em;
}

#faq_details .entry-content h4 {
  margin-bottom: .4em;
}

#faq_details .entry-content h5 {
  margin-bottom: .8em;
}

#faq_details .entry-content p {
  margin-bottom: 1em;
}

#faq_details .entry-content a {
  text-decoration: underline;
}

#faq_details .entry-content a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #666;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#faq_details .entry-content dl {
  margin-bottom: .6em;
}

#faq_details .entry-content div {
  margin-bottom: .6em;
}

#faq_details .entry-content figure {
  margin: 2em auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#faq_details .entry-content figure img {
  max-width: 100%;
}

#faq_details .entry-content figure figcaption {
  margin-top: 1em;
  width: inherit;
  font-size: 12px;
  font-weight: bold;
  color: #969696;
  text-align: left;
}

#faq_details .entry-content ul {
  margin-bottom: 1.6em;
}

#faq_details .entry-content ul {
  padding-left: 1.3em;
}

#faq_details .entry-content ul > li {
  line-height: 1.6em;
  position: relative;
}

#faq_details .entry-content ul > li + li {
  margin-top: 1.6em;
}

#faq_details .entry-content ul > li::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: .8em;
  left: 0;
  background-color: #dd7a55;
  -webkit-transform: translate(-160%, -50%);
          transform: translate(-160%, -50%);
}

#faq_details .entry-content dl {
  padding-left: 1.3em;
  line-height: 1.6em;
}

#faq_details .entry-content dl dt {
  position: relative;
}

#faq_details .entry-content dl dd + dt {
  margin-top: .6em;
}

#faq_details .entry-content dl dt + dt {
  margin-top: .6em;
}

#faq_details .entry-content dl dt::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: .8em;
  left: 0;
  background-color: #dd7a55;
  -webkit-transform: translate(-160%, -50%);
          transform: translate(-160%, -50%);
}

#faq_details .entry-content dl dt strong {
  font-size: 18px;
}

#faq_details .entry-content small {
  font-size: 14px;
}

/* 施術ステップ */
#faq_details .step-block .step {
  margin-bottom: 24px;
  padding-bottom: 20px;
  position: relative;
}

#faq_details .step-block .step:not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

#faq_details .step-block h5 {
  margin: 0;
  font-size: 20px;
  color: #dd7a55;
}

#faq_details .step-block p {
  margin: 0;
}

/* プロフィール紹介 */
#faq_details .profile-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
  padding: 20px 40px 20px 137px;
  background-color: #fffdf0;
  position: relative;
}

#faq_details .profile-wrapper .image-wrap {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 15px;
}

#faq_details .profile-wrapper .image-wrap img {
  width: 60%;
}

#faq_details .profile-wrapper .meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#faq_details .profile-wrapper .meta-wrap .pos {
  padding: .21em .64em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #dd7a55;
  border-radius: 5px;
}

#faq_details .profile-wrapper .meta-wrap .name {
  margin-left: 10px;
  font-size: 16px;
  font-weight: bold;
}

#faq_details .profile-wrapper .profile-wrap {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dd7a55;
}

/* リンクブロック */
#faq_details .link-wrapper .link {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
}

#faq_details .link-wrapper .link a {
  padding: 0 20px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* ご質問のメタ情報 */
  #faq_details .entry-meta {
    margin-bottom: 1.464vw;
  }
  #faq_details .entry-meta .post-categories li {
    font-size: 1.171vw;
    border-radius: .293vw;
  }
  /* ページタイトル */
  #faq_details .entry-title {
    font-size: 2.928vw;
  }
  #faq_details .entry-title::before {
    font-size: 2.196vw;
  }
  /* 本文基本タグ */
  #faq_details .entry-content figure figcaption {
    font-size: .878vw;
  }
  #faq_details .entry-content ul > li::before {
    width: .732vw;
    height: .732vw;
  }
  #faq_details .entry-content dl dt::before {
    width: .732vw;
    height: .732vw;
  }
  #faq_details .entry-content dl dt strong {
    font-size: 1.318vw;
  }
  #faq_details .entry-content small {
    font-size: 1.025vw;
  }
  /* 施術ステップ */
  #faq_details .step-block .step {
    margin-bottom: 1.757vw;
    padding-bottom: 1.464vw;
  }
  #faq_details .step-block .step:not(:last-of-type)::after {
    width: 2.562vw;
    height: 2.562vw;
  }
  #faq_details .step-block h5 {
    font-size: 1.464vw;
  }
  /* プロフィール紹介 */
  #faq_details .profile-wrapper {
    margin-top: 2.928vw;
    padding: 1.464vw 2.928vw 1.464vw 10.029vw;
  }
  #faq_details .profile-wrapper .image-wrap {
    width: 7.321vw;
    height: 7.321vw;
    top: 1.464vw;
    left: 1.098vw;
  }
  #faq_details .profile-wrapper .meta-wrap .pos {
    font-size: 1.025vw;
    border-radius: .366vw;
  }
  #faq_details .profile-wrapper .meta-wrap .name {
    margin-left: .732vw;
    font-size: 1.171vw;
  }
  #faq_details .profile-wrapper .profile-wrap {
    margin-top: 1.464vw;
    padding-top: 1.464vw;
  }
  /* リンクブロック */
  #faq_details .link-wrapper .link {
    margin-top: 2.928vw;
    height: 4.392vw;
  }
  #faq_details .link-wrapper .link a {
    padding: 0 1.464vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ご質問のメタ情報 */
  #faq_details .entry-meta {
    margin-bottom: 5.333vw;
  }
  #faq_details .entry-meta .post-categories li {
    font-size: 2.667vw;
    border-radius: 1.067vw;
  }
  /* ページタイトル */
  #faq_details .entry-title {
    font-size: 8vw;
  }
  #faq_details .entry-title::before {
    top: 1.2em;
    width: 2.14em;
    height: 2.14em;
    font-size: 3.733vw;
    line-height: 2.14em;
  }
  /* 本文基本タグ */
  #faq_details .entry-content h2 {
    font-size: 4.8vw;
  }
  #faq_details .entry-content h4 {
    font-size: 4.267vw;
  }
  #faq_details .entry-content p {
    margin-bottom: 1.6em;
  }
  #faq_details .entry-content figure figcaption {
    font-size: 3.2vw;
  }
  #faq_details .entry-content ul > li::before {
    width: 2.667vw;
    height: 2.667vw;
  }
  #faq_details .entry-content dl {
    line-height: 1.6em;
    font-size: 3.2vw;
  }
  #faq_details .entry-content dl dt::before {
    width: 2.667vw;
    height: 2.667vw;
  }
  #faq_details .entry-content dl dt strong {
    font-size: 3.2vw;
  }
  #faq_details .entry-content small {
    font-size: 3.2vw;
  }
  /* 施術ステップ */
  #faq_details .step-block .step {
    margin-bottom: 5.333vw;
    padding-bottom: 4.267vw;
  }
  #faq_details .step-block .step:not(:last-of-type)::after {
    width: 9.333vw;
    height: 9.333vw;
  }
  #faq_details .step-block h5 {
    font-size: 3.733vw;
  }
  #faq_details .step-block p {
    margin: 0;
  }
  /* プロフィール紹介 */
  #faq_details .profile-wrapper {
    margin-top: 5.333vw;
    padding: 5.333vw 5.333vw 5.333vw 35.733vw;
  }
  #faq_details .profile-wrapper .image-wrap {
    width: 26.667vw;
    height: 26.667vw;
    top: 2.333vw;
    left: 5.333vw;
  }
  #faq_details .profile-wrapper .meta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #faq_details .profile-wrapper .meta-wrap .pos {
    padding: .35em .66em;
    font-size: 3.2vw;
    line-height: 1em;
    border-radius: 1.333vw;
  }
  #faq_details .profile-wrapper .meta-wrap .name {
    margin-left: 1.6vw;
    font-size: 3.733vw;
  }
  #faq_details .profile-wrapper .profile-wrap {
    margin-top: 2.133vw;
    padding-top: 2.667vw;
  }
  #faq_details .profile-wrapper .profile-wrap p {
    font-size: 3.2vw;
    line-height: 1.5em;
  }
  /* リンクブロック */
  #faq_details .link-wrapper .link {
    margin-top: 10.667vw;
    width: auto;
    height: 16vw;
  }
  #faq_details .link-wrapper .link a {
    padding: 0;
  }
}

/* 一般診療　詳細ページ (medicalCourses_zenritsunen.html)
/* 美容診療　詳細ページ (medicalCourses_faceline.html)
--------------------------------------------- */
/* メインカラム内 */
#generalMedical_details #mainColumn .heading1-sub,
#beautyMedical_details #mainColumn .heading1-sub {
  text-align: left;
  margin-bottom: .5em;
}

#generalMedical_details #mainColumn > h1,
#beautyMedical_details #mainColumn > h1 {
  margin-bottom: .75em;
}

#generalMedical_details #mainColumn > h2,
#beautyMedical_details #mainColumn > h2 {
  margin-bottom: .5em;
}

#generalMedical_details #mainColumn > h2:not(:first-of-type),
#beautyMedical_details #mainColumn > h2:not(:first-of-type) {
  margin-top: 2em;
}

#generalMedical_details h2.h_border {
  margin-top: 2em;
  margin-bottom: .67em;
  line-height: 130%;
  height:auto;
}

#generalMedical_details #mainColumn > h3,
#beautyMedical_details #mainColumn > h3,
main h3.h_rbrown {
  margin-bottom: .5em;
}

#generalMedical_details #mainColumn > h3:not(:first-of-type),
#beautyMedical_details #mainColumn > h3:not(:first-of-type),
main h3.h_rbrown {
  margin-top: 1em;
}

#generalMedical_details #mainColumn > p,
#beautyMedical_details #mainColumn > p,
.wysiwygArea .wrap_section p {
  margin-bottom: 1em;
}

#generalMedical_details #mainColumn > ul,
#beautyMedical_details #mainColumn > ul {
  margin-bottom: 1em;
}

#generalMedical_details > div,
#beautyMedical_details > div {
  margin-bottom: 1em;
}

#generalMedical_details table,
#beautyMedical_details table {
  margin-bottom: 1em;
}

/* 症状スコア */
#generalMedical_details .table-wrapper table {
  width: 100%;
}

#generalMedical_details .table-wrapper table thead tr {
  height: 30px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-color: #ed9573;
}

#generalMedical_details .table-wrapper table thead td:first-of-type {
  width: 31.7%;
}

#generalMedical_details .table-wrapper table thead td:nth-of-type(even) {
  background-color: #dd7a55;
}

#generalMedical_details .table-wrapper table tbody tr {
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}

#generalMedical_details .table-wrapper table tbody td {
  padding: 16px;
}

#generalMedical_details .table-wrapper table tbody td:first-of-type {
  text-align: left;
}

#generalMedical_details .table-wrapper table tbody td:nth-of-type(even) {
  background-color: #dddddd;
}

#generalMedical_details #mainColumn ul li {
  line-height: 1.6em;
}

#generalMedical_details #mainColumn ul li::before {
  content: '・';
}

/* 「前立腺肥大症：処方する薬」ブロック */
#medicine {
  margin-top: 20px;
}

#generalMedical_details .wrap_section {
  display: block;
}

#generalMedical_details .wrap_section::before {
  content: none;
}

#medicine .box_medicine {
  border-top: 1px solid #f2f2f2;
}

#medicine .box_medicine:last-of-type {
  border-bottom: 1px solid #f2f2f2;
}

#medicine h3 {
  padding: 1em 0;
  font-size: 16px;
  line-height: 1em;
  text-indent: 1em;
  position: relative;
  cursor: pointer;
}

#medicine h3:hover {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicine h3::before {
  content: none;
}

#medicine h3::after {
  content: '';
  position: absolute;
  top: 50%;
  left: auto;
  right: 3%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 4px;
  height: 4px;
  background-color: transparent;
  border-right: 1px solid #999999;
  border-bottom: 1px solid #999999;
}

#medicine h3:hover::after {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicine h3.opened::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#medicine .drug {
  display: none;
}

#medicine .cf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#medicine .area_photo {
  width: 200px;
  height: 105px;
}

#medicine .area_photo:nth-of-type(n+2) {
  margin-left: 17px;
}

#medicine .area_photo img {
  width: 100%;
  height: 100%;
}

#medicine .cf + h4 {
  margin-top: 30px;
}

#medicine h4 {
  font-size: 16px;
  line-height: 1.6em;
}

#medicine h4::before {
  content: '■';
  margin-right: .3em;
}

#medicine p + h4 {
  margin-top: 8px;
}

#medicine .section {
  padding: 0 40px 30px;
}

#generalMedical_details .link {
  margin-top: 30px;
  margin-bottom: 110px;
  width: 294px;
  height: 60px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 症状スコア */
  #generalMedical_details .table-wrapper table thead tr {
    height: 2.196vw;
    font-size: .878vw;
  }
  #generalMedical_details .table-wrapper table tbody tr {
    font-size: 1.025vw;
  }
  #generalMedical_details .table-wrapper table tbody td {
    padding: 1.171vw;
  }
  /* 処方する薬ブロック */
  #medicine {
    margin-top: 1.464vw;
  }
  #medicine h3 {
    font-size: 1.171vw;
  }
  #medicine h3::after {
    width: .293vw;
    height: .293vw;
  }
  #medicine .area_photo {
    width: 14.641vw;
    height: 7.687vw;
  }
  #medicine .area_photo:nth-of-type(n+2) {
    margin-left: 1.244vw;
  }
  #medicine .cf + h4 {
    margin-top: 2.196vw;
  }
  #medicine h4 {
    font-size: 1.171vw;
  }
  #medicine p + h4 {
    margin-top: .586vw;
  }
  #medicine .section {
    padding: 0 2.928vw 2.196vw;
  }
  #generalMedical_details .link {
    margin-top: 2.196vw;
    margin-bottom: 8.053vw;
    width: 21.523vw;
    height: 4.392vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* メインカラム */
  #generalMedical_details #mainColumn .heading1-sub {
    text-align: center;
  }
  #generalMedical_details #mainColumn h1 {
    text-align: center;
  }
  /* 症状スコア */
  #generalMedical_details .tableSwipe-wrap {
    margin-top: 13.333vw;
  }
  #generalMedical_details .tableSwipe-wrap .swipe {
    right: auto;
    left: 0;
  }
  #generalMedical_details p + .table-wrapper {
    margin-top: 10px;
  }
  #generalMedical_details .table-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
  }
  #generalMedical_details .table-wrapper table {
    width: 163.2vw;
  }
  #generalMedical_details .table-wrapper table thead tr {
    height: 8vw;
    font-size: 3.2vw;
  }
  #generalMedical_details .table-wrapper table thead td:first-of-type {
    width: 30%;
  }
  #generalMedical_details .table-wrapper table thead td:not(:first-of-type) {
    width: 11.5%;
  }
  #generalMedical_details .table-wrapper table tbody tr {
    font-size: 3.2vw;
  }
  #generalMedical_details .table-wrapper table tbody td {
    padding: .6em .5em .6em .3em;
  }
  #generalMedical_details .table-wrapper table tbody td:first-of-type {
    text-align: left;
  }
  #generalMedical_details .table-wrapper table tbody td:nth-of-type(even) {
    background-color: #dddddd;
  }
  /* 処方する薬ブロック */
  #generalMedical_details .wrap_section {
    margin-top: 10.667vw;
  }
  #medicine {
    margin-top: 5.333vw;
  }
  #medicine h3 {
    font-size: 3.733vw;
    padding-left: 1em;
    text-indent: 0;
    line-height: 1.2em;
    padding-right: 8%;
  }
  #medicine h3:hover {
    font-size: 3.733vw;
    color: inherit;
  }
  #medicine h3::after {
    width: 1.867vw;
    height: 1.867vw;
    border-color: #333333;
  }
  #medicine h3:hover::after {
    border-color: inherit;
  }
  #medicine .cf {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #medicine .area_photo {
    width: 49.32%;
    height: 26.667vw;
  }
  #medicine .area_photo:nth-of-type(n+3) {
    margin-top: 1.333vw;
  }
  #medicine .area_photo:nth-of-type(n+2) {
    margin-left: 0;
  }
  #medicine .area_photo img {
    width: 100%;
  }
  #medicine .cf + h4 {
    margin-top: 5.333vw;
  }
  #medicine h4 {
    font-size: 3.733vw;
    line-height: 1.6em;
  }
  #medicine h4::before {
    content: '■';
    margin-right: .3em;
  }
  #medicine p + h4 {
    margin-top: 5.333vw;
  }
  #medicine .section {
    margin: 0 auto;
    padding: 2.667vw 0 8vw;
    width: 78.4vw;
  }
  /* メインカラム内リンク */
  #generalMedical_details .link {
    margin: 5.333vw auto 10.667vw;
    width: 78.4vw;
    height: 16vw;
  }
}

/* 患者さんの声ページ(patient.html)
--------------------------------------------- */
/* ページタイトルブロック */
#patientsVoice .title-block {
  margin-bottom: 16px;
}

#patientsVoice .title-block h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
}

#patientsVoice .title-block h1::before {
  content: '';
  background-image: url(../img/patients-headingIcon.png);
  background-size: cover;
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: -1.6em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 患者さんの声一覧 */
#patientsVoice .patients-voice-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#patientsVoice .patients-voice-list li {
  width: 49.53%;
  height: 110px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dd7a55;
}

#patientsVoice .patients-voice-list li:nth-of-type(n+3) {
  margin-top: 12px;
}

#patientsVoice .patients-voice-list li a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 20px;
  padding-right: 58px;
  height: 100%;
  color: inherit;
  position: relative;
}

#patientsVoice .patients-voice-list li a::before,
#patientsVoice .patients-voice-list li a::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 5%;
}

#patientsVoice .patients-voice-list li a::before {
  width: 15px;
  height: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dd7a55;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}

#patientsVoice .patients-voice-list li a::after {
  width: 5px;
  height: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-120%, -50%) rotate(45deg);
          transform: translate(-120%, -50%) rotate(45deg);
}

#patientsVoice .patients-voice-list li a:hover {
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#patientsVoice .patients-voice-list li a .date {
  font-size: 14px;
  line-height: 1em;
  color: #969696;
}

#patientsVoice .patients-voice-list li a .title {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.44em;
}

/* ナビゲーションブロック */
#patientsVoice .navigation-wrapper {
  margin-top: 40px;
  margin-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#patientsVoice .navigation-wrapper .prev,
#patientsVoice .navigation-wrapper .next {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #fa8d37;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#patientsVoice .navigation-wrapper .prev:hover,
#patientsVoice .navigation-wrapper .next:hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#patientsVoice .navigation-wrapper .prev {
  margin-right: 5px;
}

#patientsVoice .navigation-wrapper .next {
  margin-left: 5px;
}

#patientsVoice .navigation-wrapper .prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  display: block;
  width: 9px;
  height: 9px;
  border-left: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#patientsVoice .navigation-wrapper .next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-75%, -50%) rotate(-45deg);
          transform: translate(-75%, -50%) rotate(-45deg);
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#patientsVoice .navigation-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

#patientsVoice .navigation-wrapper .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#patientsVoice .navigation-wrapper .navigation > li {
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#patientsVoice .navigation-wrapper .navigation > li:nth-of-type(n+2) {
  margin-left: 6px;
}

#patientsVoice .navigation-wrapper .navigation > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#patientsVoice .navigation-wrapper .navigation > li:not(.between) {
  width: 35px;
  height: 35px;
  border: 1px solid #fa8d37;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
}

#patientsVoice .navigation-wrapper .navigation > li:not(.between):hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#patientsVoice .navigation-wrapper .navigation > li.between {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 6px;
  font-size: 26px;
  letter-spacing: -.3em;
  color: #fa8d37;
}

#patientsVoice .navigation-wrapper .navigation > li.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #fa8d37;
}

#patientsVoice .navigation-wrapper .navigation > li.current:hover {
  background-color: #fa8d37;
}

#patientsVoice .navigation-wrapper .navigation > li.current a {
  color: #fff;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* ページタイトルブロック */
  #patientsVoice .title-block {
    margin-bottom: 1.171vw;
  }
  #patientsVoice .title-block h1 {
    margin: 0 auto 2.928vw;
  }
  /* 患者さんの声一覧 */
  #patientsVoice .patients-voice-list li {
    height: 8.053vw;
  }
  #patientsVoice .patients-voice-list li:nth-of-type(n+3) {
    margin-top: .878vw;
  }
  #patientsVoice .patients-voice-list li a {
    padding-left: 1.464vw;
    padding-right: 4.246vw;
  }
  #patientsVoice .patients-voice-list li a::before {
    width: 1.098vw;
    height: 1.098vw;
  }
  #patientsVoice .patients-voice-list li a::after {
    width: .366vw;
    height: .366vw;
  }
  #patientsVoice .patients-voice-list li a .date {
    font-size: 1.025vw;
  }
  #patientsVoice .patients-voice-list li a .title {
    margin-top: .439vw;
    font-size: 1.318vw;
  }
  /* ナビゲーションブロック */
  #patientsVoice .navigation-wrapper {
    margin-top: 2.928vw;
    margin-bottom: 6.588vw;
  }
  #patientsVoice .navigation-wrapper .prev,
  #patientsVoice .navigation-wrapper .next {
    width: 2.562vw;
    height: 2.562vw;
  }
  #patientsVoice .navigation-wrapper .prev {
    margin-right: .366vw;
  }
  #patientsVoice .navigation-wrapper .next {
    margin-left: .366vw;
  }
  #patientsVoice .navigation-wrapper .prev::after {
    width: .659vw;
    height: .659vw;
  }
  #patientsVoice .navigation-wrapper .next::after {
    width: .659vw;
    height: .659vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li {
    font-size: 1.025vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: .439vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li:not(.between) {
    width: 2.562vw;
    height: 2.562vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li.between {
    margin-right: .439vw;
    font-size: 1.903vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトルブロック */
  #patientsVoice .title-block {
    margin-top: 9.6vw;
    margin-bottom: 5.333vw;
  }
  #patientsVoice .title-block h1 {
    margin: 0 auto 10.667vw;
  }
  #patientsVoice .title-block h1::before {
    left: -1.3em;
  }
  /* 患者さんの声一覧 */
  #patientsVoice .patients-voice-list {
    display: block;
  }
  #patientsVoice .patients-voice-list li {
    padding: 4.267vw 0;
    width: auto;
    height: auto;
    border: none;
    border-top: 1px solid #cccccc;
  }
  #patientsVoice .patients-voice-list li:last-of-type {
    border-bottom: 1px solid #cccccc;
  }
  #patientsVoice .patients-voice-list li:nth-of-type(n+3) {
    margin-top: 0;
  }
  #patientsVoice .patients-voice-list li a {
    padding-left: 0;
    padding-right: 10.667vw;
  }
  #patientsVoice .patients-voice-list li a:hover {
    background-color: transparent;
  }
  #patientsVoice .patients-voice-list li a::before {
    content: none;
  }
  #patientsVoice .patients-voice-list li a::after {
    right: 2%;
    width: 1.867vw;
    height: 1.867vw;
    border-color: #969696;
    -webkit-transform: translate(-120%, -50%) rotate(45deg);
            transform: translate(-120%, -50%) rotate(45deg);
  }
  #patientsVoice .patients-voice-list li a .date {
    font-size: 3.2vw;
  }
  #patientsVoice .patients-voice-list li a .title {
    margin-top: 2.667vw;
    font-size: 3.733vw;
  }
  /* ナビゲーションブロック */
  #patientsVoice .navigation-wrapper {
    margin-top: 5.333vw;
    margin-bottom: 24vw;
  }
  #patientsVoice .navigation-wrapper .prev,
  #patientsVoice .navigation-wrapper .next {
    width: 6.933vw;
    height: 6.933vw;
  }
  #patientsVoice .navigation-wrapper .prev {
    margin-right: 1.333vw;
  }
  #patientsVoice .navigation-wrapper .next {
    margin-left: 1.333vw;
  }
  #patientsVoice .navigation-wrapper .prev::after {
    width: 2vw;
    height: 2vw;
  }
  #patientsVoice .navigation-wrapper .next::after {
    width: 2vw;
    height: 2vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li {
    font-size: 3.2vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: 1.333vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li:not(.between) {
    width: 6.933vw;
    height: 6.933vw;
  }
  #patientsVoice .navigation-wrapper .navigation > li.between {
    margin-right: 1.333vw;
    font-size: 3.733vw;
  }
}

/* 患者さんの声ページ(patient-details.html)
--------------------------------------------- */
#patientsVoice_details .details {
  position: relative;
  margin-bottom: 86px;
  padding-left: 555px;
  min-height: 690px;
}

#patientsVoice_details .details h1 {
  text-align: left;
}

#patientsVoice_details .details .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
}

#patientsVoice_details .details .image-wrap img {
  width: 100%;
}

#patientsVoice_details .details .content-wrap {
  margin-top: 40px;
}

#patientsVoice_details .details .content-wrap .text {
  line-height: 1.6em;
}

#patientsVoice_details .details .content-wrap .writer {
  margin-top: 40px;
}

#patientsVoice_details .details .link-wrap {
  margin-top: 40px;
}

#patientsVoice_details .details .link-wrap .link {
  width: 300px;
  height: 60px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  #patientsVoice_details .details {
    margin-bottom: 6.296vw;
    padding-left: 40.623vw;
    min-height: 50.512vw;
  }
  #patientsVoice_details .details .image-wrap {
    width: 36.603vw;
  }
  #patientsVoice_details .details .content-wrap {
    margin-top: 2.928vw;
  }
  #patientsVoice_details .details .content-wrap .writer {
    margin-top: 2.928vw;
  }
  #patientsVoice_details .details .link-wrap {
    margin-top: 2.928vw;
  }
  #patientsVoice_details .details .link-wrap .link {
    width: 21.962vw;
    height: 4.392vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* アンケート詳細 */
  #patientsVoice_details .details {
    position: static;
    margin-top: 5vw;
    margin-bottom: 16vw;
    padding-left: 0;
    min-height: auto;
  }
  #patientsVoice_details .details .image-wrap {
    margin-top: 10.667vw;
    position: static;
    width: auto;
  }
  #patientsVoice_details .details .zoom-up {
    margin-top: 5.333vw;
  }
  #patientsVoice_details .details .zoom-up span {
    color: #dd7a55;
    position: relative;
  }
  #patientsVoice_details .details .zoom-up span::before,
  #patientsVoice_details .details .zoom-up span::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #patientsVoice_details .details .zoom-up span::before {
    width: 1em;
    height: 1em;
    border: 1px solid #dd7a55;
    border-radius: 50%;
    -webkit-transform: translate(115%, -50%);
            transform: translate(115%, -50%);
  }
  #patientsVoice_details .details .zoom-up span::after {
    width: .35em;
    height: .35em;
    border-top: 1px solid #dd7a55;
    border-right: 1px solid #dd7a55;
    -webkit-transform: translate(200%, -50%) rotate(45deg);
            transform: translate(200%, -50%) rotate(45deg);
  }
  #patientsVoice_details .details .content-wrap {
    margin-top: 5.333vw;
  }
  #patientsVoice_details .details .content-wrap .text {
    line-height: 1.6em;
  }
  #patientsVoice_details .details .content-wrap .writer {
    margin-top: 5.333vw;
  }
  #patientsVoice_details .details .link-wrap {
    margin-top: 5.333vw;
  }
  #patientsVoice_details .details .link-wrap .link {
    margin: 0 auto;
    width: 80vw;
    height: 16vw;
  }
  /* 画像拡大 */
  #patientsVoice_details .zoom-image {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #patientsVoice_details .zoom-image img {
    width: 90%;
  }
}

/* 病名・症例辞典ページ(dictionary.html)
--------------------------------------------- */
/* タイトルブロック */
#dictionary .title-block h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  position: relative;
  -webkit-transform: translateX(12%);
          transform: translateX(12%);
}

#dictionary .title-block h1::before {
  content: '';
  background-image: url(../img/dictionary-headingIcon.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  width: 46px;
  height: 39px;
  position: absolute;
  top: 50%;
  left: -1.6em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* 各セクション */
#dictionary .wrap-section {
  margin-top: 40px;
}

#dictionary .wrap-section + .wrap-section {
  margin-top: 50px;
}

#dictionary .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#dictionary .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#dictionary .wrap-section .heading-wrapper {
  width: 300px;
}

#dictionary .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#dictionary .wrap-section .content-wrapper {
  width: 750px;
}

/* セクション：ページタイトルブロック */
#dictionary .title-block p {
  width: 640px;
  margin: 40px auto 0;
}

/* ページ内リンクセクション */
#dictionary .jumpLink-section {
  margin-top: 40px;
}

#dictionary .jumpLink-section .jumpLinks {
  width: 640px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#dictionary .jumpLink-section .jumpLinks .link-block {
  width: 300px;
  height: 50px;
}

/* セクション：「症例から探す」・「五十音順で探す」 */
#dictionary .case-section + .case-section {
  margin-top: 40px;
}

#dictionary .title {
  margin-bottom: 18px;
}

#dictionary .case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#dictionary .case-list > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 49.2%;
  height: 50px;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #dd7a55;
}

#dictionary .case-list > li:hover {
  background-color: #ffe8d9;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#dictionary .case-list > li:nth-of-type(n+3) {
  margin-top: 10px;
}

#dictionary .case-list > li > a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  height: 100%;
  color: inherit;
  padding: 16px;
  position: relative;
}

#dictionary .case-list > li > a::before,
#dictionary .case-list > li > a::after {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#dictionary .case-list > li > a::before {
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #dd7a55;
}

#dictionary .case-list > li > a::after {
  right: 21px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* タイトルブロック */
  #dictionary .title-block h1 {
    margin: 0 auto 2.928vw;
  }
  #dictionary .title-block h1::before {
    width: 3.367vw;
    height: 2.855vw;
  }
  /* 各セクション */
  #dictionary .wrap-section {
    margin-top: 2.923vw;
  }
  #dictionary .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  #dictionary .wrap-section:last-of-type {
    margin-bottom: 4.758vw;
  }
  /* 左の見出しブロック */
  #dictionary .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #dictionary .wrap-section .heading-wrapper::before {
    margin-bottom: 2.923vw;
  }
  /* 右のコンテンツブロック */
  #dictionary .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* セクション：ページタイトルブロック */
  #dictionary .title-block p {
    width: 46.852vw;
    margin: 2.923vw auto 0;
  }
  /* ページ内リンクセクション */
  #dictionary .jumpLink-section {
    margin-top: 2.923vw;
  }
  #dictionary .jumpLink-section .jumpLinks {
    width: 46.852vw;
  }
  #dictionary .jumpLink-section .jumpLinks .link-block {
    width: 21.962vw;
    height: 3.66vw;
  }
  /* セクション：「症例から探す」・「五十音順で探す」 */
  #dictionary .case-section + .case-section {
    margin-top: 2.923vw;
  }
  #dictionary .title {
    margin-bottom: 1.318vw;
  }
  #dictionary .case-list > li {
    width: 49.2%;
    height: 3.66vw;
    font-size: 1.171vw;
  }
  #dictionary .case-list > li:nth-of-type(n+3) {
    margin-top: .732vw;
  }
  #dictionary .case-list > li > a {
    padding: 1.171vw;
  }
  #dictionary .case-list > li > a::before {
    right: 1.098vw;
    width: 1.098vw;
    height: 1.098vw;
  }
  #dictionary .case-list > li > a::after {
    right: 1.537vw;
    width: .366vw;
    height: .366vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* タイトルブロック */
  #dictionary .title-block {
    margin-top: 9.6vw;
  }
  #dictionary .title-block h1 {
    margin: 0 auto 10.667vw;
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }
  #dictionary .title-block h1::before {
    left: -1.2em;
    width: 8vw;
    height: 6.9vw;
  }
  /* 各セクション */
  #dictionary .wrap-section {
    margin-top: 10.667vw;
  }
  #dictionary .wrap-section + .wrap-section {
    margin-top: 10.667vw;
  }
  #dictionary .wrap-section:last-of-type {
    margin-bottom: 16vw;
  }
  #dictionary .wrap-section .container {
    display: block;
  }
  /* 左の見出しブロック */
  #dictionary .wrap-section .heading-wrapper {
    width: auto;
  }
  #dictionary .wrap-section .heading-wrapper h2 {
    font-size: 4.8vw;
  }
  #dictionary .wrap-section .heading-wrapper::before {
    content: none;
  }
  /* 右のコンテンツブロック */
  #dictionary .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* セクション：ページタイトルブロック */
  #dictionary .title-block p {
    width: auto;
    margin: 40px auto 0;
  }
  /* ページ内リンクセクション */
  #dictionary .jumpLink-section {
    margin-top: 40px;
  }
  #dictionary .jumpLink-section .jumpLinks {
    width: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #dictionary .jumpLink-section .jumpLinks .link-block {
    width: 43.2vw;
    height: 13.333vw;
  }
  /* セクション：「症例から探す」・「五十音順で探す」 */
  #dictionary .case-section + .case-section {
    margin-top: 5.333vw;
  }
  #dictionary .wrap-section .case-section .title {
    font-size: 4.267vw;
  }
  #dictionary .syllabary .case-section .title {
    font-size: 3.733vw;
    font-weight: 500;
    color: #e87449;
  }
  #dictionary .case-list {
    display: block;
  }
  #dictionary .case-list > li {
    width: auto;
    height: 11.2vw;
    font-size: 3.733vw;
    font-weight: 500;
    border: none;
    border-top: 1px solid #dddddd;
  }
  #dictionary .case-list > li:last-of-type {
    border-bottom: 1px solid #dddddd;
  }
  #dictionary .case-list > li:nth-of-type(n+3) {
    margin-top: 0;
  }
  #dictionary .case-list > li > a {
    padding: 1em 0;
  }
  #dictionary .case-list > li > a::before {
    content: none;
  }
  #dictionary .case-list > li > a::after {
    right: 2.7vw;
    width: 1.867vw;
    height: 1.867vw;
    border-color: #333333;
  }
}

/* 症例・症状辞典詳細ページ(dictionary-details.html)
--------------------------------------------- */
/* 症例・症状のメタ情報 */
#dictionary_details .entry-meta {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ページカテゴリー */
#dictionary_details .entry-cat {
  margin-right: 20px;
  padding: .1em 1em;
  font-size: 14px;
  line-height: 1em;
  font-weight: bold;
  color: #dd7a55;
  border: 1px solid #dd7a55;
  border-radius: 5px;
}

/* ページタイトル */
#dictionary_details .entry-title {
  font-size: 40px;
  line-height: 1.2em;
}

/* 本文基本タグ */
#dictionary_details .entry-content h2 {
  margin-bottom: .4em;
}

#dictionary_details .entry-content h3 {
  margin-bottom: .6em;
}

#dictionary_details .entry-content h4 {
  margin-bottom: .4em;
}

#dictionary_details .entry-content h5 {
  margin-bottom: .8em;
}

#dictionary_details .entry-content p {
  margin-bottom: 1em;
}

#dictionary_details .entry-content p + p {
  margin-top: 1em;
}

#dictionary_details .entry-content a {
  text-decoration: underline;
}

#dictionary_details .entry-content a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #666;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#dictionary_details .entry-content dl {
  margin-bottom: .6em;
}

#dictionary_details .entry-content div {
  margin-bottom: .6em;
}

#dictionary_details .entry-content figure {
  margin: 2em auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

#dictionary_details .entry-content figure img {
  max-width: 100%;
}

#dictionary_details .entry-content figure figcaption {
  margin-top: 1em;
  width: inherit;
  font-size: 12px;
  font-weight: bold;
  color: #969696;
  text-align: left;
}

#dictionary_details .entry-content ul {
  margin-bottom: 1.6em;
}

#dictionary_details .entry-content ul {
  padding-left: 1.3em;
}

#dictionary_details .entry-content ul > li {
  line-height: 1.6em;
  position: relative;
}

#dictionary_details .entry-content ul > li + li {
  margin-top: 1.6em;
}

#dictionary_details .entry-content ul > li::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: .8em;
  left: 0;
  background-color: #dd7a55;
  -webkit-transform: translate(-160%, -50%);
          transform: translate(-160%, -50%);
}

#dictionary_details .entry-content dl {
  padding-left: 1.3em;
  line-height: 1.6em;
}

#dictionary_details .entry-content dl dt {
  position: relative;
}

#dictionary_details .entry-content dl dd + dt {
  margin-top: .6em;
}

#dictionary_details .entry-content dl dt + dt {
  margin-top: .6em;
}

#dictionary_details .entry-content dl dt::before {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  top: .8em;
  left: 0;
  background-color: #dd7a55;
  -webkit-transform: translate(-160%, -50%);
          transform: translate(-160%, -50%);
}

#dictionary_details .entry-content dl dt strong {
  font-size: 18px;
}

#dictionary_details .entry-content small {
  font-size: 14px;
}

/* 施術ステップ */
#dictionary_details .step-block .step {
  margin-bottom: 24px;
  padding-bottom: 20px;
  position: relative;
}

#dictionary_details .step-block .step:not(:last-of-type)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  display: inline-block;
  width: 35px;
  height: 35px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

#dictionary_details .step-block h5 {
  margin: 0;
  font-size: 20px;
  color: #dd7a55;
}

#dictionary_details .step-block p {
  margin: 0;
}

/* プロフィール紹介 */
#dictionary_details .profile-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
  padding: 20px 40px 20px 137px;
  background-color: #fffdf0;
  position: relative;
}

#dictionary_details .profile-wrapper .image-wrap {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 15px;
}

#dictionary_details .profile-wrapper .image-wrap img {
  width: 100%;
}

#dictionary_details .profile-wrapper .meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#dictionary_details .profile-wrapper .meta-wrap .pos {
  padding: .21em .64em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #dd7a55;
  border-radius: 5px;
}

#dictionary_details .profile-wrapper .meta-wrap .name {
  margin-left: 10px;
  font-size: 16px;
  font-weight: bold;
}

#dictionary_details .profile-wrapper .profile-wrap {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dd7a55;
}

/* リンクブロック */
#dictionary_details .link-wrapper .link {
  margin-top: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
}

#dictionary_details .link-wrapper .link a {
  padding: 0 20px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 症例・症状のメタ情報 */
  #dictionary_details .entry-meta {
    margin-bottom: 1.464vw;
  }
  /* ページカテゴリー */
  #dictionary_details .entry-cat {
    margin-right: 1.464vw;
    font-size: 1.025vw;
    border-radius: .366vw;
  }
  /* ページタイトル */
  #dictionary_details .entry-title {
    font-size: 2.928vw;
  }
  /* 本文基本タグ */
  #dictionary_details .entry-content figure figcaption {
    font-size: .878vw;
  }
  #dictionary_details .entry-content ul > li::before {
    width: .732vw;
    height: .732vw;
  }
  #dictionary_details .entry-content dl dt::before {
    width: .732vw;
    height: .732vw;
  }
  #dictionary_details .entry-content dl dt strong {
    font-size: 1.318vw;
  }
  #dictionary_details .entry-content small {
    font-size: 1.025vw;
  }
  /* 施術ステップ */
  #dictionary_details .step-block .step {
    margin-bottom: 1.757vw;
    padding-bottom: 1.464vw;
  }
  #dictionary_details .step-block .step:not(:last-of-type)::after {
    width: 2.562vw;
    height: 2.562vw;
  }
  #dictionary_details .step-block h5 {
    font-size: 1.464vw;
  }
  /* プロフィール紹介 */
  #dictionary_details .profile-wrapper {
    margin-top: 2.928vw;
    padding: 1.464vw 2.928vw 1.464vw 10.029vw;
  }
  #dictionary_details .profile-wrapper .image-wrap {
    width: 7.321vw;
    height: 7.321vw;
    top: 1.464vw;
    left: 1.098vw;
  }
  #dictionary_details .profile-wrapper .meta-wrap .pos {
    font-size: 1.025vw;
    border-radius: .366vw;
  }
  #dictionary_details .profile-wrapper .meta-wrap .name {
    margin-left: .732vw;
    font-size: 1.171vw;
  }
  #dictionary_details .profile-wrapper .profile-wrap {
    margin-top: 1.464vw;
    padding-top: 1.464vw;
  }
  /* リンクブロック */
  #dictionary_details .link-wrapper .link {
    margin-top: 2.928vw;
    height: 4.392vw;
  }
  #dictionary_details .link-wrapper .link a {
    padding: 0 1.464vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* 症例・症状のメタ情報 */
  #dictionary_details .entry-meta {
    margin-bottom: 10vw;
    display: block;
  }
  /* ページカテゴリー */
  #dictionary_details .entry-cat {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 2vw;
    padding: .2em 2em;
    font-size: 2.666vw;
    font-weight: 500;
    color: inherit;
    border-radius: 1.333vw;
  }
  /* ページタイトル */
  #dictionary_details .entry-title {
    font-size: 8vw;
    line-height: 1.2em;
  }
  /* 本文基本タグ */
  #dictionary_details .entry-content h2 {
    margin-bottom: 5.333vw;
    font-size: 4.8vw;
  }
  #dictionary_details .entry-content h4 {
    font-size: 4.267vw;
  }
  #dictionary_details .entry-content p {
    margin-bottom: 1.6em;
  }
  #dictionary_details .entry-content figure figcaption {
    font-size: 3.2vw;
  }
  #dictionary_details .entry-content ul > li::before {
    width: 2.667vw;
    height: 2.667vw;
  }
  #dictionary_details .entry-content dl {
    line-height: 1.6em;
    font-size: 3.2vw;
  }
  #dictionary_details .entry-content dl dt::before {
    width: 2.667vw;
    height: 2.667vw;
  }
  #dictionary_details .entry-content dl dt strong {
    font-size: 3.2vw;
  }
  #dictionary_details .entry-content small {
    font-size: 3.2vw;
  }
  /* 施術ステップ */
  #dictionary_details .step-block .step {
    margin-bottom: 5.333vw;
    padding-bottom: 4.267vw;
  }
  #dictionary_details .step-block .step:not(:last-of-type)::after {
    width: 9.333vw;
    height: 9.333vw;
  }
  #dictionary_details .step-block h5 {
    font-size: 3.733vw;
  }
  #dictionary_details .step-block p {
    margin: 0;
  }
  /* プロフィール紹介 */
  #dictionary_details .profile-wrapper {
    margin-top: 5.333vw;
    padding: 5.333vw 5.333vw 5.333vw 35.733vw;
  }
  #dictionary_details .profile-wrapper .image-wrap {
    width: 26.667vw;
    height: 26.667vw;
    top: 5.333vw;
    left: 5.333vw;
  }
  #dictionary_details .profile-wrapper .image-wrap img {
    width: 100%;
  }
  #dictionary_details .profile-wrapper .meta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #dictionary_details .profile-wrapper .meta-wrap .pos {
    padding: .35em .66em;
    font-size: 3.2vw;
    line-height: 1em;
    border-radius: 1.333vw;
  }
  #dictionary_details .profile-wrapper .meta-wrap .name {
    margin-left: 1.6vw;
    font-size: 3.733vw;
  }
  #dictionary_details .profile-wrapper .profile-wrap {
    margin-top: 2.133vw;
    padding-top: 2.667vw;
  }
  #dictionary_details .profile-wrapper .profile-wrap p {
    font-size: 3.2vw;
    line-height: 1.5em;
  }
  /* リンクブロック */
  #dictionary_details .link-wrapper .link {
    margin-top: 10.667vw;
    width: auto;
    height: 16vw;
  }
  #dictionary_details .link-wrapper .link a {
    padding: 0;
  }
}

/* NEWS一覧ページ(news.html)
--------------------------------------------- */
/* カテゴリ―リスト */
#news_list .category-wrapper {
  margin-top: 30px;
  color: #fff;
  background-color: #dd7a55;
}

#news_list .category-wrapper .category {
  padding: 16px 10px;
  font-size: 16px;
  position: relative;
}

#news_list .category-wrapper .category::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  width: .5em;
  height: .5em;
  -webkit-transform: translateY(-100%) rotate(45deg);
          transform: translateY(-100%) rotate(45deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#news_list .category-wrapper .category.opened::after {
  -webkit-transform: translateY(-100%) rotate(225deg);
          transform: translateY(-100%) rotate(225deg);
}

#news_list .category-wrapper .category-list {
  display: none;
  padding: 16px 10px;
}

#news_list .category-wrapper .category-list > li {
  margin-left: 1em;
  font-size: 16px;
  font-weight: bold;
}

#news_list .category-wrapper .category-list > li:nth-of-type(n+2) {
  margin-top: 1em;
}

#news_list .category-wrapper .category-list > li a {
  color: inherit;
  position: relative;
}

#news_list .category-wrapper .category-list > li a::before,
#news_list .category-wrapper .category-list > li a::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#news_list .category-wrapper .category-list > li a::before {
  right: -1.4em;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#news_list .category-wrapper .category-list > li a::after {
  right: -1em;
  width: .3em;
  height: .3em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* NEWS一覧ブロック */
#news_list .box_news {
  margin-top: 40px;
}

#news_list .box_news dl {
  border: 1px solid #dd7a55;
  height: 84px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 15px;
  padding-right: 65px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#news_list .box_news dl:nth-of-type(n+2) {
  margin-top: 15px;
}

#news_list .box_news dt {
  font-size: 14px;
  line-height: 1em;
  color: #969696;
}

#news_list .box_news dt > span {
  display: none;
  margin-left: 1em;
  padding: .1em .6em;
  vertical-align: middle;
  font-size: 10px;
  color: #fff;
}

#news_list .box_news dt > .categorymark {
  display: inline;
  background-color: #dd7a55;
}

#news_list .box_news dt > .newmark {
  display: inline;
  font-weight: bold;
  background-color: #f56a25;
}

#news_list .box_news dt > .finmark {
  display: inline;
  font-weight: bold;
  background-color: #542417;
}

#news_list .box_news dd {
  margin-top: 10px;
  /*height: 1em;*/
  font-size: 18px;
  font-weight: bold;
  /*overflow: hidden;*/
}

#news_list .box_news dd a {
  color: inherit;
}

#news_list .box_news dd a:hover {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#news_list .box_news dd a::before,
#news_list .box_news dd a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#news_list .box_news dd a::before {
  width: 15px;
  height: 15px;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#news_list .box_news dd a::after {
  width: 5px;
  height: 5px;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-115%, -50%) rotate(45deg);
          transform: translate(-115%, -50%) rotate(45deg);
}

/* ナビゲーションブロック */
#news_list .navigation-wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#news_list .navigation-wrapper .prev,
#news_list .navigation-wrapper .next {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fa8d37;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#news_list .navigation-wrapper .prev:hover,
#news_list .navigation-wrapper .next:hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#news_list .navigation-wrapper .prev {
  margin-right: 5px;
}

#news_list .navigation-wrapper .next {
  margin-left: 5px;
}

#news_list .navigation-wrapper .prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-left: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#news_list .navigation-wrapper .next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-75%, -50%) rotate(-45deg);
          transform: translate(-75%, -50%) rotate(-45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#news_list .navigation-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

#news_list .navigation-wrapper .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#news_list .navigation-wrapper .navigation > li {
  font-size: 12px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#news_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
  margin-left: 5px;
}

#news_list .navigation-wrapper .navigation > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#news_list .navigation-wrapper .navigation > li:not(.between) {
  width: 25px;
  height: 25px;
  border: 1px solid #fa8d37;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
}

#news_list .navigation-wrapper .navigation > li:not(.between):hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#news_list .navigation-wrapper .navigation > li.between {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#news_list .navigation-wrapper .navigation > li.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #fa8d37;
}

#news_list .navigation-wrapper .navigation > li.current:hover {
  background-color: #fa8d37;
}

#news_list .navigation-wrapper .navigation > li.current a {
  color: #fff;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* カテゴリ―リスト */
  #news_list .category-wrapper {
    margin-top: 2.196vw;
  }
  #news_list .category-wrapper .category {
    padding: 1.171vw .732vw;
    font-size: 1.171vw;
  }
  #news_list .category-wrapper .category-list {
    padding: 1.171vw .732vw;
  }
  #news_list .category-wrapper .category-list > li {
    font-size: 1.171vw;
  }
  /* NEWS一覧ブロック */
  #news_list .box_news {
    margin-top: 2.928vw;
  }
  #news_list .box_news dl {
    height: 6.149vw;
    padding-left: 1.098vw;
    padding-right: 4.758vw;
  }
  #news_list .box_news dl:nth-of-type(n+2) {
    margin-top: 1.098vw;
  }
  #news_list .box_news dt {
    font-size: 1.025vw;
  }
  #news_list .box_news dt > span {
    font-size: .732vw;
  }
  #news_list .box_news dd {
    margin-top: .732vw;
    font-size: 1.318vw;
  }
  #news_list .box_news dd a::before,
  #news_list .box_news dd a::after {
    right: 1.464vw;
  }
  #news_list .box_news dd a::before {
    width: 1.098vw;
    height: 1.098vw;
  }
  #news_list .box_news dd a::after {
    width: .366vw;
    height: .366vw;
  }
  /* ナビゲーションブロック */
  #news_list .navigation-wrapper {
    margin-top: 1.464vw;
  }
  #news_list .navigation-wrapper .prev,
  #news_list .navigation-wrapper .next {
    width: 1.83vw;
    height: 1.83vw;
  }
  #news_list .navigation-wrapper .prev {
    margin-right: .366vw;
  }
  #news_list .navigation-wrapper .next {
    margin-left: .366vw;
  }
  #news_list .navigation-wrapper .prev::after {
    width: .512vw;
    height: .512vw;
  }
  #news_list .navigation-wrapper .next::after {
    width: .512vw;
    height: .512vw;
  }
  #news_list .navigation-wrapper .navigation > li {
    font-size: .878vw;
  }
  #news_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: .366vw;
  }
  #news_list .navigation-wrapper .navigation > li:not(.between) {
    width: 1.83vw;
    height: 1.83vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* カテゴリ―リスト */
  #news_list .category-wrapper {
    margin-top: 10.667vw;
  }
  #news_list .category-wrapper .category {
    padding: 4.267vw 2.667vw;
    font-size: 4.267vw;
  }
  #news_list .category-wrapper .category-list {
    padding: 4.267vw 2.667vw;
  }
  #news_list .category-wrapper .category-list > li {
    font-size: 4.267vw;
  }
  /* NEWS一覧ブロック */
  #news_list .box_news {
    margin-top: 5.333vw;
  }
  #news_list .box_news dl {
    border: none;
    border-top: 1px solid #cccccc;
    height: 21.333vw;
    padding-left: 0;
    padding-right: 14vw;
  }
  #news_list .box_news dl:last-of-type {
    border-bottom: 1px solid #cccccc;
  }
  #news_list .box_news dl:nth-of-type(n+2) {
    margin-top: 0;
  }
  #news_list .box_news dt {
    font-size: 3.2vw;
  }
  #news_list .box_news dt > span {
    margin-left: .8em;
    font-size: 2.667vw;
  }
  #news_list .box_news dt > .categorymark {
    background-color: transparent;
    outline: 1px solid #dd7a55;
    color: #dd7a55;
  }
  #news_list .box_news dd {
    margin-top: 2.667vw;
    font-size: 3.733vw;
  }
  #news_list .box_news dd a:hover {
    color: inherit;
  }
  #news_list .box_news dd a::before,
  #news_list .box_news dd a::after {
    right: 2.667vw;
  }
  #news_list .box_news dd a::before {
    content: none;
    width: 0;
    height: 0;
    border: none;
    border-radius: 0;
    -webkit-transform: none;
            transform: none;
  }
  #news_list .box_news dd a::after {
    width: 2.133vw;
    height: 2.133vw;
    border-color: #969696;
  }
  /* ナビゲーションブロック */
  #news_list .navigation-wrapper {
    margin-top: 5.333vw;
  }
  #news_list .navigation-wrapper .prev,
  #news_list .navigation-wrapper .next {
    width: 6.667vw;
    height: 6.667vw;
  }
  #news_list .navigation-wrapper .prev {
    margin-right: 1.333vw;
  }
  #news_list .navigation-wrapper .next {
    margin-left: 1.333vw;
  }
  #news_list .navigation-wrapper .prev::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #news_list .navigation-wrapper .next::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #news_list .navigation-wrapper .navigation > li {
    font-size: 3.2vw;
  }
  #news_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: 1.333vw;
  }
  #news_list .navigation-wrapper .navigation > li:not(.between) {
    width: 6.667vw;
    height: 6.667vw;
  }
}

/* NEWS詳細ページ(news-details.html)
--------------------------------------------- */
/* サブタイトル(entry-subtitle) */
#news_list #mainColumn .entry-subtitle {
  margin-bottom: 10px;
  font-size: 20px;
}

/* メインタイトル(entry-title) */
#news_list #mainColumn .entry-title {
  font-size: 40px;
}

/* 本文中(entry-content内) */
#news_list #mainColumn .entry-content h2 {
  margin-bottom: .8em;
}

#news_list #mainColumn .entry-content h3 {
  margin-bottom: .8em;
}

#news_list #mainColumn .entry-content h4 {
  margin-bottom: .9em;
}

#news_list #mainColumn .entry-content p {
  margin-bottom: 1em;
}

#news_list #mainColumn .entry-content blockquote p {
  margin-bottom: 0;
}

#news_list #mainColumn .entry-content div {
  margin-bottom: 1em;
}

#news_list #mainColumn .entry-content img {
  display: block;
  margin: 0 auto 16px;
  max-width: 100%;
}

#news_list #mainColumn .entry-content blockquote {
  margin: 0 0 1.1em;
  padding: 20px 20px 20px 40px;
  font-size: 14px;
  background-color: #fffdf0;
  position: relative;
}

#news_list #mainColumn .entry-content blockquote::before {
  content: '“';
  font-family: kozuka-mincho-pro, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 63px;
  text-indent: .11em;
  color: #ddd0b8;
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: #ddd0b8;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

#news_list #mainColumn .entry-content a {
  text-decoration: underline;
}

#news_list #mainColumn .entry-content a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #666666;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* メタ中(entry-meta内) */
#news_list #mainColumn .entry-meta {
  position: relative;
  margin-top: 20px;
  margin-bottom: 40px;
}

#news_list #mainColumn .entry-meta .cat_title {
  display: none;
}

#news_list #mainColumn .entry-meta .date_list {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: #969696;
}

#news_list #mainColumn .entry-meta .post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#news_list #mainColumn .entry-meta .post-categories li {
  font-size: 14px;
  font-weight: bold;
}

#news_list #mainColumn .entry-meta .post-categories li:nth-of-type(n+2) {
  margin-left: .8em;
}

#news_list #mainColumn .entry-meta .post-categories a {
  display: block;
  padding: .2em .4em;
  text-decoration: none;
  border: 1px solid #dd7a55;
}

/* ブログ一覧を見る */
#news_list #mainColumn .link-wrapper {
  margin-bottom: 110px;
}

#news_list #mainColumn .link {
  width: 334px;
  height: 60px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* サブタイトル(entry-subtitle) */
  #news_list #mainColumn .entry-subtitle {
    margin-bottom: .732vw;
    font-size: 1.464vw;
  }
  /* メインタイトル(entry-title) */
  #news_list #mainColumn .entry-title {
    font-size: 2.928vw;
  }
  /* 本文中(entry-content内) */
  #news_list #mainColumn .entry-content img {
    margin-bottom: 1.171vw;
  }
  #news_list #mainColumn .entry-content blockquote {
    padding: 1.464vw 1.464vw 1.464vw 2.928vw;
    font-size: 1.025vw;
  }
  #news_list #mainColumn .entry-content blockquote::before {
    font-size: 4.612vw;
    width: .146vw;
  }
  /* メタ中(entry-meta内) */
  #news_list #mainColumn .entry-meta .date_list {
    font-size: 1.025vw;
  }
  #news_list #mainColumn .entry-meta {
    margin-top: 1.464vw;
    margin-bottom: 2.928vw;
  }
  #news_list #mainColumn .entry-meta .post-categories li {
    font-size: 1.025vw;
  }
  /* ブログ一覧を見る */
  #news_list #mainColumn .link-wrapper {
    margin-bottom: 8.053vw;
  }
  #news_list #mainColumn .link {
    width: 24.451vw;
    height: 4.392vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* サブタイトル(entry-subtitle) */
  #news_list #mainColumn .entry-subtitle {
    margin-bottom: 10px;
    font-size: 4.8vw;
  }
  /* メインタイトル(entry-title) */
  #news_list #mainColumn .entry-title {
    font-size: 8vw;
  }
  /* 本文中(entry-content内) */
  #news_list #mainColumn .entry-content h2 {
    margin-bottom: .6em;
  }
  #news_list #mainColumn .entry-content h3 {
    margin-bottom: .4em;
    line-height: 6vw;
  }
  #news_list #mainColumn .entry-content h4 {
    margin-bottom: .9em;
  }
  #news_list #mainColumn .entry-content p {
    margin-bottom: 1em;
  }
  #news_list #mainColumn .entry-content blockquote p {
    margin-bottom: 0;
  }
  #news_list #mainColumn .entry-content div {
    margin-bottom: 1em;
  }
  #news_list #mainColumn .entry-content img {
    margin: 0 auto 4.267vw;
  }
  #news_list #mainColumn .entry-content blockquote {
    padding: 5.333vw 5.333vw 5.333vw 10.667vw;
    font-size: 3.733vw;
  }
  #news_list #mainColumn .entry-content blockquote::before {
    font-size: 16.8vw;
    width: .533vw;
  }
  /* 投稿メタ内(entry-meta内) */
  #news_list #mainColumn .entry-meta {
    position: static;
    margin-top: 2.133vw;
    margin-bottom: 10.667vw;
  }
  #news_list #mainColumn .entry-meta .date_list {
    position: static;
    margin-top: 2.133vw;
    font-size: 3.2vw;
  }
  #news_list #mainColumn .entry-meta .post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #news_list #mainColumn .entry-meta .post-categories li {
    font-size: 2.667vw;
  }
  #news_list #mainColumn .entry-meta .post-categories li:nth-of-type(n+2) {
    margin-left: .8em;
  }
  #news_list #mainColumn .entry-meta .post-categories a {
    padding: .2em .4em;
    color: #333333;
    border-color: #fa8d37;
    border-radius: 1.067vw;
  }
  /* ブログ一覧を見る */
  #news_list #mainColumn .link-wrapper {
    margin-bottom: 10.667vw;
  }
  #news_list #mainColumn .link {
    width: auto;
    height: 16vw;
  }
}

/* 取材協力ページ(interview.html)
--------------------------------------------- */
/* 取材協力リスト */
#interview_list .interview-wrapper {
  margin-top: 40px;
}

#interview_list .interview {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 0;
  height: 155px;
  border-top: 1px solid #999999;
}

#interview_list .interview:last-of-type {
  border-bottom: 1px solid #999999;
}

#interview_list .interview a {
  display: block;
  height: 100%;
  color: inherit;
}

#interview_list .interview a .image-wrapper {
  float: left;
  margin-right: 20px;
  width: 150px;
  height: 112.5px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#interview_list .interview a:hover .image-wrapper {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#interview_list .interview a .image-wrapper img {
  width: 100%;
}

#interview_list .interview a .date {
  padding-top: 4px;
  font-size: 14px;
  color: #969696;
}

#interview_list .interview a .title {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

#interview_list .interview a:hover .date,
#interview_list .interview a:hover .title {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ナビゲーションブロック */
#interview_list .navigation-wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#interview_list .navigation-wrapper .prev,
#interview_list .navigation-wrapper .next {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fa8d37;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#interview_list .navigation-wrapper .prev:hover,
#interview_list .navigation-wrapper .next:hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#interview_list .navigation-wrapper .prev {
  margin-right: 5px;
}

#interview_list .navigation-wrapper .next {
  margin-left: 5px;
}

#interview_list .navigation-wrapper .prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-left: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#interview_list .navigation-wrapper .next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-75%, -50%) rotate(-45deg);
          transform: translate(-75%, -50%) rotate(-45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#interview_list .navigation-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

#interview_list .navigation-wrapper .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#interview_list .navigation-wrapper .navigation > li {
  font-size: 12px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#interview_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
  margin-left: 5px;
}

#interview_list .navigation-wrapper .navigation > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#interview_list .navigation-wrapper .navigation > li:not(.between) {
  width: 25px;
  height: 25px;
  border: 1px solid #fa8d37;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
}

#interview_list .navigation-wrapper .navigation > li:not(.between):hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#interview_list .navigation-wrapper .navigation > li.between {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#interview_list .navigation-wrapper .navigation > li.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #fa8d37;
}

#interview_list .navigation-wrapper .navigation > li.current:hover {
  background-color: #fa8d37;
}

#interview_list .navigation-wrapper .navigation > li.current a {
  color: #fff;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 取材協力リスト */
  #interview_list .interview-wrapper {
    margin-top: 2.928vw;
  }
  #interview_list .interview {
    padding: 1.464vw 0;
    height: 11.347vw;
  }
  #interview_list .interview a .image-wrapper {
    margin-right: 1.464vw;
    width: 10.981vw;
    height: 8.236vw;
    outline-width: .146vw;
  }
  #interview_list .interview a .date {
    padding-top: .293vw;
    font-size: 1.024vw;
  }
  #interview_list .interview a .title {
    margin-top: .878vw;
    font-size: 1.318vw;
  }
  /* ナビゲーションブロック */
  #interview_list .navigation-wrapper {
    margin-top: 1.464vw;
  }
  #interview_list .navigation-wrapper .prev,
  #interview_list .navigation-wrapper .next {
    width: 1.83vw;
    height: 1.83vw;
  }
  #interview_list .navigation-wrapper .prev {
    margin-right: .366vw;
  }
  #interview_list .navigation-wrapper .next {
    margin-left: .366vw;
  }
  #interview_list .navigation-wrapper .prev::after {
    width: .512vw;
    height: .512vw;
  }
  #interview_list .navigation-wrapper .next::after {
    width: .512vw;
    height: .512vw;
  }
  #interview_list .navigation-wrapper .navigation > li {
    font-size: .878vw;
  }
  #interview_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: .366vw;
  }
  #interview_list .navigation-wrapper .navigation > li:not(.between) {
    width: 1.83vw;
    height: 1.83vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #interview_list h1 {
    text-align: center;
  }
  /* 取材協力リスト */
  #interview_list .interview-wrapper {
    margin-top: 10.667vw;
  }
  #interview_list .interview {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5.333vw 0;
    height: 29.333vw;
  }
  #interview_list .interview a .image-wrapper {
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #interview_list .interview a .date {
    padding-top: 0;
    font-size: 3.2vw;
  }
  #interview_list .interview a .title {
    margin-top: 3.733vw;
    font-size: 3.733vw;
  }
  /* ナビゲーションブロック */
  #interview_list .navigation-wrapper {
    margin-top: 5.333vw;
  }
  #interview_list .navigation-wrapper .prev,
  #interview_list .navigation-wrapper .next {
    width: 6.667vw;
    height: 6.667vw;
  }
  #interview_list .navigation-wrapper .prev {
    margin-right: 1.333vw;
  }
  #interview_list .navigation-wrapper .next {
    margin-left: 1.333vw;
  }
  #interview_list .navigation-wrapper .prev::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #interview_list .navigation-wrapper .next::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #interview_list .navigation-wrapper .navigation > li {
    font-size: 3.2vw;
  }
  #interview_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: 1.333vw;
  }
  #interview_list .navigation-wrapper .navigation > li:not(.between) {
    width: 6.667vw;
    height: 6.667vw;
  }
}

/* 取材協力-詳細ページ(interview-details.html)
--------------------------------------------- */
/* サブタイトル(entry-subtitle) */
#interview_details #mainColumn .entry-subtitle {
  margin-bottom: 10px;
  font-size: 20px;
}

/* メインタイトル(entry-title) */
#interview_details #mainColumn .entry-title {
  font-size: 40px;
}

/* 本文中(entry-content内) */
#interview_details #mainColumn .entry-content h2 {
  margin-bottom: .8em;
}

#interview_details #mainColumn .entry-content h3 {
  margin-bottom: .8em;
}

#interview_details #mainColumn .entry-content h4 {
  margin-bottom: .9em;
}

#interview_details #mainColumn .entry-content p {
  margin-bottom: 1em;
}

#interview_details #mainColumn .entry-content blockquote p {
  margin-bottom: 0;
}

#interview_details #mainColumn .entry-content div {
  margin-bottom: 1em;
}

#interview_details #mainColumn .entry-content img {
  display: block;
  margin: 0 auto 16px;
  max-width: 100%;
}

#interview_details #mainColumn .entry-content blockquote {
  margin: 0 0 1.1em;
  padding: 20px 20px 20px 40px;
  font-size: 14px;
  background-color: #fffdf0;
  position: relative;
}

#interview_details #mainColumn .entry-content blockquote::before {
  content: '“';
  font-family: kozuka-mincho-pro, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 63px;
  text-indent: .11em;
  color: #ddd0b8;
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: #ddd0b8;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

#interview_details #mainColumn .entry-content a {
  text-decoration: underline;
}

#interview_details #mainColumn .entry-content a:hover {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  color: #666666;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* メタ中(entry-meta内) */
#interview_details #mainColumn .entry-meta {
  position: relative;
  margin-top: 20px;
  margin-bottom: 40px;
}

#interview_details #mainColumn .entry-meta .cat_title {
  display: none;
}

#interview_details #mainColumn .entry-meta .date_list {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: #969696;
}

#interview_details #mainColumn .entry-meta .post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#interview_details #mainColumn .entry-meta .post-categories li {
  font-size: 14px;
  font-weight: bold;
}

#interview_details #mainColumn .entry-meta .post-categories li:nth-of-type(n+2) {
  margin-left: .8em;
}

#interview_details #mainColumn .entry-meta .post-categories a {
  display: block;
  padding: .2em .4em;
  text-decoration: none;
  border: 1px solid #dd7a55;
}

/* メディア一覧を見る */
#interview_details #mainColumn .link-wrapper {
  margin-bottom: 110px;
}

#interview_details #mainColumn .link {
  width: 334px;
  height: 60px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* サブタイトル(entry-subtitle) */
  #interview_details #mainColumn .entry-subtitle {
    margin-bottom: .732vw;
    font-size: 1.464vw;
  }
  /* メインタイトル(entry-title) */
  #interview_details #mainColumn .entry-title {
    font-size: 2.928vw;
  }
  /* 本文中(entry-content内) */
  #interview_details #mainColumn .entry-content img {
    margin-bottom: 1.171vw;
  }
  #interview_details #mainColumn .entry-content blockquote {
    padding: 1.464vw 1.464vw 1.464vw 2.928vw;
    font-size: 1.025vw;
  }
  #interview_details #mainColumn .entry-content blockquote::before {
    font-size: 4.612vw;
    width: .146vw;
  }
  /* メタ中(entry-meta内) */
  #interview_details #mainColumn .entry-meta .date_list {
    font-size: 1.025vw;
  }
  #interview_details #mainColumn .entry-meta {
    margin-top: 1.464vw;
    margin-bottom: 2.928vw;
  }
  #interview_details #mainColumn .entry-meta .post-categories li {
    font-size: 1.025vw;
  }
  /* メディア一覧を見る */
  #interview_details #mainColumn .link-wrapper {
    margin-bottom: 8.053vw;
  }
  #interview_details #mainColumn .link {
    width: 24.451vw;
    height: 4.392vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* サブタイトル(entry-subtitle) */
  #interview_details #mainColumn .entry-subtitle {
    margin-bottom: 10px;
    font-size: 4.8vw;
  }
  /* メインタイトル(entry-title) */
  #interview_details #mainColumn .entry-title {
    font-size: 8vw;
  }
  /* 本文中(entry-content内) */
  #interview_details #mainColumn .entry-content h2 {
    margin-bottom: .6em;
  }
  #interview_details #mainColumn .entry-content h3 {
    margin-bottom: .4em;
    line-height: 6vw;
  }
  #interview_details #mainColumn .entry-content h4 {
    margin-bottom: .9em;
  }
  #interview_details #mainColumn .entry-content p {
    margin-bottom: 1em;
  }
  #interview_details #mainColumn .entry-content blockquote p {
    margin-bottom: 0;
  }
  #interview_details #mainColumn .entry-content div {
    margin-bottom: 1em;
  }
  #interview_details #mainColumn .entry-content img {
    margin: 0 auto 4.267vw;
  }
  #interview_details #mainColumn .entry-content blockquote {
    padding: 5.333vw 5.333vw 5.333vw 10.667vw;
    font-size: 3.733vw;
  }
  #interview_details #mainColumn .entry-content blockquote::before {
    font-size: 16.8vw;
    width: .533vw;
  }
  /* 投稿メタ内(entry-meta内) */
  #interview_details #mainColumn .entry-meta {
    position: static;
    margin-top: 2.133vw;
    margin-bottom: 10.667vw;
  }
  #interview_details #mainColumn .entry-meta .date_list {
    position: static;
    margin-top: 2.133vw;
    font-size: 3.2vw;
  }
  #interview_details #mainColumn .entry-meta .post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #interview_details #mainColumn .entry-meta .post-categories li {
    font-size: 2.667vw;
  }
  #interview_details #mainColumn .entry-meta .post-categories li:nth-of-type(n+2) {
    margin-left: .8em;
  }
  #interview_details #mainColumn .entry-meta .post-categories a {
    padding: .2em .4em;
    color: #333333;
    border-color: #fa8d37;
    border-radius: 1.067vw;
  }
  /* ブログ一覧を見る */
  #interview_details #mainColumn .link-wrapper {
    margin-bottom: 10.667vw;
  }
  #interview_details #mainColumn .link {
    width: auto;
    height: 16vw;
  }
}

/* ブログ一覧ページ(blog.html)
--------------------------------------------- */
/* カテゴリ―リスト */
#blog_list .category-wrapper {
  margin-top: 30px;
  color: #fff;
  background-color: #dd7a55;
}

#blog_list .category-wrapper .category {
  padding: 16px 10px;
  font-size: 16px;
  position: relative;
}

#blog_list .category-wrapper .category::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 50%;
  width: .5em;
  height: .5em;
  -webkit-transform: translateY(-100%) rotate(45deg);
          transform: translateY(-100%) rotate(45deg);
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog_list .category-wrapper .category.opened::after {
  -webkit-transform: translateY(-100%) rotate(225deg);
          transform: translateY(-100%) rotate(225deg);
}

#blog_list .category-wrapper .category-list {
  display: none;
  padding: 16px 10px;
}

#blog_list .category-wrapper .category-list > li {
  margin-left: 1em;
  font-size: 16px;
  font-weight: bold;
}

#blog_list .category-wrapper .category-list > li:nth-of-type(n+2) {
  margin-top: 1em;
}

#blog_list .category-wrapper .category-list > li a {
  color: inherit;
  position: relative;
}

#blog_list .category-wrapper .category-list > li a::before,
#blog_list .category-wrapper .category-list > li a::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#blog_list .category-wrapper .category-list > li a::before {
  right: -1.4em;
  width: 1em;
  height: 1em;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#blog_list .category-wrapper .category-list > li a::after {
  right: -1em;
  width: .3em;
  height: .3em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/* ブログ一覧ブロック */
#blog_list .blogs-wrapper {
  margin-top: 40px;
}

#blog_list .blogs-wrapper .blog {
  padding: 20px 0;
  border-top: 1px solid #999999;
  position: relative;
}

#blog_list .blogs-wrapper .blog::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 3%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#blog_list .blogs-wrapper .blog:hover::after {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog_list .blogs-wrapper .blog:last-of-type {
  border-bottom: 1px solid #999999;
}

#blog_list .blogs-wrapper .blog {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 170px;
  padding-right: 70px;
  color: inherit;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog_list .blogs-wrapper .blog a .image-wrapper {
  position: absolute;
  top: 20px;
  left: 0;
  width: 150px;
  height: 112.5px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#blog_list .blogs-wrapper .blog a:hover .image-wrapper {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog_list .blogs-wrapper .blog a .image-wrapper img {
  width: 100%;
}

#blog_list .blogs-wrapper .blog .meta-wrapper{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#blog_list .blogs-wrapper .blog .meta-wrapper .meta-wrapper-cat{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#blog_list .blogs-wrapper .blog .meta-wrapper .meta-wrapper-cat .cat{
  margin-right:5px;
  margin-bottom:5px;
}

#blog_list .blogs-wrapper .blog .meta-wrapper .cat a{
  padding: .2em 1em;
  font-size: 12px;
  font-weight: bold;
  border: 1px solid #e87449;
}

#blog_list .blogs-wrapper .blog .meta-wrapper .date {
  font-size: 14px;
}

#blog_list .blogs-wrapper .blog .meta-wrapper .date {
  -webkit-transition: all .3s;
  transition: all .3s;
}
#blog_list .blogs-wrapper .blog .content-wrapper .blog-title{
  margin-top:10px;
}
#blog_list .blogs-wrapper .blog .content-wrapper .blog-title a{
  font-size: 18px;
  line-height: 1.4em;
  color:inherit;
}

#blog_list .blogs-wrapper .blog a:hover .content-wrapper .blog-title {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog_list .blogs-wrapper .blog a .author-wrapper {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#blog_list .blogs-wrapper .blog a .author-wrapper .image-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

#blog_list .blogs-wrapper .blog a .author-wrapper .image-wrap img {
  width: 100%;
}

#blog_list .blogs-wrapper .blog a .author-wrapper .name {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #969696;
}

#blog_list .blogs-wrapper .blog a:hover .author-wrapper .name {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ナビゲーションブロック */
#blog_list .navigation-wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#blog_list .navigation-wrapper .prev,
#blog_list .navigation-wrapper .next {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fa8d37;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#blog_list .navigation-wrapper .prev:hover,
#blog_list .navigation-wrapper .next:hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog_list .navigation-wrapper .prev {
  margin-right: 5px;
}

#blog_list .navigation-wrapper .next {
  margin-left: 5px;
}

#blog_list .navigation-wrapper .prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-left: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#blog_list .navigation-wrapper .next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-75%, -50%) rotate(-45deg);
          transform: translate(-75%, -50%) rotate(-45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#blog_list .navigation-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

#blog_list .navigation-wrapper .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#blog_list .navigation-wrapper .navigation > li {
  font-size: 12px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#blog_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
  margin-left: 5px;
}

#blog_list .navigation-wrapper .navigation > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#blog_list .navigation-wrapper .navigation > li:not(.between) {
  width: 25px;
  height: 25px;
  border: 1px solid #fa8d37;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
}

#blog_list .navigation-wrapper .navigation > li:not(.between):hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#blog_list .navigation-wrapper .navigation > li.between {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#blog_list .navigation-wrapper .navigation > li.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #fa8d37;
}

#blog_list .navigation-wrapper .navigation > li.current:hover {
  background-color: #fa8d37;
}

#blog_list .navigation-wrapper .navigation > li.current a {
  color: #fff;
}

/* サブカテゴリ：メッセージ */
#blog_list .category-message {
  margin-top: 1em;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* カテゴリ―リスト */
  #blog_list .category-wrapper {
    margin-top: 2.196vw;
  }
  #blog_list .category-wrapper .category {
    padding: 1.171vw .732vw;
    font-size: 1.171vw;
  }
  #blog_list .category-wrapper .category-list {
    padding: 1.171vw .732vw;
  }
  #blog_list .category-wrapper .category-list > li {
    font-size: 1.171vw;
  }
  /* ブログ一覧ブロック */
  #blog_list .blogs-wrapper {
    margin-top: 2.928vw;
  }
  #blog_list .blogs-wrapper .blog {
    padding: 1.464vw 0;
  }
  #blog_list .blogs-wrapper .blog::after {
    width: .439vw;
    height: .439vw;
  }
  #blog_list .blogs-wrapper .blog {
    padding-left: 12.445vw;
    padding-right: 5.124vw;
  }
  #blog_list .blogs-wrapper .blog a .image-wrapper {
    width: 10.981vw;
    height: 8.235vw;
    outline-width: .146vw;
  }
  #blog_list .blogs-wrapper .blog .meta-wrapper .cat a{
    font-size: .878vw;
  }
  #blog_list .blogs-wrapper .blog .meta-wrapper .date{
    font-size: 1.025vw;
  }
  #blog_list .blogs-wrapper .blog .content-wrapper .blog-title{
    margin-top: .732vw;
  }  
  #blog_list .blogs-wrapper .blog .content-wrapper .blog-title a{
    font-size: 1.318vw;
  }
  #blog_list .blogs-wrapper .blog a .author-wrapper {
    margin-top: .732vw;
  }
  #blog_list .blogs-wrapper .blog a .author-wrapper .image-wrap {
    width: 2.928vw;
    height: 2.928vw;
  }
  #blog_list .blogs-wrapper .blog a .author-wrapper .name {
    margin-left: .732vw;
    font-size: 1.025vw;
  }
  /* ナビゲーションブロック */
  #blog_list .navigation-wrapper {
    margin-top: 1.464vw;
  }
  #blog_list .navigation-wrapper .prev,
  #blog_list .navigation-wrapper .next {
    width: 1.83vw;
    height: 1.83vw;
  }
  #blog_list .navigation-wrapper .prev {
    margin-right: .366vw;
  }
  #blog_list .navigation-wrapper .next {
    margin-left: .366vw;
  }
  #blog_list .navigation-wrapper .prev::after {
    width: .512vw;
    height: .512vw;
  }
  #blog_list .navigation-wrapper .next::after {
    width: .512vw;
    height: .512vw;
  }
  #blog_list .navigation-wrapper .navigation > li {
    font-size: .878vw;
  }
  #blog_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: .366vw;
  }
  #blog_list .navigation-wrapper .navigation > li:not(.between) {
    width: 1.83vw;
    height: 1.83vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* タイトル */
  #blog_list h1 {
    text-align: center;
    font-size: 8vw;
  }
  /* カテゴリ―リスト */
  #blog_list .category-wrapper {
    margin-top: 10.667vw;
  }
  #blog_list .category-wrapper .category {
    padding: 4.267vw 2.667vw;
    font-size: 4.267vw;
  }
  #blog_list .category-wrapper .category-list {
    padding: 4.267vw 2.667vw;
  }
  #blog_list .category-wrapper .category-list > li {
    font-size: 4.267vw;
  }
  /* ブログ一覧ブロック */
  #blog_list .blogs-wrapper {
    margin-top: 4.667vw;
  }
  #blog_list .blogs-wrapper .blog {
    padding: 5.333vw 0;
  }
  #blog_list .blogs-wrapper .blog::after {
    content: none;
  }
  #blog_list .blogs-wrapper .blog {
    padding-left: 21.333vw;
    padding-right: 0;
  }
  #blog_list .blogs-wrapper .blog a .image-wrapper {
    width: 18.667vw;
    height: 18.667vw;
    top:5.333vw;
  }
  #blog_list .blogs-wrapper .blog a .image-wrapper img {
    outline-width: .533vw;
  }
  #blog_list .blogs-wrapper .blog .meta-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #blog_list .blogs-wrapper .blog .meta-wrapper .cat a{
    padding: .2em 1.2em;
    font-size: 2.667vw;
    font-weight: bold;
  }
  #blog_list .blogs-wrapper .blog .meta-wrapper .date{
    font-size: 3.2vw;
  }
  #blog_list .blogs-wrapper .blog .content-wrapper .blog-title a{
    margin-top: 3.2vw;
  }
    #blog_list .blogs-wrapper .blog .content-wrapper .blog-title a{
    height: 2.8em;
    font-size: 3.733vw;
    line-height: 1.4em;
    overflow: hidden;
  }
  #blog_list .blogs-wrapper .blog a .author-wrapper {
    margin-top: 2.667vw;
  }
  #blog_list .blogs-wrapper .blog a .author-wrapper .image-wrap {
    width: 6.933vw;
    height: 6.933vw;
  }
  #blog_list .blogs-wrapper .blog a .author-wrapper .name {
    margin-left: 1.333vw;
    font-size: 3.2vw;
  }
  /* ナビゲーションブロック */
  #blog_list .navigation-wrapper {
    margin-top: 5.333vw;
  }
  #blog_list .navigation-wrapper .prev,
  #blog_list .navigation-wrapper .next {
    width: 6.667vw;
    height: 6.667vw;
  }
  #blog_list .navigation-wrapper .prev {
    margin-right: 1.333vw;
  }
  #blog_list .navigation-wrapper .next {
    margin-left: 1.333vw;
  }
  #blog_list .navigation-wrapper .prev::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #blog_list .navigation-wrapper .next::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #blog_list .navigation-wrapper .navigation > li {
    font-size: 3.2vw;
  }
  #blog_list .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: 1.333vw;
  }
  #blog_list .navigation-wrapper .navigation > li:not(.between) {
    width: 6.667vw;
    height: 6.667vw;
  }
}

/* ブログ詳細ページ(blog-details.html)
--------------------------------------------- */
/* サブタイトル(entry-subtitle) */
#blog_details #mainColumn .entry-subtitle {
  margin-bottom: 10px;
  font-size: 20px;
}

/* メインタイトル(entry-title) */
#blog_details #mainColumn .entry-title {
  font-size: 40px;
}

/* 本文中(entry-content内) */
#blog_details #mainColumn .entry-content h2 {
  margin-bottom: .8em;
  margin-top: 2em;
}

#blog_details #mainColumn .entry-content h3 {
  margin-bottom: .8em;
  margin-top:1.5em;
}

#blog_details #mainColumn .entry-content h4 {
  margin-bottom: .9em;
  margin-top:1.5em;
}

#blog_details #mainColumn .entry-content p {
  margin-bottom: 1em;
}

#blog_details #mainColumn .entry-content blockquote p {
  margin-bottom: 0;
}

#blog_details #mainColumn .entry-content div {
  margin-bottom: 1em;
}

#blog_details #mainColumn .entry-content img {
  display: block;
  margin: 0 auto 1em;
  max-width: 100%;
}

#blog_details #mainColumn .entry-content blockquote {
  margin: 0 0 1.1em;
  padding: 20px 20px 20px 40px;
  font-size: 14px;
  background-color: #fffdf0;
  position: relative;
}

#blog_details #mainColumn .entry-content blockquote::before {
  content: '“';
  font-family: kozuka-mincho-pro, serif;
  font-style: normal;
  font-weight: 500;
  font-size: 63px;
  text-indent: .11em;
  color: #ddd0b8;
  display: inline-block;
  width: 2px;
  height: 100%;
  background-color: #ddd0b8;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

#blog_details #mainColumn .entry-content a {
  text-decoration: underline;
}

#blog_details #mainColumn .entry-content a:hover {
  color: #666666;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* メタ中(entry-meta内) */
#blog_details #mainColumn .entry-meta {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

#blog_details #mainColumn .entry-meta .cat_title {
  display: none;
}

#blog_details #mainColumn .entry-meta .date_list {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  color: #969696;
}

#blog_details #mainColumn .entry-meta .post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#blog_details #mainColumn .entry-meta .post-categories li {
  font-size: 14px;
  font-weight: bold;
}

#blog_details #mainColumn .entry-meta .post-categories li:nth-of-type(n+2) {
  margin-left: .8em;
}

#blog_details #mainColumn .entry-meta .post-categories a {
  display: block;
  padding: .2em .4em;
  text-decoration: none;
  border: 1px solid #dd7a55;
}

/* SNSリンクブロック(wp_social_bookmarking_light内) */
.wp_social_bookmarking_light {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.wp_social_bookmarking_light iframe {
  display: block;
}

.wp_social_bookmarking_light > div {
  margin-bottom: 4px;
}

.wp_social_bookmarking_light > div:nth-of-type(n+2) {
  margin-left: 4px;
}

/* ブログ一覧を見る */
#blog_details #mainColumn .link-wrapper {
  margin-bottom: 110px;
}

#blog_details #mainColumn .link {
  width: 334px;
  height: 60px;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* サブタイトル(entry-subtitle) */
  #blog_details #mainColumn .entry-subtitle {
    margin-bottom: .732vw;
    font-size: 1.464vw;
  }
  /* メインタイトル(entry-title) */
  #blog_details #mainColumn .entry-title {
    font-size: 2.928vw;
  }
  /* 本文中(entry-content内) */
  #blog_details #mainColumn .entry-content blockquote {
    padding: 1.464vw 1.464vw 1.464vw 2.928vw;
    font-size: 1.025vw;
  }
  #blog_details #mainColumn .entry-content blockquote::before {
    font-size: 4.612vw;
    width: .146vw;
  }
  /* メタ中(entry-meta内) */
  #blog_details #mainColumn .entry-meta .date_list {
    font-size: 1.025vw;
  }
  #blog_details #mainColumn .entry-meta {
    margin-top: 1.464vw;
    margin-bottom: 1vw;
  }
  #blog_details #mainColumn .entry-meta .post-categories li {
    font-size: 1.025vw;
  }
  /* SNSリンクブロック(wp_social_bookmarking_light内) */
  .wp_social_bookmarking_light {
    margin-bottom: 2.928vw;
  }
  .wp_social_bookmarking_light > div {
    margin-bottom: .293vw;
  }
  .wp_social_bookmarking_light > div:nth-of-type(n+2) {
    margin-left: .293vw;
  }
  /* ブログ一覧を見る */
  #blog_details #mainColumn .link-wrapper {
    margin-bottom: 8.053vw;
  }
  #blog_details #mainColumn .link {
    width: 24.451vw;
    height: 4.392vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* サブタイトル(entry-subtitle) */
  #blog_details #mainColumn .entry-subtitle {
    margin-bottom: 10px;
    font-size: 4.8vw;
  }
  /* メインタイトル(entry-title) */
  #blog_details #mainColumn .entry-title {
    font-size: 8vw;
  }
  /* 本文中(entry-content内) */
  #blog_details #mainColumn .entry-content h2 {
    margin-bottom: .6em;
    margin-top:2em;
  }
  #blog_details #mainColumn .entry-content h3 {
    margin-bottom: .4em;
    line-height: 6vw;
    margin-top:2em;
  }
  #blog_details #mainColumn .entry-content h4 {
    margin-bottom: .9em;
    margin-top:2em;
  }
  #blog_details #mainColumn .entry-content p {
    margin-bottom: 1em;
  }
  #blog_details #mainColumn .entry-content blockquote p {
    margin-bottom: 0;
  }
  #blog_details #mainColumn .entry-content div {
    margin-bottom: 1em;
  }
  #blog_details #mainColumn .entry-content blockquote {
    padding: 5.333vw 5.333vw 5.333vw 10.667vw;
    font-size: 3.733vw;
  }
  #blog_details #mainColumn .entry-content blockquote::before {
    font-size: 16.8vw;
    width: .533vw;
  }
  /* 投稿メタ内(entry-meta内) */
  #blog_details #mainColumn .entry-meta {
    position: static;
    margin-top: 2.133vw;
    margin-bottom: 5vw;
  }
  #blog_details #mainColumn .entry-meta .date_list {
    position: static;
    margin-top: 2.133vw;
    font-size: 3.2vw;
  }
  #blog_details #mainColumn .entry-meta .post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #blog_details #mainColumn .entry-meta .post-categories li {
    font-size: 2.667vw;
  }
  #blog_details #mainColumn .entry-meta .post-categories li:nth-of-type(n+2) {
    margin-left: .8em;
  }
  #blog_details #mainColumn .entry-meta .post-categories a {
    padding: .2em .4em;
    color: #333333;
    border-color: #fa8d37;
    border-radius: 1.067vw;
  }
  /* SNSリンクブロック(wp_social_bookmarking_light内) */
  .wp_social_bookmarking_light {
    margin-bottom: 5.333vw;
  }
  .wp_social_bookmarking_light iframe {
    display: block;
  }
  .wp_social_bookmarking_light > div {
    margin-bottom: 4px;
  }
  .wp_social_bookmarking_light > div:nth-of-type(n+2) {
    margin-left: 4px;
  }
  /* ブログ一覧を見る */
  #blog_details #mainColumn .link-wrapper {
    margin-bottom: 10.667vw;
  }
  #blog_details #mainColumn .link {
    width: auto;
    height: 16vw;
  }
}

/* 初めて診療を受けられる方へ(newPatient.html)
--------------------------------------------- */
/* ページ内リンクブロック */
#newPatient .jumpLink-section {
  margin-top: 40px;
}

#newPatient .jumpLink-section .jumpLinks {
  width: 640px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#newPatient .jumpLink-section .jumpLinks .link-block {
  width: 300px;
  height: 50px;
}

/* 各セクション */
#newPatient .wrap-section {
  margin-top: 40px;
}

#newPatient .wrap-section + .wrap-section {
  margin-top: 50px;
}

#newPatient .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#newPatient .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#newPatient .wrap-section .heading-wrapper {
  width: 300px;
}

#newPatient .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#newPatient .wrap-section .content-wrapper {
  width: 750px;
}

/* 基本CSS */
#newPatient h3 {
  margin-top: 1em;
}

#newPatient h4 {
  margin-top: 1em;
  font-size: 16px;
  padding-left: 0;
}

#newPatient h4::before {
  content: none;
}

#newPatient p:not([class]) {
  margin-top: 1em;
}

#newPatient .red, #medicalCourses_general .red {
  color: #e64731;
}

#newPatient p.ts14 {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.7em;
}

/* 予約について */
#newPatient .emphasis {
  font-size: 18px;
  color: #de3f3f;
  font-weight: bold;
}

#newPatient p + p {
  margin-top: .4em;
}

/* 持ち物 */
#newPatient .required-wrap .heading {
  margin-top: 20px;
  font-size: 18px;
}

#newPatient .required-wrap .heading > .required {
  margin-right: .5em;
  padding: .1em .4em;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background-color: #de3f3f;
}

#newPatient .required-wrap .heading + ul {
  margin-top: .5em;
}

#newPatient .required-wrap ul > li {
  font-size: 14px;
  line-height: 1.71em;
}

/* 持ち物 */
#newPatient .belongings-wrap + .belongings-wrap {
  margin-top: 1em;
}

#newPatient .belongings-wrap .heading {
  display: inline-block;
  padding: .2em .4em;
  font-size: 16px;
  color: #dd7a55;
  line-height: 1em;
  border: 1px solid #dd7a55;
}

#newPatient .belongings-wrap .heading + ul {
  margin-top: .3em;
}

#newPatient .belongings-wrap ul > li {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.44em;
}

#newPatient .belongings-wrap ul.fs-big > li {
  font-size: 18px;
}

#newPatient .belongings-wrap ul > li::before {
  content: '・';
}

#newPatient .belongings-wrap ul p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.71em;
  font-weight: 500;
}

#newPatient .belongings-wrap ul a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  position: relative;
}

#newPatient .belongings-wrap ul a > .icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(150%, -50%);
          transform: translate(150%, -50%);
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: .9em;
  height: .9em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
}

#newPatient .belongings-wrap ul a > .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
}

/* 診療・施術の流れ */
#newPatient .step_list {
  margin-top: 20px;
}

#newPatient .step_list > li:not(:last-of-type) {
  margin-bottom: 10px;
}

#newPatient .step_list > li:not(:last-of-type)::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 36px;
  height: 36px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  -webkit-transform: rotate(45deg) translate(-30%, -30%);
          transform: rotate(45deg) translate(-30%, -30%);
}

#newPatient .step_list h4 {
  margin-top: 0;
  color: #dd7a55;
  font-size: 20px;
}

#newPatient .step_list p {
  margin-top: .4em;
}

/* 診療時間および担当医 */
#newPatient .consultation-hours {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#newPatient .consultation-hours .hours-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
  width: 370px;
  background-color: #f4eee4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#newPatient .consultation-hours .heading {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 30px;
  width: 100%;
  font-size: 18px;
  line-height: 1.44em;
}

#newPatient .consultation-hours dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#newPatient .consultation-hours dt {
  width: 27.6%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4em;
}

#newPatient .consultation-hours dd {
  width: 72.4%;
  font-size: 16px;
  line-height: inherit;
}

#newPatient .consultation-hours dd li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6em;
}

#newPatient .consultation-hours dd li::before {
  content: '■';
  position: absolute;
  left: 0;
}

#newPatient .consultation-hours dt:nth-of-type(n+2),
#newPatient .consultation-hours dd:nth-of-type(n+2) {
  margin-top: 10px;
}

#newPatient .consultation-hours .attention-list {
  width: 357px;
  font-size: 14px;
  line-height: 1.42em;
}
/*
#newPatient .table-wrapper {
  margin-top: 20px;
  overflow-x: auto;
}
*/
#newPatient .consultation-schedule h4 {
  font-size: 18px;
}

#newPatient .consultation-schedule h4::before {
  content: none;
}
/*
#newPatient table {
  width: 100%;
  font-size: 16px;
}

#newPatient thead tr {
  height: 40px;
  color: #fff;
  background-color: #ed9573;
}

#newPatient thead tr th:first-of-type {
  width: 16.8%;
}

#newPatient thead tr th:nth-of-type(n+2) {
  width: 10.4%;
}

#newPatient thead tr th:nth-of-type(even) {
  background-color: #dd7a55;
}

#newPatient tbody tr {
  height: 70px;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}

#newPatient tbody tr th {
  font-weight: 500;
}

#newPatient tbody tr td:nth-child(even) {
  background-color: #f2f2f2;
}

#newPatient tbody tr td.rest {
  font-weight: bold;
  color: #e64731;
}
*/
/* ドクタープロフィール */
#newPatient .profile-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 40px 20px 137px;
  background-color: #fffdf0;
  position: relative;
}

#newPatient .profile-wrapper .image-wrap {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 15px;
}

#newPatient .profile-wrapper .image-wrap img {
  width: 100%;
}

#newPatient .profile-wrapper .meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#newPatient .profile-wrapper .meta-wrap .pos {
  margin-right: 10px;
  padding: .21em .64em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #dd7a55;
  border-radius: 5px;
}

#newPatient .profile-wrapper .meta-wrap .name {
  font-size: 16px;
  font-weight: bold;
}

#newPatient .profile-wrapper .profile-wrap {
  margin-top: 20px;
  border-top: 1px solid #dd7a55;
}

/* ドクター紹介リンク */
#newPatient .link-wrapper {
  margin-top: 20px;
}

#newPatient .link-wrapper .link {
  width: 334px;
  height: 60px;
}

/* お問い合わせ */
#newPatient .contact-wrapper {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#newPatient .contact-wrapper .free {
  margin-bottom: .6em;
  font-size: 36px;
}

#newPatient .contact-wrapper .free::before {
  content: '';
  background-image: url(../img/footer-icon-freedial-pc.png);
  background-size: cover;
  display: inline-block;
  margin-right: 5px;
  width: 24px;
  height: 16px;
  vertical-align: middle;
}

#newPatient .contact-wrapper .nofree {
  margin-bottom: .2em;
  font-size: 20px;
}

#newPatient .contact-wrapper .nofree::before {
  content: '';
  background-image: url(../img/footer-icon-tel-pc.png);
  background-size: cover;
  display: inline-block;
  margin-right: 2px;
  width: 12px;
  height: 15px;
}

#newPatient .contact-wrapper p {
  margin-top: 0;
  font-size: 14px;
}

#newPatient .contact-wrapper .mail-wrap {
  width: 300px;
  height: 130px;
  position: relative;
  background-color: #f4ecdc;
}

#newPatient .contact-wrapper .mail-wrap a {
  color: inherit;
  display: block;
  height: 100%;
}

#newPatient .contact-wrapper .mail-wrap img {
  display: block;
  margin: 0 auto;
  padding-top: 32px;
  height: 22.3%;
}

#newPatient .contact-wrapper .mail-wrap p {
  margin-top: 22px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* その他コンテンツ */
#newPatient .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

#newPatient .other div {
  width: 25%;
  height: 268px;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#newPatient .other div a {
  display: block;
  height: 100%;
  color: inherit;
}

#newPatient .other div img {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  height: 22.4%;
}

#newPatient .other div h4 {
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  text-align: center;
  margin: 10px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#newPatient .other div p {
  width: 230px;
  margin: 1em auto 0;
}

#newPatient .other div:nth-child(1) {
  background-color: #faf3e7;
}

#newPatient .other div:nth-child(2) {
  background-color: #f4ecdc;
}

#newPatient .other div:nth-child(3) {
  background-color: #efe3cd;
}

#newPatient .other div:nth-child(4) {
  background-color: #ddd0b8;
}

#newPatient .other div:nth-child(5) {
  background-color: #e2d7b9;
}

#newPatient .other div:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  border-color: #dd7a55;
  background-color: transparent;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* ページ内リンクブロック */
  #newPatient .jumpLink-section {
    margin-top: 2.928vw;
  }
  #newPatient .jumpLink-section .jumpLinks {
    width: 46.852vw;
  }
  #newPatient .jumpLink-section .jumpLinks .link-block {
    width: 21.962vw;
    height: 3.66vw;
  }
  /* 各セクション */
  #newPatient .wrap-section {
    margin-top: 2.928vw;
  }
  #newPatient .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  #newPatient .wrap-section:last-of-type {
    margin-bottom: 4.758vw;
  }
  /* 左の見出しブロック */
  #newPatient .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #newPatient .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #newPatient .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* 基本CSS */
  #newPatient h4 {
    font-size: 1.171vw;
  }
  #newPatient p.ts14 {
    font-size: 1.024vw;
  }
  /* 予約について */
  #newPatient .emphasis {
    font-size: 1.318vw;
  }
  /* 持ち物 */
  #newPatient .required-wrap .heading {
    margin-top: 1.464vw;
    font-size: 1.318vw;
  }
  #newPatient .required-wrap .heading > .required {
    font-size: 1.171vw;
  }
  #newPatient .required-wrap ul > li {
    font-size: 1.024vw;
  }
  /* 持ち物 */
  #newPatient .belongings-wrap .heading {
    font-size: 1.171vw;
  }
  #newPatient .belongings-wrap ul > li {
    font-size: 1.171vw;
  }
  #newPatient .belongings-wrap ul.fs-big > li {
    font-size: 1.318vw;
  }
  #newPatient .belongings-wrap ul p {
    font-size: 1.024vw;
  }
  #newPatient .belongings-wrap ul a {
    font-size: 1.171vw;
  }
  /* 診療・施術の流れ */
  #newPatient .step_list {
    margin-top: 1.464vw;
  }
  #newPatient .step_list > li:not(:last-of-type) {
    margin-bottom: .732vw;
  }
  #newPatient .step_list > li:not(:last-of-type)::after {
    width: 2.635vw;
    height: 2.635vw;
  }
  #newPatient .step_list h4 {
    font-size: 1.464vw;
  }
  /* 診療時間および担当医 */
  #newPatient .consultation-hours {
    margin-top: 1.318vw;
  }
  #newPatient .consultation-hours .hours-wrap {
    padding: 2.196vw 0;
    width: 27.086vw;
  }
  #newPatient .consultation-hours .heading {
    padding-left: 2.196vw;
    font-size: 1.318vw;
  }
  #newPatient .consultation-hours dt {
    font-size: 1.318vw;
  }
  #newPatient .consultation-hours dd {
    font-size: 1.171vw;
  }
  #newPatient .consultation-hours dt:nth-of-type(n+2),
  #newPatient .consultation-hours dd:nth-of-type(n+2) {
    margin-top: .732vw;
  }
  #newPatient .consultation-hours .attention-list {
    width: 26.135vw;
    font-size: 1.024vw;
  }
  /*
  #newPatient .table-wrapper {
    margin-top: 1.464vw;
  }
  */
  #newPatient .consultation-schedule h4 {
    font-size: 1.318vw;
  }
  /*
  #newPatient table {
    font-size: 1.171vw;
  }
  #newPatient thead tr {
    height: 2.928vw;
  }
  #newPatient tbody tr {
    height: 5.124vw;
  }
  */
  /* ドクタープロフィール */
  #newPatient .profile-wrapper {
    margin-top: 1.464vw;
    padding: 1.464vw 2.928vw 1.464vw 10.029vw;
  }
  #newPatient .profile-wrapper .image-wrap {
    width: 7.321vw;
    height: 7.321vw;
    left: 1.098vw;
  }
  #newPatient .profile-wrapper .meta-wrap .pos {
    margin-right: .732vw;
    font-size: 1.024vw;
    border-radius: .366vw;
  }
  #newPatient .profile-wrapper .meta-wrap .name {
    font-size: 1.171vw;
  }
  #newPatient .profile-wrapper .profile-wrap {
    margin-top: 1.464vw;
  }
  /* ドクター紹介リンク */
  #newPatient .link-wrapper {
    margin-top: 1.464vw;
  }
  #newPatient .link-wrapper .link {
    width: 24.451vw;
    height: 4.392vw;
  }
  /* お問い合わせ */
  #newPatient .contact-wrapper {
    margin-top: 1.024vw;
  }
  #newPatient .contact-wrapper .free {
    font-size: 2.635vw;
  }
  #newPatient .contact-wrapper .free::before {
    margin-right: .366vw;
    width: 1.757vw;
    height: 1.171vw;
  }
  #newPatient .contact-wrapper .nofree {
    font-size: 1.464vw;
  }
  #newPatient .contact-wrapper .nofree::before {
    content: '';
    margin-right: .146vw;
    width: .878vw;
    height: 1.098vw;
  }
  #newPatient .contact-wrapper p {
    font-size: 1.024vw;
  }
  #newPatient .contact-wrapper .mail-wrap {
    width: 21.962vw;
    height: 9.517vw;
  }
  #newPatient .contact-wrapper .mail-wrap img {
    padding-top: 2.343vw;
  }
  #newPatient .contact-wrapper .mail-wrap p {
    margin-top: 1.611vw;
    font-size: 1.318vw;
  }
  /* その他コンテンツ */
  #newPatient .other {
    margin-top: 5.857vw;
  }
  #newPatient .other div {
    height: 19.619vw;
  }
  #newPatient .other div img {
    padding-top: 2.196vw;
  }
  #newPatient .other div h4 {
    font-size: 1.318vw;
    margin: .732vw auto 0;
  }
  #newPatient .other div p {
    width: 16.837vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #newPatient .title-block h1 {
    font-size: 8vw;
  }
  /* ページ内リンクブロック */
  #newPatient .jumpLink-section {
    margin-top: 10.667vw;
  }
  #newPatient .jumpLink-section .jumpLinks {
    width: auto;
  }
  #newPatient .jumpLink-section .jumpLinks .link-block {
    width: 43.2vw;
    height: 13.333vw;
  }
  /* 各セクション */
  #newPatient .wrap-section {
    margin-top: 10.667vw;
  }
  #newPatient .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #newPatient .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #newPatient .wrap-section .container {
    display: block;
  }
  /* 左の見出しブロック */
  #newPatient .wrap-section .heading-wrapper {
    width: auto;
  }
  #newPatient .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #newPatient .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* 基本CSS */
  #newPatient h4 {
    font-size: 3.733vw;
  }
  #newPatient p.ts14 {
    font-size: 14px;
  }
  /* 予約について */
  #newPatient .emphasis {
    font-size: inherit;
  }
  #newPatient p + p {
    margin-top: .4em;
  }
  /* 持ち物 */
  #newPatient .required-wrap .heading {
    margin-top: 20px;
    font-size: 4.8vw;
  }
  #newPatient .required-wrap .heading > .required {
    display: block;
    margin-bottom: .5em;
    margin-right: 0;
    padding: .1em .4em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 4.267vw;
  }
  #newPatient .required-wrap ul > li {
    font-size: 3.733vw;
  }
  /* 持ち物 */
  #newPatient .belongings-wrap .heading {
    font-size: 4.267vw;
  }
  #newPatient .belongings-wrap ul > li {
    font-size: 3.733vw;
    font-weight: bold;
    line-height: 1.44em;
  }
  #newPatient .belongings-wrap ul.fs-big > li {
    font-size: 4.267vw;
  }
  #newPatient .belongings-wrap ul p {
    font-size: 3.733vw;
  }
  #newPatient .belongings-wrap ul .link {
    height: 16vw;
    border: 1px solid #dd7a55;
  }
  #newPatient .belongings-wrap ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    font-size: 3.733vw;
    position: static;
  }
  #newPatient .belongings-wrap ul a > .icon {
    position: relative;
    top: 0;
    margin-left: .4em;
    -webkit-transform: none;
            transform: none;
  }
  /* 診療・施術の流れ */
  #newPatient .step_list {
    margin-top: 5.333vw;
  }
  #newPatient .step_list > li:not(:last-of-type) {
    margin-bottom: 2.667vw;
  }
  #newPatient .step_list > li:not(:last-of-type)::after {
    margin: 1em auto 0;
    width: 9.6vw;
    height: 9.6vw;
  }
  #newPatient .step_list h4 {
    font-size: 3.733vw;
  }
  #newPatient .step_list p {
    margin-top: .2em;
  }
  /* 診療時間および担当医 */
  #newPatient .consultation-hours {
    margin-top: 5.333vw;
    display: block;
  }
  #newPatient .consultation-hours .hours-wrap {
    padding: 5.333vw 0;
    width: auto;
  }
  #newPatient .consultation-hours .heading {
    padding-left: 5.333vw;
    font-size: 3.733vw;
  }
  #newPatient .consultation-hours dt {
    width: 25%;
    font-size: 3.733vw;
  }
  #newPatient .consultation-hours dd {
    width: 75%;
    font-size: 3.733vw;
  }
  #newPatient .consultation-hours dd li {
    padding-left: 1em;
    line-height: 1.44em;
  }
  #newPatient .consultation-hours dt:nth-of-type(n+2),
  #newPatient .consultation-hours dd:nth-of-type(n+2) {
    margin-top: 2.667vw;
  }
  #newPatient .consultation-hours .attention-list {
    margin-top: 5.333vw;
    width: auto;
    font-size: 3.2vw;
  }
  #newPatient .consultation-hours .attention-list > li {
    line-height: 1.67em;
  }
  #newPatient .consultation-schedule h4 {
    font-size: 3.733vw;
  }
  /*
  #newPatient .table-wrapper {
    margin-top: 2.667vw;
  }
  #newPatient table {
    width: 146.667vw;
    font-size: 3.2vw;
  }
  #newPatient thead tr {
    height: 8vw;
  }
  #newPatient thead tr th:first-of-type {
    width: 12.8%;
  }
  #newPatient thead tr th:nth-of-type(n+2) {
    width: 10.9%;
  }
  #newPatient tbody tr {
    height: 13.333vw;
  }
  #newPatient tbody tr th:first-of-type {
    padding: 0 .7em;
  }
  #newPatient .table-wrapper + p {
    font-size: 2.667vw;
  }
  */
  /* ドクタープロフィール */
  #newPatient .profile-wrapper {
    margin-top: 5.333vw;
    padding: 5.333vw 5.333vw 5.333vw 35.733vw;
  }
  #newPatient .profile-wrapper .image-wrap {
    width: 26.667vw;
    height: 26.667vw;
    top: 5.333vw;
    left: 5.333vw;
  }
  #newPatient .profile-wrapper .image-wrap img {
    width: 100%;
  }
  #newPatient .profile-wrapper .meta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #newPatient .profile-wrapper .meta-wrap .pos {
    margin-right: 1.6vw;
    padding: .35em .66em;
    font-size: 3.2vw;
    line-height: 1em;
    border-radius: 1.333vw;
  }
  #newPatient .profile-wrapper .meta-wrap .name {
    font-size: 3.733vw;
  }
  #newPatient .profile-wrapper .profile-wrap {
    margin-top: 2.133vw;
    padding-top: 2.667vw;
  }
  #newPatient .profile-wrapper .profile-wrap p {
    margin-top: 0;
    font-size: 3.2vw;
  }
  /* ドクター紹介リンク */
  #newPatient .link-wrapper {
    margin-top: 5.333vw;
  }
  #newPatient .link-wrapper .link {
    width: auto;
    height: 16vw;
  }
  /* お問い合わせ */
  #newPatient .contact-wrapper {
    margin-top: 2.667vw;
    display: block;
  }
  #newPatient .contact-wrapper .free {
    margin-top: 2.667vw;
    margin-bottom: 0;
    height: 13.333vw;
    line-height: 13.333vw;
    font-size: 7.467vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
    position: relative;
    text-align: center;
  }
  #newPatient .contact-wrapper .free::before {
    display: inline-block;
    margin-right: 0;
    width: 6.4vw;
    height: 4.267vw;
    position: absolute;
    top: 50%;
    left: 18%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #newPatient .contact-wrapper .free a {
    display: block;
    height: 100%;
    text-indent: 1em;
  }
  #newPatient .contact-wrapper .nofree {
    margin-top: 2.667vw;
    height: 13.333vw;
    font-size: 5.333vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
    position: relative;
    text-align: center;
  }
  #newPatient .contact-wrapper .nofree::before {
    display: inline-block;
    margin-right: 0;
    width: 3.733vw;
    height: 5vw;
    position: absolute;
    top: 50%;
    left: 20%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #newPatient .contact-wrapper .nofree a {
    display: block;
    padding-left: 1.2em;
    height: 100%;
  }
  #newPatient .contact-wrapper .nofree a::before {
    content: 'フリーダイヤルをご利用になれない場合';
    display: block;
    margin-bottom: .1em;
    padding-top: 1em;
    font-size: 2.667vw;
  }
  #newPatient .contact-wrapper p {
    margin-top: 1em;
    font-size: 3.2vw;
    text-align: center;
  }
  #newPatient .contact-wrapper .orange {
    color: #dd7a55;
  }
  #newPatient .contact-wrapper .orange .b {
    font-weight: bold;
  }
  #newPatient .contact-wrapper .mail-wrap {
    margin-top: 2.667vw;
    width: auto;
    background-color: transparent;
    height: 13.333vw;
    font-size: 5.333vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
  }
  #newPatient .contact-wrapper .mail-wrap a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #newPatient .contact-wrapper .mail-wrap img {
    display: inline;
    margin-left: 0;
    margin-right: .8em;
    padding-top: 0;
    height: 32.4%;
  }
  #newPatient .contact-wrapper .mail-wrap p {
    margin-top: 0;
    font-size: 3.733vw;
    color: #dd7a55;
  }
  /* その他コンテンツ */
  #newPatient .other {
    display: block;
    margin-top: 5.333vw;
  }
  #newPatient .other div {
    width: auto;
    height: auto;
    border: none;
    padding: 0 0 8px 0;
  }
  #newPatient .other div a {
    position: relative;
    padding-left: 26%;
  }
  #newPatient .other div img {
    position: absolute;
    top: 50%;
    left: 15%;
    display: inline;
    margin: 0;
    padding-top: 0;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #newPatient .other div h4 {
    display: block;
    margin: 0;
    padding-top: 1.2em;
    height: 1.44em;
    text-align: left;
    font-size: 3.733vw;
  }
  #newPatient .other div p {
    width: 69.333vw;
    margin: .2em 0 0;
  }
  #newPatient .other div:nth-child(1):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #faf3e7;
  }
  #newPatient .other div:nth-child(2):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #f4ecdc;
  }
  #newPatient .other div:nth-child(3):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #efe3cd;
  }
  #newPatient .other div:nth-child(4):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #ddd0b8;
  }
  #newPatient .other div:nth-child(5):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #e2d7b9;
  }
}

/* アクセス(access.html)
--------------------------------------------- */
/* 各セクション */
#access .wrap-section {
  margin-top: 40px;
}

#access .wrap-section + .wrap-section {
  margin-top: 50px;
}

#access .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#access .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#access .wrap-section .heading-wrapper {
  width: 300px;
}

#access .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#access .wrap-section .content-wrapper {
  width: 750px;
}

/* 基本CSS */
#access h3 {
  margin-top: 1em;
  line-height: 1.16em;
}

#access h3::before,
#access h3::after {
  content: none;
}

#access h4 {
  margin-top: 1em;
  padding-left: 0;
}

#access h4::before {
  content: none;
}

#access .wrap-section h3:first-child,
#access .wrap-section h4:first-child {
  margin-top: 0;
}

#access h3 + p {
  margin-top: .2em;
}

/* 住所 */
#access .access-wrapper h3 {
  color: #dd7a55;
}

#access .address-wrapper address .address {
  margin-top: 1em;
  font-weight: bold;
}

#access .address-wrapper .link {
  margin-top: 20px;
  width: 300px;
  height: 60px;
}

#access #zoomImage {
  display: none;
}

/* お問い合わせ */
#access .contact-wrapper h4 {
  font-size: 20px;
}

#access .contact-wrapper {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#access .contact-wrapper .free {
  margin-bottom: .6em;
  font-size: 36px;
}

#access .contact-wrapper .free::before {
  content: '';
  background-image: url(../img/footer-icon-freedial-pc.png);
  background-size: cover;
  display: inline-block;
  margin-right: 5px;
  width: 24px;
  height: 16px;
  vertical-align: middle;
}

#access .contact-wrapper .nofree {
  margin-bottom: .2em;
  font-size: 20px;
}

#access .contact-wrapper .nofree::before {
  content: '';
  background-image: url(../img/footer-icon-tel-pc.png);
  background-size: cover;
  display: inline-block;
  margin-right: 2px;
  width: 12px;
  height: 15px;
}

#access .contact-wrapper p {
  margin-top: 0;
  font-size: 14px;
}

#access .contact-wrapper .mail-wrap {
  width: 300px;
  height: 130px;
  position: relative;
  background-color: #f4ecdc;
}

#access .contact-wrapper .mail-wrap a {
  color: inherit;
  display: block;
  height: 100%;
}

#access .contact-wrapper .mail-wrap img {
  display: block;
  margin: 0 auto;
  padding-top: 32px;
  height: 22.3%;
}

#access .contact-wrapper .mail-wrap p {
  margin-top: 22px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* その他コンテンツ */
#access .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

#access .other div {
  width: 25%;
  height: atuo;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#access .other div a {
  display: block;
  height: 100%;
  color: inherit;
}

#access .other div img {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  height: 22.4%;
}

#access .other div h4 {
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  text-align: center;
  margin: 10px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#access .other div p {
  width: 230px;
  margin: 1em auto 0;
}

#access .other div:nth-child(1) {
  background-color: #faf3e7;
}

#access .other div:nth-child(2) {
  background-color: #f4ecdc;
}

#access .other div:nth-child(3) {
  background-color: #efe3cd;
}

#access .other div:nth-child(4) {
  background-color: #ddd0b8;
}

#access .other div:nth-child(5) {
  background-color: #e2d7b9;
}

#access .other div:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  border-color: #dd7a55;
  background-color: transparent;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #access .wrap-section {
    margin-top: 2.928vw;
  }
  #access .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  #access .wrap-section:last-of-type {
    margin-bottom: 4.758vw;
  }
  /* 左の見出しブロック */
  #access .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #access .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #access .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* 住所 */
  #access .address-wrapper address img {
    width: 54.67%;
  }
  #access .address-wrapper .link {
    margin-top: 1.464vw;
    width: 21.962vw;
    height: 4.392vw;
  }
  /* お問い合わせ */
  #access .contact-wrapper h4 {
    font-size: 1.464vw;
  }
  #access .contact-wrapper {
    margin-top: 1.025vw;
  }
  #access .contact-wrapper .free {
    font-size: 2.635vw;
  }
  #access .contact-wrapper .free::before {
    margin-right: .366vw;
    width: 1.757vw;
    height: 1.171vw;
  }
  #access .contact-wrapper .nofree {
    font-size: 1.464vw;
  }
  #access .contact-wrapper .nofree::before {
    margin-right: .146vw;
    width: .878vw;
    height: 1.098vw;
  }
  #access .contact-wrapper p {
    font-size: 1.025vw;
  }
  #access .contact-wrapper .mail-wrap {
    width: 21.962vw;
    height: 9.517vw;
  }
  #access .contact-wrapper .mail-wrap img {
    padding-top: 2.343vw;
  }
  #access .contact-wrapper .mail-wrap p {
    margin-top: 1.611vw;
    font-size: 1.318vw;
  }
  /* その他コンテンツ */
  #access .other {
    margin-top: 5.857vw;
  }
  #access .other div {
    height: 19.619vw;
  }
  #access .other div img {
    padding-top: 2.196vw;
  }
  #access .other div h4 {
    font-size: 1.318vw;
    margin: .732vw auto 0;
  }
  #access .other div p {
    width: 16.837vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #access .title-block h1 {
    font-size: 8vw;
  }
  /* ページ内リンクブロック */
  #access .jumpLink-section {
    margin-top: 10.667vw;
  }
  #access .jumpLink-section .jumpLinks {
    width: auto;
  }
  #access .jumpLink-section .jumpLinks .link-block {
    width: 43.2vw;
    height: 13.333vw;
  }
  /* 各セクション */
  #access .wrap-section {
    margin-top: 10.667vw;
  }
  #access .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #access .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #access .wrap-section .container {
    display: block;
  }
  /* 左の見出しブロック */
  #access .wrap-section .heading-wrapper {
    width: auto;
  }
  #access .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #access .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* 基本CSS */
  #access h3 {
    margin-top: 1.8em;
    line-height: 1.16em;
  }
  #access h3::before,
  #access h3::after {
    content: none;
  }
  #access h4 {
    margin-top: 1em;
    padding-left: 0;
  }
  #access h4::before {
    content: none;
  }
  #access .wrap-section h3:first-child,
  #access .wrap-section h4:first-child {
    margin-top: 0;
  }
  #access h3 + p {
    margin-top: .2em;
  }
  /* 住所 */
  #access .access-wrapper h3 {
    color: #dd7a55;
  }
  #access .address-wrapper > img {
    margin-top: 10.667vw;
    width: 100%;
  }
  #access .address-wrapper address img {
    width: 100%;
  }
  #access .address-wrapper address .address {
    font-family: "Helvetica Neue" , Helvetica, sans-serif;
    font-size: 3.467vw;
    font-weight: 500;
  }
  #access .address-wrapper .zoomup {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 1em;
    margin-left: auto;
    font-size: 3.733vw;
    color: #dd7a55;
  }
  #access .address-wrapper .zoomup::after {
    content: '+';
    display: inline-block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 1.1em;
    height: 1.1em;
    font-size: 3.2vw;
    line-height: .7em;
    text-align: center;
    border: 1px solid #dd7a55;
    border-radius: 50%;
    -webkit-transform: translateY(-15%);
            transform: translateY(-15%);
  }
  #access .address-wrapper .link {
    margin-top: 2.667vw;
    width: auto;
    height: 16vw;
  }
  #access #zoomImage {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
  }
  #access #zoomImage .filter-bg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: white;
  }
  #access #zoomImage img {
    width: 100%;
  }
  /* お問い合わせ */
  #access .contact-wrapper {
    margin-top: 2.667vw;
    display: block;
  }
  #access .contact-wrapper .free {
    margin-top: 2.667vw;
    margin-bottom: 0;
    height: 13.333vw;
    line-height: 13.333vw;
    font-size: 7.467vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
    position: relative;
    text-align: center;
  }
  #access .contact-wrapper .free::before {
    display: inline-block;
    margin-right: 0;
    width: 6.4vw;
    height: 4.267vw;
    position: absolute;
    top: 50%;
    left: 18%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #access .contact-wrapper .free a {
    display: block;
    height: 100%;
    text-indent: 1em;
  }
  #access .contact-wrapper .nofree {
    margin-top: 2.667vw;
    height: 13.333vw;
    font-size: 5.333vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
    position: relative;
    text-align: center;
  }
  #access .contact-wrapper .nofree::before {
    display: inline-block;
    margin-right: 0;
    width: 3.733vw;
    height: 5vw;
    position: absolute;
    top: 50%;
    left: 20%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #access .contact-wrapper .nofree a {
    display: block;
    padding-left: 1.2em;
    height: 100%;
  }
  #access .contact-wrapper .nofree a::before {
    content: 'フリーダイヤルをご利用になれない場合';
    display: block;
    margin-bottom: .1em;
    padding-top: 1em;
    font-size: 2.667vw;
  }
  #access .contact-wrapper p {
    margin-top: 1em;
    font-size: 3.2vw;
    text-align: center;
  }
  #access .contact-wrapper .orange {
    color: #dd7a55;
  }
  #access .contact-wrapper .orange .b {
    font-weight: bold;
  }
  #access .contact-wrapper .mail-wrap {
    margin-top: 2.667vw;
    width: auto;
    background-color: transparent;
    height: 13.333vw;
    font-size: 5.333vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
  }
  #access .contact-wrapper .mail-wrap a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #access .contact-wrapper .mail-wrap img {
    display: inline;
    margin-left: 0;
    margin-right: .8em;
    padding-top: 0;
    height: 32.4%;
  }
  #access .contact-wrapper .mail-wrap p {
    margin-top: 0;
    font-size: 3.733vw;
    color: #dd7a55;
  }
  /* その他コンテンツ */
  #access .other {
    display: block;
    margin-top: 5.333vw;
  }
  #access .other div {
    width: auto;
    height: auto;
    border: none;
    padding-bottom:8px;
  }
  #access .other div a {
    position: relative;
    padding-left: 26%;
  }
  #access .other div img {
    position: absolute;
    top: 50%;
    left: 15%;
    display: inline;
    margin: 0;
    padding-top: 0;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #access .other div h4 {
    display: block;
    margin: 0;
    padding-top: 1.2em;
    height: 1.44em;
    text-align: left;
    font-size: 3.733vw;
  }
  #access .other div p {
    width: 69.333vw;
    margin: .2em 0 0;
  }
  #access .other div:nth-child(1):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #faf3e7;
  }
  #access .other div:nth-child(2):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #f4ecdc;
  }
  #access .other div:nth-child(3):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #efe3cd;
  }
  #access .other div:nth-child(4):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #ddd0b8;
  }
  #access .other div:nth-child(5):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #e2d7b9;
  }
}

/* 予約について(appointment.html)
--------------------------------------------- */
/* ページ内リンクブロック */
#appointment .jumpLink-section {
  margin-top: 40px;
}

#appointment .jumpLink-section .jumpLinks {
  width: 640px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#appointment .jumpLink-section .jumpLinks .link-block {
  width: 300px;
  height: 50px;
}

/* 各セクション */
#appointment .wrap-section {
  margin-top: 40px;
}

#appointment .wrap-section + .wrap-section {
  margin-top: 50px;
}

#appointment .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#appointment .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#appointment .wrap-section .heading-wrapper {
  width: 300px;
}

#appointment .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#appointment .wrap-section .content-wrapper {
  width: 750px;
}

/* 基本CSS */
#appointment h3 {
  margin-top: 1em;
}

#appointment h4 {
  margin-top: 1em;
  font-size: 16px;
  padding-left: 0;
}

#appointment h4::before {
  content: none;
}

#appointment p:not([class]) {
  margin-top: 1em;
}

#appointment .red {
  color: #e64731;
}

#appointment p.ts14 {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.7em;
}

/* 予約について */
#appointment .emphasis {
  font-size: 18px;
  color: #de3f3f;
  font-weight: bold;
}

#appointment p + p {
  margin-top: .4em;
}

/* 持ち物 */
#appointment .required-wrap .heading {
  margin-top: 20px;
  font-size: 18px;
}

#appointment .required-wrap .heading > .required {
  margin-right: .5em;
  padding: .1em .4em;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  background-color: #de3f3f;
}

#appointment .required-wrap .heading + ul {
  margin-top: .5em;
}

#appointment .required-wrap ul > li {
  font-size: 14px;
  line-height: 1.71em;
}

/* 持ち物 */
#appointment .belongings-wrap + .belongings-wrap {
  margin-top: 1em;
}

#appointment .belongings-wrap .heading {
  display: inline-block;
  padding: .2em .4em;
  font-size: 16px;
  color: #dd7a55;
  line-height: 1em;
  border: 1px solid #dd7a55;
}

#appointment .belongings-wrap .heading + ul {
  margin-top: .3em;
}

#appointment .belongings-wrap ul > li {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.44em;
}

#appointment .belongings-wrap ul.fs-big > li {
  font-size: 18px;
}

#appointment .belongings-wrap ul > li::before {
  content: '・';
}

#appointment .belongings-wrap ul p {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.71em;
  font-weight: 500;
}

#appointment .belongings-wrap ul a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  position: relative;
}

#appointment .belongings-wrap ul a > .icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(150%, -50%);
          transform: translate(150%, -50%);
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: .9em;
  height: .9em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
}

#appointment .belongings-wrap ul a > .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
}

/* 診療・施術の流れ */
#appointment .step_list {
  margin-top: 20px;
}

#appointment .step_list > li:not(:last-of-type) {
  margin-bottom: 10px;
}

#appointment .step_list > li:not(:last-of-type)::after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 36px;
  height: 36px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  -webkit-transform: rotate(45deg) translate(-30%, -30%);
          transform: rotate(45deg) translate(-30%, -30%);
}

#appointment .step_list h4 {
  margin-top: 0;
  color: #dd7a55;
  font-size: 20px;
}

#appointment .step_list p {
  margin-top: .4em;
}

/* 診療時間および担当医 */
#appointment .consultation-hours {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#appointment .consultation-hours .hours-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
  width: 370px;
  background-color: #f4eee4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#appointment .consultation-hours .heading {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 30px;
  width: 100%;
  font-size: 18px;
  line-height: 1.44em;
}

#appointment .consultation-hours dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#appointment .consultation-hours dt {
  width: 27.6%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4em;
}

#appointment .consultation-hours dd {
  width: 72.4%;
  font-size: 16px;
  line-height: inherit;
}

#appointment .consultation-hours dd li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6em;
}

#appointment .consultation-hours dd li::before {
  content: '■';
  position: absolute;
  left: 0;
}

#appointment .consultation-hours dt:nth-of-type(n+2),
#appointment .consultation-hours dd:nth-of-type(n+2) {
  margin-top: 10px;
}

#appointment .consultation-hours .attention-list {
  width: 357px;
  font-size: 14px;
  line-height: 1.42em;
}

#appointment .table-wrapper {
  margin-top: 20px;
  overflow-x: auto;
}

#appointment .consultation-schedule h4 {
  font-size: 18px;
}

#appointment .consultation-schedule h4::before {
  content: none;
}

#appointment table {
  width: 100%;
  font-size: 16px;
}

#appointment thead tr {
  height: 40px;
  color: #fff;
  background-color: #ed9573;
}

#appointment thead tr th:first-of-type {
  width: 16.8%;
}

#appointment thead tr th:nth-of-type(n+2) {
  width: 10.4%;
}

#appointment thead tr th:nth-of-type(even) {
  background-color: #dd7a55;
}

#appointment tbody tr {
  height: 70px;
  text-align: center;
  border-bottom: 1px solid #cccccc;
}

#appointment tbody tr th {
  font-weight: 500;
}

#appointment tbody tr td:nth-child(even) {
  background-color: #f2f2f2;
}

#appointment tbody tr td.rest {
  font-weight: bold;
  color: #e64731;
}

/* ドクタープロフィール */
#appointment .profile-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 40px 20px 137px;
  background-color: #fffdf0;
  position: relative;
}

#appointment .profile-wrapper .image-wrap {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 15px;
}

#appointment .profile-wrapper .image-wrap img {
  width: 100%;
}

#appointment .profile-wrapper .meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#appointment .profile-wrapper .meta-wrap .pos {
  margin-right: 10px;
  padding: .21em .64em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #dd7a55;
  border-radius: 5px;
}

#appointment .profile-wrapper .meta-wrap .name {
  font-size: 16px;
  font-weight: bold;
}

#appointment .profile-wrapper .profile-wrap {
  margin-top: 20px;
  border-top: 1px solid #dd7a55;
}

/* ドクター紹介リンク */
#appointment .link-wrapper {
  margin-top: 20px;
}

#appointment .link-wrapper .link {
  width: 334px;
  height: 60px;
}

/* お問い合わせ */
#appointment .contact-wrapper {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#appointment .contact-wrapper .free {
  margin-bottom: .6em;
  font-size: 36px;
}

#appointment .contact-wrapper .free::before {
  content: '';
  background-image: url(../img/footer-icon-freedial-pc.png);
  background-size: cover;
  display: inline-block;
  margin-right: 5px;
  width: 24px;
  height: 16px;
  vertical-align: middle;
}

#appointment .contact-wrapper .nofree {
  margin-bottom: .2em;
  font-size: 20px;
}

#appointment .contact-wrapper .nofree::before {
  content: '';
  background-image: url(../img/footer-icon-tel-pc.png);
  background-size: cover;
  display: inline-block;
  margin-right: 2px;
  width: 12px;
  height: 15px;
}

#appointment .contact-wrapper p {
  margin-top: 0;
  font-size: 14px;
}

#appointment .contact-wrapper .mail-wrap {
  width: 300px;
  height: 130px;
  position: relative;
  background-color: #f4ecdc;
}

#appointment .contact-wrapper .mail-wrap a {
  color: inherit;
  display: block;
  height: 100%;
}

#appointment .contact-wrapper .mail-wrap img {
  display: block;
  margin: 0 auto;
  padding-top: 32px;
  height: 22.3%;
}

#appointment .contact-wrapper .mail-wrap p {
  margin-top: 22px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

/* その他コンテンツ */
#appointment .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

#appointment .other div {
  width: 25%;
  height: 268px;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#appointment .other div a {
  display: block;
  height: 100%;
  color: inherit;
}

#appointment .other div img {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  height: 22.4%;
}

#appointment .other div h4 {
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  text-align: center;
  margin: 10px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  position: static;
}

#greetingPoricy .other div h4::before {
  content: none;
}

#appointment .other div p {
  width: 230px;
  margin: 1em auto 0;
}

#appointment .other div:nth-child(1) {
  background-color: #faf3e7;
}

#appointment .other div:nth-child(2) {
  background-color: #f4ecdc;
}

#appointment .other div:nth-child(3) {
  background-color: #efe3cd;
}

#appointment .other div:nth-child(4) {
  background-color: #ddd0b8;
}

#appointment .other div:nth-child(5) {
  background-color: #e2d7b9;
}

#appointment .other div:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  border-color: #dd7a55;
  background-color: transparent;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* ページ内リンクブロック */
  #appointment .jumpLink-section {
    margin-top: 2.928vw;
  }
  #appointment .jumpLink-section .jumpLinks {
    width: 46.852vw;
  }
  #appointment .jumpLink-section .jumpLinks .link-block {
    width: 21.962vw;
    height: 3.66vw;
  }
  /* 各セクション */
  #appointment .wrap-section {
    margin-top: 2.928vw;
  }
  #appointment .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  #appointment .wrap-section:last-of-type {
    margin-bottom: 4.758vw;
  }
  /* 左の見出しブロック */
  #appointment .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #appointment .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #appointment .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* 基本CSS */
  #appointment h4 {
    font-size: 1.171vw;
  }
  #appointment p.ts14 {
    font-size: 1.024vw;
  }
  /* 予約について */
  #appointment .emphasis {
    font-size: 1.318vw;
  }
  /* 持ち物 */
  #appointment .required-wrap .heading {
    margin-top: 1.464vw;
    font-size: 1.318vw;
  }
  #appointment .required-wrap .heading > .required {
    font-size: 1.171vw;
  }
  #appointment .required-wrap ul > li {
    font-size: 1.024vw;
  }
  /* 持ち物 */
  #appointment .belongings-wrap .heading {
    font-size: 1.171vw;
  }
  #appointment .belongings-wrap ul > li {
    font-size: 1.171vw;
  }
  #appointment .belongings-wrap ul.fs-big > li {
    font-size: 1.318vw;
  }
  #appointment .belongings-wrap ul p {
    font-size: 1.024vw;
  }
  #appointment .belongings-wrap ul a {
    font-size: 1.171vw;
  }
  /* 診療・施術の流れ */
  #appointment .step_list {
    margin-top: 1.464vw;
  }
  #appointment .step_list > li:not(:last-of-type) {
    margin-bottom: .732vw;
  }
  #appointment .step_list > li:not(:last-of-type)::after {
    width: 2.635vw;
    height: 2.635vw;
  }
  #appointment .step_list h4 {
    font-size: 1.464vw;
  }
  /* 診療時間および担当医 */
  #appointment .consultation-hours {
    margin-top: 1.318vw;
  }
  #appointment .consultation-hours .hours-wrap {
    padding: 2.196vw 0;
    width: 27.086vw;
  }
  #appointment .consultation-hours .heading {
    padding-left: 2.196vw;
    font-size: 1.318vw;
  }
  #appointment .consultation-hours dt {
    font-size: 1.318vw;
  }
  #appointment .consultation-hours dd {
    font-size: 1.171vw;
  }
  #appointment .consultation-hours dt:nth-of-type(n+2),
  #appointment .consultation-hours dd:nth-of-type(n+2) {
    margin-top: .732vw;
  }
  #appointment .consultation-hours .attention-list {
    width: 26.135vw;
    font-size: 1.024vw;
  }
  #appointment .table-wrapper {
    margin-top: 1.464vw;
  }
  #appointment .consultation-schedule h4 {
    font-size: 1.318vw;
  }
  #appointment table {
    font-size: 1.171vw;
  }
  #appointment thead tr {
    height: 2.928vw;
  }
  #appointment tbody tr {
    height: 5.124vw;
  }
  /* ドクタープロフィール */
  #appointment .profile-wrapper {
    margin-top: 1.464vw;
    padding: 1.464vw 2.928vw 1.464vw 10.029vw;
  }
  #appointment .profile-wrapper .image-wrap {
    width: 7.321vw;
    height: 7.321vw;
    left: 1.098vw;
  }
  #appointment .profile-wrapper .meta-wrap .pos {
    margin-right: .732vw;
    font-size: 1.024vw;
    border-radius: .366vw;
  }
  #appointment .profile-wrapper .meta-wrap .name {
    font-size: 1.171vw;
  }
  #appointment .profile-wrapper .profile-wrap {
    margin-top: 1.464vw;
  }
  /* ドクター紹介リンク */
  #appointment .link-wrapper {
    margin-top: 1.464vw;
  }
  #appointment .link-wrapper .link {
    width: 24.451vw;
    height: 4.392vw;
  }
  /* お問い合わせ */
  #appointment .contact-wrapper {
    margin-top: 1.024vw;
  }
  #appointment .contact-wrapper .free {
    font-size: 2.635vw;
  }
  #appointment .contact-wrapper .free::before {
    margin-right: .366vw;
    width: 1.757vw;
    height: 1.171vw;
  }
  #appointment .contact-wrapper .nofree {
    font-size: 1.464vw;
  }
  #appointment .contact-wrapper .nofree::before {
    content: '';
    margin-right: .146vw;
    width: .878vw;
    height: 1.098vw;
  }
  #appointment .contact-wrapper p {
    font-size: 1.024vw;
  }
  #appointment .contact-wrapper .mail-wrap {
    width: 21.962vw;
    height: 9.517vw;
  }
  #appointment .contact-wrapper .mail-wrap img {
    padding-top: 2.343vw;
  }
  #appointment .contact-wrapper .mail-wrap p {
    margin-top: 1.611vw;
    font-size: 1.318vw;
  }
  /* その他コンテンツ */
  #appointment .other {
    margin-top: 5.857vw;
  }
  #appointment .other div {
    height: 19.619vw;
  }
  #appointment .other div img {
    padding-top: 2.196vw;
  }
  #appointment .other div h4 {
    font-size: 1.318vw;
    margin: .732vw auto 0;
  }
  #appointment .other div p {
    width: 16.837vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #appointment .title-block h1 {
    font-size: 8vw;
  }
  /* ページ内リンクブロック */
  #appointment .jumpLink-section {
    margin-top: 10.667vw;
  }
  #appointment .jumpLink-section .jumpLinks {
    width: auto;
  }
  #appointment .jumpLink-section .jumpLinks .link-block {
    width: 43.2vw;
    height: 13.333vw;
  }
  /* 各セクション */
  #appointment .wrap-section {
    margin-top: 10.667vw;
  }
  #appointment .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #appointment .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #appointment .wrap-section .container {
    display: block;
  }
  /* 左の見出しブロック */
  #appointment .wrap-section .heading-wrapper {
    width: auto;
  }
  #appointment .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #appointment .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* 基本CSS */
  #appointment h3 {
    padding-bottom: .4em;
    line-height: 1em;
  }
  #appointment h4 {
    font-size: 3.733vw;
  }
  #appointment p.ts14 {
    font-size: 14px;
  }
  /* 予約について */
  #appointment .emphasis {
    font-size: inherit;
  }
  #appointment p + p {
    margin-top: .4em;
  }
  /* 持ち物 */
  #appointment .required-wrap .heading {
    margin-top: 20px;
    font-size: 4.8vw;
  }
  #appointment .required-wrap .heading > .required {
    display: block;
    margin-bottom: .5em;
    margin-right: 0;
    padding: .1em .4em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 4.267vw;
  }
  #appointment .required-wrap ul > li {
    font-size: 3.733vw;
  }
  /* 持ち物 */
  #appointment .belongings-wrap .heading {
    font-size: 4.267vw;
  }
  #appointment .belongings-wrap ul > li {
    font-size: 3.733vw;
    font-weight: bold;
    line-height: 1.44em;
  }
  #appointment .belongings-wrap ul.fs-big > li {
    font-size: 4.267vw;
  }
  #appointment .belongings-wrap ul p {
    font-size: 3.733vw;
  }
  #appointment .belongings-wrap ul .link {
    height: 16vw;
    border: 1px solid #dd7a55;
  }
  #appointment .belongings-wrap ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    font-size: 3.733vw;
    position: static;
  }
  #appointment .belongings-wrap ul a > .icon {
    position: relative;
    top: 0;
    margin-left: .4em;
    -webkit-transform: none;
            transform: none;
  }
  /* 診療・施術の流れ */
  #appointment .step_list {
    margin-top: 5.333vw;
  }
  #appointment .step_list > li:not(:last-of-type) {
    margin-bottom: 2.667vw;
  }
  #appointment .step_list > li:not(:last-of-type)::after {
    margin: 1em auto 0;
    width: 9.6vw;
    height: 9.6vw;
  }
  #appointment .step_list h4 {
    font-size: 3.733vw;
  }
  #appointment .step_list p {
    margin-top: .2em;
  }
  /* 診療時間および担当医 */
  #appointment .consultation-hours {
    margin-top: 5.333vw;
    display: block;
  }
  #appointment .consultation-hours .hours-wrap {
    padding: 5.333vw 0;
    width: auto;
  }
  #appointment .consultation-hours .heading {
    padding-left: 5.333vw;
    font-size: 3.733vw;
  }
  #appointment .consultation-hours dt {
    width: 25%;
    font-size: 3.733vw;
  }
  #appointment .consultation-hours dd {
    width: 75%;
    font-size: 3.733vw;
  }
  #appointment .consultation-hours dd li {
    padding-left: 1em;
    line-height: 1.44em;
  }
  #appointment .consultation-hours dt:nth-of-type(n+2),
  #appointment .consultation-hours dd:nth-of-type(n+2) {
    margin-top: 2.667vw;
  }
  #appointment .consultation-hours .attention-list {
    margin-top: 5.333vw;
    width: auto;
    font-size: 3.2vw;
  }
  #appointment .consultation-hours .attention-list > li {
    line-height: 1.67em;
  }
  #appointment .consultation-schedule h4 {
    font-size: 3.733vw;
  }
  #appointment .table-wrapper {
    margin-top: 2.667vw;
  }
  #appointment table {
    width: 146.667vw;
    font-size: 3.2vw;
  }
  #appointment thead tr {
    height: 8vw;
  }
  #appointment thead tr th:first-of-type {
    width: 12.8%;
  }
  #appointment thead tr th:nth-of-type(n+2) {
    width: 10.9%;
  }
  #appointment tbody tr {
    height: 13.333vw;
  }
  #appointment tbody tr th:first-of-type {
    padding: 0 .7em;
  }
  #appointment .table-wrapper + p {
    font-size: 2.667vw;
  }
  /* ドクタープロフィール */
  #appointment .profile-wrapper {
    margin-top: 5.333vw;
    padding: 5.333vw 5.333vw 5.333vw 35.733vw;
  }
  #appointment .profile-wrapper .image-wrap {
    width: 26.667vw;
    height: 26.667vw;
    top: 5.333vw;
    left: 5.333vw;
  }
  #appointment .profile-wrapper .image-wrap img {
    width: 100%;
  }
  #appointment .profile-wrapper .meta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #appointment .profile-wrapper .meta-wrap .pos {
    margin-right: 1.6vw;
    padding: .35em .66em;
    font-size: 3.2vw;
    line-height: 1em;
    border-radius: 1.333vw;
  }
  #appointment .profile-wrapper .meta-wrap .name {
    font-size: 3.733vw;
  }
  #appointment .profile-wrapper .profile-wrap {
    margin-top: 2.133vw;
    padding-top: 2.667vw;
  }
  #appointment .profile-wrapper .profile-wrap p {
    margin-top: 0;
    font-size: 3.2vw;
  }
  /* ドクター紹介リンク */
  #appointment .link-wrapper {
    margin-top: 5.333vw;
  }
  #appointment .link-wrapper .link {
    width: auto;
    height: 16vw;
  }
  /* お問い合わせ */
  #appointment .contact-wrapper {
    margin-top: 2.667vw;
    display: block;
  }
  #appointment .contact-wrapper .free {
    margin-top: 2.667vw;
    margin-bottom: 0;
    height: 13.333vw;
    line-height: 13.333vw;
    font-size: 7.467vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
    position: relative;
    text-align: center;
  }
  #appointment .contact-wrapper .free::before {
    display: inline-block;
    margin-right: 0;
    width: 6.4vw;
    height: 4.267vw;
    position: absolute;
    top: 50%;
    left: 18%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #appointment .contact-wrapper .free a {
    display: block;
    height: 100%;
    text-indent: 1em;
  }
  #appointment .contact-wrapper .nofree {
    margin-top: 2.667vw;
    height: 13.333vw;
    font-size: 5.333vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
    position: relative;
    text-align: center;
  }
  #appointment .contact-wrapper .nofree::before {
    display: inline-block;
    margin-right: 0;
    width: 3.733vw;
    height: 5vw;
    position: absolute;
    top: 50%;
    left: 20%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #appointment .contact-wrapper .nofree a {
    display: block;
    padding-left: 1.2em;
    height: 100%;
  }
  #appointment .contact-wrapper .nofree a::before {
    content: 'フリーダイヤルをご利用になれない場合';
    display: block;
    margin-bottom: .1em;
    padding-top: 1em;
    font-size: 2.667vw;
  }
  #appointment .contact-wrapper p {
    margin-top: 1em;
    font-size: 3.2vw;
    text-align: center;
  }
  #appointment .contact-wrapper .orange {
    color: #dd7a55;
  }
  #appointment .contact-wrapper .orange .b {
    font-weight: bold;
  }
  #appointment .contact-wrapper .mail-wrap {
    margin-top: 2.667vw;
    width: auto;
    background-color: transparent;
    height: 13.333vw;
    font-size: 5.333vw;
    border: 1px solid #dd7a55;
    border-radius: 1.333vw;
  }
  #appointment .contact-wrapper .mail-wrap a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #appointment .contact-wrapper .mail-wrap img {
    display: inline;
    margin-left: 0;
    margin-right: .8em;
    padding-top: 0;
    height: 32.4%;
  }
  #appointment .contact-wrapper .mail-wrap p {
    margin-top: 0;
    font-size: 3.733vw;
    color: #dd7a55;
  }
  /* その他コンテンツ */
  #appointment .other {
    display: block;
    margin-top: 5.333vw;
  }
  #appointment .other div {
    width: auto;
    height: auto;
    padding: 0 0 8px 0;
    border: none;
  }
  #appointment .other div a {
    position: relative;
    padding-left: 26%;
  }
  #appointment .other div img {
    position: absolute;
    top: 50%;
    left: 15%;
    display: inline;
    margin: 0;
    padding-top: 0;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #appointment .other div h4 {
    display: block;
    margin: 0;
    padding-top: 1.2em;
    height: 1.44em;
    text-align: left;
    font-size: 3.733vw;
  }
  #appointment .other div p {
    width: 69.333vw;
    margin: .2em 0 0;
  }
  #appointment .other div:nth-child(1):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #faf3e7;
  }
  #appointment .other div:nth-child(2):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #f4ecdc;
  }
  #appointment .other div:nth-child(3):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #efe3cd;
  }
  #appointment .other div:nth-child(4):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #ddd0b8;
  }
  #appointment .other div:nth-child(5):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #e2d7b9;
  }
}

/* 院長挨拶・当院の運営ポリシー(greetingPoricy.html)
--------------------------------------------- */
/* 各セクション */
#greetingPoricy .wrap-section {
  margin-top: 40px;
}

#greetingPoricy .wrap-section + .wrap-section {
  margin-top: 50px;
}

#greetingPoricy .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#greetingPoricy .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#greetingPoricy .wrap-section .heading-wrapper {
  width: 300px;
}

#greetingPoricy .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#greetingPoricy .wrap-section .content-wrapper {
  width: 750px;
}

/* セクション間の間隔 */
#greetingPoricy .wrap-section + .wrap-section {
  margin-top: 70px;
}

/* 基本CSS */
#greetingPoricy h3 {
  margin-top: 1em;
}

#greetingPoricy h4 {
  margin-top: 1em;
  padding-left: 0;
}

#greetingPoricy h4::before {
  content: none;
}

#greetingPoricy .content-wrapper > p {
  margin-top: 1em;
}

#greetingPoricy .wrap-section h3:first-child,
#greetingPoricy .wrap-section h4:first-child,
#greetingPoricy .wrap-section p:first-child {
  margin-top: 0;
}

#greetingPoricy figure {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto;
}

#greetingPoricy figure img {
  max-width: 100%;
}

/* 院長挨拶：名前 */
#greetingPoricy .director-name {
  margin-bottom: .5em;
  height: 40px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#greetingPoricy .director-name::before {
  content: '';
  display: inline-block;
  margin-right: 11.5px;
  width: 2px;
  height: 100%;
  background-color: #dd7a55;
}

#greetingPoricy .director-name > .small {
  margin-right: 1em;
  font-size: 16px;
}

#greetingPoricy .director-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 院長挨拶：写真 */
#greetingPoricy .director-profile .image-wrap {
  width: 300px;
}

#greetingPoricy .director-profile .image-wrap img {
  width: 100%;
}

/* 院長挨拶：経歴 */
#greetingPoricy .director-profile .image-wrap + div {
  margin-left: 30px;
}

#greetingPoricy .director-profile h4 {
  font-size: 20px;
}

#greetingPoricy .director-profile ul {
  margin-top: 1em;
  font-size: 16px;
}

#greetingPoricy .director-profile li {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding-left: 1.2em;
}

#greetingPoricy .director-profile li:nth-of-type(n+2) {
  margin-top: .4em;
}

#greetingPoricy .director-profile li::before {
  content: '■';
  position: absolute;
  left: 0;
  font-size: .8em;
  color: #dd7a55;
}

#greetingPoricy .director-profile li p {
  font-weight: 500;
  line-height: 1.6em;
}

/* 院長に関するリンクブロック */
#greetingPoricy .link-wrap {
  margin-top: 20px;
  width: 334px;
  height: 60px;
}

#greetingPoricy .link-wrap + .link-wrap {
  margin-top: 10px;
}

/* 親身なカウンセリング直上のスペース */
#greetingPoricy .space {
  height: 8em;
}

/* 五本木クリニックの基本理念 */
#greetingPoricy .philosophy-title {
  font-size: 18px;
}

#greetingPoricy .philosophy-wrap {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#greetingPoricy .philosophy-wrap .sss {
  width: 55.3%;
}

#greetingPoricy .philosophy-wrap .sss h5 {
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background-color: #dd7a55;
}

#greetingPoricy .philosophy-wrap .sss .items {
  position: relative;
}

#greetingPoricy .philosophy-wrap .sss .items > .item {
  position: absolute;
  top: 14px;
  color: #fff;
  font-weight: bold;
  background-color: #faf3e7;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  font-size: 20px;
  color: #dd7a55;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#greetingPoricy .philosophy-wrap .sss .items > .item:first-child {
  left: 12%;
}

#greetingPoricy .philosophy-wrap .sss .items > .item:nth-child(2) {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

#greetingPoricy .philosophy-wrap .sss .items > .item:last-child {
  right: 12%;
}

#greetingPoricy .philosophy-wrap .abcde {
  width: 40.6%;
}

#greetingPoricy .philosophy-wrap .abcde h5 {
  font-size: 16px;
  text-align: center;
  height: 30px;
  border-bottom: 1px solid #dd7a55;
}

#greetingPoricy .philosophy-wrap .abcde dl {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#greetingPoricy .philosophy-wrap .abcde dt {
  width: 142px;
  color: #dd7a55;
  font-size: 14px;
  line-height: 15px;
  font-family: 'Arial Black', sans-serif;
  font-weight: bold;
  -webkit-transform: scaleX(0.85);
          transform: scaleX(0.85);
}

#greetingPoricy .philosophy-wrap .abcde dt::before {
  display: inline-block;
  margin-right: 5px;
  font-size: 12px;
  color: #fff;
  width: 15px;
  height: 15px;
  background-color: #dd7a55;
  text-align: center;
  line-height: 15px;
  font-weight: 500;
  font-family: Arial, sans-serif;
  vertical-align: bottom;
  -webkit-transform: scaleX(1.17);
          transform: scaleX(1.17);
}

#greetingPoricy .philosophy-wrap .abcde dt:nth-of-type(n+2),
#greetingPoricy .philosophy-wrap .abcde dd:nth-of-type(n+2) {
  margin-top: .6em;
}

#greetingPoricy .philosophy-wrap .abcde dt:first-of-type::before {
  content: 'A';
}

#greetingPoricy .philosophy-wrap .abcde dt:nth-of-type(2)::before {
  content: 'B';
}

#greetingPoricy .philosophy-wrap .abcde dt:nth-of-type(3)::before {
  content: 'C';
}

#greetingPoricy .philosophy-wrap .abcde dt:nth-of-type(4)::before {
  content: 'D';
}

#greetingPoricy .philosophy-wrap .abcde dt:nth-of-type(5)::before {
  content: 'E';
}

#greetingPoricy .philosophy-wrap .abcde dd {
  width: 130px;
  font-size: 14px;
}

/* 院長ブログ */
#greetingPoricy .blogs-wrapper .blog {
  padding: 20px 0;
  border-top: 1px solid #999999;
  position: relative;
}

#greetingPoricy .blogs-wrapper .blog::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 3%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#greetingPoricy .blogs-wrapper .blog:hover::after {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#greetingPoricy .blogs-wrapper .blog:last-of-type {
  border-bottom: 1px solid #999999;
}

#greetingPoricy .blogs-wrapper .blog a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 170px;
  padding-right: 70px;
  color: inherit;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#greetingPoricy .blogs-wrapper .blog a .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 112.5px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#greetingPoricy .blogs-wrapper .blog a:hover .image-wrapper {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#greetingPoricy .blogs-wrapper .blog a .image-wrapper img {
  width: 100%;
}

#greetingPoricy .blogs-wrapper .blog a .meta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#greetingPoricy .blogs-wrapper .blog a .meta-wrapper .cat {
  padding: .2em 1em;
  font-size: 12px;
  font-weight: bold;
  color: #e87449;
  border: 1px solid #e87449;
}

#greetingPoricy .blogs-wrapper .blog a .meta-wrapper .date {
  font-size: 14px;
  color: #969696;
}

#greetingPoricy .blogs-wrapper .blog a:hover .meta-wrapper .date {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#greetingPoricy .blogs-wrapper .blog a .content-wrapper {
  width: auto;
}

#greetingPoricy .blogs-wrapper .blog a .content-wrapper .blog-title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4em;
}

#greetingPoricy .blogs-wrapper .blog a:hover .content-wrapper .blog-title {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#greetingPoricy .blogs-wrapper .blog a .author-wrapper {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#greetingPoricy .blogs-wrapper .blog a .author-wrapper .image-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

#greetingPoricy .blogs-wrapper .blog a .author-wrapper .image-wrap img {
  width: 100%;
}

#greetingPoricy .blogs-wrapper .blog a .author-wrapper .name {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #969696;
}

#greetingPoricy .blogs-wrapper .blog a:hover .author-wrapper .name {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* その他コンテンツ */
#greetingPoricy .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

#greetingPoricy .other div {
  width: 25%;
  height: 268px;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#greetingPoricy .other div a {
  display: block;
  height: 100%;
  color: inherit;
}

#greetingPoricy .other div img {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  height: 22.4%;
}

#greetingPoricy .other div h4 {
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  text-align: center;
  margin: 10px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  position: static;
}

#greetingPoricy .other div h4::before {
  content: none;
}

#greetingPoricy .other div p {
  width: 230px;
  margin: 1em auto 0;
}

#greetingPoricy .other div:nth-child(1) {
  background-color: #faf3e7;
}

#greetingPoricy .other div:nth-child(2) {
  background-color: #f4ecdc;
}

#greetingPoricy .other div:nth-child(3) {
  background-color: #efe3cd;
}

#greetingPoricy .other div:nth-child(4) {
  background-color: #ddd0b8;
}

#greetingPoricy .other div:nth-child(5) {
  background-color: #e2d7b9;
}

#greetingPoricy .other div:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  border-color: #dd7a55;
  background-color: transparent;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #greetingPoricy .wrap-section {
    margin-top: 2.928vw;
  }
  #greetingPoricy .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  /* 左の見出しブロック */
  #greetingPoricy .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #greetingPoricy .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #greetingPoricy .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* 院長挨拶：名前 */
  #greetingPoricy .director-name {
    height: 2.928vw;
    font-size: 1.464vw;
  }
  #greetingPoricy .director-name::before {
    margin-right: .842vw;
    width: .146vw;
  }
  #greetingPoricy .director-name > .small {
    font-size: 1.171vw;
  }
  /* 院長挨拶：写真 */
  #greetingPoricy .director-profile .image-wrap {
    width: 21.962vw;
  }
  /* 院長挨拶：経歴 */
  #greetingPoricy .director-profile .image-wrap + div {
    margin-left: 2.196vw;
  }
  #greetingPoricy .director-profile h4 {
    font-size: 1.464vw;
  }
  #greetingPoricy .director-profile ul {
    font-size: 1.171vw;
  }
  /* 院長に関するリンクブロック */
  #greetingPoricy .link-wrap {
    width: 24.451vw;
    height: 4.392vw;
    margin-top: 1.464vw;
  }
  /* 五本木クリニックの基本理念 */
  #greetingPoricy .philosophy-title {
    font-size: 1.318vw;
  }
  #greetingPoricy .philosophy-wrap {
    margin-top: .366vw;
  }
  #greetingPoricy .philosophy-wrap .sss h5 {
    height: 2.196vw;
    line-height: 2.196vw;
    font-size: 1.171vw;
  }
  #greetingPoricy .philosophy-wrap .sss .items > .item {
    top: 1.025vw;
    width: 8.785vw;
    height: 8.785vw;
    font-size: 1.464vw;
  }
  #greetingPoricy .philosophy-wrap .abcde h5 {
    font-size: 1.171vw;
    height: 2.196vw;
  }
  #greetingPoricy .philosophy-wrap .abcde dl {
    margin-top: 1.464vw;
  }
  #greetingPoricy .philosophy-wrap .abcde dt {
    width: 10.395vw;
    font-size: 1.025vw;
    line-height: 1.098vw;
  }
  #greetingPoricy .philosophy-wrap .abcde dt::before {
    margin-right: .366vw;
    font-size: .878vw;
    width: 1.098vw;
    height: 1.098vw;
    line-height: 1.098vw;
  }
  #greetingPoricy .philosophy-wrap .abcde dd {
    width: 9.517vw;
    font-size: 1.025vw;
  }
  /* ブログ一覧ブロック */
  #greetingPoricy .blogs-wrapper .blog {
    padding: 1.464vw 0;
  }
  #greetingPoricy .blogs-wrapper .blog::after {
    width: .439vw;
    height: .439vw;
  }
  #greetingPoricy .blogs-wrapper .blog a {
    padding-left: 12.445vw;
    padding-right: 5.124vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .image-wrapper {
    width: 10.981vw;
    height: 8.235vw;
    outline-width: .146vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .meta-wrapper .cat {
    font-size: .878vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .meta-wrapper .date {
    font-size: 1.025vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .content-wrapper .blog-title {
    margin-top: .732vw;
    font-size: 1.318vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .author-wrapper {
    margin-top: .732vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .author-wrapper .image-wrap {
    width: 2.928vw;
    height: 2.928vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .author-wrapper .name {
    margin-left: .732vw;
    font-size: 1.025vw;
  }
  /* その他コンテンツ */
  #greetingPoricy .other {
    margin-top: 5.857vw;
  }
  #greetingPoricy .other div {
    height: 19.619vw;
  }
  #greetingPoricy .other div img {
    padding-top: 2.196vw;
  }
  #greetingPoricy .other div h4 {
    font-size: 1.318vw;
    margin: .732vw auto 0;
  }
  #greetingPoricy .other div p {
    width: 16.837vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #greetingPoricy .title-block {
    margin-top: 8vw;
  }
  #greetingPoricy .title-block h1 {
    font-size: 8vw;
  }
  /* 各セクション */
  #greetingPoricy .wrap-section {
    margin-top: 10.667vw;
  }
  #greetingPoricy .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #greetingPoricy .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #greetingPoricy .wrap-section .container {
    display: block;
  }
  /* 左の見出しブロック */
  #greetingPoricy .wrap-section .heading-wrapper {
    width: auto;
  }
  #greetingPoricy .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #greetingPoricy .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* セクション間の間隔 */
  #greetingPoricy .wrap-section + .wrap-section {
    margin-top: 10.667vw;
  }
  /* 基本CSS */
  #greetingPoricy h3 {
    margin-top: 1em;
    line-height: 1.2em;
  }
  /* 院長挨拶：名前 */
  #greetingPoricy .director-name {
    height: 10.677vw;
    font-size: 5.867vw;
  }
  #greetingPoricy .director-name::before {
    margin-right: 3.2vw;
    width: 2px;
  }
  #greetingPoricy .director-name > .small {
    font-size: 3.733vw;
  }
  #greetingPoricy .director-profile {
    display: block;
  }
  /* 院長挨拶：写真 */
  #greetingPoricy .director-profile .image-wrap {
    width: auto;
  }
  /* 院長挨拶：経歴 */
  #greetingPoricy .director-profile .image-wrap + div {
    margin-top: 1em;
    margin-left: 0;
  }
  #greetingPoricy .director-profile h4 {
    font-size: 4.8vw;
  }
  #greetingPoricy .director-profile ul {
    margin-top: 0;
    font-size: 3.733vw;
  }
  /* 院長に関するリンクブロック */
  #greetingPoricy .link-wrap {
    margin-top: 5.333vw;
    width: auto;
    height: 16vw;
  }
  #greetingPoricy .link-wrap + .link-wrap {
    margin-top: 2.667vw;
  }
  /* 親身なカウンセリング直上のスペース */
  #greetingPoricy .space {
    display: none;
  }
  /* 五本木クリニックの基本理念 */
  #greetingPoricy .philosophy-title {
    padding-bottom: .4em;
    font-size: 4.8vw;
    position: relative;
  }
  #greetingPoricy .philosophy-title::before,
  #greetingPoricy .philosophy-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    height: 1px;
  }
  #greetingPoricy .philosophy-title::before {
    background-color: #ffc1aa;
  }
  #greetingPoricy .philosophy-title::after {
    width: 40px;
    background-color: #dd7a55;
  }
  #greetingPoricy .philosophy-wrap {
    margin-top: 5.333vw;
    display: block;
  }
  #greetingPoricy .philosophy-wrap .sss {
    width: auto;
  }
  #greetingPoricy .philosophy-wrap .sss h5 {
    height: 8vw;
    line-height: 8vw;
    font-size: 4.267vw;
  }
  #greetingPoricy .philosophy-wrap .sss .items {
    height: 40vw;
  }
  #greetingPoricy .philosophy-wrap .sss .items > .item {
    top: 3.733vw;
    width: 32vw;
    height: 32vw;
    font-size: 4.8vw;
  }
  #greetingPoricy .philosophy-wrap .sss .items > .item:first-child {
    left: 4%;
  }
  #greetingPoricy .philosophy-wrap .sss .items > .item:last-child {
    right: 4%;
  }
  #greetingPoricy .philosophy-wrap .abcde {
    width: auto;
  }
  #greetingPoricy .philosophy-wrap .abcde h5 {
    font-size: 3.733vw;
    height: 8vw;
  }
  #greetingPoricy .philosophy-wrap .abcde dl {
    margin-top: 2.667vw;
  }
  #greetingPoricy .philosophy-wrap .abcde dt {
    width: 40%;
    font-size: 3.2vw;
    line-height: 1.2em;
  }
  #greetingPoricy .philosophy-wrap .abcde dt::before {
    margin-right: .4em;
    font-size: 3.2vw;
    width: 4vw;
    height: 4vw;
    line-height: 4vw;
  }
  #greetingPoricy .philosophy-wrap .abcde dd {
    width: 35%;
    line-height: 1.2em;
    font-size: 3.2vw;
  }
  /* 院長ブログ */
  #greetingPoricy .blogs-wrapper .blog {
    padding: 5.333vw 0;
  }
  #greetingPoricy .blogs-wrapper .blog::after {
    content: none;
  }
  #greetingPoricy .blogs-wrapper .blog a {
    padding-left: 21.333vw;
    padding-right: 0;
  }
  #greetingPoricy .blogs-wrapper .blog a .image-wrapper {
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .meta-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #greetingPoricy .blogs-wrapper .blog a .meta-wrapper .cat {
    padding: .2em 1.2em;
    font-size: 2.667vw;
    font-weight: bold;
  }
  #greetingPoricy .blogs-wrapper .blog a .meta-wrapper .date {
    font-size: 3.2vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .content-wrapper {
    margin-top: 0;
  }
  #greetingPoricy .blogs-wrapper .blog a .content-wrapper .blog-title {
    margin-top: 3.2vw;
    height: 2.8em;
    font-size: 3.733vw;
    line-height: 1.4em;
    overflow: hidden;
  }
  #greetingPoricy .blogs-wrapper .blog a .author-wrapper {
    margin-top: 2.667vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .author-wrapper .image-wrap {
    width: 6.933vw;
    height: 6.933vw;
  }
  #greetingPoricy .blogs-wrapper .blog a .author-wrapper .name {
    margin-left: 1.333vw;
    font-size: 3.2vw;
  }
  /* その他コンテンツ */
  #greetingPoricy .other {
    display: block;
    margin-top: 16vw;
  }
  #greetingPoricy .other div {
    width: auto;
    height: auto;
    border: none;
    padding: 0 0 8px 0;
  }
  #greetingPoricy .other div a {
    position: relative;
    padding-left: 26%;
  }
  #greetingPoricy .other div img {
    position: absolute;
    top: 50%;
    left: 15%;
    display: inline;
    margin: 0;
    padding-top: 0;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #greetingPoricy .other div h4 {
    display: block;
    margin: 0;
    padding-top: 1.2em;
    height: 1.44em;
    text-align: left;
    font-size: 3.733vw;
  }
  #greetingPoricy .other div p {
    width: 69.333vw;
    margin: .2em 0 0;
  }
  #greetingPoricy .other div:nth-child(1):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #faf3e7;
  }
  #greetingPoricy .other div:nth-child(2):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #f4ecdc;
  }
  #greetingPoricy .other div:nth-child(3):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #efe3cd;
  }
  #greetingPoricy .other div:nth-child(4):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #ddd0b8;
  }
  #greetingPoricy .other div:nth-child(5):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #e2d7b9;
  }
}

/* 医師紹介(doctorIntroduction.html)
--------------------------------------------- */
/* 各セクション */
#doctorIntroduction .wrap-section {
  margin-top: 40px;
}

#doctorIntroduction .wrap-section + .wrap-section {
  margin-top: 50px;
}

#doctorIntroduction .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#doctorIntroduction .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#doctorIntroduction .wrap-section .heading-wrapper {
  width: 300px;
}

#doctorIntroduction .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#doctorIntroduction .wrap-section .content-wrapper {
  width: 750px;
}

/* セクション間の間隔 */
#doctorIntroduction .wrap-section + .wrap-section {
  margin-top: 70px;
}

/* ページ内リンクブロック */
#doctorIntroduction .jumpLink-section {
  margin-top: 40px;
}

#doctorIntroduction .jumpLink-section .jumpLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-left: 130px;
}

#doctorIntroduction .jumpLink-section .jumpLinks + .jumpLinks {
  margin-top: 40px;
}

#doctorIntroduction .jumpLink-section .course-title {
  font-size: 20px;
  position: absolute;
  top: 25px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#doctorIntroduction .jumpLink-section .jumpLinks .link-block {
  width: 182px;
  height: 50px;
}

#doctorIntroduction .jumpLink-section .jumpLinks .link-block:not(:nth-of-type(4n+1)) {
  margin-left: 30px;
}

#doctorIntroduction .jumpLink-section .jumpLinks .link-block:nth-of-type(n+5) {
  margin-top: 20px;
}

/* 基本CSS */
#doctorIntroduction .wrap-section h4 {
  margin-top: 1em;
  padding-left: 0;
}

#doctorIntroduction .wrap-section h4::before {
  content: none;
}

#doctorIntroduction .content-wrapper > p {
  margin-top: 1em;
}

#doctorIntroduction .wrap-section h3:first-child,
#doctorIntroduction .wrap-section h4:first-child,
#doctorIntroduction .wrap-section p:first-child {
  margin-top: 0;
}

/* 医師：名前 */
#doctorIntroduction .doctor-name {
  margin-bottom: .5em;
  height: 40px;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#doctorIntroduction .doctor-name:nth-child(n+2) {
  margin-top: 2em;
}

#doctorIntroduction .doctor-name::before {
  content: '';
  display: inline-block;
  margin-right: 11.5px;
  width: 2px;
  height: 100%;
  background-color: #dd7a55;
}

#doctorIntroduction .doctor-name > .small {
  margin-right: 1em;
  font-size: 16px;
}

#doctorIntroduction .repDoctor-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* 代表医師：写真 */
#doctorIntroduction .repDoctor-profile .image-wrap {
  width: 300px;
}

#doctorIntroduction .repDoctor-profile .image-wrap img {
  width: 100%;
}

/* 代表医師：経歴 */
#doctorIntroduction .repDoctor-profile .image-wrap + div {
  margin-left: 30px;
}

#doctorIntroduction .repDoctor-profile h4 {
  font-size: 20px;
}

#doctorIntroduction .repDoctor-profile ul {
  margin-top: 1em;
  font-size: 16px;
}

#doctorIntroduction .repDoctor-profile li {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding-left: 1.2em;
}

#doctorIntroduction .repDoctor-profile li:nth-of-type(n+2) {
  margin-top: .4em;
}

#doctorIntroduction .repDoctor-profile li::before {
  content: '■';
  position: absolute;
  left: 0;
  font-size: .8em;
  color: #dd7a55;
}

#doctorIntroduction .repDoctor-profile li p {
  font-weight: 500;
  line-height: 1.6em;
}

/* 医師：共通経歴 */
#doctorIntroduction .doctor-profile {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

#doctorIntroduction .doctor-profile div {
  width: 44%;
}

#doctorIntroduction .doctor-profile dl {
  width: 56%;
}

#doctorIntroduction .doctor-profile dt,
#doctorIntroduction .doctor-profile dd {
  width: 79.5%;
}

#doctorIntroduction .doctor-profile h4,
#doctorIntroduction .doctor-profile dt {
  font-size: 20px;
  line-height: 1em;
  font-weight: bold;
}

#doctorIntroduction .doctor-profile ul,
#doctorIntroduction .doctor-profile dd {
  margin-top: 1em;
  font-size: 16px;
}

#doctorIntroduction .doctor-profile dt:nth-of-type(n+2) {
  margin-top: .8em;
}

#doctorIntroduction .doctor-profile dd {
  line-height: 1.6em;
}

#doctorIntroduction .doctor-profile li {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding-left: 1.2em;
  padding-right: 2em;
}

#doctorIntroduction .doctor-profile li:nth-of-type(n+2) {
  margin-top: .4em;
}

#doctorIntroduction .doctor-profile li::before {
  content: '■';
  position: absolute;
  left: 0;
  font-size: .8em;
  color: #dd7a55;
}

#doctorIntroduction .doctor-profile li p {
  font-weight: 500;
  line-height: 1.6em;
}

/* 医師コメント */
#doctorIntroduction .doctors-comment {
  margin-top: 20px;
  padding: 20px;
  background-color: #fffdf0;
}

#doctorIntroduction .doctors-comment p {
  font-size: 14px;
  line-height: 1.7em;
}

/* 院長に関するリンクブロック */
#doctorIntroduction .link-wrap {
  margin-top: 20px;
  width: 334px;
  height: 60px;
}

/* 最新のブログ */
#doctorIntroduction .blogs-wrapper .blog {
  padding: 20px 0;
  border-top: 1px solid #999999;
  position: relative;
}

#doctorIntroduction .blogs-wrapper .blog::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 3%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#doctorIntroduction .blogs-wrapper .blog:hover::after {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#doctorIntroduction .blogs-wrapper .blog:last-of-type {
  border-bottom: 1px solid #999999;
}

#doctorIntroduction .blogs-wrapper .blog a {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 170px;
  padding-right: 70px;
  color: inherit;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#doctorIntroduction .blogs-wrapper .blog a .image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  height: 112.5px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#doctorIntroduction .blogs-wrapper .blog a:hover .image-wrapper {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#doctorIntroduction .blogs-wrapper .blog a .image-wrapper img {
  width: 100%;
}

#doctorIntroduction .blogs-wrapper .blog a .meta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#doctorIntroduction .blogs-wrapper .blog a .meta-wrapper .cat {
  padding: .2em 1em;
  font-size: 12px;
  font-weight: bold;
  color: #e87449;
  border: 1px solid #e87449;
}

#doctorIntroduction .blogs-wrapper .blog a .meta-wrapper .date {
  font-size: 14px;
  color: #969696;
}

#doctorIntroduction .blogs-wrapper .blog a:hover .meta-wrapper .date {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#doctorIntroduction .blogs-wrapper .blog a .content-wrapper {
  width: auto;
}

#doctorIntroduction .blogs-wrapper .blog a .content-wrapper .blog-title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4em;
}

#doctorIntroduction .blogs-wrapper .blog a:hover .content-wrapper .blog-title {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#doctorIntroduction .blogs-wrapper .blog a .author-wrapper {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#doctorIntroduction .blogs-wrapper .blog a .author-wrapper .image-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

#doctorIntroduction .blogs-wrapper .blog a .author-wrapper .image-wrap img {
  width: 100%;
}

#doctorIntroduction .blogs-wrapper .blog a .author-wrapper .name {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #969696;
}

#doctorIntroduction .blogs-wrapper .blog a:hover .author-wrapper .name {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* その他コンテンツ */
#doctorIntroduction .other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

#doctorIntroduction .other div {
  width: 25%;
  height: 268px;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#doctorIntroduction .other div a {
  display: block;
  height: 100%;
  color: inherit;
}

#doctorIntroduction .other div img {
  display: block;
  margin: 0 auto;
  padding-top: 30px;
  height: 22.4%;
}

#doctorIntroduction .other div h4 {
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  text-align: center;
  margin: 10px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  position: static;
}

#doctorIntroduction .other div h4::before {
  content: none;
}

#doctorIntroduction .other div p {
  width: 230px;
  margin: 1em auto 0;
}

#doctorIntroduction .other div:nth-child(1) {
  background-color: #faf3e7;
}

#doctorIntroduction .other div:nth-child(2) {
  background-color: #f4ecdc;
}

#doctorIntroduction .other div:nth-child(3) {
  background-color: #efe3cd;
}

#doctorIntroduction .other div:nth-child(4) {
  background-color: #ddd0b8;
}

#doctorIntroduction .other div:nth-child(5) {
  background-color: #e2d7b9;
}

#doctorIntroduction .other div:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  border-color: #dd7a55;
  background-color: transparent;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #doctorIntroduction .wrap-section {
    margin-top: 2.928vw;
  }
  #doctorIntroduction .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  /* 左の見出しブロック */
  #doctorIntroduction .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #doctorIntroduction .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #doctorIntroduction .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* ページ内リンクブロック */
  #doctorIntroduction .jumpLink-section {
    margin-top: 2.928vw;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks {
    padding-left: 9.517vw;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks + .jumpLinks {
    margin-top: 2.928vw;
  }
  #doctorIntroduction .jumpLink-section .course-title {
    top: 1.83vw;
    font-size: 1.464vw;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks .link-block {
    width: 13.323vw;
    height: 3.66vw;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks .link-block:not(:nth-of-type(4n+1)) {
    margin-left: 2.196vw;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks .link-block:nth-of-type(n+5) {
    margin-top: 1.464vw;
  }
  /* 院長挨拶：名前 */
  #doctorIntroduction .doctor-name {
    height: 2.928vw;
    font-size: 1.464vw;
  }
  #doctorIntroduction .doctor-name::before {
    margin-right: .842vw;
    width: .146vw;
  }
  #doctorIntroduction .doctor-name > .small {
    font-size: 1.171vw;
  }
  /* 院長挨拶：写真 */
  #doctorIntroduction .repDoctor-profile .image-wrap {
    width: 21.962vw;
  }
  /* 院長挨拶：経歴 */
  #doctorIntroduction .repDoctor-profile .image-wrap + div {
    margin-left: 2.196vw;
  }
  #doctorIntroduction .repDoctor-profile h4 {
    font-size: 1.464vw;
  }
  #doctorIntroduction .repDoctor-profile ul {
    font-size: 1.171vw;
  }
  /* 医師：共通経歴 */
  #doctorIntroduction .doctor-profile {
    margin-top: 1.464vw;
  }
  #doctorIntroduction .doctor-profile h4,
  #doctorIntroduction .doctor-profile dt {
    font-size: 1.464vw;
  }
  #doctorIntroduction .doctor-profile ul,
  #doctorIntroduction .doctor-profile dd {
    font-size: 1.171vw;
  }
  /* 医師コメント */
  #doctorIntroduction .doctors-comment {
    margin-top: 1.464vw;
    padding: 1.464vw;
  }
  #doctorIntroduction .doctors-comment p {
    font-size: 1.025vw;
  }
  /* 院長に関するリンクブロック */
  #doctorIntroduction .link-wrap {
    width: 24.451vw;
    height: 4.392vw;
    margin-top: 1.464vw;
  }
  /* 最新のブログ */
  #doctorIntroduction .blogs-wrapper .blog {
    padding: 1.464vw 0;
  }
  #doctorIntroduction .blogs-wrapper .blog::after {
    width: .439vw;
    height: .439vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a {
    padding-left: 12.445vw;
    padding-right: 5.124vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .image-wrapper {
    width: 10.981vw;
    height: 8.235vw;
    outline-width: .146vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .meta-wrapper .cat {
    font-size: .878vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .meta-wrapper .date {
    font-size: 1.025vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .content-wrapper .blog-title {
    margin-top: .732vw;
    font-size: 1.318vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .author-wrapper {
    margin-top: .732vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .author-wrapper .image-wrap {
    width: 2.928vw;
    height: 2.928vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .author-wrapper .name {
    margin-left: .732vw;
    font-size: 1.025vw;
  }
  /* その他コンテンツ */
  #doctorIntroduction .other {
    margin-top: 5.857vw;
  }
  #doctorIntroduction .other div {
    height: 19.619vw;
  }
  #doctorIntroduction .other div img {
    padding-top: 2.196vw;
  }
  #doctorIntroduction .other div h4 {
    font-size: 1.318vw;
    margin: .732vw auto 0;
  }
  #doctorIntroduction .other div p {
    width: 16.837vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #doctorIntroduction .title-block {
    margin-top: 8vw;
  }
  #doctorIntroduction .title-block h1 {
    font-size: 8vw;
  }
  /* 左の見出しブロック */
  #doctorIntroduction .wrap-section .heading-wrapper {
    width: auto;
  }
  #doctorIntroduction .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #doctorIntroduction .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* セクション間の間隔 */
  #doctorIntroduction .wrap-section + .wrap-section {
    margin-top: 10.667vw;
  }
  /* 各セクション */
  #doctorIntroduction .wrap-section {
    margin-top: 10.667vw;
  }
  #doctorIntroduction .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #doctorIntroduction .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #doctorIntroduction .wrap-section .container {
    display: block;
  }
  /* ページ内リンクブロック */
  #doctorIntroduction .jumpLink-section {
    margin-top: 10.667vw;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks {
    padding-left: 0;
    position: static;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks + .jumpLinks {
    margin-top: 10.667vw;
  }
  #doctorIntroduction .jumpLink-section .course-title {
    position: static;
    margin-right: 0;
    margin-bottom: 2.667vw;
    width: 100%;
    font-size: 5.867vw;
    -webkit-transform: none;
            transform: none;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks .link-block {
    width: 48.5%;
    height: 13.333vw;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks .link-block + .link-block {
    margin-left: 0;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks .link-block:nth-of-type(even) {
    margin-left: 3%;
  }
  #doctorIntroduction .jumpLink-section .jumpLinks .link-block:nth-of-type(n+3) {
    margin-top: 2.667vw;
  }
  /* 院長挨拶：名前 */
  #doctorIntroduction .doctor-name {
    height: 10.677vw;
    font-size: 5.867vw;
  }
  #doctorIntroduction .doctor-name::before {
    margin-right: 3.2vw;
    width: 2px;
  }
  #doctorIntroduction .doctor-name > .small {
    font-size: 3.733vw;
  }
  #doctorIntroduction .repDoctor-profile {
    display: block;
  }
  /* 院長挨拶：写真 */
  #doctorIntroduction .repDoctor-profile .image-wrap {
    width: auto;
  }
  /* 院長挨拶：経歴 */
  #doctorIntroduction .repDoctor-profile .image-wrap + div {
    margin-top: 1em;
    margin-left: 0;
  }
  #doctorIntroduction .repDoctor-profile h4 {
    font-size: 4.8vw;
  }
  #doctorIntroduction .repDoctor-profile ul {
    margin-top: 0;
    font-size: 3.733vw;
  }
  /* 医師：共通経歴 */
  #doctorIntroduction .doctor-profile {
    margin-top: 5.333vw;
    display: block;
  }
  #doctorIntroduction .doctor-profile div {
    width: auto;
  }
  #doctorIntroduction .doctor-profile dl {
    width: auto;
  }
  #doctorIntroduction .doctor-profile dt,
  #doctorIntroduction .doctor-profile dd {
    width: auto;
  }
  #doctorIntroduction .doctor-profile h4,
  #doctorIntroduction .doctor-profile dt {
    font-size: 4.8vw;
  }
  #doctorIntroduction .doctor-profile ul,
  #doctorIntroduction .doctor-profile dd {
    margin-top: .2em;
    font-size: 3.733vw;
  }
  #doctorIntroduction .doctor-profile div + dl {
    margin-top: 1em;
  }
  #doctorIntroduction .doctor-profile dt:nth-of-type(n+2) {
    margin-top: .8em;
  }
  #doctorIntroduction .doctor-profile dd {
    line-height: 1.6em;
  }
  #doctorIntroduction .doctor-profile li {
    font-weight: bold;
    line-height: 1.6em;
    position: relative;
    padding-left: 1.2em;
    padding-right:0;
  }
  #doctorIntroduction .doctor-profile li:nth-of-type(n+2) {
    margin-top: .4em;
  }
  #doctorIntroduction .doctor-profile li::before {
    content: '■';
    position: absolute;
    left: 0;
    font-size: .8em;
    color: #dd7a55;
  }
  #doctorIntroduction .doctor-profile li p {
    font-weight: 500;
    line-height: 1.6em;
  }
  /* 医師コメント */
  #doctorIntroduction .doctors-comment {
    margin-top: 5.333vw;
    padding: 5.333vw;
  }
  #doctorIntroduction .doctors-comment p {
    font-size: 3.733vw;
  }
  /* 院長に関するリンクブロック */
  #doctorIntroduction .link-wrap {
    margin-top: 5.333vw;
    width: auto;
    height: 16vw;
  }
  /* 最新のブログ */
  #doctorIntroduction .blogs-wrapper .blog {
    padding: 5.333vw 0;
  }
  #doctorIntroduction .blogs-wrapper .blog::after {
    content: none;
  }
  #doctorIntroduction .blogs-wrapper .blog a {
    padding-left: 21.333vw;
    padding-right: 0;
  }
  #doctorIntroduction .blogs-wrapper .blog a .image-wrapper {
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .meta-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #doctorIntroduction .blogs-wrapper .blog a .meta-wrapper .cat {
    padding: .2em 1.2em;
    font-size: 2.667vw;
    font-weight: bold;
  }
  #doctorIntroduction .blogs-wrapper .blog a .meta-wrapper .date {
    font-size: 3.2vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .content-wrapper {
    margin-top: 0;
  }
  #doctorIntroduction .blogs-wrapper .blog a .content-wrapper .blog-title {
    margin-top: 3.2vw;
    height: 2.8em;
    font-size: 3.733vw;
    line-height: 1.4em;
    overflow: hidden;
  }
  #doctorIntroduction .blogs-wrapper .blog a .author-wrapper {
    margin-top: 2.667vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .author-wrapper .image-wrap {
    width: 6.933vw;
    height: 6.933vw;
  }
  #doctorIntroduction .blogs-wrapper .blog a .author-wrapper .name {
    margin-left: 1.333vw;
    font-size: 3.2vw;
  }
  /* その他コンテンツ */
  #doctorIntroduction .other {
    display: block;
    margin-top: 16vw;
  }
  #doctorIntroduction .other div {
    width: auto;
    height: auto;
    padding: 0 0 8px 0;
    border: none;
  }
  #doctorIntroduction .other div a {
    position: relative;
    padding-left: 26%;
  }
  #doctorIntroduction .other div img {
    position: absolute;
    top: 50%;
    left: 15%;
    display: inline;
    margin: 0;
    padding-top: 0;
    height: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  #doctorIntroduction .other div h4 {
    display: block;
    margin: 0;
    padding-top: 1.2em;
    height: 1.44em;
    text-align: left;
    font-size: 3.733vw;
  }
  #doctorIntroduction .other div p {
    width: 69.333vw;
    margin: .2em 0 0;
  }
  #doctorIntroduction .other div:nth-child(1):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #faf3e7;
  }
  #doctorIntroduction .other div:nth-child(2):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #f4ecdc;
  }
  #doctorIntroduction .other div:nth-child(3):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #efe3cd;
  }
  #doctorIntroduction .other div:nth-child(4):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #ddd0b8;
  }
  #doctorIntroduction .other div:nth-child(5):hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: #e2d7b9;
  }
}

/* 医師紹介(doctorIntroduction.html)
--------------------------------------------- */
/* 検索ワード入力欄 */
#searchResult .search {
  margin: 40px auto 0;
  padding: 8px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #dddddd;
}

#searchResult .search input[type="text"] {
  width: 360px;
  font-size: 20px;
}

#searchResult .search input[type="text"]:-ms-input-placeholder,
#searchResult .search input[type="text"]:-ms-input-placeholder,
#searchResult .search input[type="text"]::-ms-input-placeholder {
  color: #dddddd;
}

#searchResult .search input[type="text"]::-ms-input-placeholder,
#searchResult .search input[type="text"]:-ms-input-placeholder,
#searchResult .search input[type="text"]::-ms-input-placeholder {
  color: #dddddd;
}

#searchResult .search input[type="text"]::placeholder,
#searchResult .search input[type="text"]:-ms-input-placeholder,
#searchResult .search input[type="text"]::-ms-input-placeholder {
  color: #dddddd;
}

#searchResult .search button[type="submit"] {
  margin-left: 10px;
  width: 21px;
  height: 21px;
}

#searchResult .search button[type="submit"] img {
  width: 100%;
}

/* 検索結果：件数 */
#searchResult .display {
  margin-top: 40px;
  text-align: right;
  font-size: 12px;
  font-weight: bold;
  color: #3b3b3b;
}

#searchResult .number-of-search {
  margin-top: 10px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #faf3e7;
}

#searchResult .number-of-search::before {
  content: '';
  height: 100%;
  width: 2px;
  display: block;
  margin-right: 10px;
  background-color: #ddd0b8;
}

#searchResult .number-of-search h3 {
  font-size: 18px;
  line-height: 1em;
  position: static;
}

#searchResult .number-of-search h3::before,
#searchResult .number-of-search h3::after {
  content: none;
}

#searchResult .number-of-search p {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #3b3b3b;
}

/* 検索結果：一覧 */
#searchResult .result {
  border-top: 1px solid #999999;
  padding: 20px;
}

#searchResult .result:first-child {
  margin-top: 20px;
}

#searchResult .result:last-child {
  border-bottom: 1px solid #999999;
}

#searchResult .result a {
  color: inherit;
  display: block;
  height: 100%;
  position: relative;
}

#searchResult .result a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #999999;
  border-right: 1px solid #999999;
}

#searchResult .result a:hover::after {
  -webkit-transition: all .3s;
  transition: all .3s;
  border-color: #dd7a55;
}

#searchResult .result .genre {
  display: inline-block;
  padding: .4em .7em;
  font-size: 14px;
  color: #fff;
  background-color: #dd7a55;
}

#searchResult .result .title {
  margin-top: .5em;
  font-size: 18px;
  line-height: 1em;
  height: 1em;
  overflow: hidden;
}

#searchResult .result a:hover .title {
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #dd7a55;
}

#searchResult .result .discription {
  margin-top: .7em;
  font-size: 14px;
  line-height: 1em;
  height: 1em;
  overflow: hidden;
  color: #969696;
}

#searchResult .result a:hover .discription {
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #dd7a55;
}

/* ナビゲーションブロック */
#searchResult .navigation-wrapper {
  margin-top: 20px;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#searchResult .navigation-wrapper .prev,
#searchResult .navigation-wrapper .next {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fa8d37;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#searchResult .navigation-wrapper .prev:hover,
#searchResult .navigation-wrapper .next:hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#searchResult .navigation-wrapper .prev {
  margin-right: 5px;
}

#searchResult .navigation-wrapper .next {
  margin-left: 5px;
}

#searchResult .navigation-wrapper .prev::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-25%, -50%) rotate(45deg);
          transform: translate(-25%, -50%) rotate(45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-left: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#searchResult .navigation-wrapper .next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-75%, -50%) rotate(-45deg);
          transform: translate(-75%, -50%) rotate(-45deg);
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fa8d37;
  border-bottom: 1px solid #fa8d37;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#searchResult .navigation-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

#searchResult .navigation-wrapper .navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#searchResult .navigation-wrapper .navigation > li {
  font-size: 12px;
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#searchResult .navigation-wrapper .navigation > li:nth-of-type(n+2) {
  margin-left: 5px;
}

#searchResult .navigation-wrapper .navigation > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#searchResult .navigation-wrapper .navigation > li:not(.between) {
  width: 25px;
  height: 25px;
  border: 1px solid #fa8d37;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
}

#searchResult .navigation-wrapper .navigation > li:not(.between):hover {
  background-color: rgba(250, 141, 55, 0.3);
  -webkit-transition: all .3s;
  transition: all .3s;
}

#searchResult .navigation-wrapper .navigation > li.between {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fa8d37;
}

#searchResult .navigation-wrapper .navigation > li.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #fa8d37;
}

#searchResult .navigation-wrapper .navigation > li.current:hover {
  background-color: #fa8d37;
}

#searchResult .navigation-wrapper .navigation > li.current a {
  color: #fff;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 検索ワード入力欄 */
  #searchResult .search {
    margin: 2.628vw auto 0;
    padding: .586vw .732vw;
  }
  #searchResult .search input[type="text"] {
    width: 26.354vw;
    font-size: 1.464vw;
  }
  #searchResult .search button[type="submit"] {
    margin-left: .732vw;
    width: 1.537vw;
    height: 1.537vw;
  }
  /* 検索結果：件数 */
  #searchResult .display {
    margin-top: 2.628vw;
    font-size: .878vw;
  }
  #searchResult .number-of-search {
    margin-top: .732vw;
    height: 2.628vw;
  }
  #searchResult .number-of-search::before {
    width: .146vw;
    margin-right: .732vw;
  }
  #searchResult .number-of-search h3 {
    font-size: 1.318vw;
  }
  #searchResult .number-of-search p {
    margin-left: .732vw;
    font-size: 1.025vw;
  }
  /* 検索結果：一覧 */
  #searchResult .result {
    padding: 1.464vw;
  }
  #searchResult .result:first-child {
    margin-top: 1.464vw;
  }
  #searchResult .result a::after {
    width: .512vw;
    height: .512vw;
  }
  #searchResult .result .genre {
    font-size: 1.025vw;
  }
  #searchResult .result .title {
    font-size: 1.318vw;
  }
  #searchResult .result .discription {
    font-size: 1.025vw;
  }
  /* ナビゲーションブロック */
  #searchResult .navigation-wrapper {
    margin-top: 1.464vw;
  }
  #searchResult .navigation-wrapper .prev,
  #searchResult .navigation-wrapper .next {
    width: 1.83vw;
    height: 1.83vw;
  }
  #searchResult .navigation-wrapper .prev {
    margin-right: .366vw;
  }
  #searchResult .navigation-wrapper .next {
    margin-left: .366vw;
  }
  #searchResult .navigation-wrapper .prev::after {
    width: .512vw;
    height: .512vw;
  }
  #searchResult .navigation-wrapper .next::after {
    width: .512vw;
    height: .512vw;
  }
  #searchResult .navigation-wrapper .navigation > li {
    font-size: .878vw;
  }
  #searchResult .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: .366vw;
  }
  #searchResult .navigation-wrapper .navigation > li:not(.between) {
    width: 1.83vw;
    height: 1.83vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* 検索ワード入力欄 */
  #searchResult .title-block {
    margin-top: 8vw;
  }
  /* 検索ワード入力欄 */
  #searchResult .search {
    margin: 10.667vw auto 0;
    padding: 2.133vw 2.667vw;
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #searchResult .search input[type="text"] {
    width: 90%;
    font-size: 5.333vw;
  }
  #searchResult .search button[type="submit"] {
    margin-left: 0;
    width: 5.6vw;
    height: 5.6vw;
  }
  /* 検索結果：件数 */
  #searchResult .display {
    margin-top: 8vw;
    font-size: 3.2vw;
  }
  #searchResult .number-of-search {
    margin-top: 2.667vw;
    padding: 0 2.667vw;
    height: 10.667vw;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
  #searchResult .number-of-search::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
  }
  #searchResult .number-of-search h3 {
    padding-bottom: 0;
    font-size: 4.8vw;
  }
  #searchResult .number-of-search p {
    margin-left: 0;
    font-size: 3.733vw;
  }
  /* 検索結果：一覧 */
  #searchResult .result {
    padding: 5.333vw 2.677vw 5.333vw 0;
  }
  #searchResult .result:first-child {
    margin-top: 2.667vw;
  }
  #searchResult .result a::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #searchResult .result a:hover::after {
    -webkit-transition: all 0s;
    transition: all 0s;
    border-color: #969696;
  }
  #searchResult .result .genre {
    padding: .2em .9em;
    font-size: 2.667vw;
    color: #e87449;
    background-color: transparent;
    border: 1px solid #e87449;
  }
  #searchResult .result .title {
    margin-top: .6em;
    width: 95%;
    height: 1.1em;
    font-size: 3.733vw;
    line-height: 1.1em;
  }
  #searchResult .result a:hover .title {
    -webkit-transition: all 0s;
    transition: all 0s;
    color: inherit;
  }
  #searchResult .result .discription {
    margin-top: .3em;
    width: 95%;
    font-size: 3.2vw;
    line-height: 1em;
    height: 1em;
  }
  #searchResult .result a:hover .discription {
    -webkit-transition: all 0s;
    transition: all 0s;
    color: #969696;
  }
  /* ナビゲーションブロック */
  #searchResult .navigation-wrapper {
    margin-top: 5.333vw;
    margin-bottom: 16vw;
  }
  #searchResult .navigation-wrapper .prev,
  #searchResult .navigation-wrapper .next {
    width: 6.667vw;
    height: 6.667vw;
  }
  #searchResult .navigation-wrapper .prev {
    margin-right: 1.333vw;
  }
  #searchResult .navigation-wrapper .next {
    margin-left: 1.333vw;
  }
  #searchResult .navigation-wrapper .prev::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #searchResult .navigation-wrapper .next::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #searchResult .navigation-wrapper .navigation > li {
    font-size: 3.2vw;
  }
  #searchResult .navigation-wrapper .navigation > li:nth-of-type(n+2) {
    margin-left: 1.333vw;
  }
  #searchResult .navigation-wrapper .navigation > li:not(.between) {
    width: 6.667vw;
    height: 6.667vw;
  }
}

/* プライバシーポリシー(privacyPolicy.html)
--------------------------------------------- */
/* 各セクション */
#privacyPolicy .wrap-section {
  margin-top: 40px;
}

#privacyPolicy .wrap-section + .wrap-section {
  margin-top: 50px;
}

#privacyPolicy .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#privacyPolicy .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#privacyPolicy .wrap-section .heading-wrapper {
  width: 300px;
}

#privacyPolicy .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#privacyPolicy .wrap-section .content-wrapper {
  width: 750px;
}

/* セクション間の間隔 */
#privacyPolicy .wrap-section + .wrap-section {
  margin-top: 70px;
}

/* 基本CSS */
#privacyPolicy h3 {
  margin-top: 1.4em;
  line-height: 1.4em;
  padding-bottom: .4em;
}

#privacyPolicy p {
  margin-top: 1em;
}

#privacyPolicy ul {
  margin-top: 1em;
}

#privacyPolicy ul > li {
  line-height: 1.6em;
}

#privacyPolicy ul > li::before {
  content: '・';
}

#privacyPolicy .topic-pass ul {
  margin-top: 0;
}

#privacyPolicy .topic-pass ul > li::before {
  content: '';
}

#privacyPolicy .ssl {
  margin-top: 1em;
  max-width: 100%;
}

#privacyPolicy h3:first-child,
#privacyPolicy p:first-child {
  margin-top: 0;
}

#privacyPolicy .align-right {
  text-align: right;
}

#privacyPolicy small {
  font-size: 87.5%;
  line-height: 1.4em;
}

/* ページタイトルブロック */
#privacyPolicy .page-about {
  margin-top: 40px;
  margin-left: auto;
  width: 750px;
}

#privacyPolicy .page-about h4 {
  padding-left: 0;
  font-size: 16px;
}

#privacyPolicy .page-about h4::before {
  content: none;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #privacyPolicy .wrap-section {
    margin-top: 2.928vw;
  }
  #privacyPolicy .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  /* 左の見出しブロック */
  #privacyPolicy .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #privacyPolicy .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #privacyPolicy .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* ページタイトルブロック */
  #privacyPolicy .page-about {
    margin-top: 2.928vw;
    width: 54.905vw;
  }
  #privacyPolicy .page-about h4 {
    font-size: 1.171vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #privacyPolicy .title-block {
    margin-top: 8vw;
  }
  #privacyPolicy .title-block h1 {
    font-size: 8vw;
  }
  /* 左の見出しブロック */
  #privacyPolicy .wrap-section .heading-wrapper {
    width: auto;
  }
  #privacyPolicy .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #privacyPolicy .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* セクション間の間隔 */
  #privacyPolicy .wrap-section + .wrap-section {
    margin-top: 10.667vw;
  }
  /* 各セクション */
  #privacyPolicy .wrap-section {
    margin-top: 10.667vw;
  }
  #privacyPolicy .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #privacyPolicy .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #privacyPolicy .wrap-section .container {
    display: block;
  }
  /* 基本CSS */
  #privacyPolicy small {
    font-size: 85.7%;
    line-height: 1.2em;
  }
  #privacyPolicy .ssl {
    display: block;
    margin: 1em auto 0;
  }
  /* ページタイトルブロック */
  #privacyPolicy .page-about {
    margin-top: 10.667vw;
    margin-left: 0;
    width: auto;
  }
  #privacyPolicy .page-about h4 {
    font-size: 3.733vw;
  }
}

/* 転載・引用について(reprintingQuotation.html)
--------------------------------------------- */
/* 各セクション */
#reprintingQuotation .wrap-section {
  margin-top: 40px;
}

#reprintingQuotation .wrap-section + .wrap-section {
  margin-top: 50px;
}

#reprintingQuotation .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#reprintingQuotation .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#reprintingQuotation .wrap-section .heading-wrapper {
  width: 300px;
}

#reprintingQuotation .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#reprintingQuotation .wrap-section .content-wrapper {
  width: 750px;
}

/* セクション間の間隔 */
#reprintingQuotation .wrap-section + .wrap-section {
  margin-top: 40px;
}

/* 基本CSS */
#reprintingQuotation h3 {
  margin-top: 1.4em;
  line-height: 1.4em;
  padding-bottom: .4em;
}

#reprintingQuotation p {
  margin-top: 1em;
}

#reprintingQuotation h3:first-child,
#reprintingQuotation p:first-child {
  margin-top: 0;
}

/* 引用記載例 */
#reprintingQuotation pre,
#reprintingQuotation code {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.7em;
}

#reprintingQuotation pre {
  margin: 0;
  white-space: pre-wrap;
}

#reprintingQuotation .quote-ex {
  margin-top: 1em;
  padding: 20px;
  font-size: 14px;
  background-color: #faf3e7;
}

#reprintingQuotation .quote-ex .text-bold {
  font-weight: bold;
  line-height: 1.6em;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #reprintingQuotation .wrap-section {
    margin-top: 2.928vw;
  }
  #reprintingQuotation .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  /* 左の見出しブロック */
  #reprintingQuotation .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #reprintingQuotation .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #reprintingQuotation .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* 引用記載例 */
  #reprintingQuotation .quote-ex {
    padding: 1.464vw;
    font-size: 1.025vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #reprintingQuotation .title-block {
    margin-top: 8vw;
  }
  #reprintingQuotation .title-block h1 {
    font-size: 8vw;
  }
  /* 左の見出しブロック */
  #reprintingQuotation .wrap-section .heading-wrapper {
    width: auto;
  }
  #reprintingQuotation .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #reprintingQuotation .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* セクション間の間隔 */
  #reprintingQuotation .wrap-section + .wrap-section {
    margin-top: 10.667vw;
  }
  /* 各セクション */
  #reprintingQuotation .wrap-section {
    margin-top: 10.667vw;
  }
  #reprintingQuotation .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #reprintingQuotation .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #reprintingQuotation .wrap-section .container {
    display: block;
  }
  /* 引用記載例 */
  #reprintingQuotation .quote-ex {
    padding: 5.333vw;
    font-size: 3.733vw;
  }
}

/* サイトマップ(siteMaps.html)
--------------------------------------------- */
#siteMaps .siteMaps-all {
  margin-top: 40px;
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#siteMaps .siteMaps-group {
  width: 48.6%;
}

#siteMaps .siteMaps-group:nth-child(n+3) {
  margin-top: 1.5em;
}

#siteMaps .siteMaps-title {
  height: 60px;
  border: 1px solid #dd7a55;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #dd7a55;
}

#siteMaps .siteMaps-title img {
  height: 100%;
}

#siteMaps .siteMaps-title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

#siteMaps .siteMaps-title a:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  background-color: #ffe8d9;
}

#siteMaps .siteMaps-title a::before,
#siteMaps .siteMaps-title a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 3%;
}

#siteMaps .siteMaps-title a::before {
  width: .8em;
  height: .8em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#siteMaps .siteMaps-title a::after {
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-110%, -50%) rotate(45deg);
          transform: translate(-110%, -50%) rotate(45deg);
}

#siteMaps .siteMaps-list {
  padding: 20px;
}

#siteMaps .siteMaps-list > li {
  line-height: 1em;
  color: #dd7a55;
}

#siteMaps .siteMaps-list > li:nth-of-type(n+2) {
  margin-top: 20px;
}

#siteMaps .siteMaps-list ul {
  padding-left: 20px;
}

#siteMaps .siteMaps-list ul > li {
  margin-top: 20px;
}

#siteMaps .siteMaps-list a {
  position: relative;
}

#siteMaps .siteMaps-list a:hover {
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #666666;
}

#siteMaps .siteMaps-list a::before,
#siteMaps .siteMaps-list a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.4em;
}

#siteMaps .siteMaps-list a:hover::before,
#siteMaps .siteMaps-list a:hover::after {
  -webkit-transition: all .3s;
  transition: all .3s;
  border-color: #666666;
}

#siteMaps .siteMaps-list a::before {
  width: .8em;
  height: .8em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#siteMaps .siteMaps-list a::after {
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
  -webkit-transform: translate(-110%, -50%) rotate(45deg);
          transform: translate(-110%, -50%) rotate(45deg);
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  #siteMaps .siteMaps-all {
    margin-top: 2.928vw;
    margin-bottom: 7.321vw;
  }
  #siteMaps .siteMaps-title {
    height: 4.392vw;
  }
  #siteMaps .siteMaps-list {
    padding: 1.464vw;
  }
  #siteMaps .siteMaps-list > li:nth-of-type(n+2) {
    margin-top: 1.464vw;
  }
  #siteMaps .siteMaps-list ul {
    padding-left: 1.464vw;
  }
  #siteMaps .siteMaps-list ul > li {
    margin-top: 1.464vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #siteMaps .title-block {
    margin-top: 8vw;
  }
  /* サイトマップ一覧 */
  #siteMaps .siteMaps-all {
    margin-top: 10.667vw;
    margin-bottom: 13.333vw;
    display: block;
  }
  #siteMaps .siteMaps-group {
    width: auto;
  }
  #siteMaps .siteMaps-group:nth-child(n+3) {
    margin-top: 0;
  }
  #siteMaps .siteMaps-group:nth-child(n+2) {
    margin-top: 10.667vw;
  }
  #siteMaps .siteMaps-title {
    height: 16vw;
  }
  #siteMaps .siteMaps-title a:hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    background-color: transparent;
  }
  #siteMaps .siteMaps-title a::before,
  #siteMaps .siteMaps-title a::after {
    right: 3%;
  }
  #siteMaps .siteMaps-title a::before {
    width: .8em;
    height: .8em;
  }
  #siteMaps .siteMaps-title a::after {
    width: .25em;
    height: .25em;
  }
  #siteMaps .siteMaps-list {
    padding: 5.333vw 5.333vw 0;
  }
  #siteMaps .siteMaps-list > li:nth-of-type(n+2) {
    margin-top: 1em;
  }
  #siteMaps .siteMaps-list ul {
    padding-left: 5.333vw;
  }
  #siteMaps .siteMaps-list ul > li {
    margin-top: 1em;
  }
  #siteMaps .siteMaps-list a:hover {
    -webkit-transition: all 0s;
    transition: all 0s;
    color: #dd7a55;
  }
  #siteMaps .siteMaps-list a::before,
  #siteMaps .siteMaps-list a::after {
    right: -1.4em;
  }
  #siteMaps .siteMaps-list a:hover::before,
  #siteMaps .siteMaps-list a:hover::after {
    -webkit-transition: all 0s;
    transition: all 0s;
    border-color: #dd7a55;
  }
  #siteMaps .siteMaps-list a::before {
    width: .8em;
    height: .8em;
  }
  #siteMaps .siteMaps-list a::after {
    width: .25em;
    height: .25em;
  }
}

/* 五本木クリニックはここが違う！(difference.html)
--------------------------------------------- */
#difference .title-block p {
  margin: 40px auto 0;
  width: 640px;
}

/* 各セクション */
#difference .wrap-section {
  margin-top: 40px;
}

#difference .wrap-section + .wrap-section {
  margin-top: 50px;
}

#difference .wrap-section:last-of-type {
  margin-bottom: 65px;
}

#difference .wrap-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 左の見出しブロック */
#difference .wrap-section .heading-wrapper {
  width: 300px;
}

#difference .wrap-section .heading-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #ed9573), color-stop(63.3%, #ed9573), color-stop(63.3%, #999999), to(#999999));
  background: linear-gradient(90deg, #ed9573 0, #ed9573 63.3%, #999999 63.3%, #999999 100%);
  margin-bottom: 40px;
}

/* 右のコンテンツブロック */
#difference .wrap-section .content-wrapper {
  width: 750px;
}

/* 基本CSS */
#difference h4 {
  margin-top: 1em;
  padding-left: 0;
}

/* 私たちは、患者さんとの信頼関係を何よりも大切にしています。 */
#difference .point-wrap {
  padding-left: 334px;
  position: relative;
}

#difference .point-wrap:nth-of-type(n+2) {
  margin-top: 1em;
}

#difference .point-wrap .point {
  display: inline-block;
  margin-top: 0;
  padding: .4em .8em;
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
  color: #fff;
  background-color: #dd7a55;
}

#difference .point-wrap h3 {
  margin-top: .3em;
  font-size: 20px;
  line-height: 1.4em;
}

#difference .point-wrap h3::before,
#difference .point-wrap h3::after {
  content: none;
}

#difference .point-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
}

#difference .point-wrap p {
  margin-top: .8em;
  line-height: 1.6em;
}

/* セクション：「美容診療コラム」*/
#difference .column-list .column {
  padding: 20px 20px 20px 0;
  border-top: 1px solid #969696;
}

#difference .column-list .column:last-of-type {
  border-bottom: 1px solid #969696;
}

#difference .column-list .column a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
  position: relative;
}

#difference .column-list .column a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #969696;
  border-right: 1px solid #969696;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

#difference .column-list .column a:hover::after {
  border-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#difference .column-list .column a > .image-wrap {
  margin-right: 20px;
  width: 150px;
  height: 112.5px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#difference .column-list .column a:hover > .image-wrap {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#difference .column-list .column a > .image-wrap img {
  width: 100%;
}

#difference .column-list .column a .content-wrap {
  width: 510px;
}

#difference .column-list .column a .meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#difference .column-list .column a .meta-wrap .cat {
  font-size: 12px;
  font-weight: bold;
  color: #e87449;
  border: 1px solid #e87449;
  padding: .2em .5em;
}

#difference .column-list .column a .meta-wrap .date {
  font-size: 14px;
  color: #969696;
}

#difference .column-list .column a .title {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

#difference .column-list .column a .author-wrap {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#difference .column-list .column a .author-wrap .image-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

#difference .column-list .column a .author-wrap .image-wrap img {
  width: 100%;
}

#difference .column-list .column a .author-wrap .name {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #969696;
}

#difference .column-list .column a:hover .meta-wrap .date,
#difference .column-list .column a:hover .title,
#difference .column-list .column a:hover .author-wrap .name {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* リンク */
#difference .link-wrap {
  margin-top: 20px;
  width: 334px;
  height: 60px;
}

/* 診療時間および担当医 */
#difference .consultation-hours {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#difference .consultation-hours .hours-wrap {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
  width: 370px;
  background-color: #f4eee4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#difference .consultation-hours .heading {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 30px;
  width: 100%;
  font-size: 18px;
  line-height: 1.44em;
}

#difference .consultation-hours dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#difference .consultation-hours dt {
  width: 27.6%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4em;
}

#difference .consultation-hours dd {
  width: 72.4%;
  font-size: 16px;
  line-height: inherit;
}

#difference .consultation-hours dd li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6em;
}

#difference .consultation-hours dd li::before {
  content: '■';
  position: absolute;
  left: 0;
}

#difference .consultation-hours dt:nth-of-type(n+2),
#difference .consultation-hours dd:nth-of-type(n+2) {
  margin-top: 10px;
}

#difference .consultation-hours .attention-list {
  width: 357px;
  font-size: 14px;
  line-height: 1.42em;
}


/* ドクタープロフィール */
#difference .profile-wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 40px 20px 137px;
  background-color: #fffdf0;
  position: relative;
}

#difference .profile-wrapper .image-wrap {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 20px;
  left: 15px;
}

#difference .profile-wrapper .image-wrap img {
  width: 100%;
}

#difference .profile-wrapper .meta-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#difference .profile-wrapper .meta-wrap .pos {
  margin-right: 10px;
  padding: .21em .64em;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #dd7a55;
  border-radius: 5px;
}

#difference .profile-wrapper .meta-wrap .name {
  font-size: 16px;
  font-weight: bold;
}

#difference .profile-wrapper .profile-wrap {
  margin-top: 1.25em;
  border-top: 1px solid #dd7a55;
}

#difference .profile-wrapper .profile-wrap p {
  padding-top: 1em;
}

/* セクション：「お知らせ」 */
#difference .notice-list .notice {
  padding: 20px;
  border-top: 1px solid #999999;
}

#difference .notice-list .notice:last-of-type {
  border-bottom: 1px solid #999999;
}

#difference .notice-list .notice a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: inherit;
}

#difference .notice-list .notice .image-wrap {
  margin-right: 20px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  outline: 2px solid transparent;
}

#difference .notice-list .notice a:hover .image-wrap {
  outline-color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

#difference .notice-list .notice .image-wrap img {
  width: 100%;
}

#difference .notice-list .notice .content-wrap {
  width: 560px;
}

#difference .notice-list .notice .content-wrap .date {
  margin-top: 12px;
  font-size: 14px;
  color: #969696;
}

#difference .notice-list .notice .content-wrap .title {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.44em;
  height: 2.88em;
  overflow: hidden;
}

#difference .notice-list .notice a:hover .content-wrap .date,
#difference .notice-list .notice a:hover .content-wrap .title {
  color: #dd7a55;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* 各セクション */
  #difference .wrap-section {
    margin-top: 2.928vw;
  }
  #difference .wrap-section + .wrap-section {
    margin-top: 3.66vw;
  }
  /* 左の見出しブロック */
  #difference .wrap-section .heading-wrapper {
    width: 21.962vw;
  }
  #difference .wrap-section .heading-wrapper::before {
    margin-bottom: 2.928vw;
  }
  /* 右のコンテンツブロック */
  #difference .wrap-section .content-wrapper {
    width: 54.905vw;
  }
  /* 私たちは、患者さんとの信頼関係を何よりも大切にしています。 */
  #difference .point-wrap {
    padding-left: 24.451vw;
  }
  #difference .point-wrap .point {
    font-size: 1.318vw;
  }
  #difference .point-wrap h3 {
    font-size: 1.464vw;
  }
  #difference .point-wrap img {
    width: 21.962vw;
  }
  /* セクション：「美容診療コラム」*/
  #difference .column-list .column {
    padding: 1.464vw .732vw 1.464vw 0;
  }
  #difference .column-list .column a::after {
    width: .512vw;
    height: .512vw;
  }
  #difference .column-list .column a > .image-wrap {
    margin-right: 1.464vw;
    width: 10.981vw;
    height: 8.236vw;
    outline-width: .146vw;
  }
  #difference .column-list .column a .content-wrap {
    width: 37.335vw;
  }
  #difference .column-list .column a .meta-wrap .cat {
    font-size: .878vw;
  }
  #difference .column-list .column a .meta-wrap .date {
    font-size: 1.025vw;
  }
  #difference .column-list .column a .title {
    margin-top: .732vw;
    font-size: 1.318vw;
  }
  #difference .column-list .column a .author-wrap {
    margin-top: .366vw;
  }
  #difference .column-list .column a .author-wrap .image-wrap {
    width: 2.928vw;
    height: 2.928vw;
  }
  #difference .column-list .column a .author-wrap .name {
    margin-left: .732vw;
    font-size: 1.025vw;
  }
  /* リンク */
  #difference .link-wrap {
    margin-top: 1.464vw;
    width: 24.541vw;
    height: 4.392vw;
  }
  /* 診療時間および担当医 */
  #difference .consultation-hours .hours-wrap {
    padding: 2.196vw 0;
    width: 27.086vw;
  }
  #difference .consultation-hours .heading {
    padding-left: 2.196vw;
    font-size: 1.318vw;
  }
  #difference .consultation-hours dt {
    font-size: 1.318vw;
  }
  #difference .consultation-hours dd {
    font-size: 1.171vw;
  }
  #difference .consultation-hours dt:nth-of-type(n+2),
  #difference .consultation-hours dd:nth-of-type(n+2) {
    margin-top: .732vw;
  }
  #difference .consultation-hours .attention-list {
    width: 26.135vw;
    font-size: 1.024vw;
  }
  #difference .table-wrapper {
    margin-top: 1.464vw;
  }
  #difference .consultation-schedule h4 {
    font-size: 1.318vw;
  }
  /* ドクタープロフィール */
  #difference .profile-wrapper {
    margin-top: 1.464vw;
    padding: 1.464vw 2.928vw 1.464vw 10.029vw;
  }
  #difference .profile-wrapper .image-wrap {
    width: 7.321vw;
    height: 7.321vw;
    left: 1.098vw;
  }
  #difference .profile-wrapper .meta-wrap .pos {
    margin-right: .732vw;
    font-size: 1.024vw;
    border-radius: .366vw;
  }
  #difference .profile-wrapper .meta-wrap .name {
    font-size: 1.171vw;
  }
  #difference .profile-wrapper .profile-wrap {
    margin-top: 1.464vw;
  }
  /* セクション：「お知らせ」 */
  #difference .notice-list .notice {
    padding: 1.464vw;
  }
  #difference .notice-list .notice .image-wrap {
    margin-right: 1.464vw;
    width: 7.321vw;
    height: 7.321vw;
    outline-width: .146vw;
  }
  #difference .notice-list .notice .content-wrap {
    width: 40.966vw;
  }
  #difference .notice-list .notice .content-wrap .date {
    margin-top: .878vw;
    font-size: 1.025vw;
  }
  #difference .notice-list .notice .content-wrap .title {
    margin-top: .439vw;
    font-size: 1.318vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* ページタイトル */
  #difference .title-block {
    margin-top: 8vw;
  }
  #difference .title-block h1 {
    font-size: 8vw;
  }
  #difference .title-block p {
    width: auto;
    margin: 8vw 0 0;
  }
  /* 左の見出しブロック */
  #difference .wrap-section .heading-wrapper {
    width: auto;
  }
  #difference .wrap-section .heading-wrapper::before {
    content: none;
    display: block;
    width: auto;
    height: auto;
    background: none;
    margin-bottom: 0;
  }
  /* 右のコンテンツブロック */
  #difference .wrap-section .content-wrapper {
    margin-top: 5.333vw;
    width: auto;
  }
  /* セクション間の間隔 */
  #difference .wrap-section + .wrap-section {
    margin-top: 10.667vw;
  }
  /* 各セクション */
  #difference .wrap-section {
    margin-top: 10.667vw;
  }
  #difference .wrap-section + .wrap-section {
    margin-top: 13.333vw;
  }
  #difference .wrap-section:last-of-type {
    margin-bottom: 17.333vw;
  }
  #difference .wrap-section .container {
    display: block;
  }
  /* 私たちは、患者さんとの信頼関係を何よりも大切にしています。 */
  #difference .point-wrap {
    padding-left: 0;
    position: static;
  }
  #difference .point-wrap:nth-of-type(n+2) {
    margin-top: 1.4em;
  }
  #difference .point-wrap .point {
    padding: .4em .8em;
    font-size: 4.8vw;
  }
  #difference .point-wrap h3 {
    margin-top: .3em;
    font-size: 4.8vw;
    line-height: 1.3em;
  }
  #difference .point-wrap img {
    position: static;
    margin-top: 1em;
    width: 100%;
  }
  #difference .point-wrap p {
    margin-top: .8em;
  }
  /* 診療時間および担当医 */
  #difference .consultation-hours {
    margin-top: 5.333vw;
    display: block;
  }
  #difference .consultation-hours .hours-wrap {
    padding: 5.333vw 0;
    width: auto;
  }
  #difference .consultation-hours .heading {
    padding-left: 5.333vw;
    font-size: 3.733vw;
  }
  #difference .consultation-hours dt {
    width: 25%;
    font-size: 3.733vw;
  }
  #difference .consultation-hours dd {
    width: 75%;
    font-size: 3.733vw;
  }
  #difference .consultation-hours dd li {
    padding-left: 1em;
    line-height: 1.44em;
  }
  #difference .consultation-hours dt:nth-of-type(n+2),
  #difference .consultation-hours dd:nth-of-type(n+2) {
    margin-top: 2.667vw;
  }
  #difference .consultation-hours .attention-list {
    margin-top: 5.333vw;
    width: auto;
    font-size: 3.2vw;
  }
  #difference .consultation-hours .attention-list > li {
    line-height: 1.67em;
  }
  #difference .consultation-schedule h4 {
    font-size: 3.733vw;
  }

  /* ドクタープロフィール */
  #difference .profile-wrapper {
    margin-top: 5.333vw;
    padding: 5.333vw 5.333vw 5.333vw 35.733vw;
  }
  #difference .profile-wrapper .image-wrap {
    width: 26.667vw;
    height: 26.667vw;
    top: 5.333vw;
    left: 5.333vw;
  }
  #difference .profile-wrapper .image-wrap img {
    width: 100%;
  }
  #difference .profile-wrapper .meta-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #difference .profile-wrapper .meta-wrap .pos {
    margin-right: 1.6vw;
    padding: .35em .66em;
    font-size: 3.2vw;
    line-height: 1em;
    border-radius: 1.333vw;
  }
  #difference .profile-wrapper .meta-wrap .name {
    font-size: 3.733vw;
  }
  #difference .profile-wrapper .profile-wrap {
    margin-top: 2.133vw;
    padding-top: 2.667vw;
  }
  #difference .profile-wrapper .profile-wrap p {
    padding-top: 0;
    font-size: 3.2vw;
  }
  /* ドクター紹介リンク */
  #difference .link-wrap {
    margin-top: 5.333vw;
    width: auto;
    height: 16vw;
  }
  /* セクション：「美容診療コラム」 */
  #difference .column-list .column {
    padding: 5.333vw 0;
  }
  #difference .column-list .column a > .image-wrap {
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #difference .column-list .column a::after {
    content: none;
  }
  #difference .column-list .column a .content-wrap {
    width: 67.1vw;
  }
  #difference .column-list .column a .meta-wrap .cat {
    font-size: 2.667vw;
  }
  #difference .column-list .column a .meta-wrap .date {
    font-size: 3.2vw;
  }
  #difference .column-list .column a .title {
    margin-top: 2.667vw;
    font-size: 3.733vw;
  }
  #difference .column-list .column a .author-wrap {
    margin-top: 2.667vw;
  }
  #difference .column-list .column a .author-wrap .image-wrap {
    width: 6.933vw;
    height: 6.933vw;
  }
  #difference .column-list .column a .author-wrap .name {
    margin-left: 1.333vw;
    font-size: 3.2vw;
  }
  /* セクション：「お知らせ」 */
  #difference .notice-list .notice {
    padding: 5.333vw 0;
  }
  #difference .notice-list .notice .image-wrap {
    margin-right: 2.667vw;
    width: 18.667vw;
    height: 18.667vw;
    outline-width: .533vw;
  }
  #difference .notice-list .notice .content-wrap {
    width: 67.1vw;
  }
  #difference .notice-list .notice .content-wrap .date {
    font-size: 3.2vw;
    margin-top: 0;
  }
  #difference .notice-list .notice .content-wrap .title {
    margin-top: 2.667vw;
    font-size: 3.733vw;
  }
}

/* お問い合わせ(contact.html)
--------------------------------------------- */
/* タイトルブロック */
#contact .title-block .container {
  width: 640px;
}

#contact .title-block h1 + p {
  margin-top: 40px;
}

#contact .title-block p + p {
  margin-top: 1em;
}

#contact .title-block .bold {
  font-weight: bold;
}

#contact p {
  margin-top: 1em;
  line-height: 1.6em;
}

/* お問い合わせフォーム */
#contact .contact-form {
  margin-top: 40px;
  margin-bottom: 100px;
}

#contact .contact-form .container {
  width: 640px;
}

#contact .contact-form .form-item + .form-item {
  margin-top: 30px;
}

#contact .contact-form label {
  margin-bottom: .5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: bold;
}

#contact .contact-form label > .required {
  margin-left: 1em;
  padding: .25em .7em;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #de3f3f;
}

#contact .contact-form select,
#contact .contact-form input[type="text"],
#contact .contact-form input[type="name"],
#contact .contact-form input[type="email"],
#contact .contact-form input[type="tel"],
#contact .contact-form textarea {
  padding: .68em .5em;
  width: 100%;
  font-size: 20px;
  border: 1px solid #dd7a55;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: normal;
}

#contact .contact-form select,
#contact .contact-form select > option:first-child,
#contact .contact-form input[type="text"]::-webkit-input-placeholder,
#contact .contact-form input[type="name"]::-webkit-input-placeholder,
#contact .contact-form input[type="email"]::-webkit-input-placeholder,
#contact .contact-form input[type="tel"]::-webkit-input-placeholder,
#contact .contact-form textarea::-webkit-input-placeholder {
  color: #dddddd;
}

#contact .contact-form select,
#contact .contact-form select > option:first-child,
#contact .contact-form input[type="text"]:-ms-input-placeholder,
#contact .contact-form input[type="name"]:-ms-input-placeholder,
#contact .contact-form input[type="email"]:-ms-input-placeholder,
#contact .contact-form input[type="tel"]:-ms-input-placeholder,
#contact .contact-form textarea:-ms-input-placeholder {
  color: #dddddd;
}

#contact .contact-form select,
#contact .contact-form select > option:first-child,
#contact .contact-form input[type="text"]::-ms-input-placeholder,
#contact .contact-form input[type="name"]::-ms-input-placeholder,
#contact .contact-form input[type="email"]::-ms-input-placeholder,
#contact .contact-form input[type="tel"]::-ms-input-placeholder,
#contact .contact-form textarea::-ms-input-placeholder {
  color: #dddddd;
}

#contact .contact-form select,
#contact .contact-form select > option:first-child,
#contact .contact-form input[type="text"]::placeholder,
#contact .contact-form input[type="name"]::placeholder,
#contact .contact-form input[type="email"]::placeholder,
#contact .contact-form input[type="tel"]::placeholder,
#contact .contact-form textarea::placeholder {
  color: #dddddd;
}

#contact .contact-form select > option:nth-child(n+2) {
  color: #333333;
}

#contact .contact-form .select-wrap {
  position: relative;
}

#contact .contact-form .select-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 3%;
  width: 7px;
  height: 7px;
  border-right: 1px solid #969696;
  border-bottom: 1px solid #969696;
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
}

#contact .contact-form textarea {
  height: 10em;
  line-height: 1.2em;
}

#contact .contact-form button {
  margin: 0 auto;
  width: 334px;
  height: 60px;
  background-color: #dd7a55;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
}

#contact .contact-form button > .icon {
  margin-left: 5px;
  width: .8em;
  height: .8em;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}

#contact .contact-form button > .icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: .25em;
  height: .25em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: translate(-75%, -50%) rotate(45deg);
          transform: translate(-75%, -50%) rotate(45deg);
}

#contact .contact-form .captcha {
  margin-top: 1em;
  text-align: center;
}

#contact .contact-form .captcha a {
  text-decoration: underline;
}

#contact .contact-form .submit {
  margin-top: 1em;
}

/* レスポンシブ：PC～SP画面幅(1366px~768px) */
@media all and (max-width: 1366px) {
  /* タイトルブロック */
  #contact .title-block .container {
    width: 46.852vw;
  }
  #contact .title-block h1 + p {
    margin-top: 2.928vw;
  }
  /* お問い合わせフォーム */
  #contact .contact-form {
    margin-top: 2.928vw;
    margin-bottom: 7.321vw;
  }
  #contact .contact-form .container {
    width: 46.852vw;
  }
  #contact .contact-form .form-item + .form-item {
    margin-top: 2.196vw;
  }
  #contact .contact-form label {
    font-size: 1.464vw;
  }
  #contact .contact-form label > .required {
    font-size: .878vw;
  }
  #contact .contact-form select,
  #contact .contact-form input[type="text"],
  #contact .contact-form input[type="name"],
  #contact .contact-form input[type="email"],
  #contact .contact-form input[type="tel"],
  #contact .contact-form textarea {
    font-size: 1.464vw;
  }
  #contact .contact-form .select-wrap::after {
    width: .512vw;
    height: .512vw;
  }
  #contact .contact-form button {
    width: 24.451vw;
    height: 4.392vw;
  }
  #contact .contact-form button > .icon {
    margin-left: .366vw;
  }
}

/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* タイトルブロック */
  #contact .title-block {
    margin-top: 8vw;
  }
  #contact .title-block .container {
    width: 89.6%;
  }
  #contact .title-block h1 + p {
    margin-top: 10.667vw;
  }
  /* お問い合わせフォーム */
  #contact .contact-form {
    margin-top: 16vw;
    margin-bottom: 16vw;
  }
  #contact .contact-form .container {
    width: 89.6%;
  }
  #contact .contact-form .form-item + .form-item {
    margin-top: 5.333vw;
  }
  #contact .contact-form label {
    font-size: 4.8vw;
  }
  #contact .contact-form label > .required {
    font-size: 2.666vw;
    border-radius: 1.333vw;
  }
  #contact .contact-form select,
  #contact .contact-form input[type="text"],
  #contact .contact-form input[type="name"],
  #contact .contact-form input[type="email"],
  #contact .contact-form input[type="tel"],
  #contact .contact-form textarea {
    font-size: 5.333vw;
  }
  #contact .contact-form select,
  #contact .contact-form select > option:first-child,
  #contact .contact-form input[type="text"]::-webkit-input-placeholder,
  #contact .contact-form input[type="name"]::-webkit-input-placeholder,
  #contact .contact-form input[type="email"]::-webkit-input-placeholder,
  #contact .contact-form input[type="tel"]::-webkit-input-placeholder,
  #contact .contact-form textarea::-webkit-input-placeholder {
    font-size: 5.333vw;
  }
  #contact .contact-form select,
  #contact .contact-form select > option:first-child,
  #contact .contact-form input[type="text"]:-ms-input-placeholder,
  #contact .contact-form input[type="name"]:-ms-input-placeholder,
  #contact .contact-form input[type="email"]:-ms-input-placeholder,
  #contact .contact-form input[type="tel"]:-ms-input-placeholder,
  #contact .contact-form textarea:-ms-input-placeholder {
    font-size: 5.333vw;
  }
  #contact .contact-form select,
  #contact .contact-form select > option:first-child,
  #contact .contact-form input[type="text"]::-ms-input-placeholder,
  #contact .contact-form input[type="name"]::-ms-input-placeholder,
  #contact .contact-form input[type="email"]::-ms-input-placeholder,
  #contact .contact-form input[type="tel"]::-ms-input-placeholder,
  #contact .contact-form textarea::-ms-input-placeholder {
    font-size: 5.333vw;
  }
  #contact .contact-form select,
  #contact .contact-form select > option:first-child,
  #contact .contact-form input[type="text"]::placeholder,
  #contact .contact-form input[type="name"]::placeholder,
  #contact .contact-form input[type="email"]::placeholder,
  #contact .contact-form input[type="tel"]::placeholder,
  #contact .contact-form textarea::placeholder {
    font-size: 5.333vw;
  }
  #contact .contact-form .select-wrap::after {
    width: 1.867vw;
    height: 1.867vw;
  }
  #contact .contact-form button {
    margin: 0;
    width: 100%;
    height: 16vw;
  }
  #contact .contact-form button > .icon {
    margin-left: 1.333vw;
  }
}


/* 美容診療詳細_費用について(medicalCourses_cost.html)
--------------------------------------------- */
/* 通常タグ */
#medicalCourses_beautySkin_cost #mainColumn h1 {
  margin-bottom: .9em;
}
#medicalCourses_beautySkin_cost #mainColumn h2 {
  margin-bottom: .67em;
}
#medicalCourses_beautySkin_cost #mainColumn p {
  margin-bottom: 1em;
}
#medicalCourses_beautySkin_cost #mainColumn .comment {
  margin-bottom: 3em;
  font-size: .875em;
  line-height: 1.7em;
}
#medicalCourses_beautySkin_cost #mainColumn .bold {
  font-weight: bold;
}

/* リンクブロック */
#medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks {
  display: flex;
  flex-wrap: wrap;
}
#medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block {
  margin-bottom: 20px;
  width: 30.7%;
  height: 50px;
  text-align: center;
}
#medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block:not(:nth-of-type(4n+1)) {
  margin-left: 0;
}
#medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block:not(:nth-of-type(3n+1)) {
  margin-left: 3.95%;
}
#medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block a {
  background-color: transparent;
  color: #dd7a55;
}
#medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block .button-link-jump::after {
  border-color: #dd7a55;
}

/* にきび・ニキビ跡etc */
#medicalCourses_beautySkin_cost #mainColumn .layout {
  margin-bottom: 2.6em;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .item {
  margin-bottom: 1.6em;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap {
  margin-bottom: .625em;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a {
  position: relative;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a:hover {
  color: #666;
  transition: all .3s;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
  width: .7em;
  height: .7em;
  border: 1px solid #dd7a55;
  border-radius: 50%;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translate(-100%, -50%) rotate(45deg);
  width: .25em;
  height: .25em;
  border-top: 1px solid #dd7a55;
  border-right: 1px solid #dd7a55;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a:hover::before,
#medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a:hover::after {
  border-color: #666;
  transition: all .3s;
}
#medicalCourses_beautySkin_cost #mainColumn .layout ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#medicalCourses_beautySkin_cost #mainColumn .layout li {
  box-sizing: border-box;
  padding: 1.67em;
  width: 47%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: .75em;
  line-height: 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#medicalCourses_beautySkin_cost #mainColumn .layout .name {
  width: 16.67em;
}
#medicalCourses_beautySkin_cost #mainColumn .layout li:nth-child(n+3) {
  border-top: none;
}

/* 美容皮膚科に戻るetc */
#medicalCourses_beautySkin_cost #mainColumn .link-wrap {
  width: 294px;
  height: 60px;
}

/* レスポンシブ：SP画面幅(1366px以下) */
@media all and (max-width: 1366px) {
  /* リンクブロック */
  #medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block {
    margin-top: 0;
    margin-bottom: 1.46vw;
    height: 3.66vw;
  }
  /* 美容皮膚科に戻るetc */
  #medicalCourses_beautySkin_cost #mainColumn .link-wrap {
    width: 21.522vw;
    height: 4.392vw;
  }
}
/* レスポンシブ：SP画面幅(767px以下) */
@media all and (max-width: 767px) {
  /* 通常タグ */
  #medicalCourses_beautySkin_cost #mainColumn h1 {
    font-size: 8vw;
    text-align: center;
  }
  #medicalCourses_beautySkin_cost #mainColumn h2 {
    font-size: 5.87vw;
  }
  #medicalCourses_beautySkin_cost #mainColumn p {
    font-size: 3.733vw;
  }
  #medicalCourses_beautySkin_cost #mainColumn .comment {
    font-size: 3.733vw;
  }
  /* リンクブロック */
  #medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block {
    margin-bottom: 2.667vw;
    width: 48.3%;
    height: auto;
  }
  #medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block:not(:nth-of-type(3n+1)) {
    margin-left: 0;
  }
  #medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block:nth-of-type(even) {
    margin-left: 3.4%;
  }
  #medicalCourses_beautySkin_cost #mainColumn .medicalCourses-jumpLinks .link-block a {
    padding: .8em 0;
    height: auto;
  }
  /* にきび・ニキビ跡etc */
  #medicalCourses_beautySkin_cost #mainColumn .layout ul {
    display: block;
  }
  #medicalCourses_beautySkin_cost #mainColumn .layout li {
    padding: 1.3em 1.8em;
    width: auto;
    font-size: 3.2vw;
  }
  #medicalCourses_beautySkin_cost #mainColumn .layout li:nth-child(n+2) {
    border-top: none;
  }
  #medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a:hover,
  #medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a:hover {
    color: #dd7a55;
  }
  #medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a:hover::before,
  #medicalCourses_beautySkin_cost #mainColumn .layout .title_wrap a:hover::after {
    border-color: #dd7a55;
  }
  /* 美容皮膚科に戻るetc */
  #medicalCourses_beautySkin_cost #mainColumn .link-wrap {
    margin: 0 auto;
    width: 78.4vw;
    height: 16vw;
  }
}


/* スマホヘッダー：TELアイコンタップ出現のお問い合わせ先モーダル
--------------------------------------------- */
.tel-menu-modal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 5;
  background-color: #fff;
  overflow-y: auto;
}
.tel-menu-modal .tel-modal-wrap {
  padding-top: 34.667vw;
  padding-bottom: 27vw;
  width: 100%;
  font-size: 3.733vw;
}
.tel-menu-modal .beauty {
  margin-top: 10vw;
}
.tel-menu-modal .dial_wrap h2 {
  text-indent: 1.3em;
  font-size: 1.285em;
  position: relative;
}
.tel-menu-modal .dial_wrap h2::before,
.tel-menu-modal .dial_wrap h2::after {
  content: '';
  position: absolute;
  top: 50%;
  left: .5em;
  width: 1px;
  height: .78em;
  background: linear-gradient(0deg, #dd7a55 0%, #dd7a55 45%, #fff 45%, #fff 55%, #dd7a55 55%, #dd7a55 100%);
}
.tel-menu-modal .dial_wrap h2::before {
  transform: translateY(-50%);
}
.tel-menu-modal .dial_wrap h2::after {
  transform: translateY(-50%) rotate(90deg);
}
.tel-menu-modal .dial_wrap p {
  margin-top: .2em;
  line-height: 1.71em;
}
.tel-menu-modal .dial_wrap .freedial-wrap {
  margin-top: .5em;
  height: 13.333vw;
  border: 1px solid #dd7a55;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tel-menu-modal .dial_wrap .freedial-wrap .freedial {
  margin-left: 2.667vw;
  font-size: 7.467vw;
}
.tel-menu-modal .dial_wrap .nofreedial-wrap {
  margin-top: 1em;
  font-size: .857em;
}
.tel-menu-modal .dial_wrap .nofreedial-wrap a {
  text-decoration: underline;
}
.tel-menu-modal .dial_wrap .reception-wrap {
  margin-top: .5em;
  font-size: .857em;
  font-weight: bold;
}
.tel-menu-modal .dial_wrap .image_wrap {
  width: 7.25%;
}
.tel-menu-modal .dial_wrap .image_wrap img {
  width: 100%;
}