@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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 {
  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;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  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]) {
  -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;
}

:root {
  --clr_txt: #333;
  --main1: #E56B14;
  --main2:#117B44;
  --main3:#EDA817;
  --main4:#572E12;
  --sub1: #F19757;
  --sub2:#528E6F;
  --sub3:#F3C461;
  --sub4:#715949;
  --sub5:#E4E4E4;
  --sub6:#C5C5C5;
  --sub7:#7BCB76;
  --sub8:#F3E061;
  --sub9:#8CCB76;
  --sub10:#958476;
  --sub11:#D9CDBC;
  --bg1: #E7F6E3;
  --bg2:#FBF1D6;
  --bg3:#FEFAE4;
  --bg4:#FCFCF2;
  --line1: #ccc;
  --line_table: #DCDCDC;
  --line_menu: #DCDCDC;
  --lcolor: #528E6F;
  --lcolor_h: #F19757;
  --notes:#D50000;
  --pcolor: #ff6;
  --breakpoint: 760px;
}

@font-face {
  font-family: "fontello";
  src: url("fontello/font/fontello.woff2") format("woff2");
  font-display: fallback;
}
@keyframes bgzoom {
  100% {
    background-size: 120% auto;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_down {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_right {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade_left {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.anime {
  opacity: 0;
}

.trigger {
  animation: fade_up 0.8s ease-out 0.6s 1 normal forwards;
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cutin_right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes cutin_left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes balloon {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0.6rem);
  }
}
@keyframes airball {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes goro_l {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3rem) rotate(-180deg);
  }
}
@keyframes goro_r {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(3rem) rotate(180deg);
  }
}
@keyframes scroll_r {
  0% {
    transform: translateX(500%);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes pokon {
  0% {
    transform: scale(0, 0) translate(0%, 0%);
  }
  60% {
    transform: scale(1.3, 1.3) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.rotate01 {
  animation: rotate01 3s infinite steps(2) both normal;
}

@keyframes rotate01 {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}
.rotate02 {
  animation: rotate02 2.5s infinite steps(2) both normal;
}

@keyframes rotate02 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
.rotate02.delay {
  animation-delay: 0.5s;
}

.cloud {
  animation: cloud 5s infinite steps(1) both normal;
}

@keyframes cloud {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(15px, 0);
  }
  50% {
    transform: translate(0, 0);
  }
  70% {
    transform: translate(-15px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.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;
}

.txt_u {
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.txt_large {
  font-size: 120%;
}

.txt_small {
  font-size: 80%;
}

i, b {
  font-weight: normal;
  font-style: normal;
}

.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: 760px), print {
  .img_l {
    float: left;
    margin: 0 clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem) clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) 0;
    box-sizing: content-box;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  .img_r {
    float: right;
    margin: 0 0 clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
    box-sizing: content-box;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  img.tate {
    max-width: 25% !important;
  }
}
.sp_n {
  display: none;
}

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

.mt30 {
  margin-top: 3rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.main:where(section ~ section) {
  margin-top: 5rem;
}
.main > section {
  margin-top: 5rem;
}
.main > section:where(section ~ section) {
  margin-top: 5rem;
}
.main > section > section {
  margin-top: 4rem;
}
.main > section > section:where(section ~ section) {
  margin-top: 4rem;
}
.main > section > section > section {
  margin-top: 3rem;
}
.main > section > section > section:where(section ~ section) {
  margin-top: 3rem;
}
.main > section > section > section > section {
  margin-top: 3rem;
}
.main > section > section > section > section:where(section ~ section) {
  margin-top: 3rem;
}

@media screen and (min-width: 760px), print {
  .mt40 {
    margin-top: clamp(4.8rem, -0.7272727273rem + 7.2727272727vw, 8rem) !important;
  }
  .mt30 {
    margin-top: clamp(3.6rem, -0.5454545455rem + 5.4545454545vw, 6rem) !important;
  }
  .mt20 {
    margin-top: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem) !important;
  }
  .mt10 {
    margin-top: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) !important;
  }
  .main:where(section ~ section) {
    margin-top: clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
  }
  .main > section {
    margin-top: clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
  }
  .main > section:where(section ~ section) {
    margin-top: clamp(4.8rem, -0.7272727273rem + 7.2727272727vw, 8rem);
  }
  .main > section > section {
    margin-top: clamp(3.6rem, -0.5454545455rem + 5.4545454545vw, 6rem);
  }
  .main > section > section:where(section ~ section) {
    margin-top: clamp(3.6rem, -0.5454545455rem + 5.4545454545vw, 6rem);
  }
  .main > section > section > section {
    margin-top: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
  }
  .main > section > section > section:where(section ~ section) {
    margin-top: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
  }
  .main > section > section > section > section {
    margin-top: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
  }
  .main > section > section > section > section:where(section ~ section) {
    margin-top: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
  }
}
.tbl_time {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.4rem;
}
.tbl_time caption {
  caption-side: bottom;
  text-align: left;
}
.tbl_time caption ul li:not(:last-child) {
  margin-bottom: 0;
}
.tbl_time tr th {
  font-weight: normal;
}
.tbl_time tr th[scope=col] {
  padding: 0.4rem 0;
  text-align: center;
  background: var(--sub2);
  color: #fff;
}
.tbl_time tr th[scope=col]:first-child {
  width: 35%;
  border-radius: 0.2em 0 0 0;
}
.tbl_time tr th[scope=col]:last-child {
  border-radius: 0 0.2em 0 0;
}
.tbl_time tr th[scope=row] {
  border-bottom: 1px solid var(--sub2);
}
.tbl_time tr td {
  text-align: center;
  padding: 1.4rem 0.4rem;
  border-bottom: 1px solid var(--sub2);
  line-height: 1;
}
@media screen and (min-width: 760px), print {
  .tbl_time {
    table-layout: fixed;
    font-size: clamp(1.4rem, 0.7090909091rem + 0.9090909091vw, 1.8rem);
  }
  .tbl_time caption {
    font-size: 100%;
  }
  .tbl_time caption span {
    padding: 0 clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    margin-right: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
  }
  .tbl_time tr th[scope=col] {
    padding: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem) 0;
  }
  .tbl_time tr th[scope=col]:first-child {
    width: 30%;
  }
  .tbl_time tr td {
    padding: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) 0;
  }
}
.table_0 {
  width: 100%;
  background: #fff;
  border-collapse: collapse;
}
.table_0:not(:first-child) {
  margin-top: 2rem;
}
.table_0:not(:last-child) {
  margin-bottom: 2rem;
}
.table_0 .lst_ul li {
  margin: 0;
}
.table_0 .lst_ul li:not(:last-child) {
  margin: 0;
}
.table_0 caption {
  caption-side: bottom;
  text-align: left;
  margin-top: 0.5rem;
  font-size: 90%;
}
.table_0:not(:last-child) {
  margin-bottom: 2rem;
}
.table_0 th, .table_0 td {
  border: 1px solid var(--line_table);
  padding: 0.5rem;
}
.table_0 th {
  font-weight: 500;
}
.table_0 th[scope=col] {
  background: var(--sub2);
  color: #fff;
}
.table_0 th[scope=col]:not(:last-child) {
  border-right-color: #fff;
}
.table_0 th[scope=row] {
  background: var(--bg1);
}
.table_0.table_1 {
  line-height: 1.3;
}
.table_0.table_1 th[scope=row] {
  width: 30%;
}
.table_0.price td:last-child {
  text-align: right;
}

@media screen and (min-width: 760px), print {
  .table_0:not(:first-child) {
    margin-top: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
  }
  .table_0:not(:last-child) {
    margin-bottom: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
  }
  .table_0 th, .table_0 td {
    padding: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem) clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem);
  }
}
.scroll-hint {
  width: 100%;
  table-layout: inherit;
  white-space: inherit;
  -webkit-overflow-scrolling: touch; /* スマホでなめらかスクロール */
  overflow-x: scroll; /* 横スクロール処理 */
  white-space: nowrap; /* 自動改行させない */
}

@media screen and (min-width: 760px), print {
  .scroll-hint {
    overflow-x: auto; /* 横スクロール処理 */
    white-space: inherit; /* 自動改行させない */
  }
}
.gmap {
  width: 100%;
}

.tit_01, .tit_02, .tit_03, .tit_04, .tit_05, .tit_06 {
  font-weight: normal;
}
.tit_01 + *, .tit_02 + *, .tit_03 + *, .tit_04 + *, .tit_05 + *, .tit_06 + * {
  margin-top: 0 !important;
}

.h1_box {
  margin: 1rem;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 10rem;
  background: url(../img/tit_01.jpg) no-repeat center center/auto 100%;
  border-radius: 1rem;
  font-size: 2.2rem;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  padding: 1rem;
  text-align: center;
}
.tit_01 span {
  text-align: right;
  color: var(--main2);
  display: block;
  max-width: 1200px;
  width: 100%;
}

.tit_02, [data-styled] h2 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin: 0 auto 2rem;
  color: var(--sub4);
}
.tit_02::before, [data-styled] h2::before {
  content: "";
  display: block;
  background: url(../img/icon_h2.svg) center center no-repeat;
  background-size: contain;
  height: 1rem;
  margin-bottom: 0.3em;
}
.tit_02 span, [data-styled] h2 span {
  color: var(--sub1);
  font-size: 70%;
  display: block;
  margin-bottom: 0.2em;
}

.tit_03 {
  font-size: 2rem;
  line-height: 1.4;
  margin: 0 0 2rem;
  position: relative;
  color: var(--main2);
  border-bottom: 3px solid;
  padding-bottom: 0.2em;
}
.tit_03::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-bottom: 3px solid var(--sub7);
}

