@charset "UTF-8";
*: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 {
  overflow-wrap: anywhere;
  word-break: break-all;
  line-break: strict;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: none;
  margin: 0;
  padding: 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;
  --rgb_txt: 51, 51, 51;
  --clr_border: #ccc;
  --rgb_border: 204, 204, 204;
  --clr_white: #fff;
  --rgb_white: 255, 255, 255;
  --clr_green: #AAC746;
  --rgb_green: 170, 199, 70;
  --clr_green_light: #EBF7C9;
  --rgb_green_light: 235, 247, 201;
  --clr_green_light02: #F5FBE9;
  --rgb_green_light02: 245, 251, 233;
  --clr_green_light03: #E6EFD4;
  --rgb_green_light03: 230, 239, 212;
  --clr_green_light04: #B4D24A;
  --rgb_green_light04: 180, 210, 74;
  --clr_green_dark: #C0E452;
  --rgb_green_dark: 192, 228, 82;
  --clr_green_dark02: #CAE57F;
  --rgb_green_dark02: 202, 229, 127;
  --clr_blue: #199AD9;
  --rgb_blue: 25, 154, 217;
  --clr_blue_dark: #0068B6;
  --rgb_blue_dark: 0, 104, 182;
  --clr_blue_dark02: #1A335B;
  --rgb_blue_dark02: 26, 51, 91;
  --clr_blue_dark03: #0086CC;
  --rgb_blue_dark03: 0, 134, 204;
  --clr_blue_dark04: #107DB2;
  --rgb_blue_dark04: 16, 125, 178;
  --clr_blue_light: #BBDEF7;
  --rgb_blue_light: 187, 222, 247;
  --clr_blue_light02: #E1F6FE;
  --rgb_blue_light02: 225, 246, 254;
  --clr_gray: #F5F5F5;
  --rgb_gray: 245, 245, 245;
  --clr_gray_dark: #242424;
  --rgb_gray_dark: 36, 36, 36;
  --clr_pink: #F68FA9;
  --rgb_pink: 246, 143, 169;
  --clr_red: #ff0000;
  --rgb_red: 255, 0, 0;
}

.has-txtbase-color {
  color: #333;
}

.has-txtbase-background-color {
  background-color: #333;
}

.has-borderbase-color {
  color: #ccc;
}

.has-borderbase-background-color {
  background-color: #ccc;
}

.has-whitebase-color {
  color: #fff;
}

.has-whitebase-background-color {
  background-color: #fff;
}

.has-greenbase-color {
  color: #AAC746;
}

.has-greenbase-background-color {
  background-color: #AAC746;
}

.has-greenlight-color {
  color: #EBF7C9;
}

.has-greenlight-background-color {
  background-color: #EBF7C9;
}

.has-greenlight02-color {
  color: #F5FBE9;
}

.has-greenlight02-background-color {
  background-color: #F5FBE9;
}

.has-greenlight03-color {
  color: #E6EFD4;
}

.has-greenlight03-background-color {
  background-color: #E6EFD4;
}

.has-greenlight04-color {
  color: #B4D24A;
}

.has-greenlight04-background-color {
  background-color: #B4D24A;
}

.has-greendark-color {
  color: #C0E452;
}

.has-greendark-background-color {
  background-color: #C0E452;
}

.has-greendark02-color {
  color: #CAE57F;
}

.has-greendark02-background-color {
  background-color: #CAE57F;
}

.has-bluebase-color {
  color: #199AD9;
}

.has-bluebase-background-color {
  background-color: #199AD9;
}

.has-bluedark-color {
  color: #0068B6;
}

.has-bluedark-background-color {
  background-color: #0068B6;
}

.has-bluedark02-color {
  color: #1A335B;
}

.has-bluedark02-background-color {
  background-color: #1A335B;
}

.has-bluedark03-color {
  color: #0086CC;
}

.has-bluedark03-background-color {
  background-color: #0086CC;
}

.has-bluedark04-color {
  color: #107DB2;
}

.has-bluedark04-background-color {
  background-color: #107DB2;
}

.has-bluelight-color {
  color: #BBDEF7;
}

.has-bluelight-background-color {
  background-color: #BBDEF7;
}

.has-bluelight02-color {
  color: #E1F6FE;
}

.has-bluelight02-background-color {
  background-color: #E1F6FE;
}

.has-graybase-color {
  color: #F5F5F5;
}

.has-graybase-background-color {
  background-color: #F5F5F5;
}

.has-graydark-color {
  color: #242424;
}

.has-graydark-background-color {
  background-color: #242424;
}

.has-pinkbase-color {
  color: #F68FA9;
}

.has-pinkbase-background-color {
  background-color: #F68FA9;
}

.has-redbase-color {
  color: #ff0000;
}

.has-redbase-background-color {
  background-color: #ff0000;
}

.has-txt-base-color {
  color: #333;
}

.has-txt-base-background-color {
  background-color: #333;
}

.has-border-base-color {
  color: #ccc;
}

.has-border-base-background-color {
  background-color: #ccc;
}

.has-white-base-color {
  color: #fff;
}

.has-white-base-background-color {
  background-color: #fff;
}

.has-green-base-color {
  color: #AAC746;
}

.has-green-base-background-color {
  background-color: #AAC746;
}

.has-green-light-color {
  color: #EBF7C9;
}

.has-green-light-background-color {
  background-color: #EBF7C9;
}

.has-green-light02-color {
  color: #F5FBE9;
}

.has-green-light02-background-color {
  background-color: #F5FBE9;
}

.has-green-light03-color {
  color: #E6EFD4;
}

.has-green-light03-background-color {
  background-color: #E6EFD4;
}

.has-green-light04-color {
  color: #B4D24A;
}

.has-green-light04-background-color {
  background-color: #B4D24A;
}

.has-green-dark-color {
  color: #C0E452;
}

.has-green-dark-background-color {
  background-color: #C0E452;
}

.has-green-dark02-color {
  color: #CAE57F;
}

.has-green-dark02-background-color {
  background-color: #CAE57F;
}

.has-blue-base-color {
  color: #199AD9;
}

.has-blue-base-background-color {
  background-color: #199AD9;
}

.has-blue-dark-color {
  color: #0068B6;
}

.has-blue-dark-background-color {
  background-color: #0068B6;
}

.has-blue-dark02-color {
  color: #1A335B;
}

.has-blue-dark02-background-color {
  background-color: #1A335B;
}

.has-blue-dark03-color {
  color: #0086CC;
}

.has-blue-dark03-background-color {
  background-color: #0086CC;
}

.has-blue-dark04-color {
  color: #107DB2;
}

.has-blue-dark04-background-color {
  background-color: #107DB2;
}

.has-blue-light-color {
  color: #BBDEF7;
}

.has-blue-light-background-color {
  background-color: #BBDEF7;
}

.has-blue-light02-color {
  color: #E1F6FE;
}

.has-blue-light02-background-color {
  background-color: #E1F6FE;
}

.has-gray-base-color {
  color: #F5F5F5;
}

.has-gray-base-background-color {
  background-color: #F5F5F5;
}

.has-gray-dark-color {
  color: #242424;
}

.has-gray-dark-background-color {
  background-color: #242424;
}

.has-pink-base-color {
  color: #F68FA9;
}

.has-pink-base-background-color {
  background-color: #F68FA9;
}

.has-red-base-color {
  color: #ff0000;
}

.has-red-base-background-color {
  background-color: #ff0000;
}

@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%;
}

.txt_green {
  color: var(--clr_green);
}

.txt_aqua {
  color: var(--clr_blue);
}

.txt_blue {
  color: var(--clr_blue_dark);
}

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

.img_c {
  margin: 1rem auto;
}

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

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

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

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

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

.ml00 {
  margin-left: 0rem !important;
}

.mr00 {
  margin-right: 0rem !important;
}

.pt00 {
  padding-top: 0rem !important;
}

.pb00 {
  padding-bottom: 0rem !important;
}

.pl00 {
  padding-left: 0rem !important;
}

.pr00 {
  padding-right: 0rem !important;
}

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

.mb10 {
  margin-bottom: 1.2rem !important;
}

.ml10 {
  margin-left: 1.2rem !important;
}

.mr10 {
  margin-right: 1.2rem !important;
}

.pt10 {
  padding-top: 1.2rem !important;
}

.pb10 {
  padding-bottom: 1.2rem !important;
}

.pl10 {
  padding-left: 1.2rem !important;
}

.pr10 {
  padding-right: 1.2rem !important;
}

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

.mb20 {
  margin-bottom: 2.4rem !important;
}

.ml20 {
  margin-left: 2.4rem !important;
}

.mr20 {
  margin-right: 2.4rem !important;
}

.pt20 {
  padding-top: 2.4rem !important;
}

.pb20 {
  padding-bottom: 2.4rem !important;
}

.pl20 {
  padding-left: 2.4rem !important;
}

.pr20 {
  padding-right: 2.4rem !important;
}

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

.mb30 {
  margin-bottom: 3.6rem !important;
}

.ml30 {
  margin-left: 3.6rem !important;
}

.mr30 {
  margin-right: 3.6rem !important;
}

.pt30 {
  padding-top: 3.6rem !important;
}

.pb30 {
  padding-bottom: 3.6rem !important;
}

.pl30 {
  padding-left: 3.6rem !important;
}

.pr30 {
  padding-right: 3.6rem !important;
}

.mt40 {
  margin-top: 4.8rem !important;
}

.mb40 {
  margin-bottom: 4.8rem !important;
}

.ml40 {
  margin-left: 4.8rem !important;
}

.mr40 {
  margin-right: 4.8rem !important;
}

.pt40 {
  padding-top: 4.8rem !important;
}

.pb40 {
  padding-bottom: 4.8rem !important;
}

.pl40 {
  padding-left: 4.8rem !important;
}

.pr40 {
  padding-right: 4.8rem !important;
}

.mt50 {
  margin-top: 6rem !important;
}

.mb50 {
  margin-bottom: 6rem !important;
}

.ml50 {
  margin-left: 6rem !important;
}

.mr50 {
  margin-right: 6rem !important;
}

.pt50 {
  padding-top: 6rem !important;
}

.pb50 {
  padding-bottom: 6rem !important;
}

.pl50 {
  padding-left: 6rem !important;
}

.pr50 {
  padding-right: 6rem !important;
}

.mt60 {
  margin-top: 7.2rem !important;
}

.mb60 {
  margin-bottom: 7.2rem !important;
}

.ml60 {
  margin-left: 7.2rem !important;
}

.mr60 {
  margin-right: 7.2rem !important;
}

.pt60 {
  padding-top: 7.2rem !important;
}

.pb60 {
  padding-bottom: 7.2rem !important;
}

.pl60 {
  padding-left: 7.2rem !important;
}

.pr60 {
  padding-right: 7.2rem !important;
}

.mt70 {
  margin-top: 8.4rem !important;
}

.mb70 {
  margin-bottom: 8.4rem !important;
}

.ml70 {
  margin-left: 8.4rem !important;
}

.mr70 {
  margin-right: 8.4rem !important;
}

.pt70 {
  padding-top: 8.4rem !important;
}

.pb70 {
  padding-bottom: 8.4rem !important;
}

.pl70 {
  padding-left: 8.4rem !important;
}

.pr70 {
  padding-right: 8.4rem !important;
}

.mt80 {
  margin-top: 9.6rem !important;
}

.mb80 {
  margin-bottom: 9.6rem !important;
}

.ml80 {
  margin-left: 9.6rem !important;
}

.mr80 {
  margin-right: 9.6rem !important;
}

.pt80 {
  padding-top: 9.6rem !important;
}

.pb80 {
  padding-bottom: 9.6rem !important;
}

.pl80 {
  padding-left: 9.6rem !important;
}

.pr80 {
  padding-right: 9.6rem !important;
}

.mt90 {
  margin-top: 10.8rem !important;
}

.mb90 {
  margin-bottom: 10.8rem !important;
}

.ml90 {
  margin-left: 10.8rem !important;
}

.mr90 {
  margin-right: 10.8rem !important;
}

.pt90 {
  padding-top: 10.8rem !important;
}

.pb90 {
  padding-bottom: 10.8rem !important;
}

.pl90 {
  padding-left: 10.8rem !important;
}

.pr90 {
  padding-right: 10.8rem !important;
}

.mt100 {
  margin-top: 12rem !important;
}

.mb100 {
  margin-bottom: 12rem !important;
}

.ml100 {
  margin-left: 12rem !important;
}

.mr100 {
  margin-right: 12rem !important;
}

.pt100 {
  padding-top: 12rem !important;
}

.pb100 {
  padding-bottom: 12rem !important;
}

.pl100 {
  padding-left: 12rem !important;
}

.pr100 {
  padding-right: 12rem !important;
}

