@charset "UTF-8";

/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

*,
::before,
::after {
  box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
  font-size: 2.5641025641vw;
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}

@media (min-width: 820px) {
  html {
    font-size: 0.625vw;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

:where(video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: middle;
}

:where(svg) {
  stroke: none;
  fill: currentColor;
}

:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(button) {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3, h4, h5, h6) {
  color: #5A5D5E;
}

:where(ul, ol) {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }

  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}

:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

:root {
  --font-main: "Noto Sans JP", sans-serif;
  --font-sub: "Zen Maru Gothic", sans-serif;
  --font-en: "Baloo 2", sans-serif;
  --color-bg: #F7F5F0;
  --color-bk: #484B4C;
  --color-light: #5A5D5E;
  --color-main: #9F8955;
  --color-key: #5DBA69;
}

body {
  background-color: var(--color-bg);
  color: var(--color-bk);
}

.maru {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.05em;
}

.en {
  font-family: "Baloo 2", sans-serif;
  letter-spacing: 0.04em;
}

.color-key {
  color: var(--color-key);
}

.color-main {
  color: var(--color-main);
}

@media screen and (min-width: 820px) {
  .show_sp {
    display: none !important;
  }
}

.show_pc {
  display: none !important;
}

@media screen and (min-width: 820px) {
  .show_pc {
    display: block !important;
  }
}

.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btn {
  background-color: #fff;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 1.4rem;
  color: var(--color-main);
  letter-spacing: 0.05em;
  position: relative;
  border: 1px solid var(--color-main);
  border-radius: 4rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  filter: drop-shadow(0 2px 0 var(--color-main));
  transition: 0.3s;
}

@media screen and (max-width: 819px) {
  .btn {
    width: 30.4rem;
    height: 6.2rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.btn.en {
  font-size: 1.6rem;
}

.btn:after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/icon_triangle_square.svg) no-repeat center/cover;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  margin-top: -0.6rem;
  transition: 0.3s;
}

@media screen and (min-width: 820px) {
  .btn-s {
    width: 17rem;
    height: 4.2rem;
  }
}

@media screen and (min-width: 820px) {
  .btn-m {
    width: 28rem;
    height: 5.2rem;
  }
}

@media screen and (min-width: 820px) {
  .btn-l {
    width: 30.4rem;
    height: 5.4rem;
  }
}

@media (hover) {
  .btn:hover {
    background-color: var(--color-main);
    color: #fff;
    transform: translateY(2px);
    filter: none;
  }

  .btn:hover:after {
    background-image: url(../img/icon_triangle_wh.svg);
  }
}

.btn-calendar {
  padding: 0 3rem 0 0;
}

.btn-calendar:before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icon_calendar.svg) no-repeat center/cover;
  margin-right: 2.3rem;
}

.btn-reserve {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-sub);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 7rem;
  width: 30.4rem;
  margin-left: auto;
  margin-right: auto;
  transition: opacity 0.3s;
}

@media (hover) {
  .btn-reserve:hover {
    opacity: 0.7;
  }
}

.btn-reserve:after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/icon_triangle_wh.svg) no-repeat center/cover;
  position: absolute;
  right: 3rem;
  top: 50%;
  margin-top: -0.6rem;
}

.btn-square {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  color: var(--color-main);
  border-radius: 1rem;
  border: 1px solid var(--color-main);
  background-color: #fff;
  height: 7rem;
  padding: 0 2.4rem;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

@media screen and (min-width: 820px) {
  .btn-square {
    font-size: 1.6rem;
    max-width: 24.4rem;
    height: 5.6rem;
    padding: 0 2rem;
  }
}

@media (hover) {
  .btn-square:hover {
    opacity: 0.7;
  }
}

.btn-square-pdf {
  justify-content: space-between;
}

.btn-square-pdf:before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/icon_pdf.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 820px) {
  .btn-square-pdf:before {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.btn-square-pdf:after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/icon_link.svg) no-repeat center/100% auto;
}

@media screen and (min-width: 820px) {
  .btn-square-pdf:after {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.contents {
  position: relative;
}

@media screen and (min-width: 820px) {
  .contents {
    width: 133rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.contents_inner {
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 2.5rem 2rem 4rem;
}

@media screen and (min-width: 820px) {
  .contents_inner {
    padding: 10rem;
  }
}

@media screen and (max-width: 819px) {
  .sp_center {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

.block {
  margin-bottom: 5rem;
  position: relative;
}

@media screen and (min-width: 820px) {
  .block {
    margin-bottom: 10rem;
  }
}

.block:has(+ .blockTop) {
  margin-bottom: 10rem;
}

@media screen and (min-width: 820px) {
  .block:has(+ .blockTop) {
    margin-bottom: 18rem;
  }
}

.block:last-child {
  margin-bottom: 0;
}

.blockTop {
  background: url(../img/circle_sp.svg) no-repeat center top/80rem auto;
}

@media screen and (min-width: 820px) {
  .blockTop {
    background-image: url(../img/circle_pc.svg);
    background-size: 184rem auto;
  }
}

.block-wh {
  background-color: #fff;
  padding-block: 9rem;
}

@media screen and (min-width: 820px) {
  .block-wh {
    padding-block: 12rem;
  }
}

.block-bg {
  background-color: #EDECDF;
  padding-block: 9rem;
}

@media screen and (min-width: 820px) {
  .block-bg {
    padding-block: 12rem;
  }
}

.block-lbg {
  background-color: #F0F2EA;
  padding-block: 9rem;
}

@media screen and (min-width: 820px) {
  .block-lbg {
    padding-block: 12rem;
  }
}

.blockTtl {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0.3rem;
}

@media screen and (min-width: 820px) {
  .blockTtl {
    row-gap: 0;
  }
}

.blockTtl strong {
  font-size: 3.2rem;
}

@media screen and (min-width: 820px) {
  .blockTtl strong {
    font-size: 4rem;
  }
}

.blockTtl span {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--color-key);
}

@media screen and (min-width: 820px) {
  .blockTtl span {
    font-size: 1.6rem;
  }
}

.blockTtl+.txt {
  margin-top: 3rem;
}

.blockTtl-img {
  position: absolute;
}

.blockTtl_wrap {
  position: relative;
}

.blockTtl_wrap .blockTtl {
  padding-top: 7.2rem;
}

.blockTtl_wrap-overview .blockTtl-img {
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-overview .blockTtl-img {
    top: -2rem;
  }
}

.blockTtl_wrap-overview .blockTtl-img img {
  width: 14.6rem;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-overview .blockTtl-img img {
    width: 19.7rem;
  }
}

.blockTtl_wrap-case .blockTtl-img {
  bottom: -2.8rem;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-case .blockTtl-img {
    bottom: -2rem;
  }
}

.blockTtl_wrap-case .blockTtl-img img {
  width: 30.3rem;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-case .blockTtl-img img {
    width: 34.3rem;
  }
}

.blockTtl_wrap-greetings .blockTtl-img {
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-greetings .blockTtl-img {
    top: -2rem;
  }
}

.blockTtl_wrap-greetings .blockTtl-img img {
  width: 19rem;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-greetings .blockTtl-img img {
    width: 26.1rem;
  }
}

.blockTtl_wrap-intro .blockTtl-img {
  bottom: 0.8rem;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-intro .blockTtl-img {
    bottom: 0;
  }
}

.blockTtl_wrap-intro .blockTtl-img img {
  width: 28.4rem;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-intro .blockTtl-img img {
    width: 36.2rem;
  }
}

.blockTtl_wrap-doctor .blockTtl-img {
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-doctor .blockTtl-img {
    top: -4.2rem;
  }
}

.blockTtl_wrap-doctor .blockTtl-img img {
  width: 6.6rem;
}

@media screen and (min-width: 820px) {
  .blockTtl_wrap-doctor .blockTtl-img img {
    width: 10.3rem;
  }
}

.radius {
  border-radius: 2.4rem;
}

.txt {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 820px) {
  .txt {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}

.txt+.txt {
  margin-top: 1em;
}

.txt-center {
  text-align: center;
}

@media screen and (min-width: 820px) {
  .txt-center-pc {
    text-align: center;
  }
}

.txt-right {
  text-align: right;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.btn_col {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

@media screen and (min-width: 820px) {
  .btn_col {
    flex-direction: row;
    gap: 0 2rem;
  }
}

@media screen and (min-width: 820px) {
  .btn_col-center {
    justify-content: center;
  }
}

.nowrap {
  white-space: nowrap;
}

.pt-first {
  padding-top: 3.3rem;
}

.timetable {
  width: 100%;
  border-collapse: collapse;
  position: relative;
}

.timetable:after {
  content: "";
  width: 100%;
  height: 2px;
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
  position: absolute;
  left: 0;
  top: 0;
}

.timetable tr {
  position: relative;
}

.timetable tr:after {
  content: "";
  width: 100%;
  height: 2px;
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
  position: absolute;
  left: 0;
  bottom: 0;
}

.timetable th,
.timetable td {
  padding: 1rem;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 820px) {

  .timetable th,
  .timetable td {
    padding: 1.8rem 1.5rem;
  }
}

.timetable th {
  font-size: 1.4rem;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .timetable th {
    font-size: 2rem;
  }
}

.timetable td {
  font-size: 1rem;
}

@media screen and (min-width: 820px) {
  .timetable td {
    font-size: 1.5rem;
  }
}

.timetable td em {
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

@media screen and (min-width: 820px) {
  .timetable td em {
    font-size: 2rem;
  }
}

.timetable td small {
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 0.3rem;
}

@media screen and (min-width: 820px) {
  .timetable td small {
    font-size: 1.8rem;
  }
}

.timetable td img {
  width: 1.4rem;
}

@media screen and (min-width: 820px) {
  .timetable td img {
    width: 2.5rem;
  }
}

.timetable_off {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-top: 1rem;
}

.timetable_off strong {
  background-color: var(--color-key);
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 3rem;
  margin-right: 1rem;
  font-weight: 400;
}

.timetable_off span {
  font-weight: 500;
}

.inner_md {
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 3.8rem 2.8rem;
}

@media screen and (min-width: 820px) {
  .inner_md {
    max-width: 100rem;
    margin-inline: auto;
    padding: 12rem 15rem;
  }
}

/*-----------------
header
-------------------*/
#header {
  z-index: 100;
  background-color: var(--color-bg);
}

@media screen and (max-width: 819px) {
  #header {
    position: sticky;
    top: 0;
    left: 0;
    height: 6.2rem;
  }
}

@media screen and (min-width: 820px) {
  #header {
    position: relative;
    transition: 0.3s;
  }
}

@media screen and (min-width: 820px) {
  #header.fixed {
    position: sticky;
    top: 0;
    left: 0;
    transform: translateY(0);
  }
}

@media screen and (min-width: 820px) {
  #header.fixed .header_logo {
    transform: translateY(0);
  }
}

@media screen and (min-width: 820px) {
  #header.slide-down {
    animation: headerIn 0.3s ease-in forwards;
  }
}

@media screen and (min-width: 820px) {
  #header.slide-up {
    position: sticky;
    top: 0;
    left: 0;
    animation: headerOut 0.3s ease-in forwards;
  }
}

@keyframes headerIn {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes headerOut {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

.header {
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 820px) {
  .header {
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    height: 8rem;
    align-items: center;
  }
}

@media screen and (max-width: 819px) {
  .header_pc {
    display: none !important;
  }
}

@media screen and (min-width: 820px) {
  .header_pc {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    margin-bottom: -1rem;
    z-index: 101;
  }
}

.header_pc h1 {
  font-size: 1.2rem;
  font-weight: 400;
  padding-top: 1rem;
}

.header_pc .header_info {
  flex-direction: row;
  gap: 0 1.2rem;
  margin-left: auto;
}

.header_pc .header_info li {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  width: 23rem;
}

.header_pc .header_info a {
  height: 7rem;
  transition: 0.3s;
}

@media (hover) {
  .header_pc .header_info a:hover {
    opacity: 0.7;
  }
}

.header_pc .header_info-tel span {
  font-size: 1.2rem;
}

.header_pc .header_info-tel p {
  column-gap: 0;
  font-size: 2.6rem;
  padding-top: 0.2rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.header_pc .header_info-tel p:before {
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-0.15rem);
}

.header_pc .header_info-reserve p {
  font-size: 1.6rem;
  column-gap: 1.1rem;
}

.header_pc .header_info-reserve p:before {
  width: 2.4rem;
  height: 2.4rem;
}

.header_logo {
  padding: 1.2rem 0 0 2rem;
  width: fit-content;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 820px) {
  .header_logo {
    padding: 0;
    transform: translateY(-2rem);
  }
}

.header_logo img {
  width: 21.6rem;
}

@media screen and (min-width: 820px) {
  .header_logo img {
    width: 32rem;
  }
}

.header_btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-bk);
  width: 6.2rem;
  height: 6.2rem;
  border-bottom-left-radius: 1rem;
  z-index: 1;
}

.header_btn span {
  background-color: #fff;
  display: block;
  height: 0.2rem;
  position: absolute;
  left: 1.8rem;
  top: 50%;
  border-radius: 1rem;
  transition: 0.3s;
}

.header_btn span:nth-child(1) {
  width: 2.6rem;
  margin-top: -0.8rem;
}

.header_btn span:nth-child(2) {
  width: 2.6rem;
  margin-top: -0.1rem;
}

.header_btn span:nth-child(3) {
  width: 1.6rem;
  margin-top: 0.6rem;
}

@media screen and (min-width: 820px) {
  .header_btn {
    display: none !important;
  }
}

.header_btn.is-active span:nth-child(1) {
  width: 2.8rem;
  transform: rotate(45deg);
  margin-top: -0.2rem;
}

.header_btn.is-active span:nth-child(2) {
  width: 2.8rem;
  transform: rotate(-45deg);
  margin-top: -0.2rem;
}

.header_btn.is-active span:nth-child(3) {
  opacity: 0;
}

@media screen and (max-width: 819px) {
  .header_btn.is-active+.header_nav {
    opacity: 1;
    pointer-events: visible;
    visibility: visible;
  }
}

@media screen and (max-width: 819px) {
  .header_nav {
    position: fixed;
    top: 6.2rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 6.2rem);
    height: calc(100dvh - 6.2rem);
    overflow-y: auto;
    background-color: var(--color-bg);
    padding: 4rem 2rem 5.4rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
  }
}

@media screen and (min-width: 820px) {
  .header_nav .header_info {
    display: none !important;
  }
}

@media screen and (max-width: 819px) {
  .header_menu {
    background: url(../img/dot_green.svg) repeat-x left bottom/7px auto;
    margin-bottom: 5rem;
  }
}

@media screen and (min-width: 820px) {
  .header_menu {
    display: flex;
  }
}

@media screen and (max-width: 819px) {
  .header_menu li {
    background: url(../img/dot_green.svg) repeat-x left top/7px auto;
  }
}

.header_menu li a {
  font-size: 1.6rem;
  font-weight: 700;
  color: currentColor;
  text-decoration: none;
  display: block;
  padding: 2.4rem 1rem;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 820px) {
  .header_menu li a {
    font-size: 1.5rem;
    padding: 2.2rem 1.5rem;
  }
}

@media (hover) {
  .header_menu li a:hover {
    text-decoration: underline;
    text-underline-offset: 0.6em;
    text-decoration-color: var(--color-key);
  }
}

.header_info {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.header_info li {
  border-radius: 1rem;
  overflow: hidden;
}

.header_info a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: currentColor;
  text-align: center;
  width: 100%;
  height: 9.3rem;
}

.header_info-tel {
  background-color: #fff;
}

.header_info-tel a {
  padding-top: 0.8rem;
}

.header_info-tel span {
  font-size: 1.6rem;
  color: #707070;
}

.header_info-tel p {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  font-size: 3.6rem;
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.3;
}

.header_info-tel p:before {
  content: "";
  width: 2.8rem;
  height: 2.8rem;
  background: url(../img/icon_tel.svg) no-repeat center/cover;
}

.header_info-reserve {
  background-color: var(--color-main);
}

.header_info-reserve p {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  color: #fff;
  font-size: 2.4rem;
}

.header_info-reserve p:before {
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/icon_calendar.svg) no-repeat center/cover;
}

