@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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 {
  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]) {
  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%;
}

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

h5, h6 {
  margin: 0;
}

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

p {
  margin: 1em 0;
}

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

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

a[href=""] {
  pointer-events: none;
}

:root {
  --clr_txt: #717171;
  --rgb_txt: 113, 113, 113;
  --clr_txt_dark: #333;
  --rgb_txt_dark: 51, 51, 51;
  --clr_tit: #6c2b2f;
  --rgb_tit: 108, 43, 47;
  --clr_border: #ccc;
  --rgb_border: 204, 204, 204;
  --clr_white: #fff;
  --rgb_white: 255, 255, 255;
  --clr_orange: #f3780a;
  --rgb_orange: 243, 120, 10;
  --clr_orange_light: #f69600;
  --rgb_orange_light: 246, 150, 0;
  --clr_orange_light02: #e68200;
  --rgb_orange_light02: 230, 130, 0;
  --clr_orange_light03: #ffa53b;
  --rgb_orange_light03: 255, 165, 59;
  --clr_orange_dark: #de633d;
  --rgb_orange_dark: 222, 99, 61;
  --clr_orange_dark02: #f08800;
  --rgb_orange_dark02: 240, 136, 0;
  --clr_orange_dark03: #de7d00;
  --rgb_orange_dark03: 222, 125, 0;
  --clr_orange_dark04: #dd9036;
  --rgb_orange_dark04: 221, 144, 54;
  --clr_orange_dark05: #f09013;
  --rgb_orange_dark05: 240, 144, 19;
  --clr_yellow: #FCC800;
  --rgb_yellow: 252, 200, 0;
  --clr_yellow_light: #fffcdb;
  --rgb_yellow_light: 255, 252, 219;
  --clr_yellow_light02: #faf9e1;
  --rgb_yellow_light02: 250, 249, 225;
  --clr_yellow_dark: #fcc500;
  --rgb_yellow_dark: 252, 197, 0;
  --clr_yellow_dark02: #fcc700;
  --rgb_yellow_dark02: 252, 199, 0;
  --clr_gray: #f4f4f4;
  --rgb_gray: 244, 244, 244;
  --clr_gray_dark: #808080;
  --rgb_gray_dark: 128, 128, 128;
  --clr_red: #ff0000;
  --rgb_red: 255, 0, 0;
  --clr_brown: #97380e;
  --rgb_brown: 151, 56, 14;
  --clr_brown_dark: #6A4A31;
  --rgb_brown_dark: 106, 74, 49;
  --clr_beige: #efe5d9;
  --rgb_beige: 239, 229, 217;
  --clr_beige_dark: #f4f2eb;
  --rgb_beige_dark: 244, 242, 235;
  --anime-opacity: 1;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
.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%;
}

.d-inline {
  display: inline-block;
}

.red {
  color: var(--clr_red);
}

.img_c {
  margin: 1rem auto;
  border: 1px solid var(--clr_border);
  padding: 0.4rem;
}

.img_l, .img_r {
  max-width: 80%;
  margin: 1rem auto;
  border: 1px solid var(--clr_border);
  padding: 0.4rem;
}

.tate {
  max-width: 60%;
}

@media screen and (min-width: 48em), print {
  .img_l {
    float: left;
    margin: 0 2rem 2rem 0;
    max-width: 40%;
    height: auto;
  }
  .img_r {
    float: right;
    margin: 0 0 2rem 2rem;
    max-width: 40%;
    height: auto;
  }
  .tate {
    max-width: 30% !important;
  }
}
.br_20 {
  border-radius: 20px;
}

.sp_n {
  display: none;
}

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