.tit_04 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--main1);
  border-bottom: 3px solid;
  padding-bottom: 0.2em;
}

.tit_05 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--sub2);
  border-bottom: 3px dotted;
  padding-bottom: 0.2em;
}

.tit_06 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--sub1);
}

@media screen and (min-width: 760px), print {
  .h1_box {
    margin: 1.5em;
    font-size: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
  }
  .tit_01 {
    min-height: clamp(24rem, -3.6363636364rem + 36.3636363636vw, 40rem);
    background: url(../img/tit_01.jpg) no-repeat center center/auto;
    font-size: clamp(3rem, 1.9636363636rem + 1.3636363636vw, 3.6rem);
    max-width: 1700px;
    border-radius: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
    margin: auto;
  }
  .tit_02, [data-styled] h2 {
    font-size: clamp(3.2rem, 2.1636363636rem + 1.3636363636vw, 3.8rem);
    margin: 0 auto clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
  }
  .tit_02 span, [data-styled] h2 span {
    font-size: 0.63em;
  }
  .tit_03 {
    font-size: clamp(2.4rem, 1.3636363636rem + 1.3636363636vw, 3rem);
    margin: 0 0 clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
  }
  .tit_04 {
    font-size: clamp(2.2rem, 1.1636363636rem + 1.3636363636vw, 2.8rem);
    margin: 0 0 clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
  }
  .tit_05 {
    font-size: clamp(2rem, 0.9636363636rem + 1.3636363636vw, 2.6rem);
    margin: 0 0 clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
  }
  .tit_06 {
    font-size: clamp(1.8rem, 0.7636363636rem + 1.3636363636vw, 2.4rem);
    margin: 0 0 clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
  }
}
.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: var(--main2);
  position: absolute;
  left: 0;
}
.lst_ul.lst_ul_2 > li::before {
  color: var(--main1);
}
.lst_ul.kome > li {
  padding-left: 1em;
}
.lst_ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
}
.lst_ul.notes {
  color: var(--notes);
}
.lst_ul.notes > li::before {
  color: var(--notes);
}
.lst_ul.check {
  color: var(--notes);
}
.lst_ul.check > li::before {
  font-family: "fontello";
  content: "\cc03";
}

.notes:where(:not(ul)) {
  color: var(--notes);
}

.kome:where(:not(ul)) {
  padding-left: 1em;
  position: relative;
}
.kome:where(:not(ul))::before {
  content: "※";
  position: absolute;
  left: 0;
}

.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: var(--main2);
}

.lst_ol {
  line-height: 1.4;
  counter-reset: number 0;
  margin: 1rem 0;
}
.lst_ol > li {
  counter-increment: number 1;
  padding: 0 0 0 2em;
  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: var(--main2);
  font-weight: bold;
  position: absolute;
  left: 0;
  width: 1.8em;
  text-align: right;
}
.lst_ol.lst_ol_circle > li::before {
  content: counter(number);
  width: 1.3em;
  aspect-ratio: 1/1;
  line-height: 0;
  padding-bottom: 0.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
  border-radius: 50%;
  font-size: 90%;
  top: 0.2em;
}
@media screen and (min-width: 760px), print {
  .lst_ol.lst_ol_circle > li::before {
    width: 1.5em;
    padding-bottom: 0.3rem;
    font-size: 90%;
  }
}

.lst_dl01 dt {
  font-weight: bold;
  color: var(--main1);
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}
.lst_dl01.lst_dl02 dt, .lst_dl01.lst_dl02 dd {
  padding: 0 0.5rem;
}
.lst_dl03 {
  margin: 1em 0;
}
.lst_dl03 dt, .lst_dl03 dd {
  padding: 0.5rem 1rem;
}
.lst_dl03 dt {
  background: var(--main1);
  color: #fff;
}
.lst_dl03 dd {
  border: 1px solid var(--main1);
}

@media screen and (min-width: 760px), print {
  .lst_ul.lst_ul_col2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .lst_ul.lst_ul_col2 > li {
    width: calc((100% - 1rem) / 2);
    margin-bottom: 0;
  }
  .lst_ul.lst_ul_col3 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .lst_ul.lst_ul_col3 > li {
    width: calc((100% - 2rem) / 3);
    margin-bottom: 0;
  }
  .lst_dl01 {
    width: 100%;
    display: grid;
    grid-template-columns: 9em auto;
    gap: 0;
  }
  .lst_dl01 dd {
    padding: 0 0 0 0.5em;
  }
  .lst_dl01.lst_dl02 dt, .lst_dl01.lst_dl02 dd {
    margin-bottom: 0.5em;
    padding: 0 0.5em;
  }
  .lst_dl01.lst_dl02 dt {
    width: 7em;
    text-align: center;
  }
  .lst_dl01.lst_dl02 dd {
    width: calc(100% - 7em);
  }
  .lst_dl03 {
    display: grid;
    grid-template-columns: 13em auto;
  }
  .lst_dl03 dt, .lst_dl03 dd {
    padding: 0.5em 1em;
  }
  .lst_dl03 dt {
    text-align: center;
  }
  .lst_dl03 dt:not(:last-of-type) {
    border-bottom: 1px solid #fff;
  }
  .lst_dl03 dd:not(:first-of-type) {
    border-top: none;
  }
}
.lst_dl_t dt {
  background: var(--main1);
  color: #fff;
  padding: 1rem;
  border: 1px solid var(--main1);
}
.lst_dl_t dd {
  border: 1px solid var(--main1);
  padding: 1rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 760px), print {
  .lst_dl_t.lst_dl_t_flex {
    display: flex;
    flex-wrap: wrap;
  }
  .lst_dl_t.lst_dl_t_flex dt {
    width: 10em;
    margin-bottom: 0.5em;
  }
  .lst_dl_t.lst_dl_t_flex dd {
    width: calc(100% - 10em);
  }
}

.lst_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-top: 1em;
}
.lst_flex li {
  width: 100%;
}
@media screen and (min-width: 760px), print {
  .lst_flex {
    gap: 1rem 3rem;
  }
  .lst_flex li {
    width: auto;
  }
}

.tit_no {
  counter-reset: number 0;
}
.tit_no section, .tit_no div {
  counter-increment: number 1;
}
.tit_no section .no::before, .tit_no div .no::before {
  content: counter(number) ".";
  margin-right: 0.5em;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.flex > li:not(:last-child) {
  margin: 0;
}

.flex2 {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
}
.flex2 > section, .flex2 > li, .flex2 > div {
  width: 100%;
}
.flex2.flex2_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 4rem;
}
.flex2.flex2_ul li {
  width: 100%;
}

.flex3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex3 > li {
  width: 46%;
}

@media screen and (min-width: 760px), print {
  .flex {
    gap: 1rem 5rem;
  }
  .flex2 {
    justify-content: space-between;
    gap: 6rem 2rem;
  }
  .flex2 > section, .flex2 > li, .flex2 > div {
    width: 48%;
  }
  .flex2 > section:nth-child(-n+2), .flex2 > li:nth-child(-n+2), .flex2 > div:nth-child(-n+2) {
    margin-top: 0 !important;
  }
  .flex2.flex2_ul {
    gap: 3rem;
    margin-top: 1rem;
  }
  .flex2.flex2_ul li {
    width: auto;
  }
  .flex2.flex2_ul li .btn_detail {
    margin: 0;
  }
  .flex3 {
    justify-content: flex-start;
  }
  .flex3 li {
    width: 31%;
  }
  .flex3 li:not(:nth-child(3n)) {
    margin: 0 2rem 0 0;
  }
}
.js-tel {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0 0.4rem;
}
.js-tel a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}

.box_ {
  padding: 1rem;
}
@media screen and (min-width: 760px), print {
  .box_ {
    padding: 3rem;
  }
}

.btn_rsv {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.4rem;
  background: var(--main1);
  color: #fff;
  border-radius: 1.5em;
}
.btn_rsv::before {
  content: "";
  display: block;
  background: url(../img/icon_rsv.svg) center center no-repeat;
  background-size: contain;
  aspect-ratio: 1/1;
  width: 1.3em;
}
.btn_detail {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1em auto;
  padding: 0.4rem 2rem;
  background: var(--lcolor);
  color: #fff;
  text-decoration: none !important;
  border-radius: 1.5em;
}
.btn_detail::before {
  font-family: "fontello";
  content: "\e82d";
  margin-right: 0.3em;
}
@media screen and (min-width: 760px), print {
  .btn_detail {
    min-width: 20rem;
    text-align: center;
  }
  .btn_detail:is(:hover, :focus-visible) {
    background: var(--lcolor_h);
  }
}