/*-----------------
footer
-------------------*/
.footer_link {
  padding: 10rem 2rem;
  display: grid;
  row-gap: 4rem;
}

@media screen and (min-width: 820px) {
  .footer_link {
    padding: 13rem 0;
    display: flex;
    justify-content: center;
    gap: 0 3.4rem;
    width: 107rem;
    margin: 0 auto;
  }
}

.footer_link li {
  border-radius: 1rem;
  border: 1px solid var(--color-main);
  overflow: hidden;
}

@media screen and (min-width: 820px) {
  .footer_link li {
    width: calc(33.3333333333% - 2.2666666667rem);
  }
}

.footer_link li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: currentColor;
  text-decoration: none;
  height: 16.6rem;
  text-align: center;
  background-color: #fff;
  transition: 0.3s;
}

.footer_link li a span {
  margin-bottom: 1.7rem;
}

.footer_link li a span img {
  width: 5rem;
}

.footer_link li a p {
  line-height: 1;
}

.footer_link li a p.maru {
  font-size: 2.2rem;
}

.footer_link li a p.en {
  font-size: 2.4rem;
  font-weight: 700;
}

.footer_link li a:before {
  content: "";
  width: 10.3rem;
  height: 10.3rem;
  background-color: var(--color-main);
  border-radius: 50%;
  position: absolute;
  right: -4.2rem;
  bottom: -4.2rem;
}

.footer_link li a:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/icon_triangle_wh.svg) no-repeat center/100% auto;
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
}

@media (hover) {
  .footer_link li a:hover {
    opacity: 0.7;
  }
}

.footer_main {
  background: url(../img/footer_bg_sp.webp) no-repeat center top/cover;
  background-attachment: fixed;
  padding-top: 21.5rem;
}

@media screen and (min-width: 820px) {
  .footer_main {
    background-image: url(../img/footer_bg.webp);
    padding-top: 38rem;
  }
}

.footer_illust {
  position: absolute;
  pointer-events: none;
}

.footer_illust img {
  width: 6.6rem;
}

@media screen and (min-width: 820px) {
  .footer_illust img {
    width: 9.2rem;
  }
}

.footer_illust-1 {
  top: -12.8rem;
  left: 1rem;
}

@media screen and (min-width: 820px) {
  .footer_illust-1 {
    top: 2rem;
    left: 72.4rem;
  }
}

.footer_illust-2 {
  top: 27.8rem;
  right: 2rem;
}

@media screen and (min-width: 820px) {
  .footer_illust-2 {
    top: 13.5rem;
    right: 3rem;
  }
}

.footer_top {
  background: url(../img/footer_access_sp.webp) no-repeat center top/cover;
  padding: 8rem 2rem;
  position: relative;
}

@media screen and (min-width: 820px) {
  .footer_top {
    background-image: url(../img/footer_access_pc.webp);
    padding: 14rem 0 10.5rem;
  }
}

@media screen and (min-width: 820px) {
  .footer_top .contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 7.5rem;
    align-items: flex-end;
  }
}

.footer_top_access {
  margin-bottom: 6rem;
}

@media screen and (min-width: 820px) {
  .footer_top_access {
    margin-bottom: 0;
    padding-left: 9.5rem;
  }
}

.footer_top_access dt {
  border-radius: 2.4rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

@media screen and (min-width: 820px) {
  .footer_top_access dt {
    margin-bottom: 5rem;
  }
}

.footer_top_access dt iframe {
  width: 100%;
  height: 20.5rem;
}

@media screen and (min-width: 820px) {
  .footer_top_access dt iframe {
    height: 31.2rem;
  }
}

.footer_top_access dd h2 {
  font-size: 2.4rem;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  align-items: center;
  line-height: 1;
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 820px) {
  .footer_top_access dd h2 {
    font-size: 2.6rem;
    grid-template-columns: 3rem 1fr;
    margin-bottom: 1.5rem;
  }
}

.footer_top_access dd h2::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--color-key);
  border-radius: 50%;
  transform: translateX(0.3rem);
}

.footer_top_access dd p {
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (min-width: 820px) {
  .footer_top_access dd p {
    font-size: 1.6rem;
  }
}

.footer_top_access dd p small {
  font-size: 1.4rem;
  display: block;
  line-height: 2;
}

.footer_top_access dd h3 {
  font-size: 1.6rem;
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  align-items: center;
  line-height: 1;
  margin-top: 2.5rem;
  margin-bottom: 0.6rem;
}

@media screen and (min-width: 820px) {
  .footer_top_access dd h3 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
  }
}