@media screen and (min-width: 48em), print {
  .mt00 {
    margin-top: 0rem !important;
  }
  .mb00 {
    margin-bottom: 0rem !important;
  }
  .ml00 {
    margin-left: 0rem !important;
  }
  .mr00 {
    margin-right: 0rem !important;
  }
  .pt00 {
    padding-top: 0rem !important;
  }
  .pb00 {
    padding-bottom: 0rem !important;
  }
  .pl00 {
    padding-left: 0rem !important;
  }
  .pr00 {
    padding-right: 0rem !important;
  }
  .mt10 {
    margin-top: 2.4rem !important;
  }
  .mb10 {
    margin-bottom: 2.4rem !important;
  }
  .ml10 {
    margin-left: 2.4rem !important;
  }
  .mr10 {
    margin-right: 2.4rem !important;
  }
  .pt10 {
    padding-top: 2.4rem !important;
  }
  .pb10 {
    padding-bottom: 2.4rem !important;
  }
  .pl10 {
    padding-left: 2.4rem !important;
  }
  .pr10 {
    padding-right: 2.4rem !important;
  }
  .mt20 {
    margin-top: 4.8rem !important;
  }
  .mb20 {
    margin-bottom: 4.8rem !important;
  }
  .ml20 {
    margin-left: 4.8rem !important;
  }
  .mr20 {
    margin-right: 4.8rem !important;
  }
  .pt20 {
    padding-top: 4.8rem !important;
  }
  .pb20 {
    padding-bottom: 4.8rem !important;
  }
  .pl20 {
    padding-left: 4.8rem !important;
  }
  .pr20 {
    padding-right: 4.8rem !important;
  }
  .mt30 {
    margin-top: 7.2rem !important;
  }
  .mb30 {
    margin-bottom: 7.2rem !important;
  }
  .ml30 {
    margin-left: 7.2rem !important;
  }
  .mr30 {
    margin-right: 7.2rem !important;
  }
  .pt30 {
    padding-top: 7.2rem !important;
  }
  .pb30 {
    padding-bottom: 7.2rem !important;
  }
  .pl30 {
    padding-left: 7.2rem !important;
  }
  .pr30 {
    padding-right: 7.2rem !important;
  }
  .mt40 {
    margin-top: 9.6rem !important;
  }
  .mb40 {
    margin-bottom: 9.6rem !important;
  }
  .ml40 {
    margin-left: 9.6rem !important;
  }
  .mr40 {
    margin-right: 9.6rem !important;
  }
  .pt40 {
    padding-top: 9.6rem !important;
  }
  .pb40 {
    padding-bottom: 9.6rem !important;
  }
  .pl40 {
    padding-left: 9.6rem !important;
  }
  .pr40 {
    padding-right: 9.6rem !important;
  }
  .mt50 {
    margin-top: 12rem !important;
  }
  .mb50 {
    margin-bottom: 12rem !important;
  }
  .ml50 {
    margin-left: 12rem !important;
  }
  .mr50 {
    margin-right: 12rem !important;
  }
  .pt50 {
    padding-top: 12rem !important;
  }
  .pb50 {
    padding-bottom: 12rem !important;
  }
  .pl50 {
    padding-left: 12rem !important;
  }
  .pr50 {
    padding-right: 12rem !important;
  }
  .mt60 {
    margin-top: 14.4rem !important;
  }
  .mb60 {
    margin-bottom: 14.4rem !important;
  }
  .ml60 {
    margin-left: 14.4rem !important;
  }
  .mr60 {
    margin-right: 14.4rem !important;
  }
  .pt60 {
    padding-top: 14.4rem !important;
  }
  .pb60 {
    padding-bottom: 14.4rem !important;
  }
  .pl60 {
    padding-left: 14.4rem !important;
  }
  .pr60 {
    padding-right: 14.4rem !important;
  }
  .mt70 {
    margin-top: 16.8rem !important;
  }
  .mb70 {
    margin-bottom: 16.8rem !important;
  }
  .ml70 {
    margin-left: 16.8rem !important;
  }
  .mr70 {
    margin-right: 16.8rem !important;
  }
  .pt70 {
    padding-top: 16.8rem !important;
  }
  .pb70 {
    padding-bottom: 16.8rem !important;
  }
  .pl70 {
    padding-left: 16.8rem !important;
  }
  .pr70 {
    padding-right: 16.8rem !important;
  }
  .mt80 {
    margin-top: 19.2rem !important;
  }
  .mb80 {
    margin-bottom: 19.2rem !important;
  }
  .ml80 {
    margin-left: 19.2rem !important;
  }
  .mr80 {
    margin-right: 19.2rem !important;
  }
  .pt80 {
    padding-top: 19.2rem !important;
  }
  .pb80 {
    padding-bottom: 19.2rem !important;
  }
  .pl80 {
    padding-left: 19.2rem !important;
  }
  .pr80 {
    padding-right: 19.2rem !important;
  }
  .mt90 {
    margin-top: 21.6rem !important;
  }
  .mb90 {
    margin-bottom: 21.6rem !important;
  }
  .ml90 {
    margin-left: 21.6rem !important;
  }
  .mr90 {
    margin-right: 21.6rem !important;
  }
  .pt90 {
    padding-top: 21.6rem !important;
  }
  .pb90 {
    padding-bottom: 21.6rem !important;
  }
  .pl90 {
    padding-left: 21.6rem !important;
  }
  .pr90 {
    padding-right: 21.6rem !important;
  }
  .mt100 {
    margin-top: 24rem !important;
  }
  .mb100 {
    margin-bottom: 24rem !important;
  }
  .ml100 {
    margin-left: 24rem !important;
  }
  .mr100 {
    margin-right: 24rem !important;
  }
  .pt100 {
    padding-top: 24rem !important;
  }
  .pb100 {
    padding-bottom: 24rem !important;
  }
  .pl100 {
    padding-left: 24rem !important;
  }
  .pr100 {
    padding-right: 24rem !important;
  }
}
.timetable table {
  width: 100%;
  font-size: 1.4rem;
  table-layout: fixed;
}
.timetable table thead {
  border-bottom: none;
}
.timetable table thead th {
  padding: 0.6rem 0;
  border: none;
  font-weight: bold;
  border-bottom: 2px solid var(--clr_blue);
}
.timetable table thead th:first-child {
  width: 34%;
}
.timetable table tr td {
  color: var(--clr_blue);
  text-align: center;
  padding: 1.2rem 0;
  line-height: 1.4;
  border: none;
  border-bottom: 1px solid var(--clr_border);
}
.timetable table tr td:first-child {
  font-weight: bold;
  color: var(--clr_gray_dark);
}
.timetable table tr:last-of-type td {
  border-bottom: 2px solid var(--clr_blue);
}
.timetable > .wp-block-columns {
  margin-bottom: 0;
}

.timetable_caption {
  display: grid;
  grid-template-columns: 5em auto;
  gap: 1rem;
  margin: 0;
  color: var(--clr_gray_dark);
  font-size: 1.3rem;
  align-items: center;
  line-height: 1.7;
}
.timetable_caption code {
  text-align: center;
  border: 1px solid var(--clr_txt);
  border-radius: 3px;
  display: grid;
  place-items: center;
}

@media screen and (min-width: 48em), print {
  .timetable table {
    font-size: 2.2rem;
  }
  .timetable table thead th {
    padding: 0.7rem 0;
  }
  .timetable table thead th:first-child {
    width: 30%;
    padding-left: 3%;
  }
  .timetable table thead th:last-of-type {
    width: 16%;
    padding-right: 3%;
  }
  .timetable table tr td {
    padding: 2rem 0;
  }
  .timetable table tr td:first-child {
    padding-left: 3%;
  }
  .timetable table tr td:last-of-type {
    width: 16%;
    padding-right: 3%;
  }
  .timetable_caption {
    grid-template-columns: 10rem auto;
    gap: 1rem 1.7rem;
    font-size: 2rem;
    line-height: 1.35;
  }
  .timetable_caption code {
    border-radius: 5px;
  }
}
.gmap {
  width: 100%;
}

.tit_01 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 9rem;
  background: url("../img/tit_01.webp") top center/auto 100% no-repeat;
  font-size: 2.2rem;
  line-height: 1.4;
  padding: 1rem;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.tit_01 strong {
  font-weight: 500;
}

.tit_02, .box_page h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-top: 1.6rem;
  background: url("../img/tit_02.svg") top center/3rem auto no-repeat;
  letter-spacing: 0.2rem;
}
.tit_02 strong, .box_page h2 strong {
  font-weight: 500;
}

.tit_03, .box_page h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  border-bottom: 4px double var(--clr_green);
  padding: 0 0 0.6rem 3rem;
  margin: 0 0 2rem;
  position: relative;
  letter-spacing: 0.07rem;
}
.tit_03 strong, .box_page h3 strong {
  font-weight: 500;
}
.tit_03::before, .box_page h3::before {
  font-family: "fontello";
  content: "\e819";
  font-size: 140%;
  position: absolute;
  left: 0;
  top: 0.15rem;
  line-height: 1;
  color: var(--clr_green_light04);
}

.tit_04, .box_page h4 {
  font-size: 1.6rem;
  line-height: 1.4;
  border-left: 4px double var(--clr_green);
  padding: 0.1rem 0rem 0.1rem 1rem;
  margin: 0 0 2rem;
  letter-spacing: 0.05rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.tit_04 strong, .box_page h4 strong {
  font-weight: 500;
}

.tit_05, .box_page h5 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  padding-left: 1.7rem;
  letter-spacing: 0.05rem;
}
.tit_05 strong, .box_page h5 strong {
  font-weight: 500;
}
.tit_05::before, .box_page h5::before {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-radius: 50%;
  border: 2px solid var(--clr_green);
  position: absolute;
  left: 0;
  top: 0.4em;
  line-height: 1;
}

.tit_06, .box_page h6 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  letter-spacing: 0.05rem;
  padding-left: 1.7rem;
}
.tit_06 strong, .box_page h6 strong {
  font-weight: 500;
}
.tit_06::before, .box_page h6::before {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  background: var(--clr_green);
  position: absolute;
  left: 0;
  top: 0.8rem;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .tit_01 {
    min-height: 20rem;
    font-size: 4rem;
  }
  .tit_02, .box_page h2 {
    font-size: 3.6rem;
    margin-bottom: 3rem;
    padding-top: 2.5rem;
    background-size: 5rem auto;
    letter-spacing: 0.4rem;
  }
  .tit_03, .box_page h3 {
    font-size: 3.2rem;
    padding: 0 0 1rem 5rem;
    margin: 0 0 3rem;
    letter-spacing: 0.15rem;
  }
  .tit_03::before, .box_page h3::before {
    font-size: 120%;
    top: 0.35rem;
  }
  .tit_04, .box_page h4 {
    font-size: 2.6rem;
    padding-left: 1.8rem;
    margin: 0 0 3rem;
    letter-spacing: 0.1rem;
  }
  .tit_05, .box_page h5 {
    font-size: 2.2rem;
    padding-left: 2.5rem;
    margin: 0 0 3rem;
    letter-spacing: 0.1rem;
  }
  .tit_05::before, .box_page h5::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .tit_06, .box_page h6 {
    font-size: 2rem;
    margin: 0 0 3rem;
    letter-spacing: 0.1rem;
    padding-left: 2.5rem;
  }
  .tit_06::before, .box_page h6::before {
    width: 1rem;
    height: 1rem;
    top: 1.15rem;
    left: 0.3rem;
  }
}
.lst_ul, .box_page ul {
  display: flow-root;
  line-height: 1.4;
  margin: 1rem 0;
}
.lst_ul > li, .box_page ul > li {
  padding: 0 0 0 1.4em;
  position: relative;
}
.lst_ul > li:not(:last-child), .box_page ul > li:not(:last-child) {
  margin: 0 0 1rem;
}
.lst_ul > li::before, .box_page ul > li::before {
  content: "●";
  color: var(--clr_green);
  font-size: 70%;
  position: absolute;
  top: 0.3rem;
  left: 0;
}
@media screen and (min-width: 48em), print {
  .lst_ul > li::before, .box_page ul > li::before {
    top: 0.55rem;
  }
}
.lst_ul.kome > li::before, .box_page ul.kome > li::before {
  content: "※";
  color: var(--clr_txt);
  font-size: 100%;
  top: inherit;
}

.lst_ul_disc > li::before {
  font-size: 50% !important;
  top: 0.8em !important;
  color: var(--clr_blue) !important;
}

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

.lst_dl01 dt {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.lst_dl01 dd {
  margin: 0 0 1rem;
}

@media screen and (min-width: 48em), print {
  .lst_ul, .box_page ul, .lst_ol, .box_page ol {
    margin: 2rem 0;
  }
  .lst_dl01 {
    width: 100%;
    display: grid;
    grid-template-columns: 6em 1fr;
  }
  .lst_dl01 dd {
    padding: 0 0 0 1rem;
  }
}
.lst_dl02 dt {
  background: var(--clr_gray);
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--clr_border);
  border-right: 1px solid var(--clr_border);
  border-left: 1px solid var(--clr_border);
}
.lst_dl02 dd {
  margin: 0 0 0.5rem;
  padding: 0.8rem 1rem;
  border-top: 1px solid var(--clr_border);
  border-right: 1px solid var(--clr_border);
  border-left: 1px solid var(--clr_border);
  border-bottom: 1px solid var(--clr_border);
}
@media screen and (min-width: 48em), print {
  .lst_dl02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .lst_dl02 dt {
    width: 30%;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
  }
  .lst_dl02 dt:last-of-type {
    border-bottom: 1px solid var(--clr_border);
  }
  .lst_dl02 dd {
    width: 70%;
    margin: 0;
    padding: 1.5rem 2.5rem;
    border-top: 1px solid var(--clr_border);
    border-left: none;
    border-bottom: none;
  }
  .lst_dl02 dd:last-of-type {
    border-bottom: 1px solid var(--clr_border);
  }
}

@media screen and (min-width: 48em), print {
  .pc-flex {
    display: flex !important;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
}

.lst_flow, .box_page .lst_flow {
  counter-reset: number 0;
}
.lst_flow li, .box_page .lst_flow li {
  margin: 0;
  padding: 1.6rem !important;
  border: 4px solid var(--clr_green_light);
  border-radius: 1rem;
  position: relative;
}
@media screen and (min-width: 48em), print {
  .lst_flow li, .box_page .lst_flow li {
    border-radius: 2rem;
  }
}
.lst_flow li::before, .box_page .lst_flow li::before {
  content: none;
}
.lst_flow li:not(:last-child) {
  margin: 0 0 6rem !important;
}
.lst_flow li:not(:last-child)::after {
  display: block;
  content: "";
  width: 5rem;
  height: 1.4rem;
  background: var(--clr_green_dark02);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  inset: auto 0 -4rem;
  margin: auto;
}

@media screen and (min-width: 48em), print {
  .lst_flow li, .box_page .lst_flow li {
    padding: 3rem !important;
    border-width: 5px;
  }
  .lst_flow li:not(:last-child) {
    margin: 0 0 8.5rem !important;
  }
  .lst_flow li:not(:last-child)::after {
    width: 8rem;
    height: 2rem;
    inset: auto 0 -6rem;
  }
}
.tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: var(--clr_blue_dark);
  background: url("../img/icon_tel.svg") top 0.7rem right 0.7rem/auto calc(100% - 1.4rem) no-repeat, var(--clr_white);
  line-height: 1.1;
  border-radius: 0.6rem;
  border: 2px solid var(--clr_blue_light);
  padding: 0.4rem 1.6rem;
  font-size: 1.7rem;
  height: 5rem;
}
.tel a {
  display: grid;
  place-items: center;
  height: 100%;
}
@media screen and (min-width: 48em), print {
  .tel {
    border-width: 3px;
    border-radius: 1rem;
    font-size: 3.2rem;
    height: 8rem;
    padding: 0.4rem 2rem;
    letter-spacing: 0.05rem;
    background-size: 5rem auto;
    background-position: top 0.7rem right 1.5rem;
  }
}