.linkout {
  display: inline-block;
  color: var(--clr_txt);
  text-decoration: none !important;
}
.linkout::after {
  font-family: "fontello";
  content: "\cc05";
  font-size: 0.8em;
  margin-left: 0.3em;
}
@media screen and (min-width: 760px), print {
  .linkout::after {
    margin-left: 0.5em;
  }
}

.slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 9rem;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--main1);
  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: "\e836";
  transform: rotate(-90deg);
}
.slick-arrow.slick-next {
  right: -2.6rem;
}
.slick-arrow.slick-next::before {
  font-family: "fontello";
  content: "\e836";
  transform: rotate(90deg);
}

@media screen and (min-width: 760px), print {
  .slick-arrow {
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--main1);
    top: 26rem;
  }
  .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) {
    color: var(--main1);
    background: #fff;
    opacity: 1;
  }
}
.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(--main1);
}
.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: 760px), print {
  .slick-dots {
    margin: 1.6rem auto;
  }
  .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
}
.slide-items {
  width: 100%;
  height: 100%;
}
.slide-items img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.marker {
  background: linear-gradient(transparent 60%, var(--pcolor) 60%);
  width: -moz-fit-content;
  width: fit-content;
}

/* fadeIn */
.fadein {
  opacity: 0;
  transition: 1.2s;
}

.fade_left {
  transform: translate(-80px, 0);
}

.fade_right {
  transform: translate(80px, 0);
}

.fade_up {
  transform: translate(0, 80px);
}

.fade_scale {
  transform: scale(0.5, 0.5);
}

.fadein.parallax {
  opacity: 1;
  transform: translate(0, 0);
}

.txt_box {
  margin: 2rem 0;
  padding: 1rem;
  border-radius: 0.8em;
}
.txt_box:last-child {
  margin-bottom: 0;
}
.txt_box.txt_box1 {
  background: var(--bg1);
}
.txt_box.txt_box2 {
  background: var(--bg2);
}
.txt_box > section:not(:first-child) {
  margin-top: 1.5em;
}

@media screen and (min-width: 760px), print {
  .txt_box {
    padding: 1.5em 1.5em;
  }
}
.nav_menu_box {
  margin-top: 4rem;
}
@media screen and (min-width: 760px), print {
  .nav_menu_box {
    margin-top: 10rem;
  }
}

.nav_menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav_menu li {
  width: calc(100% - 1rem);
  text-align: center;
  margin-top: 0.5rem;
}
.nav_menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: var(--lcolor);
  color: #fff;
  border-radius: 3rem;
  padding: 0.5rem 2em;
  text-decoration: none !important;
  position: relative;
}
.nav_menu li a::after {
  font-family: "fontello";
  content: "\e835";
  position: absolute;
  right: 1rem;
  letter-spacing: 0;
}
@media screen and (min-width: 760px), print {
  .nav_menu {
    gap: 1em;
  }
  .nav_menu li {
    width: calc((100% - 3em) / 4);
    margin-top: 0;
  }
  .nav_menu li a {
    height: clamp(3.6rem, -0.5454545455rem + 5.4545454545vw, 6rem);
  }
  .nav_menu li a:hover {
    background: var(--lcolor_h);
    color: #fff !important;
  }
  .nav_menu li a::after {
    right: 1em;
  }
}

.fixed_reserve {
  display: none;
}

@media screen and (min-width: 760px), print {
  .fixed_reserve {
    display: flex;
    gap: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    position: fixed;
    right: 0;
    top: clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
    z-index: 100;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .fixed_reserve a, .fixed_reserve span {
    display: flex;
    background: var(--main1);
    color: #fff;
    font-size: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
    padding: clamp(0.84rem, -0.1272727273rem + 1.2727272727vw, 1.4rem) clamp(1.08rem, -0.1636363636rem + 1.6363636364vw, 1.8rem);
    border-radius: 0.6rem 0 0 0.6rem;
    border-radius: clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem) 0 0 clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem);
    transition: all 0.3s ease;
  }
  .fixed_reserve a::before, .fixed_reserve span::before {
    font-family: "fontello";
    content: "\e80c";
    font-weight: normal;
  }
  .fixed_reserve span::before {
    font-family: "fontello";
    content: "\e802";
  }
}
.lt1 {
  padding-left: 1em;
  letter-spacing: 1em;
}

.phtxt_box {
  margin-bottom: 2rem;
}
.phtxt_box .ph {
  margin-bottom: 1rem;
}

@media screen and (min-width: 760px), print {
  .phtxt_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 4rem;
  }
  .phtxt_box .ph {
    width: 40rem;
    flex-shrink: 0;
  }
  .phtxt_box .txt {
    flex: 1 1 auto;
  }
  .phtxt_box.phtxt_box_r .ph {
    order: 1;
  }
}
.point::before {
  content: "≫";
  margin-right: 0.5em;
}

.other::after {
  font-family: "fontello";
  content: "\f08e";
  margin-left: 0.5rem;
}

.faq_lst {
  counter-reset: number 0;
}
.faq_lst dt {
  background: var(--sub1);
  color: #fff;
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  counter-increment: number 1;
}
.faq_lst dt::before {
  content: "Q" counter(number) ".";
  margin-right: 0.5rem;
  flex-shrink: 0;
  width: 2em;
  text-align: right;
}
.faq_lst dd:not(:last-of-type) {
  margin-bottom: 3rem;
}
.faq_lst dd {
  padding: 0.5rem;
  display: flex;
  gap: 0.5rem;
}
.faq_lst dd::before {
  content: "A" counter(number) ".";
  flex-shrink: 0;
  color: var(--main1);
  width: 2em;
  text-align: right;
}

@media screen and (min-width: 760px), print {
  .faq_lst dt {
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
  }
  .faq_lst dd:not(:last-of-type) {
    margin-bottom: 4rem;
  }
  .faq_lst dd {
    padding: 0.5rem 1rem;
  }
}
@media print {
  .header {
    position: absolute !important;
  }
}
html {
  font-size: 2.7777777778vw;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg1);
  background-image: repeating-linear-gradient(90deg, transparent 0px, transparent 10px, rgba(255, 255, 255, 0.5) 10px, rgba(255, 255, 255, 0.5) 13px);
  color: var(--clr_txt);
  font-family: "Kiwi Maru", "Hiragino Sans", "Yu Gothic medium", "游ゴシック Medium", "Yu Gothic", Meiryo, sans-serif;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  top: 0;
  z-index: 90;
  opacity: 0;
  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;
}
body > .wrap {
  margin: 4rem auto 0rem;
}

p:where(:first-of-type) {
  margin-top: 0;
}
p:where(:last-of-type) {
  margin-bottom: 0;
}

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

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

@media screen and (min-width: 760px), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: min(100% - 4rem, 1200px);
  }
  body::after {
    display: none;
  }
  body {
    background-image: repeating-linear-gradient(90deg, transparent 0px, transparent 20px, rgba(255, 255, 255, 0.5) 20px, rgba(255, 255, 255, 0.5) 25px);
  }
  a, button {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  .wrap {
    max-width: 1200px;
    margin: auto;
  }
  .main {
    font-size: unset;
    font-size: clamp(1.4rem, 0.7090909091rem + 0.9090909091vw, 1.8rem);
    line-height: 2;
  }
  .main a:where(:not([class*=btn])) img {
    transition: all 0.3s ease;
  }
  .main a:where(:not([class*=btn])):hover {
    opacity: 1;
    text-decoration: none;
    color: var(--lcolor_h);
  }
  .main a:where(:not([class*=btn])):hover img {
    opacity: 0.8;
  }
}
:target {
  scroll-margin-top: 2rem;
}
@media screen and (min-width: 760px), print {
  :target {
    scroll-margin-top: 4rem;
  }
}