.footer_top_access dd h3 img {
  width: 2.2rem;
}

.footer_top_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 6rem;
}

@media screen and (min-width: 820px) {
  .footer_top_info {
    margin-bottom: 11.2rem;
  }
}

.footer_top_info p {
  font-size: 1.8rem;
}

@media screen and (min-width: 820px) {
  .footer_top_info p {
    font-size: 2rem;
  }
}

.footer_top_info h2 {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0;
}

@media screen and (min-width: 820px) {
  .footer_top_info h2 {
    font-size: 5.4rem;
    margin-bottom: 1.5rem;
  }
}

.footer_top_info h2 a {
  display: flex;
  align-items: center;
  color: var(--color-main);
  text-decoration: none;
  column-gap: 0.5rem;
}

@media screen and (min-width: 820px) {
  .footer_top_info h2 a {
    column-gap: 0.8rem;
  }
}

.footer_top_info h2 a img {
  width: 3.2rem;
}

@media screen and (min-width: 820px) {
  .footer_top_info h2 a img {
    width: 3.6rem;
  }
}

.footer_bottom {
  padding: 7rem 2rem 9rem;
  background-color: var(--color-bg);
  position: relative;
  margin-top: -1px;
}

.footer_bottom:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(90, 93, 94, 0.05);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 820px) {
  .footer_bottom {
    padding: 12.8rem 0 11.7rem;
  }
}

@media screen and (min-width: 820px) {
  .footer_bottom .contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
  }
}

@media screen and (max-width: 819px) {
  .footer_bottom_menu {
    display: none;
  }
}

@media screen and (min-width: 820px) {
  .footer_bottom_menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.footer_bottom_menu li {
  padding-left: 7.5rem;
}

.footer_bottom_menu li a {
  color: currentColor;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.4rem 0;
  display: block;
}

@media (hover) {
  .footer_bottom_menu li a:hover {
    text-decoration: underline;
    text-underline-offset: 0.5em;
    text-decoration-color: var(--color-key);
  }
}

.footer_bottom_main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 820px) {
  .footer_bottom_main {
    align-items: flex-start;
  }
}

.footer_bottom_logo {
  margin-bottom: 8rem;
  width: 100%;
}

@media screen and (min-width: 820px) {
  .footer_bottom_logo {
    margin-bottom: 14rem;
  }
}

.footer_bottom_logo img {
  width: 100%;
}

@media screen and (min-width: 820px) {
  .footer_bottom_logo img {
    width: 42.4rem;
  }
}

.footer_bottom_copy {
  font-size: 1.2rem;
  font-weight: 500;
}

@media screen and (min-width: 820px) {
  .footer_bottom_copy {
    font-size: 1.4rem;
  }
}

aside {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

@media screen and (min-width: 820px) {
  aside {
    left: auto;
    right: 0;
    bottom: 3rem;
    width: auto;
  }
}

.float {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  overflow: hidden;
}

@media screen and (min-width: 820px) {
  .float {
    grid-template-columns: 1fr;
    row-gap: 1rem;
    border-radius: 0;
  }
}

@media screen and (min-width: 820px) {
  .float li {
    border-top-left-radius: 0.6rem;
    border-bottom-left-radius: 0.6rem;
    width: fit-content;
    margin-left: auto;
  }
}

.float li a {
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  column-gap: 1rem;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  transition: 0.3s;
}

@media screen and (min-width: 820px) {
  .float li a {
    height: auto;
    min-height: 13.5rem;
    writing-mode: vertical-rl;
    width: 5rem;
    padding: 1.6rem 0;
    box-sizing: content-box;
  }
}

@media (hover) {
  .float li a:hover {
    padding-right: 1rem;
  }
}

.float li a img {
  width: 2.5rem;
}

.float-check {
  background-color: var(--color-key);
}

.float-reserve {
  background-color: var(--color-main);
}

/*-----------------
TOP
-------------------*/
.kv {
  position: relative;
  padding-top: 0.8rem;
}

@media screen and (min-width: 820px) {
  .kv {
    padding-top: 0;
  }
}

.kv_img img {
  width: 100%;
}

@media screen and (min-width: 820px) {
  .kv_img_sp {
    display: none;
  }
}

.kv_img_sp img {
  width: 100%;
}

.kv_main {
  position: relative;
  margin: -2.8rem 2rem 2.5rem;
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 5rem 0 8rem;
  box-shadow: 0 1rem 9.9rem rgba(4, 0, 0, 0.1);
}

@media screen and (min-width: 820px) {
  .kv_main {
    position: absolute;
    top: 6.4rem;
    left: 50%;
    margin: 0 0 0 -37rem;
    width: 74rem;
    height: 43.5rem;
    padding: 5rem 6rem 3rem 0;
    display: flex;
    flex-direction: row-reverse;
  }
}

.kv_main h2 {
  font-size: 3.2rem;
  padding: 0 3.3rem;
  margin-bottom: 2rem;
  color: var(--color-light);
  line-height: 1.675;
}

@media screen and (min-width: 820px) {
  .kv_main h2 {
    font-size: 3.8rem;
    padding: 0;
    margin-bottom: 0;
    margin-left: 4.5rem;
    writing-mode: vertical-rl;
  }
}

.kv_main p {
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  margin: 0 2.4rem;
  color: var(--color-light);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 820px) {
  .kv_main p {
    writing-mode: vertical-rl;
    margin: 0;
  }
}

.kv_main p span {
  width: fit-content;
  padding: 1rem 0;
  background: url(../img/dot_bk.svg) repeat-x left bottom/7px auto;
}

@media screen and (min-width: 820px) {
  .kv_main p span {
    padding: 0 1.8rem 0 1.6rem;
    background: url(../img/dot_bk_v.svg) repeat-y right top/2px auto;
    height: fit-content;
  }
}

.kv_main figure {
  position: absolute;
  right: 4rem;
  bottom: 3.2rem;
}

@media screen and (min-width: 820px) {
  .kv_main figure {
    right: auto;
    left: 5.3rem;
    bottom: 5rem;
  }
}

.kv_main figure img {
  width: 5.4rem;
}

@media screen and (min-width: 820px) {
  .kv_main figure img {
    width: 8.7rem;
  }
}

.kv_check {
  border-radius: 1rem;
  margin: 0 2rem 3rem;
  padding: 2.6rem 2rem 3.2rem;
  background: url(../img/check_illust.webp) no-repeat left top 3rem/8.6rem auto var(--color-key);
}

@media screen and (min-width: 820px) {
  .kv_check {
    margin: 0;
    padding: 2rem 2rem 2rem 12.4rem;
    background-position: left top 1.8rem;
    background-size: 11rem auto;
    position: absolute;
    bottom: 7rem;
    right: 4rem;
    width: 56rem;
  }
}

.kv_check p {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.036em;
  line-height: 2;
  padding-left: 7.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 820px) {
  .kv_check p {
    font-size: 1.3rem;
    padding-left: 0;
    margin-bottom: 1.7rem;
    line-height: 1.7;
  }
}

.kv_check a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-main);
  width: 28.2rem;
  height: 5.2rem;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  border-radius: 5rem;
  border: 1px solid #4D9B57;
  box-shadow: 0 2px 0 #4D9B57;
  margin: 0 auto;
}

@media screen and (min-width: 820px) {
  .kv_check a {
    width: 24.2rem;
    height: 3.8rem;
    margin: 0;
  }
}

@media (hover) {
  .kv_check a:hover {
    opacity: 0.7;
  }
}

.kv_check a:after {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../img/icon_triangle_square.svg) no-repeat center/cover;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  margin-top: -0.5rem;
}

@media screen and (min-width: 820px) {
  .kv_check a:after {
    right: 1.8rem;
  }
}

.top_overview_list {
  margin: 1.5rem 0 2rem;
  position: relative;
}

@media screen and (min-width: 820px) {
  .top_overview_list {
    width: 47.8rem;
  }
}

.top_overview_list ul {
  background-color: #EBEAE0;
  border-radius: 1rem;
  padding: 2rem 3rem 4rem;
}

@media screen and (min-width: 820px) {
  .top_overview_list ul {
    padding: 2rem 3rem;
  }
}

.top_overview_list li {
  font-size: 1.4rem;
  letter-spacing: 0.086em;
  display: grid;
  grid-template-columns: 2rem 1fr;
  column-gap: 0.6rem;
  padding: 1.5rem 0;
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
}

@media screen and (min-width: 820px) {
  .top_overview_list li {
    font-size: 1.6rem;
  }
}

.top_overview_list li::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon_checkbox.svg) no-repeat right top/100% auto;
  transform: translateY(0.1em);
}

@media screen and (min-width: 820px) {
  .top_overview_list li::before {
    transform: translateY(0.2em);
  }
}

.top_overview_list figure {
  position: absolute;
  right: 0;
  bottom: -7.5rem;
}

@media screen and (min-width: 820px) {
  .top_overview_list figure {
    bottom: -9rem;
    right: -12.8rem;
  }
}

.top_overview_list figure img {
  width: 9.6rem;
}

@media screen and (min-width: 820px) {
  .top_overview_list figure img {
    width: 16.2rem;
  }
}

.top_overview .btn {
  margin-top: 5.5rem;
}

@media screen and (min-width: 820px) {
  .top_overview_img {
    position: absolute;
    top: -4.3rem;
    right: 3.8rem;
  }
}

.top_overview_img img {
  width: 26rem;
}