.btn_online a, .btn_recruit a, .btn_fever a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.6rem;
  padding: 0.4rem 1.2rem;
  border-radius: 0.6rem;
  min-width: 11rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_white);
  text-decoration: none !important;
  height: 4.2rem;
}
.btn_online a::before, .btn_recruit a::before, .btn_fever a::before {
  background: var(--clr_white);
  border-radius: 50%;
  width: 2em;
  height: 2em;
  display: none;
  place-items: center;
  transition: 0.2s;
}
@media screen and (min-width: 48em), print {
  .btn_online a, .btn_recruit a, .btn_fever a {
    border-radius: 1rem;
    font-size: 2.4rem;
    border-width: 3px;
    height: 8rem;
    padding: 0.5rem 2rem;
    gap: 0 1.2rem;
    min-width: 18rem;
  }
  .btn_online a::before, .btn_recruit a::before, .btn_fever a::before {
    display: grid;
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .btn_online a, .btn_recruit a, .btn_fever a {
    opacity: 1;
  }
  .btn_online a:where(:-moz-any-link, :enabled, summary):hover, .btn_recruit a:where(:-moz-any-link, :enabled, summary):hover, .btn_fever a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
  }
  .btn_online a:where(:any-link, :enabled, summary):hover, .btn_recruit a:where(:any-link, :enabled, summary):hover, .btn_fever a:where(:any-link, :enabled, summary):hover {
    opacity: 1;
  }
  .btn_online a:where(:-moz-any-link, :enabled, summary):hover::before, .btn_recruit a:where(:-moz-any-link, :enabled, summary):hover::before, .btn_fever a:where(:-moz-any-link, :enabled, summary):hover::before {
    color: var(--clr_white);
  }
  .btn_online a:where(:any-link, :enabled, summary):hover::before, .btn_recruit a:where(:any-link, :enabled, summary):hover::before, .btn_fever a:where(:any-link, :enabled, summary):hover::before {
    color: var(--clr_white);
  }
}
@media screen and (min-width: 48em), print {
  .btn_online a:focus-visible, .btn_recruit a:focus-visible, .btn_fever a:focus-visible {
    opacity: 1;
  }
  .btn_online a:focus-visible::before, .btn_recruit a:focus-visible::before, .btn_fever a:focus-visible::before {
    color: var(--clr_white);
  }
}

.btn_online a {
  background: var(--clr_blue);
  border: 2px solid var(--clr_blue);
}
.btn_online a::before {
  font-family: "fontello";
  content: "\e812";
  color: var(--clr_blue);
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .btn_online a {
    opacity: 1;
  }
  .btn_online a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
    color: var(--clr_blue) !important;
    background: var(--clr_white) !important;
  }
  .btn_online a:where(:any-link, :enabled, summary):hover {
    opacity: 1;
    color: var(--clr_blue) !important;
    background: var(--clr_white) !important;
  }
  .btn_online a:where(:-moz-any-link, :enabled, summary):hover::before {
    background: var(--clr_blue);
  }
  .btn_online a:where(:any-link, :enabled, summary):hover::before {
    background: var(--clr_blue);
  }
}
@media screen and (min-width: 48em), print {
  .btn_online a:focus-visible {
    opacity: 1;
    color: var(--clr_blue) !important;
    background: var(--clr_white) !important;
  }
  .btn_online a:focus-visible::before {
    background: var(--clr_blue);
  }
}

.btn_recruit a {
  background: var(--clr_pink);
  border: 2px solid var(--clr_pink);
}
.btn_recruit a::before {
  font-family: "fontello";
  content: "\e814";
  color: var(--clr_pink);
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .btn_recruit a {
    opacity: 1;
  }
  .btn_recruit a:where(:-moz-any-link, :enabled, summary):hover {
    color: var(--clr_pink) !important;
    background: var(--clr_white) !important;
  }
  .btn_recruit a:where(:any-link, :enabled, summary):hover {
    color: var(--clr_pink) !important;
    background: var(--clr_white) !important;
  }
  .btn_recruit a:where(:-moz-any-link, :enabled, summary):hover::before {
    background: var(--clr_pink);
  }
  .btn_recruit a:where(:any-link, :enabled, summary):hover::before {
    background: var(--clr_pink);
  }
}
@media screen and (min-width: 48em), print {
  .btn_recruit a:focus-visible {
    color: var(--clr_pink) !important;
    background: var(--clr_white) !important;
  }
  .btn_recruit a:focus-visible::before {
    background: var(--clr_pink);
  }
}

.btn_fever a {
  background: var(--clr_green);
  border: 2px solid var(--clr_green);
  color: var(--clr_white);
}
.btn_fever a::before {
  font-family: "fontello";
  content: "\e4a2";
  color: var(--clr_green);
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .btn_fever a {
    opacity: 1;
  }
  .btn_fever a:where(:-moz-any-link, :enabled, summary):hover {
    color: var(--clr_green) !important;
    background: var(--clr_white) !important;
    border-color: var(--clr_green) !important;
  }
  .btn_fever a:where(:any-link, :enabled, summary):hover {
    color: var(--clr_green) !important;
    background: var(--clr_white) !important;
    border-color: var(--clr_green) !important;
  }
  .btn_fever a:where(:-moz-any-link, :enabled, summary):hover::before {
    background: var(--clr_green);
  }
  .btn_fever a:where(:any-link, :enabled, summary):hover::before {
    background: var(--clr_green);
  }
}
@media screen and (min-width: 48em), print {
  .btn_fever a:focus-visible {
    color: var(--clr_green) !important;
    background: var(--clr_white) !important;
    border-color: var(--clr_green) !important;
  }
  .btn_fever a:focus-visible::before {
    background: var(--clr_green);
  }
}

.lnk a {
  color: var(--clr_green);
}
@media (hover: hover) {
  .lnk a {
    opacity: 1;
  }
  .lnk a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
  .lnk a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.lnk a:focus-visible {
  opacity: 0.7;
}
.lnk.-pdf a::before {
  font-family: "fontello";
  content: "\f1c1";
  margin-right: 0.2em;
}
.lnk.-out a::after {
  font-family: "fontello";
  content: "\f08e";
  margin-left: 0.2em;
}

.btn {
  display: flex;
  flex-wrap: wrap;
}
.btn a {
  display: grid;
  place-items: center;
  padding: 0.8rem 3rem;
  background: var(--clr_blue);
  color: var(--clr_white) !important;
  text-decoration: none !important;
  margin: 0.6rem 0;
  border-radius: 0.6rem;
  position: relative;
  font-weight: bold;
  line-height: 1.6;
}
.btn a::after {
  font-family: "fontello";
  content: "\e805";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
  font-weight: normal;
  font-size: 65%;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .btn a {
    border-radius: 1rem;
    padding: 1.55rem 5rem;
    min-width: 28.5rem;
    letter-spacing: 0.1rem;
  }
  .btn a::after {
    font-size: 95%;
    right: 1.3rem;
  }
  .btn a:hover {
    opacity: 0.7 !important;
  }
}

.txt_c.btn {
  justify-content: center;
}

.txt_r.btn {
  justify-content: flex-end;
}

.btn_lst > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.btn_lst > div p {
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .btn_lst > div {
    gap: 2rem;
  }
}

.acs_btns {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.acs_btns > li {
  justify-content: center;
}
@media screen and (min-width: 48em), print {
  .acs_btns {
    margin: 3rem auto 0;
    gap: 1rem;
  }
  .acs_btns > li a {
    min-width: 31rem;
  }
}

.anchor a[href^="#"] {
  display: grid;
  place-items: center;
  padding: 0.8rem 3rem;
  background: var(--clr_white);
  color: var(--clr_green);
  border: 1px solid var(--clr_green);
  text-decoration: none !important;
  margin: 0.6rem 0;
  border-radius: 0.6rem;
  position: relative;
  font-weight: bold;
}
.anchor a[href^="#"]::after {
  font-family: "fontello";
  content: "\e809";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.8rem;
  font-weight: normal;
  font-size: 65%;
}

@media screen and (min-width: 48em), print {
  .anchor a[href^="#"] {
    border-radius: 1rem;
    padding: 1.55rem 5rem;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 28.5rem;
    letter-spacing: 0.1rem;
  }
  .anchor a[href^="#"]::after {
    font-size: 95%;
    right: 1.3rem;
  }
  .anchor a[href^="#"]:hover {
    background: var(--clr_green);
    color: var(--clr_white);
  }
}
.wp-block-button__link {
  text-decoration: none !important;
}

.tbl, .box_page .wp-block-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
.tbl thead, .box_page .wp-block-table thead {
  border: none;
}
.tbl thead th, .box_page .wp-block-table thead th {
  color: var(--clr_white);
  background: var(--clr_green);
  border: 1px solid var(--clr_border);
}
.tbl tbody tr td, .box_page .wp-block-table tbody tr td {
  padding: 0.4rem 1rem;
  border: 1px solid var(--clr_border);
}
.tbl tbody tr td:first-child, .box_page .wp-block-table tbody tr td:first-child {
  background: var(--clr_gray);
}
.tbl.w30 tbody tr td:first-child, .box_page .w30.wp-block-table tbody tr td:first-child {
  width: 30%;
}

@media screen and (min-width: 48em), print {
  .tbl tbody tr td, .box_page .wp-block-table tbody tr td {
    padding: 1rem 2rem;
  }
}
.pager {
  margin-top: 4rem;
}
.pager > .page-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0.1rem;
}
.pager > .page-numbers li a, .pager > .page-numbers li .current, .pager > .page-numbers li .dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  background: var(--clr_green);
  color: #fff;
  padding: 0.4rem 1rem;
  text-decoration: none !important;
  border: 1px solid var(--clr_green);
}
.pager > .page-numbers li a.prev::before, .pager > .page-numbers li .current.prev::before, .pager > .page-numbers li .dots.prev::before {
  font-family: "fontello";
  content: "\71";
  font-size: 80%;
}
.pager > .page-numbers li a.next::after, .pager > .page-numbers li .current.next::after, .pager > .page-numbers li .dots.next::after {
  font-family: "fontello";
  content: "\77";
  font-size: 80%;
}
.pager > .page-numbers li .current {
  background: #fff;
  color: var(--clr_green);
}
.pager > .page-numbers li .dots {
  height: 100%;
  border: none;
  color: var(--clr_blue);
  background: #fff;
  line-height: 1;
}