.header {
  position: relative;
  height: 6.5rem;
}
.header > .wrap {
  padding: 1rem;
}
.header > .wrap .logo {
  width: 100%;
  height: 6.6rem;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: 0.5s;
}
.header > .wrap .logo.scroll {
  background: #fff;
}
.header > .wrap .logo.hide {
  transform: translateY(-150%);
}
.header > .wrap .logo a {
  display: block;
  width: calc(100% - 5.6rem);
  height: 100%;
  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: 5.6rem 0 0;
  display: none;
}
.header > .wrap .headR ul {
  display: flex;
  align-items: center;
}
.header > .wrap .headR ul li .js-tel {
  font-size: 1.8rem;
}
@media screen and (min-width: 760px), print {
  .header {
    padding: 0 1rem;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 10rem;
  }
  .header > .wrap {
    padding: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) 0;
    display: flex;
    justify-content: space-between;
  }
  .header > .wrap .logo {
    width: 40%;
    height: 8rem;
    padding: 0;
    position: relative;
    z-index: 101;
    background: none;
  }
  .header > .wrap .logo a {
    width: 100%;
  }
  .header > .wrap .logo.scroll {
    background: none;
  }
  .header > .wrap .headR {
    flex: 1 1 auto;
    display: block;
    margin: 0;
  }
  .header > .wrap .headR ul {
    justify-content: flex-end;
    margin-top: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
  }
  .header > .wrap .headR ul li .js-tel {
    background: var(--sub2);
    color: #fff;
    font-size: clamp(1.44rem, -0.2181818182rem + 2.1818181818vw, 2.4rem);
    padding: 0.1em 1em 0.2em;
    border-radius: 1.5em;
  }
  .header > .wrap .headR ul li .js-tel::before {
    font-family: "fontello";
    content: "\e802";
  }
}
#nav {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
#nav .logo, #nav .tel {
  display: none;
  transition: all 0.3s ease;
}
#nav #sp_menu {
  width: 4.6rem;
  height: 4.6rem;
  background: var(--sub1);
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  transition: 0.5s;
}
#nav #sp_menu.hide {
  transform: translateY(-220%);
}
#nav #sp_menu::before {
  display: block;
  font-family: "fontello";
  content: "\e800";
  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: "\e801";
}
#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 - 8rem);
  overflow-y: auto;
  background: #fff;
  padding: 1.6rem;
  margin: auto;
  position: absolute;
  top: 6.6rem;
  left: 0;
  right: 0;
  z-index: 100;
}
#nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.4rem;
}
#nav .gnav_subnav .gnav > li a.current, #nav .gnav_subnav .gnav > li .sub.current {
  color: var(--sub1);
}
#nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li .sub {
  padding: 1rem 0;
}
#nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li .sub::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 0.5em;
  background: var(--sub3);
  border-radius: 50%;
  margin-right: 0.5em;
}
#nav .gnav_subnav .gnav > li .sub {
  gap: 0.4rem;
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\e835";
  color: var(--sub1);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
  transition: all 0.3s ease;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  transform: rotate(180deg);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  background: rgb(from var(--sub1) r g b/0.9);
  border-radius: 0.5rem;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li {
  width: 100%;
  border-top: 1px dotted #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a {
  display: block;
  padding: 1rem;
  color: #fff;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav li a.current {
  color: var(--sub4);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background: var(--main1);
  text-align: center;
  padding: 0.6rem 0;
  margin: 1rem 0 0;
}
#nav .gnav_subnav #menu_close::before {
  font-family: "fontello";
  content: "\e801";
  margin: 0 0.6rem 0 0;
}

@media screen and (min-width: 760px), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: 0.8s;
  }
  #nav.scroll {
    background: #fff;
  }
  #nav.scroll .gnav_subnav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 1em;
  }
  #nav.scroll .gnav_subnav .gnav {
    margin: 0;
    width: auto;
    font-size: clamp(1.1rem, -0.1090909091rem + 1.5909090909vw, 1.8rem);
    gap: 0.5em;
  }
  #nav.scroll .gnav_subnav .gnav > li > a, #nav.scroll .gnav_subnav .gnav > li .sub {
    font-size: clamp(1.1rem, -0.1090909091rem + 1.5909090909vw, 1.8rem);
    line-height: 1.1;
  }
  #nav.scroll .gnav_subnav .gnav > li > a::before, #nav.scroll .gnav_subnav .gnav > li .sub::before {
    margin-right: 0.5em;
  }
  #nav.scroll .gnav_subnav .gnav > li:last-child > a::after {
    margin-left: 0.5em;
  }
  #nav.scroll .logo, #nav.scroll .tel {
    display: block;
    width: clamp(10.2rem, -1.5454545455rem + 15.4545454545vw, 17rem);
    flex-shrink: 0;
  }
  #nav.scroll .tel {
    background: var(--sub2);
    color: #fff;
    font-size: clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem);
    padding: 0.1em 1em;
    border-radius: 1.5em;
  }
  #nav.scroll .tel::before {
    font-family: "fontello";
    content: "\e802";
  }
  #nav.fixed {
    opacity: 1;
    z-index: 100;
    position: fixed;
  }
  #nav.hide {
    transform: translateY(-300%);
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    background: none;
    max-height: calc(var(--vh, 1vh) * 100);
    overflow-y: visible;
    padding: 0;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5em;
    border: none;
    font-size: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
  }
  #nav .gnav_subnav .gnav > li {
    position: relative;
  }
  #nav .gnav_subnav .gnav > li:last-child a::after {
    content: "";
    display: block;
    aspect-ratio: 1/1;
    width: 0.5em;
    background: var(--sub3);
    border-radius: 50%;
    margin-left: 1.5em;
  }
  #nav .gnav_subnav .gnav > li a, #nav .gnav_subnav .gnav > li .sub {
    justify-content: center;
    text-align: center;
    font-size: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
    padding: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) 0;
    margin: 0;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li a::after, #nav .gnav_subnav .gnav > li .sub::after {
    margin: 0 0 0 clamp(0.48rem, -0.0727272727rem + 0.7272727273vw, 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: var(--main1);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li a.close, #nav .gnav_subnav .gnav > li .sub.close {
    color: var(--main1);
  }
  #nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li .sub::before {
    margin-right: 1.5em;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: clamp(36rem, -5.4545454545rem + 54.5454545455vw, 60rem);
    position: absolute;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    padding: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem) clamp(0.96rem, -0.1454545455rem + 1.4545454545vw, 1.6rem);
    border-radius: 0.5rem;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li {
    width: 49%;
    border-top: none;
    border-bottom: 1px dotted #fff;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li:last-child {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a {
    padding: 1rem 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    height: 100%;
    font-size: clamp(1.08rem, -0.1636363636rem + 1.6363636364vw, 1.8rem);
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav li a:is(:hover, :focus-visible, .current) {
    color: var(--sub4);
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  padding: 0 1rem 4rem;
  font-size: 1.4rem;
  line-height: 1.6;
  background: var(--bg1);
  position: relative;
}
.overview::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--bg1);
  width: 30%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -2.5em;
}
.overview .clinic_name {
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
  top: -1em;
}
.overview .clinic_name img {
  max-width: 60%;
  margin: auto;
}
.overview .clinic_prof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.overview .clinic_prof .js-tel {
  font-size: 150%;
}
.overview .clinic_prof .btn_rsv {
  margin: 0 auto;
}
.overview > .wrap .gaiyo {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5em;
}
.overview > .wrap .gaiyo dt {
  width: 6em;
  padding: 0.4rem;
  text-align: center;
  color: #fff;
  border-radius: 0.2em;
  background: var(--sub2);
}
.overview > .wrap .gaiyo dt.lt1 {
  padding-left: 1em;
  letter-spacing: 1em;
}
.overview > .wrap .gaiyo dd {
  padding: 0.4rem;
  width: calc(100% - 6.5em);
}
.overview > .wrap .overviewL .tbl_time {
  margin: 2rem 0;
}
.gmap {
  height: 35rem;
  border: 1px solid var(--sub2);
  border-radius: 1rem;
  overflow: hidden;
}

@media screen and (min-width: 760px), print {
  .overview {
    padding: clamp(13.02rem, -1.9727272727rem + 19.7272727273vw, 21.7rem) 1rem clamp(5.28rem, -0.8rem + 8vw, 8.8rem);
    font-size: clamp(1.4rem, 0.7090909091rem + 0.9090909091vw, 1.8rem);
  }
  .overview::before {
    width: clamp(15rem, -2.2727272727rem + 22.7272727273vw, 25rem);
    font-size: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    top: -6em;
  }
  .overview .clinic_name {
    margin: 0 0 clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
    width: clamp(21rem, -3.1818181818rem + 31.8181818182vw, 35rem);
    font-size: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -2.5em;
  }
  .overview .clinic_name img {
    max-width: initial;
  }
  .overview > .wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  .overview > .wrap .gaiyo {
    gap: 1.2em;
  }
  .overview > .wrap .gaiyo dt {
    padding: 0;
    width: 7em;
  }
  .overview > .wrap .gaiyo dd {
    padding: 0;
    width: calc(100% - 7em - 1.2em);
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48%;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .gmap {
    height: 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: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -0.2rem 0.2rem rgba(102, 102, 102, 0.2);
}
#tel_up ul {
  width: calc(100% - 4rem);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
#tel_up ul li {
  flex: auto;
  justify-content: center;
  align-items: center;
  gap: 0 0.4rem;
  height: 100%;
  text-align: center;
}
#tel_up ul li .js-tel {
  flex: auto;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 1.8rem;
  background: var(--sub2);
  color: #fff;
}
#tel_up ul li .js-tel::before {
  display: none;
}
#tel_up ul li .js-tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0 0.4rem;
}
#tel_up ul li .js-tel a::before {
  content: "Tel.";
}
#tel_up ul li .btn_rsv {
  height: 100%;
  display: flex;
  border-radius: 0;
}
#tel_up #pageup {
  display: block;
  width: 4rem;
  height: 100%;
  font-size: 1.6rem;
  text-align: center;
  padding: 1rem;
  line-height: 1;
  background: var(--main3);
  overflow: hidden;
  position: relative;
  color: #fff;
  z-index: 101;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e836";
}
#tel_up #pageup .clip {
  display: block;
  font-size: 1rem;
  clip-path: inset(50%);
  color: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 0;
}