@media screen and (max-width: 819px) {
  .top_overview_img img {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}

@media screen and (min-width: 820px) {
  .top_overview_img img {
    width: 36.3rem;
  }
}

.col_imgblock {
  margin: 2.5rem 2rem 5rem;
}

@media screen and (min-width: 820px) {
  .col_imgblock {
    margin: 2rem 7.2rem 0;
    display: grid;
    grid-template-columns: 63.8rem 1fr;
    column-gap: 8rem;
  }
}

.col_imgblock dt {
  margin-bottom: 3rem;
}

@media screen and (min-width: 820px) {
  .col_imgblock dt {
    margin-bottom: 0;
  }
}

.col_imgblock dt img {
  width: 100%;
}

@media screen and (min-width: 820px) {
  .col_imgblock dd {
    padding-top: 3rem;
  }
}

.col_imgblock dd h3 {
  font-size: 2.8rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
  letter-spacing: 0;
}

@media screen and (min-width: 820px) {
  .col_imgblock dd h3 {
    font-size: 3rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 820px) {
  .col_imgblock-rev {
    grid-template-columns: 1fr 63.8rem;
  }
}

@media screen and (min-width: 820px) {
  .col_imgblock-rev dt {
    grid-area: 1/2/2/3;
  }
}

@media screen and (min-width: 820px) {
  .col_imgblock-rev dd {
    grid-area: 1/1/2/2;
    padding-left: calc(100% - 58rem);
  }
}

@media screen and (min-width: 820px) {
  .top_case_wrap {
    width: 75.8rem;
    margin: 0 auto;
    position: relative;
  }
}

@media screen and (min-width: 820px) {
  .top_case_wrap .splide__track {
    visibility: visible;
    overflow: visible;
  }
}

@media screen and (min-width: 820px) {
  .top_case_wrap .splide__arrow--prev {
    left: -3.2rem;
  }
}

@media screen and (min-width: 820px) {
  .top_case_wrap .splide__arrow--next {
    right: -3.2rem;
  }
}

.top_case_wrap .splide__arrow {
  transform: translateY(calc(-50% - 2rem));
}

.top_case_slider {
  margin: 5rem 2rem;
}

@media screen and (min-width: 820px) {
  .top_case_slider {
    margin: 4.5rem 0 6rem;
    overflow: hidden;
  }
}

.top_case_slider li {
  background-color: #fff;
  border-radius: 2.4rem;
  box-shadow: 0 0 2rem rgba(4, 0, 0, 0.1);
}

.top_case_slider li:not(.splide__slide--clone) {
  counter-increment: num;
}

.top_case_slider li h3 {
  margin: 0 5.4rem;
  background-color: var(--color-key);
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 0.2rem;
}

@media screen and (min-width: 820px) {
  .top_case_slider li h3 {
    margin: 0 14.2rem;
    font-size: 2.8rem;
    height: 4.4rem;
    margin-bottom: 4rem;
  }
}

.top_case_slider li h3:after {
  content: ".0" counter(num);
}

.top_case_in {
  padding: 0 2rem 3rem;
}

@media screen and (min-width: 820px) {
  .top_case_in {
    padding: 0 6rem 6rem;
    display: grid;
    grid-template-columns: 27.4rem 1fr;
    column-gap: 4rem;
    align-items: flex-start;
  }
}

.top_case_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 820px) {
  .top_case_img {
    grid-template-columns: 1fr;
    gap: 3.5rem 0;
    margin-bottom: 0;
  }
}

.top_case_img figure {
  position: relative;
}

.top_case_img figure figcaption {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 1rem;
  left: 0;
}

.top_case_img figure figcaption span {
  font-size: 1rem;
  background-color: #fff;
  border-radius: 3rem;
  padding: 0.2rem 0.7rem;
  display: block;
  width: fit-content;
  max-width: 96%;
  margin: 0 auto;
}

@media screen and (min-width: 820px) {
  .top_case_img figure figcaption span {
    font-size: 1.4rem;
    padding: 0.4rem 3rem;
  }
}

.top_case_img figure:first-child::after {
  content: "";
  width: 0.8rem;
  height: 1.6rem;
  background: url(../img/icon_triangle.svg) no-repeat center/100% auto;
  position: absolute;
  left: calc(100% + 0.6rem);
  top: 50%;
  margin: -0.8rem 0 0 0;
}

@media screen and (min-width: 820px) {
  .top_case_img figure:first-child::after {
    width: 1.2rem;
    height: 2.4rem;
    transform: rotate(90deg);
    top: calc(100% + 0.6rem);
    left: 50%;
    margin: 0 0 0 -1.2rem;
  }
}

.top_case_img img {
  border-radius: 1rem;
  width: 100%;
}

@media screen and (min-width: 820px) {
  .top_case_main {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
}

.top_case_main h4 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

@media screen and (min-width: 820px) {
  .top_case_main h4 {
    font-size: 2rem;
  }
}

.top_case_main p {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 820px) {
  .top_case_main p:has(+ dl) {
    margin-bottom: 3rem;
  }
}

.top_case_main h5 {
  font-size: 1.6rem;
  color: var(--color-main);
  line-height: 1;
  margin: 2.4rem 0 1rem;
}

.top_case_main dl {
  background-color: #EBEAE0;
  border-radius: 1rem;
  padding: 3rem 2rem;
  margin-top: 2.5rem;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: 1fr 50%;
  gap: 1.4rem 0.8rem;
}

@media screen and (min-width: 820px) {
  .top_case_main dl {
    margin-top: auto;
    padding: 2.5rem 2.4rem 2.5rem 2rem;
  }
}

.top_case_main dl dt {
  position: relative;
}

.top_case_main dl dt:after {
  content: "";
  width: 100%;
  height: 2px;
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
  position: absolute;
  left: 0;
  top: 0.8rem;
}

.top_case_main dl dt span {
  background-color: #EBEAE0;
  position: relative;
  z-index: 1;
  max-width: calc(100% - 1rem);
  display: block;
  width: fit-content;
  line-height: 1.3;
  padding-right: 0.5rem;
}

@media screen and (min-width: 820px) {
  .top_case_main dl dt span {
    padding-left: 1rem;
  }
}

.top_case_main dl dd {
  line-height: 1.3;
}

@media screen and (min-width: 820px) {
  #top_greetings {
    margin-bottom: 0;
  }
}

.top_greetings .btn_col {
  margin-top: 5.5rem;
}

.top_greetings_img1 {
  text-align: right;
  margin-right: 2rem;
  margin-top: 6rem;
}

@media screen and (min-width: 820px) {
  .top_greetings_img1 {
    position: absolute;
    top: -5.8rem;
    left: calc(50% - 62rem);
    margin: 0;
  }
}

.top_greetings_img1 img {
  width: 22.8rem;
}

@media screen and (min-width: 820px) {
  .top_greetings_img1 img {
    width: 28rem;
  }
}

.top_greetings_img2 {
  margin-top: -2.3rem;
}

@media screen and (min-width: 820px) {
  .top_greetings_img2 {
    margin-top: 2rem;
  }
}

.top_greetings_img2 img {
  width: 29.6rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media screen and (min-width: 820px) {
  .top_greetings_img2 img {
    width: 36.3rem;
  }
}

.top_intro_slider {
  margin: 2.5rem 2rem 0;
}

@media screen and (min-width: 820px) {
  .top_intro_slider {
    overflow: hidden;
    margin: 5rem 0 0;
  }
}

@media screen and (min-width: 820px) {
  .top_intro_wrap {
    width: 84rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 820px) {
  .top_intro_wrap .splide__track {
    visibility: visible;
    overflow: visible;
  }
}

.top_intro_wrap li img {
  border-radius: 2.4rem;
}

section .splide__pagination {
  position: static;
  padding: 0;
  margin: 3rem 0 0;
  column-gap: 1rem;
}

section .splide__pagination__page {
  margin: 0;
  width: 1rem;
  height: 1rem;
  background: var(--color-key);
  opacity: 0.5;
}

section .splide__pagination__page.is-active {
  transform: scale(1);
  background: var(--color-key);
  opacity: 1;
}

section .splide__arrow {
  width: 6.4rem;
  height: 6.4rem;
  background-color: #8B8E8E;
  opacity: 1;
}

section .splide__arrow svg {
  width: 6.4rem;
  height: 6.4rem;
  fill: #fff;
  stroke: none;
}

.listBlock {
  position: relative;
  background-color: #fff;
  border-radius: 2.4rem;
  margin: 0 2rem;
  padding: 5rem 2rem 6rem;
}

@media screen and (min-width: 820px) {
  .listBlock {
    margin: 0;
    padding: 3.5rem 6rem 6rem;
    display: grid;
    grid-template-columns: 1fr 92.3rem;
  }
}

.listBlock_ttl {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}

@media screen and (min-width: 820px) {
  .listBlock_ttl {
    margin-bottom: 0;
    grid-area: 1/1/2/2;
    padding-top: 1.8rem;
  }
}

.listBlock_ttl span {
  font-size: 4.8rem;
  color: var(--color-key);
  line-height: 1;
}

@media screen and (min-width: 820px) {
  .listBlock_ttl span {
    font-size: 5.6rem;
  }
}

.listBlock_ttl strong {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
}

@media screen and (min-width: 820px) {
  .listBlock_ttl strong {
    font-size: 2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 820px) {
  .listBlock_item {
    grid-area: 1/2/3/3;
    min-height: 16rem;
  }
}

.listBlock_item li {
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
}

.listBlock_item li a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  padding: 2.3rem 0;
  text-decoration: none;
  color: currentColor;
  transition: opacity 0.3s;
}

@media screen and (min-width: 820px) {
  .listBlock_item li a {
    padding: 3rem 0;
  }
}

@media (hover) {
  .listBlock_item li a:hover {
    opacity: 0.7;
  }
}

.listBlock_item_time {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-family: var(--font-en);
  font-weight: 700;
  grid-area: 1/1/2/2;
  line-height: 1;
  transform: translateY(0.5rem);
}

.listBlock_item_tag {
  grid-area: 1/2/2/3;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.listBlock_item_tag span {
  font-size: 1.3rem;
  border: 1px solid var(--color-main);
  line-height: 1;
  padding: 0.3rem 1.6rem;
  border-radius: 2rem;
}

.listBlock_item_title {
  grid-area: 2/1/3/3;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
}

@media screen and (min-width: 820px) {
  .listBlock_item_title {
    font-size: 1.6rem;
  }
}

.listBlock_btn {
  margin-top: 6rem;
}

@media screen and (min-width: 820px) {
  .listBlock_btn {
    margin-top: auto;
  }
}

.top_new_img {
  position: absolute;
  top: -1.1rem;
  right: 5.8rem;
  pointer-events: none;
}

@media screen and (min-width: 820px) {
  .top_new_img {
    top: -2.6rem;
    right: auto;
    left: 18.4rem;
  }
}

.top_new_img img {
  width: 7.2rem;
}

@media screen and (min-width: 820px) {
  .top_new_img img {
    width: 8rem;
  }
}

.top_column_img {
  position: absolute;
  top: 2.1rem;
  right: 5.6rem;
  pointer-events: none;
}

@media screen and (min-width: 820px) {
  .top_column_img {
    top: 6.8rem;
    left: -1.3rem;
  }
}

.top_column_img img {
  width: 5.3rem;
}

@media screen and (min-width: 820px) {
  .top_column_img img {
    width: 5.4rem;
  }
}

@media screen and (max-width: 819px) {
  .top_column_img img {
    transform: scale(-1, 1);
  }
}

/*-----------------
under page
-------------------*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb li {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

@media screen and (min-width: 820px) {
  .breadcrumb li {
    font-size: 1.4rem;
  }
}

.breadcrumb li:has(> a) {
  opacity: 1;
}

.breadcrumb li a {
  color: var(--color-key);
  text-decoration: none;
}

.breadcrumb li+li {
  display: flex;
  align-items: center;
}

.breadcrumb li+li::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  border-top: 2px dotted var(--color-key);
  margin: 0 0.8rem;
}

.pagination {
  margin-top: 6rem;
}

@media screen and (min-width: 820px) {
  .pagination {
    margin-top: 8rem;
  }
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-key);
  background-color: #fff;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-key);
  text-decoration: none;
  margin: 0 0.5rem;
}

@media screen and (min-width: 820px) {
  .pagination .page-numbers {
    width: 4rem;
    height: 4rem;
    font-size: 2.2rem;
  }
}

.pagination .page-numbers.prev {
  transform: scale(-1, 1);
}

.pagination .page-numbers.current {
  background-color: var(--color-key);
  color: #fff;
}

.pagination .page-numbers.dots {
  border: none;
  background-color: transparent;
}

.page {
  padding: 6rem 0 0;
}

@media screen and (min-width: 820px) {
  .page {
    padding: 4rem 0 0;
  }
}

@media screen and (min-width: 820px) {
  .page_main {
    width: 144.5rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 80.2rem;
    align-items: center;
    column-gap: 5rem;
  }
}

.page_main h1 {
  font-size: 3.2rem;
  font-weight: 700;
  font-family: var(--font-sub);
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 2rem;
}

@media screen and (min-width: 820px) {
  .page_main h1 {
    font-size: 4.4rem;
    margin-bottom: 2.4rem;
  }
}

.page_main figure {
  margin-top: 3.7rem;
}

@media screen and (min-width: 820px) {
  .page_main figure {
    margin-top: 0;
  }
}

.system {
  padding-top: 7.4rem;
}

@media screen and (min-width: 820px) {
  .system {
    padding-top: 15rem;
  }
}

.system .blockTtl {
  margin-bottom: 2rem;
}

@media screen and (min-width: 820px) {
  .system .blockTtl {
    margin-bottom: 9rem;
  }
}

.system .blockTtl strong {
  margin-top: -1.6rem;
}

@media screen and (min-width: 820px) {
  .system .blockTtl strong {
    margin-top: -2.6rem;
  }
}

.system_inner {
  margin-top: 6rem;
}

.childsec {
  margin-top: 7.2rem;
}

@media screen and (min-width: 820px) {
  .childsec {
    margin-top: 9rem;
  }
}

.childsecTtl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 820px) {
  .childsecTtl {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }
}

.page_treatment_lead dt img {
  width: 100%;
}

@media screen and (min-width: 820px) {
  .page_treatment_lead dt img {
    width: 72.6rem;
  }
}

.page_treatment_lead dt {
  margin-bottom: 3rem;
}

@media screen and (min-width: 820px) {
  .page_treatment_lead dt {
    margin-bottom: 4.4rem;
  }
}

.icon_card {
  margin-top: 3.8rem;
  display: grid;
  gap: 3rem 0;
}

@media screen and (min-width: 820px) {
  .icon_card {
    margin-top: 5.5rem;
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }
}

.icon_card li {
  display: grid;
  background-color: #EBEADF;
  border-radius: 2.4rem;
  padding: 4rem 2.8rem;
  counter-increment: number;
}

@media screen and (min-width: 820px) {
  .icon_card li {
    padding: 2.2rem 3.5rem 2.2rem 3rem;
    align-items: center;
    grid-template-columns: 12.2rem 1fr;
    grid-template-rows: auto 1fr;
    gap: 0.8rem 2.8rem;
  }
}

.icon_card li figure {
  margin: 0 auto 3.4rem;
  width: 12.2rem;
  background-color: #fff;
  border-radius: 50%;
}

@media screen and (min-width: 820px) {
  .icon_card li figure {
    margin: 0;
    grid-area: 1/1/3/2;
  }
}

.icon_card li figure img {
  width: 100%;
}

.icon_card li h4 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 820px) {
  .icon_card li h4 {
    font-size: 2.2rem;
    margin-bottom: 0;
    grid-area: 1/2/2/3;
  }
}

.icon_card li p {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 820px) {
  .icon_card li p {
    grid-area: 2/2/3/3;
  }
}

.number {
  display: flex;
  align-items: flex-start;
}

.number:before {
  content: counter(number) ".";
  padding-right: 1rem;
  font-size: 1.2em;
  font-family: var(--font-en);
  line-height: 1;
  transform: translateY(0.1em);
}

.img_card {
  margin-top: 3.8rem;
  display: grid;
  gap: 3rem 0;
}

@media screen and (min-width: 820px) {
  .img_card {
    margin-top: 5.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.img_card li {
  border-radius: 2.4rem;
  overflow: hidden;
  background-color: #fff;
}

.img_card li figure {
  margin-bottom: 2.4rem;
}

.img_card li figure img {
  width: 100%;
}

.img_card li h3 {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 1.4rem;
}

@media screen and (min-width: 820px) {
  .img_card li h3 {
    margin-bottom: 2.8rem;
  }
}

.img_card li h3 span {
  color: var(--color-key);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

@media screen and (min-width: 820px) {
  .img_card li h3 span {
    font-size: 1.6rem;
  }
}

.img_card li h3 strong {
  font-size: 2.2rem;
}

@media screen and (min-width: 820px) {
  .img_card li h3 strong {
    font-size: 2.8rem;
  }
}

.img_card_detail {
  padding: 0 2.5rem 3.5rem;
}

@media screen and (min-width: 820px) {
  .img_card_detail {
    padding: 0 3.8rem 5rem;
  }
}

@media screen and (min-width: 820px) {
  .img_card-inline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}

.img_card-inline li {
  padding: 2.5rem 2.5rem 3.5rem;
}

.img_card-inline li figure img {
  border-radius: 1rem;
}

.img_card-inline li h3 {
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 820px) {
  .img_card-inline li h3 {
    margin-bottom: 2rem;
  }
}

.img_card-inline li h3 strong {
  font-size: 2rem;
}

@media screen and (min-width: 820px) {
  .img_card-inline li h3 strong {
    font-size: 2.2rem;
  }
}

.img_card-inline li h3 span {
  color: currentColor;
  font-weight: 400;
}

.img_card-inline li .txt b {
  display: block;
  font-size: 1.1em;
  padding-block: 1rem;
}

@media screen and (min-width: 820px) {
  .img_card-inline li .txt b {
    font-size: 1.3em;
  }
}

.img_card-inline li .txt small {
  display: block;
}

@media screen and (min-width: 820px) {
  .img_card-inline li .txt {
    font-size: 1.4rem;
  }
}

.img_card-inline .img_card_detail {
  padding: 0;
}

.guide_list {
  margin-top: 6rem;
  background-color: #fff;
  border-radius: 2.4rem;
  border: 1px solid var(--color-key);
  padding: 4.6rem 1.6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1.5rem;
  position: relative;
}

.guide_list.long {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 820px) {
  .guide_list {
    margin: 7rem auto 0;
    width: 51rem;
    padding: 4.6rem 2.7rem 4rem;
  }
}

.guide_list:before {
  content: attr(data-title);
  width: 24rem;
  background-color: var(--color-key);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-sub);
  color: #fff;
  text-align: center;
  padding: 0.3rem 1.5rem;
  border-radius: 3rem;
  position: absolute;
  top: -1.5rem;
  left: 5.5rem;
}

@media screen and (min-width: 820px) {
  .guide_list:before {
    left: 13.5rem;
  }
}

.guide_list li {
  padding-left: 2rem;
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  column-gap: 1rem;
  font-size: 1.8rem;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 820px) {
  .guide_list li {
    padding-left: 5.5rem;
  }
}

.guide_list li::before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background-color: var(--color-key);
  border-radius: 50%;
  transform: translateY(0.45em);
}

.download {
  padding-top: 2rem;
}

@media screen and (min-width: 820px) {
  .download {
    width: 80rem;
    margin: 0 auto;
  }
}

.download dt {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-sub);
  line-height: 1;
  padding-bottom: 1.3rem;
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
  margin-bottom: 3rem;
}

@media screen and (min-width: 820px) {
  .download dt {
    font-size: 2.2rem;
    margin-bottom: 4rem;
  }
}

.download dd {
  display: grid;
  gap: 2rem 0;
  padding: 0 1rem;
}

@media screen and (min-width: 820px) {
  .download dd {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.4rem;
    padding: 0;
  }
}

.download dd+dt {
  margin-top: 5.5rem;
}

.flow_list {
  margin-top: 3.8rem;
  display: grid;
  gap: 5.3rem 0;
}

@media screen and (min-width: 820px) {
  .flow_list {
    margin: 5.5rem auto 0;
    max-width: 92.6rem;
    gap: 4.7rem 0;
  }
}

.flow_list li {
  background-color: #fff;
  position: relative;
  border-radius: 2.4rem;
  padding: 2.5rem;
  counter-increment: flow_num;
}

@media screen and (min-width: 820px) {
  .flow_list li {
    display: grid;
    grid-template-columns: 28.6rem 1fr;
    column-gap: 4.4rem;
    padding: 4rem;
  }
}

.flow_list li+li:before {
  content: "";
  width: 1.6rem;
  height: 3.2rem;
  background: url(../img/icon_triangle_green.svg) no-repeat center/100% auto;
  transform: rotate(90deg);
  position: absolute;
  top: -4rem;
  left: 50%;
  margin-left: -0.8rem;
}

@media screen and (min-width: 820px) {
  .flow_list li+li:before {
    top: -3.7rem;
  }
}

.flow_list li figure {
  margin-bottom: 2.8rem;
}

@media screen and (min-width: 820px) {
  .flow_list li figure {
    margin-bottom: 0;
  }
}

.flow_list li figure img {
  border-radius: 1rem;
  width: 100%;
}

.flow_list li h3 {
  display: grid;
  align-items: center;
  grid-template-columns: 3rem 1fr;
  column-gap: 1.4rem;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 820px) {
  .flow_list li h3 {
    grid-template-columns: 3.4rem 1fr;
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
}

.flow_list li h3::before {
  content: "0" counter(flow_num);
  width: 3rem;
  height: 3rem;
  color: #fff;
  background-color: var(--color-key);
  font-family: var(--font-en);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border-radius: 50%;
  padding-top: 0.1em;
  letter-spacing: 0;
}

@media screen and (min-width: 820px) {
  .flow_list li h3::before {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 2.2rem;
  }
}

.flow_list li p {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

.timetable_wrap {
  background-color: #fff;
  padding: 3rem 2rem;
  margin-top: 5rem;
  border-radius: 2.4rem;
}

@media screen and (min-width: 820px) {
  .timetable_wrap {
    max-width: 89rem;
    margin: 5rem auto 0;
    padding: 6rem;
  }
}

.timetable_wrap th,
.timetable_wrap td {
  padding: 1rem 0.7rem;
}

.img_col {
  display: grid;
  gap: 3rem 0;
}

@media screen and (min-width: 820px) {
  .img_col {
    grid-template-columns: 51rem 1fr;
    gap: 0 8rem;
    align-items: center;
  }
}

.img_col figure img {
  width: 100%;
}

.img_col_main h3 {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

@media screen and (min-width: 820px) {
  .img_col_main h3 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
  }
}

@media screen and (min-width: 820px) {
  .img_col_main p {
    line-height: 2;
  }
}

.about_history {
  display: grid;
  gap: 3rem 0;
  margin-top: 5.5rem;
}

@media screen and (min-width: 820px) {
  .about_history {
    margin-top: 8rem;
    grid-template-columns: 1fr 1fr;
    gap: 0 4.3rem;
    border-radius: 2.4rem;
    background-color: #EBEADF;
    padding: 8rem 8rem 6rem;
  }
}

.about_history li {
  background-color: #EBEADF;
  border-radius: 2.4rem;
  padding: 3.4rem 2rem 2rem;
}

@media screen and (min-width: 820px) {
  .about_history li {
    border-radius: 0;
    padding: 0;
  }
}

.about_history li h3 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: var(--font-sub);
  line-height: 1;
  padding-bottom: 1.8rem;
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
  margin-bottom: 2rem;
}

@media screen and (min-width: 820px) {
  .about_history li h3 {
    font-size: 2.2rem;
  }
}

.about_history li table {
  border-collapse: collapse;
  width: 100%;
}

.about_history li table th,
.about_history li table td {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0 0 1.4rem;
  vertical-align: top;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 820px) {

  .about_history li table th,
  .about_history li table td {
    padding-bottom: 2rem;
  }
}

.about_history li table td {
  padding-left: 1em;
}

@media screen and (max-width: 819px) {
  .about_photo {
    margin: 3.8rem 2rem 0;
  }
}

@media screen and (min-width: 820px) {
  .about_photo {
    margin-top: 5.5rem;
    overflow: hidden;
  }
}

@media screen and (min-width: 820px) {
  .about_photo_wrap {
    width: 84rem;
    margin: 0 auto;
    overflow: visible;
  }
}

@media screen and (min-width: 820px) {
  .about_photo_wrap .splide__track {
    overflow: visible;
  }
}

.about_photo_img figure {
  position: relative;
  border-radius: 2.4rem;
  overflow: hidden;
}

.about_photo_img figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(72, 75, 76, 0.75);
  color: #fff;
  padding: 1rem 2.5rem;
  font-family: var(--font-sub);
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
}

.about_photo_img figcaption strong {
  font-size: 1.6rem;
}

.about_photo_img figcaption span {
  font-size: 1.2rem;
  line-height: 1.67;
  margin-top: 0.3rem;
}

.news_wrap {
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 2rem 2rem 4rem;
}

@media screen and (min-width: 820px) {
  .news_wrap {
    max-width: 120rem;
    margin-inline: auto;
    padding: 9rem 0 12rem;
  }
}

.news_wrap .listBlock_item {
  max-width: 92rem;
  margin-inline: auto;
}

.side_col {
  display: grid;
  gap: 4.5rem 0;
}

@media screen and (min-width: 820px) {
  .side_col {
    grid-template-columns: 1fr 26.8rem;
    gap: 0 6rem;
    align-items: flex-start;
  }
}

@media screen and (min-width: 820px) {
  .side_category {
    grid-area: 1/2/2/3;
    position: sticky;
    top: 10rem;
    right: 0;
  }
}

.side_category dt {
  font-size: 2.2rem;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0 0 1.4rem 1rem;
  background: url(../img/dot_baige.svg) repeat-x left bottom/7px auto;
}

.side_category dd {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}

.side_category dd a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  color: currentColor;
  letter-spacing: 0.05em;
  width: fit-content;
}

@media screen and (min-width: 820px) {
  .side_category dd a {
    font-size: 1.8rem;
    padding: 0.8rem 2.2rem;
    margin-block: 0.4rem;
  }
}

.side_category dd a.current {
  background-color: var(--color-main);
  color: #fff;
  border-radius: 4rem;
  margin-block: 1rem;
}

@media screen and (min-width: 820px) {
  .mainarea {
    grid-area: 1/1/2/2;
  }
}

.data_group {
  display: grid;
  grid-template-columns: 10rem 1fr;
  margin-bottom: 0.6rem;
}

.data_group time {
  font-size: 1.6rem;
  transform: translateY(0.25em);
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.data_group ul {
  display: flex;
  flex-wrap: wrap;
}

.data_group ul li {
  font-size: 1.3rem;
  margin: 0.3rem;
  border: 1px solid var(--color-main);
  padding: 0.2rem 1.2rem;
  border-radius: 2rem;
  line-height: 1.2;
}

.data_ttl {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2;
}

.data_thumb {
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 820px) {
  .data_thumb {
    margin-bottom: 2rem;
  }
}

.data_thumb img {
  width: 100%;
}

.case_list {
  display: grid;
  gap: 2rem 0;
}

@media screen and (min-width: 820px) {
  .case_list {
    grid-template-columns: 1fr 1fr;
    gap: 6rem 3rem;
  }
}

.case_list li {
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 3rem 2.8rem 2.5rem;
}

@media screen and (min-width: 820px) {
  .case_list li {
    padding: 4rem;
  }
}

.case_list li a {
  text-decoration: none;
  color: currentColor;
}

.column_list {
  display: grid;
  gap: 2rem 0;
}

@media screen and (min-width: 820px) {
  .column_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 3rem;
  }
}

.column_list li {
  background-color: #fff;
  border-radius: 2.4rem;
  overflow: hidden;
}

.column_list li a {
  text-decoration: none;
  color: currentColor;
}

.column_list_detail {
  padding: 0 2.8rem 2.5rem;
}

.detail {
  background-color: #fff;
  border-radius: 2.4rem;
  padding: 3rem 2.8rem 4rem;
}

@media screen and (min-width: 820px) {
  .detail {
    padding: 10rem 6rem;
  }
}

.detail_thumb {
  margin-bottom: 2rem;
}

@media screen and (min-width: 820px) {
  .detail_thumb {
    margin-bottom: 3rem;
  }
}

.detail_thumb img {
  width: 100%;
}

.detail_ttl {
  font-size: 2.2rem;
  line-height: 1.6;
  margin: 3rem 0;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .detail_ttl {
    font-size: 3.2rem;
  }
}

.detail_btn {
  margin-top: 6rem;
}

@media screen and (min-width: 820px) {
  .detail_btn {
    margin-top: 8rem;
    position: relative;
  }
}

.detail_btn .btn {
  position: relative;
  z-index: 1;
}

.page_control {
  margin-top: 6rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media screen and (min-width: 820px) {
  .page_control {
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5.4rem;
    justify-content: space-between;
  }
}

.page_control a {
  text-decoration: none;
  font-size: 1.4rem;
  font-family: var(--font-sub);
  color: var(--color-key);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

@media (hover) {
  .page_control a:hover {
    opacity: 0.7;
  }
}

.page_control li.prev a::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/arrow.svg) no-repeat center/100% auto;
  transform: scale(-1, 1);
  margin-inline-end: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid var(--color-key);
}

.page_control li.next a::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background: url(../img/arrow.svg) no-repeat center/100% auto;
  margin-inline-start: 1.5rem;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid var(--color-key);
}

@media screen and (min-width: 820px) {
  .page_control li.next {
    margin-left: auto;
  }
}

/*-----------------
animation
-------------------*/
.anime {
  transform: translateY(2rem);
  opacity: 0;
  transition: 0.6s;
  filter: blur(1rem);
}

.anime.is-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/*-----------------
WYSIWYG
-------------------*/
.wpdetail_wrap h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap h1 {
    font-size: 3.2rem;
  }
}

.wpdetail_wrap h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap h2 {
    font-size: 2.2rem;
  }
}

.wpdetail_wrap h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap h3 {
    font-size: 2rem;
  }
}

.wpdetail_wrap h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap h4 {
    font-size: 2rem;
  }
}