@media screen and (min-width: 48em), print {
  .pager {
    margin-top: 8rem;
  }
  .pager > .page-numbers li a, .pager > .page-numbers li .current, .pager > .page-numbers li .dots {
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .pager > .page-numbers li a, .pager > .page-numbers li .current, .pager > .page-numbers li .dots {
    opacity: 1;
  }
  .pager > .page-numbers li a:where(:-moz-any-link, :enabled, summary):hover, .pager > .page-numbers li .current:where(:-moz-any-link, :enabled, summary):hover, .pager > .page-numbers li .dots:where(:-moz-any-link, :enabled, summary):hover {
    background: #fff;
    color: var(--clr_green);
  }
  .pager > .page-numbers li a:where(:any-link, :enabled, summary):hover, .pager > .page-numbers li .current:where(:any-link, :enabled, summary):hover, .pager > .page-numbers li .dots:where(:any-link, :enabled, summary):hover {
    background: #fff;
    color: var(--clr_green);
  }
}
@media screen and (min-width: 48em), print {
  .pager > .page-numbers li a:focus-visible, .pager > .page-numbers li .current:focus-visible, .pager > .page-numbers li .dots:focus-visible {
    background: #fff;
    color: var(--clr_green);
  }
}
.wp-block-image .alignleft, .wp-block-image .alignright {
  float: none;
  margin: 2rem auto;
}

@media screen and (min-width: 48em), print {
  .wp-block-image .alignleft {
    float: left;
    margin: 0 4rem 4rem 0;
  }
  .wp-block-image .alignright {
    float: right;
    margin: 0 0 4rem 4rem;
  }
}
.wp-element-caption {
  font-size: 1.4rem !important;
}
@media screen and (min-width: 48em), print {
  .wp-element-caption {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: auto !important;
  }
}
.has-background {
  padding: 1.6rem;
  background: var(--clr_gray);
  border-radius: 10px;
}
.has-background.-color02 {
  background: var(--clr_green_light02);
}
@media screen and (min-width: 48em), print {
  .has-background {
    padding: 3rem;
    border-radius: 20px;
  }
}

html:has(dialog[open]) {
  overflow: hidden;
}

#dialog {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  z-index: calc(infinity);
  width: 100%;
  height: 100%;
  max-width: inherit;
  max-height: inherit;
  border: none;
  cursor: pointer;
  background: rgba(var(--rgb_white), 0.6);
  -webkit-backdrop-filter: blur(0.6rem);
          backdrop-filter: blur(0.6rem);
}
#dialog #dialog_content {
  background-color: var(--clr_white);
  outline: none;
  padding: 1.5rem;
  position: fixed;
  inset: 0;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  max-height: 80%;
  max-width: calc(100% - 1.5rem);
  overflow-y: scroll;
}
#dialog #dialog_content::-webkit-scrollbar {
  background: var(--clr_white);
  width: 1rem;
}
#dialog #dialog_content::-webkit-scrollbar-thumb {
  background: var(--clr_border);
  border-radius: 50vh;
}
#dialog #dialog_content .lst_news dt, #dialog #dialog_content .lst_news dd {
  padding-left: 1rem;
  padding-right: 1rem;
}
#dialog #dialog_content .lst_news dt {
  margin-bottom: 0.2rem;
}
#dialog #dialog_content .lst_news dt::before {
  content: none;
}
#dialog #dialog_content .lst_news dd {
  margin-top: 0;
}
#dialog #dialog_content .lst_news dd:not(:nth-of-type(-n+3)) {
  display: block;
}
#dialog #dialog_content form button {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  color: var(--clr_white);
  background: var(--clr_blue);
  text-align: center;
  padding: 0.4rem 3rem;
  margin: 2rem auto 0;
  border-radius: 0.6rem;
  font-weight: bold;
  outline: none;
}
@media screen and (min-width: 48em), print {
  #dialog #dialog_content {
    padding: 2rem 4rem 3.5rem;
    max-height: 70%;
    max-width: 70%;
  }
  #dialog #dialog_content .lst_news dt, #dialog #dialog_content .lst_news dd {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  #dialog #dialog_content form button {
    font-size: 1.8rem;
    padding: 0.8rem 6rem;
    letter-spacing: 0.1rem;
    margin: 4rem auto 0;
    border-radius: 1rem;
  }
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus-visible {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

html {
  font-size: 2.7777777778vw;
  scroll-behavior: smooth;
}

body {
  background: var(--clr_white);
  color: var(--clr_txt);
  font-family: YakuHanJP, Noto Sans JP, sans-serif;
  font-weight: 400;
  font-style: normal;
}
body::after {
  visibility: hidden;
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(var(--rgb_white), 0.6);
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  -webkit-backdrop-filter: blur(0.6rem);
  backdrop-filter: blur(0.6rem);
}
body.spnav_modal {
  overflow: hidden !important;
}
body.spnav_modal::after {
  visibility: visible;
  opacity: 1;
}

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

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

.main {
  font-size: 1.55rem;
  line-height: 2;
  letter-spacing: 0.06em;
}
.main a:not(:is(.btn a, [class*=btn] a, [class*=btn], [href*="tel:"])) {
  text-decoration: underline;
  color: var(--clr_green);
}

@media screen and (min-width: 48em), print {
  html {
    font-size: 62.5%;
  }
  body {
    min-width: calc(1200px + 40px);
  }
  body::after {
    display: none;
  }
  a, button {
    transition: 0.2s;
  }
  a img, button img {
    transition: 0.2s;
  }
  a:hover, button:hover {
    opacity: 0.8;
  }
  a:hover img, button:hover img {
    opacity: 0.8;
  }
  .wrap {
    width: 1200px;
    margin-inline: auto;
  }
  .main {
    font-size: 2.2rem;
    letter-spacing: 0.08em;
  }
  .main a:not(:is(.btn a, [class*=btn] a, [class*=btn], [href*="tel:"])) :hover {
    opacity: 1;
    text-decoration: none;
  }
}
:target {
  scroll-margin-top: 6rem;
}
@media screen and (min-width: 48em), print {
  :target {
    scroll-margin-top: 9rem;
  }
}

.header {
  position: relative;
  z-index: 100;
}
.header > .wrap {
  padding: 1rem 0 0;
}
.header > .wrap .headL .site_tit {
  color: var(--clr_txt);
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}
.header > .wrap .headL .logo {
  width: 100%;
  height: 5rem;
}
.header > .wrap .headL .logo a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/logo.svg) center center/contain no-repeat;
}
.header > .wrap .headL .logo a .clip {
  display: block;
  height: 100%;
  overflow: hidden;
  clip-path: inset(50%);
  color: transparent;
}
.header > .wrap .headR .head_acs {
  background: var(--clr_green_light);
  border-radius: 6px;
  padding: 1.2rem 5rem 1.2rem 1.4rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.header > .wrap .headR .head_acs .acs_lst {
  line-height: 1.2;
  margin: 0;
}
.header > .wrap .headR .head_acs .acs_lst > li {
  padding: 0 0 0 1em;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.3rem;
  position: relative;
}
.header > .wrap .headR .head_acs .acs_lst > li:not(:last-child) {
  margin: 0 0 0.6rem;
}
.header > .wrap .headR .head_acs .acs_lst > li::before {
  content: "●";
  color: var(--clr_green);
  font-size: 55%;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.header > .wrap .headR .head_acs .walk {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4rem;
  width: 8rem;
  height: 8rem;
  color: var(--clr_white);
  display: grid;
  place-content: center;
  line-height: 1.1;
  font-size: 1.6rem;
  background: var(--clr_green);
  border-radius: 50%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2rem;
  text-align: center;
}
.header > .wrap .headR .head_acs .walk .duration {
  display: block;
}
.header > .wrap .headR .head_acs .walk .duration .num {
  font-size: 160%;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

@media screen and (min-width: 48em), print {
  .header > .wrap {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header > .wrap .headL .site_tit {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .header > .wrap .headL .logo {
    width: 54rem;
    height: 6rem;
  }
  .header > .wrap .headR {
    width: calc(100% - 55rem);
    margin-top: 0.5rem;
  }
  .header > .wrap .headR .acs_tel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
  }
  .header > .wrap .headR .acs_tel .head_acs {
    border-radius: 1rem;
    padding: 1.2rem 4.7rem 1.2rem 1.2rem;
    margin-right: 4rem;
  }
  .header > .wrap .headR .acs_tel .head_acs .acs_lst {
    line-height: 1.2;
    margin: 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  .header > .wrap .headR .acs_tel .head_acs .acs_lst > li {
    padding: 0 0 0 0.95em;
    font-size: 1.6rem;
  }
  .header > .wrap .headR .acs_tel .head_acs .acs_lst > li:not(:last-child) {
    margin: 0 0 0.8rem;
  }
  .header > .wrap .headR .acs_tel .head_acs .acs_lst > li::before {
    font-size: 55%;
    top: 0.5rem;
  }
  .header > .wrap .headR .acs_tel .head_acs .walk {
    right: -4rem;
    width: 8rem;
    height: 8rem;
    line-height: 1.1;
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
  }
  .header > .wrap .headR .acs_tel .head_acs .walk .duration .num {
    font-size: 2.8rem;
    transform: translateY(1px);
    display: inline-block;
  }
  .header > .wrap .headR .acs_tel .tel {
    height: 7rem;
    font-size: 3.2rem;
  }
}
#sp_nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--clr_white);
  height: 5rem;
  box-shadow: 0 0.4rem 0.3rem rgba(var(--rgb_txt), 0.05);
}
#sp_nav > ul {
  display: flex;
  width: 100%;
  height: 100%;
}
#sp_nav > ul > li {
  width: 25%;
  border-right: 1px solid;
  border-image-source: linear-gradient(to bottom, transparent 1rem, var(--clr_border) 1rem, var(--clr_border) calc(100% - 1rem), transparent calc(100% - 1rem));
  border-image-slice: 1;
}
#sp_nav > ul > li:last-of-type {
  border-right: none;
}
#sp_nav > ul > li > a, #sp_nav > ul > li #sp_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.15;
  line-height: 1;
  height: 100%;
  font-weight: bold;
}
#sp_nav > ul > li > a::before, #sp_nav > ul > li #sp_menu::before {
  font-family: "fontello";
  content: "\f1c1";
  text-align: center;
  line-height: 1;
  font-size: 1.45rem;
  font-weight: normal;
  color: var(--clr_blue);
}
#sp_nav > ul > li > a.icon_home::before, #sp_nav > ul > li #sp_menu.icon_home::before {
  font-family: "fontello";
  content: "\e817";
  transform: translateY(-1px);
}
#sp_nav > ul > li > a.icon_tel::before, #sp_nav > ul > li #sp_menu.icon_tel::before {
  font-family: "fontello";
  content: "\e815";
}
#sp_nav > ul > li > a.icon_acs::before, #sp_nav > ul > li #sp_menu.icon_acs::before {
  font-family: "fontello";
  content: "\e818";
}
#sp_nav > ul > li #nav {
  height: 100%;
}
#sp_nav > ul > li #nav #sp_menu {
  width: 100%;
}
#sp_nav > ul > li #nav #sp_menu::before {
  font-family: "fontello";
  content: "\e813";
  color: var(--clr_blue);
}
#sp_nav > ul > li #nav #sp_menu::after {
  content: "MENU";
}
#sp_nav > ul > li #nav #sp_menu.close::before {
  font-family: "fontello";
  content: "\e81a";
}
#sp_nav > ul > li #nav #sp_menu.close::after {
  content: "CLOSE";
}
#sp_nav > ul > li #nav #sp_menu span {
  display: none;
}
@media screen and (min-width: 48em), print {
  #sp_nav {
    height: auto;
  }
  #sp_nav > ul > li:not(:last-of-type) {
    display: none;
  }
  #sp_nav > ul > li:has(#nav) {
    width: 100%;
  }
  #sp_nav > ul > li #sp_menu {
    display: none;
  }
}

#nav .gnav_subnav {
  display: none;
  width: 100%;
  max-height: calc(100vh - 20rem);
  overflow-y: auto;
  background: var(--clr_white);
  box-shadow: 0 0.4rem 0.3rem rgba(var(--rgb_txt), 0.05);
  padding: 0 1.5rem 1.5rem;
  margin: auto;
  position: absolute;
  inset: 5rem 0 auto;
  z-index: 100;
}
#nav .gnav_subnav .gnav {
  border-bottom: 1px solid var(--clr_border);
}
#nav .gnav_subnav .gnav > li:not(:last-child) {
  border-bottom: 1px solid var(--clr_border);
}
#nav .gnav_subnav .gnav > li.sp_menu_n {
  display: none;
}
#nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li > .sub {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  font-size: 1.4rem;
  position: relative;
  font-weight: bold;
}
#nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li > .sub::before {
  margin-right: 0.4rem;
  color: var(--clr_blue);
}
#nav .gnav_subnav .gnav > li > a.home::before, #nav .gnav_subnav .gnav > li > .sub.home::before {
  font-family: "fontello";
  content: "\e81e";
}
#nav .gnav_subnav .gnav > li > a.-treatment::before, #nav .gnav_subnav .gnav > li > .sub.-treatment::before {
  font-family: "fontello";
  content: "\e820";
}
#nav .gnav_subnav .gnav > li > a.-respiratory::before, #nav .gnav_subnav .gnav > li > .sub.-respiratory::before {
  font-family: "fontello";
  content: "\e81f";
}
#nav .gnav_subnav .gnav > li > a.-internal::before, #nav .gnav_subnav .gnav > li > .sub.-internal::before {
  font-family: "fontello";
  content: "\e821";
}
#nav .gnav_subnav .gnav > li > a.-symptoms::before, #nav .gnav_subnav .gnav > li > .sub.-symptoms::before {
  font-family: "fontello";
  content: "\e822";
}
#nav .gnav_subnav .gnav > li > a.-clinic_information::before, #nav .gnav_subnav .gnav > li > .sub.-clinic_information::before {
  font-family: "fontello";
  content: "\e823";
}
#nav .gnav_subnav .gnav > li .sub::after {
  font-family: "fontello";
  content: "\34";
  color: var(--clr_green);
  line-height: 1;
  display: block;
  position: absolute;
  right: 1rem;
  bottom: 1.2rem;
  font-weight: normal;
  font-size: 110%;
  transition: 0.2s;
}
#nav .gnav_subnav .gnav > li .sub.close::after {
  transform: scale(1, -1);
}
#nav .gnav_subnav .gnav > li .subbox {
  display: none;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav {
  display: flex;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
  padding: 0.5rem 0 1.5rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav > li > a {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.04rem;
  padding-left: 2.5rem;
  position: relative;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav > li > a::before {
  font-family: "fontello";
  content: "\e81c";
  color: var(--clr_green);
  font-size: 130%;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0.1rem;
}
#nav .gnav_subnav .gnav > li .subbox > .subnav > li > a.current {
  color: var(--clr_green);
}
#nav .gnav_subnav #menu_close {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
  color: var(--clr_white);
  background: var(--clr_blue);
  text-align: center;
  padding: 0.4rem 3rem;
  margin: 2rem auto 0;
  border-radius: 0.6rem;
  font-weight: bold;
}

@media screen and (min-width: 48em), print {
  #nav {
    width: auto;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  #nav #sp_menu {
    display: none;
  }
  #nav .gnav_subnav {
    display: block !important;
    width: 100%;
    padding: 0;
    max-height: inherit;
    overflow-y: visible;
    position: static;
  }
  #nav .gnav_subnav .gnav {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    position: relative;
  }
  #nav .gnav_subnav .gnav > li {
    width: 16.6666666667%;
    border-right: 1px solid;
    border-image-source: linear-gradient(to bottom, transparent 1.5rem, var(--clr_border) 1.5rem, var(--clr_border) calc(100% - 1.5rem), transparent calc(100% - 1.5rem));
    border-image-slice: 1;
    display: grid;
  }
  #nav .gnav_subnav .gnav > li.sp_menu_n {
    display: grid;
  }
  #nav .gnav_subnav .gnav > li:not(:last-child) {
    border-bottom: none;
  }
  #nav .gnav_subnav .gnav > li:first-of-type {
    border-left: 1px solid var(--clr_border);
  }
  #nav .gnav_subnav .gnav > li::after {
    content: "";
    width: 100%;
    height: 0.2rem;
    background: transparent;
    transition: 0.2s;
    pointer-events: none;
    margin-top: -0.2rem;
  }
  #nav .gnav_subnav .gnav > li:hover::after {
    background: var(--clr_green);
  }
  #nav .gnav_subnav .gnav > li > a, #nav .gnav_subnav .gnav > li > .sub {
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    margin: 0;
    padding: 2.5rem 0.8em 2.5rem 0.5rem;
    letter-spacing: 0.07rem;
    cursor: pointer;
  }
  #nav .gnav_subnav .gnav > li > a::before, #nav .gnav_subnav .gnav > li > .sub::before {
    font-size: 100%;
  }
  #nav .gnav_subnav .gnav > li .sub::after {
    right: 0;
    left: 0;
    bottom: 0.2rem;
    margin: auto;
  }
  #nav .gnav_subnav .gnav > li .sub.close::after {
    transform: none;
  }
  #nav .gnav_subnav .gnav > li .subbox {
    display: none;
    width: 100%;
    position: absolute;
    top: 8rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(var(--rgb_white), 0.95);
    z-index: 100;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav {
    padding: 4rem 4rem;
    gap: 3rem 4rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav > li > a {
    text-align: left;
    font-size: 1.8rem;
    letter-spacing: 0.08rem;
    padding-left: 3.5rem;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav > li > a::before {
    font-size: 150%;
    top: 0;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav > li > a:hover {
    color: var(--clr_green);
    opacity: 1;
  }
  #nav .gnav_subnav .gnav > li .subbox > .subnav > li > a.current {
    color: var(--clr_green);
  }
  #nav .gnav_subnav .gnav > li.hide {
    display: none;
  }
  #nav .gnav_subnav #menu_close {
    display: none;
  }
}
.overview {
  padding: 4rem 0;
  background: url("../img/overview_bg.webp") center top/auto 100% no-repeat;
  font-size: 1.4rem;
  line-height: 1.6;
}
.overview > .wrap {
  padding: 3rem 1.5rem;
  background: var(--clr_white);
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .overview > .wrap {
    border-radius: 2rem;
  }
}
.overview > .wrap .clinic_name {
  margin: 0 0 3rem;
}
.overview > .wrap .clinic_name img {
  max-width: 85%;
  max-height: 7rem;
  margin: auto;
}
.overview > .wrap .overviewL .gaiyo {
  width: 100%;
  margin: 0;
}
.overview > .wrap .overviewL .gaiyo dt {
  padding: 1rem 0.2rem 0.2rem;
  font-weight: bold;
  border-top: 1px solid var(--clr_border);
}
.overview > .wrap .overviewL .gaiyo dt.space {
  letter-spacing: 0.6em;
}
.overview > .wrap .overviewL .gaiyo dd {
  padding: 0.2rem 0.2rem 1rem;
}
.overview > .wrap .overviewL .gaiyo dd:last-of-type {
  border-bottom: 1px solid var(--clr_border);
}
.overview > .wrap .overviewL .gaiyo dd .lst_acs {
  margin: 0;
}
.overview > .wrap .overviewL .gaiyo dd .lst_acs > li {
  padding-left: 1em;
}
.overview > .wrap .overviewL .gaiyo dd .lst_acs > li:not(:last-child) {
  margin: 0 0 0.5rem;
}
.overview > .wrap .overviewL .timetable {
  margin: 2rem 0;
}
.overview > .wrap .overviewL .timetable .wp-block-columns {
  margin: 0;
}
.overview > .wrap .overviewL .timetable table {
  font-size: 1.3rem;
}
.overview > .wrap .overviewR {
  margin: 2rem 0 0;
}
.overview > .wrap .overviewR .map_img {
  margin: 2.5rem 0 1rem;
}
.overview > .wrap .overviewR .gmap_btn {
  justify-content: center;
}