@media screen and (min-width: 760px), print {
  #tel_up {
    width: clamp(3.6rem, -0.5454545455rem + 5.4545454545vw, 6rem);
    height: clamp(3.6rem, -0.5454545455rem + 5.4545454545vw, 6rem);
    bottom: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
    right: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
    left: auto;
    background: none;
    padding: 0;
    box-shadow: none;
  }
  #tel_up ul {
    display: none;
  }
  #tel_up #pageup {
    width: 100%;
    font-size: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
    border-radius: 50%;
  }
  #tel_up #pageup:is(:hover, :focus-visible) {
    background: var(--lcolor_h);
    opacity: 1;
  }
}
.footer {
  text-align: center;
  padding: 0 0 4rem;
  background: var(--sub10);
  color: #fff;
}
.footer .copy {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer ul {
  display: none;
}

@media screen and (min-width: 760px), print {
  .footer {
    padding: clamp(3rem, -0.4545454545rem + 4.5454545455vw, 5rem) 2rem clamp(3.84rem, -0.5818181818rem + 5.8181818182vw, 6.4rem);
  }
  .footer .copy {
    margin: clamp(4.8rem, -0.7272727273rem + 7.2727272727vw, 8rem) auto 0;
    font-size: clamp(1.08rem, -0.1636363636rem + 1.6363636364vw, 1.8rem);
    max-width: 1200px;
    text-align: right;
  }
  .footer ul {
    display: block;
    text-align: center;
    max-width: 1200px;
    text-align: left;
    margin: auto;
  }
  .footer ul li {
    display: inline-block;
    font-size: clamp(1.4rem, 0.7090909091rem + 0.9090909091vw, 1.8rem);
    line-height: 1.3;
    margin: 0 0 1em;
    -webkit-text-size-adjust: none;
    padding: 0 clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
    border-right: 1px solid;
  }
  .footer ul li a {
    opacity: 1;
  }
  .footer ul li a:hover {
    text-decoration: underline;
  }
  .footer ul li.last-in-row {
    border-right-color: transparent !important;
  }
  .footer ul li.treatment {
    display: none;
  }
}
body.index .tit_02::before {
  content: none;
}
body.index .main {
  overflow: hidden;
}
@media screen and (min-width: 760px), print {
  body.index > .wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}

.keyvsl {
  width: 100%;
  position: relative;
  padding: 0 1.5rem;
}
.keyvsl .kv-clip-svg {
  position: absolute;
  width: 0;
  height: 0;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 41rem;
  overflow: hidden;
  visibility: hidden;
  border-radius: 1.5rem;
}
.keyvsl #keyvsl .slick-list div img {
  height: 41rem !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: relative;
  z-index: 1;
  margin-top: -11.5rem;
  text-align: center;
  opacity: 0;
  animation: fade_up 0.8s ease-out 0.6s 1 normal forwards;
}
.keyvsl > .wrap .catch {
  background: var(--sub4);
  color: #fff;
  font-size: 1.7rem;
  padding: 0.3em 0.5em 0.4em;
  border-radius: 2em;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.keyvsl > .wrap .cont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.keyvsl > .wrap .cont li {
  width: 40%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  background: var(--sub1);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 50%;
}
.keyvsl > .wrap .cont li::before {
  line-height: 1;
  font-size: 4rem;
  margin: 1rem 0 0.5rem;
}
.keyvsl > .wrap .cont .sindansyo::before {
  font-family: "fontello";
  content: "\e837";
}
.keyvsl > .wrap .cont .syosin::before {
  font-family: "fontello";
  content: "\e838";
}
.keyvsl > .wrap .cont .acs::before {
  font-family: "fontello";
  content: "\e839";
}
.keyvsl > .wrap .cont .seiho::before {
  font-family: "fontello";
  content: "\e83b";
}
.keyvsl > .wrap .cont .jiritu::before {
  font-family: "fontello";
  content: "\e83a";
}

@media screen and (min-width: 760px), print {
  .keyvsl {
    padding: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem) 2rem 0;
  }
  .keyvsl #keyvsl {
    height: clamp(49.2rem, -7.4545454545rem + 74.5454545455vw, 82rem);
    max-width: clamp(102rem, -15.4545454545rem + 154.5454545455vw, 170rem);
    margin: auto;
    border-radius: 0;
  }
  .keyvsl #keyvsl.kv__img {
    clip-path: url(#kv-clip-path);
  }
  .keyvsl #keyvsl .slick-list div {
    font-size: 0;
  }
  .keyvsl #keyvsl .slick-list div img {
    height: clamp(49.2rem, -7.4545454545rem + 74.5454545455vw, 82rem) !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 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    position: absolute;
    bottom: clamp(3rem, -0.4545454545rem + 4.5454545455vw, 5rem);
    left: 0;
    right: 0;
    margin: auto;
  }
  .keyvsl > .wrap .catch {
    background: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    order: 1;
  }
  .keyvsl > .wrap .catch span {
    background: var(--sub4);
    display: block;
    width: 9em;
    border-radius: 2em;
    font-size: clamp(2.04rem, -0.3090909091rem + 3.0909090909vw, 3.4rem);
  }
  .keyvsl > .wrap .catch span:not(:first-child) {
    margin-top: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
  }
  .keyvsl > .wrap .cont {
    margin-top: 0;
    flex: 1;
    justify-content: flex-start;
    gap: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
  }
  .keyvsl > .wrap .cont li {
    width: clamp(9rem, -1.3636363636rem + 13.6363636364vw, 15rem);
    font-size: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
    line-height: 1.2;
    padding: 0;
  }
  .keyvsl > .wrap .cont li::before {
    font-size: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
  }
}
.info {
  margin: 4rem 1.5rem;
}
.info .wrap {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
}
.info .wrap .tit_02 {
  width: 100%;
}
.info .wrap #info01 {
  line-height: 1.6;
  overflow-y: auto;
  overscroll-behavior-y: none;
  max-height: 35rem;
}
.info .wrap #info01 .accordion-container {
  width: 100%;
  margin: 0;
}
.info .wrap #info01 .accordion-container .accordion-item {
  width: 100%;
  margin-bottom: 2px;
  border: none;
  border-radius: 0;
  display: block;
  overflow: hidden;
}
.info .wrap #info01 .accordion-container .accordion-item:not(:first-child) {
  margin-top: 2rem;
}
.info .wrap #info01 .accordion-container .accordion-item summary.accordion-header {
  display: flex;
  align-items: flex-start;
  padding: 0;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  color: var(--main2);
}
.info .wrap #info01 .accordion-container .accordion-item summary.accordion-header::before {
  font-family: "fontello";
  content: "\e81d";
  transition: transform 0.2s ease-out !important; /* 強制的に最優先 */
}
.info .wrap #info01 .accordion-container .accordion-item summary.accordion-header::-webkit-details-marker {
  display: none;
}
.info .wrap #info01 .accordion-container .accordion-item.is-active summary.accordion-header::before {
  transform: rotate(180deg);
}
.info .wrap #info01 .accordion-container .accordion-item .accordion-badge,
.info .wrap #info01 .accordion-container .accordion-item .accordion-date,
.info .wrap #info01 .accordion-container .accordion-item .accordion-title {
  display: inline-block;
  padding: 0;
  margin-right: 0.5em;
}
.info .wrap #info01 .accordion-container .accordion-item .accordion-badge {
  background-color: var(--main1);
  color: #fff;
  font-size: 0.75rem;
  border-radius: 4px;
}
.info .wrap #info01 .accordion-container .accordion-item .accordion-date {
  color: var(--clr_txt);
}
.info .wrap #info01 .accordion-container .accordion-item .accordion-content {
  display: block !important; /* JSで高さを操るため常にblock */
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.info .wrap #info01 .accordion-container .accordion-item.is-active .accordion-content {
  height: auto;
  opacity: 1;
}