.mt10 {
  margin-top: 1rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt40 {
  margin-top: 4rem;
}

.mb05 {
  margin-bottom: 0.5rem !important;
}

.mb00 {
  margin-bottom: 0 !important;
}

.pl20 {
  padding-left: 2rem;
}

.px20 {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media screen and (min-width: 48em), print {
  .mt00 {
    margin-top: 0rem;
  }
  .mt10 {
    margin-top: 2rem;
  }
  .mt20 {
    margin-top: 4rem;
  }
  .mt30 {
    margin-top: 6rem;
  }
  .mt40 {
    margin-top: 8rem;
  }
  .mb05 {
    margin-bottom: 1rem !important;
  }
  .pl20 {
    padding-left: 2.5rem;
  }
  .px20 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.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 {
  .main > section ~ section, .flex2 > section ~ section {
    margin-top: 5rem;
  }
  .main > section section ~ section, .flex2 > section section ~ section {
    margin-top: 4rem;
  }
  .main > section > section section ~ section, .flex2 > section > section section ~ section {
    margin-top: 3rem;
  }
  .main > section > section > section section ~ section, .flex2 > section > section > section section ~ section {
    margin-top: 3rem;
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.tbl_time caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl_time caption > span:first-of-type {
  margin-right: 2rem;
}
.tbl_time tr th {
  font-weight: normal;
  background: var(--clr_orange);
  color: var(--clr_white);
  border: 1px solid var(--clr_white);
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  text-align: center;
  font-weight: bold;
}
.tbl_time tr th[scope=col]:first-child {
  width: 33%;
}
.tbl_time tr th.time {
  background: var(--clr_yellow_light);
  color: var(--clr_brown_dark);
  font-size: 90%;
}
.tbl_time tr td {
  text-align: center;
  padding: 1.2rem 0.4rem;
  border: 1px solid var(--clr_white);
  line-height: 1;
  font-size: 90%;
  background: var(--clr_gray);
}
@media screen and (min-width: 48em), print {
  .tbl_time {
    table-layout: fixed;
  }
  .tbl_time caption {
    letter-spacing: 0.1rem;
  }
  .tbl_time caption > span:first-of-type {
    margin-right: 3rem;
  }
  .tbl_time tr th[scope=col] {
    padding: 0.4rem 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 26.5%;
  }
  .tbl_time tr td {
    padding: 1.4rem 0;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  color: var(--clr_gray_dark);
  font-weight: normal;
  line-height: 1.1;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: scroll;
  margin: 0.5rem 1rem 1.2rem 1rem;
}

.tit_02 {
  background: url("../img/tit_02.png") center right/cover no-repeat;
  font-weight: bold;
  color: var(--clr_tit);
  margin: 1.5rem;
  padding: 0.5rem 12rem 0.5rem 1.5rem;
  font-size: 2rem;
  box-shadow: 0 0 0 5px var(--clr_beige);
  text-shadow: 0px 0px 1px #aa5b61;
  font-weight: 500;
  line-height: 1.15;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 6rem;
}

.tit_03 {
  font-weight: bold;
  background: url(../img/tit_03.png) bottom right/8rem auto no-repeat, linear-gradient(to right, var(--clr_orange_dark02) 0%, var(--clr_yellow_dark02) 100%);
  border-left: 6px solid var(--clr_yellow_dark);
  border-right: 6px solid var(--clr_orange_dark02);
  border-top: 1px solid var(--clr_orange_dark02);
  border-bottom: 1px solid var(--clr_orange_dark02);
  padding: 0.6rem 1rem;
  margin-bottom: 2rem;
  color: var(--clr_white);
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.tit_04 {
  margin-bottom: 1rem;
  padding: 0.6rem 1.8rem 0.8rem;
  background: linear-gradient(to bottom, rgba(248, 190, 44, 0.7), transparent);
  color: var(--clr_orange_dark03);
  border-radius: 10px 10px 0px 0px;
  font-size: 1.6rem;
}

.tit_05 {
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  border: 1px solid #dbdbdb;
  font-size: 1.4rem;
  background: url(../img/tit_05.png) no-repeat top right, linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  box-shadow: inset 0px 0px 0px 2px #FFF;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    font-size: 1.2rem;
    margin: 0.2rem auto 0;
    letter-spacing: 0.08rem;
    width: 1000px;
    overflow: inherit;
  }
  .tit_02 {
    font-size: 3.2rem;
    margin: 4rem auto;
    height: 15rem;
    width: 98rem;
    box-shadow: 0 0 0 10px var(--clr_beige);
    padding: 1rem 30rem 1rem 2.6rem;
    font-size: 4.2rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .tit_03 {
    border-left-width: 12px;
    border-right-width: 12px;
    padding: 0.56rem 10rem 0.56rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 2.24rem;
    background: url(../img/tit_03.png) bottom right/10.5rem auto no-repeat, linear-gradient(to right, var(--clr_orange_dark02) 0%, var(--clr_yellow_dark02) 100%);
  }
  .tit_04 {
    font-size: 1.92rem;
    padding: 0.6rem 2rem 1.6rem;
  }
  .tit_05 {
    font-size: 1.6rem;
    padding: 0.7rem 1rem;
  }
}
.lst {
  line-height: 1.25;
}
.lst > li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.lst_ul {
  line-height: 1.25;
}
.lst_ul > li {
  padding-left: 0.8em;
  position: relative;
}
.lst_ul > li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.lst_ul > li::before {
  font-family: "fontello";
  content: "\e802";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.2;
  font-size: 120%;
}
.lst_ul.kome > li::before {
  content: "※";
  color: inherit;
}

.flow_ol {
  counter-reset: number 0;
}
.flow_ol > li {
  border: 2px solid var(--clr_orange_dark04);
  background: var(--clr_yellow_light02);
  padding: 1rem;
  counter-increment: number 1;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.4;
}
.flow_ol > li .flow_tit {
  margin: 0.2rem -1rem 1.2rem;
  display: block;
  font-size: 120%;
  color: var(--clr_white);
  font-weight: bold;
  padding: 0.3rem 1rem;
  background: var(--clr_orange_light03);
  text-align: center;
}
.flow_ol > li .flow_tit::before {
  display: inline-block;
  content: counter(number) ".";
  margin-right: 0.4rem;
  font-size: 95%;
  transform: translateY(1px);
}
.flow_ol > li:not(:last-child) {
  margin: 0 0 3rem;
}
.flow_ol > li:not(:last-child)::after {
  display: block;
  content: "";
  width: 5px;
  height: 3.5rem;
  position: absolute;
  bottom: -3.25rem;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--clr_orange_dark04);
  z-index: -1;
}
@media screen and (min-width: 48em), print {
  .flow_ol > li {
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
  }
  .flow_ol > li .flow_tit {
    font-size: 1.92rem;
    margin: 0 -2rem 1.5rem;
    padding: 0.6rem 1rem;
  }
  .flow_ol > li:not(:last-child) {
    margin: 0 0 5rem;
  }
  .flow_ol > li:not(:last-child)::after {
    bottom: -5.25rem;
    height: 5.25rem;
  }
}

.flex3, .flex4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex3 > li, .flex4 > li {
  width: calc(50% - 0.5rem);
}
.flex3 > li:not(:last-child), .flex4 > li:not(:last-child) {
  margin-bottom: inherit;
}

.flex1 {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.flex1 > li {
  width: fit-content;
}
.flex1 > li:not(:last-child) {
  margin-bottom: inherit;
}

@media screen and (min-width: 48em), print {
  .flex2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .flex2 > section, .flex2 > li {
    width: calc(50% - 1rem);
    margin-top: 0 !important;
  }
  .flex2 > section:not(:last-child), .flex2 > li:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex3 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex3_1 li {
    width: calc((100% - 4rem) / 3);
  }
  .flex3_1 li:not(:last-child) {
    margin-bottom: inherit;
  }
  .flex4 {
    justify-content: flex-start;
    gap: 1rem 2rem;
  }
  .flex4 li {
    width: calc((100% - 6rem) / 4);
  }
  .flex1 {
    gap: 1rem 2rem;
  }
}
.tel {
  display: inline-block;
}
.tel::before {
  font-family: "fontello";
  content: "\e809";
  margin-right: 0.3rem;
}

.box {
  padding: 1.5rem 1rem;
  background: var(--clr_yellow_light);
  border: 2px solid var(--clr_orange_dark);
  color: var(--clr_txt_dark);
}
.box .box_tit {
  text-align: center;
  font-weight: bold;
  font-size: 110%;
  margin-bottom: 0.7rem;
  line-height: 1.25;
}
.box.-color2 {
  background: var(--clr_beige_dark);
  border: none;
}
.box.-border {
  border-color: var(--clr_red);
  background: var(--clr_white);
}
@media screen and (min-width: 48em), print {
  .box {
    padding: 2rem;
  }
  .box .box_tit {
    font-size: 1.92rem;
    margin-bottom: 1.4rem;
    line-height: 1.5;
  }
}

.tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 90%;
  letter-spacing: 0;
}
.tbl caption {
  font-size: 85%;
  caption-side: bottom;
  text-align: left;
  margin-top: 0.4rem;
}
.tbl tr th {
  padding: 0.8rem 0.5rem;
  font-weight: bold;
  border: 1px solid var(--clr_border);
  background: var(--clr_orange_dark05);
  color: var(--clr_white);
  text-align: center;
}
.tbl tr td {
  text-align: left;
  padding: 0.8rem;
  border: 1px solid var(--clr_border);
}
.tbl tr .nowrap {
  width: 0;
  white-space: nowrap;
}
.tbl tbody tr th {
  background: var(--clr_orange_dark05);
  color: var(--clr_white);
}

@media screen and (min-width: 48em), print {
  .tbl {
    font-size: 100%;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .tbl tr th {
    padding: 0.8rem 1.6rem;
  }
  .tbl tr td {
    padding: 0.8rem 1.6rem;
  }
}
.slick-dots {
  display: flex;
  justify-content: 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: var(--clr_orange);
}
.slick-dots li button:hover, .slick-dots li button:focus {
  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: var(--clr_white);
  color: var(--clr_txt);
  font-family: "Yu Gothic", "Hiragino Sans", "Yu Gothic medium", "Yu Gothic", Meiryo, sans-serif;
  word-wrap: break-word;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_white), 0.6);
  backdrop-filter: blur(0.6rem);
  position: fixed;
  top: 0;
  z-index: 9997;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
}
body.spnav_modal {
  height: 100%;
  overflow: hidden;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

.main {
  font-size: 1.4rem;
  line-height: 1.4;
  padding-bottom: 2rem;
}

.wrap {
  margin-right: 1rem;
  margin-left: 1rem;
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1000px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .main_wrap {
    display: flex;
    justify-content: space-between;
  }
  .main {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    order: 2;
    width: 69%;
    padding-bottom: 7rem;
  }
  .main a:not([class*=btn]):hover {
    opacity: 1;
    text-decoration: none;
  }
  .sidebar {
    order: 1;
    width: 28%;
  }
  .wrap {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.header {
  background: linear-gradient(to bottom, #fefefe 0%, #f5f5f5 100%);
}
.header .wrap {
  padding: 0.5rem 0;
}
.header .wrap .logo {
  width: calc(100% - 5.5rem);
  height: 4rem;
}
.header .wrap .headR {
  width: fit-content;
  margin: 1rem auto;
}
.header .wrap .headR .headR_txt {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  color: #373636;
}
.header .wrap .headR .headR_tel {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  color: #373636;
}
.header .wrap .headR .headR_tel span {
  letter-spacing: 0.05rem;
  margin-left: 0.3rem;
  display: inline-block;
  transform: translateY(3px);
  font-size: 2.8rem;
}
.header .wrap .headR .headR_dept {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.6rem;
  gap: 1rem;
}
.header .wrap .headR .headR_dept li {
  color: #725b02;
  font-weight: bold;
  padding: 0.35rem 1rem;
  font-size: 1.3rem;
  line-height: 1;
  background: var(--clr_yellow);
}
.header .wrap .headR .headR_dept li:nth-of-type(even) {
  background: #f08700;
  color: #7a4909;
}

@media screen and (min-width: 48em), print {
  .header {
    padding-bottom: 2.1rem;
  }
  .header .wrap {
    margin: 0 auto;
    padding: 0.2rem 0 0;
  }
  .header .wrap .header_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.8rem;
  }
  .header .wrap .header_content .logo {
    width: 55%;
    height: 7.8rem;
  }
  .header .wrap .header_content .headR {
    width: 45%;
    margin: 0.3rem 0 0;
  }
  .header .wrap .header_content .headR .headR_txt {
    text-align: right;
    font-size: 1.4rem;
  }
  .header .wrap .header_content .headR .headR_tel {
    text-align: right;
    font-size: 2rem;
  }
  .header .wrap .header_content .headR .headR_tel span {
    font-size: 3.6rem;
    letter-spacing: 0.15rem;
    margin-left: 0.5rem;
    transform: translateY(3px);
  }
  .header .wrap .header_content .headR .headR_dept {
    margin-top: 0.4rem;
    justify-content: flex-end;
  }
  .header .wrap .header_content .headR .headR_dept li {
    padding: 0.4rem 1.2rem;
    font-size: 1.4rem;
  }
}
#nav {
  width: 100vw;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--clr_orange);
  color: var(--clr_white);
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 2.6rem;
  right: 1rem;
  z-index: 9999;
}
#nav #sp_menu.fixed {
  position: fixed;
  top: 1rem;
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e805";
  font-size: 2.2rem;
  margin: 0rem 0 0.25rem;
}
#nav #sp_menu::after {
  content: "MENU";
}
#nav #sp_menu.close {
  top: 1rem;
}
#nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e806";
}
#nav #sp_menu.close::after {
  content: "CLOSE";
}
#nav #sp_menu span {
  display: none;
}
#nav .drawr {
  display: none;
  background: var(--clr_white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
}
#nav .gnav_subnav {
  width: 100%;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  background: var(--clr_white);
  padding: 6.5rem 1rem;
}
#nav .gnav_subnav .gnav {
  border-top: 1px solid var(--clr_border);
  border-bottom: 1px solid var(--clr_border);
}
#nav .gnav_subnav .gnav > li {
  min-width: fit-content;
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px solid var(--clr_border);
}
#nav .gnav_subnav .gnav > li a {
  display: block;
  padding: 1rem;
  font-size: 1.4rem;
  color: var(--clr_tit);
  font-weight: bold;
}
#nav .gnav_subnav .gnav > li a.home span {
  display: none;
}
#nav .gnav_subnav .gnav > li a.current {
  background: var(--clr_yellow_light);
  color: var(--clr_orange_dark02);
}
#nav .gnav_subnav .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
}
#nav .gnav_subnav .subnav li {
  width: calc(50% - 0.5rem);
}
#nav .gnav_subnav .subnav li a {
  display: block;
  background: linear-gradient(to bottom, #f08700, #f08700);
  color: var(--clr_white);
  font-family: "Noto Sans JP", sans-serif;
  padding: 0.5rem 0.5rem 0.5rem 4rem;
  font-size: 1.3rem;
  box-shadow: 3px 3px 0px 0px #fcc800;
  position: relative;
}
#nav .gnav_subnav .subnav li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0.5rem;
  width: 2.5rem;
  height: 100%;
  background: url("../img/icon_nav.png") center center/contain no-repeat;
}
#nav .gnav_subnav .subnav li a.current {
  background: linear-gradient(to bottom, #f08700, #f05c00);
}
#nav .gnav_subnav .bnr_lst > li {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
#nav .gnav_subnav .bnr_lst > li img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .drawr {
    display: block !important;
    width: 100%;
    max-height: inherit;
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .drawr .gnav_subnav {
    padding: 0;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    background: linear-gradient(to bottom, var(--clr_white), #f7f7f7 50%, #f1f1f1 50%);
    box-shadow: 0px 4px 4px 1px #dedede;
  }
  #nav .drawr .gnav_subnav .gnav {
    width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border: none;
  }
  #nav .drawr .gnav_subnav .gnav li {
    width: 100%;
    position: relative;
  }
  #nav .drawr .gnav_subnav .gnav li::before {
    content: "";
    display: block;
    width: 2px;
    height: calc(100% - 1rem);
    position: absolute;
    top: 0.5rem;
    left: 0;
    border-left: 1px solid #d9d9d9;
    background: var(--clr_white);
  }
  #nav .drawr .gnav_subnav .gnav li:not(:last-child) {
    border-bottom: none;
  }
  #nav .drawr .gnav_subnav .gnav li:last-child::after {
    content: "";
    display: block;
    width: 2px;
    height: calc(100% - 1rem);
    position: absolute;
    top: 0.5rem;
    right: 0;
    border-right: 1px solid #d9d9d9;
    background: var(--clr_white);
  }
  #nav .drawr .gnav_subnav .gnav li a {
    display: block;
    text-align: center;
    font-size: 1.85rem;
    padding: 1.8rem 0;
    margin: 0;
    line-height: 1;
    text-shadow: 0px 0px 1px #ffc2c6;
    cursor: pointer;
  }
  #nav .drawr .gnav_subnav .gnav li a:hover {
    color: var(--clr_tit);
    background: linear-gradient(to bottom, #fcf8ee 50%, #f6ecd1 50%);
    text-shadow: 0px 0px 5px var(--clr_orange_light);
    opacity: 1;
  }
  #nav .drawr .gnav_subnav .gnav li .subbox {
    width: auto;
    position: absolute;
    top: 6rem;
    width: 70rem;
    padding: 1rem 2rem;
  }
  #nav .drawr .gnav_subnav .gnav li .subbox > .subnav {
    display: flex;
    flex-wrap: wrap;
  }
  #nav .drawr .gnav_subnav .gnav li .subbox > .subnav li {
    width: 33.3333333333%;
    padding: 0.6rem 1rem 0rem 0;
  }
  #nav .drawr .gnav_subnav .gnav li .subbox > .subnav li::after {
    content: none;
  }
  #nav .drawr .gnav_subnav .gnav li .subbox > .subnav li a {
    font-size: 1.8rem;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
  }
}
.sub_nav_tit {
  border: 2px solid #e0b50f;
  color: #a1672e;
  box-shadow: inset 0px 0px 0px 2px var(--clr_white);
  background: url("../img/sub_nav_title.png") center right/contain no-repeat, linear-gradient(to bottom, #fff5d1, #fcce1e);
  padding: 2.3rem 1.3rem;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: -0.2rem;
}

#sub_nav {
  display: none;
}
@media screen and (min-width: 48em), print {
  #sub_nav {
    display: flex;
    flex-wrap: wrap;
    margin: 2rem 0 4rem;
    gap: 1.5rem;
  }
  #sub_nav > li {
    width: calc(100% - 0.8rem);
  }
  #sub_nav > li a {
    display: block;
    background: linear-gradient(to bottom, #f08700, #f08700);
    color: var(--clr_white);
    font-family: "Noto Sans JP", sans-serif;
    padding: 1.5rem 1rem 1.5rem 5.8rem;
    font-size: 2rem;
    box-shadow: 8px 5px 0px 0px #fcc800;
    position: relative;
    transition: 0.2s;
  }
  #sub_nav > li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 1rem;
    width: 4.3rem;
    height: 100%;
    background: url("../img/icon_nav.png") center center/contain no-repeat;
  }
  #sub_nav > li a:hover {
    background: linear-gradient(to bottom, #f08700, #f05c00);
    opacity: 1;
  }
}