@media screen and (min-width: 48em), print {
  .overview {
    padding: 10rem 0;
    font-size: 1.8rem;
  }
  .overview > .wrap {
    gap: 0 3%;
    padding: 6rem 4rem;
  }
  .overview > .wrap .clinic_name {
    width: 100%;
    margin: 0 0 6rem;
  }
  .overview > .wrap .clinic_name img {
    max-width: 54rem;
    max-height: 6rem;
  }
  .overview > .wrap .overview_content {
    display: flex;
    justify-content: space-between;
  }
  .overview > .wrap .overviewL, .overview > .wrap .overviewR {
    width: 48.5%;
  }
  .overview > .wrap .overviewL .gaiyo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .overview > .wrap .overviewL .gaiyo dt {
    width: 15rem;
    padding: 1rem 1.5rem 1rem 0.5rem;
    display: grid;
    place-items: center;
    text-align: center;
  }
  .overview > .wrap .overviewL .gaiyo dt.space {
    letter-spacing: 1em;
    text-indent: 1em;
  }
  .overview > .wrap .overviewL .gaiyo dt:last-of-type {
    border-bottom: 1px solid var(--clr_border);
  }
  .overview > .wrap .overviewL .gaiyo dd {
    width: calc(100% - 15rem);
    padding: 1.3rem 0 1.3rem 1rem;
    border-top: 1px solid var(--clr_border);
  }
  .overview > .wrap .overviewL .gaiyo dd .lst_acs > li {
    padding-left: 0.5em;
  }
  .overview > .wrap .overviewL .gaiyo dd .lst_acs > li::before {
    left: -1rem;
  }
  .overview > .wrap .overviewL .gaiyo dd .lst_acs > li:not(:last-child) {
    margin: 0 0 0.5rem;
  }
  .overview > .wrap .overviewL .timetable {
    margin: 3rem 0 0;
  }
  .overview > .wrap .overviewL .timetable .wp-block-table {
    margin-bottom: 1.1rem;
  }
  .overview > .wrap .overviewL .timetable table {
    font-size: 2rem;
  }
  .overview > .wrap .overviewL .timetable table thead th:first-child {
    width: 34%;
  }
  .overview > .wrap .overviewL .timetable table thead th:last-of-type {
    width: 16%;
  }
  .overview > .wrap .overviewL .timetable table tr td {
    padding: 1.6rem 0;
  }
  .overview > .wrap .overviewR {
    margin: 0;
  }
  .overview > .wrap .overviewR .map_img {
    margin: 0 0 2.5rem;
  }
}
#tel_up {
  width: 100%;
  height: 5rem;
  position: sticky;
  bottom: 0;
  right: 0;
  z-index: 10;
  font-size: 1.4rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#tel_up ul {
  width: calc(100% - 7rem);
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  line-height: 1;
  gap: 0.5rem;
  margin-left: 0.5rem;
}
#tel_up ul li {
  flex-grow: 1;
  height: 100%;
  text-align: center;
}
#tel_up ul li > * {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}
#tel_up ul li.btn_online a, #tel_up ul li.btn_recruit a, #tel_up ul li.btn_fever a {
  min-width: inherit;
  width: 100%;
  height: 100%;
  padding: 0;
}
#tel_up #pageup {
  display: grid;
  place-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 0.5rem;
  text-align: center;
  line-height: 1;
  color: var(--clr_green);
  background: var(--clr_green_light);
  border: 1px solid var(--clr_green_light);
  overflow: hidden;
  z-index: 101;
  font-size: 1.1rem;
  border-radius: 50%;
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
#tel_up #pageup::before {
  display: block;
  font-family: "fontello";
  content: "\e816";
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  font-weight: normal;
}

@media screen and (min-width: 48em), print {
  #tel_up {
    height: 8rem;
    right: 0;
    left: 0;
    justify-content: flex-end;
    pointer-events: none;
    max-width: 180rem;
    margin-inline: auto;
  }
  #tel_up ul {
    justify-content: flex-end;
    gap: 0 1.2rem;
  }
  #tel_up ul li {
    flex-grow: inherit;
    width: -moz-fit-content;
    width: fit-content;
    flex-shrink: 0;
    pointer-events: all;
  }
  #tel_up ul li .tel {
    height: 100%;
  }
  #tel_up ul li.btn_online a, #tel_up ul li.btn_recruit a, #tel_up ul li.btn_fever a {
    font-size: 2.6rem;
    padding: 0.4rem 2rem 0.4rem 1.5rem;
  }
  #tel_up #pageup {
    width: 6rem;
    height: 6rem;
    font-size: 1.6rem;
    margin: 0 1.2rem;
    pointer-events: all;
  }
  #tel_up #pageup::before {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  #tel_up #pageup {
    opacity: 1;
  }
  #tel_up #pageup:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 1;
    background: var(--clr_white);
    border-color: var(--clr_green);
  }
  #tel_up #pageup:where(:any-link, :enabled, summary):hover {
    opacity: 1;
    background: var(--clr_white);
    border-color: var(--clr_green);
  }
}
@media screen and (min-width: 48em), print {
  #tel_up #pageup:focus-visible {
    opacity: 1;
    background: var(--clr_white);
    border-color: var(--clr_green);
  }
}
.footer {
  text-align: center;
  margin-bottom: 5.5rem;
}
.footer .copy {
  display: block;
  background: var(--clr_gray);
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
}
.footer > .wrap ul {
  display: none;
}

@media screen and (min-width: 48em), print {
  .footer {
    padding: 4.2rem 0 0;
    overflow: hidden;
    margin-bottom: 0rem;
  }
  .footer .copy {
    font-size: 1.8rem;
    padding: 1.5rem;
    margin: 4rem 0 0;
  }
  .footer > .wrap ul {
    width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 0;
    text-align: center;
  }
  .footer > .wrap ul li {
    font-size: 1.8rem;
    padding: 0 1rem;
    line-height: 1;
    border-right: 1px solid var(--clr_txt);
    -webkit-text-size-adjust: none;
  }
  .footer > .wrap ul li a:hover {
    text-decoration: underline;
    opacity: 1;
  }
  .footer > .wrap ul li.treatment, .footer > .wrap ul li.respiratory, .footer > .wrap ul li.internal, .footer > .wrap ul li.symptoms, .footer > .wrap ul li.clinic_information {
    display: none;
  }
  .footer > .wrap ul li.last-in-row {
    border-right: none;
  }
}
.keyvsl {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.keyvsl #keyvsl {
  max-width: 100%;
  height: 100vw;
  overflow: hidden;
}
.keyvsl #keyvsl div img {
  height: 100vw !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}
.keyvsl #keyvsl .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: -2rem auto 0;
  position: relative;
  z-index: 2;
}
.keyvsl #keyvsl .slick-dots li {
  width: 1rem;
  height: 1rem;
  margin: 0 0.6rem;
}
.keyvsl #keyvsl .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(var(--rgb_white), 0.4);
}
.keyvsl #keyvsl .slick-dots li.slick-active button {
  background: rgba(var(--rgb_white), 0.8);
}
.keyvsl #text_slider {
  width: 100%;
  height: 100vw;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.keyvsl #text_slider .wrap {
  height: 100vw;
  padding: 1.5rem 1.5rem 2.5rem;
  margin: 0;
}
.keyvsl #text_slider .wrap .catch_copy {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem 0;
}
.keyvsl #text_slider .wrap .catch_copy > span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  background: rgba(var(--rgb_white), 0.9);
  padding: 0.4rem 0.6rem;
  letter-spacing: 0.2rem;
}
.keyvsl #text_slider .wrap .catch_copy > span .txt_blue, .keyvsl #text_slider .wrap .catch_copy > span .txt_aqua, .keyvsl #text_slider .wrap .catch_copy > span .txt_green {
  font-size: 1.9rem;
}

@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl {
    height: 75rem;
  }
  .keyvsl #keyvsl div img {
    height: 75rem !important;
  }
  .keyvsl #keyvsl .slick-dots {
    margin: -3rem auto 0;
  }
  .keyvsl #keyvsl .slick-dots li {
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 1.2rem;
  }
}
@media screen and (min-width: 48em) and (hover: hover), print and (hover: hover) {
  .keyvsl #keyvsl .slick-dots li button {
    opacity: 1;
  }
  .keyvsl #keyvsl .slick-dots li button:where(:-moz-any-link, :enabled, summary):hover {
    background: rgba(var(--rgb_white), 0.8);
  }
  .keyvsl #keyvsl .slick-dots li button:where(:any-link, :enabled, summary):hover {
    background: rgba(var(--rgb_white), 0.8);
  }
}
@media screen and (min-width: 48em), print {
  .keyvsl #keyvsl .slick-dots li button:focus-visible {
    background: rgba(var(--rgb_white), 0.8);
  }
  .keyvsl #text_slider {
    width: 1200px;
    height: 75rem;
    margin-inline: auto;
  }
  .keyvsl #text_slider .wrap {
    height: 75rem;
    padding: 0 0 12rem;
  }
  .keyvsl #text_slider .wrap .catch_copy {
    gap: 0.9rem 0;
  }
  .keyvsl #text_slider .wrap .catch_copy > span {
    font-size: 3.2rem;
    padding: 0.1rem 1rem 0.3rem 1.5rem;
    letter-spacing: 0.4rem;
  }
  .keyvsl #text_slider .wrap .catch_copy > span .txt_blue, .keyvsl #text_slider .wrap .catch_copy > span .txt_aqua, .keyvsl #text_slider .wrap .catch_copy > span .txt_green {
    font-size: 4rem;
  }
}
body.home .main .top_tit02 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.3;
  padding-top: 1.6rem;
  background: url("../img/tit_02.svg") top center/3rem auto no-repeat;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 48em), print {
  body.home .main .top_tit02 {
    font-size: 4rem;
    margin-bottom: 5.5rem;
    padding-top: 2.5rem;
    background-size: 5rem auto;
    letter-spacing: 0.4rem;
  }
}

.top_timetable {
  padding: 4rem 1rem;
  background: url("../img/index_schedule_decoR.svg") top -10rem right -10rem/60% auto no-repeat, url("../img/index_schedule_decoL.svg") bottom left -8rem/60% auto no-repeat;
}
@media screen and (min-width: 48em), print {
  .top_timetable {
    padding: 10rem 0;
    background: url("../img/index_schedule_decoR.svg") top right calc(50% - 76rem)/58rem auto no-repeat, url("../img/index_schedule_decoL.svg") bottom left calc(50% - 76rem)/58rem auto no-repeat;
  }
  .top_timetable .timetable {
    width: 74rem;
    margin-inline: auto;
  }
  .top_timetable .timetable thead th {
    padding: 0 0 0.4rem;
  }
  .top_timetable .timetable tr td {
    padding: 1.9rem 0;
  }
}

.news_blog {
  padding: 4rem 0;
  background: var(--clr_gray);
}
.news_blog .btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.news_blog.-closed {
  background: var(--clr_blue_light02);
}
.news_blog .info_tit {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}
.news_blog > .wrap {
  border-top: 2px solid var(--clr_blue);
}
@media screen and (min-width: 48em), print {
  .news_blog {
    padding: 6rem 0 7rem;
  }
  .news_blog .info_tit {
    font-size: 3.6rem;
    margin-bottom: 0.8rem;
  }
  .news_blog > .wrap {
    width: calc(1200px - 20rem);
    margin-inline: auto;
  }
}

.lst_news {
  border-bottom: 1px solid var(--clr_border);
}
.lst_news dt {
  margin-bottom: 1.65rem;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.5rem;
  position: relative;
  padding: 1.5rem 1rem 0rem 2.5rem;
  letter-spacing: 0.05em;
}
.lst_news dt::before {
  font-family: "fontello";
  content: "\e800";
  font-weight: normal;
  position: absolute;
  top: 1.4rem;
  left: 0.2rem;
  color: var(--clr_blue);
  transition: 0.2s;
}
.lst_news dt.open::before {
  transform: scale(1, -1);
}
.lst_news dt:not(:first-of-type) {
  border-top: 1px solid var(--clr_border);
}
.lst_news dd {
  margin: -1.5rem 0 1.5rem;
  padding: 0 1rem 0 2.5rem;
  word-wrap: break-word;
}
.lst_news dd:not(:nth-of-type(-n+3)) {
  display: none;
}
.lst_news dd p {
  margin: 0;
}
.lst_news dd p:not(:first-of-type) {
  margin-top: 0.8em;
}
.lst_news a {
  color: var(--clr_green);
  text-decoration: underline;
}
.lst_news a:hover {
  text-decoration: none;
}
@media screen and (min-width: 48em), print {
  .lst_news dt {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    padding: 1.5rem 1rem 0rem 4rem;
  }
  .lst_news dt::before {
    top: 1.4rem;
    left: 0.2rem;
  }
  .lst_news dd {
    margin: -1.5rem 0 1.5rem;
    padding: 0 1rem 0 4rem;
  }
}