@media screen and (min-width: 760px), print {
  .info {
    padding: 0 2rem;
    margin-top: clamp(7.2rem, -1.0909090909rem + 10.9090909091vw, 12rem);
    margin-bottom: clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
  }
  .info .wrap {
    display: flex;
    align-items: flex-start;
    padding: clamp(5.4rem, -0.8181818182rem + 8.1818181818vw, 9rem) clamp(3.42rem, -0.5181818182rem + 5.1818181818vw, 5.7rem) clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
    border-radius: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
  }
  .info .wrap .tit_02 {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 clamp(3.72rem, -0.5636363636rem + 5.6363636364vw, 6.2rem) 0 0;
  }
  .info .wrap .info_box {
    flex: 1;
  }
  .info .wrap #info01 {
    max-height: 45rem;
  }
  .info .wrap #info01 .accordion-container .accordion-item {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
  }
  .info .wrap #info01 .accordion-container .accordion-item:not(:first-child) {
    margin-top: 1em;
  }
  .info .wrap #info01 .accordion-container .accordion-item summary.accordion-header {
    padding: 0;
  }
}
.symptom {
  background: #fff;
  padding: 0 1.5rem 4rem;
  margin-top: 6rem;
}
.symptom .txt {
  background: var(--bg2) url(../img/logo_mark.svg) center center no-repeat;
  background-size: auto 80%;
  padding: 1.5rem;
  position: relative;
  top: -2rem;
  border-radius: 1rem;
}
.symptom .symptomSwiper {
  padding: 5px;
}
.symptom .symptomSwiper .swiper-slide:last-child {
  margin-right: 0;
}
.symptom .symptomSwiper .swiper-slide {
  display: block;
  flex: 0 0 calc((100% - 1rem) / 2);
  margin-right: 1rem; /* ★ SP の間隔はここで調整 */
  padding: 1rem 0 1rem;
  background: var(--bg3);
  border-radius: 8px;
  aspect-ratio: 28/35;
  text-align: center;
  color: var(--main1);
  box-shadow: 0 0 5px rgb(from var(--sub2) r g b/0.3);
  border-radius: 7rem 7rem 1rem 1rem;
  line-height: 1.5;
}
.symptom .symptomSwiper .swiper-slide span {
  font-size: 90%;
}
.symptom .symptomSwiper .swiper-slide::before {
  content: "";
  display: block;
  width: 70%;
  aspect-ratio: 1/1;
  margin: auto;
  background: center center no-repeat;
  background-size: contain;
  margin-bottom: 1rem;
}
.symptom .symptomSwiper .symp_yaruki::before {
  background-image: url(../img/icon_symp_01.svg);
}
.symptom .symptomSwiper .symp_fuan::before {
  background-image: url(../img/icon_symp_02.svg);
}
.symptom .symptomSwiper .symp_sleep::before {
  background-image: url(../img/icon_symp_03.svg);
}
.symptom .symptomSwiper .symp_syutyu::before {
  background-image: url(../img/icon_symp_04.svg);
}
.symptom .symptomSwiper .symp_hattatu::before {
  background-image: url(../img/icon_symp_05.svg);
}
.symptom .symptomSwiper .symp_pms::before {
  background-image: url(../img/icon_symp_06.svg);
}
.symptom .symptomSwiper .btn_scroll {
  margin-top: 1rem;
}
.symptom .symptomSwiper .btn_scroll .btn {
  display: flex;
  justify-content: space-between;
  align-items: inherit;
}
.symptom .symptomSwiper .swiper-button-next, .symptom .symptomSwiper .swiper-button-prev {
  position: static;
  background: url(../img/icon_arrow.svg) center center no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1/1;
  margin-top: 0;
  display: inline-block;
}
.symptom .symptomSwiper .swiper-button-next::after, .symptom .symptomSwiper .swiper-button-prev::after {
  content: "";
}
.symptom .symptomSwiper .swiper-button-prev {
  transform: rotate(180deg);
}
.symptom .symptomSwiper {
  /* ★ スクロールバー */
}
.symptom .symptomSwiper .swiper-scrollbar {
  height: 3px;
  background: var(--sub5);
  margin-top: 1rem;
  position: static;
}
.symptom .symptomSwiper .swiper-scrollbar-drag {
  background: var(--sub6);
}
@media screen and (min-width: 760px), print {
  .symptom {
    overflow: hidden;
    padding: 0;
    background: none;
    position: relative;
  }
  .symptom::before, .symptom::after {
    content: "";
    display: block;
    position: absolute;
  }
  .symptom::before {
    width: 100%;
    height: clamp(36.72rem, -5.5636363636rem + 55.6363636364vw, 61.2rem);
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
  }
  .symptom .wrap {
    display: flex;
    align-items: flex-end;
    height: clamp(42.9rem, -6.5rem + 65vw, 71.5rem);
    position: relative;
    z-index: 1;
  }
  .symptom .wrap::before {
    content: "";
    display: block;
    background: var(--bg2);
    position: absolute;
    z-index: 7;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 100%;
  }
  .symptom .txt {
    flex: 1;
    margin-right: clamp(2.16rem, -0.3272727273rem + 3.2727272727vw, 3.6rem);
    height: 100%;
    margin-top: 0;
    top: 0;
    position: relative;
    z-index: 10;
    padding: clamp(11.46rem, -1.7363636364rem + 17.3636363636vw, 19.1rem) clamp(2.34rem, -0.3545454545rem + 3.5454545455vw, 3.9rem) 1em 1rem;
    border-radius: 0 clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem) clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem) 0;
    background-size: clamp(22.8rem, -3.4545454545rem + 34.5454545455vw, 38rem);
    background-position: left clamp(1.68rem, -0.2545454545rem + 2.5454545455vw, 2.8rem) top clamp(10.44rem, -1.5818181818rem + 15.8181818182vw, 17.4rem);
  }
  .symptom .txt::after {
    content: "";
    display: block;
    background: #fff;
    font-size: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    width: 3.6em;
    right: -3.6em;
    bottom: 0;
    position: absolute;
    height: clamp(36.72rem, -5.5636363636rem + 55.6363636364vw, 61.2rem);
  }
  .symptom .symptomSwiper {
    overflow: visible;
    width: clamp(41.1rem, -6.2272727273rem + 62.2727272727vw, 68.5rem);
    margin-bottom: clamp(4.2rem, -0.6363636364rem + 6.3636363636vw, 7rem);
  }
  .symptom .symptomSwiper .swiper-slide {
    flex: 0 0 clamp(180px, 22vw, 280px);
    margin-right: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem); /* ★ PC の間隔はここで調整 */
    border-radius: clamp(8.4rem, -1.2727272727rem + 12.7272727273vw, 14rem) clamp(8.4rem, -1.2727272727rem + 12.7272727273vw, 14rem) clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
    font-size: clamp(1.32rem, -0.2rem + 2vw, 2.2rem);
    padding-top: clamp(3rem, -0.4545454545rem + 4.5454545455vw, 5rem);
  }
  .symptom .symptomSwiper .swiper-slide::before {
    width: clamp(10.8rem, -1.6363636364rem + 16.3636363636vw, 18rem);
  }
  .symptom .symptomSwiper .btn_scroll {
    display: flex;
    align-items: center;
    margin-top: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
  }
  .symptom .symptomSwiper .btn_scroll .btn {
    order: 1;
  }
  .symptom .symptomSwiper .btn_scroll .btn div {
    width: clamp(3rem, -0.4545454545rem + 4.5454545455vw, 5rem);
    margin-left: clamp(1.02rem, -0.1545454545rem + 1.5454545455vw, 1.7rem);
  }
}

.tre {
  padding: 4rem 1.5rem;
  background: #fff url(../img/bg_tre.svg) center top no-repeat;
  background-size: contain;
  position: relative;
}
.tre .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.tre .subnav li {
  width: calc((100% - 1rem) / 2);
}
.tre .subnav li a {
  text-decoration: none;
  position: relative;
  line-height: 1.1;
  text-align: center;
  display: block;
  height: 100%;
  background: var(--bg1);
  padding: 1rem 0.5rem;
  border-radius: 1rem;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.16);
  color: var(--clr_txt);
}
.tre .subnav li a::before {
  content: "";
  display: block;
  width: 50%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin: 0 auto 0.5em;
  background: #fff center center no-repeat;
  background-size: 70%;
}
.tre .subnav li a span {
  display: block;
  margin: auto;
}
.tre .subnav .depression a::before {
  background-image: url(../img/icon_tre_depression.svg);
}
.tre .subnav .maladjustment a::before {
  background-image: url(../img/icon_tre_maladjustment.svg);
}
.tre .subnav .anxiety a::before {
  background-image: url(../img/icon_tre_anxiety.svg);
}
.tre .subnav .panic a::before {
  background-image: url(../img/icon_tre_panic.svg);
}
.tre .subnav .ocd a::before {
  background-image: url(../img/icon_tre_ocd.svg);
}
.tre .subnav .insomnia a::before {
  background-image: url(../img/icon_tre_insomnia.svg);
}
.tre .subnav .autonomic a::before {
  background-image: url(../img/icon_tre_autonomic.svg);
}
.tre .subnav .developmental_disorder a::before {
  background-image: url(../img/icon_tre_developmental_disorder.svg);
}
.tre .subnav .pms_pmdd a::before {
  background-image: url(../img/icon_tre_pms_pmdd.svg);
}
.tre .subnav .schizophrenia a::before {
  background-image: url(../img/icon_tre_schizophrenia.svg);
}
.tre .subnav .dementia a::before {
  background-image: url(../img/icon_tre_dementia.svg);
}
.tre .subnav .certificate a::before {
  background-image: url(../img/icon_tre_certificate.svg);
}

