@charset "UTF-8";
:root {
  --color-main: #d5b54b;
  --color-bg: #fff;
  --color-text: #000;
  --color-cream: #f5f4f0;
  --color-darkblue: #19212c;
  --color-yellow: #c6a122;
  --color-gray: #bfbfbf;
  --color-beige: #e1dfd3;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-outfit: "Outfit", sans-serif;
  --font-oswald: "Oswald", sans-serif;
  /*

  .noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  .montserrat-<uniquifier> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  // <weight>: Use a value from 100 to 900
  // <uniquifier>: Use a unique and descriptive class name

  .outfit-<uniquifier> {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

  // <weight>: Use a value from 200 to 700
  // <uniquifier>: Use a unique and descriptive class name

  .oswald-<uniquifier> {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }


  */
  --base: 375;
  --radius: 6px;
  --duration-transition: 800ms;
}
@media screen and (min-width: 768px) {
  :root {
    --base: 768;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --base: 1440;
  }
}

:where(:focus-visible, :target) {
  scroll-margin-block: 0;
}

html {
  scroll-behavior: smooth;
  font-feature-settings: "palt";
  scroll-padding-top: 62px;
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: min(105px, 105 / 1440 * 100vw);
  }
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-sans);
  font-weight: 400;
  transition: background-color var(--duration-transition);
}
body.menu-open {
  overflow: clip;
}
@media screen and (min-width: 1024px) {
  body.menu-open {
    overflow-x: visible;
  }
}