.wpdetail_wrap h5 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap h5 {
    font-size: 2rem;
  }
}

.wpdetail_wrap h6 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  font-family: var(--font-sub);
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap h6 {
    font-size: 2rem;
  }
}

.wpdetail_wrap p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 1rem;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap p {
    font-size: 1.6rem;
  }
}

.wpdetail_wrap .wp-block-group+.wp-block-group {
  margin-top: 3rem;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap .wp-block-group+.wp-block-group {
    margin-top: 4rem;
  }
}

.wpdetail_wrap .block_detail {
  margin-top: 3rem;
  background-color: #EBEADF;
  border-radius: 2.4rem;
  padding: 2.8rem 2.8rem 1.4rem;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap .block_detail {
    margin-top: 4rem;
    padding: 6rem 6rem 5rem;
  }
}

.wpdetail_wrap .block_detail h3 {
  font-size: 1.6rem;
  font-family: var(--font-sub);
  margin-bottom: 1rem;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap .block_detail h3 {
    line-height: 2;
  }
}

.wpdetail_wrap .block_detail .block_detail_col {
  margin-bottom: 1rem;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap .block_detail .block_detail_col {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}

.wpdetail_wrap .block_detail .block_detail_col h3 {
  font-size: 1.6rem;
  font-family: var(--font-sub);
  margin-bottom: 1rem;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap .block_detail .block_detail_col h3 {
    line-height: 2;
    margin-bottom: 0;
  }
}

.wpdetail_wrap .block_detail .block_detail_col p {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 0;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap .block_detail .block_detail_col p {
    font-size: 1.6rem;
  }
}

.wpdetail_wrap .wp-block-list {
  list-style: disc;
  padding-left: 2em;
}

.wpdetail_wrap .wp-block-list li {
  font-size: 1.4rem;
}

@media screen and (min-width: 820px) {
  .wpdetail_wrap .wp-block-list li {
    font-size: 1.6rem;
  }
}

.wpdetail_wrap .wp-block-list li+li {
  margin-top: 0.3em;
}

.check_head {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-block: 3rem;
}

@media screen and (min-width: 820px) {
  .check_head {
    max-width: 100rem;
    margin-inline: auto;
    font-size: 1.8rem;
  }
}

.check_body {
  border: solid 3px var(--color-key);
  border-radius: 1rem;
  padding: 4rem 1.5rem;
}

@media screen and (min-width: 820px) {
  .check_body {
    max-width: 100rem;
    margin-inline: auto;
    border-radius: 1.5rem;
  }
}

.check_body .txt {
  margin-bottom: 2rem;
  text-align: center;
}

.check_body table {
  width: 100%;
  margin-bottom: 2rem;
}

@media screen and (min-width: 820px) {
  .check_body table {
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 3rem;
  }
}

.check_body table th {
  width: 8.5rem;
  padding: 1.5rem 0;
}

@media screen and (min-width: 820px) {
  .check_body table th {
    width: 10rem;
  }
}

.check_body table th p {
  background-color: var(--color-key);
  color: #fff;
  font-size: 1.4rem;
  padding: 0.3rem 0 0.4rem;
  text-align: center;
  border-radius: 5rem;
}

@media screen and (min-width: 820px) {
  .check_body table th p {
    font-size: 1.6rem;
  }
}

.check_body table td {
  width: calc(100% - 8.5rem);
  font-size: 1.4rem;
  padding: 0.8rem 0 0.8rem 1rem;
  text-align: left;
}

@media screen and (min-width: 820px) {
  .check_body table td {
    font-size: 1.6rem;
    width: auto;
  }
}

.check_body table td select {
  border: solid 1px #D6D6D6;
  font-size: 1.4rem;
}

@media screen and (min-width: 820px) {
  .check_body table td select {
    font-size: 1.6rem;
  }
}

.check_body table td input[type=radio] {
  display: none;
}

.check_body table td input[type=radio]:checked+label {
  background-image: url(../img/icon_check_04.svg);
}

.check_body table td input[type=text] {
  border: solid 1px #D6D6D6;
  font-size: 1.4rem;
  padding: 0.5rem;
  margin-right: 0.2rem;
}

@media screen and (min-width: 820px) {
  .check_body table td input[type=text] {
    font-size: 1.6rem;
  }
}

.check_body table td label {
  display: inline-block;
  background: url(../img/icon_check_03.svg) no-repeat center left/1.4rem auto;
  padding-left: 1.65rem;
  margin-right: 1.2rem;
}

@media screen and (min-width: 820px) {
  .check_body table td label {
    background-size: 2rem auto;
    padding-left: 2.5rem;
  }
}

.check_body table td .w4 {
  width: 4em;
}

@media screen and (min-width: 820px) {
  .check_body table td .w4 {
    width: 5em;
  }
}

.check_body table td .w2 {
  width: 2.7em;
}

@media screen and (min-width: 820px) {
  .check_body table td .w2 {
    width: 3.5em;
  }
}

.check_body_sub {
  text-align: center;
}

.check_body_sub input[type=submit] {
  display: inline-block;
  border-radius: 5rem;
  color: #fff;
  font-size: 1.4rem;
  background: url(../img/arr_btn.png) no-repeat center right 1.5rem/1.4rem auto #34A23F;
  padding: 1rem 0;
  width: 20.3rem;
  border: solid 2px #34A23F;
  font-weight: 700;
  box-sizing: border-box;
}

@media screen and (min-width: 820px) {
  .check_body_sub input[type=submit] {
    font-size: 1.8rem;
    width: 25rem;
    background-size: 2rem auto;
  }
}

#result.on {
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.3);
  z-index: 100;
  display: flex;
  border: solid 3px var(--color-key);
  box-sizing: border-box;
}