@media screen and (min-width: 760px), print {
  .tre {
    padding: clamp(12rem, -1.8181818182rem + 18.1818181818vw, 20rem) 2rem clamp(9.12rem, -1.3818181818rem + 13.8181818182vw, 15.2rem);
    background: #fff;
    position: relative;
  }
  .tre::before {
    content: "";
    display: block;
    width: 100%;
    height: clamp(82.2rem, -12.4545454545rem + 124.5454545455vw, 137rem);
    position: absolute;
    left: 0;
    right: 0;
    top: clamp(2.82rem, -0.4272727273rem + 4.2727272727vw, 4.7rem);
    margin: auto;
    background: url(../img/bg_tre.svg) center top no-repeat;
    background-size: auto 100%;
  }
  .tre .wrap {
    position: relative;
    z-index: 1;
  }
  .tre .subnav {
    gap: 1.6em 0.72em;
  }
  .tre .subnav li {
    width: calc((100% - 4.8em) / 4);
  }
  .tre .subnav li a::before {
    width: 36%;
  }
  .tre .subnav li a {
    font-size: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
  }
  .tre .subnav li a:is(:hover, :focus-visible, .current) {
    background: var(--lcolor);
    color: #fff;
  }
  .tre .subnav .pms_pmdd a {
    font-size: clamp(1.08rem, -0.1636363636rem + 1.6363636364vw, 1.8rem);
  }
}
.feature {
  padding: 4rem 1.5rem;
  background: var(--bg4) url(../img/bg_wave_top.svg) center top no-repeat;
  background-size: contain;
}
.feature .comment {
  border: solid var(--sub11);
  border-width: 3px 0;
  color: var(--sub4);
  padding: 1.5em 0;
  margin-bottom: 2em;
}
.feature ol {
  counter-reset: number 0;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.feature ol li {
  counter-increment: number 1;
}
.feature ol li::before {
  content: "";
  display: block;
  aspect-ratio: 53/40;
  width: 100%;
  background: center center no-repeat;
  background-size: cover;
  outline: 2px solid var(--sub7);
  outline-offset: -1rem;
  border-radius: 1.5rem;
}
.feature ol li div {
  position: relative;
  margin-top: 2.5rem;
}
.feature ol li div::before {
  content: counter(number, decimal-leading-zero);
  font-family: "Pacifico", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  width: 2em;
  font-size: 3rem;
  font-weight: normal;
  color: #fff;
  background-image: linear-gradient(180deg, var(--sub8), var(--sub9));
  border-radius: 50%;
  line-height: 1;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -6.5rem;
}
.feature ol li h3 {
  font-weight: normal;
  color: var(--main2);
  border-bottom: 2px solid var(--sub7);
  line-height: 1.5;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  font-size: 120%;
}
.feature ol li p {
  margin: 0;
}
.feature ol .feature_sougou::before {
  background-image: url(../img/index_feature01.jpg);
}
.feature ol .feature_support::before {
  background-image: url(../img/index_feature02.jpg);
}
.feature ol .feature_sindansyo::before {
  background-image: url(../img/index_feature03.jpg);
}
.feature ol .feature_access::before {
  background-image: url(../img/index_feature04.jpg);
}

@media screen and (min-width: 760px), print {
  .feature {
    padding: clamp(7.86rem, -1.1909090909rem + 11.9090909091vw, 13.1rem) 2rem clamp(6.12rem, -0.9272727273rem + 9.2727272727vw, 10.2rem);
  }
  .feature .wrap {
    position: relative;
  }
  .feature .comment {
    padding: clamp(3.78rem, -0.5727272727rem + 5.7272727273vw, 6.3rem) clamp(9.9rem, -1.5rem + 15vw, 16.5rem) clamp(3.24rem, -0.4909090909rem + 4.9090909091vw, 5.4rem);
    margin-bottom: clamp(6.42rem, -0.9727272727rem + 9.7272727273vw, 10.7rem);
    position: relative;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
  .feature .comment::before, .feature .comment::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    background: center bottom no-repeat;
    background-size: contain;
    font-size: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
  }
  .feature .comment::before {
    width: 10em;
    aspect-ratio: 100/337;
    left: 0;
    background-image: url(../img/img_girl.svg);
  }
  .feature .comment::after {
    width: 12em;
    aspect-ratio: 120/335;
    right: 0;
    background-image: url(../img/img_boy.svg);
  }
  .feature ol {
    gap: clamp(4.44rem, -0.6727272727rem + 6.7272727273vw, 7.4rem);
    justify-content: space-between;
  }
  .feature ol li {
    width: clamp(31.8rem, -4.8181818182rem + 48.1818181818vw, 53rem);
  }
  .feature ol li::before {
    border-radius: clamp(1.8rem, -0.2727272727rem + 2.7272727273vw, 3rem);
  }
  .feature ol li div {
    margin: 0;
    padding-top: clamp(3.9rem, -0.5909090909rem + 5.9090909091vw, 6.5rem);
  }
  .feature ol li div::before {
    font-size: clamp(3.6rem, -0.5454545455rem + 5.4545454545vw, 6rem);
    width: clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
    padding-bottom: 0.2em;
    top: -0.9em;
  }
  .feature ol li h3 {
    font-size: clamp(1.98rem, -0.3rem + 3vw, 3.3rem);
    line-height: 1.2;
  }
  .feature ol li p {
    height: 5em;
  }
}
.index_greeting {
  background: #fff;
  padding: 4rem 1.5rem 8rem;
}
.index_greeting .img {
  padding-bottom: 3rem;
}
.index_greeting .img img {
  display: block;
  width: 70%;
  border-radius: 11rem 11rem 1rem 1rem;
  margin: 0 auto;
  box-shadow: 3rem 5rem 0 var(--sub10);
}
.index_greeting .img p {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  margin-top: 1rem;
}
.index_greeting .img p span {
  font-size: 120%;
}
@media screen and (min-width: 760px), print {
  .index_greeting {
    padding: clamp(8.82rem, -1.3363636364rem + 13.3636363636vw, 14.7rem) 2rem clamp(9.72rem, -1.4727272727rem + 14.7272727273vw, 16.2rem);
    position: relative;
  }
  .index_greeting::before {
    content: "";
    font-size: clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    height: 64.1em;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: -11.6em;
    margin: auto;
    background: url(../img/bg_bird.svg) center top no-repeat;
    background-size: auto 100%;
  }
  .index_greeting .wrap {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }
  .index_greeting .img {
    width: clamp(30.24rem, -4.5818181818rem + 45.8181818182vw, 50.4rem);
    flex-shrink: 0;
    padding-bottom: 0;
  }
  .index_greeting .img img {
    margin: 0;
    width: clamp(24.6rem, -3.7272727273rem + 37.2727272727vw, 41rem);
    border-radius: clamp(12.3rem, -1.8636363636rem + 18.6363636364vw, 20.5rem) clamp(12.3rem, -1.8636363636rem + 18.6363636364vw, 20.5rem) clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem) clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    box-shadow: 6.1em 5.16em 0 var(--sub10);
  }
  .index_greeting .img p {
    font-size: clamp(1.44rem, -0.2181818182rem + 2.1818181818vw, 2.4rem);
  }
  .index_greeting .img p span {
    font-size: 140%;
  }
  .index_greeting .txt {
    max-width: 650px;
  }
  .index_greeting .txt .btn_detail {
    margin-right: 0;
    margin-top: 1.5em;
  }
  .index_greeting .txt p {
    line-height: 2.2;
  }
}
body:where(:not(.index)) .sub_header {
  display: flex;
  flex-direction: column-reverse;
  overflow-x: hidden;
}
body:where(:not(.index)) .breadnav a {
  color: var(--lcolor);
}
body:where(:not(.index)) > .wrap {
  padding: 1px 0;
  background: #fff;
  max-width: 100%;
}
body:where(:not(.index)) .main {
  margin: 0 1.5rem 6rem;
}
body:where(:not(.index)) .main .js-tel {
  font-size: 120%;
}
body:where(:not(.index)) .main .js-tel::before {
  color: var(--main1);
  font-family: "fontello";
  content: "\e802";
}
@media screen and (min-width: 760px), print {
  body:where(:not(.index)) .header {
    position: static;
    height: auto;
  }
  body:where(:not(.index)) .breadnav a:is(:hover, :focus-visible) {
    color: var(--lcolor_h);
  }
  body:where(:not(.index)) > .wrap {
    padding: 1px 1.5rem clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
  }
  body:where(:not(.index)) .main {
    max-width: 102rem;
    padding: 0 1rem;
    margin: 0 auto clamp(4.8rem, -0.7272727273rem + 7.2727272727vw, 8rem);
  }
  body:where(:not(.index)) .main .cf .img_l, body:where(:not(.index)) .main .cf .img_r {
    max-width: 40%;
    height: auto;
  }
  body:where(:not(.index)) .main .cf .img_l.img_s, body:where(:not(.index)) .main .cf .img_r.img_s {
    max-width: 30%;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1rem;
  overflow-x: auto;
}
.breadnav .breadcrumb {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  white-space: nowrap;
}
.breadnav .breadcrumb li {
  display: flex;
  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: 760px), print {
  .breadnav {
    max-width: 1200px;
    width: 100%;
    padding: 0 clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
    box-sizing: content-box;
    margin: clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem) auto 0;
    overflow-x: inherit;
  }
  .breadnav .breadcrumb {
    font-size: clamp(1rem, 0.3090909091rem + 0.9090909091vw, 1.4rem);
  }
  .breadnav .breadcrumb li:not(:last-child)::after {
    margin: 0 clamp(0.6rem, -0.0909090909rem + 0.9090909091vw, 1rem);
  }
  .breadnav .breadcrumb li a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
@media screen and (min-width: 760px), print {
  .doctor .img_r {
    width: 35%;
  }
}

.dr_name {
  text-align: right;
}
.dr_name span {
  font-size: 120%;
}

.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
}
.gallery img {
  border-radius: 0.5em;
}
.gallery .gallery_slider div .cap {
  margin: 0.2rem 0 0;
  text-align: center;
  color: #fff;
  padding: 0.4rem;
  font-size: 1.2rem;
  opacity: 0;
  transition: 0.3s ease;
  background: var(--main1);
  line-height: 1.4;
  border-radius: 0.5em;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 4px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 4px solid var(--main1);
}
.gallery .gallery_thum .slick-track {
  margin: 0;
}