p {
  margin: 0 0 1em 0;
  font-size: min(14px, calc(14 / var(--base) * 100vw));
  line-height: 1.8;
  color: var(--color-text);
  text-align: justify;
}
p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  p {
    font-size: min(16px, 16 / 1040 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  p {
    font-size: 16px;
  }
}

figure {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.unit-deco-footprints {
  position: relative;
}
.unit-deco-footprints::after {
  display: block;
  content: "";
  width: 66px;
  height: 111px;
  background-size: cover;
  background-image: url(../images/common/part-footprints.svg);
  position: absolute;
  inset: 0 auto auto 0;
}
@media screen and (min-width: 768px) {
  .unit-deco-footprints::after {
    width: min(136px, 136 / 1440 * 100vw);
    height: min(230px, 230 / 1440 * 100vw);
  }
}

.header {
  position: fixed;
  width: 100%;
  inset: 0 0 auto 0;
  z-index: 10;
  height: 62px;
  background-color: var(--color-darkblue);
}
.header .content {
  z-index: 5;
  box-sizing: border-box;
}
.menu-open .header .content {
  pointer-events: all;
}
.header .logo {
  margin: 0 auto auto 4px;
  padding: 3px 0 0 0;
  width: 234px;
}
.header .menu {
  letter-spacing: 0.03em;
  font-weight: 400;
  overflow-y: auto;
  visibility: hidden;
  height: calc(100vh - 62px);
  position: fixed;
  inset: 62px 0 0 0;
  z-index: 10;
  background-color: var(--color-darkblue);
  opacity: 0;
  transition: opacity var(--duration-transition);
  overflow: auto;
}
.header .menu.open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  transition: opacity var(--duration-transition);
}
.header .list-menu {
  display: grid;
  margin: 20px 25px 0 25px;
  justify-content: center;
  align-items: start;
  gap: 10px 15px;
  grid-template-columns: repeat(2, 1fr);
}
.header .list-menu a {
  display: block;
  text-align: center;
  border: 1px solid #fff;
  padding: 5px 0 17px 0;
  text-decoration: none;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-size: inherit;
  font-weight: 400;
  color: #fff;
  background-color: transparent;
  transition: color var(--duration-transition);
  border-radius: var(--radius);
  cursor: pointer;
}
.header .list-menu a:hover {
  color: var(--color-main);
}
.header .list-menu .en {
  display: block;
  font-size: 34px;
  font-weight: 400;
}
.header .list-menu .ja {
  display: block;
  font-size: 14px;
}
.header .list-menu .timetable {
  padding: 10px 0 0 0;
  grid-column: 1/3;
}
.header .list-menu .timetable table {
  display: block table;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.header .list-menu .timetable thead th {
  padding: 0 7px 5px 7px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}
.header .list-menu .timetable thead td {
  padding: 0 7px 5px 7px;
  font-size: 14px;
}
.header .list-menu .timetable tbody th {
  border-top: 1px solid #fff;
  text-align: center;
  font-family: var(--font-en);
  font-size: 9px;
  text-align: center;
  width: 80px;
  font-weight: 400;
}
.header .list-menu .timetable tbody td {
  padding: 15px 7px;
  border-top: 1px solid #fff;
}
.header .list-menu .timetable tbody td img {
  width: 14px;
  height: 14px;
}
.header .list-menu .timetable .note {
  margin: 8px;
  font-size: 9px;
  color: #fff;
}
.header .list-menu .reservation {
  grid-column: 1/3;
}
.header .list-menu .reservation a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  gap: 8px;
  color: #000;
  background-color: var(--color-main);
  border-style: none;
  font-size: 25px;
  line-height: 25px;
}
.header .list-menu .reservation a::before {
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-color: #000;
  -webkit-mask-image: url(../images/common/icon-footprints.svg);
          mask-image: url(../images/common/icon-footprints.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
}
.header .list-menu .reservation a .petpass {
  font-size: 13px;
  line-height: 13px;
}
@media screen and (min-width: 768px) {
  .header .menu {
    padding: calc(24 / var(--base) * 100vw);
    font-size: calc(20 / var(--base) * 100vw);
  }
  .header .list-menu {
    margin: 0 auto;
    width: min(100%, 420px);
  }
  .header .list-menu .item:not(:last-of-type) {
    margin-bottom: calc(20 / var(--base) * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .header {
    margin: 0 auto;
    padding: 0;
    transition: background-color 300ms;
    inset: 0 0 auto 0;
    height: min(105px, 105 / 1440 * 100vw);
  }
  .header .content {
    display: flex;
    margin: 0 auto;
    padding: 0 0;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
    justify-content: space-between;
    align-items: center;
    position: static;
    transform: none;
    pointer-events: auto;
    background-color: transparent;
  }
  .header .logo {
    margin: 0 0 0 min(25px, 25 / 1440 * 100vw);
    width: min(406px, 406 / 1440 * 100vw);
  }
  .header .menu {
    display: block;
    padding: 0;
    overflow: visible;
    position: static;
    height: auto;
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .header .list-menu {
    display: flex;
    margin: 0;
    align-items: center;
    justify-content: flex-end;
    height: min(80px, 80 / 1440 * 100vw);
    width: auto;
    gap: min(32px, 32 / 1440 * 100vw);
    opacity: 1;
  }
  .header .list-menu li.reservation a {
    padding: min(18px, 18 / 1440 * 100vw) min(14px, 14 / 1440 * 100vw) min(18px, 18 / 1440 * 100vw) min(20px, 20 / 1440 * 100vw);
    gap: 0;
    font-size: min(26px, 26 / 1440 * 100vw);
    border-radius: var(--radius) 0 0 var(--radius);
  }
  .header .list-menu li.reservation a::before {
    margin-right: min(8px, 8 / 1440 * 100vw);
    width: min(24px, 24 / 1440 * 100vw);
    height: min(24px, 24 / 1440 * 100vw);
  }
  .header .list-menu li.reservation a .petpass {
    margin-right: min(2px, 2 / 1440 * 100vw);
    font-size: min(13px, 13 / 1440 * 100vw);
    line-height: 1;
  }
  .header .list-menu .en {
    margin-bottom: min(13px, 13 / 1440 * 100vw);
    font-size: min(27px, 27 / 1440 * 100vw);
  }
  .header .list-menu .ja {
    font-size: min(14px, 14 / 1440 * 100vw);
  }
  .header .list-menu a {
    margin: 0;
    padding: 0;
    line-height: 1;
    border-style: none;
  }
  .header .list-menu .timetable {
    display: none;
  }
}

.menu-sw {
  margin: 0;
  position: absolute;
  top: 17px;
  right: 17px;
  width: 25px;
  height: 25px;
  z-index: 10;
  overflow: hidden;
}
.menu-sw button {
  padding: 0;
  display: block;
  border-style: none;
  border-radius: 0;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--color-emerald);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: background-color 500ms;
  overflow: hidden;
  cursor: pointer;
}
.menu-sw span {
  position: absolute;
  width: 25px;
  height: 25px;
  inset: 0 0 0 0;
}
.menu-sw span::before, .menu-sw span::after,
.menu-sw span i {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: -1px 0 0 0;
  transition: background-color 500ms, transform 500ms;
}
.menu-sw span::before {
  transform: translate(0, -9px);
  transition: transform 500ms;
}
.menu-sw span::after {
  transform: translate(0, 9px);
  transition: transform 500ms;
}
.menu-sw.open span::before {
  transform: translate(0, 0) rotate(45deg);
}
.menu-sw.open span i {
  transform: rotate(-45deg);
}
.menu-sw.open span::after {
  transform: translate(0, 0) rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .menu-sw {
    display: none;
  }
}

.float-button {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: fixed;
  inset: auto 0 0 0;
  z-index: 5;
}
.float-button p {
  padding: 0;
  margin: 0;
  line-height: 1;
  height: 50px;
}
.float-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
}
.float-button img {
  width: 16px;
}
.float-button .tel a {
  background-color: var(--color-darkblue);
  font-family: var(--font-en);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.float-button .tel img {
  margin-right: 4px;
}
.float-button .reserve a {
  background-color: var(--color-main);
}
.float-button .reserve img {
  margin-right: 7px;
}
.float-button .reserve .text-petpass {
  margin-right: 7px;
  font-size: 8px;
}
.float-button .reserve .text-reserve {
  font-size: 17px;
}
@media screen and (min-width: 1024px) {
  .float-button {
    display: block;
    inset: 50% 0 auto auto;
    translate: 0 -50%;
  }
  .float-button .tel {
    display: none;
  }
  .float-button .reserve a {
    display: flex;
    padding: min(16px, 16 / 1440 * 100vw) min(31px, 31 / 1440 * 100vw) min(16px, 16 / 1440 * 100vw) min(53px, 53 / 1440 * 100vw);
    flex-direction: column;
    justify-content: center;
    gap: min(8px, 8 / 1440 * 100vw);
    width: min(198px, 198 / 1440 * 100vw);
    height: auto;
    border-radius: min(100px, 100 / 1440 * 100vw) 0 0 min(100px, 100 / 1440 * 100vw);
    overflow: hidden;
    box-sizing: border-box;
  }
  .float-button .reserve img {
    display: block;
    margin: 0 auto;
    width: min(32px, 32 / 1440 * 100vw);
  }
  .float-button .reserve .text-petpass {
    margin: 0 auto;
    font-size: min(17px, 17 / 1440 * 100vw);
  }
  .float-button .reserve .text-reserve {
    display: block;
    margin: 0 auto;
    font-size: min(29px, 29 / 1440 * 100vw);
    letter-spacing: 0;
    font-weight: 400;
  }
}

.main {
  overflow: hidden;
  padding-top: 62px;
}
@media screen and (min-width: 1024px) {
  .main {
    padding-top: min(105px, 105 / 1440 * 100vw);
  }
}

.footer {
  padding: 55px 30px 100px 30px;
  background-color: var(--color-darkblue);
}
.footer p {
  color: #fff;
}
.footer p.address {
  text-align: center;
  font-size: 15px;
}
.footer p.tel {
  margin-bottom: 30px;
  text-align: center;
}
.footer p .button-tel {
  padding-left: 28px;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 500;
  position: relative;
  color: #fff;
}
.footer p .button-tel::before {
  display: block;
  margin-right: 10px;
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../images/common/icon-phone.svg);
          mask-image: url(../images/common/icon-phone.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: currentColor;
  position: absolute;
  inset: 8px auto auto 0;
}
.footer .table-timetable table {
  width: 100%;
  border-collapse: collapse;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.footer .table-timetable thead th {
  padding: 0 7px 5px 7px;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
}
.footer .table-timetable thead td {
  padding: 0 7px 5px 7px;
  font-size: 14px;
}
.footer .table-timetable tbody th {
  border-top: 1px solid #fff;
  text-align: center;
  font-family: var(--font-en);
  font-size: 9px;
  text-align: center;
  width: 80px;
  font-weight: 400;
}
.footer .table-timetable tbody td {
  padding: 15px 7px;
  border-top: 1px solid #fff;
}
.footer .table-timetable tbody td img {
  width: 14px;
  height: 14px;
}
.footer .table-timetable .note {
  margin: 8px;
  font-size: 9px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer .content {
    margin: 0 auto;
    width: 420px;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: min(56px, 56 / 1440 * 100vw) 0;
  }
  .footer .content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 0 min(120px, 120 / 1440 * 100vw);
    width: min(1050px, 1050 / 1440 * 100vw);
  }
  .footer .logo {
    margin: 0 0 min(20px, 20 / 1440 * 100vw) 0;
    grid-column: 1;
  }
  .footer .address {
    margin: 0 0 min(28px, 28 / 1440 * 100vw) 0;
    grid-column: 1;
    grid-row: 2;
    font-size: min(23px, 23 / 1440 * 100vw);
  }
  .footer .tel {
    margin: 0;
    grid-column: 1;
    grid-row: 3;
    font-size: min(41px, 41 / 1440 * 100vw);
  }
  .footer .table-timetable {
    grid-column: 2;
    grid-row: 1/4;
  }
  .footer .table-timetable thead th {
    padding: 0 min(8px, 8 / 1440 * 100vw) min(8px, 8 / 1440 * 100vw) min(8px, 8 / 1440 * 100vw);
    font-size: min(21px, 21 / 1440 * 100vw);
    text-align: center;
  }
  .footer .table-timetable thead td {
    padding: 0 min(8px, 8 / 1440 * 100vw) min(8px, 8 / 1440 * 100vw) min(8px, 8 / 1440 * 100vw);
    font-size: min(21px, 21 / 1440 * 100vw);
  }
  .footer .table-timetable tbody th {
    font-size: min(14px, 14 / 1440 * 100vw);
    width: min(120px, 120 / 1440 * 100vw);
  }
  .footer .table-timetable tbody td {
    padding: min(20px, 20 / 1440 * 100vw) min(10px, 10 / 1440 * 100vw);
  }
  .footer .table-timetable tbody td img {
    width: min(20px, 20 / 1440 * 100vw);
    height: auto;
  }
  .footer .table-timetable .note {
    margin: min(16px, 16 / 1440 * 100vw) min(6px, 6 / 1440 * 100vw);
    font-size: min(14px, 14 / 1440 * 100vw);
  }
}

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

.sm_only {
  display: none;
}
@media screen and (min-width: 640px) {
  .sm_only {
    display: inline;
  }
}

.md_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .md_only {
    display: inline;
  }
}

.ts_only {
  display: block;
}
@media screen and (min-width: 1024px) {
  .ts_only {
    display: none;
  }
}

.lg_only {
  display: none;
}
@media screen and (min-width: 1024px) {
  .lg_only {
    display: inline;
  }
}

.b2t {
  transition: translate var(--duration-transition), opacity var(--duration-transition);
  translate: 0 20px;
  opacity: 0;
}
.b2t.open {
  translate: 0 0;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .b2t {
    translate: 0 40px;
  }
}

/* section */
.unit {
  padding: 56px 0;
}
@media screen and (min-width: 768px) {
  .unit {
    padding: min(60px, calc(60 / var(--base) * 100vw)) 0;
  }
}

.article-header {
  padding: 25px 15px 20px 15px;
  position: relative;
}
.article-header::after {
  display: block;
  content: "";
  width: 241px;
  height: 188px;
  background-color: var(--color-cream);
  position: absolute;
  inset: 0 0 auto auto;
  border-radius: var(--radius);
}
.article-header h1 {
  display: flex;
  align-items: baseline;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.article-header h1 .en {
  font-weight: 400;
  font-size: 31px;
}
.article-header h1 .ja {
  font-size: 15px;
}
.article-header .photo {
  margin-bottom: 7px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.article-header .photo img {
  display: block;
}
.article-header .list-nav-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 0;
}
.article-header .list-nav-menu li {
  text-align: center;
  border-left: 1px solid var(--color-text);
  font-size: calc(14 / var(--base) * 100vw);
}
.article-header .list-nav-menu li.small {
  font-size: calc(12.5 / var(--base) * 100vw);
}
.article-header .list-nav-menu li:nth-of-type(2n) {
  border-right: 1px solid var(--color-text);
}
.article-header .list-nav-menu a {
  display: block;
  padding: 12px 0;
  position: relative;
  text-decoration: none;
  font-weight: 700;
}
.article-header .list-nav-menu a::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M8%2016C12.4183%2016%2016%2012.4183%2016%208C16%203.58172%2012.4183%200%208%200C3.58172%200%200%203.58172%200%208C0%2012.4183%203.58172%2016%208%2016Z%22%20fill%3D%22%2319212C%22/%3E%3Cpath%20d%3D%22M4.49512%206.39062L7.9974%209.23418L11.5915%206.39062%22%20stroke%3D%22white%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  inset: 50% 10px auto auto;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .article-header {
    display: grid;
    grid-template-columns: 36% 1fr;
    align-items: center;
    padding: 30px 50px calc(60 / 1160 * 100vw) 50px;
  }
  .article-header::after {
    width: calc(215 / 1440 * 100vw);
    height: calc(205 / 1440 * 100vw);
    inset: calc(362 / 1440 * 100vw) auto auto calc(367 / 1440 * 100vw);
  }
  .article-header h1 {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .article-header h1 .en {
    font-weight: 400;
    font-size: min(62px, 62 / 1440 * 100vw);
  }
  .article-header h1 .ja {
    font-size: min(30px, 30 / 1440 * 100vw);
  }
  .article-header nav {
    grid-column: 1/3;
  }
  .article-header .list-nav-menu {
    display: flex;
    margin-top: min(101px, 101 / 1440 * 100vw);
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 0;
    justify-content: center;
  }
  .article-header .list-nav-menu li {
    text-align: center;
    border-left: 1px solid var(--color-text);
    width: min(208px, 208 / 1160 * 100vw);
    font-size: min(16px, 16 / 1160 * 100vw);
  }
  .article-header .list-nav-menu li:nth-of-type(2n) {
    border-right-style: none;
  }
  .article-header .list-nav-menu li:last-of-type {
    border-right: 1px solid var(--color-text);
  }
  .article-header .list-nav-menu li.small {
    font-size: min(15px, 15 / 1160 * 100vw);
  }
  .article-header .list-nav-menu li.small a {
    padding-right: min(16px, calc(16 / var(--base) * 100vw));
  }
  .article-header .list-nav-menu li.small a::after {
    right: min(8px, calc(8 / var(--base) * 100vw));
  }
  .article-header .list-nav-menu a::after {
    width: min(20px, 20 / 1160 * 100vw);
    height: min(20px, 20 / 1160 * 100vw);
    inset: 50% 12px auto auto;
  }
}
@media screen and (min-width: 1024px) {
  .article-header {
    margin: 0 auto;
    display: grid;
    grid-template-columns: min(370px, calc(370 / var(--base) * 100vw)) 1fr;
    gap: 0 min(47px, calc(47 / var(--base) * 100vw));
    padding: min(30px, calc(30 / var(--base) * 100vw)) 0 min(60px, calc(60 / var(--base) * 100vw)) 0;
    width: min(1160px, calc(1160 / var(--base) * 100vw));
  }
  .article-header::after {
    width: min(215px, calc(215 / var(--base) * 100vw));
    height: min(205px, calc(205 / var(--base) * 100vw));
    inset: min(322px, calc(322 / var(--base) * 100vw)) auto auto min(257px, calc(257 / var(--base) * 100vw));
  }
  .article-header nav {
    grid-column: 1/3;
  }
}

/* ----------------- 
titletitle
----------------- */
.title-mid {
  margin: 0 auto 26px auto;
  width: -moz-fit-content;
  width: fit-content;
}
.title-mid .en {
  display: block;
  margin-bottom: 1px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
}
.title-mid .ja {
  display: block;
  font-size: 30px;
  text-align: center;
  font-weight: 500;
}
.title-mid.color-white {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .title-mid {
    margin: 0 auto min(46px, 46 / 1160 * 100vw) auto;
  }
  .title-mid .en {
    margin-bottom: min(3px, 3 / 1160 * 100vw);
    font-size: min(14px, 14 / 1160 * 100vw);
  }
  .title-mid .ja {
    font-size: min(36px, 36 / 1160 * 100vw);
  }
}

/* ----------------- 
linklink
----------------- */
a {
  text-decoration: underline;
  color: var(--color-text);
}

button {
  cursor: pointer;
}

.button-arrow {
  display: block;
  margin: 0 17px;
  padding: 9px 0;
  border: 1px solid var(--color-text);
  border-radius: var(--radius);
  text-align: center;
  font-size: 17px;
  text-decoration: none;
  position: relative;
}
.button-arrow::after {
  content: "";
  width: 36px;
  height: 11px;
  -webkit-mask-image: url(../images/common/arrow-button.svg);
          mask-image: url(../images/common/arrow-button.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: var(--color-text);
  position: absolute;
  inset: 50% 20px auto auto;
  translate: 0 -50%;
  z-index: 2;
}
.button-arrow.color-white {
  border-color: #fff;
  color: #fff;
}
.button-arrow.color-white::after {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .button-arrow {
    margin: 0 auto;
    font-size: min(21px, 21 / 1440 * 100vw);
    width: min(328px, 328 / 1440 * 100vw);
  }
  .button-arrow::after {
    content: "";
    width: min(43px, 43 / 1440 * 100vw);
    height: min(13px, 13 / 1440 * 100vw);
    inset: 50% min(24px, 24 / 1440 * 100vw) auto auto;
    -webkit-mask-size: cover;
            mask-size: cover;
    transition-delay: 0ms;
  }
  .button-arrow::before {
    content: "";
    position: absolute;
    inset: 0 100% 0 0;
    background-color: var(--color-text);
    transition: right var(--duration-transition);
  }
  .button-arrow .text {
    position: relative;
    z-index: 2;
    transition: color var(--duration-transition);
  }
  .button-arrow:hover::after {
    background-color: #fff;
    transition-delay: 500ms;
  }
  .button-arrow:hover::before {
    right: 0;
  }
  .button-arrow:hover .text {
    color: #fff;
  }
  .button-arrow.color-white::before {
    background-color: #fff;
  }
  .button-arrow.color-white:hover::after {
    background-color: var(--color-text);
  }
  .button-arrow.color-white:hover::before {
    right: 0;
  }
  .button-arrow.color-white:hover .text {
    color: var(--color-text);
  }
}

dl,
dt,
dd,
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-strength {
  margin-bottom: 30px;
  counter-reset: count-list;
}
.list-strength li {
  display: grid;
  padding: 6px 5px;
  grid-template-columns: 33px 1fr;
  align-items: center;
  gap: 11px;
  counter-increment: count-list;
  border-bottom: 1px solid var(--color-gray);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--duration-transition), border-color var(--duration-transition);
}
.list-strength li::before {
  content: counter(count-list, decimal-leading-zero);
  font-size: 24px;
  font-weight: 700;
  transition: color var(--duration-transition);
}
.list-strength li:hover {
  color: var(--color-yellow);
  border-bottom-color: var(--color-main);
}
.list-strength li:hover::before {
  color: var(--color-yellow);
}
.list-strength li a {
  text-decoration: none;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .list-strength li {
    padding: min(15px, 15 / 1440 * 100vw) min(8px, 8 / 1440 * 100vw);
    grid-template-columns: min(66px, 66 / 1440 * 100vw) 1fr;
    gap: 11px;
    font-size: min(23px, 23 / 1440 * 100vw);
  }
  .list-strength li::before {
    font-size: min(36px, 36 / 1440 * 100vw);
  }
}

/* for inline */
.fx-opacity {
  opacity: 0;
  transition: opacity calc(var(--duration-transition) / 2);
}
.fx-opacity.on {
  opacity: 1;
}

.fx-b2t {
  opacity: 0;
  translate: 0 2em;
  transition: opacity var(--duration-transition), translate var(--duration-transition);
}
.fx-b2t.on {
  opacity: 1;
  translate: none;
}

.page-home .unit-top {
  position: relative;
}
.page-home .unit-top .slider .pagination {
  display: flex;
  margin: 13px 0;
  width: 100%;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.page-home .unit-top .slider .dot {
  display: block;
  padding: 0;
  width: 6px;
  height: 6px;
  border-radius: 12px;
  background-color: var(--color-text);
  border: none;
  cursor: pointer;
  transition: background-color var(--duration-transition);
  overflow: hidden;
}
.page-home .unit-top .slider .dot.active {
  background: var(--color-main);
}
.page-home .unit-top .copy {
  position: absolute;
  inset: 72px auto auto 36px;
  z-index: 2;
}
.page-home .unit-top .copy .message {
  margin: 0 0 18px 0;
  padding: 0;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
}
.page-home .unit-top .copy .title {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 15px;
  font-family: var(--font-en);
  font-size: 12px;
  color: #fff;
}
.page-home .unit-top .copy .title::before {
  content: "";
  width: 68px;
  height: 1px;
  background-color: #fff;
}
.page-home .unit-intro {
  padding: 30px 0 60px 0;
  position: relative;
}
.page-home .unit-intro .content {
  margin: 0 20px;
}
.page-home .unit-intro .photo {
  margin: 0 0 27px auto;
  width: calc(277 / var(--base) * 100vw);
  overflow: hidden;
}
.page-home .unit-intro .photo img {
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .unit-intro .lead {
  margin-bottom: 32px;
  font-size: 30px;
  font-weight: 500;
}
.page-home .unit-strength {
  padding: 60px 0;
  background-color: var(--color-cream);
}
.page-home .unit-strength::after {
  inset: -50px 0 auto auto;
  scale: -1 1;
}
.page-home .unit-strength .photo {
  margin-bottom: 24px;
}
.page-home .unit-strength .content {
  margin: 0 23px;
}
.page-home .unit-marquee {
  padding: 30px 0;
  overflow: hidden;
  width: 100%;
}
.page-home .unit-marquee .list {
  display: flex;
  align-items: start;
  gap: 9px;
  width: -moz-max-content;
  width: max-content;
  animation: scroll-marquee linear infinite;
  animation-duration: var(--scroll-duration, 20s);
}
.page-home .unit-marquee li {
  width: 195px;
}
.page-home .unit-marquee li:nth-of-type(2n) {
  padding-top: 30px;
}
@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--scroll-width, 1000px)));
  }
}
.page-home .unit-menu {
  padding: 60px 0;
  position: relative;
  background-color: var(--color-darkblue);
}
.page-home .unit-menu::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  z-index: 1;
  background-image: url(../images/home/menu-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
.page-home .unit-menu::after {
  inset: -15px auto auto 12px;
}
.page-home .unit-menu .content {
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.page-home .unit-menu .list {
  display: grid;
  justify-content: center;
  margin: 35px auto 30px auto;
  grid-template-columns: repeat(2, 152px);
  gap: 15px;
}
.page-home .unit-menu li {
  color: #fff;
  text-align: center;
  box-sizing: border-box;
}
.page-home .unit-menu li a {
  display: block;
  padding-top: 105px;
  height: 152px;
  box-sizing: border-box;
  border-radius: 78px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  position: relative;
  inset: 0 0 0 0;
}
.page-home .unit-menu li img {
  width: 90px;
  height: 65px;
  position: absolute;
  inset: 28px auto auto 31px;
}
.page-home .unit-instagram {
  padding: 60px 0;
}
.page-home .unit-instagram::after {
  inset: -52px 6px auto auto;
}
.page-home .unit-instagram p {
  margin-bottom: 27px;
  text-align: center;
}
.page-home .unit-instagram .list-wrapper {
  padding: 0 0 0 20px;
  overflow: hidden;
  overflow-x: scroll;
  height: 130px;
}
.page-home .unit-instagram .list {
  display: flex;
  margin: 0 auto;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  padding-right: 20px;
  justify-content: center;
}
.page-home .unit-instagram .list li {
  width: 130px;
  opacity: 0;
  animation: insta-anime var(--duration-transition) linear 0ms 1 forwards;
}
.page-home .unit-instagram .list li:nth-of-type(1) {
  animation-delay: 0ms;
}
.page-home .unit-instagram .list li:nth-of-type(2) {
  animation-delay: 500ms;
}
.page-home .unit-instagram .list li:nth-of-type(3) {
  animation-delay: 1000ms;
}
.page-home .unit-instagram .list li:nth-of-type(4) {
  animation-delay: 1500ms;
}
.page-home .unit-instagram .list img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@keyframes insta-anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-home .unit-reservation {
  padding: 60px 0 0 0;
  background-color: var(--color-cream);
}
.page-home .unit-reservation::after {
  inset: -45px auto auto 12px;
  scale: -1 1;
}
.page-home .unit-reservation .content {
  margin: 0 30px;
}
.page-home .unit-reservation .list-reservation {
  padding-bottom: 37px;
}
.page-home .unit-reservation .list-reservation dt {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}
.page-home .unit-reservation .list-reservation dt::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-color: currentColor;
  position: absolute;
  inset: 4px auto auto 0;
  -webkit-mask-image: url(../images/common/icon-footprints.svg);
          mask-image: url(../images/common/icon-footprints.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
}
.page-home .unit-reservation .list-reservation dd {
  padding-left: 30px;
  font-size: 14px;
  letter-spacing: 0;
}
.page-home .unit-reservation .list-reservation p {
  margin-top: 0;
}
.page-home .unit-reservation .list-reservation .para-button {
  padding-right: 27px;
}
.page-home .unit-reservation .list-reservation:not(:last-of-type) {
  margin-bottom: 33px;
  border-bottom: 1px solid var(--color-gray);
}
.page-home .unit-reservation .button-petpass {
  display: flex;
  padding: 9px 0;
  align-items: center;
  justify-content: center;
  color: var(--color-darkblue);
  background-color: var(--color-main);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 17px;
}
.page-home .unit-reservation .button-petpass .text-petpass {
  margin-right: 6px;
  font-size: 8px;
}
.page-home .unit-reservation .button-petpass::before {
  display: block;
  margin-right: 10px;
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../images/common/icon-footprints.svg);
          mask-image: url(../images/common/icon-footprints.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: currentColor;
}
.page-home .unit-reservation .button-tel {
  padding-left: 28px;
  text-decoration: none;
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 500;
  position: relative;
}
.page-home .unit-reservation .button-tel::before {
  display: block;
  margin-right: 10px;
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../images/common/icon-phone.svg);
          mask-image: url(../images/common/icon-phone.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: currentColor;
  position: absolute;
  inset: 8px auto auto 0;
}
.page-home .unit-reservation .map-area {
  overflow: hidden;
}
.page-home .unit-reservation .map-area .map {
  height: 242px;
  overflow: hidden;
}
.page-home .unit-reservation .map-area iframe {
  width: 100%;
  height: 100%;
}
.page-home .unit-reservation .map-area .access-information {
  padding: 40px 20px;
  background-color: #fff;
}
.page-home .unit-reservation .map-area .access-information dl {
  margin: 0 20px 40px 20px;
}
.page-home .unit-reservation .map-area .access-information dt {
  padding-left: 42px;
  font-size: 17px;
  font-weight: 700;
  position: relative;
}
.page-home .unit-reservation .map-area .access-information dt::before {
  display: block;
  content: "";
  position: absolute;
  inset: 4px auto auto 0;
  background-color: var(--color-text);
  -webkit-mask-size: cover;
          mask-size: cover;
  width: 23px;
  height: 18px;
}
.page-home .unit-reservation .map-area .access-information dt.car::before {
  -webkit-mask-image: url(../images/common/icon-car.svg);
          mask-image: url(../images/common/icon-car.svg);
}
.page-home .unit-reservation .map-area .access-information dt.bus::before {
  -webkit-mask-image: url(../images/common/icon-bus.svg);
          mask-image: url(../images/common/icon-bus.svg);
}
.page-home .unit-reservation .map-area .access-information dt.bicycle::before {
  -webkit-mask-image: url(../images/common/icon-bicycle.svg);
          mask-image: url(../images/common/icon-bicycle.svg);
}
.page-home .unit-reservation .map-area .access-information dd {
  margin-left: 42px;
}
.page-home .unit-reservation .map-area .access-information dd:not(:last-of-type) {
  margin-bottom: 26px;
}
@media screen and (min-width: 768px) {
  .page-home .unit-top {
    --base: 1440;
    position: relative;
    height: calc(816 / var(--base) * 100vw);
  }
  .page-home .unit-top .slider .pagination {
    margin: 0;
    gap: 20px;
    position: relative;
    inset: min(-40px, calc(-40 / var(--base) * 100vw)) auto auto 0;
  }
  .page-home .unit-top .slider .dot {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background-color: #fff;
  }
  .page-home .unit-top .copy {
    inset: calc(268 / var(--base) * 100vw) auto auto calc(80 / var(--base) * 100vw);
  }
  .page-home .unit-top .copy .message {
    margin: 0 0 min(27px, calc(27 / var(--base) * 100vw)) 0;
    font-size: min(48px, calc(48 / var(--base) * 100vw));
    font-weight: 600;
  }
  .page-home .unit-top .copy .title {
    font-size: min(18px, calc(18 / var(--base) * 100vw));
  }
  .page-home .unit-intro {
    padding: min(90px, 90 / 1440 * 100vw) 0 min(120px, 120 / 1440 * 100vw) 0;
  }
  .page-home .unit-intro::after {
    inset: min(30px, 30 / 1440 * 100vw) auto auto 0;
  }
  .page-home .unit-intro .content {
    display: grid;
    margin: 0 auto;
    grid-template-columns: min(525px, 525 / 1440 * 100vw) 1fr;
    gap: min(105px, 105 / 1440 * 100vw);
    width: min(1160px, 1160 / 1440 * 100vw);
  }
  .page-home .unit-intro .photo {
    grid-column: 2;
    margin: 0 0 0 auto;
    width: auto;
    position: relative;
    overflow: visible;
  }
  .page-home .unit-intro .photo::after {
    display: block;
    content: "";
    width: min(360px, 360 / 1440 * 100vw);
    height: min(344px, 344 / 1440 * 100vw);
    background-color: var(--color-cream);
    position: absolute;
    inset: min(249px, 249 / 1440 * 100vw) auto auto max(-156px, -156 / 1440 * 100vw);
    z-index: 0;
  }
  .page-home .unit-intro .photo img {
    position: relative;
    z-index: 1;
  }
  .page-home .unit-intro .space-text {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
  }
  .page-home .unit-intro .lead {
    margin-top: min(40px, calc(40 / var(--base) * 100vw));
    margin-bottom: min(40px, calc(40 / var(--base) * 100vw));
    font-size: min(45px, 45 / 1440 * 100vw);
  }
  .page-home .unit-strength {
    padding: calc(88 / 1440 * 100vw) 0;
  }
  .page-home .unit-strength::after {
    inset: max(-70px, -70 / 1440 * 100vw) min(101px, 101 / 1440 * 100vw) auto auto;
  }
  .page-home .unit-strength::after {
    inset: -50px 0 auto auto;
    scale: -1 1;
  }
  .page-home .unit-strength .photo {
    margin-bottom: 24px;
  }
  .page-home .unit-strength .photo img {
    border-radius: var(--radius);
  }
  .page-home .unit-strength .row {
    display: grid;
    margin: 0 auto;
    grid-template-columns: min(528px, 528 / 1440 * 100vw) 1fr;
    gap: min(47px, 47 / 1440 * 100vw);
    width: min(1160px, 1160 / 1440 * 100vw);
  }
  .page-home .unit-strength .content {
    margin: 0;
  }
  .page-home .unit-marquee {
    padding: min(45px, calc(45 / var(--base) * 100vw)) 0;
  }
  .page-home .unit-marquee .list {
    gap: min(18px, calc(18 / var(--base) * 100vw));
  }
  .page-home .unit-marquee li {
    width: min(400px, 400 / 1440 * 100vw);
  }
  .page-home .unit-marquee li:nth-of-type(2n) {
    padding-top: min(64px, 64 / 1440 * 100vw);
  }
  .page-home .unit-menu {
    padding: min(88px, 88 / 1440 * 100vw) 0;
  }
  .page-home .unit-menu::before {
    background-image: url(../images/home/menu-bg-md.webp);
  }
  .page-home .unit-menu::after {
    inset: max(-53px, -53 / 1440 * 100vw) auto auto min(22px, 22 / 1440 * 100vw);
  }
  .page-home .unit-menu .content {
    padding: 0 0;
    position: relative;
    z-index: 2;
  }
  .page-home .unit-menu .list {
    margin: min(58px, 58 / 1440 * 100vw) auto min(72px, 72 / 1440 * 100vw) auto;
    grid-template-columns: repeat(3, 1fr);
    gap: min(45px, 45 / 1440 * 100vw);
    width: min(912px, 912 / 1440 * 100vw);
  }
  .page-home .unit-menu li {
    font-size: min(24px, 24 / 1440 * 100vw);
  }
  .page-home .unit-menu li a {
    padding-top: min(190px, 190 / 1440 * 100vw);
    height: min(273px, 273 / 1440 * 100vw);
    border-radius: min(273px, 273 / 1440 * 100vw);
  }
  .page-home .unit-menu li img {
    width: min(180px, 180 / 1440 * 100vw);
    height: min(130px, 130 / 1440 * 100vw);
    inset: min(45px, 45 / 1440 * 100vw) auto auto min(46px, 46 / 1440 * 100vw);
  }
  .page-home .unit-instagram {
    padding: min(88px, 88 / 1440 * 100vw) 0;
  }
  .page-home .unit-instagram::after {
    inset: max(-109px, -109 / 1440 * 100vw) min(46px, 46 / 1440 * 100vw) auto auto;
  }
  .page-home .unit-instagram p {
    margin-bottom: min(37px, calc(37 / var(--base) * 100vw));
  }
  .page-home .unit-instagram .list-wrapper {
    padding: 0;
    height: min(270px, 270 / 1440 * 100vw);
  }
  .page-home .unit-instagram .list {
    margin: 0 auto;
    padding: 0;
    width: min(1160px, 1160 / 1440 * 100vw);
    gap: min(26px, 26 / 1440 * 100vw);
  }
  .page-home .unit-instagram .list li {
    width: min(270px, 270 / 1440 * 100vw);
  }
  .page-home .unit-reservation {
    padding: min(88px, calc(88 / var(--base) * 100vw)) 0 0 0;
  }
  .page-home .unit-reservation::after {
    inset: max(-54px, -54 / 1440 * 100vw) auto auto min(46px, 46 / 1440 * 100vw);
  }
  .page-home .unit-reservation .content {
    display: grid;
    margin: 0 auto;
    padding-bottom: min(60px, 60 / 1440 * 100vw);
    grid-template-columns: repeat(2, 1fr);
    gap: min(108px, 108 / 1440 * 100vw);
    width: min(1230px, 1230 / 1440 * 100vw);
  }
  .page-home .unit-reservation .list-reservation {
    padding-bottom: min(24px, 24 / 1440 * 100vw);
  }
  .page-home .unit-reservation .list-reservation dt {
    margin-bottom: min(12px, 12 / 1440 * 100vw);
    font-size: min(24px, 24 / 1440 * 100vw);
    padding-left: min(50px, 50 / 1440 * 100vw);
  }
  .page-home .unit-reservation .list-reservation dt::before {
    width: min(30px, 30 / 1440 * 100vw);
    height: min(30px, 30 / 1440 * 100vw);
    inset: min(4px, 4 / 1440 * 100vw) auto auto 0;
  }
  .page-home .unit-reservation .list-reservation dd {
    padding-left: 30px;
    font-size: min(21px, calc(21 / var(--base) * 100vw));
  }
  .page-home .unit-reservation .list-reservation .para-button {
    padding-right: 0;
  }
  .page-home .unit-reservation .list-reservation:not(:last-of-type) {
    margin-bottom: 0;
    border-bottom-style: none;
  }
  .page-home .unit-reservation .button-petpass {
    padding: min(18px, 18 / 1440 * 100vw) 0;
    font-size: min(26px, 26 / 1440 * 100vw);
    width: min(388px, 388 / 1440 * 100vw);
  }
  .page-home .unit-reservation .button-petpass .text-petpass {
    margin-right: 6px;
    font-size: min(13px, 13 / 1440 * 100vw);
  }
  .page-home .unit-reservation .button-petpass::before {
    margin-right: min(13px, 13 / 1440 * 100vw);
    width: min(24px, 24 / 1440 * 100vw);
    height: min(24px, 24 / 1440 * 100vw);
  }
  .page-home .unit-reservation .button-tel {
    padding-left: min(45px, 45 / 1440 * 100vw);
    font-size: min(41px, 41 / 1440 * 100vw);
  }
  .page-home .unit-reservation .button-tel::before {
    margin-right: min(8px, 8 / 1440 * 100vw);
    width: min(36px, 36 / 1440 * 100vw);
    height: min(36px, 36 / 1440 * 100vw);
    inset: min(6px, 6 / 1440 * 100vw) auto auto 0;
  }
  .page-home .unit-reservation .map-area {
    overflow: hidden;
    position: relative;
  }
  .page-home .unit-reservation .map-area .map {
    height: min(515px, 515 / 1440 * 100vw);
  }
  .page-home .unit-reservation .map-area .access-information {
    padding: min(50px, 50 / 1440 * 100vw) min(45px, 45 / 1440 * 100vw);
    position: absolute;
    inset: min(34px, 34 / 1440 * 100vw) min(140px, 140 / 1440 * 100vw) auto auto;
  }
  .page-home .unit-reservation .map-area .access-information dl {
    margin: 0 0 min(30px, 30 / 1440 * 100vw) 0;
  }
  .page-home .unit-reservation .map-area .access-information dt {
    padding-left: min(38px, 38 / 1440 * 100vw);
    font-size: min(21px, 21 / 1440 * 100vw);
  }
  .page-home .unit-reservation .map-area .access-information dt::before {
    inset: 4px auto auto 0;
    width: min(28px, 28 / 1440 * 100vw);
    height: min(21px, 21 / 1440 * 100vw);
  }
  .page-home .unit-reservation .map-area .access-information dd {
    margin-left: 0;
    padding-left: min(38px, 38 / 1440 * 100vw);
    font-size: min(17px, 17 / 1440 * 100vw);
  }
  .page-home .unit-reservation .map-area .access-information dd:not(:last-of-type) {
    margin-bottom: min(26px, 26 / 1440 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .page-home .unit-intro::after {
    inset: 31px auto auto calc(50% - 720px);
  }
  .page-home .unit-strength::after {
    inset: -50px calc(50% - 620px) auto auto;
  }
  .page-home .unit-menu::after {
    inset: -53px auto auto calc(50% - 700px);
  }
  .page-home .unit-instagram {
    padding: 60px 0;
  }
  .page-home .unit-instagram::after {
    inset: -104px calc(50% - 680px) auto auto;
  }
  .page-home .unit-reservation::after {
    inset: -57px auto auto calc(50% - 708px);
  }
}
@media screen and (min-width: 1440px) {
  .page-home .unit-reservation .map-area .access-information {
    inset: 34px calc(50% - 568px) auto auto;
  }
}

.page-about .unit-intro {
  padding: 55px 0;
  background-color: var(--color-cream);
}
.page-about .unit-intro .title {
  margin: 0 0 20px 0;
  text-align: center;
  font-weight: normal;
  font-size: 24px;
  font-weight: 500;
}
.page-about .unit-intro .content {
  margin: 0 30px;
}
.page-about .unit-strength::after {
  scale: -1 1;
  inset: -25px 12px auto auto;
}
.page-about .unit-strength .list {
  margin-top: 48px;
}
.page-about .unit-strength .list li:not(:last-of-type) {
  padding-bottom: 64px;
}
.page-about .unit-strength .list .title {
  margin: 0 0 15px 0;
  padding: 16px 0;
  background-color: var(--color-cream);
  position: relative;
  font-size: 16px;
  text-align: center;
}
.page-about .unit-strength .list .title .sub {
  position: absolute;
  inset: -34px auto auto 20px;
  font-size: 10px;
}
.page-about .unit-strength .list .title .sub .num {
  margin-left: 4px;
  font-size: 29px;
  font-family: var(--font-en);
  font-weight: 400;
}
.page-about .unit-strength .list .photo {
  margin: 0 20px 14px 20px;
  border-radius: 6px;
  overflow: hidden;
}
.page-about .unit-strength .list .comment {
  margin: 0 20px;
}
.page-about .name {
  display: flex;
  height: auto;
  margin: 0 0 15px 0;
  padding: 16px 0;
  font-size: 20px;
  font-weight: 500;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
.page-about .name .sub {
  font-size: 15px;
}
.page-about .unit-director {
  background-color: var(--color-cream);
}
.page-about .unit-director::after {
  top: -24px;
}
.page-about .unit-director .content {
  margin: 0 20px;
}
.page-about .unit-director .photo {
  margin-bottom: 36px;
  border-radius: var(--radius);
  overflow: hidden;
}
.page-about .unit-director .lead {
  margin-bottom: 28px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
}
.page-about .unit-director .history {
  margin: 25px 0 30px 0;
  padding: 5px 24px 15px 24px;
  background-color: #fff;
  border-radius: var(--radius);
}
.page-about .unit-director .history .title {
  padding: 10px 0;
  margin: 0 0 15px 0;
  text-align: center;
  font-size: 17px;
  border-bottom: 1px solid var(--color-text);
}
.page-about .unit-director .history li {
  padding-left: 1em;
  font-size: 13px;
  letter-spacing: -0.02em;
  position: relative;
}
.page-about .unit-director .history li::before {
  display: block;
  content: "・";
  position: absolute;
  inset: 50% auto auto 0;
  translate: 0 -50%;
}
.page-about .unit-director .list-information div + div {
  margin-top: 40px;
}
.page-about .unit-director .list-information dt {
  margin-bottom: 18px;
  padding: 13px 0;
  text-align: center;
  background-color: #e1dfd3;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
}
.page-about .unit-director .list-information dd {
  text-align: center;
}
.page-about .unit-staff::after {
  scale: 1 -1;
  inset: -31px 20px auto auto;
}
.page-about .unit-staff .content {
  margin: 0 20px;
}
.page-about .unit-staff .photo {
  margin-bottom: 11px;
  border-radius: var(--radius);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-about .unit-intro {
    padding: min(104px, 104 / 1160 * 100vw) 0;
    background-color: var(--color-cream);
  }
  .page-about .unit-intro .title {
    margin: 0 0 min(36px, 36 / 1160 * 100vw) 0;
    font-size: min(36px, 36 / 1160 * 100vw);
  }
  .page-about .unit-intro .content {
    margin: 0 min(70px, 70 / 1160 * 100vw);
  }
  .page-about .unit-intro p {
    text-align: center;
  }
  .page-about .unit-strength::after {
    scale: -1 1;
    inset: -25px 12px auto auto;
  }
  .page-about .unit-strength .list {
    margin: min(46px, 46 / 1160 * 100vw) auto 0 auto;
    width: min(954px, 954 / 1160 * 100vw);
  }
  .page-about .unit-strength .list li {
    display: grid;
    grid-template-columns: min(437px, 437 / 1160 * 100vw) 1fr;
    grid-template-rows: auto 1fr;
  }
  .page-about .unit-strength .list li:nth-of-type(2n) {
    grid-template-columns: 1fr min(437px, 437 / 1160 * 100vw);
  }
  .page-about .unit-strength .list li:nth-of-type(2n) .title {
    grid-column: 1;
  }
  .page-about .unit-strength .list li:nth-of-type(2n) .photo {
    grid-column: 2;
  }
  .page-about .unit-strength .list li:not(:last-of-type) {
    padding-bottom: min(80px, 80 / 1160 * 100vw);
  }
  .page-about .unit-strength .list .title {
    grid-column: 2;
    margin: min(40px, 40 / 1160 * 100vw) 0 min(29px, 29 / 1160 * 100vw) 0;
    padding: min(22px, 22 / 1160 * 100vw) min(30px, 30 / 1160 * 100vw);
    font-size: min(24px, 24 / 1160 * 100vw);
    text-align: left;
  }
  .page-about .unit-strength .list .title .sub {
    position: absolute;
    inset: max(-46px, -3.9655172414vw) auto auto min(20px, 20 / 1160 * 100vw);
    font-size: min(14px, 14 / 1160 * 100vw);
  }
  .page-about .unit-strength .list .title .sub .num {
    margin-left: min(4px, 4 / 1160 * 100vw);
    font-size: min(41px, 41 / 1160 * 100vw);
  }
  .page-about .unit-strength .list .photo {
    grid-column: 1;
    grid-row: 1/3;
    margin: 0;
  }
  .page-about .unit-strength .list .comment {
    margin: 0 min(30px, 30 / 1160 * 100vw);
  }
  .page-about .unit-strength .list .comment p {
    font-size: min(16px, 16 / 1160 * 100vw);
  }
  .page-about .name {
    margin: 0 0 min(40px, 40 / 1160 * 100vw) 0;
    padding: min(16px, 16 / 1160 * 100vw) 0;
    font-size: min(24px, 24 / 1160 * 100vw);
    gap: min(16px, 16 / 1160 * 100vw);
  }
  .page-about .name .sub {
    font-size: min(18px, 18 / 1160 * 100vw);
  }
  .page-about .unit-director .content {
    margin: 0 auto;
    width: min(954px, 954 / 1160 * 100vw);
  }
  .page-about .unit-director .row {
    display: grid;
    grid-template-columns: min(416px, 416 / 1160 * 100vw) 1fr;
    gap: 0 min(30px, 30 / 1160 * 100vw);
  }
  .page-about .unit-director .photo {
    margin-bottom: 0;
  }
  .page-about .unit-director .lead {
    margin-bottom: min(31px, 31 / 1160 * 100vw);
    text-align: left;
    font-size: min(24px, 24 / 1160 * 100vw);
  }
  .page-about .unit-director .history {
    display: grid;
    grid-template-columns: min(182px, 182 / 1160 * 100vw) 1fr;
    gap: 0 min(46px, 46 / 1160 * 100vw);
    align-items: center;
    margin: min(72px, 72 / 1160 * 100vw) 0 min(30px, 30 / 116 * 100vw) 0;
    padding: min(22px, 22 / 116 * 100vw) min(24px, 24 / 116 * 100vw);
  }
  .page-about .unit-director .history .title {
    padding: 10px 0;
    margin-bottom: 0;
    text-align: center;
    font-size: min(20px, 20 / 1160 * 100vw);
    border-bottom-style: none;
    border-right: 1px solid var(--color-text);
  }
  .page-about .unit-director .history li {
    font-size: min(16px, 16 / 1160 * 100vw);
    letter-spacing: 0;
    line-height: 1.8;
  }
  .page-about .unit-director .list-information {
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
    gap: min(24px, 24 / 1160 * 100vw);
    width: min(589px, 589 / 1160 * 100vw);
  }
  .page-about .unit-director .list-information div + div {
    margin-top: 0;
  }
  .page-about .unit-director .list-information dt {
    margin-bottom: min(18px, 18 / 1160 * 100vw);
    padding: min(12px, 12 / 1160 * 100vw) 0;
    font-size: min(20px, 20 / 1160 * 100vw);
  }
  .page-about .unit-director .list-information dd {
    font-size: min(16px, 16 / 1160 * 100vw);
  }
  .page-about .unit-staff::after {
    scale: 1 -1;
    inset: -31px 20px auto auto;
  }
  .page-about .unit-staff .content {
    display: grid;
    grid-template-columns: min(428px, 428 / 1160 * 100vw) 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 min(30px, 30 / 1160 * 100vw);
    margin: 0 auto;
    width: min(954px, 954 / 1160 * 100vw);
  }
  .page-about .unit-staff .name {
    margin: 0 0 min(28px, 28 / 1160 * 100vw) 0;
  }
  .page-about .unit-staff .photo {
    grid-column: 1;
    grid-row: 1/3;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .page-about .unit-strength::after {
    scale: -1 1;
    inset: max(-52px, -52 / var(--base) * 100vw) min(100px, calc(100 / var(--base) * 100vw)) auto auto;
  }
  .page-about .unit-director::after {
    inset: max(-52px, -52 / var(--base) * 100vw) auto auto min(40px, calc(40 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1440px) {
  .page-about .unit-strength::after {
    right: calc(50% - 720px);
  }
  .page-about .unit-director::after {
    left: calc(50% - 720px);
  }
  .page-about .unit-staff::after {
    right: calc(50% - 720px);
  }
}

.page-clinic .clinic-item {
  margin: 0 calc(20 / var(--base) * 100vw);
  padding-bottom: calc(27 / var(--base) * 100vw);
}
.page-clinic .clinic-item:not(:last-of-type) {
  margin-bottom: calc(27 / var(--base) * 100vw);
  border-bottom: 1px dotted #cecece;
}
.page-clinic .clinic-item .title {
  font-size: calc(20 / var(--base) * 100vw);
  margin: 0 0 calc(11 / var(--base) * 100vw) 0;
  font-weight: 500;
}
.page-clinic .clinic-item .photo {
  margin-bottom: calc(11 / var(--base) * 100vw);
}
.page-clinic .clinic-item .photo img {
  border-radius: var(--radius);
  overflow: hidden;
}
.page-clinic .unit-equipments {
  background-color: var(--color-cream);
}
.page-clinic .unit-equipments::after {
  inset: calc(-24 / var(--base) * 100vw) auto auto calc(10 / var(--base) * 100vw);
}
.page-clinic .equipment-item {
  margin: 0 calc(20 / var(--base) * 100vw);
  padding-bottom: calc(35 / var(--base) * 100vw);
}
.page-clinic .equipment-item .title {
  font-size: calc(20 / var(--base) * 100vw);
  margin: 0 0 calc(3 / var(--base) * 100vw) 0;
  font-weight: 500;
}
.page-clinic .equipment-item .photo {
  margin-bottom: calc(11 / var(--base) * 100vw);
  border-radius: var(--radius);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .page-clinic .clinic-item {
    margin: 0 auto;
    width: min(950px, 950 / 1440 * 100vw);
    padding-bottom: min(32px, calc(32 / var(--base) * 100vw));
  }
  .page-clinic .clinic-item:not(:last-of-type) {
    margin-bottom: min(32px, calc(32 / var(--base) * 100vw));
  }
  .page-clinic .equipment-item {
    margin: 0 auto;
    width: min(950px, 950 / 1440 * 100vw);
    padding-bottom: min(32px, calc(32 / var(--base) * 100vw));
  }
  .page-clinic .equipment-item:not(:last-of-type) {
    margin-bottom: min(32px, calc(32 / var(--base) * 100vw));
  }
}
@media screen and (min-width: 1024px) {
  .page-clinic .clinic-item {
    display: grid;
    margin: 0 auto;
    grid-template-columns: 1fr min(446px, 446 / 1240 * 100vw);
    grid-template-rows: auto auto;
    gap: 0 min(40px, calc(40 / var(--base) * 100vw));
    width: min(950px, 950 / 1240 * 100vw);
    padding-bottom: min(32px, calc(32 / var(--base) * 100vw));
  }
  .page-clinic .clinic-item:not(:last-of-type) {
    margin-bottom: min(32px, calc(32 / var(--base) * 100vw));
    border-bottom-style: dashed;
  }
  .page-clinic .clinic-item .title {
    grid-column: 1;
    align-self: end;
    font-size: 18px;
    margin: 0 0 10px 0;
  }
  .page-clinic .clinic-item p {
    align-self: start;
  }
  .page-clinic .clinic-item .photo {
    grid-column: 2;
    grid-row: 1/3;
    margin-bottom: calc(11 / var(--base) * 100vw);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .page-clinic .clinic-item.reverse {
    grid-template-columns: min(446px, 446 / 1240 * 100vw) 1fr;
  }
  .page-clinic .clinic-item.reverse .title {
    grid-column: 2;
  }
  .page-clinic .clinic-item.reverse .photo {
    grid-column: 1;
  }
  .page-clinic .clinic-item.wide {
    grid-template-columns: 1fr min(720px, 720 / 1240 * 100vw);
  }
  .page-clinic .clinic-item.wide .photo {
    margin-bottom: min(36px, 36 / 1240 * 100vw);
    grid-column: 1/3;
    grid-row: 1;
  }
  .page-clinic .clinic-item.wide .title {
    padding-left: min(90px, 90 / 1240 * 100vw);
    align-self: center;
  }
  .page-clinic .unit-equipments::after {
    inset: -54px auto auto calc(50% - 630px);
  }
  .page-clinic .equipment-group {
    display: grid;
    margin: 0 auto;
    grid-template-columns: repeat(3, 1fr);
    width: min(954px, 954 / 1240 * 100vw);
    gap: min(48px, 48 / 1240 * 100vw) 21px;
  }
  .page-clinic .equipment-item {
    width: auto;
    margin: 0;
  }
  .page-clinic .equipment-item:not(:last-of-type) {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .page-clinic .equipment-item .photo {
    margin-bottom: 19px;
  }
  .page-clinic .equipment-item .title {
    margin-bottom: 11px;
    font-size: 18px;
  }
}

.page-price .price-item {
  margin: calc(38 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) 0 calc(20 / var(--base) * 100vw);
}
.page-price .price-item:not(:last-of-type) {
  margin-bottom: calc(24 / var(--base) * 100vw);
  padding-bottom: calc(24 / var(--base) * 100vw);
}
.page-price .price-item .title {
  margin: 0 0 calc(16 / var(--base) * 100vw) 0;
  padding: 0 0 calc(11 / var(--base) * 100vw) 0;
  text-align: center;
  font-size: calc(20 / var(--base) * 100vw);
  font-weight: 600;
  border-bottom: 1px solid var(--color-darkblue);
}
.page-price .table-price table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}
.page-price .table-price th {
  padding: calc(14 / var(--base) * 100vw) 0 calc(14 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 600;
  text-align: left;
  background-color: var(--color-cream);
  border-radius: var(--radius) 0 0 var(--radius);
}
.page-price .table-price td {
  padding: calc(14 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  background-color: var(--color-cream);
}
.page-price .table-price td:nth-of-type(1), .page-price .table-price td.price {
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: right;
  font-size: calc(16 / var(--base) * 100vw);
  font-family: var(--font-en);
}
.page-price .table-price td:nth-of-type(1) .currency, .page-price .table-price td.price .currency {
  font-size: calc(10 / var(--base) * 100vw);
  font-family: var(--font-sans);
}
.page-price .table-checkups-price table {
  display: block;
  padding: calc(20 / var(--base) * 100vw);
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #eee;
}
.page-price .table-checkups-price table:not(:last-of-type) {
  margin-bottom: calc(8 / var(--base) * 100vw);
}
.page-price .table-checkups-price tbody {
  display: block;
}
.page-price .table-checkups-price tr {
  display: block;
}
.page-price .table-checkups-price th {
  display: block;
  margin: 0 0 calc(12 / var(--base) * 100vw) 0;
  padding: 0 0 calc(11 / var(--base) * 100vw) 0;
  text-align: center;
  font-size: calc(15 / var(--base) * 100vw);
  font-weight: 600;
  border-bottom: 1px solid #000;
}
.page-price .table-checkups-price td {
  display: block;
  margin: 0;
}
.page-price .table-checkups-price .list-checkups {
  display: grid;
  margin-bottom: calc(13 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
}
.page-price .table-checkups-price .list-checkups li {
  padding: calc(4 / var(--base) * 100vw) 0 calc(4 / var(--base) * 100vw) 1.2em;
  position: relative;
  line-height: 1.5;
}
.page-price .table-checkups-price .list-checkups li::before {
  display: block;
  content: "";
  width: calc(7 / var(--base) * 100vw);
  height: calc(7 / var(--base) * 100vw);
  border-radius: 20px;
  background-color: var(--color-main);
  position: absolute;
  inset: 0.8em auto auto 0.3em;
}
.page-price .table-checkups-price .lead {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: calc(12 / var(--base) * 100vw);
}
.page-price .table-checkups-price .price {
  font-size: calc(16 / var(--base) * 100vw);
  font-family: var(--font-en);
  text-align: center;
}
.page-price .table-checkups-price .price .currency {
  font-size: calc(10 / var(--base) * 100vw);
  font-family: var(--font-sans);
}
.page-price .table-surgery-price {
  margin-bottom: calc(24 / var(--base) * 100vw);
}
.page-price .table-surgery-price table {
  display: block;
  margin-bottom: calc(12 / var(--base) * 100vw);
  width: 100%;
}
.page-price .table-surgery-price tbody {
  display: block;
}
.page-price .table-surgery-price tr {
  display: grid;
  grid-template-columns: auto auto;
}
.page-price .table-surgery-price tr:not(:last-of-type) {
  margin-bottom: calc(8 / var(--base) * 100vw);
}
.page-price .table-surgery-price th {
  grid-column: 1/3;
  padding: 0 0 calc(8 / var(--base) * 100vw) calc(4 / var(--base) * 100vw);
  font-size: calc(16 / var(--base) * 100vw);
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
}
.page-price .table-surgery-price td {
  padding: calc(14 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  background-color: var(--color-cream);
  border-radius: var(--radius) 0 0 var(--radius);
}
.page-price .table-surgery-price td:nth-of-type(2) {
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: right;
  font-size: calc(16 / var(--base) * 100vw);
  font-family: var(--font-en);
}
.page-price .table-surgery-price td:nth-of-type(2) .currency {
  font-size: calc(10 / var(--base) * 100vw);
  font-family: var(--font-sans);
}
.page-price .table-surgery-price .note {
  text-align: right;
  font-size: calc(12 / var(--base) * 100vw);
}
.page-price .unit-methods {
  background-color: var(--color-cream);
}
.page-price .unit-methods::after {
  inset: calc(-24 / var(--base) * 100vw) auto auto calc(20 / var(--base) * 100vw);
}
.page-price .unit-methods .content {
  margin: 0 calc(20 / var(--base) * 100vw);
}
.page-price .unit-methods .list li:not(:last-of-type) {
  margin-bottom: calc(40 / var(--base) * 100vw);
}
.page-price .unit-methods .list .title {
  margin-bottom: calc(18 / var(--base) * 100vw);
  padding: calc(16 / var(--base) * 100vw) 0;
  background-color: var(--color-beige);
  border-radius: 40px;
  font-size: calc(14 / var(--base) * 100vw);
  text-align: center;
}
.page-price .unit-methods .list p {
  text-align: center;
}
.page-price .unit-methods .anicom-link {
  text-decoration: none;
}
.page-price .unit-methods .anicom-link img {
  display: block;
  margin: calc(5 / var(--base) * 100vw) auto 0 auto;
  width: 235px;
}
@media screen and (min-width: 768px) {
  .page-price .price-item {
    margin: min(42px, calc(42 / var(--base) * 100vw)) auto 0 auto;
    width: min(816px, 816 / 1040 * 100vw);
  }
  .page-price .price-item:not(:last-of-type) {
    margin-bottom: min(39px, 39 / 1040 * 100vw);
    padding-bottom: min(39px, 39 / 1040 * 100vw);
  }
  .page-price .price-item .title {
    margin: 0 0 min(24px, 24 / 1040 * 100vw) 0;
    padding: 0 0 min(18px, 18 / 1040 * 100vw) 0;
    text-align: center;
    font-size: min(24px, 24 / 1040 * 100vw);
  }
  .page-price .table-price table {
    border-spacing: 0 8px;
  }
  .page-price .table-price th {
    padding: min(19px, 19 / 1040 * 100vw) 0 min(19px, 19 / 1040 * 100vw) min(60px, 60 / 1040 * 100vw);
    font-size: min(18px, 18 / 1040 * 100vw);
  }
  .page-price .table-price td {
    padding: min(19px, 19 / 1040 * 100vw) min(60px, 60 / 1040 * 100vw);
  }
  .page-price .table-price td:nth-of-type(1), .page-price .table-price td.price {
    font-size: min(22px, 22 / 1040 * 100vw);
  }
  .page-price .table-price td:nth-of-type(1) .currency, .page-price .table-price td.price .currency {
    font-size: min(14px, 14 / 1040 * 100vw);
  }
  .page-price .table-checkups-price table {
    display: table;
    padding: 0;
    width: 100%;
    background-color: #eee;
  }
  .page-price .table-checkups-price table:not(:last-of-type) {
    margin-bottom: cmin(8);
  }
  .page-price .table-checkups-price tbody {
    display: table-row-group;
  }
  .page-price .table-checkups-price tr {
    display: table-row;
  }
  .page-price .table-checkups-price th {
    display: table-cell;
    margin: 0;
    padding: 0 min(48px, 48 / 1040 * 100vw) 0 min(40px, 40 / 1040 * 100vw);
    text-align: left;
    font-size: min(18px, 18 / 1040 * 100vw);
    border-style: none;
    width: min(168px, 168 / 1040 * 100vw);
  }
  .page-price .table-checkups-price td {
    display: table-cell;
    margin: 0;
    padding: calc(28 / 1040 * 100vw) 0;
  }
  .page-price .table-checkups-price td:nth-of-type(2) {
    padding-right: min(40px, 40 / 1040 * 100vw);
  }
  .page-price .table-checkups-price .list-checkups {
    margin-bottom: 0;
  }
  .page-price .table-checkups-price .list-checkups li {
    padding: calc(4 / var(--base) * 100vw) 0 calc(4 / var(--base) * 100vw) 1.2em;
    position: relative;
    line-height: 1.5;
    font-size: min(14px, 14 / 1040 * 100vw);
  }
  .page-price .table-checkups-price .list-checkups li::before {
    width: min(6px, 6 / 1040 * 100vw);
    height: min(6px, 6 / 1040 * 100vw);
    inset: 1em auto auto 0.3em;
  }
  .page-price .table-checkups-price .lead {
    font-size: min(16px, 16 / 1040 * 100vw);
  }
  .page-price .table-checkups-price .price {
    font-size: min(22px, 22 / 1040 * 100vw);
  }
  .page-price .table-checkups-price .price .currency {
    font-size: min(14px, 14 / 1040 * 100vw);
  }
  .page-price .table-surgery-price {
    margin-bottom: min(24px, 24 / 1040 * 100vw);
  }
  .page-price .table-surgery-price table {
    display: table;
    margin-bottom: 0;
    width: 100%;
    border-spacing: 0 8px;
  }
  .page-price .table-surgery-price tbody {
    display: table-row-group;
    width: 100%;
  }
  .page-price .table-surgery-price tr {
    display: table-row;
  }
  .page-price .table-surgery-price tr:not(:last-of-type) {
    margin-bottom: calc(8 / var(--base) * 100vw);
  }
  .page-price .table-surgery-price th {
    display: table-cell;
    padding: 0 8px 0 0;
    font-size: min(18px, 18 / 1040 * 100vw);
    background-color: var(--color-cream);
    border-radius: var(--radius);
    width: min(220px, 220 / 1040 * 100vw);
    text-align: center;
    position: relative;
  }
  .page-price .table-surgery-price th::before {
    content: "";
    position: absolute;
    inset: 0 0 0 auto;
    width: 16px;
    background-color: #fff;
  }
  .page-price .table-surgery-price th::after {
    content: "";
    position: absolute;
    inset: 0 8px 0 auto;
    width: 8px;
    background-color: #fff;
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  .page-price .table-surgery-price td {
    padding: min(18px, 18 / 1040 * 100vw) min(40px, 40 / 1040 * 100vw);
    font-size: min(18px, 18 / 1040 * 100vw);
  }
  .page-price .table-surgery-price td:nth-of-type(2) {
    font-size: min(22px, 22 / 1040 * 100vw);
  }
  .page-price .table-surgery-price td:nth-of-type(2) .currency {
    font-size: min(14px, 14 / 1040 * 100vw);
  }
  .page-price .table-surgery-price .note {
    text-align: right;
    font-size: min(12px, 12 / 1040 * 100vw);
  }
  .page-price .unit-methods .content {
    margin: 0 auto;
    width: min(816px, 816 / 1040 * 100vw);
  }
  .page-price .unit-methods .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(16px, 16 / 1040 * 100vw);
  }
  .page-price .unit-methods .list li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-price .unit-methods .list .title {
    margin-bottom: min(28px, 28 / 1040 * 100vw);
    padding: min(18px, 18 / 1040 * 100vw) 0;
    font-size: min(18px, 18 / 1040 * 100vw);
  }
  .page-price .unit-methods .list p {
    text-align: center;
  }
  .page-price .unit-methods .anicom-link img {
    margin: min(12px, calc(12 / var(--base) * 100vw)) auto 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .page-price .unit-methods::after {
    inset: -50px auto auto calc(50% - 630px);
  }
}

.page-menu .unit-animals {
  background-color: var(--color-cream);
}
.page-menu .unit-animals .list {
  display: grid;
  margin: 0 calc(20 / var(--base) * 100vw);
  grid-template-columns: repeat(2, 1fr);
  gap: calc(10 / var(--base) * 100vw);
}
.page-menu .unit-animals .list li {
  padding: calc(11 / var(--base) * 100vw);
  background-color: #fff;
  border-radius: var(--radius);
}
.page-menu .unit-animals .list .illust {
  margin: 0 auto calc(9 / var(--base) * 100vw) auto;
  width: calc(69 / var(--base) * 100vw);
}
.page-menu .unit-animals .list .title {
  margin: 0;
  padding: calc(4 / var(--base) * 100vw) 0;
  background-color: #ebe9e1;
  border-radius: 30px;
  font-size: calc(17 / var(--base) * 100vw);
  text-align: center;
  font-weight: 700;
}
.page-menu .unit-menu::after {
  scale: -1 1;
  inset: calc(-27 / var(--base) * 100vw) calc(12 / var(--base) * 100vw) auto auto;
}
.page-menu .menu-item {
  margin: 0 calc(20 / var(--base) * 100vw);
  padding: 0 0 calc(24 / var(--base) * 100vw) 0;
}
.page-menu .menu-item:not(:last-of-type) {
  margin-bottom: calc(24 / var(--base) * 100vw);
}
.page-menu .menu-item .title {
  margin: 0 0 calc(15 / var(--base) * 100vw) 0;
  padding: 0 0 calc(11 / var(--base) * 100vw) 0;
  text-align: center;
  font-size: calc(20 / var(--base) * 100vw);
  border-bottom: 1px solid var(--color-darkblue);
}
.page-menu .menu-item .list li {
  padding: calc(15 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  font-size: calc(14 / var(--base) * 100vw);
  text-align: center;
  font-weight: 700;
  background-color: var(--color-cream);
  border-radius: var(--radius);
}
.page-menu .menu-item .list li:not(:last-of-type) {
  margin-bottom: calc(4 / var(--base) * 100vw);
}
.page-menu .menu-item .list .title-menu {
  margin: 0 0 calc(13 / var(--base) * 100vw) 0;
  padding: 0;
  font-size: calc(14 / var(--base) * 100vw);
  font-weight: 700;
}
.page-menu .menu-item .list p {
  font-size: calc(12 / var(--base) * 100vw);
  line-height: 1.7;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-menu .unit-animals .list {
    margin: 0 auto;
    width: min(732px, 732 / 1040 * 100vw);
    gap: min(20px, 20 / 1040 * 100vw);
  }
  .page-menu .unit-animals .list li {
    padding: min(24px, 24 / 1040 * 100vw) min(36px, 36 / 1040 * 100vw);
  }
  .page-menu .unit-animals .list .illust {
    margin: 0 auto min(20px, 20 / 1040 * 100vw) auto;
    width: min(105px, 105 / 1040 * 100vw);
  }
  .page-menu .unit-animals .list .title {
    padding: min(8px, 8 / 1040 * 100vw) 0;
    font-size: min(20px, 20 / 1040 * 100vw);
  }
  .page-menu .menu-item {
    margin: 0 auto;
    padding: 0 0 min(39px, 39 / 1040 * 100vw) 0;
    width: min(954px, 954 / 1040 * 100vw);
  }
  .page-menu .menu-item:not(:last-of-type) {
    margin-bottom: min(39px, 39 / 1040 * 100vw);
  }
  .page-menu .menu-item .title {
    margin: 0 0 min(32px, 32 / 1040 * 100vw) 0;
    padding: 0 0 min(12px, 12 / 1040 * 100vw) 0;
    font-size: min(24px, 24 / 1040 * 100vw);
  }
  .page-menu .menu-item .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(8px, 8 / 1040 * 100vw) min(16px, 16 / 1040 * 100vw);
  }
  .page-menu .menu-item .list li {
    padding: min(18px, 18 / 1040 * 100vw) min(24px, 24 / 1040 * 100vw);
    font-size: min(18px, 18 / 1040 * 100vw);
  }
  .page-menu .menu-item .list li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-menu .menu-item .list .title-menu {
    margin: 0 0 min(21px, 21 / 1040 * 100vw) 0;
    padding: 0;
    font-size: min(18px, 18 / 1040 * 100vw);
    font-weight: 700;
  }
  .page-menu .menu-item .list p {
    font-size: min(16px, 16 / 1040 * 100vw);
  }
}
@media screen and (min-width: 1440px) {
  .page-menu .unit-menu::after {
    inset: -49px calc(50% - 610px) auto auto;
  }
}

.page-first .unit-reservation {
  background-color: var(--color-cream);
}
.page-first .unit-reservation .list {
  margin: 0 calc(30 / var(--base) * 100vw);
}
.page-first .unit-reservation .list li {
  position: relative;
  padding: 0 calc(24 / var(--base) * 100vw);
}
.page-first .unit-reservation .list li:not(:last-of-type) {
  padding-bottom: calc(36 / var(--base) * 100vw);
  margin-bottom: calc(36 / var(--base) * 100vw);
  border-bottom: 0.5px solid #000;
}
.page-first .unit-reservation .list .title {
  margin: 0 0 calc(7 / var(--base) * 100vw) 0;
  padding-left: calc(6 / var(--base) * 100vw);
  font-size: calc(17 / var(--base) * 100vw);
}
.page-first .unit-reservation .list .title::before {
  content: "";
  width: calc(20 / var(--base) * 100vw);
  height: calc(20 / var(--base) * 100vw);
  background-color: #000;
  -webkit-mask-image: url(../images/common/icon-footprints.svg);
          mask-image: url(../images/common/icon-footprints.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  position: absolute;
  inset: 0.2em auto auto 0;
}
.page-first .unit-reservation .list p {
  font-size: calc(14 / var(--base) * 100vw);
  line-height: 1.7;
}
.page-first .unit-reservation .list .button-petpass {
  display: flex;
  padding: 9px 0;
  align-items: center;
  justify-content: center;
  color: var(--color-darkblue);
  background-color: var(--color-main);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 17px;
}
.page-first .unit-reservation .list .button-petpass .text-petpass {
  margin-right: 6px;
  font-size: 8px;
}
.page-first .unit-reservation .list .button-petpass::before {
  display: block;
  margin-right: 10px;
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../images/common/icon-footprints.svg);
          mask-image: url(../images/common/icon-footprints.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: currentColor;
}
.page-first .unit-reservation .list .button-tel {
  padding-left: 28px;
  text-decoration: none;
  font-size: 30px;
  font-family: var(--font-en);
  letter-spacing: -0.05em;
  font-weight: 500;
  position: relative;
}
.page-first .unit-reservation .list .button-tel::before {
  display: block;
  margin-right: 10px;
  content: "";
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../images/common/icon-phone.svg);
          mask-image: url(../images/common/icon-phone.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: currentColor;
  position: absolute;
  inset: 8px auto auto 0;
}
.page-first .unit-required-items::after {
  scale: -1 1;
  inset: calc(-25 / var(--base) * 100vw) calc(12 / var(--base) * 100vw) auto auto;
}
.page-first .unit-required-items .list {
  margin: 0 calc(20 / var(--base) * 100vw);
}
.page-first .unit-required-items .list li {
  padding: calc(13 / var(--base) * 100vw) calc(24 / var(--base) * 100vw);
  border-bottom: 0.5px solid #000;
  position: relative;
}
.page-first .unit-required-items .list li::before {
  content: "";
  width: calc(9 / var(--base) * 100vw);
  height: calc(9 / var(--base) * 100vw);
  background-color: var(--color-main);
  border-radius: 30px;
  position: absolute;
  inset: calc(13 / var(--base) * 100vw + 0.5em) auto auto 0.2em;
}
.page-first .unit-required-items .list .title {
  margin: 0 0 0 0;
  font-size: calc(17 / var(--base) * 100vw);
}
.page-first .unit-required-items .list .title + p {
  margin-top: calc(2 / var(--base) * 100vw);
}
.page-first .unit-notices {
  background-color: var(--color-cream);
}
.page-first .unit-notices::after {
  inset: calc(-25 / var(--base) * 100vw) auto auto calc(17 / var(--base) * 100vw);
}
.page-first .unit-notices .list {
  margin: 0 calc(20 / var(--base) * 100vw);
}
.page-first .unit-notices .list li {
  padding: calc(30 / var(--base) * 100vw) calc(20 / var(--base) * 100vw) calc(24 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
  border: 1px solid #000;
  background-color: #fff;
}
.page-first .unit-notices .list li:not(:last-of-type) {
  margin-bottom: calc(8 / var(--base) * 100vw);
}
.page-first .unit-notices .list .title {
  margin: 0 0 calc(11 / var(--base) * 100vw) 0;
  text-align: center;
  position: relative;
  font-size: calc(17 / var(--base) * 100vw);
}
.page-first .unit-notices .list .title::before {
  display: block;
  margin: 0 auto calc(18 / var(--base) * 100vw) auto;
  content: "";
  width: calc(24 / var(--base) * 100vw);
  height: calc(24 / var(--base) * 100vw);
  background-image: url(../images/common/icon-checkmark.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.page-first .unit-flow::after {
  scale: -1 1;
  inset: calc(-25 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) auto auto;
}
.page-first .unit-flow .list {
  margin: 0 calc(20 / var(--base) * 100vw);
  counter-reset: count-list;
}
.page-first .unit-flow .list li {
  display: grid;
  grid-template-columns: calc(108 / var(--base) * 100vw) 1fr;
  gap: 0 calc(20 / var(--base) * 100vw);
  align-items: center;
  counter-increment: count-list;
  position: relative;
}
.page-first .unit-flow .list li:not(:last-of-type) {
  margin-bottom: calc(15 / var(--base) * 100vw);
}
.page-first .unit-flow .list li:has(.text) {
  grid-template-rows: auto 1fr;
}
.page-first .unit-flow .list li:has(.text) figure {
  grid-row: 1/3;
}
.page-first .unit-flow .list li:has(.text) .title {
  align-self: end;
}
.page-first .unit-flow .list li::after {
  display: block;
  content: "";
  width: calc(100% - 128 / var(--base) * 100vw);
  height: 1px;
  background-color: #000;
  position: absolute;
  inset: auto 0 calc(-7 / var(--base) * 100vw) auto;
}
.page-first .unit-flow .list figure {
  grid-column: 1;
  grid-row: 1;
}
.page-first .unit-flow .list .title {
  margin: 0;
  padding: 0;
  grid-column: 2;
  font-size: calc(17 / var(--base) * 100vw);
  align-items: end;
}
.page-first .unit-flow .list .title::before {
  display: block;
  content: "Step." counter(count-list);
  color: var(--color-main);
  font-size: calc(11 / var(--base) * 100vw);
  font-weight: 400;
}
.page-first .unit-flow .list .text {
  grid-column: 2;
  grid-row: 2;
}
.page-first .unit-flow .list p {
  font-size: calc(11.5 / var(--base) * 100vw);
  align-self: center;
}
.page-first .unit-access {
  background-color: var(--color-cream);
}
.page-first .unit-access::after {
  inset: calc(-24 / var(--base) * 100vw) auto auto calc(17 / var(--base) * 100vw);
}
.page-first .unit-access .address {
  margin-bottom: calc(13 / var(--base) * 100vw);
  text-align: center;
  font-size: calc(17 / var(--base) * 100vw);
  line-height: 1.7;
}
.page-first .unit-access .address::before {
  display: block;
  margin: 0 auto calc(4 / var(--base) * 100vw) auto;
  content: "";
  width: calc(20 / var(--base) * 100vw);
  height: calc(32 / var(--base) * 100vw);
  background-image: url(../images/common/icon-map-marker.svg);
  background-size: contain;
}
.page-first .unit-access .address a {
  text-decoration: none;
}
.page-first .unit-access .map {
  margin: 0 calc(20 / var(--base) * 100vw) calc(15 / var(--base) * 100vw) calc(20 / var(--base) * 100vw);
}
.page-first .unit-access .map iframe {
  width: 100%;
  height: calc(240 / var(--base) * 100vw);
  border-style: none;
}
.page-first .unit-access .list {
  margin: 0 calc(20 / var(--base) * 100vw);
}
.page-first .unit-access .list li {
  display: grid;
  align-items: center;
  padding: calc(24 / var(--base) * 100vw);
  grid-template-columns: calc(56 / var(--base) * 100vw) 1fr;
  gap: 0 calc(20 / var(--base) * 100vw);
  border: 1px solid #000;
  background-color: #fff;
}
.page-first .unit-access .list li:not(:last-of-type) {
  margin-bottom: calc(5 / var(--base) * 100vw);
}
.page-first .unit-access .list li::before {
  content: "";
  width: calc(56 / var(--base) * 100vw);
  height: calc(56 / var(--base) * 100vw);
  background-repeat: no-repeat;
  background-size: contain;
  grid-column: 1;
  grid-row: 1/3;
}
.page-first .unit-access .list li.car::before {
  background-image: url(../images/common/icon-car.svg);
}
.page-first .unit-access .list li.bus::before {
  background-image: url(../images/common/icon-bus.svg);
}
.page-first .unit-access .list li.bicycle::before {
  background-image: url(../images/common/icon-bicycle.svg);
}
.page-first .unit-access .list .title {
  margin: 0 0 calc(12 / var(--base) * 100vw) 0;
  text-align: center;
  font-size: calc(17 / var(--base) * 100vw);
}
.page-first .unit-access .list p {
  grid-column: 2;
  grid-row: 2;
  font-size: calc(14 / var(--base) * 100vw);
  line-height: 1.7;
  text-align: center;
}
.page-first .unit-access .list p.small {
  font-size: calc(11.5 / var(--base) * 100vw);
}
@media screen and (min-width: 768px) {
  .page-first .unit-reservation .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    gap: 0 min(78px, 78 / 1020 * 100vw);
    margin: 0 auto;
    width: min(954px, 954 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list li {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1/4;
    padding: 0 0 0 min(50px, 50 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list li:not(:last-of-type) {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom-style: none;
  }
  .page-first .unit-reservation .list li:not(:last-of-type)::after {
    display: block;
    content: "";
    height: 100%;
    width: 1px;
    background-color: #000;
    position: absolute;
    inset: 0 max(-39px, -39 / 1040 * 100vw) auto auto;
  }
  .page-first .unit-reservation .list .title {
    margin: 0 0 min(17px, 17 / 1040 * 100vw) 0;
    padding-left: 0;
    font-size: min(24px, 24 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list .title::before {
    width: min(30px, 30 / 1040 * 100vw);
    height: min(28px, 28 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list p {
    margin: 0 0 min(33px, 33 / 1040 * 100vw) 0;
    font-size: min(16px, 16 / 1040 * 100vw);
    line-height: 1.8;
  }
  .page-first .unit-reservation .list .button-petpass {
    padding: min(16px, 16 / 1040 * 100vw) 0;
    font-size: min(25px, 25 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list .button-petpass .text-petpass {
    margin-right: min(8px, 8 / 1040 * 100vw);
    font-size: min(12px, 12 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list .button-petpass::before {
    margin-right: min(10px, 10 / 1040 * 100vw);
    width: min(24px, 24 / 1040 * 100vw);
    height: min(24px, 24 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list .button-tel {
    padding-left: min(46px, 46 / 1040 * 100vw);
    font-size: min(39px, 39 / 1040 * 100vw);
  }
  .page-first .unit-reservation .list .button-tel::before {
    margin-right: min(10px, 10 / 1040 * 100vw);
    width: min(36px, 36 / 1040 * 100vw);
    height: min(36px, 36 / 1040 * 100vw);
    inset: min(8px, 8 / 1040 * 100vw) auto auto 0;
  }
  .page-first .unit-required-items .list {
    margin: 0 auto;
    width: min(690px, 690 / 1040 * 100vw);
    border-top: 0.5px solid #000;
  }
  .page-first .unit-required-items .list li {
    display: grid;
    grid-template-columns: min(186px, 186 / 1040 * 100vw) 1fr;
    padding: min(19px, 19 / 1040 * 100vw) min(60px, 60 / 1040 * 100vw);
    gap: min(20px, 20 / 1040 * 100vw);
  }
  .page-first .unit-required-items .list li::before {
    width: min(14px, 14 / 1040 * 100vw);
    height: min(14px, 14 / 1040 * 100vw);
    inset: 50% auto auto min(37px, 37 / 1040 * 100vw);
    translate: 0 -50%;
  }
  .page-first .unit-required-items .list .title {
    margin: 0;
    font-size: min(18px, 18 / 1040 * 100vw);
  }
  .page-first .unit-required-items .list p {
    font-size: min(14px, 14 / 1040 * 100vw);
  }
  .page-first .unit-required-items .list .title + p {
    margin-top: 0;
  }
  .page-first .unit-notices .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: min(16px, 16 / 1040 * 100vw);
    margin: 0 auto;
    width: min(954px, 954 / 1040 * 100vw);
  }
  .page-first .unit-notices .list li {
    padding: min(25px, 25 / 1040 * 100vw) min(48px, 48 / 1040 * 100vw);
  }
  .page-first .unit-notices .list li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-first .unit-notices .list .title {
    margin: 0 0 min(15px, 15 / 1040 * 100vw) 0;
    font-size: min(18px, 18 / 1040 * 100vw);
  }
  .page-first .unit-notices .list .title::before {
    margin: 0 auto min(18px, 18 / 1040 * 100vw) auto;
    width: min(21px, 21 / 1040 * 100vw);
    height: min(21px, 21 / 1040 * 100vw);
  }
  .page-first .unit-notices .list p {
    font-size: min(14px, 14 / 1040 * 100vw);
  }
  .page-first .unit-flow .list {
    margin: 0 auto;
    width: min(688px, 688 / 1040 * 100vw);
  }
  .page-first .unit-access .content {
    margin: 0 auto;
    width: min(954px, 954 / 1040 * 100vw);
  }
  .page-first .unit-access .map {
    margin: 0 0 min(20px, 20 / 1040 * 100vw) 0;
  }
  .page-first .unit-access .map iframe {
    height: min(280px, 280 / 1040 * 100vw);
  }
  .page-first .unit-access .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    gap: 0 10px;
  }
  .page-first .unit-access .list li {
    grid-row: 1/3;
    display: grid;
    grid-template-rows: subgrid;
    align-items: start;
    padding: min(38px, 38 / 1040 * 100vw) 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .page-first .unit-access .list li:not(:last-of-type) {
    margin-bottom: 0;
  }
  .page-first .unit-access .list li::before {
    display: none;
  }
  .page-first .unit-access .list li.car .title::before {
    background-image: url(../images/common/icon-car.svg);
  }
  .page-first .unit-access .list li.bus .title::before {
    background-image: url(../images/common/icon-bus.svg);
  }
  .page-first .unit-access .list li.bicycle .title::before {
    background-image: url(../images/common/icon-bicycle.svg);
  }
  .page-first .unit-access .list .title {
    display: flex;
    align-items: center;
    gap: min(10px, 10 / 1040 * 100vw);
    justify-content: center;
    grid-column: 1/3;
    margin: 0 0 min(30px, 30 / 1040 * 100vw) 0;
    text-align: center;
    font-size: min(20px, 20 / 1040 * 100vw);
  }
  .page-first .unit-access .list .title::before {
    display: block;
    content: "";
    width: min(29px, 29 / 1040 * 100vw);
    height: min(23px, 23 / 1040 * 100vw);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .page-first .unit-access .list p {
    grid-column: 1/3;
    grid-row: 2;
    font-size: min(16px, 16 / 1040 * 100vw);
    line-height: 1.7;
    text-align: center;
  }
  .page-first .unit-access .list p.small {
    font-size: min(16px, 16 / 1040 * 100vw);
  }
}
@media screen and (min-width: 1024px) {
  .page-first .unit-flow::after {
    scale: -1 1;
    inset: calc(-25 / var(--base) * 100vw) calc(10 / var(--base) * 100vw) auto auto;
  }
  .page-first .unit-flow .list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0 27px;
    margin: 0 auto;
    width: min(954px, 954 / 1040 * 100vw);
  }
  .page-first .unit-flow .list li {
    grid-row: 1/3;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 0;
    align-items: start;
  }
  .page-first .unit-flow .list li:not(:last-of-type) {
    margin-bottom: 0;
    position: relative;
  }
  .page-first .unit-flow .list li:not(:last-of-type)::after {
    content: "";
    display: block;
    width: min(13px, 13 / 1040 * 100vw);
    height: min(18px, 18 / 1040 * 100vw);
    background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxMyAxOCI gZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNTAwNDEgMkwxMS4xNDk0IDkuMTU2TDEuNTAwNDEgMTYuMjA2IiBzdHJva2U9IiNENU I1NEIiIHN0cm9rZS13aWR0aD0iMyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==") no-repeat center/contain;
    position: absolute;
    inset: min(70px, 70 / 1040 * 100vw) max(-20px, -20 / var(--base) * 100vw) auto auto;
  }
  .page-first .unit-flow .list li:has(.text) {
    grid-template-rows: auto 1fr;
  }
  .page-first .unit-flow .list li:has(.text) figure {
    grid-row: 1;
  }
  .page-first .unit-flow .list li:has(.text) .text {
    grid-column: 1;
    grid-row: 2;
  }
  .page-first .unit-flow .list li::after {
    display: none;
  }
  .page-first .unit-flow .list figure {
    margin-bottom: min(12px, 12 / 1040 * 100vw);
    grid-column: 1;
    grid-row: 1;
  }
  .page-first .unit-flow .list .title {
    margin: 0 0 min(18px, 18 / 1040 * 100vw) 0;
    padding: 0;
    grid-column: 1;
    grid-row: 2;
    font-size: min(18px, 18 / 1040 * 100vw);
    text-align: center;
    align-items: start;
  }
  .page-first .unit-flow .list .title::before {
    display: none;
  }
  .page-first .unit-flow .list .text {
    grid-column: 2;
    grid-row: 2;
  }
  .page-first .unit-flow .list p {
    font-size: min(14px, 14 / 1040 * 100vw);
    align-self: center;
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  .page-first .unit-required-items::after {
    inset: -50px calc(50% - 620px) auto auto;
  }
  .page-first .unit-notices::after {
    inset: -65px auto auto calc(50% - 650px);
  }
  .page-first .unit-flow::after {
    inset: -50px calc(50% - 620px) auto auto;
  }
  .page-first .unit-access::after {
    inset: -65px auto auto calc(50% - 650px);
  }
}/*# sourceMappingURL=style.css.map */