#result .resultin {
  width: 90vw;
  background: #fff;
  padding: 5vw;
  border-radius: 0.5rem;
  position: relative;
}

@media screen and (min-width: 820px) {
  #result .resultin {
    width: 71.4rem;
    padding: 3.2rem;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
  }
}

#result .resultin .img {
  margin-bottom: 5vw;
  text-align: center;
}

@media screen and (min-width: 820px) {
  #result .resultin .img {
    width: 40%;
    margin-bottom: 0;
  }
}

#result .resultin .img img {
  width: 14rem;
}

@media screen and (min-width: 820px) {
  #result .resultin_answer {
    width: 56%;
  }
}

#result .resultin h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1em;
}

@media screen and (min-width: 820px) {
  #result .resultin h3 {
    text-align: left;
    font-size: 1.6rem;
  }
}

#result .resultin p {
  font-weight: 500;
  padding-inline: 3rem;
}

@media screen and (min-width: 820px) {
  #result .resultin p {
    padding-inline: 0;
  }
}

#result .resultin p+p {
  margin-top: 0.5em;
}

#result .resultin .gold {
  color: #9f8955;
}

#result .resultin .green {
  color: var(--color-key);
}

#result .resultin .btn-reserve {
  margin-top: 2rem;
}

#result .err {
  display: block;
  text-align: center;
  color: #F21014;
  font-size: 1.4rem;
  margin-top: 1rem;
}