.index_policy {
  padding: 4rem 0;
  background: url("../img/index_policy_bg.webp") center left -18rem/cover no-repeat;
}
.index_policy .policy_tit {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.index_policy .policy_tit .txt_aqua, .index_policy .policy_tit .txt_green {
  font-size: 2rem;
}
.index_policy .policy_subtit {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0 0 1.8rem;
}
.index_policy p {
  margin: 0;
  letter-spacing: 0;
}
@media screen and (min-width: 48em), print {
  .index_policy {
    max-width: 200rem;
    margin-inline: auto;
    background-position: center top;
    padding: 12rem 0;
  }
  .index_policy .policy_tit {
    font-size: 3.6rem;
    margin-bottom: 5.5rem;
  }
  .index_policy .policy_tit .txt_aqua, .index_policy .policy_tit .txt_green {
    font-size: 4rem;
  }
  .index_policy .policy_subtit {
    font-size: 2.6rem;
    margin-bottom: 5.5rem;
  }
  .index_policy .policy_txt {
    width: calc(1200px - 20rem);
    margin-inline: auto;
  }
  .index_policy .policy_txt P span {
    display: inline-block;
  }
}

.feature {
  padding: 4rem 0rem 0;
  background: url("../img/index_schedule_decoR.svg") top -10rem right -10rem/60% auto no-repeat, url("../img/index_schedule_decoL.svg") top 2rem left -8rem/60% auto no-repeat;
}
.feature ol {
  margin: 3rem 0 0;
  counter-reset: number 0;
}
.feature ol li {
  counter-increment: number 1;
  background: url("../img/index_feature_bg02.webp") top 46vw left/cover no-repeat;
}
.feature ol li::before {
  display: block;
  content: "";
  width: 100%;
  aspect-ratio: 100/47;
}
.feature ol li > div {
  padding: 3rem 1.5rem;
}
.feature ol li > div .tit {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.4;
  background: var(--clr_white);
  padding: 0.4rem 0.6rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.feature ol li > div .tit .color_txt {
  color: var(--clr_blue);
}
.feature ol li > div p {
  margin: 0.6rem 0 0;
  letter-spacing: 0;
}
.feature ol li.feature01::before {
  background: url(../img/index_feature01.webp) no-repeat center/cover;
}
.feature ol li.feature02::before {
  background: url(../img/index_feature02.webp) no-repeat center/cover;
}
.feature ol li.feature03::before {
  background: url(../img/index_feature03.webp) no-repeat center/cover;
}
.feature ol li.feature04::before {
  background: url(../img/index_feature04.webp) no-repeat center/cover;
}
.feature ol li:nth-of-type(even) {
  background-image: url("../img/index_feature_bg01.webp");
}
.feature ol li:nth-of-type(even) > div .tit .color_txt {
  color: var(--clr_green);
}
.feature ol li:nth-of-type(even) > div .btn a {
  background: var(--clr_green);
}
@media screen and (min-width: 48em), print {
  .feature {
    padding: 10rem 0rem 0;
    background: url("../img/index_schedule_decoR.svg") top -28rem right calc(50% - 76rem)/58rem auto no-repeat, url("../img/index_schedule_decoL.svg") top 2rem left calc(50% - 76rem)/58rem auto no-repeat;
    max-width: 200rem;
    margin-inline: auto;
    overflow: hidden;
  }
  .feature ol {
    margin: 10.5rem 0 0;
  }
  .feature ol li {
    min-height: 47rem;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
    background-position: top left;
    background-size: auto 100%;
  }
  .feature ol li::before {
    width: 100rem;
    flex-shrink: 0;
  }
  .feature ol li > div {
    width: 100rem;
    flex-shrink: 0;
    padding: 4rem 5rem 0rem 40rem;
  }
  .feature ol li > div::before, .feature ol li > div::after {
    top: 1rem;
    left: 40rem;
  }
  .feature ol li > div::before {
    border-width: 2px;
    padding-left: 1.3rem;
    font-size: 2.2rem;
    letter-spacing: 0.24rem;
  }
  .feature ol li > div::after {
    letter-spacing: 0.3rem;
    padding-left: 12rem;
    font-size: 3.6rem;
    transform: translateY(-0.2rem);
  }
  .feature ol li > div .tit {
    font-size: 3.6rem;
    padding: 0.4rem 1.5rem;
    margin-bottom: 3.5rem;
  }
  .feature ol li > div p {
    margin: 0.6rem 0 0;
  }
  .feature ol li:nth-of-type(even) {
    flex-direction: row;
    background-position: top right;
  }
  .feature ol li:nth-of-type(even) > div {
    padding-right: 40rem;
    padding-left: 6rem;
  }
  .feature ol li:nth-of-type(even) > div::before, .feature ol li:nth-of-type(even) > div::after {
    left: 6rem;
  }
}

.index_medical {
  padding: 4rem 0rem;
  background: url(../img/index_medical_bg.webp) center left -5rem/auto 150% no-repeat;
}
.index_medical .subnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.index_medical .subnav li {
  width: calc((100% - 1.5rem) / 2);
  aspect-ratio: 1/1;
  position: relative;
  background: linear-gradient(135deg, var(--clr_blue), var(--clr_blue_dark04));
  border-radius: 50%;
}
.index_medical .subnav li::after {
  content: "";
  display: block;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  pointer-events: none;
  border: 1px solid var(--clr_white);
  border-radius: 50%;
  opacity: 0.4;
}
.index_medical .subnav li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: var(--clr_white);
  font-size: 1.5rem;
  padding: 53% 1rem 3rem;
  text-align: center;
  text-decoration: none !important;
  position: relative;
  line-height: 1.3;
  text-shadow: 0 0 6px var(--clr_blue);
}
.index_medical .subnav li a::before, .index_medical .subnav li a::after {
  position: absolute;
  line-height: 1;
  display: block;
  text-shadow: none;
}
.index_medical .subnav li a::before {
  font-family: "fontello";
  content: "\e806";
  display: block;
  font-size: 6.4rem;
  bottom: 42%;
  opacity: 0.8;
  line-height: 1;
}
.index_medical .subnav li a::after {
  content: "";
  background: url("../img/icon_arrow.svg") center center/contain no-repeat;
  width: 3rem;
  height: 3rem;
  inset: auto 0.8rem 0.8rem auto;
  z-index: 1;
}
.index_medical .subnav li a.icon_respiratory::before {
  font-family: "fontello";
  content: "\e83d";
}
.index_medical .subnav li a.icon_internal::before {
  font-family: "fontello";
  content: "\e841";
}
.index_medical .subnav li a.icon_cardiovascular::before {
  font-family: "fontello";
  content: "\e83e";
}
.index_medical .subnav li a.icon_gastro::before {
  font-family: "fontello";
  content: "\e83f";
}
.index_medical .subnav li a.icon_lifestyle::before {
  font-family: "fontello";
  content: "\e840";
}
.index_medical .subnav li a.icon_pediatrics::before {
  font-family: "fontello";
  content: "\e81d";
}
.index_medical .subnav li a.icon_vaccination::before {
  font-family: "fontello";
  content: "\e842";
}
.index_medical .bnr_lst {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
@media screen and (min-width: 48em), print {
  .index_medical {
    padding: 10rem 0rem;
    max-width: 200rem;
    margin-inline: auto;
    background: url(../img/index_medical_bg.webp) bottom center/cover no-repeat;
  }
  .index_medical .subnav {
    gap: 2rem;
    width: 85rem;
    margin-inline: auto;
  }
  .index_medical .subnav li {
    width: 27rem;
  }
  .index_medical .subnav li a {
    font-size: 2.8rem;
    padding: 46% 1rem 5rem;
    letter-spacing: 0.2rem;
  }
  .index_medical .subnav li a::before {
    font-size: 11rem;
    bottom: 47%;
  }
  .index_medical .subnav li a::after {
    width: 4rem;
    height: 4rem;
    inset: auto 1.7rem 1.7rem auto;
  }
  .index_medical .subnav li a:hover {
    text-shadow: none;
    background: var(--clr_white);
    color: var(--clr_blue);
    box-shadow: inset 0 0 0 3px var(--clr_blue), inset 0 0 0 6px var(--clr_white), inset 0 0 0 8px rgba(var(--rgb_blue), 0.5);
  }
  .index_medical .bnr_lst {
    margin-top: 5rem;
    flex-direction: row;
    gap: 3rem;
  }
  .index_medical .bnr_lst > li a:hover {
    opacity: 0.7;
  }
}

.index_symptoms {
  padding: 4rem 0;
  background: var(--clr_gray);
}
.index_symptoms .tab_ul {
  display: flex;
  justify-content: center;
  gap: 0 0.5rem;
}
.index_symptoms .tab_ul > li {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 7.5rem;
}
.index_symptoms .tab_ul > li a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: var(--clr_blue);
  color: var(--clr_white);
  border: 3px solid var(--clr_blue);
  border-bottom: none;
  font-weight: bold;
  border-radius: 1rem 1rem 0 0;
  padding: 1rem 1rem 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 1.4rem;
}
.index_symptoms .tab_ul > li a.active {
  background: var(--clr_white);
  color: var(--clr_blue);
  border-color: var(--clr_blue_light02);
  position: relative;
}
.index_symptoms .tab_ul > li a.active::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--clr_white);
  pointer-events: none;
  position: absolute;
  bottom: -3px;
  left: 0;
  transition: 0.2s;
}
.index_symptoms .tab_area {
  border: 3px solid var(--clr_blue_light02);
  background: var(--clr_white);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}
@media screen and (min-width: 48em), print {
  .index_symptoms .tab_area {
    border-radius: 2rem;
  }
}
.index_symptoms .tab_area .tab_content {
  display: none;
}
.index_symptoms .tab_area .tab_content.active {
  display: block;
}
.index_symptoms .tab_area .subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.index_symptoms .tab_area .subnav > li a {
  text-decoration: none;
  color: var(--clr_txt);
  font-weight: bold;
  font-size: 1.3rem;
  padding-left: 2.5rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
}
.index_symptoms .tab_area .subnav > li a::before {
  font-family: "fontello";
  content: "\e81c";
  color: var(--clr_blue);
  font-weight: normal;
  line-height: 1;
  font-size: 130%;
  letter-spacing: 0.04rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (min-width: 48em), print {
  .index_symptoms {
    padding: 10rem 0 8rem;
  }
  .index_symptoms .wrap {
    margin-top: 6rem;
  }
  .index_symptoms .tab_ul {
    gap: 0 3rem;
  }
  .index_symptoms .tab_ul > li {
    width: 34rem;
  }
  .index_symptoms .tab_ul > li a {
    font-size: 2.8rem;
    padding: 2.3rem 1rem;
    border-radius: 2rem 2rem 0 0;
    border-width: 5px;
  }
  .index_symptoms .tab_ul > li a.active::after {
    height: 5px;
    bottom: -5px;
  }
  .index_symptoms .tab_area {
    border-width: 5px;
    padding: 5rem 5.5rem;
  }
  .index_symptoms .tab_area .subnav {
    gap: 3.5rem 4rem;
  }
  .index_symptoms .tab_area .subnav > li a {
    font-size: 2rem;
    padding-left: 4.2rem;
  }
  .index_symptoms .tab_area .subnav > li a::before {
    font-size: 150%;
  }
  .index_symptoms .tab_area .subnav > li a:hover {
    color: var(--clr_blue);
  }
}

.index_greeting {
  padding: 4rem 0rem;
  background: url("../img/logomark.svg") top 4rem left 1.5rem/50% auto no-repeat, var(--clr_white);
}
.index_greeting .wrap .photo {
  text-align: center;
  margin: 2rem auto;
  width: 60%;
  position: relative;
  z-index: 1;
}
.index_greeting .wrap .photo img {
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .index_greeting .wrap .photo img {
    border-radius: 2rem;
  }
}
.index_greeting .wrap .photo::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid var(--clr_blue);
  top: 1rem;
  right: -1rem;
  z-index: -1;
  pointer-events: none;
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .index_greeting .wrap .photo::after {
    border-radius: 2rem;
  }
}
.index_greeting .wrap .greeting_txt {
  padding: 1.5rem;
  position: relative;
  letter-spacing: 0;
  z-index: 0;
}
.index_greeting .wrap .greeting_txt::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 4rem);
  position: absolute;
  top: -4rem;
  left: 0;
  background: url("../img/index_greeting_bg.webp") top left/cover no-repeat;
  z-index: -1;
}
.index_greeting .wrap .greeting_txt .dr_name {
  text-align: right;
  font-weight: bold;
  letter-spacing: 0.5em;
}
@media screen and (min-width: 48em), print {
  .index_greeting {
    padding: 10rem 0;
    overflow: hidden;
    background-size: 43.4rem auto;
    background-position: top 10rem left calc(50% - 60rem);
  }
  .index_greeting .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0 8rem;
  }
  .index_greeting .wrap .photo {
    width: 40rem;
    margin: -1.5rem 0 0;
    height: -moz-fit-content;
    height: fit-content;
  }
  .index_greeting .wrap .photo::after {
    top: 2rem;
    right: -2rem;
  }
  .index_greeting .wrap .greeting_txt {
    flex: 1;
    margin-top: 2.5rem;
    min-height: 48rem;
    padding: 3rem 0;
  }
  .index_greeting .wrap .greeting_txt p {
    font-size: 2rem;
  }
  .index_greeting .wrap .greeting_txt .dr_name {
    margin: 2.7rem 0 2.5rem;
  }
  .index_greeting .wrap .greeting_txt .dr_name .txt_large {
    font-size: 2.6rem;
    letter-spacing: 0.1rem;
  }
  .index_greeting .wrap .greeting_txt::after {
    top: 0;
    left: -10rem;
    width: 120rem;
    height: 100%;
  }
}

.btn_privacy {
  margin-bottom: 4rem;
}
@media screen and (min-width: 48em), print {
  .btn_privacy {
    margin-bottom: 8rem;
  }
}

body:not(.home) .sub_header {
  display: flex;
  flex-direction: column-reverse;
}
body:not(.home) .main {
  margin: 2rem 0;
}
body:not(.home) .main .tel {
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  body:not(.home) .main {
    margin: 6rem auto;
  }
}

.breadnav {
  max-width: 100vw;
  margin: 1.5rem 1.6rem;
  overflow-x: auto;
}
.breadnav .aioseo-breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  white-space: nowrap;
}
.breadnav .aioseo-breadcrumbs .aioseo-breadcrumb {
  display: flex;
  align-items: center;
}
.breadnav .aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: var(--clr_green);
  text-decoration: underline;
}
.breadnav .aioseo-breadcrumbs .aioseo-breadcrumb:not(:last-child)::after {
  display: inline-block;
  content: ">";
  font-size: 70%;
  margin: 0 0.6rem;
}
.breadnav .aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  display: none;
}

