@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Yellowtail&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Zen Maru Gothic";
  font-weight: 400;
  color: #333;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*ハンバーガー用*/
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}

/* メインカラー */
/* テキストカラー */
/* ロゴの金色 */
.red {
  color: #c2191f;
}

.orange {
  color: #ef801c;
}

.navy {
  color: #1c2950;
}

.bold {
  font-weight: 700;
}

.mainColor {
  color: #E2A089;
}

small {
  font-size: 15px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
  display: inline-block;
}
small:before {
  content: "※";
  color: red;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

* {
  box-sizing: border-box;
}

p a, li a, dl a {
  color: #000;
  text-decoration: none;
}
p a:hover, li a:hover, dl a:hover {
  transition: all 0.3s ease 0s;
}

ul li {
  list-style: none;
  text-align: left;
}

/* 点滅 */
.blink {
  animation: blinking 0.9s ease-in-out infinite alternate;
}

@keyframes blinking {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
sup {
  font-size: 70%;
  vertical-align: top;
  position: relative;
  top: -0.5em;
  font-weight: bold;
  color: #c2191f;
}

.mt0 {
  margin-top: 0 !important;
}

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

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

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

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

/* -----------------------------------------------------------
mixin
----------------------------------------------------------- */
/* flexベンダープレフィックス */
/* プレフィックス */
/* -----------------------------------------------------------
リスト
----------------------------------------------------------- */
.list_none {
  height: auto;
  margin: 0 0 20px;
}
.list_none li {
  margin: 0 0 10px;
  line-height: 22px;
  list-style: none;
  font-size: 17px;
}
.list_none li:last-of-type {
  margin: 0;
}
.list_none li span {
  font-weight: bold;
}

/* ・（中黑）リスト */
.list_disc {
  margin: 0 0 20px;
  padding-left: 25px;
}
.list_disc li {
  list-style: disc;
  margin: 0 0 10px 0;
  line-height: 150%;
  font-size: 17px;
}
.list_disc li:last-of-type {
  margin: 0;
}
.list_disc li span {
  font-weight: bold;
}

/* 1.2.3.（数字） リスト */
.list_number {
  margin: 0 0 20px;
  padding-left: 25px;
}
.list_number li {
  list-style: decimal;
  margin: 0 0 10px;
  line-height: 150%;
  font-size: 17px;
}
.list_number li:last-of-type {
  margin: 0;
}

/* ✓（チェックマーク）リスト */
.list_check li {
  margin: 0 0 20px 0;
  padding-left: 30px;
  font-size: 17px;
}
.list_check li span {
  font-weight: bold;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  margin-right: 15px;
  margin-left: -30px;
  color: #000;
}

/* -----------------------------------------------------------
（PC表示）ボタン（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .moreBtn a {
    border: solid 2px #E2A089;
    display: inline-block;
    margin: 15px 0 0;
    padding: 6px 30px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: #FFF8F6;
    color: #E2A089;
  }
  .moreBtn a:hover {
    background: #fff;
  }
}
/* -----------------------------------------------------------
（SP表示）ボタン（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .moreBtn a {
    display: inline-block;
    margin: 15px 0 0;
    padding: 6px 30px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: solid 2px #E2A089;
    background: #FFF8F6;
    color: #E2A089;
  }
  .moreBtn a:hover {
    background: #fff;
  }
}
/* -----------------------------------------------------------
（PC表示）大きいボタン（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .infoBtn {
    text-align: center;
  }
  .infoBtn a {
    background: #A49864;
    color: #fff !important;
    display: inline-block;
    margin: 80px auto 0;
    padding: 20px 50px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 20px;
    text-decoration: none !important;
  }
}
/* -----------------------------------------------------------
（SP表示）大きいボタン（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .infoBtn {
    text-align: center !important;
  }
  .infoBtn a {
    background: #A49864;
    color: #fff !important;
    display: inline-block;
    margin: 40px auto 0;
    padding: 10px 30px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    line-height: 1.3;
    text-decoration: none !important;
  }
}
/* -----------------------------------------------------------
（PC表示）ハンバーガーメニューボタン（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #overlay-button {
    position: fixed;
    top: 45px;
    right: -1470px;
    left: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    padding: 28px 12px 40px;
    z-index: 5;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #FFF;
    /* eachが使える */
    border-radius: 6px;
  }
}
@media print and (min-width: 1251px) and (max-width: 1630px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1630px) {
  #overlay-button {
    top: 45px;
    right: 35px;
    left: inherit;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  #overlay-button {
    top: 30px;
    right: 20px;
    left: inherit;
  }
}
@media print, screen and (min-width: 1000px) {
  #overlay-button:after {
    content: "MENU";
    color: #E2A089;
    position: absolute;
    bottom: 7px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
  }
  #overlay-button span {
    height: 5px;
    width: 55px;
    border-radius: 10px;
    background-color: #E2A089;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
  }
  #overlay-button span:before {
    top: -15px;
    visibility: visible;
  }
  #overlay-button span:after {
    top: 16px;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 5px;
    width: 55px;
    border-radius: 10px;
    background-color: #E2A089;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #E2A089;
  }
  input#overlay-input[type=checkbox] {
    display: none !important;
  }
  input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
  }
  input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
  }
  input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(48deg) translate(8px, 9px);
  }
  input[type=checkbox]:checked ~ #overlay-button:after {
    content: "CLOSE";
    color: #E2A089;
    position: absolute;
    bottom: 7px;
  }
  input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-48deg) translate(13px, -14px);
  }
  #overlay {
    height: 100vh;
    width: 100%;
    background: #F9F9F9;
    z-index: 4;
    visibility: hidden;
    position: fixed;
    padding: 0;
    box-sizing: border-box;
  }
  #overlay .overlay_head {
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px;
    padding: 0;
    align-items: center;
  }
  #overlay .overlay_head .reservationBtn a {
    display: block;
    background: #000;
    color: #fff;
    padding: 20px 40px 20px 85px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
  #overlay .overlay_head .reservationBtn a span:nth-of-type(1) {
    font-size: 16px;
    line-height: 1.5;
    display: block;
  }
  #overlay .overlay_head .reservationBtn a span:nth-of-type(2) {
    font-size: 16px;
    line-height: 1.5;
    display: block;
    margin: 2px 0 0;
  }
  #overlay .overlay_head .reservationBtn a:before {
    content: "";
    display: inline-block;
    width: 60px;
    height: 53px;
    background-image: url("../images/icon_overLay_reservationBtn.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    left: 13px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  #overlay .overlay_head .reservationBtn a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    right: 11px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    font-weight: bold;
  }
  #overlay .overlay_head .reservationBtn a:hover {
    background-color: #aacb2f;
  }
  #overlay .overlay_head .reservationBtn a:hover:before {
    top: -5px;
    transition: all 0.3s ease 0s;
  }
  #overlay .overlay_head .overLayBtnFlex {
    display: flex;
    flex-direction: column;
  }
  #overlay .overlay_head .overLayBtnFlex dl {
    display: flex;
    flex-direction: column;
    margin: 0 0 5px;
    transform: translateY(-3px);
    text-align: right;
  }
  #overlay .overlay_head .overLayBtnFlex dl dt {
    border: solid 1px #E2A089;
    text-align: center;
    letter-spacing: 0.1em;
    text-indent: 1em;
    color: #E2A089;
    font-weight: bold;
    margin: 0 0 3px;
    font-size: 16px;
    background: #f6f6f6;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd {
    margin: 0 0 10px 0;
    color: #E2A089;
    font-weight: 500;
    margin: 0 0 0 0;
    font-size: 40px;
    letter-spacing: 0.01em;
    line-height: 1.1;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd .telDot {
    font-size: 20px;
    margin: 0 5px 0 0;
    color: #E2A089;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd a {
    color: #E2A089 !important;
    text-decoration: none !important;
  }
  #overlay .overlay_head .overLayBtnFlex dl dd a:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 32px;
    background-image: url(../images/icon_phone.png);
    background-size: contain;
    vertical-align: middle;
    margin: 0 10px 8px 0;
  }
  #overlay .overlay_head .overLayBtnFlex ul {
    display: flex;
    justify-content: space-between;
  }
  #overlay .overlay_head .overLayBtnFlex ul li {
    width: calc((100% - 20px) / 2);
  }
  #overlay .overlay_head .overLayBtnFlex ul li a {
    display: block;
    background: #f6f6f6;
    text-align: center;
    border: solid 1px #E2A089;
    /* eachが使える */
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    padding: 10px;
  }
  #overlay .overlay_head .overLayBtnFlex ul li a span {
    display: block;
  }
  #overlay .overlayArea {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 40px;
    height: 350px;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
  }
  #overlay .overlayArea .overlay_inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    vertical-align: middle;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
  }
  #overlay .overlayArea .overlay_inner .overlayBox {
    width: calc((100% - 30px) / 2);
    vertical-align: bottom;
    display: table-cell;
    margin: 0 0 20px;
    padding: 0;
    box-sizing: border-box;
  }
  #overlay .overlayArea .overlay_inner .overlayBox:last-of-type dt p a {
    background: #E2A089;
    color: #fff;
    border: none;
  }
  #overlay .overlayArea .overlay_inner .overlayBox:last-of-type dt p a:after {
    color: #fff;
  }
  #overlay .overlayArea .overlay_inner .overlayBox:last-of-type dt p a:hover {
    background: rgb(223.987755102, 153.4081632653, 128.812244898);
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a {
    font-size: 20px;
    text-align: left;
    margin: 0;
    padding: 20px 30px;
    color: #E2A089;
    display: block;
    position: relative;
    font-weight: 600;
    border: solid 1px #E2A089;
    background: #fff;
    position: relative;
    /* eachが使える */
    border-radius: 8px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #E2A089;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 20px;
    font-weight: bold;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a:hover {
    background: #fff;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dt p a:hover:after {
    right: 27px;
  }
  #overlay .overlayArea .overlay_inner .overlayBox dd {
    display: none;
  }
  #overlay .timeTable {
    display: none;
  }
}
/* -----------------------------------------------------------
（SP表示）ハンバーガーメニューボタン（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #overlay-button {
    position: fixed;
    right: 0;
    top: 0;
    padding: 26px 17px 40px;
    z-index: 5;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    background: #E2A089;
    border-radius: 0 0 0 10px;
  }
  #overlay-button:after {
    content: "MENU";
    color: #fff;
    position: absolute;
    bottom: 7px;
    margin: auto;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 600;
  }
  #overlay-button span {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: relative;
    display: block;
    transition: all 0.2s ease-in-out;
  }
  #overlay-button span:before {
    top: -10px;
    visibility: visible;
  }
  #overlay-button span:after {
    top: 10px;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: white;
    position: absolute;
    content: "";
    transition: all 0.2s ease-in-out;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #fff;
  }
  input#overlay-input[type=checkbox] {
    display: none !important;
  }
  input[type=checkbox]:checked ~ #overlay {
    visibility: visible;
  }
  input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
  }
  input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
  }
  input[type=checkbox]:checked ~ #overlay-button:after {
    content: "CLOSE";
    color: #fff;
    position: absolute;
    bottom: 7px;
  }
  input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  #about #overlay #overlay_about dd {
    display: none;
  }
  #visit #overlay #overlay_visit dd {
    display: none;
  }
  #disease #overlay #overlay_disease dd {
    display: none;
  }
  #treatment #overlay #overlay_treatment dd {
    display: none;
  }
  #access #overlay #overlay_access dd {
    display: none;
  }
  #overlay {
    width: 100%;
    height: 100vh;
    background: #F9F9F9;
    z-index: 3;
    visibility: hidden;
    position: fixed;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    overflow: auto;
  }
  #overlay .overlay_head {
    height: 85px;
    margin: 0 0 30px;
    padding: 10px 5px 0;
  }
  #overlay .overlay_head .logo {
    margin: 0;
    width: 260px;
    line-height: 1;
  }
  #overlay .overlay_head .logo img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  #overlay .overlay_head .logo {
    width: 230px;
  }
}
@media screen and (max-width: 999px) {
  #overlay .overlay_head dl {
    display: none;
  }
  #overlay .overlay_head p {
    font-size: 3vw;
    color: #E2A089;
    font-weight: 500;
    text-align: left;
    margin: 1px 0 0 15px;
  }
  #overlay .overlay_head p span {
    font-size: 4vw;
    font-weight: 500;
  }
  #overlay .overlay_head p span:nth-of-type(1) {
    margin-right: -5px;
  }
  #overlay .overlay_head p span:nth-of-type(2) {
    margin: 0 0 0 -10px;
  }
  #overlay .overlay_head p span:nth-of-type(3) {
    margin-left: 2px;
  }
  #overlay .overlay_inner {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    vertical-align: middle;
  }
  #overlay .overlay_inner .overlayBox {
    width: 100%;
    vertical-align: bottom;
    display: table-cell;
    margin: 0 0 15px;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }
  #overlay .overlay_inner .overlayBox:last-of-type dt p a {
    background: #E2A089;
    color: #fff;
  }
  #overlay .overlay_inner .overlayBox dt p a {
    font-size: 18px;
    text-align: left;
    margin: 0;
    padding: 10px 25px;
    color: #E2A089;
    display: block;
    position: relative;
    font-weight: 600;
    border: dashed 1px #E2A089;
    background: #fff;
    position: relative;
    /* eachが使える */
    border-radius: 8px;
  }
  #overlay .overlay_inner .overlayBox dt p a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #E2A089;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 17px;
    height: 17px;
    font-weight: bold;
  }
  #overlay .overlay_inner .overlayBox dt p a:hover {
    background: #fcfcfc;
  }
  #overlay .overlay_inner .overlayBox dt p a:hover:after {
    right: 27px;
  }
  #overlay .overlay_inner .overlayBox dd {
    text-align: left;
    padding: 10px 0 15px 15px;
    font-size: 15px;
    position: relative;
    border-bottom: dashed 1px #ccc;
    display: block;
    width: 100%;
  }
  #overlay .overlay_inner .overlayBox dd:after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    line-height: 1;
    margin: 0 10px 0 0;
    position: absolute;
    top: 0;
    bottom: -20px;
    right: 23px;
    margin: auto;
    font-weight: bold;
    color: #E2A089;
    height: 15px;
    font-size: 10px;
  }
  #overlay .overlay_inner .overlayBox dd:first-of-type {
    padding: 20px 0 10px 15px;
  }
  #overlay .overlay_inner .overlayBox dd span.clName {
    display: block;
    font-size: 13px;
  }
  #overlay .overlay_inner .overlayBox dd span.doctorName {
    font-size: 20px;
    margin-left: 10px;
  }
}
/* -----------------------------------------------------------
（PC表示）ヘッダー（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #index header #nav li a {
    margin: 0 0 18px;
  }
  header {
    max-width: 1620px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 40px 100px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header {
    padding: 30px 20px 100px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav {
    width: 270px;
    height: auto;
    margin: 0 50px 0 0;
  }
}
@media print and (min-width: 1251px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1251px) and (max-width: 1400px) {
  header .main_nav {
    margin: 0 30px 0 0;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .main_nav {
    width: 230px;
    margin: 0 30px 0 0;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav h1 {
    text-align: center;
  }
  header .main_nav h1 img {
    width: 100%;
    height: auto;
    margin: 0 0 30px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .main_nav h1 img {
    margin: 0 0 23px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav #nav ul {
    border-radius: 10px 10px 0 0;
  }
  header .main_nav #nav li {
    margin: 0;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .main_nav #nav li {
    margin: 0 0 15px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav #nav li:last-of-type a:after {
    background-image: url(../images/main_nav_arrow_white.png);
  }
  header .main_nav #nav li a {
    width: 100%;
    margin: 0 0 15px;
    padding: 10px 0 10px 68px;
    border: solid 1px #E2A089;
    /* eachが使える */
    border-radius: 10px;
    background-color: #fff;
    color: #E2A089;
    display: block;
    font-weight: bold;
    box-sizing: border-box;
    position: relative;
    letter-spacing: 0.1em;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .main_nav #nav li a {
    padding: 10px 0 10px 65px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav #nav li a:hover {
    background-color: rgb(248.4692307692, 237.5846153846, 233.2307692308);
    background: #fffefd;
  }
  header .main_nav #nav li a:hover:after {
    right: 13px;
    transition: all 0.3s ease 0s;
  }
  header .main_nav #nav li a:after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url(../images/main_nav_arrow.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .main_nav #nav li a:after {
    display: none;
  }
}
@media print, screen and (min-width: 1000px) {
  header .main_nav #nav li a:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  header .main_nav #nav li:nth-of-type(1) a:before {
    width: 40px;
    height: 37px;
    left: 15px;
    background-image: url(../images/main_nav_index.png);
  }
  header .main_nav #nav li:nth-of-type(2) a:before {
    width: 40px;
    height: 48px;
    left: 15px;
    background-image: url(../images/main_nav_examples.png);
  }
  header .main_nav #nav li:nth-of-type(3) a:before {
    width: 38px;
    height: 38px;
    left: 15px;
    background-image: url(../images/main_nav_interview.png);
  }
  header .main_nav #nav li:nth-of-type(4) a:before {
    width: 42px;
    height: 35px;
    left: 12px;
    background-image: url(../images/main_nav_faq.png);
  }
  header .main_nav #nav li:nth-of-type(5) a:before {
    width: 37px;
    height: 39px;
    left: 16px;
    background-image: url(../images/main_nav_service.png);
  }
  header .main_nav #nav li:last-of-type a {
    background: #E2A089;
    border: solid 1px #E2A089;
    color: #fff;
    /* eachが使える */
    border-radius: 10px;
    margin: 0;
  }
  header .main_nav #nav li:last-of-type a:before {
    width: 40px;
    height: 34px;
    left: 14px;
    background-image: url(../images/main_nav_contact.png);
  }
  header .mv {
    max-width: calc(100% - 320px);
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: 700px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .mv {
    max-width: calc(100% - 260px);
    height: 600px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .mv h2 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #fff;
    color: #444;
    padding: 25px 0 0 30px;
    line-height: 1.3;
    font-size: 36px;
    font-weight: 600;
    border-radius: 15px 0 0 0;
    letter-spacing: 0.05em;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .mv h2 {
    line-height: 35px;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 0 0 20px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .mv .englishCopy {
    position: absolute;
    left: -20px;
    bottom: -30px;
    z-index: 2;
    font-size: 90px;
    color: #E2A089;
    line-height: 1;
    transform: rotate(-5deg);
    font-family: "Pinyon Script", serif;
    color: #E2A089;
  }
}
@media print and (min-width: 1401px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1401px) and (max-width: 1400px) {
  header .mv .englishCopy {
    font-size: 80px;
  }
}
@media print and (min-width: 1101px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1400px) {
  header .mv .englishCopy {
    font-size: 70px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  header .mv .englishCopy {
    font-size: 60px;
  }
}
@media print, screen and (min-width: 1000px) {
  header .mv .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    width: 100%;
  }
  header .mv .slide-img {
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    height: 700px;
    /* eachが使える */
    border-radius: 20px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  header .mv .slide-img {
    height: 600px;
  }
}
@media print, screen and (min-width: 1000px) {
  section {
    height: auto;
    margin: 0 auto;
  }
}
/* -----------------------------------------------------------
（SP表示）ヘッダー（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  header {
    width: 100%;
    padding: 100px 10px 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
  }
  #index header {
    margin: 0 auto;
  }
  body:not(#index) header {
    margin: 0 auto 110px;
  }
  #thanks header {
    margin: 0 auto !important;
  }
  body.doctor header {
    margin: 0 auto !important;
  }
  header .main_nav h1 {
    position: absolute;
    top: 10px;
    left: 5px;
    width: 260px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  header .main_nav h1 {
    width: 230px;
  }
}
@media screen and (max-width: 999px) {
  header .main_nav h1 img {
    width: 100%;
    height: auto;
  }
  header .main_nav nav {
    display: none;
  }
  header .mv {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    height: 450px;
  }
  header .mv h2 {
    position: absolute;
    right: -2px;
    bottom: -2px;
    z-index: 2;
    background: #fff;
    color: #444;
    padding: 10px 0 10px 15px;
    line-height: 1.3;
    font-size: 22px;
    font-weight: 600;
    border-radius: 10px 0 0 0;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  header .mv h2 {
    padding: 15px 0 18px 20px;
  }
}
@media screen and (max-width: 999px) {
  header .mv .englishCopy {
    position: absolute;
    left: -5px;
    bottom: 50px;
    z-index: 2;
    font-size: 44px;
    color: #E2A089;
    line-height: 1;
    transform: rotate(-5deg);
    font-family: "Pinyon Script", serif;
  }
  header .mv .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    width: 100%;
  }
  header .mv .slide-img {
    background-size: 220% auto;
    background-position: top center;
    background-repeat: no-repeat;
    height: 450px;
    /* eachが使える */
    border-radius: 25px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  header .mv .slide-img {
    background-size: 200% auto;
    height: 340px;
  }
}
/* -----------------------------------------------------------
（PC表示）メインエリア
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  main {
    max-width: 1240px;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 0 20px;
  }
  #index main {
    max-width: 100%;
    width: 100%;
    padding: 0;
  }
  main .anchorPoint {
    margin-top: -30px !important;
    padding-top: 30px !important;
  }
}
/* -----------------------------------------------------------
（SP表示）メインエリア
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  main {
    padding: 0;
  }
  body:not(#index) main {
    padding: 0 20px;
  }
  main .anchorPoint {
    margin-top: -10px !important;
    padding-top: 10px !important;
  }
}
/* -----------------------------------------------------------
（PC表示）女性医師の新しい経営スタイル（トップページ・MVの下）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .newStyle {
    background: #FCF7F5;
    padding: 70px 20px 100px;
    text-align: center;
  }
  .newStyle h3 {
    color: #444;
    font-size: 48px;
    font-weight: 400;
    line-height: normal;
    display: block;
    margin: 0 0 90px;
  }
  .newStyle h3 span.fukidashi {
    position: relative;
    display: inline-block;
    background: #E2A089;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: bold;
    margin: 0 0 20px;
    color: #FFF;
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.1px;
  }
  .newStyle h3 span.fukidashi span.bold {
    font-weight: bold;
    font-size: 22px;
  }
  .newStyle h3 span.fukidashi:before {
    content: "";
    /* borderで三角形を作る */
    border-width: 10px;
    border-style: solid;
    border-color: #E2A089 transparent transparent transparent;
    /* 配置する */
    position: absolute;
    top: 100%;
    right: 30%;
  }
  .newStyle h3 span.pink {
    color: #E2A089;
  }
  .newStyle .newStyleFlex {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  .newStyle .newStyleFlex dl {
    width: calc((100% - 80px) / 3);
    background: #fff;
    text-align: left;
    padding: 30px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .newStyle .newStyleFlex dl {
    width: calc((100% - 40px) / 3);
  }
}
@media print, screen and (min-width: 1000px) {
  .newStyle .newStyleFlex dl:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    top: -30px;
    left: 22px;
  }
  .newStyle .newStyleFlex dl:after {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
  }
  .newStyle .newStyleFlex dl:nth-of-type(1):before {
    background-image: url("../images/index_newStyle_no01.png");
    width: 50px;
    height: 51px;
  }
  .newStyle .newStyleFlex dl:nth-of-type(1):after {
    background-image: url("../images/index_newStyle_01.png");
    width: 127px;
    height: 162px;
    top: -50px;
    right: -5px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .newStyle .newStyleFlex dl:nth-of-type(1):after {
    width: 100px;
    height: 128px;
    top: -20px;
    right: -10px;
  }
}
@media print, screen and (min-width: 1000px) {
  .newStyle .newStyleFlex dl:nth-of-type(2):before {
    background-image: url("../images/index_newStyle_no02.png");
    width: 50px;
    height: 49px;
  }
  .newStyle .newStyleFlex dl:nth-of-type(2):after {
    background-image: url("../images/index_newStyle_02.png");
    width: 120px;
    height: 150px;
    top: -50px;
    right: 10px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .newStyle .newStyleFlex dl:nth-of-type(2):after {
    width: 100px;
    height: 125px;
    top: -20px;
    right: 10px;
  }
}
@media print, screen and (min-width: 1000px) {
  .newStyle .newStyleFlex dl:nth-of-type(3):before {
    background-image: url("../images/index_newStyle_no03.png");
    width: 50px;
    height: 50px;
  }
  .newStyle .newStyleFlex dl:nth-of-type(3):after {
    background-image: url("../images/index_newStyle_03.png");
    width: 114px;
    height: 163px;
    top: -50px;
    right: 10px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .newStyle .newStyleFlex dl:nth-of-type(3):after {
    width: 100px;
    height: 143px;
    top: -20px;
    right: 10px;
  }
}
@media print, screen and (min-width: 1000px) {
  .newStyle .newStyleFlex dl dt h4 {
    color: #E2A089;
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 10px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .newStyle .newStyleFlex dl dt h4 {
    font-size: clamp(24px, 2.5vw, 28px);
  }
}
@media print, screen and (min-width: 1000px) {
  .newStyle .newStyleFlex dl dd h5 {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 10px;
    font-weight: bold;
    letter-spacing: -0.05em;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .newStyle .newStyleFlex dl dd h5 {
    font-size: clamp(18px, 1.8vw, 24px);
  }
}
@media print, screen and (min-width: 1000px) {
  .newStyle .newStyleFlex dl dd p {
    font-size: 17px;
  }
  .newStyle .newStyleFlex dl dd p span {
    background: #FCEBDE;
    font-weight: bold;
    padding: 0 3px;
  }
}
/* -----------------------------------------------------------
（SP表示）女性医師の新しい経営スタイル（トップページ・MVの下）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .newStyle {
    background: #FCF7F5;
    padding: 30px 0;
    text-align: center;
  }
  .newStyle h3 {
    color: #444;
    font-size: 34px;
    font-weight: 600;
    line-height: normal;
    display: block;
    margin: 0 0 30px;
    line-height: 1.3;
  }
  .newStyle h3 span.fukidashi {
    position: relative;
    display: inline-block;
    background: #E2A089;
    border-radius: 30px;
    padding: 10px 30px;
    font-weight: bold;
    margin: 0 0 20px;
    color: #FFF;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    /* eachが使える */
    border-radius: 50px;
    line-height: 1.4;
  }
  .newStyle h3 span.fukidashi span.bold {
    font-weight: bold;
    font-size: 20px;
  }
  .newStyle h3 span.fukidashi:before {
    content: "";
    /* borderで三角形を作る */
    border-width: 10px;
    border-style: solid;
    border-color: #E2A089 transparent transparent transparent;
    /* 配置する */
    position: absolute;
    top: 100%;
    right: 30%;
  }
  .newStyle h3 span.pink {
    color: #E2A089;
  }
  .newStyle .newStyleFlex {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .newStyle .newStyleFlex dl {
    width: 100%;
    background: #fff;
    text-align: left;
    margin: 0 0 30px;
    padding: 30px 20px;
    /* eachが使える */
    border-radius: 10px;
    position: relative;
  }
  .newStyle .newStyleFlex dl:last-of-type {
    margin: 0;
  }
  .newStyle .newStyleFlex dl:before {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
    top: -13px;
    left: 15px;
    width: 40px;
    height: 40px;
  }
  .newStyle .newStyleFlex dl:after {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    background-repeat: no-repeat;
  }
  .newStyle .newStyleFlex dl:nth-of-type(1):before {
    background-image: url("../images/index_newStyle_no01.png");
  }
  .newStyle .newStyleFlex dl:nth-of-type(1):after {
    background-image: url("../images/index_newStyle_01.png");
    width: 90px;
    height: 115px;
    top: -15px;
    right: 10px;
  }
  .newStyle .newStyleFlex dl:nth-of-type(2):before {
    background-image: url("../images/index_newStyle_no02.png");
  }
  .newStyle .newStyleFlex dl:nth-of-type(2):after {
    background-image: url("../images/index_newStyle_02.png");
    width: 90px;
    height: 113px;
    top: -15px;
    right: 10px;
  }
  .newStyle .newStyleFlex dl:nth-of-type(3):before {
    background-image: url("../images/index_newStyle_no03.png");
  }
  .newStyle .newStyleFlex dl:nth-of-type(3):after {
    background-image: url("../images/index_newStyle_03.png");
    width: 90px;
    height: 129px;
    top: -15px;
    right: 20px;
  }
  .newStyle .newStyleFlex dl dt h4 {
    color: #E2A089;
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 600;
  }
  .newStyle .newStyleFlex dl dd h5 {
    font-size: 20px;
    line-height: 30px; /* 136.364% */
    margin: 0 0 10px;
    font-weight: bold;
  }
  .newStyle .newStyleFlex dl dd p {
    font-size: 17px;
  }
  .newStyle .newStyleFlex dl dd p span {
    background: #FCEBDE;
    font-weight: bold;
    padding: 0 3px;
  }
}
/* -----------------------------------------------------------
（PC表示）開業マイストーリー（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .myStory {
    padding: 100px 20px;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
  }
  body:not(#index) .myStory {
    padding: 0;
  }
  .myStory h3 {
    color: #E2A089;
    font-size: 64px;
    font-weight: 600;
    margin: 0;
  }
  .myStory h3:after {
    content: "";
    display: inline-block;
    width: 170px;
    height: 113px;
    background-image: url("../images/mystory_title.png");
    background-size: contain;
    vertical-align: middle;
  }
  .myStory .myStoryBox {
    display: flex;
    justify-content: space-between;
    margin: 60px 0 0;
    width: 100%;
  }
  body:not(#index) .myStory .myStoryBox:nth-of-type(1) {
    margin: 0;
  }
  .myStory .myStoryBox figure {
    width: 440px;
    height: 366px;
    background: url("../images/myStory_01.png") no-repeat;
    /* eachが使える */
    border-radius: 10px;
    margin: 0 40px 0 0;
  }
  .myStory .myStoryBox:nth-of-type(1) figure {
    background: url("../images/myStory_renaCl.png") no-repeat;
  }
  .myStory .myStoryBox:nth-of-type(2) figure {
    background: url("../images/myStory_shizukaCl.png") no-repeat;
  }
  .myStory .myStoryBox:nth-of-type(3) figure {
    background: url("../images/myStory_karamomoCl.png") no-repeat;
  }
  .myStory .myStoryBox:nth-of-type(even) figure {
    order: 1;
    margin: 0 0 0 40px;
  }
  .myStory .myStoryBox dl {
    width: calc(100% - 480px);
    text-align: left;
  }
  .myStory .myStoryBox dl dt p {
    color: #444;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #444;
    background: #FFF;
    display: inline-block;
    margin: 0 0 10px;
    padding: 2px 10px;
  }
  .myStory .myStoryBox dl dt h4 {
    color: #E2A089;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 15px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1010px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1010px) {
  .myStory .myStoryBox dl dt h4 {
    font-size: 34px;
  }
}
@media print, screen and (min-width: 1000px) {
  .myStory .myStoryBox dl dd h5 {
    color: #444;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.4;
  }
  .myStory .infoBtn a {
    background: #E2A089;
  }
}
/* -----------------------------------------------------------
（SP表示）開業マイストーリー（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .myStory {
    padding: 30px 20px;
    width: 100%;
    margin: 0 auto;
  }
  body:not(#index) .myStory {
    padding: 0 0 30px;
  }
  .myStory h3 {
    color: #E2A089;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 10px;
    position: relative;
  }
  .myStory h3:after {
    content: "";
    display: inline-block;
    width: 100px;
    height: 66px;
    background-image: url("../images/mystory_title.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -20px;
    right: -15px;
  }
  .myStory p {
    line-height: 1.5;
  }
  .myStory .myStoryBox {
    margin: 30px 0 0;
    width: 100%;
  }
  .myStory .myStoryBox:first-of-type {
    margin: 30px 0 0;
  }
  .myStory .myStoryBox:nth-of-type(1) figure {
    background-image: url("../images/sp/myStory_renaCl.jpg");
  }
  .myStory .myStoryBox:nth-of-type(2) figure {
    background-image: url("../images/sp/myStory_shizukaCl.jpg");
  }
  .myStory .myStoryBox:nth-of-type(3) figure {
    background-image: url("../images/sp/myStory_karamomoCl.jpg");
  }
  .myStory .myStoryBox figure {
    width: 100%;
    height: 200px;
    background-position: top center;
    background-size: 100% auto !important;
    /* eachが使える */
    border-radius: 10px;
    margin: 0 0 20px;
    background-repeat: no-repeat;
  }
  .myStory .myStoryBox dl {
    width: 100%;
    text-align: left;
  }
  .myStory .myStoryBox dl dt p {
    color: #444;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #444;
    background: #FFF;
    display: inline-block;
    margin: 0 0 10px;
    padding: 2px 10px;
  }
  .myStory .myStoryBox dl dt h4 {
    color: #E2A089;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px;
  }
  .myStory .myStoryBox dl dd h5 {
    color: #444;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.4;
  }
  .myStory .infoBtn {
    text-align: center;
  }
  .myStory .infoBtn a {
    margin: 30px auto 10px;
  }
  .myStory .infoBtn a {
    background: #E2A089;
  }
}
/* -----------------------------------------------------------
（PC表示）（毎日働くところだから）こだわりのクリニック空間（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .clinicSpace {
    text-align: center;
    background: url("../images/index_clinicSpace_bg.png") center center no-repeat;
    background-color: #FFFCF6;
    padding: 100px 0;
  }
  .clinicSpace dl.title dt {
    background: #A49864;
    color: #fff;
    font-size: 20px;
    margin: 0 auto 20px;
    display: inline-block;
    padding: 7px 20px 7px 25px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
  }
  .clinicSpace dl.title dt:after {
    content: "";
    border-width: 10px;
    border-style: solid;
    border-color: #A49864 transparent transparent transparent;
    position: absolute;
    bottom: -20px;
    right: 50px;
  }
  .clinicSpace h3 {
    color: #6A5B3E;
    font-size: 64px;
    font-weight: 600;
    margin: 0 0 40px;
    display: block;
    line-height: 1.3;
  }
  .clinicSpace .clinicSpaceFlex {
    display: flex;
    justify-content: space-between;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .clinicSpace .clinicSpaceFlex dl {
    width: calc((100% - 80px) / 3);
    text-align: left;
  }
  .clinicSpace .clinicSpaceFlex dl:nth-of-type(-n+3) {
    margin-bottom: 70px;
  }
  .clinicSpace .clinicSpaceFlex dl img {
    width: 100%;
    height: auto;
    margin: 0 0 30px;
    border-radius: 10px;
  }
  .clinicSpace .clinicSpaceFlex dl:nth-of-type(2), .clinicSpace .clinicSpaceFlex dl:nth-of-type(5) {
    margin: 60px 0 0;
  }
  .clinicSpace .clinicSpaceFlex dl dt p {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
  }
  .clinicSpace .clinicSpaceFlex dl dt h4 {
    font-size: 24px;
    margin: 0 0 10px;
    line-height: 1.3;
  }
  .clinicSpace .clinicSpaceFlex dl dd .moreBtn a {
    background: #fff;
    color: #E2A089;
  }
  .clinicSpace .clinicSpaceFlex dl dd .moreBtn a:hover {
    background: #FFF8F6;
  }
}
/* -----------------------------------------------------------
（SP表示）（毎日働くところだから）こだわりのクリニック空間（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .clinicSpace {
    text-align: center;
    background: url("../images/index_clinicSpace_bg.png") top center no-repeat;
    background-color: #FFFCF6;
    padding: 30px 20px;
  }
  .clinicSpace dl.title dt {
    background: #A49864;
    color: #fff;
    font-size: 17px;
    margin: 0 auto 20px;
    display: inline-block;
    padding: 5px 20px 5px 20px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
  }
  .clinicSpace dl.title dt:after {
    content: "";
    border-width: 10px;
    border-style: solid;
    border-color: #A49864 transparent transparent transparent;
    position: absolute;
    bottom: -18px;
    right: 50px;
  }
  .clinicSpace h3 {
    color: #6A5B3E;
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 20px;
    display: block;
  }
  .clinicSpace .clinicSpaceFlex {
    width: 100%;
    margin: 0 auto;
  }
  .clinicSpace .clinicSpaceFlex dl {
    width: 100%;
    text-align: left;
  }
  .clinicSpace .clinicSpaceFlex dl img {
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    border-radius: 10px;
  }
  .clinicSpace .clinicSpaceFlex dl:nth-of-type(n+2) {
    margin: 20px 0 0;
  }
  .clinicSpace .clinicSpaceFlex dl dt p {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
  }
  .clinicSpace .clinicSpaceFlex dl dt h4 {
    font-size: 22px;
    margin: 0 0 10px;
    line-height: 1.3;
  }
  .clinicSpace .clinicSpaceFlex dl dd .moreBtn {
    text-align: center;
  }
  .clinicSpace .clinicSpaceFlex dl dd .moreBtn a {
    border: solid 2px #E2A089;
    background: #fff;
    color: #E2A089;
    display: inline-block;
    margin: 15px 0 0;
    padding: 6px 30px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  .clinicSpace .clinicSpaceFlex dl dd .moreBtn a:hover {
    background: #FFF8F6;
  }
}
/* -----------------------------------------------------------
（PC表示）女性医師のクリニック開業 Q＆A（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #index .qaa {
    padding: 100px 0;
  }
  #index .qaa h3 {
    color: #E2A089;
    text-align: center;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 80px; /* 125% */
  }
  #index .qaa .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
  }
  #index .qaa .container .list {
    flex-wrap: wrap;
    margin: 40px -20px 0;
    display: flex;
    justify-content: flex-start;
  }
  #index .qaa .container .list li {
    box-sizing: border-box;
    margin: 0 0 20px;
    text-align: center;
    padding: 10px 15px;
    opacity: 1;
    height: auto;
    width: calc((100% - 40px) / 5);
    transition: all 0.4s ease 0s;
    overflow: hidden;
  }
  #index .qaa .container .list li a {
    width: 100%;
    display: block;
    text-align: left;
  }
  #index .qaa .container .list li a img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  #index .qaa .container .list li:last-of-type.infoBtn {
    width: 100%;
    margin: 0 auto 20px;
    text-align: center;
  }
  #index .qaa .container .list li:last-of-type.infoBtn a {
    display: inline-block;
    background: #E2A089;
    width: auto;
  }
  #index .qaa .container .list li.is-hidden {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0 10px;
    padding: 0;
  }
  #index .qaa .container .more {
    text-align: center;
    margin-top: 20px;
  }
  #index .qaa .container button {
    background-color: #E2A089;
    border: none;
    cursor: pointer;
    outline: none;
    color: #fff;
    margin: 0 0 70px;
    padding: 0 30px;
    line-height: 40px;
    border-radius: 20px;
    display: inline-block;
    font-size: 17px;
  }
  #index .qaa .infoBtn {
    text-align: center;
  }
  #index .qaa .infoBtn a {
    background: #E2A089;
    margin: 0 auto;
  }
  #index .qaa .center {
    text-align: center;
    margin: 50px 0 0;
    display: block;
  }
  #index .qaa .center a {
    text-decoration: underline;
    font-weight: bold;
  }
}
/* -----------------------------------------------------------
（SP表示）女性医師のクリニック開業 Q＆A（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #index .qaa {
    padding: 30px 0;
  }
  #index .qaa h3 {
    color: #E2A089;
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
  }
  #index .qaa .container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
  #index .qaa .container .list {
    flex-wrap: wrap;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
  }
  #index .qaa .container .list li {
    box-sizing: border-box;
    margin: 0 0 20px;
    text-align: center;
    opacity: 1;
    height: auto;
    width: calc((100% - 20px) / 2);
    transition: all 0.4s ease 0s;
    overflow: hidden;
  }
  #index .qaa .container .list li a {
    width: 100%;
    display: block;
    text-align: left;
    line-height: 1.5;
  }
  #index .qaa .container .list li a img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  #index .qaa .container .list li:last-of-type.infoBtn {
    width: 90% !important;
    margin: 0 auto 20px;
  }
  #index .qaa .container .list li:last-of-type.infoBtn a {
    display: inline-block;
    background: #E2A089;
    text-align: center;
  }
  #index .qaa .container .list li.is-hidden {
    visibility: hidden;
    opacity: 0;
    height: 0;
    margin: 0 10px;
    padding: 0;
  }
  #index .qaa .container .more {
    text-align: center;
  }
  #index .qaa .container button {
    background-color: #E2A089;
    border: none;
    cursor: pointer;
    outline: none;
    color: #fff;
    padding: 0 30px;
    line-height: 40px;
    border-radius: 20px;
    display: inline-block;
    font-size: 17px;
  }
  #index .qaa .container .infoBtn a {
    background: #1F2F53;
  }
}
/* -----------------------------------------------------------
（PC表示）実績紹介（トップページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #triadSupport {
    background: #F4F7FB;
    padding: 100px 0;
    font-family: "Noto Sans JP";
    /*実績紹介*/
  }
  #triadSupport .title {
    color: #1F2F53;
    text-align: center;
    margin: 0 0 30px;
    margin: 160px 0 20px;
    position: relative;
  }
  #triadSupport .title:before {
    content: "";
    display: inline-block;
    width: 180px;
    height: 143px;
    background-image: url("../images/grandeur.svg");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -170px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  #triadSupport .title h3 {
    color: #FFF;
    font-size: 22px;
    background: #1F2F53;
    display: inline-block;
    font-weight: 400;
    padding: 10px 20px;
    margin: 0 0 20px;
  }
  #triadSupport .title p {
    color: #1F2F53;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.3;
  }
  #triadSupport .triadArea {
    background: url("../images/triad.png") top center no-repeat;
    max-width: 1240px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 0 0;
    position: relative;
    text-align: center;
  }
  #triadSupport .triadArea:before {
    content: "";
    display: inline-block;
    width: 280px;
    height: 280px;
    background-image: url("../images/triadPic_left.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 50px;
    left: 20px;
  }
  #triadSupport .triadArea:after {
    content: "";
    display: inline-block;
    width: 280px;
    height: 280px;
    background-image: url("../images/triadPic_right.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 50px;
    right: 20px;
  }
  #triadSupport .triadArea .triad_top {
    width: 300px;
    margin: 0 auto;
    padding: 50px 0 10px;
  }
  #triadSupport .triadArea .triad_top dl dt h4 {
    color: #0A3C42;
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  #triadSupport .triadArea .triad_top dl dt h5 {
    color: #0A3C42;
    background: #CCE4E8;
    margin: 0 0 10px;
    padding: 5px;
    border: solid 1px #0A3C42;
    display: inline-block;
  }
  #triadSupport .triadArea .triad_top dl dd .moreBtn a {
    background: #0A3C42;
    color: #fff;
    border: none;
  }
  #triadSupport .triadArea .triad_top dl dd .moreBtn a:hover {
    background-color: rgb(7.9868421053, 47.9210526316, 52.7131578947);
  }
  #triadSupport .triadArea .triad_top dl dd p {
    font-size: 16px;
    line-height: 1.5;
  }
  #triadSupport .triadArea .triad_flex {
    display: flex;
    justify-content: center;
    margin: 0 0 70px;
  }
  #triadSupport .triadArea .triad_flex dl {
    width: 300px;
    margin: 0 50px;
    padding: 45px 0 25px;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) {
    color: #5B3D50;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) h5 {
    border: solid 1px #5B3D50;
    background: #FBEDF6;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) .moreBtn a {
    background: #5B3D50;
    transition: background-color 0.3s;
    border: none;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) .moreBtn a:hover {
    background-color: rgb(81.8401315789, 54.8598684211, 71.9473684211);
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) {
    color: #55431A;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) h5 {
    border: solid 1px #55431A;
    background: #EEDDB8;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) .moreBtn a {
    background: #55431A;
    border: none;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) .moreBtn a:hover {
    background-color: rgb(73.2837837838, 57.7648648649, 22.4162162162);
  }
  #triadSupport .triadArea .triad_flex dl dt h4 {
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  #triadSupport .triadArea .triad_flex dl dt h5 {
    margin: 0 0 10px;
    padding: 5px;
    display: inline-block;
  }
  #triadSupport .triadArea .triad_flex dl dd .moreBtn a {
    color: #fff;
    display: inline-block;
    margin: 10px 0 0;
    padding: 6px 30px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  #triadSupport .triadArea .triad_flex dl dd .moreBtn a:hover {
    background: #FFF8F6;
  }
  #triadSupport .triadArea .triad_flex dl dd p {
    font-size: 16px;
  }
  #triadSupport .triadArea .infoBtn a {
    background: #1F2F53;
    color: #fff;
    margin: 0 0 50px;
  }
  #triadSupport .achievements {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0 0;
  }
  #triadSupport .achievements h3 {
    text-align: center;
    color: #1F2F53;
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 30px;
  }
  #triadSupport .achievements h3:before {
    content: "Achievements";
    text-align: center;
    font-size: 48px;
    font-style: normal;
    line-height: 30px;
    display: block;
    margin-bottom: 30px;
    font-weight: 600;
  }
  #triadSupport .achievements p {
    text-align: center;
    margin: 0 0 50px;
  }
  #triadSupport .achievements .splide {
    margin: 40px 0 0;
  }
  #triadSupport .achievements .splide__slide {
    margin-right: 50px;
    width: 293px !important;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 600;
  }
  #triadSupport .achievements .splide__slide span {
    font-size: 15px;
    font-weight: normal;
  }
  #triadSupport .achievements .splide__slide img {
    height: auto;
    width: 100%;
    margin: 0 0 15px;
  }
  #triadSupport .achievements .splide__toggle {
    margin: 30px 0 0;
  }
  #triadSupport .supportLetter {
    background: #fff;
    max-width: 1240px;
    width: 100%;
    margin: 50px auto 0;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    font-family: "Klee One", serif;
  }
  #triadSupport .supportLetter div {
    text-align: right;
    order: 1;
  }
  #triadSupport .supportLetter div h4 {
    font-size: 32px;
    text-align: left;
    margin: 0 0 20px;
    position: relative;
    line-height: 1.5;
  }
  #triadSupport .supportLetter div h4:after {
    content: "";
    display: inline-block;
    width: 101px;
    height: 75px;
    background-image: url("../images/letter_stamp.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 0;
    right: 0;
  }
  #triadSupport .supportLetter div p {
    text-align: left;
  }
  #triadSupport .supportLetter div p a {
    text-decoration: underline;
    font-weight: bold;
    display: block;
    margin: 10px 0 0;
  }
  #triadSupport .supportLetter div dl {
    text-align: left;
    display: inline-block;
    margin: 30px 40px 0 40px;
  }
  #triadSupport .supportLetter div dl dd {
    font-weight: 600;
  }
  #triadSupport .supportLetter div dl dd span {
    margin: 0 0 0 10px;
    font-size: 32px;
    font-weight: bold;
  }
  #triadSupport .supportLetter figure {
    order: 2;
    margin: 0 0 0 50px;
  }
  #triadSupport .infoBtn {
    text-align: center;
  }
  #triadSupport .infoBtn a {
    background: #1F2F53;
    color: #fff;
  }
}
/* -----------------------------------------------------------
（SP表示）実績紹介（トップページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #triadSupport {
    background: #F4F7FB;
    padding: 140px 0 30px;
    font-family: "Noto Sans JP";
    /*実績紹介*/
  }
  #triadSupport .title {
    color: #1F2F53;
    text-align: center;
    margin: 0 10px 20px;
    position: relative;
  }
  #triadSupport .title:before {
    content: "";
    display: inline-block;
    width: 130px;
    height: 103px;
    background-image: url("../images/grandeur.svg");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  #triadSupport .title h3 {
    color: #FFF;
    font-size: 17px;
    background: #1F2F53;
    display: inline-block;
    font-weight: 400;
    padding: 10px 20px;
    margin: 0 0 20px;
    line-height: 1.5;
  }
  #triadSupport .title p {
    color: #1F2F53;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
  }
  #triadSupport .triadArea {
    background: url("../images/sp/triad.png") top center no-repeat;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 0 40px;
    position: relative;
    text-align: center;
  }
  #triadSupport .triadArea .moreBtn a {
    font-size: 15px;
    padding: 0 10px;
  }
  #triadSupport .triadArea .triad_top {
    width: 300px;
    margin: 0 auto;
    padding: 30px 0;
  }
  #triadSupport .triadArea .triad_top dl dt img {
    width: 80px;
  }
  #triadSupport .triadArea .triad_top dl dt h4 {
    color: #0A3C42;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 15px;
  }
  #triadSupport .triadArea .triad_top dl dt h5 {
    color: #0A3C42;
    background: #CCE4E8;
    margin: 0 0 10px;
    padding: 5px;
    border: solid 1px #0A3C42;
    display: inline-block;
  }
  #triadSupport .triadArea .triad_top dl dd .moreBtn a {
    background: #0A3C42;
    color: #fff;
    display: inline-block;
    margin: 10px auto 0;
    padding: 6px 30px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: none;
  }
  #triadSupport .triadArea .triad_top dl dd .moreBtn a:hover {
    background: #FFF8F6;
  }
  #triadSupport .triadArea .triad_top dl dd p {
    font-size: 16px;
    line-height: 1.5;
  }
  #triadSupport .triadArea .triad_flex {
    display: flex;
    justify-content: center;
    padding: 0 0 30px;
  }
  #triadSupport .triadArea .triad_flex dl {
    width: 100%;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) {
    color: #5B3D50;
    padding: 80px 30px 0 10px;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) h5 {
    border: solid 1px #5B3D50;
    background: #FBEDF6;
    line-height: 1.3;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) .moreBtn {
    text-align: center;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(1) .moreBtn a {
    background: #5B3D50;
    border: none;
    margin: 10px auto 0;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) {
    color: #55431A;
    padding: 80px 10px 0 30px;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) h5 {
    border: solid 1px #55431A;
    background: #EEDDB8;
    line-height: 1.3;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) .moreBtn {
    text-align: center;
  }
  #triadSupport .triadArea .triad_flex dl:nth-of-type(2) .moreBtn a {
    background: #55431A;
    border: none;
    margin: 10px auto 0;
  }
  #triadSupport .triadArea .triad_flex dl dt img {
    width: 80px;
  }
  #triadSupport .triadArea .triad_flex dl dt h4 {
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 15px;
  }
  #triadSupport .triadArea .triad_flex dl dt h5 {
    margin: 0 0 10px;
    padding: 5px;
    display: inline-block;
  }
  #triadSupport .triadArea .triad_flex dl dd .moreBtn a {
    color: #fff;
  }
  #triadSupport .triadArea .triad_flex dl dd .moreBtn a:hover {
    background: #FFF8F6;
  }
  #triadSupport .triadArea .triad_flex dl dd p {
    font-size: 16px;
    text-align: left;
  }
  #triadSupport .triadArea .infoBtn a {
    background: #1F2F53;
    color: #fff;
  }
  #triadSupport .achievements {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }
  #triadSupport .achievements h3 {
    text-align: center;
    color: #1F2F53;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 20px;
  }
  #triadSupport .achievements h3:before {
    content: "Achievements";
    text-align: center;
    font-size: 36px;
    font-style: normal;
    line-height: 30px;
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
  }
  #triadSupport .achievements .splide {
    margin: 30px 0 0;
  }
  #triadSupport .achievements .splide__slide {
    margin: 0 20px 0 0;
    width: 170px !important;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 600;
  }
  #triadSupport .achievements .splide__slide span {
    font-size: 11px;
    font-weight: normal;
  }
  #triadSupport .achievements .splide__slide img {
    height: auto;
    width: 100%;
    margin: 0 0 15px;
  }
  #triadSupport .achievements .splide__toggle {
    margin: 30px 0 0;
  }
  #triadSupport .supportLetter {
    background: #fff;
    width: 94%;
    margin: 30px auto 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    font-family: "Klee One", serif;
  }
  #triadSupport .supportLetter div {
    text-align: right;
    order: 1;
    margin: 0 0 30px;
  }
  #triadSupport .supportLetter div h4 {
    font-size: 22px;
    text-align: left;
    position: relative;
    line-height: 1.5;
    margin: 0 0 10px;
  }
  #triadSupport .supportLetter div h4:after {
    content: "";
    display: inline-block;
    width: 101px;
    height: 75px;
    background-image: url("../images/letter_stamp.png");
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -40px;
    right: -10px;
  }
  #triadSupport .supportLetter div p {
    text-align: left;
    margin: 0 0 20px;
  }
  #triadSupport .supportLetter div p a {
    text-decoration: underline;
  }
  #triadSupport .supportLetter div dl {
    text-align: left;
    display: inline-block;
    margin: 20px 0 0;
  }
  #triadSupport .supportLetter div dl dd {
    font-weight: 600;
  }
  #triadSupport .supportLetter div dl dd span {
    margin: 0 0 30px 10px;
    font-size: 32px;
    font-weight: bold;
  }
  #triadSupport .supportLetter div dl dd .moreBtn {
    text-align: right;
  }
  #triadSupport .supportLetter div dl dd .moreBtn a {
    border: solid 2px #1F2F53;
    background: #FFF;
    color: #1F2F53;
    display: inline-block;
    margin: 15px 0 0;
    padding: 6px 30px;
    /* eachが使える */
    border-radius: 50px;
    font-weight: bold !important;
    letter-spacing: 0.1em;
    font-family: "Zen Maru Gothic";
  }
  #triadSupport .supportLetter figure {
    order: 2;
    margin: 0;
  }
  #triadSupport .supportLetter figure img {
    width: 100%;
    height: auto;
  }
  #triadSupport .infoBtn {
    text-align: center;
  }
  #triadSupport .infoBtn a {
    background: #1F2F53;
    color: #fff;
  }
}
/* -----------------------------------------------------------
（PC表示）footer（全ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  footer {
    font-family: "Noto Sans JP";
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 20px 170px;
    /*最下部固定ボタン*/
  }
  footer ul.summary {
    text-align: left;
  }
  footer ul.summary li:nth-of-type(1) {
    transform: translateX(-5px);
    margin: 0 0 20px;
    width: 392px;
    height: 51px;
  }
  footer ul.summary li:nth-of-type(1) img {
    width: 100%;
    height: auto;
  }
  footer ul.summary li:nth-of-type(2) {
    display: inline-block;
    margin: 0 0 30px;
  }
  footer ul.summary li:nth-of-type(2) h3 {
    font-weight: 600;
    border: solid 1px #444;
    padding: 7px 10px;
    font-size: 16px;
  }
  footer ul.summary li:nth-of-type(3) {
    font-size: 18px;
    margin: 0 0 30px;
  }
  footer ul.summary li:nth-of-type(3) a {
    font-weight: 500;
    font-size: 36px;
  }
  footer ul.footerBnr {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  footer ul.footerBnr li {
    width: calc((100% - 60px) / 3);
  }
  footer ul.footerBnr li a {
    width: 100%;
    height: auto;
  }
  footer ul.footerBnr li a:hover {
    opacity: 0.9;
  }
  footer ul.footerBnr li img {
    width: 100%;
    height: auto;
  }
  footer .copyright {
    text-align: center;
    padding: 80px 0 0;
  }
  footer .footerFix_sp {
    display: none !important;
  }
  footer .footerFix_pc {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: auto;
    left: 0;
    width: 780px;
    height: 100px;
    display: flex;
    /* eachが使える */
    border-radius: 10px;
    z-index: 2;
  }
  footer .footerFix_pc li {
    display: table;
  }
  footer .footerFix_pc li a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
  }
  footer .footerFix_pc li:nth-of-type(1) a {
    background: #e0a692;
    color: #fff;
    width: 190px;
    height: 100px;
    border-radius: 10px 0 0 0;
    font-size: 22px;
    letter-spacing: 0.05em;
  }
  footer .footerFix_pc li:nth-of-type(1) a:hover {
    background: #dd9880;
  }
  footer .footerFix_pc li:nth-of-type(1) a span {
    display: block;
    font-size: 18px;
    margin: 10px 0 0;
  }
  footer .footerFix_pc li:nth-of-type(2) a {
    width: 250px;
    height: 100px;
    color: #fff;
    background: #cbbfba;
    font-size: 32px;
    font-weight: 600;
    padding: 7px 0 0;
    position: relative;
    line-height: 1.3;
  }
  footer .footerFix_pc li:nth-of-type(2) a span {
    font-size: 16px;
    display: block;
  }
  footer .footerFix_pc li:nth-of-type(2) a:hover {
    background-color: #d3c9c5;
  }
  footer .footerFix_pc li:before {
    width: 27px;
    height: 27px;
    background-image: url("../images/footerFix_icon_clock.png");
    top: 22px;
  }
  footer .footerFix_pc li:nth-of-type(3) a {
    width: 250px;
    height: 100px;
    position: relative;
    padding: 2px 0 0 45px;
    background: #fbf5ef;
    color: #d18e76;
    font-weight: 500;
  }
  footer .footerFix_pc li:nth-of-type(3) a:before {
    content: "";
    display: inline-block;
    width: 86px;
    height: 91px;
    background-image: url("../images/footerFix_interview.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
  footer .footerFix_pc li:nth-of-type(3) a span {
    font-size: 22px;
    display: block;
    z-index: 2;
    position: relative;
  }
  footer .footerFix_pc li:nth-of-type(3) a:hover {
    background: #faefe6;
  }
  footer .footerFix_pc li:nth-of-type(4) a {
    width: 100px;
    height: 100px;
    background: #E2A089;
    font-size: 16px;
    color: #fff;
    padding: 45px 0 0;
    border-radius: 0 10px 0 0;
    text-align: center;
    position: relative;
    font-weight: 500;
  }
  footer .footerFix_pc li:nth-of-type(4) a:before {
    content: "";
    display: block;
    width: 28px;
    height: 34px;
    background-image: url("../images/icon_footerFix_arrow.png");
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    margin: auto;
  }
  footer .footerFix_pc li:nth-of-type(4) a:hover {
    background: #dd9880;
  }
}
/* -----------------------------------------------------------
（SP表示）footer（全ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  footer {
    font-family: "Noto Sans JP";
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px 100px;
    /*最下部固定ボタン*/
  }
  footer ul.summary {
    text-align: center;
  }
  footer ul.summary li:nth-of-type(1) {
    transform: translateX(-5px);
    margin: 0 auto 5px;
    width: 300px;
    height: 51px;
  }
  footer ul.summary li:nth-of-type(1) img {
    width: 100%;
    height: auto;
  }
  footer ul.summary li:nth-of-type(2) {
    display: inline-block;
    margin: 0 auto 15px;
  }
  footer ul.summary li:nth-of-type(2) h3 {
    font-weight: 600;
    border: solid 1px #444;
    padding: 7px 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  footer ul.summary li:nth-of-type(3) {
    font-size: 18px;
    margin: 10px auto 30px;
    text-align: center;
  }
  footer ul.summary li:nth-of-type(3) a {
    font-weight: 500;
    font-size: 36px;
  }
  footer ul.footerBnr {
    width: 100%;
    text-align: center;
  }
  footer ul.footerBnr li {
    margin: 0 auto;
  }
  footer ul.footerBnr li a {
    width: 100%;
    height: auto;
    margin: 0 0 10px;
    display: block;
  }
  footer ul.footerBnr li a:hover {
    opacity: 0.9;
  }
  footer ul.footerBnr li img {
    width: 100%;
    height: auto;
  }
  footer .copyright {
    text-align: center;
    padding: 40px 0 20px;
  }
  footer .footerFix_pc {
    display: none !important;
  }
  footer .footerFix_sp {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    display: flex;
    z-index: 2;
  }
  footer .footerFix_sp li {
    text-align: center;
  }
  footer .footerFix_sp li a {
    display: block;
    font-weight: bold;
    font-size: clamp(10px, 4.5vw, 15px);
    width: 100%;
    height: 70px;
    background: #e0a692;
    color: #E2A089;
    position: relative;
    box-sizing: border-box;
  }
  footer .footerFix_sp li:nth-of-type(1) {
    text-align: center;
    width: 23%;
  }
  footer .footerFix_sp li:nth-of-type(1) a {
    background: #e0a692;
    color: #fff;
    width: 100%;
    padding: 15px 0 0;
    line-height: 1.3;
    letter-spacing: -0.1em;
  }
  footer .footerFix_sp li:nth-of-type(1) a:hover {
    background: rgb(221.7414285714, 159.5157142857, 138.0585714286);
  }
  footer .footerFix_sp li:nth-of-type(1) a span {
    display: block;
    font-size: 13px;
    margin: 3px 0 0;
    line-height: 1;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  footer .footerFix_sp li:nth-of-type(1) a span {
    font-size: 13px;
  }
}
@media screen and (max-width: 999px) {
  footer .footerFix_sp li:nth-of-type(2) {
    width: 30%;
  }
  footer .footerFix_sp li:nth-of-type(2) a {
    color: #fff;
    padding: 15px 0 0;
    line-height: 1.3;
    background: #cbbfba;
  }
  footer .footerFix_sp li:nth-of-type(2) a:hover {
    background: rgb(198.6165289256, 185.6049586777, 180.1834710744);
  }
  footer .footerFix_sp li:nth-of-type(2) a:before {
    width: 28px;
    height: 28px;
    background-image: url("../images/footerFix_icon_wait.png");
    background-repeat: no-repeat;
    bottom: 7px;
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
  footer .footerFix_sp li:nth-of-type(3) {
    width: 47%;
  }
  footer .footerFix_sp li:nth-of-type(3) a {
    line-height: 1.3;
    background: #fbf5ef;
    color: #d18e76;
    display: block;
    padding: 15px 0 0 35px;
    text-align: center;
  }
  footer .footerFix_sp li:nth-of-type(3) a span {
    display: block;
    z-index: 2;
    position: relative;
  }
  footer .footerFix_sp li:nth-of-type(3) a:before {
    content: "";
    display: inline-block;
    width: 65px;
    height: 69px;
    background-image: url("../images/footerFix_interview.png");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
  footer .footerFix_sp li:nth-of-type(3) a:hover {
    background: #FFFCF8;
  }
  footer #pageTopBtn a {
    background: #E2A089;
    text-align: center;
    padding: 10px 0 10px;
    width: 40px;
    height: 40px;
    color: #b38b7e;
    font-size: 16px;
    line-height: 1;
    font-size: 11px;
    position: fixed;
    right: 5px;
    bottom: 80px;
    border-radius: 50%;
    font-weight: bold;
    z-index: 2;
  }
}
/* -----------------------------------------------------------
   -----------------------------------------------------------
●●●●●●●● 下層ページ ●●●●●●●●
-----------------------------------------------------------
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）ページタイトル（下層ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .pageTitle {
    max-width: calc(100% - 320px);
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    height: 500px;
    /* eachが使える */
    border-radius: 30px;
    background-position: top center;
    background-size: auto 100%;
  }
}
@media print and (min-width: 1000px) and (max-width: 1250px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1250px) {
  .pageTitle {
    max-width: calc(100% - 260px);
  }
}
@media print, screen and (min-width: 1000px) {
  .pageTitle h2 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: #fff;
    color: #E2A089;
    padding: 0 30px 25px 25px;
    line-height: 1.3;
    font-size: 40px;
    font-weight: 500;
    border-radius: 0 0 15px 0;
    letter-spacing: 0.05em;
  }
  .doctor .pageTitle h2 span.clinicName {
    font-size: 20px;
    margin: 0 0 5px;
  }
  .doctor .pageTitle h2 span.jobTitle {
    font-size: 24px;
    display: inline-block;
  }
}
@media print and (min-width: 1000px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1400px) {
  .pageTitle h2 {
    line-height: 35px;
    font-size: 30px;
    font-weight: 600;
    padding: 0 20px 20px 0;
  }
}
@media print, screen and (min-width: 1000px) {
  .pageTitle h2 span span {
    display: block;
    font-size: 26px;
  }
  .pageTitle .copy {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #fff;
    color: #444444;
    padding: 15px 0 0 20px;
    line-height: 1.5;
    font-size: 20px;
    font-weight: 600;
    border-radius: 15px 0 0 0;
    letter-spacing: 0.1em;
  }
}
@media print and (min-width: 1000px) and (max-width: 1350px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1350px) {
  .pageTitle .copy {
    font-size: 18px;
    padding: 20px 0 0 20px;
  }
}
@media print, screen and (min-width: 1000px) {
  .doctor .pageTitle .copy {
    font-size: 28px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1350px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1350px) {
  .doctor .pageTitle .copy {
    font-size: 22px;
  }
}
@media print, screen and (min-width: 1000px) {
  .pageTitle .copy span {
    color: #E2A089;
    font-weight: bold;
  }
  .pageTitle .englishCopy {
    position: absolute;
    left: -20px;
    bottom: -40px;
    z-index: 2;
    font-size: 90px;
    color: #E2A089;
    line-height: 1;
    transform: rotate(-5deg);
    font-family: "Pinyon Script", serif;
  }
  #session .pageTitle .englishCopy {
    line-height: 0.6;
  }
  #service .pageTitle .englishCopy {
    line-height: 0.7;
  }
  #contact .pageTitle .englishCopy {
    line-height: 0.8;
  }
}
@media print and (min-width: 1401px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1401px) and (max-width: 1400px) {
  .pageTitle .englishCopy {
    font-size: 80px;
  }
}
@media print and (min-width: 1101px) and (max-width: 1400px), screen and (min-width: 1000px) and (min-width: 1101px) and (max-width: 1400px) {
  .pageTitle .englishCopy {
    font-size: 70px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1100px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1100px) {
  .pageTitle .englishCopy {
    font-size: 60px;
  }
}
@media print, screen and (min-width: 1000px) {
  #base .pageTitle {
    background-image: url("../images/pageTitle_base.jpg");
  }
  #session .pageTitle {
    background-image: url("../images/pageTitle_session.jpg");
  }
  #interView .pageTitle {
    background-image: url("../images/pageTitle_interView.jpg");
  }
  #clinicSpace .pageTitle {
    background-image: url("../images/pageTitle_clinicSpace.jpg");
  }
  #caseStudies .pageTitle {
    background-image: url("../images/pageTitle_caseStudies.jpg");
  }
  #interview .pageTitle {
    background-image: url("../images/pageTitle_interview.jpg");
  }
  #ohnoDoctor .pageTitle {
    background-image: url("../images/pageTitle_ohnoDoctor.jpg");
  }
  #wanajoDoctor .pageTitle {
    background-image: url("../images/pageTitle_wanajoDoctor.jpg");
  }
  #kumagaiDoctor .pageTitle {
    background-image: url("../images/pageTitle_kumagaiDoctor.jpg");
  }
  #faq .pageTitle {
    background-image: url("../images/pageTitle_faq.jpg");
  }
  #service .pageTitle {
    background-image: url("../images/pageTitle_service.jpg");
  }
  #startUpSupport .pageTitle {
    background-image: url("../images/pageTitle_startUpSupport.jpg");
  }
  #cfoService .pageTitle {
    background-image: url("../images/pageTitle_cfoService.jpg");
  }
  #contact .pageTitle {
    background-image: url("../images/pageTitle_contact.jpg");
  }
  #thanks .pageTitle {
    background-image: url("../images/pageTitle_contact.jpg");
  }
}
/* -----------------------------------------------------------
（SP表示）ページタイトル（下層ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .pageTitle {
    width: 100%;
    margin: 0 auto 10px;
    padding: 0;
    position: relative;
    height: 220px;
    background-size: auto 100%;
    /* eachが使える */
    border-radius: 15px;
  }
  .pageTitle h2 {
    position: absolute;
    left: -2px;
    top: 0;
    background: #fff;
    z-index: 2;
    color: #E2A089;
    padding: 0 10px 10px 0;
    line-height: 1.3;
    font-size: 20px;
    font-weight: 600;
    border-radius: 0 0 10px 0;
  }
  .doctor .pageTitle h2 {
    font-size: 18px;
  }
  .doctor .pageTitle h2 .jobTitle {
    font-size: 12px;
  }
  .doctor .pageTitle h2 .clinicName {
    display: block;
    font-size: 14px;
  }
  .pageTitle .englishCopy {
    position: absolute;
    left: -5px;
    bottom: -10px;
    z-index: 2;
    font-size: 44px;
    color: #E2A089;
    line-height: 0.8;
    transform: rotate(-5deg);
    font-family: "Pinyon Script", serif;
  }
  body.doctor .pageTitle .englishCopy {
    font-size: 32px;
  }
  #base .pageTitle {
    background-image: url("../images/pageTitle_base.jpg");
  }
  #session .pageTitle {
    background-image: url("../images/pageTitle_session.jpg");
  }
  #interView .pageTitle {
    background-image: url("../images/pageTitle_interView.jpg");
  }
  #clinicSpace .pageTitle {
    background-image: url("../images/pageTitle_clinicSpace.jpg");
  }
  #caseStudies .pageTitle {
    background-image: url("../images/pageTitle_caseStudies.jpg");
  }
  #interview .pageTitle {
    background-image: url("../images/pageTitle_interview.jpg");
  }
  #ohnoDoctor .pageTitle {
    background-image: url("../images/pageTitle_ohnoDoctor.jpg");
    background-position: top right -80px;
  }
  #wanajoDoctor .pageTitle {
    background-image: url("../images/pageTitle_wanajoDoctor.jpg");
    background-position: top right -70px;
  }
  #kumagaiDoctor .pageTitle {
    background-image: url("../images/pageTitle_kumagaiDoctor.jpg");
    background-position: top right -80px;
  }
  #faq .pageTitle {
    background-image: url("../images/pageTitle_faq.jpg");
  }
  #service .pageTitle {
    background-image: url("../images/pageTitle_service.jpg");
    background-position: top center;
  }
  #startUpSupport .pageTitle {
    background-image: url("../images/pageTitle_startUpSupport.jpg");
  }
  #cfoService .pageTitle {
    background-image: url("../images/pageTitle_cfoService.jpg");
  }
  #contact .pageTitle {
    background-image: url("../images/pageTitle_contact.jpg");
  }
  #thanks .pageTitle {
    background-image: url("../images/pageTitle_contact.jpg");
  }
  .pageTitle p.copy {
    position: absolute;
    bottom: -115px;
    left: 0;
    right: 0;
    background: #fff;
    margin: auto;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    padding: 8px 0 0 10px;
    border-radius: 10px 0 0 0;
  }
  body.doctor .pageTitle p.copy {
    bottom: 0;
    right: 0;
    left: auto;
  }
}
/* -----------------------------------------------------------
（PC表示）パンくずリスト（下層ページ共通）
----------------------------------------------------------- */
@media print, screen and (min-width: 961px) {
  .breadcrumbArea {
    width: 100%;
    margin: 100px auto 0;
  }
  .breadcrumbArea .breadcrumb {
    border: dashed 1px #444444;
    padding: 10px 20px;
    list-style: none;
  }
  .breadcrumbArea .breadcrumb li {
    display: inline; /*横に並ぶように*/
    list-style: none;
    font-size: 12px;
  }
  .breadcrumbArea .breadcrumb li:after {
    /* >を表示*/
    content: ">";
    padding: 0 0.5em;
    color: #444444;
  }
  .breadcrumbArea .breadcrumb li:last-child:after {
    content: "";
  }
  .breadcrumbArea .breadcrumb li a {
    text-decoration: none;
    color: #444444;
    font-weight: bold;
    font-family: "Noto Sans JP";
  }
  .breadcrumbArea .breadcrumb li a:hover {
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
（SP表示）パンくずリスト（下層ページ共通）
----------------------------------------------------------- */
@media screen and (max-width: 960px) {
  .breadcrumbArea {
    border: dashed 1px #444444;
    margin: 0;
  }
  .breadcrumbArea .breadcrumb {
    margin: 0;
    padding: 5px 10px;
    list-style: none;
  }
  .breadcrumbArea .breadcrumb li {
    display: inline; /*横に並ぶように*/
    list-style: none;
    font-size: 13px;
  }
  .breadcrumbArea .breadcrumb li:after {
    /* >を表示*/
    content: ">";
    padding: 0 0.2em;
    color: #999;
  }
  .breadcrumbArea .breadcrumb li:last-child:after {
    content: "";
  }
  .breadcrumbArea .breadcrumb li a {
    text-decoration: none;
    color: #444444;
    font-family: "Noto Sans JP";
  }
}
/* -----------------------------------------------------------
（PC表示）ボックス（下層ページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .box {
    margin: 0 auto 80px;
    /*料金表*/
  }
  .box:last-of-type {
    margin: 0 auto 0;
  }
  .box a {
    text-decoration: underline;
    color: #E2A089;
    font-weight: 600;
  }
  .box p {
    font-size: 17px;
    margin: 0 0 20px;
  }
  .box p.clearfix {
    margin: 0;
  }
  .box h3 {
    font-size: 44px;
    color: #E2A089;
    margin: 0 0 40px;
    text-indent: 0.1em;
    line-height: 1.3;
    text-align: center;
    font-weight: 400;
  }
  .box h3 span {
    font-size: 24px;
    display: block;
    margin: 10px 0 0;
  }
  .box h3 span.borderSpan {
    display: inline-block;
    background: #E2A089;
    border: double 3px #fff;
    color: #fff;
    margin: 0 0 15px;
    padding: 7px 15px;
    font-weight: 600;
    font-size: 18px;
  }
  .box h4 {
    font-size: 30px;
    margin: 0 0 20px;
    color: #E2A089;
    font-weight: 500;
    line-height: 1.5;
  }
  .box h4.h4_comment {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 430px;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    background-color: #E2A089;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
  }
  .box h4.h4_comment:before {
    position: absolute;
    bottom: -15px;
    left: 50px;
    width: 30px;
    height: 15px;
    background-color: #E2A089;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
  }
  .box h5 {
    font-size: 20px;
    margin: 30px 0;
    color: #E2A089;
  }
  .box .h4_box {
    border: double 3px #E2A089;
    margin: 0 0 40px;
    padding: 20px 30px 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box figure {
    max-width: 400px;
    width: 100%;
  }
  .box figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .box figure.w100 {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .box figure.w100 img {
    width: 100%;
    height: auto;
  }
  .box figure.right {
    float: right;
    margin: 0 0 40px 40px;
  }
  .box figure.right.mb0 {
    margin: 0 0 0 40px;
  }
  .box figure.left {
    float: left;
    margin: 0 40px 40px 0;
  }
  .box .box_inner {
    margin: 0 0 30px;
  }
  .box .dotFrame {
    border: dashed 1px #E2A089;
    margin: 0 0 30px;
    padding: 40px 40px 20px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .flow dl {
    margin: 0 0 70px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .box .flow dl dt {
    margin: 0 40px 0 0;
    width: 180px;
    height: auto;
  }
  .box .flow dl dt img {
    width: 100%;
    height: auto;
  }
  .box .flow dl:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f063";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #E2A089;
    left: 0;
    right: 0;
    bottom: -50px;
    font-size: 30px;
    text-align: center;
    margin: auto;
  }
  .box .flow dl:last-of-type:after {
    content: none;
  }
  .box .flow dl dd {
    width: calc(100% - 220px);
    border: dashed 1px #E2A089;
    padding: 20px 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .flow dl dd h4 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 400;
  }
  .box .flow dl dd p {
    margin: 0 0 10px;
  }
  .box .flow dl dd p:last-of-type {
    margin: 0;
  }
  .box .flow dl dd h5 {
    margin: 30px 0 10px;
    font-size: 20px;
    font-weight: 400;
  }
  .box .btnFlex {
    display: flex;
    margin: 50px 0 0;
  }
  .box .btnFlex p {
    margin-right: 20px;
  }
  .box .doctor_comment {
    justify-content: center;
    align-items: start;
    gap: 0 30px;
    margin: 0;
    display: flex;
    align-items: center;
  }
}
@media print and (min-width: 1000px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1150px) {
  .box .doctor_comment {
    gap: 0 5px;
  }
}
@media print, screen and (min-width: 1000px) {
  .box .doctor_comment dt img {
    padding: 0;
    border-radius: 50%;
  }
}
@media print and (min-width: 1041px) and (max-width: 1150px), screen and (min-width: 1000px) and (min-width: 1041px) and (max-width: 1150px) {
  .box .doctor_comment dt img {
    width: 150px;
  }
}
@media print and (min-width: 1000px) and (max-width: 1040px), screen and (min-width: 1000px) and (min-width: 1000px) and (max-width: 1040px) {
  .box .doctor_comment dt img {
    width: 130px;
  }
}
@media print, screen and (min-width: 1000px) {
  .box .doctor_comment dd {
    background: #FFFCF8;
    position: relative;
    margin: 3px 0 0;
    padding: 30px;
    border-radius: 5px;
    background-color: #fbf6ec;
    color: #333333;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .doctor_comment dd p {
    margin: 0;
  }
  .box .doctor_comment dd:before {
    position: absolute;
    left: -13px;
    width: 15px;
    height: 30px;
    background-color: #fbf6ec;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: "";
  }
  .box .border_dashed_box {
    border: dashed 1px #E2A089;
    margin: 20px 0 30px;
    padding: 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .border_dashed_box h4, .box .border_dashed_box h5 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 500;
  }
  .box .border_dashed_box p {
    margin: 0;
  }
  .box .border_dashed_box ul {
    margin: 0;
  }
  .box .border_dashed_box ul li {
    font-size: 17px;
  }
  .box .priceList {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
  }
  .box .priceList h4 {
    text-align: center;
    margin: 0 0 20px;
  }
  .box .priceList table {
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
  }
  .box .priceList table th, .box .priceList table td {
    border: solid 1px #879d79;
    padding: 15px;
    vertical-align: middle;
    font-size: 17px;
  }
  .box .priceList table th {
    background: #5C744C;
    color: #fff;
    font-weight: 500;
    width: 40%;
  }
  .box .priceList table td {
    line-height: 1.3;
    width: 60%;
  }
  .box .priceList table td span {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
  }
  .box .priceList table td.td2line {
    width: 30%;
  }
}
/* -----------------------------------------------------------
（SP表示）ボックス（下層ページ）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .box {
    margin: 0 0 50px;
    text-align: center;
    /*料金表*/
  }
  .box h3 {
    font-size: 22px;
    color: #E2A089;
    margin: 0 0 20px;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    line-height: 1.3;
    text-align: center;
    font-weight: 600;
  }
  .box h3 span {
    font-size: 15px;
    letter-spacing: 0.8px;
  }
  .box h4 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #E2A089;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
  }
  .box h4.h4_comment {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 430px;
    margin-bottom: 30px;
    padding: 10px;
    border-radius: 5px;
    background-color: #E2A089;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    font-size: min(5vw, 18px);
  }
  .box h4.h4_comment:before {
    position: absolute;
    bottom: -14px;
    left: 50px;
    width: 30px;
    height: 15px;
    background-color: #E2A089;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
  }
  .box h5 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #E2A089;
    text-align: left;
    line-height: 1.5;
  }
  .box a {
    text-decoration: underline;
    color: #E2A089;
    font-weight: 600;
  }
  .box p {
    font-size: 17px;
    margin: 0 0 20px;
    text-align: left;
  }
  .box .h4_box {
    border: double 3px #E2A089;
    margin: 0 0 40px;
    padding: 20px 20px 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .btnFlex p {
    text-align: center;
  }
  .box .btnFlex p a {
    width: 100%;
  }
  .box .dotFrame {
    border: dashed 1px #E2A089;
    margin: 0 0 30px;
    padding: 20px 20px 10px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box figure {
    width: 100%;
    margin: 0 auto 20px;
  }
  .box figure img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .box .box_inner {
    margin: 0 0 30px;
  }
  .box .box_inner h4 {
    font-size: 20px;
    margin: 0 0 10px;
    line-height: 150%;
  }
  .box .box_inner h4:nth-of-type(n+2) {
    margin-top: 20px;
  }
  .box .box_inner h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .box .flow dl {
    margin: 0 0 70px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .box .flow dl dt {
    margin: 0 auto;
    width: 110px;
    height: auto;
    position: absolute;
    top: -60px;
    right: 10px;
    z-index: 1;
  }
  .box .flow dl dt img {
    width: 100%;
    height: auto;
  }
  .box .flow dl:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: "\f063";
    line-height: 1;
    margin: 0 0 0 10px;
    font-weight: bold;
    color: #E2A089;
    left: 40px;
    bottom: -55px;
    font-size: 40px;
    text-align: center;
    margin: auto;
  }
  .box .flow dl:last-of-type:after {
    content: none;
  }
  .box .flow dl dd {
    width: 100%;
    border: dashed 1px #E2A089;
    padding: 60px 20px 40px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .flow dl dd h4 {
    margin: 0 0 10px;
    border: none;
  }
  .box .flow dl dd p {
    margin: 0 0 10px;
  }
  .box .flow dl dd p:last-of-type {
    margin: 0;
  }
  .box .flow dl dd h5 {
    margin: 30px 0 10px;
    font-size: 20px;
    font-weight: 400;
  }
  .box .doctor_comment {
    justify-content: center;
    align-items: start;
    gap: 0 30px;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 999px) and (min-width: 1000px) and (max-width: 1150px) {
  .box .doctor_comment {
    gap: 0 5px;
  }
}
@media screen and (max-width: 999px) {
  .box .doctor_comment dt {
    order: 2;
    text-align: center;
    width: 100%;
  }
  .box .doctor_comment dt img {
    margin: 20px auto 0;
    padding: 0;
    border-radius: 50%;
  }
}
@media screen and (max-width: 999px) and (min-width: 1041px) and (max-width: 1150px) {
  .box .doctor_comment dt img {
    width: 150px;
  }
}
@media screen and (max-width: 999px) and (min-width: 1000px) and (max-width: 1040px) {
  .box .doctor_comment dt img {
    width: 130px;
  }
}
@media screen and (max-width: 999px) {
  .box .doctor_comment dd {
    order: 1;
    background: #FFFCF8;
    position: relative;
    margin: 3px 0 0;
    padding: 20px;
    border-radius: 5px;
    background-color: #fbf6ec;
    color: #333333;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .doctor_comment dd p {
    margin: 0;
  }
  .box .doctor_comment dd:before {
    position: absolute;
    bottom: -15px;
    left: 80px;
    width: 30px;
    height: 30px;
    background-color: #fbf6ec;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    content: "";
  }
  .box .border_dashed_box {
    border: dashed 1px #E2A089;
    margin: 0 0 30px;
    padding: 20px 10px;
    /* eachが使える */
    border-radius: 10px;
  }
  .box .border_dashed_box ul {
    margin: 0;
  }
  .box .border_dashed_box li {
    text-align: left;
  }
  .box .priceList {
    margin: 0 auto;
    width: 100%;
  }
  .box .priceList h4 {
    text-align: center;
    margin: 0 0 20px;
  }
  .box .priceList table {
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
  }
  .box .priceList table th, .box .priceList table td {
    border: solid 1px #708661;
    padding: 10px 5px;
    vertical-align: middle;
    font-size: 16px;
    line-height: 1.5;
  }
  .box .priceList table th {
    width: 40%;
    background: #5C744C;
    color: #fff;
    font-weight: 500;
  }
  .box .priceList table td {
    width: 60%;
  }
  .box .priceList table td.td2line {
    width: 30%;
  }
  .box .priceList table td span {
    display: inline-block;
    font-size: 17px;
    line-height: 1;
  }
  .box .priceList table td .atena {
    font-size: 15px;
  }
}
@media screen and (max-width: 999px) and (max-width: 374px) {
  .box .priceList table td .atena {
    font-size: 13px;
  }
}
/* -----------------------------------------------------------
（PC表示）アンカーリンクボタン
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .anchorLink {
    margin: 0 0 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .anchorLink li {
    margin: 0 0 20px;
  }
  .anchorLink li a {
    display: inline-block;
    color: #E2A089;
    margin: 0 30px 0 0;
    padding: 7px 5px;
    border-bottom: solid 1px #E2A089;
    position: relative;
    font-weight: 500;
  }
  .anchorLink li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    line-height: 1;
    margin: 0 0 0 10px;
    display: inline-block;
    font-weight: bold;
  }
  .anchorLink li a:hover:after {
    transform: rotate(90deg);
    transition: all 0.3s ease 0s;
  }
}
/* -----------------------------------------------------------
（SP表示）アンカーリンクボタン
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .anchorLink {
    position: relative;
    margin: 0 0 30px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .anchorLink li {
    list-style: none;
    font-size: 15px;
    margin: 10px 10px 0 0;
    line-height: 1.5;
  }
  .anchorLink li a {
    display: inline-block;
    color: #E2A089;
    margin: 0 0 0 0;
    padding: 5px 0;
    border-bottom: solid 1px #E2A089;
    position: relative;
    font-weight: bold;
  }
  .anchorLink li a:after {
    font-family: "Font Awesome 5 Free";
    content: "\f063";
    line-height: 1;
    margin: 0 0 0 10px;
  }
}
/* -----------------------------------------------------------
（PC表示）グランデュールのサービス紹介（grandeur.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #service .box_inner h4 {
    text-align: center;
    font-size: 36px;
    margin: 0 0 40px;
    color: #444444;
    font-weight: 600;
  }
  #service .box_inner h4 span {
    display: block;
    font-size: 24px;
  }
}
/* -----------------------------------------------------------
（SP表示）グランデュールのサービス紹介（grandeur.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #service .box_inner h4 {
    text-align: center;
    font-size: 20px;
    margin: 0 0 20px;
    color: #444444;
    font-weight: 600;
  }
  #service .box_inner h4 span {
    display: block;
    font-size: 16px;
  }
}
/* -----------------------------------------------------------
（PC表示）グランデュールスタートアップサポート（startUpSupport.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .triadTopic {
    border: double 4px #f3d7cd;
    background: #fffefd;
    /* eachが使える */
    border-radius: 10px;
    padding: 30px 30px 30px 320px;
    position: relative;
    margin: 70px 0 50px;
  }
  #session .triadTopic {
    padding: 30px 30px 30px 360px;
  }
  #startUpSupport .triadTopic {
    padding: 30px 30px 30px 360px;
  }
  #startUpSupport .triadTopic {
    padding: 30px 30px 30px 360px;
  }
  .triadTopic figure {
    position: absolute;
    height: auto;
  }
  #session .triadTopic figure {
    width: 300px;
    top: -30px;
    left: 30px;
  }
  #startUpSupport .triadTopic figure {
    width: 280px;
    top: 20px;
    left: 10px;
  }
  #startUpSupport .triadTopic figure {
    width: 320px;
  }
  .triadTopic figure img {
    width: 100%;
    height: auto;
  }
}
/* -----------------------------------------------------------
（SP表示）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）クリニック開業セッション（session.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #session .box:nth-child(2) {
    text-align: center;
  }
  #session .box p {
    text-align: left;
  }
  #session .box #anchor_02 {
    text-align: center;
    margin: 0 auto;
  }
  #session .box h4.flow_h4 {
    text-align: center;
    font-size: 40px;
    display: inline-block;
    border-bottom: solid 2px #E2A089;
    margin: 0 auto 40px;
  }
  #session .box .sessionFlow {
    display: flex;
    justify-content: center;
    padding: 0px;
    margin: 0 0 50px;
    font-size: 1.5vw;
    list-style: none;
  }
  #session .box .sessionFlow > li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 1em 3em 1em 2em;
    margin: 0px;
    width: 10em;
    height: 10em;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    color: #E2A089;
    font-size: 20px;
    font-weight: bold;
  }
  #session .box .sessionFlow > li span {
    font-family: "Noto Sans JP";
    margin-right: 5px;
  }
  #session .box .sessionFlow > li::before,
  #session .box .sessionFlow > li::after {
    position: absolute;
    content: "";
  }
  #session .box .sessionFlow > li::before {
    top: 50%;
    right: -1.5em;
    z-index: -1;
    transform: translateY(-50%) scaleX(0.5) rotate(45deg);
    width: 12em;
    height: 12em;
    border: 0.3em solid #E2A089;
    border-left: none;
    border-bottom: none;
  }
  #session .box .sessionFlow > li::after {
    top: 0px;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    width: 7em;
    border: 0.2em solid #E2A089;
    border-right: none;
  }
}
/* -----------------------------------------------------------
（SP表示）クリニック開業セッション（session.html）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）スタートアップサポート（startUpSupport.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #startUpSupport .box dl.titleH4 {
    text-align: center;
    margin: 80px 0 0;
  }
  #startUpSupport .box dl.titleH4 p {
    font-size: 24px;
  }
  #startUpSupport .box dl.titleH4 h4 {
    font-size: 40px;
    line-height: 1.3;
  }
  #startUpSupport .box .startUpSupportFlex {
    display: flex;
    max-width: 1000px;
    width: 100%;
    justify-content: space-between;
    margin: 0 auto 50px;
  }
  #startUpSupport .box .startUpSupportFlex li {
    padding: 0;
    text-align: center;
    width: calc((100% - 60px) / 3);
    font-size: 30px;
  }
  #startUpSupport .box .startUpSupportFlex li img {
    width: 100%;
    height: auto;
    margin: 10px 0 0;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div {
    width: calc((100% - 40px) / 2);
    border: solid 5px #eee;
    /* eachが使える */
    border-radius: 10px;
    margin: 20px 0 50px;
    padding: 30px;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div h5 {
    font-size: 36px;
    margin: 0 0 20px;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div h6 {
    font-size: 22px;
    line-height: 1.5;
    margin: 0 0 15px;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div ul {
    padding-left: 25px;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div ul li {
    list-style: circle;
    margin: 0 0 10px;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div:nth-of-type(1) {
    border: solid 5px orange;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div:nth-of-type(1) h5 {
    color: orange;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div:nth-of-type(2) {
    border: solid 5px #868686;
  }
  #startUpSupport .box .startUpSupportFlex_pAndN div:nth-of-type(2) h5 {
    color: #868686;
  }
  #startUpSupport .box .startUpSupportThree {
    display: flex;
    justify-content: space-between;
  }
  #startUpSupport .box .startUpSupportThree .startUpSupportThreeBox {
    width: calc((100% - 80px) / 3);
  }
  #startUpSupport .box .startUpSupportThree .startUpSupportThreeBox dl.titleH4 {
    margin: 0;
    text-align: left;
  }
  #startUpSupport .box .startUpSupportThree .startUpSupportThreeBox dl.titleH4 dt {
    height: 120px;
  }
  #startUpSupport .box .startUpSupportThree .startUpSupportThreeBox dl.titleH4 p {
    font-size: 18px;
    margin: 0 0 10px;
    line-height: 1.5;
  }
  #startUpSupport .box .startUpSupportThree .startUpSupportThreeBox dl.titleH4 h4 {
    font-size: 32px;
    margin: 0 0 10px;
  }
  #startUpSupport .box .startUpSupportThree .startUpSupportThreeBox .exampleBox {
    border: solid 3px #eee;
    padding: 0 20px 20px;
  }
  #startUpSupport .box .startUpSupportThree .startUpSupportThreeBox .exampleBox dt {
    font-weight: bold;
    margin: 20px 0 10px;
    padding: 5px 20px 5px 25px;
    /* eachが使える */
    border-radius: 100px;
    display: inline-block;
    background: #444444;
    color: #fff;
    letter-spacing: 0.5em;
  }
}
/* -----------------------------------------------------------
（SP表示）スタートアップサポート（startUpSupport.html）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）サービス紹介共通
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .bottomBtn {
    text-align: center;
    margin: 100px auto 0;
  }
  .bottomBtn dt p {
    text-align: center !important;
  }
  .bottomBtn dd .infoBtn {
    text-align: center !important;
    margin: 20px 0 0;
  }
  .bottomBtn dd .infoBtn a {
    color: #fff;
    text-decoration: none;
    margin: 0;
  }
}
/* -----------------------------------------------------------
（SP表示）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）インタビュー先生個別ページ
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  .doctor .clinicInformtion {
    border: double 3px #e2cdcd;
    background: #fcfcfc;
    padding: 40px 50px 25px;
    /* eachが使える */
    border-radius: 10px;
    font-family: "Noto Sans JP", sans-serif;
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .doctor .clinicInformtion figure {
    width: 300px;
  }
  .doctor .clinicInformtion figure img {
    width: 100%;
  }
  .doctor .clinicInformtion .clinicInformtion_txt {
    width: calc(100% - 350px);
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl {
    display: flex;
    margin: 0 0 15px;
    align-items: center;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dt {
    width: 140px;
    font-weight: 500;
    margin-right: 20px;
    border: solid 1px #444444;
    color: #444444;
    text-align: center;
    padding: 5px 10px;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    background: #f0f0f0;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dd {
    width: calc(100% - 160px);
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dd a.outLink:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 5px;
    font-weight: bold;
    color: #333;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dd a:hover {
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
（SP表示）インタビュー先生個別ページ
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  .doctor .clinicInformtion {
    border: solid 1px #e2cdcd;
    padding: 20px;
    /* eachが使える */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-family: "Noto Sans JP", sans-serif;
  }
  .doctor .clinicInformtion figure {
    width: 100%;
    margin: 0 0 10px;
  }
  .doctor .clinicInformtion figure img {
    width: 100%;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl {
    display: flex;
    width: 100%;
    margin: 0 0 15px;
    align-items: center;
    flex-wrap: wrap;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dt {
    font-weight: 600;
    color: #444444;
    text-align: center;
    margin: 0 0 5px;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dd {
    width: 100%;
    text-align: left;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dd a.outLink:after {
    font-family: "Font Awesome 5 Free";
    content: "\f35d";
    line-height: 1;
    margin: 0 5px;
    font-weight: bold;
    color: #333;
  }
  .doctor .clinicInformtion .clinicInformtion_txt dl dd a:hover {
    text-decoration: underline;
  }
}
/* -----------------------------------------------------------
（PC表示）よくある質問ページ（faq.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #faq {
    /*アコーディオン全体*/
    /*開いたときの下の余白*/
  }
  #faq .title {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 30px;
    position: relative;
    height: 130px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
  }
  #faq .title dt {
    font-family: "Allura", cursive;
    font-size: 110px;
    font-weight: 400;
    margin: 0 30px 0 0;
    color: #d79885;
    line-height: 1;
    order: 1;
  }
  #faq .title dd {
    order: 2;
  }
  #faq .title dd h3 {
    display: inline-block;
    margin: 0;
    padding: 0 0 10px;
    border-bottom: solid 2px #333;
    font-size: 20px;
    width: 180px;
    line-height: 1;
  }
  #faq .faqBox {
    margin: 0;
    /*バー部分*/
    /*開いたときに表示される部分*/
    /*閉じた状態の矢印描画*/
    /*開いた状態の矢印描画*/
  }
  #faq .faqBox input {
    display: none; /*チェックボックスを隠す*/
  }
  #faq .faqBox label {
    cursor: pointer;
    display: block;
    text-decoration: none;
    line-height: 1;
    position: relative;
    margin: 0 0 30px;
    padding: 17px 15px 20px;
    border: solid 1px #e2cdcd;
    display: flex;
    align-items: center;
    /* eachが使える */
    border-radius: 10px;
    background: #fefcfc;
  }
  #faq .faqBox label h3 {
    font-size: 20px;
    margin: 0;
    align-items: center;
    font-weight: 600;
    color: #444444;
  }
  #faq .faqBox label:before {
    content: "Q";
    margin: 0 20px 0;
    padding: 0 0 10px;
    font-size: 40px;
    font-weight: bold;
    color: #E2A089;
  }
  #faq .faqBox label:hover {
    background: #fffefd;
    transition: all 0.3s ease 0s;
  }
  #faq .faqBox label:hover:after {
    border-top: #E2A089 2px solid;
    border-right: #E2A089 2px solid;
  }
  #faq .faqBox ul {
    margin: 0 0 20px;
    padding: 0 10px;
    list-style: none;
    margin-bottom: 1px;
  }
  #faq .faqBox ul li {
    height: 0;
    overflow-y: hidden;
    transition: padding-bottom 0.5s, padding-top 0.5s all 0.5s ease-out; /*閉じるときのアニメーション*/
    -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
    -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
    -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
    -o-transition: padding-bottom 0.5s, padding-top 0.5s;
    line-height: 1.8;
  }
  #faq .faqBox ul li ul.list_number li {
    padding: 0;
    margin: 0;
  }
  #faq .faqBox ul li a {
    font-weight: bold;
    text-decoration: underline;
  }
  #faq .faqBox ul li h4 {
    font-size: 19px;
    color: #E2A089;
    margin: 20px 0 10px 0;
    display: inline-block;
    font-weight: bold;
  }
  #faq .faqBox ul li dl {
    padding: 20px;
    background: #fbf9f9;
  }
  #faq .faqBox ul li dl dt {
    font-weight: bold;
    margin: 20px 0 0;
  }
  #faq .faqBox ul li dl dt:first-of-type {
    margin: 0;
  }
  #faq .faqBox ul li h5 {
    color: #444444;
    font-size: 17px;
  }
  #faq .faqBox ul li p {
    margin: 0 0 10px;
  }
  #faq .faqBox ul li p.payment {
    width: 400px;
    height: auto;
    margin: 20px 0;
  }
  #faq .faqBox ul li p.payment img {
    height: auto;
    width: 100%;
    height: auto;
  }
  #faq .faqBox label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #513c2f 2px solid;
    border-right: #513c2f 2px solid;
    transform: rotate(135deg);
    position: absolute;
    right: 30px;
    top: 7%;
    bottom: 15%;
    margin: auto;
    transition: all 0.3s ease 0s;
  }
  #faq .faqBox input[type=checkbox]:checked + label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #E2A089 2px solid;
    border-right: #E2A089 2px solid;
    transform: rotate(-45deg);
    position: absolute;
    right: 30px;
    top: 7%;
    bottom: 0;
    margin: auto;
  }
  #faq #faq_bar01:checked ~ #links01 li,
  #faq #faq_bar02:checked ~ #links02 li,
  #faq #faq_bar03:checked ~ #links03 li,
  #faq #faq_bar04:checked ~ #links04 li,
  #faq #faq_bar05:checked ~ #links05 li,
  #faq #faq_bar06:checked ~ #links06 li,
  #faq #faq_bar07:checked ~ #links07 li,
  #faq #faq_bar08:checked ~ #links08 li,
  #faq #faq_bar09:checked ~ #links09 li,
  #faq #faq_bar10:checked ~ #links10 li,
  #faq #faq_bar11:checked ~ #links11 li,
  #faq #faq_bar12:checked ~ #links12 li,
  #faq #faq_bar13:checked ~ #links13 li,
  #faq #faq_bar14:checked ~ #links14 li,
  #faq #faq_bar15:checked ~ #links15 li,
  #faq #faq_bar16:checked ~ #links16 li,
  #faq #faq_bar17:checked ~ #links17 li,
  #faq #faq_bar18:checked ~ #links18 li,
  #faq #faq_bar19:checked ~ #links19 li {
    height: auto; /*開いたときに表示されるliの高さ*/
    opacity: 1;
    padding: 0 20px;
    margin: 0 0 20px;
  }
  #faq #faq_bar01:checked ~ #links01 li:last-child,
  #faq #faq_bar02:checked ~ #links02 li:last-child,
  #faq #faq_bar03:checked ~ #links03 li:last-child,
  #faq #faq_bar04:checked ~ #links04 li:last-child,
  #faq #faq_bar05:checked ~ #links05 li:last-child,
  #faq #faq_bar06:checked ~ #links06 li:last-child,
  #faq #faq_bar07:checked ~ #links07 li:last-child,
  #faq #faq_bar08:checked ~ #links08 li:last-child,
  #faq #faq_bar09:checked ~ #links09 li:last-child,
  #faq #faq_bar10:checked ~ #links10 li:last-child,
  #faq #faq_bar11:checked ~ #links11 li:last-child,
  #faq #faq_bar12:checked ~ #links12 li:last-child,
  #faq #faq_bar13:checked ~ #links13 li:last-child,
  #faq #faq_bar14:checked ~ #links14 li:last-child,
  #faq #faq_bar15:checked ~ #links15 li:last-child,
  #faq #faq_bar16:checked ~ #links16 li:last-child,
  #faq #faq_bar17:checked ~ #links17 li:last-child,
  #faq #faq_bar18:checked ~ #links18 li:last-child,
  #faq #faq_bar19:checked ~ #links19 li:last-child {
    margin-bottom: 40px;
  }
}
/* -----------------------------------------------------------
（SP表示）よくある質問ページ（faq.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #faq {
    /*アコーディオン全体*/
    /*開いたときの下の余白*/
  }
  #faq .title {
    width: 94%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    transform: translateX(-10px);
    justify-content: center;
    /*Feature*/
    /*当院の特徴*/
  }
  #faq .title dt {
    font-family: "Allura", cursive;
    font-size: 20vw;
    font-weight: 400;
    margin: 0 20px 0 0;
    color: #d79885;
  }
  #faq .title dd h3 {
    margin: 0;
    padding: 0;
    font-size: 18px;
  }
  #faq .faqBox {
    margin: 0;
    /*バー部分*/
    /*開いたときに表示される部分*/
    /*閉じた状態の矢印描画*/
    /*開いた状態の矢印描画*/
  }
  #faq .faqBox input {
    display: none; /*チェックボックスを隠す*/
  }
  #faq .faqBox label {
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #513c2f;
    line-height: 1.4;
    position: relative;
    margin: 0 0 15px;
    padding: 10px 40px 10px 10px;
    background: #fefcfc;
    border: solid 1px #e2cdcd;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: bold;
    /* eachが使える */
    border-radius: 10px;
  }
  #faq .faqBox label h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: #444444;
    text-align: left;
  }
  #faq .faqBox label:before {
    content: "Q";
    margin: -5px 15px 0 0;
    font-size: 30px;
    font-weight: bold;
    color: #E2A089;
  }
  #faq .faqBox label:hover {
    background: #fefaf9;
    transition: all 0.3s ease 0s;
  }
  #faq .faqBox label:hover:after {
    border-top: #cab172 2px solid;
    border-right: #cab172 2px solid;
  }
  #faq .faqBox ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 1px;
    text-align: left;
  }
  #faq .faqBox ul li {
    height: 0;
    overflow-y: hidden;
    transition: padding-bottom 0.5s, padding-top 0.5s all 0.5s ease-out;
    -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;
    -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
    -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
    -o-transition: padding-bottom 0.5s, padding-top 0.5s;
  }
  #faq .faqBox ul li a {
    font-weight: bold;
    text-decoration: underline;
  }
  #faq .faqBox ul li h4 {
    font-size: 16px;
    margin: 20px 0 0;
    padding: 5px 0;
    color: #E2A089;
    display: inline-block;
    font-weight: bold;
  }
  #faq .faqBox ul li p {
    margin: 0 0 10px;
    font-size: 16px;
  }
  #faq .faqBox ul li p.payment {
    margin: 15px 0;
    text-align: center;
  }
  #faq .faqBox ul li p.payment img {
    width: 100%;
    height: auto;
  }
  #faq .faqBox label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #283d0c 2px solid;
    border-right: #283d0c 2px solid;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 15%;
    margin: auto;
  }
  #faq .faqBox input[type=checkbox]:checked + label:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-top: #000 2px solid;
    border-right: #000 2px solid;
    transform: rotate(-45deg);
    position: absolute;
    right: 15px;
    top: 7%;
    bottom: 0;
    margin: auto;
  }
  #faq #faq_bar01:checked ~ #links01 li,
  #faq #faq_bar02:checked ~ #links02 li,
  #faq #faq_bar03:checked ~ #links03 li,
  #faq #faq_bar04:checked ~ #links04 li,
  #faq #faq_bar05:checked ~ #links05 li,
  #faq #faq_bar06:checked ~ #links06 li,
  #faq #faq_bar07:checked ~ #links07 li,
  #faq #faq_bar08:checked ~ #links08 li,
  #faq #faq_bar09:checked ~ #links09 li,
  #faq #faq_bar10:checked ~ #links10 li,
  #faq #faq_bar11:checked ~ #links11 li,
  #faq #faq_bar12:checked ~ #links12 li,
  #faq #faq_bar13:checked ~ #links13 li,
  #faq #faq_bar14:checked ~ #links14 li,
  #faq #faq_bar15:checked ~ #links15 li,
  #faq #faq_bar16:checked ~ #links16 li,
  #faq #faq_bar17:checked ~ #links17 li,
  #faq #faq_bar18:checked ~ #links18 li,
  #faq #faq_bar19:checked ~ #links19 li {
    height: auto; /*開いたときに表示されるliの高さ*/
    opacity: 1;
    padding: 0 10px;
    margin: 0 0 20px;
  }
  #faq #faq_bar01:checked ~ #links01 li:last-child,
  #faq #faq_bar02:checked ~ #links02 li:last-child,
  #faq #faq_bar03:checked ~ #links03 li:last-child,
  #faq #faq_bar04:checked ~ #links04 li:last-child,
  #faq #faq_bar05:checked ~ #links05 li:last-child,
  #faq #faq_bar06:checked ~ #links06 li:last-child,
  #faq #faq_bar07:checked ~ #links07 li:last-child,
  #faq #faq_bar08:checked ~ #links08 li:last-child,
  #faq #faq_bar09:checked ~ #links09 li:last-child,
  #faq #faq_bar10:checked ~ #links10 li:last-child,
  #faq #faq_bar11:checked ~ #links11 li:last-child,
  #faq #faq_bar12:checked ~ #links12 li:last-child,
  #faq #faq_bar13:checked ~ #links13 li:last-child,
  #faq #faq_bar14:checked ~ #links14 li:last-child,
  #faq #faq_bar15:checked ~ #links15 li:last-child,
  #faq #faq_bar16:checked ~ #links16 li:last-child,
  #faq #faq_bar17:checked ~ #links17 li:last-child,
  #faq #faq_bar18:checked ~ #links18 li:last-child,
  #faq #faq_bar19:checked ~ #links19 li:last-child {
    margin-bottom: 20px;
  }
}
/* -----------------------------------------------------------
（PC表示）グランデュールのサービス紹介（grandeur.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #service #philosophy .infoBtn {
    text-align: center;
  }
  #service #philosophy .infoBtn a {
    color: #fff;
    text-decoration: none;
    background: #1c2950;
  }
}
/* -----------------------------------------------------------
（SP表示）グランデュールのサービス紹介（grandeur.html）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（PC表示）お問合せフォーム（contact.html）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #contact div#mfp_overlay_inner h4 {
    margin: 0 0 30px 10px;
    font-size: 20px;
  }
  #contact .box {
    border: solid 1px #e2cdcd;
    padding: 30px;
    /* eachが使える */
    border-radius: 10px;
  }
  #contact .privacyPolicy .privacyPolicySub {
    border: solid 1px #ccc;
    margin: 30px 0;
    padding: 20px 20px 0;
  }
  #contact .privacyPolicy .privacyPolicySub h4 {
    margin: 0 0 10px;
  }
  #contact .privacyPolicy .privacyPolicySub .list_none {
    margin: 0 0 30px;
  }
}
/* -----------------------------------------------------------
（SP表示）お問合せフォーム（contact.html）
----------------------------------------------------------- */
@media screen and (max-width: 999px) {
  #contact div#mfp_overlay_inner h4 {
    margin: 0 0 20px 10px;
    font-size: 20px;
    text-align: center;
  }
  #contact .box {
    border: solid 1px #e2cdcd;
    padding: 10px;
    /* eachが使える */
    border-radius: 10px;
  }
  #contact .privacyPolicy p {
    text-align: left;
    font-size: 15px;
  }
  #contact .privacyPolicy .privacyPolicySub {
    border: solid 1px #1b0c08;
    margin: 30px 0 20px;
    padding: 20px 20px 0;
  }
  #contact .privacyPolicy .privacyPolicySub h4 {
    margin: 0 0 10px;
    background: none;
    border: none;
    padding: 0;
    font-size: 16px;
  }
  #contact .privacyPolicy .privacyPolicySub .list_none {
    margin: 0 0 30px;
  }
  #contact .privacyPolicy .privacyPolicySub li {
    text-align: left;
  }
  #contact .taLeft {
    text-align: left;
    font-size: 15px;
  }
}
/* -----------------------------------------------------------
（PC表示）サンクスページ（thanksページ）
----------------------------------------------------------- */
@media print, screen and (min-width: 1000px) {
  #thanks .boxInner p {
    text-align: center;
  }
}
/* -----------------------------------------------------------
（SP表示）サンクスページ（thanksページ）
----------------------------------------------------------- */
/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fade {
  animation-name: fadeUp;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.fadeUp:nth-child(1) {
  animation-delay: 0.1s;
}

.fadeUp:nth-child(2) {
  animation-delay: 0.2s;
}

.fadeUp:nth-child(3) {
  animation-delay: 0.3s;
}

.fadeUp:nth-child(4) {
  animation-delay: 0.4s;
}

.fadeUp:nth-child(5) {
  animation-delay: 0.5s;
}

.fadeUp:nth-child(6) {
  animation-delay: 0.6s;
}

.fadeUp:nth-child(7) {
  animation-delay: 0.7s;
}

.fadeUp:nth-child(8) {
  animation-delay: 0.8s;
}

.fadeUp:nth-child(9) {
  animation-delay: 0.9s;
}

.fadeUp:nth-child(10) {
  animation-delay: 1s;
}

.fadeUp:nth-child(11) {
  animation-delay: 1.1s;
}

.fadeUp:nth-child(12) {
  animation-delay: 1.2s;
}

.fadeUp:nth-child(13) {
  animation-delay: 1.3s;
}

.fadeUp:nth-child(14) {
  animation-delay: 1.4s;
}

.fadeUp:nth-child(15) {
  animation-delay: 1.5s;
}

.fadeUp:nth-child(16) {
  animation-delay: 1.6s;
}

.fadeUp:nth-child(17) {
  animation-delay: 1.7s;
}

.fadeUp:nth-child(18) {
  animation-delay: 1.8s;
}

.fadeUp:nth-child(19) {
  animation-delay: 1.9s;
}

.fadeUp:nth-child(20) {
  animation-delay: 2s;
}

.fadeUp:nth-child(21) {
  animation-delay: 2.1s;
}

.fadeUp:nth-child(22) {
  animation-delay: 2.2s;
}

.fadeUp:nth-child(23) {
  animation-delay: 2.3s;
}

.fadeUp:nth-child(24) {
  animation-delay: 2.4s;
}

.fadeUp:nth-child(25) {
  animation-delay: 2.5s;
}

.fadeUp:nth-child(26) {
  animation-delay: 2.6s;
}

.fadeUp:nth-child(27) {
  animation-delay: 2.7s;
}

.fadeUp:nth-child(28) {
  animation-delay: 2.8s;
}

.fadeUp:nth-child(29) {
  animation-delay: 2.9s;
}

.fadeUp:nth-child(30) {
  animation-delay: 3s;
}

.fadeUp:nth-child(31) {
  animation-delay: 3.1s;
}

.fadeUp:nth-child(32) {
  animation-delay: 3.2s;
}

.fadeUp:nth-child(33) {
  animation-delay: 3.3s;
}

.fadeUp:nth-child(34) {
  animation-delay: 3.4s;
}

.fadeUp:nth-child(35) {
  animation-delay: 3.5s;
}

.fadeUp:nth-child(36) {
  animation-delay: 3.6s;
}

.fadeUp:nth-child(37) {
  animation-delay: 3.7s;
}

.fadeUp:nth-child(38) {
  animation-delay: 3.8s;
}

.fadeUp:nth-child(39) {
  animation-delay: 3.9s;
}

.fadeUp:nth-child(40) {
  animation-delay: 4s;
}

.fadeUp:nth-child(41) {
  animation-delay: 5.1s;
}

.fadeUp:nth-child(42) {
  animation-delay: 5.2s;
}

.fadeUp:nth-child(43) {
  animation-delay: 5.3s;
}

.fadeUp:nth-child(44) {
  animation-delay: 5.4s;
}

.fadeUp:nth-child(45) {
  animation-delay: 5.5s;
}

.fadeUp:nth-child(46) {
  animation-delay: 5.6s;
}

.fadeUp:nth-child(47) {
  animation-delay: 5.7s;
}

.fadeUp:nth-child(48) {
  animation-delay: 5.8s;
}

.fadeUp:nth-child(49) {
  animation-delay: 5.9s;
}

.fadeUp:nth-child(50) {
  animation-delay: 6s;
}

.fadeUp:nth-child(51) {
  animation-delay: 6.1s;
}

.fadeUp:nth-child(52) {
  animation-delay: 6.2s;
}

.fadeUp:nth-child(53) {
  animation-delay: 6.3s;
}

.fadeUp:nth-child(54) {
  animation-delay: 6.4s;
}

.fadeUp:nth-child(55) {
  animation-delay: 6.5s;
}

.fadeUp:nth-child(56) {
  animation-delay: 6.6s;
}

.fadeUp:nth-child(57) {
  animation-delay: 6.7s;
}

.fadeUp:nth-child(58) {
  animation-delay: 6.8s;
}

.fadeUp:nth-child(59) {
  animation-delay: 6.9s;
}

.fadeUp:nth-child(60) {
  animation-delay: 7s;
}

/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* PC表示で非表示 */
@media print, screen and (min-width: 1000px) {
  .pc_none {
    display: none !important;
  }
}
/* SP表示で非表示 */
@media screen and (max-width: 999px) {
  .sp_none {
    display: none !important;
  }
}
/* -----------------------------------------------------------
（PC表示）
----------------------------------------------------------- */
/* -----------------------------------------------------------
（SP表示）
----------------------------------------------------------- *//*# sourceMappingURL=style.css.map */