#close_result {
  position: absolute;
  right: -1rem;
  top: -1.5rem;
  font-size: 3rem;
  background: #fff;
  border: solid 2px #9f8955;
  line-height: 1;
  color: #9f8955;
  border-radius: 50%;
  z-index: 2;
  width: 3.5rem;
  height: 3.5rem;
}

@media screen and (min-width: 820px) {
  #close_result {
    font-size: 3.2rem;
    width: 4.5rem;
    height: 4.5rem;
    right: -2.25rem;
    top: -2.25rem;
  }
}

/*-----------------
404
-------------------*/
.notfound_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.notfound_wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

@media screen and (min-width: 820px) {
  .notfound_wrap h2 {
    font-size: 2.2rem;
  }
}

.notfound_wrap p {
  margin-bottom: 5rem;
}

/*-----------------
FORM
-------------------*/
/* 
.forminator-label {
  font-family: var(--font-sub) !important;
  font-size: 1.4rem !important;
  margin-bottom: 1rem !important;
  display: flex !important;
  align-items: center;
  column-gap: 1rem;
  padding-left: 1rem;
}

.forminator-required {
  background-color: var(--color-key) !important;
  color: transparent !important;
  font-size: 0 !important;
  font-family: var(--font-sub);
  width: 4.6rem;
  height: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  border-radius: 1.8rem;
}
.forminator-required:before {
  content: "必須";
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.contact_wrap input, .contact_wrap select:not(.ui-datepicker-month):not(.ui-datepicker-year), .contact_wrap button, .contact_wrap textarea {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 1rem !important;
  padding: 1rem !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
}
.contact_wrap input, .contact_wrap select:not(.ui-datepicker-month):not(.ui-datepicker-year), .contact_wrap textarea {
  border: 1px solid rgba(90, 93, 94, 0.5) !important;
}

.forminator-icon-calendar {
  right: 1rem;
  left: auto !important;
}
.forminator-icon-calendar::before {
  opacity: 0.5;
}

.forminator-button {
  width: 30.4rem !important;
  height: 5.4rem !important;
  position: relative !important;
  border: 1px solid var(--color-main) !important;
  border-radius: 4rem !important;
  text-decoration: none !important;
  display: flex !important;
  text-align: center !important;
  font-family: var(--font-sub) !important;
  font-size: 1.4rem !important;
  transition: 0.3s !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.forminator-ui#forminator-module-72.forminator-design--default .forminator-response-message.forminator-success {
  background: none;
  box-shadow: none;
  -webkit-box-shadow: none;
  text-align: center !important;
  font-size: 1.4rem !important;
  line-height: 2 !important;
  font-family: var(--font-sub) !important;
  font-weight: 700 !important;
}

.thk_txt + .thk_txt {
  margin-top: 1em;
}
*/

/* Contact Form 7 ----------------------- */
.contact_table table,
.contact_table table tbody,
.contact_table table tr,
.contact_table table th,
.contact_table table td {
  display: block;
}

.contact_table table tr {
  padding-bottom: 1rem;
}

.contact_table table th p {
  text-align: left;
  font-weight: 700;
  font-family: var(--font-sub);
  font-size: 1.4rem;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.contact_table table th.req p::after,
.contact_table .pp .wpcf7-list-item-label:before {
  content: "必須";
  background-color: var(--color-key);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-sub);
  width: 4.6rem;
  height: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  border-radius: 1.8rem;
}

.contact_table table .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}

/* 送信ボタンの親を中央寄せ */
.wpcf7 form .send {
  text-align: center !important;
}

/* CF7の送信ボタンをiPhoneでも中央に */
.wpcf7 form .send .wpcf7-submit {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;          /* inline-flexでもOK */
  text-align: center !important;  /* iOSの左寄せを打ち消す */
  margin: 0 auto;                 /* 念のため中央配置 */
  line-height: 1;                 /* 垂直ズレ防止 */
}