@media screen and (min-width: 760px), print {
  .gallery {
    max-width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    font-size: 1.8rem;
    padding: 1rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
}
.device li {
  margin: 0 0 2rem;
  text-align: center;
}
.device li img {
  margin: 0 auto 0.6rem;
  max-width: 80%;
}

@media screen and (min-width: 760px), print {
  .device {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .device li {
    width: 32%;
  }
  .device li img {
    margin: 0 auto 1rem;
    max-width: 100%;
  }
}
@media screen and (min-width: 760px), print {
  .first .flex2 {
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  .first .flex2 li {
    width: auto;
  }
}

.lst_flow {
  counter-reset: number 0;
}
.lst_flow:not(:first-child) {
  margin-top: 1em;
}
.lst_flow:not(:last-child) {
  margin-bottom: 1em;
}
.lst_flow dt {
  counter-increment: number 1;
  position: relative;
  padding-left: 1.8em;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--sub2);
  font-size: 120%;
  border: solid var(--sub2);
  border-width: 2px 2px 0;
  border-radius: 1rem 1rem 0 0;
}
.lst_flow dt::before {
  display: inline-block;
  content: counter(number);
  color: #fff;
  background: var(--sub2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  font-weight: bold;
  line-height: 1;
}
.lst_flow dd {
  margin: 0;
  position: relative;
  display: flex;
  padding: 0 1rem 1rem;
  border: solid var(--sub2);
  border-width: 0 2px 2px;
  border-radius: 0 0 1rem 1rem;
}
.lst_flow dd:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow dd:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: var(--sub2);
  height: 2rem;
  width: 8rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(180deg);
  margin: auto;
}
.lst_flow > li {
  counter-increment: number 1;
  position: relative;
  padding: 1rem;
  border: 2px solid var(--sub2);
  border-radius: 1rem;
}
.lst_flow > li .tit_lst_flow {
  position: relative;
  display: flex;
  gap: 0.5rem;
  color: var(--sub2);
  font-weight: 500;
}
.lst_flow > li .tit_lst_flow::before {
  display: inline-block;
  content: counter(number);
  color: #fff;
  background: var(--sub2);
  padding: 0 1rem;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  width: 2em;
  aspect-ratio: 1/1;
  line-height: 1;
  font-weight: bold;
}
.lst_flow > li p:first-of-type {
  margin-top: 0;
}
.lst_flow > li:not(:last-child) {
  margin: 0 0 6rem;
}
.lst_flow > li:not(:last-child)::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  background: var(--sub2);
  height: 2rem;
  width: 8rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(180deg);
  margin: auto;
}

@media screen and (min-width: 760px), print {
  .lst_flow dt {
    padding: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem) clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem) clamp(1.2rem, -0.1818181818rem + 1.8181818182vw, 2rem);
    gap: clamp(0.3rem, -0.0454545455rem + 0.4545454545vw, 0.5rem);
    font-size: clamp(1.8rem, 0.7636363636rem + 1.3636363636vw, 2.4rem);
    border-radius: clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem) clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem) 0 0;
  }
  .lst_flow dt::before {
    left: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
  }
  .lst_flow dd {
    padding: 0 clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem) clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
    border-radius: 0 0 clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem) clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem);
  }
  .lst_flow dd:not(:last-child) {
    margin: 0 0 clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
  }
  .lst_flow dd:not(:last-child)::after {
    bottom: -3.5em;
    width: clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
    height: 1.5em;
  }
  .lst_flow > li {
    padding: clamp(2.4rem, -0.3636363636rem + 3.6363636364vw, 4rem);
    border-radius: clamp(0.9rem, -0.1363636364rem + 1.3636363636vw, 1.5rem);
  }
  .lst_flow > li .tit_lst_flow {
    font-size: clamp(1.8rem, 0.7636363636rem + 1.3636363636vw, 2.4rem);
  }
  .lst_flow > li .tit_lst_flow::before {
    font-size: 110%;
    width: 2em;
  }
  .lst_flow > li:not(:last-child) {
    margin: 0 0 clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
  }
  .lst_flow > li:not(:last-child)::after {
    bottom: -3.5em;
    width: clamp(6rem, -0.9090909091rem + 9.0909090909vw, 10rem);
    height: 1.5em;
  }
}
body.access .main .gmap {
  height: 100vw;
  margin: 2rem 0;
}
@media screen and (min-width: 760px), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .js-tel {
    font-size: 2.5rem;
  }
  body.access .main .gmap {
    margin: 4rem 0 0;
    height: 50rem;
  }
}

.anc li {
  display: flex;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.anc li::before {
  font-family: "fontello";
  content: "\e80c";
  color: var(--clr_txt);
  margin-right: 0.4rem;
}
.anc li a {
  color: var(--clr_txt);
  display: inline-block;
  text-decoration: none !important;
}

@media screen and (min-width: 760px), print {
  .anc {
    display: flex;
    justify-content: center;
    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;
  }
}
body.vaccination .table_1 tr {
  display: flex;
  flex-wrap: wrap;
}
body.vaccination .table_1 th, body.vaccination .table_1 td {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  font-size: 90%;
}
body.vaccination .table_1 th {
  justify-content: center;
}
body.vaccination .table_1 th[scope=col]:first-child {
  width: 100%;
}
body.vaccination .table_1 th[scope=col]:nth-child(2) {
  width: 45%;
}
body.vaccination .table_1 th[scope=col]:nth-child(3) {
  width: 55%;
}
body.vaccination .table_1 th[scope=row] {
  width: 100%;
}
body.vaccination .table_1 td {
  display: block;
}
body.vaccination .table_1 td:nth-child(2) {
  width: 45%;
}
body.vaccination .table_1 td:nth-child(3) {
  width: 55%;
}
@media screen and (min-width: 760px), print {
  body.vaccination .table_1 tr {
    display: table-row;
  }
  body.vaccination .table_1 th, body.vaccination .table_1 td {
    display: table-cell;
    font-size: 100%;
  }
  body.vaccination .table_1 th {
    justify-content: center;
  }
  body.vaccination .table_1 th[scope=col]:first-child {
    width: 30%;
  }
  body.vaccination .table_1 th[scope=col]:nth-child(2) {
    width: 30%;
  }
  body.vaccination .table_1 th[scope=col]:nth-child(3) {
    width: 40%;
  }
  body.vaccination .table_1 th[scope=row] {
    width: 30%;
  }
  body.vaccination .table_1 td:nth-child(2) {
    width: 30%;
  }
  body.vaccination .table_1 td:nth-child(3) {
    width: 40%;
  }
}

@counter-style p-decimal {
  system: extends decimal;
  prefix: "";
  suffix: " ) ";
  speak-as: number;
}
@counter-style p-brackets {
  system: extends decimal;
  prefix: "(";
  suffix: ") ";
  speak-as: number;
}
.privacypolicy .lead {
  margin-bottom: 4.5rem;
}
.privacypolicy h2, .privacypolicy h3 {
  margin-bottom: 0.5em;
}
.privacypolicy ul ul, .privacypolicy ul ol, .privacypolicy ol ul, .privacypolicy ol ol {
  margin-block: 0.5em;
}
.privacypolicy .lst_ul > li::before {
  color: inherit;
  transform: scale(0.4);
  content: "●";
}
.privacypolicy .lst_ol > li {
  list-style-type: p-decimal;
  padding: 0;
  margin-left: 1.4em;
}
.privacypolicy .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
.privacypolicy .lst_ol > li::before {
  content: none;
}
.privacypolicy .lst_ol > li:not(:last-child) {
  margin-left: 1.4em;
}
.privacypolicy .lst_ol > li .lst_ol > li {
  list-style-type: p-brackets;
  padding: 0;
  margin-left: 2em;
}
.privacypolicy .lst_ol > li .lst_ol > li::marker {
  font-weight: normal;
  font-size: inherit;
  color: inherit;
}
.privacypolicy .lst_ol > li .lst_ol > li::before {
  content: none;
}
.privacypolicy .lst_ol > li .lst_ol > li:not(:last-child) {
  margin-left: 2em;
}
.privacypolicy .dl_num dt ~ dt {
  margin-top: 0.8em;
}
.privacypolicy .dl_num > dd {
  padding-left: 1.5em;
}
@media screen and (min-width: 760px), print {
  .privacypolicy .lead {
    margin-bottom: 90px;
  }
  .privacypolicy .pp_sign {
    margin-top: 100px;
  }
  .privacypolicy .pp_contactus {
    margin-top: 25px;
  }
  .privacypolicy .pp_contactus div {
    text-align: right;
  }
}/*# sourceMappingURL=style.css.map */