.bnr_lst {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.overview {
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview .clinic_name {
  text-align: center;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.overview .clinic_name span {
  display: block;
  font-size: 2rem;
}
.overview .overview_flex .overviewL .add {
  font-size: 1.3rem;
  margin: 0;
}
.overview .overview_flex .overviewR.box {
  padding: 1.5rem;
}
.overview .overview_flex .overviewR .overviewR_dr {
  margin: 0 0 0.5rem;
}
.overview .overview_flex .overviewR .lst_ul {
  line-height: 1.2;
}
.overview .tbl_time {
  margin: 2rem 0;
}
.overview .gmap {
  height: 100vw;
  border: 1px solid var(--clr_border);
}

@media screen and (min-width: 48em), print {
  .overview {
    font-size: 1.6rem;
  }
  .overview .clinic_name {
    margin-bottom: 1.5rem;
  }
  .overview .clinic_name span {
    font-size: 2.4rem;
    display: inline-block;
    margin-left: 0.7rem;
  }
  .overview .overview_flex {
    display: flex;
    justify-content: space-between;
  }
  .overview .overview_flex .overviewL {
    width: 54%;
  }
  .overview .overview_flex .overviewL .add {
    font-size: 1.35rem;
    letter-spacing: 0.15rem;
    margin-bottom: 0.5rem;
  }
  .overview .overview_flex .overviewR {
    width: 43.5%;
  }
  .overview .tbl_time {
    margin: 1.5rem 0;
  }
  .overview .gmap {
    height: 28.5rem;
  }
}
#tel_up {
  width: 100%;
  height: 3.8rem;
  background: var(--clr_white);
  box-shadow: 0px 0px 12px -3px rgba(var(--rgb_txt), 0.3);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
#tel_up ul {
  width: calc(100% - 3.8rem);
  height: 100%;
  display: flex;
  align-items: center;
}
#tel_up ul > li {
  width: 50%;
  height: 100%;
}
#tel_up ul > li a {
  width: 100%;
  height: 100%;
  background: var(--clr_orange);
  color: var(--clr_white);
  box-shadow: inset 0px 0px 0px 1px var(--clr_white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
#tel_up ul > li.f_tel a {
  font-size: 1.35rem;
}
#tel_up ul > li.f_tel a::before {
  font-family: "fontello";
  content: "\e809";
  margin-right: 0.4rem;
}
#tel_up #pageup {
  display: block;
  width: 3.8rem;
  height: 3.8rem;
  font-size: 1.4rem;
  position: relative;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e812";
  width: 100%;
  height: 100%;
  color: var(--clr_white);
  background: var(--clr_orange_light);
  position: absolute;
  top: 0;
  right: 0;
  box-shadow: inset 0px 0px 0px 1px var(--clr_white);
  display: flex;
  align-items: center;
  justify-content: center;
}
#tel_up #pageup .clip {
  clip-path: inset(50%);
  color: transparent;
  font-size: 0;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    width: 4.9rem;
    height: 4.9rem;
    bottom: 3rem;
    right: 3rem;
    left: auto;
    background: none;
    padding: 0;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 4.9rem;
    height: 4.9rem;
    font-size: 3rem;
    line-height: 1.8;
    background: none;
  }
  #tel_up #pageup::before {
    width: 4.8rem;
    height: 4.8rem;
    font-size: 2.3rem;
    padding-top: 0.4rem;
  }
}
.footer {
  text-align: center;
  padding: 2rem 0 4rem;
  background: var(--clr_yellow_light);
  border-top: 5px solid var(--clr_orange_light);
}
.footer .footer_logo {
  width: calc(100% - 2rem);
  margin: 0 auto 2rem;
  background: linear-gradient(to bottom, #fce294, #fef6cd, #fffcdc);
  box-shadow: 6px 6px 6px -3px rgba(var(--rgb_txt), 0.4);
  padding: 1rem;
  text-align: left;
  font-weight: bold;
  font-size: 1.2rem;
  letter-spacing: -0.01rem;
  line-height: 1.1;
  color: var(--clr_txt_dark);
}
.footer .footer_logo img {
  max-width: 100%;
  margin-bottom: 0.8rem;
}
.footer .footer_logo > P {
  margin: 0;
}
.footer .footer_logo .f_log_tel {
  margin-top: 0.4rem;
  font-size: 1.5rem;
}
.footer .copy {
  display: block;
  padding: 1rem 0.4rem;
  font-size: 1rem;
  background: var(--clr_yellow);
}
.footer ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 2rem 0;
    border-width: 8px;
  }
  .footer .footer_flex {
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
  }
  .footer .footer_flex .footer_logo {
    width: fit-content;
    margin: 0;
    letter-spacing: -0.03rem;
  }
  .footer .footer_flex .footer_logo img {
    max-width: 26rem;
    margin-bottom: 1rem;
  }
  .footer .footer_flex .footer_logo .f_log_tel {
    margin-top: 0.6rem;
  }
  .footer .footer_flex .footerR {
    width: 70%;
    letter-spacing: 0.1rem;
  }
  .footer .footer_flex .footerR ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .footer .footer_flex .footerR ul li {
    display: inline-block;
    font-size: 1.28rem;
    margin: 0 0 0.3rem;
  }
  .footer .footer_flex .footerR ul li::before {
    content: "|";
    margin: 0 1.5rem;
  }
  .footer .footer_flex .footerR ul li:last-child::after {
    content: "|";
    margin: 0 1.5rem;
  }
  .footer .footer_flex .footerR ul li a {
    text-decoration: underline;
    color: var(--clr_orange_light);
  }
  .footer .footer_flex .footerR ul li a:hover {
    color: var(--clr_orange_light02);
    text-decoration: underline;
    opacity: 1;
  }
  .footer .footer_flex .footerR ul.gnav > li:first-of-type {
    margin-right: 60%;
  }
  .footer .footer_flex .footerR ul.gnav > li:first-of-type::after {
    content: "|";
    margin: 0 1.5rem;
  }
  .footer .footer_flex .footerR .copy {
    margin: 0;
    padding: 1.5rem 2rem 0;
    background: none;
    text-align: left;
    font-size: 1.12rem;
  }
  .footer .footer_flex .footerR .copy a {
    text-decoration: underline;
    color: var(--clr_orange_light);
  }
  .footer .footer_flex .footerR .copy a:hover {
    color: var(--clr_orange_light02);
    text-decoration: underline;
    opacity: 1;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  padding: 1.5rem;
}
.keyvsl #keyvsl {
  width: 100%;
  height: auto;
  overflow: hidden;
  visibility: hidden;
  line-height: 0;
  box-shadow: 0 0 0 5px var(--clr_beige);
}
.keyvsl #keyvsl .slick-list div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 48em), print {
  .keyvsl {
    padding: 3rem 0;
  }
  .keyvsl #keyvsl {
    height: 37.6rem;
    width: 98rem;
    margin: 10px auto;
    box-shadow: 0 0 0 10px var(--clr_beige);
  }
  .keyvsl #keyvsl .slick-list div img {
    height: 37.6rem !important;
  }
}
.bnr_pcr {
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  padding: 1.5rem 0.5rem;
}
@media screen and (min-width: 48em), print {
  .bnr_pcr {
    font-size: 2.2rem;
    padding: 2.2rem 2rem;
  }
}