/* 親がflexの場合のセンター寄せ */
.wpcf7 form .send {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ボタン側もセンターのままにする */
.wpcf7 form .send .wpcf7-submit {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center !important;
}


.contact_wrap input,
.contact_wrap select:not(.ui-datepicker-month):not(.ui-datepicker-year),
.contact_wrap textarea {
  border: 1px solid rgba(90, 93, 94, 0.5);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: inherit;
  max-width: 100%;
}

.contact_table table td dl dt p {
  margin-bottom: .5rem;
}

.contact_table table td dl dd p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.contact_table table td dl dd p br {
  display: none;
}

.contact_table table td dl dd p span[data-name="time-1"],
.contact_table table td dl dd p span[data-name="time-2"] {
  margin: 1rem;
}

.contact_table .send p {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}

.contact_table .send {
  margin-top: 5rem;
}

.contact_table .send p:after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(../img/icon_triangle_square.svg) no-repeat center/cover;
  position: absolute;
  right: 2rem;
  top: calc(50% - .6rem);
}

.contact_table .send .wpcf7-spinner {
  display: none;
}

.contact_table .wpcf7-form-control[type="submit"] {
  width: 30.4rem !important;
  height: 5.4rem !important;
  position: relative !important;
  border: 1px solid var(--color-main) !important;
  border-radius: 4rem !important;
  text-decoration: none !important;
  display: flex !important;
  text-align: center !important;
  font-family: var(--font-sub) !important;
  font-size: 1.4rem !important;
  transition: 0.3s !important;
  margin-right: auto !important;
  margin-left: auto !important;
  background: #fff;
  box-shadow: 0 2px 0 var(--color-main);
  color: var(--color-main);
}

.contact_table table input[type="text"],
.contact_table table input[type="tel"],
.contact_table table input[type="email"],
.contact_table table textarea {
  width: 100%;
}

.contact_table .pp p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact_table .pp input[type="checkbox"] {
  display: none;
}

.contact_table .pp .wpcf7-list-item {
  display: inline-block;
  margin-left: 0 !important;
}

.contact_table .pp .wpcf7-list-item-label {
  display: flex;
  justify-content: flex-end;
  background: url(../img/icon_check_01.svg) no-repeat center left;
  background-size: contain;
  position: relative;
  font-size: 0;
  width: 8rem;
  padding-left: 3rem;
  margin-right: 1rem;
}

.contact_table .pp input[type="checkbox"]:checked+.wpcf7-list-item-label {
  background-image: url(../img/icon_check_02.svg);
}

.contact_table .pptxt {
  font-size: 1.2rem;
}

.contact_table .pp p .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  white-space: nowrap;
}

.wpcf7-response-output {
  font-size: 1.4rem;
  padding: 1rem 2rem;
}

@media screen and (min-width: 820px) {
  .contact_table table td dl dd p {
    grid-template-columns: auto auto auto 1fr;
  }

  .contact_table table td dl dd p span[data-name="time-1"],
  .contact_table table td dl dd p span[data-name="time-2"] {
    margin: 0;
  }

  .contact_table table td dl dd p span[data-name="date-1"],
  .contact_table table td dl dd p span[data-name="date-2"] {
    margin-right: 2rem;
  }
}

#openPopupBtn {
  text-decoration: underline;
  cursor: pointer;
}

.overlay {
  display: none;
  /* 初期状態で非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明の黒背景 */
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* ポップアップウィンドウ */
.popup {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  max-width: 100rem;
  height: 80vh;
  overflow-y: scroll;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 819px) {
  .popup {
    width: 90%;
  }
}

.popup h2 {
  margin-bottom: 2rem;
  font-weight: bold;
  font-size: 2rem;
}

.popup h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: bold;
}

.popup p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  line-height: 1.6em;
}

/* 閉じるボタン */
.close-btn {
  display: block;
  margin: 0 auto;
  background-color: #f44336;
  color: white;
  border: none;
  padding: 1rem 4rem;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn:hover {
  background-color: #d32f2f;
}

/* 開くボタンのスタイル */
.open-btn {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.open-btn:hover {
  background-color: #45a049;
}

/* add 2025/10/09 (not scss) ----------------------- */
@media screen and (max-width: 819px) {
  .re_bg .footer_main {
    background: none;
  }

  .re_bg .footer_main::after {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100vh;
    background: url(../img/footer_bg_sp.webp) no-repeat center top / cover;
    z-index: -1;
    pointer-events: none;
  }

  main.re_bg>*:not(.header_pc, header, footer, aside),
  .re_bg .footer_link {
    background: var(--color-bg);
  }
}

/* add 2025/10/14 (not scss) 費用ページ ----------------------- */
#page_plan table {
  position: relative;
  max-width: 92rem;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}
#page_plan table th,
#page_plan table td {
  width: 50%;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 3.1rem 0;
  border-bottom: 0.3rem dotted #D4CCB8;
}
#page_plan table th span,
#page_plan table td span {
  color: #FF0000;
}
#page_plan .note {
  text-align: right;
  margin-top: 0.4rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 820px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 819px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 820px) {
  #page_plan table.price_table2 th,
  #page_plan table.price_table2 td {
    width: 14.6rem !important;
    max-width: 14.6rem !important;
  }
  #page_plan table.price_table2 tbody tr:last-of-type th,
  #page_plan table.price_table2 tbody tr:last-of-type td {
    border-bottom: none;
  }
  #page_plan table.price_table2 th:not(:first-of-type),
  #page_plan table.price_table2 td {
    text-align: center;
  }
  #page_plan table.price_table2 th:first-of-type {
    width: 6rem;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(3),
  #page_plan table.price_table2 tbody td:nth-last-of-type(3) {
    width: 16.2rem !important;
    min-width: 16.2rem !important;
    max-width: 16.2rem !important;
    padding-right: 2rem;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(4),
  #page_plan table.price_table2 tbody td:nth-last-of-type(4),
  #page_plan table.price_table2 thead th:nth-last-of-type(2),
  #page_plan table.price_table2 tbody td:nth-last-of-type(2) {
    width: 12.89rem !important;
    min-width: 12.89rem !important;
    max-width: 12.89rem !important;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(1),
  #page_plan table.price_table2 tbody td:nth-last-of-type(1) {
    width: 13rem !important;
    min-width: 13rem !important;
    max-width: 13rem !important;
    padding-left: 1rem;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(3)::before,
  #page_plan table.price_table2 thead th:nth-last-of-type(1)::before {
    position: absolute;
    top: 0;
    width: 15.2rem;
    height: 100%;
    content: "";
    border-radius: 1rem;
    z-index: -1;
    pointer-events: none;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(1)::before {
    background:  rgb(255 235 0 / 0.3);
    right: -0.7rem;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(3)::before {
    background:  rgb(93 186 105 / 0.3);
    right: 31rem;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(4)::after,
  #page_plan table.price_table2 thead th:nth-last-of-type(2)::after {
    position: absolute;
    top: 0;
    width: 28.8rem;
    height: 100%;
    content: "";
    border-radius: 1rem;
    z-index: -1;
    pointer-events: none;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(2)::after {
    right: -0.7rem;
    border: 1px solid #FFEB03;
  }
  #page_plan table.price_table2 thead th:nth-last-of-type(4)::after {
    border: 1px solid #5DBA69;
    right: 31rem;
  }
  #page_plan .supplement table.price_table2 tbody th:first-of-type {
    width: 24rem !important;
    max-width: 24rem !important;
  }
  .table_select {
    display: none;
  }
}
@media screen and (max-width: 819px) {
  #page_plan .price_data_ttl {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    font-family: var(--font-sub);
    margin-bottom: 0.3rem;
  }
  #page_plan table th,
  #page_plan table td {
    width: auto;
    font-size: 1.4rem;
    padding: 1.9rem 0.6rem;
  }
  #page_plan table tr:last-of-type th,
  #page_plan table tr:last-of-type td {
    border-bottom: none;
  }
  #page_plan table.price_table2 tr:nth-last-of-type(1) th,
  #page_plan table.price_table2 tr:nth-last-of-type(1) td,
  #page_plan table.price_table2 tr:nth-last-of-type(3) th,
  #page_plan table.price_table2 tr:nth-last-of-type(3) td {
    padding: 0.8rem 0.6rem;
  }
  #page_plan .hormone .contents_inner,
  #page_plan .supplement .contents_inner {
    padding: 0;
    background: none;
  }
  #page_plan .supplement .price_data + .price_data {
    margin-top: 2rem;
  }
  #page_plan .hormone .price_data,
  #page_plan .supplement .data_item {
    background-color: #fff;
    border-radius: 2.4rem;
    padding: 2.5rem 2rem 4rem;
  }
  #page_plan table.price_table2 tr:nth-last-of-type(3) th::before,
  #page_plan table.price_table2 tr:nth-last-of-type(1) th::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5.8rem;
    content: "";
    border-radius: 1rem;
    z-index: -1;
    pointer-events: none;
  }
  #page_plan table.price_table2 tr:nth-last-of-type(1) th::before {
    background:  rgb(255 235 0 / 0.3);
    bottom: 0.32rem;
  }
  #page_plan table.price_table2 tr:nth-last-of-type(3) th::before {
    background:  rgb(93 186 105 / 0.3);
    bottom: 12.9rem;
  }
  #page_plan table.price_table2 tr:nth-last-of-type(4) th::after,
  #page_plan table.price_table2 tr:nth-last-of-type(2) th::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 12.1rem;
    content: "";
    border-radius: 1rem;
    z-index: -1;
    pointer-events: none;
  }
  #page_plan table.price_table2 tr:nth-last-of-type(2) th::after {
    border: 1px solid #FFEB03;
    bottom: 0.32rem;
  }
  #page_plan table.price_table2 tr:nth-last-of-type(4) th::after {
    border: 1px solid #5DBA69;
    bottom: 12.9rem;
  }
  #page_plan .hormone .price_data .data_item:not(:first-of-type) {
    display: none;
  }
  #page_plan .note {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
  select.table_select {
    padding: 1.5rem 1.7rem;
    width: 100%;
    appearance: none;
    border: 1px solid #9F8955;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #fff url(../img/table_select_arrow.png) center right 1.5rem / 1.6rem auto no-repeat;
    margin-bottom: 1.9rem;
    color: #9F8955;
    outline: none !important;
  }
  select.table_select option {
    padding: 1.5rem 1.7rem;
    font-size: 1.6rem;
  }
}