@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

*:focus:not(:focus-visible),
*::before:focus:not(:focus-visible),
*::after:focus:not(:focus-visible) {
  outline: none;
}

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

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

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

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

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

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

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

body {
  word-wrap: break-word;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@-webkit-keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3rem);
            transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10rem);
            transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10rem);
            transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cutin_right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes cutin_right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes cutin_left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes balloon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
}
@keyframes balloon {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0.6rem);
            transform: translateY(0.6rem);
  }
}
@-webkit-keyframes airball {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes airball {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
            transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
            transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
            transform: translate(0, 0) rotate(7deg);
  }
}
@-webkit-keyframes poyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes poyon {
  0% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    -webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
            transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    -webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
            transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    -webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
            transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    -webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
            transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    -webkit-transform: scale(1, 1) translate(0%, 0%);
            transform: scale(1, 1) translate(0%, 0%);
  }
}
@-webkit-keyframes flipAnime {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@keyframes flipAnime {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}
@-webkit-keyframes blur {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-filter: none;
            filter: none;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes blur {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  100% {
    -webkit-filter: none;
            filter: none;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.cf::before,
.cf::after {
  content: "";
  display: block;
}

.cf::after {
  clear: both;
}

.fl_l {
  float: left;
}

.fl_r {
  float: right;
}

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

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

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

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

.txt_strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #E5D5A5));
  background: linear-gradient(transparent 60%, #E5D5A5 60%);
}

.img_c {
  margin: 1rem auto;
}

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

img.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 3rem 2rem 0;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 3rem;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

@media screen and (min-width: 48em), print {
  .sp_n {
    display: block;
  }
  .pc_n {
    display: none;
  }
}
.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.main > section ~ section,
.flex2 > section ~ section {
  margin-top: 4rem;
}

.main > section section ~ section,
.flex2 > section section ~ section {
  margin-top: 3rem;
}

.main > section > section section ~ section,
.flex2 > section > section section ~ section {
  margin-top: 2rem;
}

.main > section > section > section section ~ section,
.flex2 > section > section > section section ~ section {
  margin-top: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt40 {
    margin-top: 8rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .main > section ~ section,
  .flex2 > section ~ section {
    margin-top: 8rem;
  }
  .main > section section ~ section,
  .flex2 > section section ~ section {
    margin-top: 6rem;
  }
  .main > section > section section ~ section,
  .flex2 > section > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section > section section ~ section,
  .flex2 > section > section > section section ~ section {
    margin-top: 2rem;
  }
}
.tbl_wrap {
  border: 1px solid #CCCCCC;
}
.tbl_wrap .title {
  text-align: center;
  font-size: 1.8rem;
  color: #fff;
  background-color: #E1BE57;
}
.tbl_wrap .tbl {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
  color: #393939;
  text-align: left;
}
.tbl_wrap .tbl tr {
  width: 100%;
}
.tbl_wrap .tbl tr th[scope=col] {
  text-align: center;
  font-weight: bold;
  background-color: #E5D5A5;
}
.tbl_wrap .tbl tr th[scope=row] {
  font-weight: normal;
  background-color: #F6F4EB;
  padding: 0.5rem;
  width: 30%;
}
.tbl_wrap .tbl tr td {
  font-weight: normal;
  background-color: #fff;
  text-align: center;
  border: 1px solid #EEE;
}

@media screen and (min-width: 48em), print {
  .tbl_wrap .title {
    font-size: 2.4rem;
  }
  .tbl_wrap .tbl {
    font-size: 1.6rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.4rem;
  color: #535353;
  border: 1px solid #707070;
}
.tbl_time caption {
  font-size: 1.4rem;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time tr th {
  border: 1px solid #707070;
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  border-bottom: none;
  padding: 0.4rem 0;
  font-size: 90%;
  text-align: center;
  color: #fff;
  background-color: #E1BE57;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
}
.tbl_time tr th[scope=row] {
  border-top: none;
  background-color: #fff;
}
.tbl_time tr td {
  border: 1px solid #707070;
  border-top: none;
  text-align: center;
  background-color: #fff;
  padding: 1.4rem 0.4rem;
  line-height: 1;
  font-size: 80%;
}

@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
    font-size: 1.8rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.5rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: 1.5rem 0;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 10rem;
  background: url(../img/tit01.jpg) no-repeat center center/cover;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding: 1rem;
  text-align: center;
}

.tit_02 {
  color: #6B5225;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: normal;
  padding: 0 0 1.5rem;
  text-align: center;
  margin: 0 0 2rem;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  position: relative;
  background: url("../img/tit2.svg") no-repeat center bottom 1px/50%;
}
.tit_02::after {
  content: attr(data-text);
  font-size: 1.5rem;
  color: #6B5225;
  display: block;
  font-family: "Caveat", cursive;
}

.tit_03 {
  background: -webkit-gradient(linear, left top, right top, from(#D6BB69), to(#8D7D62));
  background: linear-gradient(to right, #D6BB69, #8D7D62);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: 0.5rem 1rem;
}

.tit_04 {
  color: #E1BE57;
  font-size: 1.6rem;
  line-height: 1.4;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 0.5rem;
  border-left: 5px solid #E1BE57;
  margin: 0 0 2rem;
}

.tit_05 {
  color: #6B5225;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  border-bottom: 1px dashed #6B5225;
}

.tit_06 {
  color: #393939;
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F6F4EB));
  background: linear-gradient(transparent 60%, #F6F4EB 60%);
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    color: #fff;
    min-height: 30rem;
    background: url(../img/tit01.jpg) no-repeat center center/auto;
    font-size: 4rem;
    font-weight: normal;
  }
  .tit_02 {
    font-size: 2.8rem;
    background-size: 20%;
    padding: 0 0 2.5rem;
    margin: 0 0 4rem;
  }
  .tit_02::after {
    font-size: 1.8rem;
  }
  .tit_03 {
    font-size: 2.6rem;
    margin: 0 0 3rem;
  }
  .tit_04 {
    font-size: 2.4rem;
    margin: 0 0 3rem;
  }
  .tit_05 {
    font-size: 2rem;
    margin: 0 0 3rem;
  }
  .tit_06 {
    font-size: 1.8rem;
    margin: 0 0 2rem;
  }
}
.lst_ul {
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before {
  content: "●";
  color: #FFB1D8;
  position: absolute;
  left: 0;
}
.lst_ul.kome > li::before {
  content: "※";
  color: #393939;
}

.lst_ul_disc {
  margin: 0 0 0 2rem;
}
.lst_ul_disc > li {
  list-style: disc;
}
.lst_ul_disc > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul_disc > li::marker {
  color: #FFB1D8;
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 1.8em;
  position: relative;
}
.lst_ol > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ol > li::before {
  display: inline-block;
  content: counter(number, decimal-leading-zero) ".";
  color: #393939;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.lst_dl01 dt {
  font-weight: bold;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_dl01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lst_dl01 dt {
    width: 20%;
  }
  .lst_dl01 dd {
    width: 80%;
    padding: 0 0 0 1rem;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2rem;
}
.flex > li:not(:last-child) {
  margin: 0;
}

.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 48em), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex2 > section,
  .flex2 > li,
  .flex2 > div {
    width: 49%;
    margin-top: 0 !important;
  }
  .flex3 {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  text-align: center;
  gap: 0 0.4rem;
}
.tel a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.tel::before {
  content: "tel.";
}

.box_white {
  border: 1px solid #E5D5A5;
  background-color: #F6F4EB;
  padding: 1rem;
  color: #393939;
}

.box_brown {
  border: 1px solid #8D7D62;
  background-color: #A49A89;
  padding: 1rem;
  color: #fff;
}

@media screen and (min-width: 48em), print {
  .box_white,
  .box_brown {
    padding: 3rem;
  }
}
.btn {
  background-color: #8D7D62;
  border: 2px solid #E1BE57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E5D5A5;
  font-size: 1.3rem;
  padding: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn::after {
  font-family: "fontello";
  content: "\e80d";
  font-size: 1rem;
  color: #E1BE57;
}
.btn.btn_resv {
  color: #fff;
  font-size: 1.5rem;
  padding: 0;
}
.btn.out::after {
  font-family: "fontello";
  content: "\f08e";
}

@media screen and (min-width: 48em), print {
  .btn {
    background-color: #8D7D62;
  }
  .btn ::after {
    font-size: 1.5rem;
  }
  .btn.btn_resv {
    font-size: 2rem;
  }
  .btn.btn:hover {
    background-color: #6B5225;
  }
}
.link {
  color: #E1BE57;
  border-bottom: 1px solid #E1BE57;
  text-decoration: none !important;
}
.link::after {
  content: ">>";
  margin-left: 1rem;
}
.link.out::after {
  font-family: "fontello";
  content: "\f08e";
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 7rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: #fff;
  background: #D6BB69;
  z-index: 5;
}
.slick-arrow::before {
  font-size: 1.2rem;
}
.slick-arrow.slick-prev {
  left: -2.6rem;
}
.slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\f006";
}

@media screen and (min-width: 48em), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 23rem;
  }
  .slick-arrow::before {
    font-size: 2.4rem;
  }
  .slick-arrow.slick-prev {
    left: -6rem;
  }
  .slick-arrow.slick-next {
    right: -6rem;
  }
  .slick-arrow:is(:hover, :focus-visible) {
    background: #E5D5A5;
    opacity: 1;
  }
}
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 1rem auto;
}
.slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: #A49A89;
}
.slick-dots li button:is(:hover, :focus-visible) {
  opacity: 0.8;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}

@media screen and (min-width: 48em), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
html {
  font-size: 3.125vw;
}

body {
  background: #A49A89;
  color: #393939;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(51, 51, 51, 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

.main {
  font-size: 1.4rem;
  line-height: 1.6;
}
.main a:not([class*=btn], [href*="tel:"]) {
  text-decoration: underline;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin: auto;
  }
  .main {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: 2rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 17rem;
  }
}

.header {
  position: relative;
  background: #fff;
}
.header > .wrap {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header > .wrap .logo {
  padding: 1rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8.5rem;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header > .wrap .logo.hide {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.header > .wrap .logo a {
  height: 100%;
  display: block;
  background: url(../img/logo.svg) no-repeat left center/contain;
}
.header > .wrap .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR {
  margin: 7.5rem 0 0;
  position: relative;
  width: 100%;
}
.header > .wrap .headR ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header > .wrap .headR ul li.tel_wrap {
  width: 100%;
  text-align: center;
}
.header > .wrap .headR ul li.tel_wrap .tel {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.header > .wrap .headR ul li .btn {
  width: 12rem;
  height: 100%;
}
.header > .wrap .headR ul li.add {
  font-size: 1rem;
}
.header > .wrap .headR ul li.add span {
  font-size: 1.2rem;
}
.header > .wrap .headR ul li.sns {
  width: 100%;
  text-align: center;
}
.header > .wrap .headR ul li.sns a {
  margin: 15px 8px 5px;
  display: inline-block;
}
.header.for_fixed {
  display: none;
}

@media screen and (min-width: 48em), print {
  .header {
    left: 0;
    background-size: auto;
    z-index: 101;
  }
  .header > .wrap {
    padding: 2rem 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .header > .wrap .logo {
    width: 40%;
    height: 14rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .headR {
    width: 60%;
    margin: 0;
  }
  .header > .wrap .headR ul {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 10rem 2rem 34rem 2rem 17rem;
    grid-template-columns: 10rem 34rem 17rem;
    -ms-grid-rows: 0.3fr 0 0.5fr;
    grid-template-rows: 0.3fr 0.5fr;
    gap: 0 2rem;
        grid-template-areas: "sns tel_wrap btn_wrap" "sns add btn_wrap";
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
  .header > .wrap .headR ul li {
    text-align: right;
  }
  .header > .wrap .headR ul li.tel_wrap {
    grid-area: tel_wrap;
  }
  .header > .wrap .headR ul li.tel_wrap .tel {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .header > .wrap .headR ul li.btn_wrap {
    grid-area: btn_wrap;
  }
  .header > .wrap .headR ul li.btn_wrap .btn {
    height: 8rem;
    width: 17rem;
  }
  .header > .wrap .headR ul li.add {
    font-size: 1.2rem;
    grid-area: add;
    text-align: left !important;
  }
  .header > .wrap .headR ul li.add span {
    font-size: 1.4rem;
  }
  .header > .wrap .headR ul li.sns {
    grid-area: sns;
  }
  .header > .wrap .headR ul li.sns a {
    margin: 8px 0 0 18px;
  }
  .header.clone {
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  .header.clone .wrap {
    padding: 1.5rem 0;
  }
  .header.clone .wrap .logo {
    height: 8rem;
  }
  .header.clone.for_fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (min-width: 48em), print{
  .header > .wrap .headR ul li.tel_wrap {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .header > .wrap .headR ul li.btn_wrap {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 5;
  }
  .header > .wrap .headR ul li.add {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .header > .wrap .headR ul li.sns {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 48em), print {
  .header > .wrap .headR ul li.tel_wrap {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .header > .wrap .headR ul li.btn_wrap {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 5;
  }
  .header > .wrap .headR ul li.add {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .header > .wrap .headR ul li.sns {
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav #sp_menu {
  width: 5rem;
  height: 5rem;
  background: #8D7D62;
  text-align: center;
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1.7rem;
  right: 1rem;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  -webkit-transform: translateY(-220%);
          transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e80e";
  color: #fff;
  font-size: 2.6rem;
}
#nav #sp_menu::after {
  display: block;
  content: "MENU";
  margin: 0.2rem 0 0;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e80f";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .gnav_subnav {
  display: none;
  width: 94vw;
  max-height: calc(var(--vh, 1vh) * 100 - 11rem);
  overflow-y: auto;
  background-color: #8D7D62;
  color: #fff;
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 10rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid #6B5225;
  border-bottom: 1px solid #6B5225;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px dotted #6B5225;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem;
  font-size: 1.4rem;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: #E1BE57;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e80c";
  color: #E1BE57;
  font-size: 1rem;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  font-family: "fontello";
  content: "\e80b";
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  background-color: #73634A;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li:not(:last-child) {
  border-bottom: 1px solid #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: #fff;
  text-align: center;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  color: #E1BE57;
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: #A49A89;
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e806";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: relative;
    z-index: 100;
    -webkit-transition: 0.8s;
    transition: 0.8s;
  }
  #nav.hide {
    -webkit-transform: translateY(-300%);
            transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    background-color: #8D7D62;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
    color: #fff;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
  }
  #nav .gnav_subnav .gnav > li {
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.6rem;
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 0.8rem;
  }
  #nav .gnav_subnav .gnav > li a:is(:hover, :focus-visible, .current), #nav .gnav_subnav .gnav > li .sub:is(:hover, :focus-visible, .current) {
    color: #E1BE57;
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 20rem;
    position: absolute;
    left: -5rem;
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    background-color: rgba(115, 99, 74, 0.9);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1.5rem 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    color: #E1BE57;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  width: 100%;
  padding: 4rem 1rem;
  background: url("../img/header_bg.gif") repeat 0 0/2%;
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview > .wrap .overviewL .clinic_name img {
  margin: auto;
}
.overview > .wrap .overviewL .tel {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
}
.overview > .wrap .overviewL .btn {
  width: 80%;
  margin: 1rem auto 0;
  padding: 1rem;
}
.overview > .wrap .overviewC {
  margin: 1rem 0 0;
}
.overview > .wrap .overviewC .gaiyo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.4rem;
}
.overview > .wrap .overviewC .gaiyo dt {
  width: 32%;
  padding: 0.4rem;
  color: #393939;
  font-weight: bold;
}
.overview > .wrap .overviewC .gaiyo dd {
  width: 68%;
  padding: 0.4rem;
}
.overview > .wrap .overviewC .gaiyo dd.main_tel .tel::before, .overview > .wrap .overviewC .gaiyo dd.main_tel .tel::after {
  display: none;
}
.overview > .wrap .overviewC .tbl_time {
  margin: 1rem 0 0;
}
.overview > .wrap .overviewR {
  margin: 1rem 0 0;
  width: 100%;
}
.overview > .wrap .overviewR .gmap {
  height: 100vw;
  overflow: hidden;
  margin: auto;
  border: 1px solid #6B5225;
}

@media screen and (min-width: 48em), print {
  .overview {
    background-size: auto;
    padding: 6rem 0;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .overview > .wrap .overviewL .clinic_name {
    width: 30rem;
  }
  .overview > .wrap .overviewL span {
    width: 100%;
  }
  .overview > .wrap .overviewL .tel {
    font-size: 2.4rem;
  }
  .overview > .wrap .overviewL .btn {
    font-size: 2.4rem;
    height: 7rem;
    width: 100%;
  }
  .overview > .wrap .overviewC {
    margin: 1.5rem 0 0;
    width: 39%;
  }
  .overview > .wrap .overviewC .gaiyo {
    -webkit-text-size-adjust: none;
  }
  .overview > .wrap .overviewC .gaiyo dt {
    padding: 0.5rem 0;
    width: 28%;
  }
  .overview > .wrap .overviewC .gaiyo dd {
    padding: 0.5rem 0;
    width: 72%;
  }
  .overview > .wrap .overviewR {
    margin: 1.5rem 0 0;
    width: 30%;
  }
  .overview > .wrap .overviewR .gmap {
    height: 100%;
    width: 100%;
  }
}
#tel_up {
  width: 100%;
  height: 4rem;
  background: #fff;
  visibility: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
          box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
#tel_up ul li {
  height: 100%;
  text-align: center;
}
#tel_up ul li:first-of-type {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
#tel_up ul li .tel_no {
  height: 100%;
  font-size: 1.4rem;
  padding: 0 0.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 0.5rem 0.4rem;
  line-height: 1;
}
#tel_up ul li .tel_no::before {
  content: "tel.";
  font-size: 1.2rem;
}
#tel_up ul li .btn {
  height: 100%;
  width: 12rem;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  background: #fff;
  border: 1px solid #FFB1D8;
  overflow: hidden;
  position: relative;
  z-index: 101;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e80b";
  color: #FFB1D8;
  font-size: 80%;
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 6rem;
    height: 6rem;
    bottom: 4rem;
    right: 4rem;
    left: auto;
    background: none;
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    font-size: 3rem;
    border-radius: 50%;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background-color: #8D7D62;
  color: #fff;
}
.footer .copy {
  display: block;
  background: #A49A89;
  color: #fff;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 3rem 0 0;
  }
  .footer .copy {
    margin: 2rem 0 0;
  }
  .footer ul {
    display: block;
    text-align: center;
  }
  .footer ul li {
    display: inline-block;
    font-size: 1.4rem;
    margin: 0 0 1rem;
    -webkit-text-size-adjust: none;
  }
  .footer ul li:not(:last-child)::after {
    content: "|";
    margin: 0 1rem;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.treatment {
    display: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 27rem;
  overflow: hidden;
  visibility: hidden;
}
.keyvsl #keyvsl .slick-list div img {
  height: 24rem !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  margin: 0.6rem 0 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl > .wrap {
  position: absolute;
  top: 0rem;
  left: 0;
  right: 0;
  height: 100%;
  padding: 0 1rem 0 0;
}
.keyvsl > .wrap > .animation {
  width: 15rem;
  margin: 15rem 0 0 auto;
  overflow: hidden;
}
.keyvsl > .wrap > .animation img {
  -webkit-animation: blur forwards 1.2s ease normal;
          animation: blur forwards 1.2s ease normal;
}
.keyvsl .move {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 54rem;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 50rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: 1rem 0 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
  .keyvsl > .wrap {
    padding: 0;
  }
  .keyvsl > .wrap > .animation {
    margin: 28rem 0 0 auto;
    width: 35rem;
  }
}
.resv_recept {
  margin: 0 1rem;
}
.resv_recept p {
  text-align: left;
}
.resv_recept .first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 0 3rem;
  padding: 2rem;
}
.resv_recept .first .btn {
  padding: 1rem;
  width: 80%;
  margin: auto;
}
.resv_recept .saishin {
  padding: 2rem;
}
.resv_recept .saishin .line_resv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
  margin: 2.5rem 0 0;
}
.resv_recept .saishin .line_resv img {
  width: 6rem;
}
.resv_recept .saishin .line_resv .line_link {
  color: #E1BE57;
  font-weight: bold;
  text-underline-offset: 0.3rem;
}
.resv_recept .saishin .line_qr {
  display: none;
}

@media screen and (min-width: 48em), print {
  .resv_recept {
    width: 80%;
    margin: auto;
  }
  .resv_recept p {
    text-align: center;
  }
  .resv_recept .first {
    margin: 0;
    padding: 3rem;
  }
  .resv_recept .first .btn_resv {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1rem 2rem;
  }
  .resv_recept .saishin {
    padding: 3rem;
  }
  .resv_recept .saishin .line_qr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
  .resv_recept .saishin .line_qr .icon {
    width: 7rem;
    margin: 0;
  }
  .resv_recept .saishin .line_qr .qr {
    width: 10rem;
  }
  .resv_recept .saishin .line_resv {
    display: none;
  }
}
.cal {
  padding: 1rem;
}
.cal .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin: 0 0 1rem;
}
.cal .status li {
  font-size: 80%;
}
.cal .status li::before {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  margin: 0 1rem 0 0;
  border: 1px solid #A49A89;
}
.cal .status .open::before {
  background-color: #fff;
}
.cal .status .pmOnly::before {
  background-color: #CEE6C1;
}
.cal .status .amOnly::before {
  background-color: #F2E2B7;
}
.cal .status .outPatient::before {
  background: #F3D6EB;
}
.cal .flex2 table {
  table-layout: fixed;
  font-size: 80%;
}

@media screen and (min-width: 48em), print {
  .cal .status {
    gap: 2rem;
    margin: 0 0 3rem;
  }
  .cal .status li {
    font-size: 100%;
  }
  .cal .flex2 {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .cal .flex2 table {
    width: 45%;
    font-size: 100%;
  }
}
.info {
  background-color: #fff;
  margin: 4rem 1rem;
  padding: 2rem 0rem 2rem 1rem;
  -webkit-box-shadow: 0.5rem 0.5rem 0.8rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.5rem 0.5rem 0.8rem rgba(0, 0, 0, 0.15);
}
.info .info_tit {
  width: 100%;
  height: 10rem;
  background: url(../img/index_news.svg) no-repeat center;
  color: #6B5225;
  font-weight: normal;
  margin: 0 0 2rem;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.info .info_tit::after {
  content: attr(data-text);
  font-family: "Caveat", cursive;
  color: #E1BE57;
  font-weight: normal;
  font-size: 1.5rem;
}
.info .inner dl {
  max-height: calc(100vw - 4rem);
  overflow-y: auto;
  overscroll-behavior-y: none;
  padding: 0 1rem 0 0;
}
.info .inner dl dt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  gap: 0 0.6rem;
  margin: 0 0 0.6rem;
  padding: 1rem;
  color: #E1BE57;
  background-color: #F6F4EB;
  cursor: pointer;
  line-height: 1.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.info .inner dl dt::before {
  font-family: "fontello";
  content: "\e80c";
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}
.info .inner dl dt .info_date {
  font-size: 1.2rem;
  margin-left: 2rem;
}
.info .inner dl dt.close::before {
  font-family: "fontello";
  content: "\e80b";
  font-size: 1rem;
}
.info .inner dl dt:not(:first-of-type) {
  margin: 2rem 0 0.6rem;
}
.info .inner dl dd:not(:nth-of-type(-n+3)) {
  display: none;
}

@media screen and (min-width: 48em), print {
  .info {
    margin: 8rem 0;
    padding: 0;
    -webkit-box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.15);
            box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .info .info_tit {
    width: 25%;
    height: 20rem;
    background-size: 85%;
    font-size: 2.8rem;
  }
  .info .info_tit::after {
    font-size: 1.8rem;
  }
  .info .inner {
    width: 75%;
    padding: 3rem 3rem 3rem 1rem;
  }
  .info .inner dl {
    max-height: 34rem;
    margin-top: 0;
    padding: 0 4rem 0 0;
  }
  .info .inner dl dt {
    font-size: 1.8rem;
    padding: 1rem 2rem;
  }
  .info .inner dl dt:not(:first-of-type) {
    margin: 2.5rem 0 0.6rem;
  }
  .info .inner dl dt:hover {
    background-color: #E5D5A5;
    color: #fff;
  }
}
.sidebar {
  padding: 0 1rem 3rem;
}
.sidebar .subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.sidebar .subnav li {
  text-align: center;
  color: #E5D5A5;
}
.sidebar .subnav li a {
  text-decoration: none;
}
.sidebar .subnav li a span {
  position: relative;
}
.sidebar .subnav li a span::before {
  content: "";
  border-bottom: 2px solid #E5D5A5;
  width: 100%;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sidebar .subnav li a:hover span::before {
  opacity: 0;
}
.sidebar .subnav li a::before {
  display: block;
  content: "";
  border: 4px solid #D6BB69;
  border-radius: 25rem;
  height: 13rem;
  width: 13rem;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}
.sidebar .subnav li a.breast_surgery::before {
  background-image: url("../img/icon_breast_surgery.svg");
}
.sidebar .subnav li a.examination::before {
  background-image: url("../img/icon_examination.svg");
  background-size: 60%;
}
.sidebar .subnav li a.genetic_medicine::before {
  background-image: url("../img/icon_genetic_medicine.svg");
}
.sidebar .subnav li a.counseling::before {
  background-image: url("../img/icon_counseling.svg");
}
.sidebar .subnav li.animation {
  opacity: 0;
}
.sidebar .subnav li.animation.move {
  -webkit-animation: fadein forwards 1.5s ease normal;
          animation: fadein forwards 1.5s ease normal;
}
.sidebar .subnav li.animation.move:nth-child(1) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sidebar .subnav li.animation.move:nth-child(1) a::before {
  -webkit-animation: flipAnime 1.5s ease normal forwards;
          animation: flipAnime 1.5s ease normal forwards;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sidebar .subnav li.animation.move:nth-child(2) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.sidebar .subnav li.animation.move:nth-child(2) a::before {
  -webkit-animation: flipAnime 1.5s ease normal forwards;
          animation: flipAnime 1.5s ease normal forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.sidebar .subnav li.animation.move:nth-child(3) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.sidebar .subnav li.animation.move:nth-child(3) a::before {
  -webkit-animation: flipAnime 1.5s ease normal forwards;
          animation: flipAnime 1.5s ease normal forwards;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.sidebar .subnav li.animation.move:nth-child(4) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.sidebar .subnav li.animation.move:nth-child(4) a::before {
  -webkit-animation: flipAnime 1.5s ease normal forwards;
          animation: flipAnime 1.5s ease normal forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@media screen and (min-width: 48em), print {
  .sidebar {
    padding: 0 3rem 6rem;
  }
  .sidebar .subnav {
    gap: 7.5rem;
  }
  .sidebar .subnav li {
    font-size: 2rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .sidebar .subnav li:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .sidebar .subnav li a::before {
    background-size: 65%;
    border: 8px solid #D6BB69;
    width: 22rem;
    height: 22rem;
  }
}
.greeting {
  padding: 0 1rem 3rem;
}
.greeting .tit {
  margin-top: 0;
  color: #393939;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: -2px;
}
.greeting > div .greeting_doctor {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.greeting > div .greeting_doctor img {
  width: 55%;
  margin: 0 auto;
}
.greeting > div .greeting_doctor p {
  margin: 1rem 0;
  line-height: 1;
  letter-spacing: 0.3rem;
}
.greeting > div .greeting_doctor .btn {
  margin: auto;
}
.greeting > div .txt {
  margin-top: 2rem;
  opacity: 0;
}
.greeting > div .txt p {
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.5;
}
.greeting > div .txt.move {
  -webkit-animation: fade_up 1s ease forwards;
          animation: fade_up 1s ease forwards;
}

@media screen and (min-width: 48em), print {
  .greeting {
    padding: 0 3rem 6rem;
  }
  .greeting .tit {
    font-size: 2.8rem;
    margin-bottom: 4.5rem;
  }
  .greeting > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .greeting > div .txt {
    margin-top: 0;
  }
  .greeting > div .txt p {
    font-size: 2rem;
  }
  .greeting > div .greeting_doctor {
    font-size: 2.4rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .greeting > div .greeting_doctor img {
    width: 65%;
  }
  .greeting > div .greeting_doctor .btn {
    font-size: 1.4rem;
    padding: 0 2rem;
  }
  .greeting > div .greeting_doctor p {
    margin: 2rem 0 1rem;
  }
}
.loopslider {
  margin: 2rem auto 0;
  width: 100%;
  height: 14.3rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.loopslider ul {
  height: 100%;
  float: left;
  display: inline;
  overflow: hidden;
}
.loopslider ul li {
  width: 20rem;
  height: 100%;
  float: left;
  display: block;
  overflow: hidden;
}

@media screen and (min-width: 48em), print {
  .loopslider {
    margin: 4rem auto 0;
    height: 35.8rem;
    overflow: hidden;
  }
  .loopslider ul li {
    width: 50rem;
    height: 100%;
  }
}
.partnership ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2rem;
}
.partnership ul li {
  width: 90%;
  margin-bottom: 20px;
}
@media screen and (min-width: 48em), print {
  .partnership ul li {
    width: 300px;
  }
}
.partnership ul li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #CCC;
  text-align: center;
  padding: 1rem;
  background: #FFF;
}
.partnership ul li a img {
  height: 60px;
}

body:not(.index) .sub_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
body:not(.index) .main {
  margin: 2rem 1rem 6rem;
  padding: 3rem 1rem;
  background-color: #fff;
  -webkit-box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.15);
          box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.15);
}
body:not(.index) .main .tel {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    width: 120rem;
    margin: 4rem auto 8rem;
    padding: 10rem 10rem;
    -webkit-box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.15);
            box-shadow: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.15);
  }
  body:not(.index) .main .cf .img_l, body:not(.index) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadnav .breadcrumb li a {
  text-decoration: underline;
}
.breadnav .breadcrumb li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.6rem;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 2rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: 1.4rem;
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
body.doctor .greeting_low img {
  width: 65%;
}
body.doctor .greeting_low .box_white {
  padding: 1rem;
}
body.doctor .greeting_low .box_white ul li {
  margin: 1.8rem 0;
  text-align: center;
  line-height: 1.2;
}
body.doctor .greeting_low .box_white ul li::before {
  content: "“";
  font-family: "Caveat", cursive;
  font-size: 2.5rem;
  color: #8D7D62;
  line-height: 1;
  margin: 0 1rem 0 0;
}
body.doctor .greeting_low .box_white ul li::after {
  content: "”";
  font-family: "Caveat", cursive;
  font-size: 2.5rem;
  color: #8D7D62;
  line-height: 1;
  margin: 0 1rem 0 0;
}
body.doctor .greeting_low .dr_name {
  font-size: 1.8rem;
  margin: 0;
}
body.doctor .greeting_low .dr_name span {
  font-size: 1.7rem;
}
body.doctor .doctor_logo img {
  width: 50%;
  margin: auto;
}
body.doctor .biography dl dt {
  color: #6B5225;
}
body.doctor .biography dl dd {
  padding: 0 0 0 5rem;
  position: relative;
}
body.doctor .biography dl dd::before {
  content: "";
  height: 100%;
  width: 0.2rem;
  background-color: #BFBBB4;
  position: absolute;
  left: 2rem;
}
body.doctor .flex2 {
  margin: 4rem 0 0;
}

@media screen and (min-width: 48em), print {
  body.doctor .greeting_low img {
    width: 25rem;
  }
  body.doctor .greeting_low .box_white {
    width: 72rem;
    padding: 0 2rem;
  }
  body.doctor .greeting_low .dr_name {
    text-align: center;
    font-size: 2rem;
  }
  body.doctor .doctor_logo img {
    width: 21rem;
    margin: 0 2rem 2rem 0;
  }
  body.doctor dl dt {
    width: 100%;
  }
  body.doctor dl dd {
    padding: 0 0 0 15rem;
  }
  body.doctor .flex2 {
    margin: 8rem 0 0;
  }
}
.reception .recept_hours dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #CCC;
}
.reception .recept_hours dl dt {
  background-color: #E5D5A5;
  padding: 0.5rem;
  text-align: center;
  width: 50%;
  border-right: 1px solid #ccc;
}
.reception .recept_hours dl dd {
  background-color: #F6F4EB;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reception .recept_hours dl dt:not(:last-of-type), .reception .recept_hours dl dd:not(:last-of-type) {
  border-bottom: 1px solid #CCC;
}
.reception .about_resv > p {
  margin-top: 0;
}
.reception .about_resv .box_brown .flex2 .btn {
  padding: 1rem;
  width: 100%;
}
.reception .about_resv .box_brown .flex2 > p {
  text-align: center;
}

@media screen and (min-width: 48em), print {
  .reception .box_white,
  .reception .box_brown {
    width: 80%;
    margin: auto;
  }
  .reception .recept_hours dl dt {
    width: 20%;
    padding: 1.5rem;
    font-size: 2rem;
  }
  .reception .recept_hours dl dd {
    font-size: 2rem;
  }
  .reception .recept_hours dl dt:not(:last-of-type), .reception .recept_hours dl dd:not(:last-of-type) {
    border-bottom: none;
  }
  .reception .about_resv .box_brown .flex2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 3rem;
  }
  .reception .about_resv .box_brown .flex2 .btn {
    width: 30%;
    padding: 1rem 0;
    font-size: 130%;
  }
  .reception .about_resv .box_brown .flex2 > p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .reception .about_resv .box_brown .flex2 > p .tel {
    font-size: 130%;
  }
}
.examination .main dl {
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 80%;
}
.examination .main dl dt, .examination .main dl dd {
  padding: 0.5rem;
}
.examination .main dl dt {
  background-color: #F6F4EB;
  width: 73%;
}
.examination .main dl dt:not(:first-of-type, :only-of-type) {
  border-top: 1px solid #ccc;
}
.examination .main dl dd {
  background-color: #fff;
  width: 27%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: end;
}
.examination .main dl dd:not(:first-of-type, :only-of-type) {
  border-top: 1px solid #ccc;
}
.examination .jichitai .screening_detail tr th[scope=row] {
  width: 45%;
}
.examination .jichitai .screening_detail tr td {
  width: 27.5%;
}
.examination .jichitai .screening_free th {
  width: 45%;
}
.examination .jichitai .screening_free td {
  padding: 0.5rem;
  width: 55%;
}
.examination .jichitai .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.examination .jichitai .btn_wrap .btn {
  width: 80%;
}
.examination .combination {
  color: #A49A89;
  font-size: 110%;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  text-decoration-style: dotted;
  position: relative;
  padding: 0 0 0 1.3em;
}
.examination .combination::before {
  content: "◎";
  position: absolute;
  left: 0;
}

@media screen and (min-width: 48em), print {
  .examination .main dl {
    font-size: 100%;
  }
  .examination .main dl dt, .examination .main dl dd {
    padding: 1.5rem;
    width: 50%;
  }
  .examination .main .lst_ul.kome {
    margin: 3rem 0 0 0;
  }
  .examination .about_examination img {
    width: 60%;
  }
  .examination .about_examination .img_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 6rem 0 0;
  }
  .examination .about_examination .img_wrap img {
    width: 45%;
  }
  .examination .jichitai .tbl_wrap {
    margin: 3rem 0;
  }
  .examination .jichitai .btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .examination .jichitai .btn_wrap .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.8rem;
    padding: 1.5rem 2rem;
  }
}
body.breast_surgery .breast_condition li {
  list-style-position: inside;
}
body.breast_surgery .seimitsu > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
body.breast_surgery .seimitsu > div .btn {
  width: 80%;
}
body.breast_surgery .seimitsu img {
  margin: 0;
  max-width: 100%;
}

@media screen and (min-width: 48em), print {
  body.breast_surgery .breast_condition ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  body.breast_surgery .breast_condition ul li {
    width: 33.3%;
  }
  body.breast_surgery main img {
    width: 60%;
    margin: 3rem auto 0;
  }
  body.breast_surgery .seimitsu img {
    width: 40%;
    margin: 0 3rem 3rem 0;
  }
  body.breast_surgery .seimitsu > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  body.breast_surgery .seimitsu > div .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 48em), print {
  .genetic_medicine .box_white ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .genetic_medicine .box_white ul li {
    width: 50%;
  }
}
body.clinic .mammo img {
  width: 70%;
}
body.clinic .kyuin img {
  width: 80%;
  margin: auto;
}
body.clinic .gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
body.clinic .gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #393939;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #E5D5A5;
  line-height: 1.4;
}
body.clinic .gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
body.clinic .gallery .gallery_slider div:first-child .cap {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
body.clinic .gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
body.clinic .gallery .gallery_thum .slick-current div img {
  border: 4px solid #D6BB69;
}

@media screen and (min-width: 48em), print {
  body.clinic .mammo img {
    width: 30rem;
  }
  body.clinic .kyuin img {
    width: 75%;
  }
  body.clinic .gallery {
    width: 75rem;
    margin: auto;
  }
  body.clinic .gallery .gallery_slider {
    font-size: 1.6em;
  }
  body.clinic .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  body.clinic .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.faq .lst_faq dt::before, .faq .lst_faq dd::before {
  font-weight: bold;
  font-size: 1.8rem;
  color: #E1BE57;
}
.faq .lst_faq dt {
  padding: 0 0 0 1.5em;
  text-indent: -1.5em;
}
.faq .lst_faq dt::before {
  content: "Q. ";
}
.faq .lst_faq dd p {
  margin: 0;
  padding: 0 0 0 1.5em;
  position: relative;
  top: -1.8em;
}
.faq .lst_faq dd img {
  border: 1px solid #D5D5D5;
  margin: 1rem 0 0 0;
}
.faq .lst_faq dd::before {
  content: "A. ";
}

@media screen and (min-width: 48em), print {
  .faq dl dt::before,
  .faq dl dd::before {
    font-size: 2rem;
  }
  .faq dl dt {
    padding: 0 0 0 1.5em;
    text-indent: -1.5em;
  }
  .faq dl dd img {
    width: 60%;
    margin: auto !important;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
  border: 1px solid #6B5225;
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: auto;
  }
}

.anc li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.anc li::before {
  font-family: "fontello";
  content: "\e80c";
  color: #393939;
  margin-right: 0.4rem;
}
.anc li a {
  color: #393939;
  display: inline-block;
  text-decoration: none !important;
}

@media screen and (min-width: 48em), print {
  .anc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 2rem;
  }
  .anc li {
    font-size: 110%;
    margin: 0 0 1.6rem;
  }
  .anc li::before {
    margin-right: 0.8rem;
  }
  .anc li a:hover {
    text-decoration: underline !important;
  }
}
/*# sourceMappingURL=style.css.map */