@media screen and (min-width: 48em), print {
  .breadnav {
    width: 1200px;
    max-width: 100%;
    margin: 1.5rem auto 0;
    overflow-x: inherit;
  }
  .breadnav .aioseo-breadcrumbs {
    font-size: 1.6rem;
  }
  .breadnav .aioseo-breadcrumbs .aioseo-breadcrumb:not(:last-child)::after {
    margin: 0 1rem;
  }
  .breadnav .aioseo-breadcrumbs .aioseo-breadcrumb a:hover {
    opacity: 1;
    text-decoration: none;
  }
}
.gallery {
  width: 85%;
  margin: auto;
  visibility: hidden;
  line-height: 1;
}
.gallery .gallery_slider div {
  position: relative;
}
.gallery .gallery_slider div .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  padding: 0.4rem 0.8rem;
  opacity: 0;
  transition: 0.3s ease;
  width: 100%;
  margin: 0;
  color: var(--clr_white);
  font-size: 90%;
  line-height: 1.25;
  min-height: 3.8rem;
  display: grid;
  place-content: center;
}
.gallery .gallery_slider div .slick-current .cap {
  opacity: 1;
  transition-delay: 0.5s;
  background: rgba(var(--rgb_blue_dark), 0.5);
}
.gallery .gallery_slider div:first-child .cap {
  transition-delay: 0s;
}
.gallery .gallery_slider .slick-arrow {
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 39%;
  cursor: pointer;
  line-height: 0;
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--clr_white);
  background: none;
  z-index: 1;
}
.gallery .gallery_slider .slick-arrow::before {
  font-family: "fontello";
  content: "\f006";
  color: var(--clr_blue);
  font-size: 3rem;
}
.gallery .gallery_slider .slick-arrow.slick-next {
  right: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev {
  left: -2.5rem;
}
.gallery .gallery_slider .slick-arrow.slick-prev::before {
  font-family: "fontello";
  content: "\f007";
}
.gallery .gallery_slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0.6rem auto 0.8rem;
}
.gallery .gallery_slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.2rem;
}
.gallery .gallery_slider .slick-dots li button {
  padding: 50%;
  display: block;
  font-size: 0;
  cursor: pointer;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--clr_blue);
}
.gallery .gallery_slider .slick-dots li button:hover, .gallery .gallery_slider .slick-dots li button:focus {
  opacity: 0.8;
}
.gallery .gallery_slider .slick-dots li.slick-active button {
  opacity: 0.75;
}
.gallery .gallery_thum div img {
  cursor: pointer;
  border: 2px solid transparent;
}
.gallery .gallery_thum .slick-current div img {
  border: 2px solid var(--clr_blue);
}

@media screen and (min-width: 48em), print {
  .gallery {
    width: 75rem;
    margin: auto;
  }
  .gallery .gallery_slider {
    font-size: 1.6em;
  }
  .gallery .gallery_slider div .cap {
    padding: 0.8rem 1rem;
    font-size: 95%;
    min-height: 7.6rem;
  }
  .gallery .gallery_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    top: 43%;
  }
  .gallery .gallery_slider .slick-arrow::before {
    font-size: 5rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-next {
    right: -6rem;
  }
  .gallery .gallery_slider .slick-arrow.slick-prev {
    left: -6rem;
  }
  .gallery .gallery_slider .slick-dots {
    bottom: 5rem;
    margin: 1.1rem auto 1.5rem;
  }
  .gallery .gallery_slider .slick-dots li {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0.6rem;
  }
  .gallery .gallery_thum {
    width: calc(100% + 0.6rem);
  }
  .gallery .gallery_thum .slick-track .slick-slide div img {
    cursor: pointer;
    border: 4px solid transparent;
  }
  .gallery .gallery_thum .slick-track .slick-slide.slick-current div img {
    border: 4px solid var(--clr_blue);
  }
}
@media screen and (min-width: 48em), print {
  body.access .main .tbl_time {
    font-size: 2rem;
  }
  body.access .main .acs_maps {
    width: 66rem;
    margin-inline: auto;
  }
  body.access .main .acs_maps .map_img {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  body.access .main .acs_btns {
    margin-top: 3rem;
    flex-direction: row;
    gap: 2rem;
  }
  body.access .main .acs_btns > li {
    width: calc(50% - 1rem);
  }
}

.gallery_lst p {
  text-align: center;
  line-height: 1.3;
}
.gallery_lst p a {
  color: var(--clr_green);
}
@media screen and (min-width: 48em), print {
  .gallery_lst > div > div > div {
    max-width: 37.6rem;
  }
  .gallery_lst figure {
    height: 20rem;
  }
  .gallery_lst figure img {
    height: inherit;
  }
}

body.post-type-archive-news .main .lst_news {
  margin: 0 0 6rem;
}
body.post-type-archive-news .main .lst_news li {
  margin: 2rem 0 0.6rem;
}
body.post-type-archive-news .main .lst_news li a {
  display: block;
  line-height: 1.6;
  font-weight: bold;
  color: var(--clr_green);
  position: relative;
  padding-left: 1.3em;
}
body.post-type-archive-news .main .lst_news li a::before {
  font-family: "fontello";
  content: "\f006";
  position: absolute;
  left: 0;
}
body.post-type-archive-news .main .lst_news li:not(:first-child) {
  padding: 2rem 0;
  border-top: 1px solid var(--clr_border);
}
@media screen and (min-width: 48em), print {
  body.post-type-archive-news .main .lst_news li {
    margin: 3rem 0 0.6rem;
  }
  body.post-type-archive-news .main .lst_news li:not(:first-child) {
    padding: 3rem 0;
  }
}

body.treatment_list .main .btn,
body.internal_list .main .btn,
body.respiratory_list .main .btn,
body.symptoms .main .btn,
body.clinic_information .main .btn {
  display: flex;
  justify-content: flex-end;
}
body.treatment_list .main section + section,
body.internal_list .main section + section,
body.respiratory_list .main section + section,
body.symptoms .main section + section,
body.clinic_information .main section + section {
  margin-top: 4rem;
}
@media screen and (min-width: 48em), print {
  body.treatment_list .main section + section,
  body.internal_list .main section + section,
  body.respiratory_list .main section + section,
  body.symptoms .main section + section,
  body.clinic_information .main section + section {
    margin-top: 8rem;
  }
}

.wp-block-image img {
  margin: auto;
}

.greeting_txt .wp-block-heading {
  color: var(--clr_green);
  font-size: 130%;
  line-height: 1.4;
  padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--clr_green);
  margin: 0 0 1.6rem;
}
@media screen and (min-width: 48em), print {
  .greeting_txt .wp-block-heading {
    font-size: 3.2rem;
    padding: 0 0 0 2rem;
    border-left: 3px solid var(--clr_green);
    margin: 0 0 2.6rem;
  }
}