.info {
  padding-bottom: 4rem;
}
.info .info_dl {
  overflow-y: scroll;
  height: fit-content;
  max-height: 25rem;
}
.info .info_dl dt {
  margin-bottom: 1rem;
  font-weight: bold;
  color: var(--clr_brown);
  cursor: pointer;
  font-size: 115%;
  position: relative;
  padding-left: 1.3em;
}
.info .info_dl dt::before {
  font-family: "fontello";
  content: "\e804";
  font-weight: normal;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s;
}
.info .info_dl dt.open::before {
  transform: scale(1, -1);
}
.info .info_dl dd {
  margin-bottom: 1.6rem;
  word-wrap: break-word;
  display: none;
}
.info .info_dl dd a {
  text-decoration: underline;
  color: var(--clr_orange_light);
}
.info .info_dl dd a:hover {
  color: var(--clr_orange_light02);
  text-decoration: underline;
  opacity: 1;
}

@media screen and (min-width: 48em), print {
  .info {
    padding-bottom: 4rem;
  }
  .info .info_dl {
    max-height: 36rem;
  }
  .info .info_dl dt {
    font-size: 1.92rem;
    margin: 0 0 1rem;
    padding-left: 1.3em;
  }
  .info .info_dl dd {
    font-size: 1.6rem;
    margin: 0 0 1.6rem;
    padding-bottom: 25px;
    background: url(../img/line-dot.png) repeat-x bottom;
  }
}
body:not(.index) .main {
  padding-bottom: 4rem;
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"]) {
  text-decoration: underline;
  color: var(--clr_orange_light);
}
body:not(.index) .main a:not([class*=btn], [href*="tel:"]):hover {
  color: var(--clr_orange_light02);
  text-decoration: underline;
  opacity: 1;
}
@media screen and (min-width: 48em), print {
  body:not(.index) .main {
    padding-bottom: 8rem;
  }
  body:not(.index) .sidebar {
    padding-bottom: 4rem;
  }
}

.doctor .bg_drimg {
  background: url(../img/doctor.jpg) top right 0.5rem/auto 16rem no-repeat;
  padding-top: 17rem;
}

@media screen and (min-width: 48em), print {
  .doctor .bg_drimg {
    background-size: 100% auto;
    background-position: top right;
    padding: 2rem 0 5rem 3.5rem;
  }
  .doctor .bg_drimg > section {
    width: 30rem;
  }
}
.gv_galleryWrap {
  width: calc(100vw - 2rem) !important;
  height: calc((100vw - 2rem) * 0.95 + 3rem) !important;
}
.gv_galleryWrap .gv_gallery {
  width: 100% !important;
  height: 100% !important;
}
.gv_galleryWrap .gv_gallery .gv_panelWrap {
  width: calc(100vw - 2rem - 10px) !important;
  height: calc((100vw - 2rem) * 0.75) !important;
}
.gv_galleryWrap .gv_gallery .gv_panelWrap .gv_panel,
.gv_galleryWrap .gv_gallery .gv_panelWrap .gv_panel > img {
  width: 100% !important;
  height: 100% !important;
}
.gv_galleryWrap .gv_gallery .gv_filmstripWrap {
  height: 7.8rem !important;
}
.gv_galleryWrap .gv_gallery .gv_filmstripWrap .gv_filmstrip {
  height: 100% !important;
}
@media screen and (min-width: 48em), print {
  .gv_galleryWrap {
    width: 69rem !important;
    height: 64.1rem !important;
  }
  .gv_galleryWrap .gv_gallery .gv_panelWrap {
    width: 69rem !important;
    height: 51.8rem !important;
  }
  .gv_galleryWrap .gv_gallery .gv_filmstripWrap {
    height: 10.8rem !important;
  }
}

.access .root_lst {
  margin-top: 2rem;
}
.access .root_lst > li:not(:last-of-type) {
  margin-bottom: 2rem;
}
.access .root_lst > li .root_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
.access .root_lst > li .root_img > div {
  width: calc(50% - 0.5rem);
}
.access .root_lst > li .root_img > div img {
  width: 100%;
}
.access .root_lst > li .root_txt {
  font-size: 1.3rem;
  margin-bottom: 0;
}
.access #map_canvas {
  height: calc(100vw - 2rem);
}

@media screen and (min-width: 48em), print {
  .access .root_lst {
    margin-top: 3rem;
  }
  .access .root_lst > li:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .access .root_lst > li .root_img {
    gap: 2.8rem;
  }
  .access .root_lst > li .root_img > div {
    width: calc(50% - 1.4rem);
  }
  .access .root_lst > li .root_txt {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 0.8rem;
  }
  .access #map_canvas {
    height: 28rem;
  }
}