.box_page {
  overflow: hidden;
}
.box_page h2 {
  margin: 0 auto 2rem;
}
.box_page h2:not(:first-of-type) {
  margin: 5rem auto 2rem;
}
.box_page h3 {
  margin: 4rem auto 2rem;
}
.box_page h4 {
  margin: 3rem auto 2rem;
}
.box_page h5 {
  margin: 3rem auto 1rem;
}
.box_page h6 {
  margin: 3rem auto 1rem;
}
@media screen and (min-width: 48em), print {
  .box_page h2 {
    margin: 0 auto 3rem;
  }
  .box_page h2:not(:first-of-type) {
    margin: 8rem auto 3rem;
  }
  .box_page h3 {
    margin: 6rem auto 3rem;
  }
  .box_page h4 {
    margin: 4rem auto 3rem;
  }
  .box_page h5 {
    margin: 4rem auto 2rem;
  }
  .box_page h6 {
    margin: 4rem auto 2rem;
  }
}
.wrap.blog .main {
  margin: 4rem 1.6rem 6rem;
}
@media screen and (min-width: 48em), print {
  .wrap.blog {
    display: flex;
    justify-content: space-between;
    gap: 0 6rem;
    margin: 8rem auto;
  }
  .wrap.blog .main {
    flex: 1;
    width: auto;
    margin: 0;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .wrap.blog .sidebar_blog {
    width: calc(1200px * 0.276 + 3rem);
  }
}
.wrap.blog .tit {
  display: flex;
  gap: 0 1rem;
  margin: 0 0 2rem;
  padding: 0 0 0.6rem;
  border-bottom: 2px solid var(--clr_green);
  color: var(--clr_green);
  line-height: 1.4;
  font-weight: bold;
  font-size: 120%;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .tit {
    margin: 0 0 3rem;
    padding: 0 0 1rem;
    font-size: 130%;
    line-height: 1.6;
  }
}
.wrap.blog .eyecatch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto 2rem;
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  backface-visibility: hidden;
}
.wrap.blog .eyecatch img {
  min-width: 105%;
  min-height: 105%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrap.blog .main .tit.cat, .wrap.blog .main .tit.arc {
  margin: 0 0 4rem;
}
.wrap.blog .main .tit.cat::before {
  font-family: "fontello";
  content: "\cb03";
  font-weight: normal !important;
}
.wrap.blog .main .tit.arc::before {
  font-family: "fontello";
  content: "\cb04";
  font-weight: normal !important;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .main .tit.cat, .wrap.blog .main .tit.arc {
    margin: 0 0 6rem;
  }
}
.wrap.blog .post {
  margin: 0 0 4rem;
}
.wrap.blog .post .post-categories {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.2rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  border-bottom: none;
}
.wrap.blog .post .post-categories li {
  list-style: none;
}
.wrap.blog .post .post-categories li a {
  height: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0 0.4rem;
  color: #999;
  background: #fff;
  padding: 0.2rem 0.6rem;
  text-decoration: none;
}
.wrap.blog .post .post-categories li a::before {
  font-family: "fontello";
  content: "\cb03";
  font-weight: normal !important;
}
.wrap.blog .post .box_post {
  display: block;
  padding: 3rem 1.6rem;
  margin: -1px 0 0;
  background: #fff;
  border: 1px solid #ccc;
  text-decoration: none;
}
.wrap.blog .post .box_post > .eyecatch {
  display: none;
}
.wrap.blog .post .box_post .txt .date {
  display: flex;
  gap: 1rem;
  margin: 0 0 1rem;
}
.wrap.blog .post .box_post .txt .date li {
  display: flex;
  align-items: center;
  gap: 0 0.4rem;
  font-size: 1.2rem;
  color: #999;
}
.wrap.blog .post .box_post .txt .date li.release::before {
  font-family: "fontello";
  content: "\cb10";
  font-weight: normal !important;
}
.wrap.blog .post .box_post .txt .date li.update::before {
  font-family: "fontello";
  content: "\cb11";
  font-weight: normal !important;
}
.wrap.blog .post .box_post .txt .inner {
  display: flex;
  gap: 0 1.6rem;
}
.wrap.blog .post .box_post .txt .inner .eyecatch {
  width: 35%;
  height: calc((100vw - 6.4rem - 2px) * 0.35);
}
.wrap.blog .post .box_post .txt .inner .date_tit {
  flex: 1;
}
.wrap.blog .post .box_post .txt .inner .date_tit .tit {
  font-size: 110%;
}
.wrap.blog .post .box_post .txt .more {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem 0 0 auto;
  background: var(--clr_green_light03);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--clr_green_light03);
  border-radius: 1rem;
  padding: 0.4rem 2rem;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .post .box_post .txt .more {
    border-radius: 2rem;
  }
}
.wrap.blog .post .box_post .txt .more::after {
  font-family: "fontello";
  content: "\cb14";
  font-weight: normal !important;
  font-size: 80%;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .post {
    margin: 0 0 8rem;
  }
  .wrap.blog .post .post-categories {
    font-size: 1.4rem;
    gap: 0;
  }
  .wrap.blog .post .post-categories li a {
    padding: 0.2rem 1rem;
  }
  .wrap.blog .post .post-categories li a:is(:hover, :focus-visible) {
    color: var(--clr_green_light03);
  }
  .wrap.blog .post .box_post {
    display: flex;
    justify-content: space-between;
    gap: 0 4rem;
    padding: 4rem;
    transition: 0.4s;
  }
  .wrap.blog .post .box_post .eyecatch {
    display: flex;
    width: 22rem;
    height: 22rem;
  }
  .wrap.blog .post .box_post .eyecatch img {
    transition: 0.8s;
  }
  .wrap.blog .post .box_post .txt {
    flex: 1;
  }
  .wrap.blog .post .box_post .txt .date {
    font-size: 1.4rem;
    gap: 0 2rem;
  }
  .wrap.blog .post .box_post .txt .inner {
    display: block;
  }
  .wrap.blog .post .box_post .txt .inner > .eyecatch {
    display: none;
  }
  .wrap.blog .post .box_post .txt .inner .date_tit {
    width: 100%;
  }
  .wrap.blog .post .box_post .txt p {
    margin: 0 0 2rem;
  }
  .wrap.blog .post .box_post .txt .more {
    padding: 0.4rem 3rem;
    transition: 0.4s;
  }
  .wrap.blog .post a.box_post:is(:hover, :focus-visible) {
    border: 1px solid rgba(var(--rgb_main_10), 0.6);
    box-shadow: 0 0 0.4rem 0.4rem rgba(var(--rgb_main_10), 0.6) inset;
  }
  .wrap.blog .post a.box_post:is(:hover, :focus-visible) .eyecatch img {
    transform: scale(1.1);
  }
  .wrap.blog .post a.box_post:is(:hover, :focus-visible) .txt .more {
    background: #fff;
    color: var(--clr_green_light03);
  }
}
.wrap.blog .pager {
  margin-top: 4rem;
}
.wrap.blog .pager > .page-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0.1rem;
}
.wrap.blog .pager > .page-numbers li a, .wrap.blog .pager > .page-numbers li .current, .wrap.blog .pager > .page-numbers li .dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  background: var(--clr_green_light03);
  color: #fff;
  padding: 0.4rem 1rem;
  border: 1px solid var(--clr_green_light03);
}
.wrap.blog .pager > .page-numbers li a.prev::before, .wrap.blog .pager > .page-numbers li .current.prev::before, .wrap.blog .pager > .page-numbers li .dots.prev::before {
  font-family: "fontello";
  content: "\cb15";
  font-weight: normal !important;
  font-size: 80%;
}
.wrap.blog .pager > .page-numbers li a.next::after, .wrap.blog .pager > .page-numbers li .current.next::after, .wrap.blog .pager > .page-numbers li .dots.next::after {
  font-family: "fontello";
  content: "\cb14";
  font-weight: normal !important;
  font-size: 80%;
}
.wrap.blog .pager > .page-numbers li .current {
  background: #fff;
  color: var(--clr_green_light03);
}
.wrap.blog .pager > .page-numbers li .dots {
  height: 100%;
  border: none;
  color: #999;
  background: #fff;
  line-height: 1;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .pager > .page-numbers li a, .wrap.blog .pager > .page-numbers li .current, .wrap.blog .pager > .page-numbers li .dots {
    padding: 1rem 2rem;
  }
  .wrap.blog .pager > .page-numbers li a:is(:hover, :focus-visible), .wrap.blog .pager > .page-numbers li .current:is(:hover, :focus-visible), .wrap.blog .pager > .page-numbers li .dots:is(:hover, :focus-visible) {
    background: #fff;
    color: var(--clr_green_light03);
  }
}
.wrap.blog .post.not-found .tit::before {
  font-family: "fontello";
  content: "\cb09";
  font-weight: normal !important;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .post.not-found .tit {
    margin: 0 0 6rem;
    padding: 0 0 0.6rem;
    font-size: 2rem;
  }
}
.wrap.blog .post_entry a {
  text-decoration: underline;
}
.wrap.blog .post_entry a[class*=button] {
  text-decoration: none !important;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .post_entry a:hover {
    text-decoration: none;
  }
  .wrap.blog .post_entry a[class*=button]:hover {
    opacity: 0.8;
  }
}
.wrap.blog .post_entry .wp-block-table {
  overflow: auto;
  white-space: nowrap;
}
.wrap.blog .post_entry .wp-block-table table {
  width: 100%;
}
.wrap.blog .post_entry .wp-block-table table thead {
  border-bottom: 2px solid #ccc;
  color: var(--clr_green);
}
.wrap.blog .post_entry .wp-block-table table tfoot {
  border-top: 2px solid #ccc;
}
.wrap.blog .post_entry .wp-block-table.is-style-stripes {
  border: none;
}
.wrap.blog .post_entry .wp-block-table.is-style-stripes table th, .wrap.blog .post_entry .wp-block-table.is-style-stripes table td {
  border: 1px solid #ccc;
}
.wrap.blog .post_entry .wp-block-table.is-style-stripes table tbody tr:nth-child(2n+1) {
  background: rgba(var(--rgb_main), 0.1);
}
@media screen and (min-width: 48em), print {
  .wrap.blog .post_entry .wp-block-table {
    overflow: hidden;
    white-space: normal;
  }
}
.wrap.blog .post_entry iframe {
  width: 100%;
}
.wrap.blog .post_entry p {
  margin: 1em 0;
}
.wrap.blog .post_entry ul, .wrap.blog .post_entry ol {
  margin: 1em 0 1em 2em;
}
.wrap.blog .post_entry ul li {
  list-style: disc;
}
.wrap.blog .post_entry ol li {
  list-style: decimal;
}
.wrap.blog .related {
  margin: 4rem 0;
}
.wrap.blog .related .tit::before {
  font-family: "fontello";
  content: "\cb08";
  font-weight: normal !important;
}
.wrap.blog .related ul li {
  display: flex;
  gap: 0 1rem;
}
.wrap.blog .related ul li::before {
  font-family: "fontello";
  content: "\cb14";
  font-weight: normal !important;
  font-size: 80%;
  color: var(--clr_green_light03);
  margin: 0.8em 0 0;
}
.wrap.blog .related ul li a {
  flex: 1;
  padding: 0.8rem 0;
  text-decoration: none;
}
.wrap.blog .related ul li a .eyecatch {
  width: 5rem;
  height: 5rem;
  flex: 0 0 5rem;
  margin: 0;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .related {
    margin: 8rem 0;
  }
  .wrap.blog .related ul li a .eyecatch {
    width: 5rem;
    height: 5rem;
    flex: 0 0 5rem;
    margin: 0;
  }
  .wrap.blog .related ul li a:is(:hover, :focus-visible) {
    color: var(--clr_green_light03);
  }
}
.wrap.blog .post_link {
  margin: 0 0 4rem;
}
.wrap.blog .post_link ul {
  display: flex;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.wrap.blog .post_link ul li {
  width: 50%;
  font-size: 90%;
}
.wrap.blog .post_link ul li a {
  display: block;
  font-size: 110%;
  line-height: 1.4;
  text-decoration: none;
  color: var(--clr_green_light03);
  position: relative;
}
.wrap.blog .post_link ul li a span {
  display: block;
  color: var(--clr_txt);
  margin: 0.6rem 0 0;
  transition: 0.2s;
}
.wrap.blog .post_link ul li a::before, .wrap.blog .post_link ul li a::after {
  position: absolute;
  top: 1.2em;
}
.wrap.blog .post_link ul li.prev a {
  padding: 1rem 1rem 1rem 2.4rem;
}
.wrap.blog .post_link ul li.prev a::before {
  font-family: "fontello";
  content: "\cb15";
  font-weight: normal !important;
  font-size: 80%;
  left: 0.6rem;
}
.wrap.blog .post_link ul li.next {
  border-left: 1px solid #ccc;
}
.wrap.blog .post_link ul li.next a {
  text-align: right;
  padding: 1rem 2.4rem 1rem 1rem;
  align-items: flex-end;
}
.wrap.blog .post_link ul li.next a::after {
  font-family: "fontello";
  content: "\cb14";
  font-weight: normal !important;
  font-size: 80%;
  right: 0.6rem;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .post_link {
    margin: 0 0 6rem;
  }
  .wrap.blog .post_link ul li a::before, .wrap.blog .post_link ul li a:after {
    top: 2.6em;
  }
  .wrap.blog .post_link ul li a:is(:hover, :focus-visible) span {
    color: var(--clr_green_light03);
  }
  .wrap.blog .post_link ul li.prev a {
    padding: 3rem 2rem 3rem 4rem;
  }
  .wrap.blog .post_link ul li.prev a::before {
    left: 1.6rem;
  }
  .wrap.blog .post_link ul li.next a {
    padding: 3rem 4rem 3rem 2rem;
  }
  .wrap.blog .post_link ul li.next a::after {
    right: 1.6rem;
  }
}
.wrap.blog .btn_postindex {
  display: inline-flex;
  gap: 0 1rem;
  color: #fff;
  background: var(--clr_green_light03);
  border: 1px solid var(--clr_green_light03);
  padding: 0.4rem 2rem;
  border-radius: 1rem;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .btn_postindex {
    border-radius: 2rem;
  }
}
.wrap.blog .btn_postindex::before {
  font-family: "fontello";
  content: "\cb02";
  font-weight: normal !important;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .btn_postindex:is(:hover, :focus-visible) {
    color: var(--clr_green_light03);
    background: #fff;
  }
}
.wrap.blog .search-form {
  display: flex;
  gap: 0 1rem;
}
.wrap.blog .search-form label {
  flex: 1;
}
.wrap.blog .search-form label input.search-field {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ccc;
}
.wrap.blog .search-form input.search-submit {
  width: 6rem;
  background: var(--clr_green_light03);
  color: #fff;
  border: 1px solid var(--clr_green_light03);
  border-radius: 1rem;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: 0.2s;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .search-form input.search-submit {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 48em), print {
  .wrap.blog .search-form input.search-submit:hover {
    background: #fff;
    color: var(--clr_green_light03);
  }
}
.wrap.blog .result {
  margin: 0 0 3rem;
  padding: 1rem;
  font-weight: bold;
  background: rgba(var(--rgb_main), 0.1);
}
@media screen and (min-width: 48em), print {
  .wrap.blog .result {
    margin: 0 0 6rem;
    padding: 2rem;
  }
}
.wrap.blog .sidebar_blog {
  margin: 6rem 1.6rem 0;
  padding: 4rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
}
.wrap.blog .sidebar_blog .side_inner {
  margin: 0 0 4rem;
}
.wrap.blog .sidebar_blog .side_inner .tit {
  margin: 0 0 2rem;
}
.wrap.blog .sidebar_blog .side_inner ul, .wrap.blog .sidebar_blog .side_inner ol {
  margin: 0;
}
.wrap.blog .sidebar_blog .side_inner .eyecatch {
  width: 5rem;
  height: 5rem;
  flex: 0 0 5rem;
  margin: 0;
}
.wrap.blog .sidebar_blog .side_inner.cat .tit::before {
  font-family: "fontello";
  content: "\cb03";
  font-weight: normal !important;
}
.wrap.blog .sidebar_blog .side_inner.cat ul:not(.children) {
  border-bottom: 1px solid #ccc;
}
.wrap.blog .sidebar_blog .side_inner.cat ul > li a {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  padding: 1rem;
  border: 1px solid #ccc;
  border-bottom: none;
}
.wrap.blog .sidebar_blog .side_inner.cat ul > li a::after {
  font-family: "fontello";
  content: "\cb14";
  font-weight: normal !important;
  font-size: 80%;
  color: var(--clr_green_light03);
  margin: 0 0 0 auto;
}
.wrap.blog .sidebar_blog .side_inner.cat ul > li .children li a {
  padding: 1rem;
  border-top: 1px dotted #aaa;
}
.wrap.blog .sidebar_blog .side_inner.cat ul > li .children li a::before {
  display: block;
  content: "";
  width: 0.6em;
  height: 0.6em;
  flex: 0 0 0.6em;
  border-bottom: 1px solid #666;
  border-left: 1px solid #666;
  color: #666;
  margin: 0.2em 0 auto 0;
}
.wrap.blog .sidebar_blog .side_inner.cat ul > li .children li .children li a {
  padding: 1rem 1rem 1rem 2em;
}
.wrap.blog .sidebar_blog .side_inner.cat ul > li:not(:last-child) a {
  border-bottom: 1px solid transparent;
}
.wrap.blog .sidebar_blog .side_inner.popular .tit::before {
  font-family: "fontello";
  content: "\cb07";
  font-weight: normal !important;
}
.wrap.blog .sidebar_blog .side_inner.popular ol {
  counter-reset: number 0;
}
.wrap.blog .sidebar_blog .side_inner.popular ol li {
  counter-increment: number 1;
  border-bottom: 1px solid #ccc;
}
.wrap.blog .sidebar_blog .side_inner.popular ol li a {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  padding: 1.2rem 0;
  line-height: 1.2;
}
.wrap.blog .sidebar_blog .side_inner.popular ol li a::before {
  width: 1.6em;
  height: 1.6em;
  font-family: "Arial Black", sans-serif;
  border: 1px solid #ccc;
  content: counter(number);
  display: grid;
  place-content: center;
  flex: 0 0 1.6em;
}
.wrap.blog .sidebar_blog .side_inner.popular ol li a .view {
  font-family: Arial, sans-serif;
  font-size: 70%;
  color: #999;
  white-space: nowrap;
  margin: auto 0 auto auto;
}
.wrap.blog .sidebar_blog .side_inner.popular ol li:first-child a::before {
  background: #ffde00;
}
.wrap.blog .sidebar_blog .side_inner.popular ol li:nth-child(2) a::before {
  background: #cfcfcf;
}
.wrap.blog .sidebar_blog .side_inner.popular ol li:nth-child(3) a::before {
  background: #cfbb95;
}
.wrap.blog .sidebar_blog .side_inner.new .tit::before {
  font-family: "fontello";
  content: "\cb06";
  font-weight: normal !important;
}
.wrap.blog .sidebar_blog .side_inner.new ul li a {
  display: flex;
  align-items: flex-start;
  gap: 0 1rem;
  padding: 0.6rem 0;
}
.wrap.blog .sidebar_blog .side_inner.new ul li a::before {
  font-family: "fontello";
  content: "\cb14";
  font-weight: normal !important;
  font-size: 80%;
  color: var(--clr_green_light03);
  margin: 0.2em 0 0;
}
.wrap.blog .sidebar_blog .side_inner.archive .tit::before {
  font-family: "fontello";
  content: "\cb04";
  font-weight: normal !important;
}
.wrap.blog .sidebar_blog .side_inner.archive details .btn_select {
  background: #fff;
  border: 1px solid #ccc;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.wrap.blog .sidebar_blog .side_inner.archive details .btn_select::after {
  font-family: "fontello";
  content: "\cb17";
  font-weight: normal !important;
  color: var(--clr_green_light03);
}
.wrap.blog .sidebar_blog .side_inner.archive details .btn_select::-webkit-details-marker {
  display: none;
}
.wrap.blog .sidebar_blog .side_inner.archive details .lst_month {
  background: #fff;
  margin: 0;
}
.wrap.blog .sidebar_blog .side_inner.archive details .lst_month li {
  border: 1px solid #ccc;
  border-top: none;
}
.wrap.blog .sidebar_blog .side_inner.archive details .lst_month li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}
.wrap.blog .sidebar_blog .side_inner.archive details .lst_month li a::after {
  font-family: "fontello";
  content: "\cb14";
  font-weight: normal !important;
  font-size: 80%;
  color: var(--clr_green_light03);
}
.wrap.blog .sidebar_blog .side_inner.archive details[open] .btn_select::after {
  font-family: "fontello";
  content: "\cb16";
  font-weight: normal !important;
}
.wrap.blog .sidebar_blog .search-form {
  margin: 0 0 4rem;
}
@media screen and (min-width: 48em), print {
  .wrap.blog .sidebar_blog {
    margin: 0 0 6rem;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .wrap.blog .sidebar_blog .side_inner {
    margin: 0 0 6rem;
  }
  .wrap.blog .sidebar_blog .side_inner.cat ul > li a {
    padding: 1rem 1.6rem;
    background: #fff;
  }
  .wrap.blog .sidebar_blog .side_inner.cat ul > li a:is(:hover, :focus-visible) {
    color: var(--clr_green_light03);
  }
  .wrap.blog .sidebar_blog .side_inner.cat ul > li .children li a {
    padding: 1rem 1.6rem;
  }
  .wrap.blog .sidebar_blog .side_inner.cat ul > li .children li a::before {
    margin: 0.3em 0 auto 0;
  }
  .wrap.blog .sidebar_blog .side_inner.cat ul > li .children li a:is(:hover, :focus-visible)::before {
    border-left: 1px solid var(--clr_green_light03);
    border-bottom: 1px solid var(--clr_green_light03);
  }
  .wrap.blog .sidebar_blog .side_inner.cat ul > li .children li .children li a {
    padding: 1rem 1.6rem 1rem 2.4em;
  }
  .wrap.blog .sidebar_blog .side_inner.popular .tit::before {
    font-family: "fontello";
    content: "\cb07";
    font-weight: normal !important;
  }
  .wrap.blog .sidebar_blog .side_inner.popular ol li a {
    padding: 1.6rem 0;
    line-height: 1.4;
  }
  .wrap.blog .sidebar_blog .side_inner.popular ol li a:is(:hover, :focus-visible) {
    color: var(--clr_green_light03);
  }
  .wrap.blog .sidebar_blog .side_inner.popular ol li a:is(:hover, :focus-visible)::before {
    color: var(--clr_txt);
  }
  .wrap.blog .sidebar_blog .side_inner.new ul li a {
    padding: 1rem 0.6rem;
  }
  .wrap.blog .sidebar_blog .side_inner.new ul li a:is(:hover, :focus-visible) {
    color: var(--clr_green_light03);
  }
  .wrap.blog .sidebar_blog .side_inner.archive .btn_select {
    transition: 0.2s;
  }
  .wrap.blog .sidebar_blog .side_inner.archive .btn_select:is(:hover, :focus-visible) {
    color: var(--clr_green_light);
  }
  .wrap.blog .sidebar_blog .side_inner.archive .lst_month li a:is(:hover, :focus-visible) {
    color: var(--clr_green_light03);
  }
  .wrap.blog .sidebar_blog .search-form {
    margin: 0 0 6rem;
  }
}
.wrap.blog .wp-caption,
.wrap.blog .wp-caption-text,
.wrap.blog .sticky,
.wrap.blog .gallery-caption,
.wrap.blog .bypostauthor,
.wrap.blog .alignright,
.wrap.blog .alignleft,
.wrap.blog .aligncenter {
  color: inherit;
}/*# sourceMappingURL=style.css.map */