:root {
  --designwidth:1366;
}
@media screen and (max-width: 767px) {
  :root {
    --designwidth:375;
  }
}

/*
	Base
	-base
*/
html {
  font-size: 1rem;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  color: rgb(0 0 0 / 1);
  line-height: 1;
  overflow-x: clip;
}
body#page-top.fixed {
  height: 100%;
  overflow: hidden;
}
body :where(a) {
  color: inherit;
  text-decoration: none;
}
body :where(ul, ol) {
  list-style-type: "";
  padding: unset;
}
body :where(img) {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
body :where(button) {
  letter-spacing: 0.1em;
  touch-action: manipulation;
}

:lang(ja) {
  --leading-trim: calc((1em - 1lh) / 2);
}

:lang(en) {
  --leading-trim: calc((1cap - 1lh) / 2);
}

.leading-trim::before, .leading-trim::after {
  content: "";
  display: block;
  inline-size: 0;
  block-size: 1px;
}
.leading-trim::before {
  -webkit-margin-after: var(--leading-trim);
          margin-block-end: var(--leading-trim);
}
.leading-trim::after {
  -webkit-margin-before: var(--leading-trim);
          margin-block-start: var(--leading-trim);
}

/*
	Layouts
	-general
*/
.l-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 20px;
  min-height: 5rem;
  z-index: 5000;
}
.l-header .p-header-site a {
  display: grid;
  grid-template-columns: 6.125rem auto;
  align-items: end;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.l-header .p-header-site a:focus-visible .p-header-site__text {
  background-color: rgb(22 22 22 / 0.2);
}
@media (any-hover: hover) {
  .l-header .p-header-site a:where(:-webkit-any-link, :enabled, summary):hover .p-header-site__text {
    background-color: rgb(22 22 22 / 0.2);
  }
  .l-header .p-header-site a:where(:-moz-any-link, :enabled, summary):hover .p-header-site__text {
    background-color: rgb(22 22 22 / 0.2);
  }
  .l-header .p-header-site a:where(:any-link, :enabled, summary):hover .p-header-site__text {
    background-color: rgb(22 22 22 / 0.2);
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-header .p-header-site a.touch-active .p-header-site__text {
      background-color: rgb(22 22 22 / 0.2);
    }
  }
}
.l-header .p-header-site__logo > img {
  width: 100%;
}
.l-header .p-header-site__text {
  --_border-radius: 100vmax;
  --_border-size: 1px;
  padding: 3px 10px 5px;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  border-radius: var(--_border-radius);
  border: var(--_border-size) solid rgb(22 22 22 / 1);
  background-color: rgb(255 255 255 / 1);
  transition: background-color 0.2s ease-out;
}
.l-header .p-header-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  padding: 21px 19px;
  width: 3.75rem;
  aspect-ratio: 1;
  z-index: 2;
}
.l-header .p-header-btn__line {
  position: relative;
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: rgb(0 154 171 / 1);
  transition: all 0.4s ease-out;
}
.l-header .p-header-btn__line::before, .l-header .p-header-btn__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: rgb(0 154 171 / 1);
  transition: all 0.4s ease-out;
}
.l-header .p-header-btn__line::before {
  top: 0.375em;
}
.l-header .p-header-btn__line::after {
  top: -0.375em;
}
.l-header .p-header-btn[aria-expanded=true] .p-header-btn__line {
  background: transparent;
}
.l-header .p-header-btn[aria-expanded=true] .p-header-btn__line::before {
  top: 0;
  transform: rotate(45deg);
}
.l-header .p-header-btn[aria-expanded=true] .p-header-btn__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.l-header .p-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-block: 64px 56px;
  max-height: 100dvh;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background-color: rgb(255 255 255 / 1);
  z-index: 1;
  scrollbar-width: none;
}
.l-header .p-header-nav::-webkit-scrollbar {
  display: none;
}
.l-header .p-header-nav.show {
  opacity: 1;
  visibility: visible;
}
.l-header .p-header-nav__title {
  margin-inline: auto;
  width: 11.6875rem;
}
.l-header .p-header-nav__title > img {
  width: 100%;
}
.l-header .p-header-nav-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  gap: 20px 16px;
  margin: 50px auto 0;
  max-width: 488px;
}
.l-header .p-header-nav-item a {
  display: grid;
  row-gap: 8px;
}
.l-header .p-header-nav-item a:focus-visible .p-header-nav-item__visual {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .l-header .p-header-nav-item a:where(:-webkit-any-link, :enabled, summary):hover .p-header-nav-item__visual {
    opacity: 0.8;
  }
  .l-header .p-header-nav-item a:where(:-moz-any-link, :enabled, summary):hover .p-header-nav-item__visual {
    opacity: 0.8;
  }
  .l-header .p-header-nav-item a:where(:any-link, :enabled, summary):hover .p-header-nav-item__visual {
    opacity: 0.8;
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-header .p-header-nav-item a.touch-active .p-header-nav-item__visual {
      opacity: 0.8;
    }
  }
}
.l-header .p-header-nav-item__visual {
  width: 100%;
  aspect-ratio: 110/92;
  transition: opacity 0.2s ease-in-out;
}
.l-header .p-header-nav-item__visual > img {
  width: 100%;
  height: 100%;
}
.l-header .p-header-nav-item__text {
  font-size: 1.125rem;
  line-height: 1.45;
  font-weight: 700;
  color: rgb(231 59 109 / 1);
  text-align: center;
}
.l-header .p-header-nav-banners {
  display: grid;
  place-items: center;
  margin: 40px auto 0;
  max-width: 488px;
}
.l-header .p-header-nav-banner {
  width: 73.7705%;
}
.l-header .p-header-nav-banner a {
  display: block;
  transition: opacity 0.2s ease-in-out;
}
.l-header .p-header-nav-banner a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .l-header .p-header-nav-banner a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-header .p-header-nav-banner a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-header .p-header-nav-banner a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-header .p-header-nav-banner a.touch-active {
      opacity: 0.8;
    }
  }
}
.l-header .p-header-nav-banner a > img {
  width: 100%;
}
.l-header .p-header-nav__return {
  margin: 40px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5rem;
  line-height: 1.5834;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgb(231 59 109 / 1);
}
.l-header .p-header-nav__focus:focus-visible {
  outline: 0 !important;
}
.l-header .p-header-mask {
  position: fixed;
  inset: 0;
  background-color: rgb(0 131 145 / 0.5);
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
.l-header .p-header-mask.show {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 767px) {
  .l-header {
    padding: 14px 10px 20px 10px;
    min-height: unset;
    height: 60px;
  }
  .l-header .p-header-site {
    max-width: calc(100% - 60px + 10px);
  }
  .l-header .p-header-site a {
    grid-template-columns: 89px auto;
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
  .l-header .p-header-site__text {
    font-size: 12px;
  }
  .l-header .p-header-btn {
    top: 0;
    right: 0;
    width: 60px;
  }
  .l-header .p-header-nav {
    padding-block: 67px 3rem;
  }
  .l-header .p-header-nav__title {
    width: max(11.6875rem, (187 / var(--designwidth)) * 100vw);
  }
  .l-header .p-header-nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(45%, 1fr));
    gap: calc((22 / var(--designwidth)) * 100vw) calc((26 / var(--designwidth)) * 100vw);
    margin: calc((48 / var(--designwidth)) * 100vw) auto 0;
    padding-inline: calc((20 / var(--designwidth)) * 100vw);
    max-width: unset;
    width: calc((327 / var(--designwidth)) * 100vw);
  }
  .l-header .p-header-nav-item a {
    row-gap: calc((7 / var(--designwidth)) * 100vw);
  }
  .l-header .p-header-nav-item__visual {
    aspect-ratio: 130/109;
  }
  .l-header .p-header-nav-item__text {
    font-size: max(1.125rem, (18 / var(--designwidth)) * 100vw);
  }
  .l-header .p-header-nav-banners {
    margin: calc((38 / var(--designwidth)) * 100vw) auto 0;
    padding-inline: unset;
    max-width: unset;
    width: calc((327 / var(--designwidth)) * 100vw);
  }
  .l-header .p-header-nav-banner {
    width: 100%;
  }
  .l-header .p-header-nav__return {
    margin: calc((32 / var(--designwidth)) * 100vw) auto 0;
    font-size: max(1.5rem, (24 / var(--designwidth)) * 100vw);
    line-height: 1.4584;
    letter-spacing: 0;
  }
  .l-header .p-header-mask {
    position: fixed;
    inset: 0;
    background-color: rgb(0 131 145 / 0.5);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
  }
  .l-header .p-header-mask.show {
    opacity: 1;
    visibility: visible;
  }
}
.l-aside {
  position: fixed;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
  z-index: 3000;
}
.l-aside .p-aside-content {
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.l-aside .p-aside-content a {
  --_border-radius: 40px;
  --_border-size: 2px;
  --_box-shadow-x: 0px;
  --_box-shadow-y: 3px;
  --_box-shadow-b: 6px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  padding: 21px 22px 18px 21px;
  border-radius: var(--_border-radius) 0 0 var(--_border-radius);
  border: var(--_border-size) solid rgb(0 154 171 / 1);
  box-shadow: var(--_box-shadow-x) var(--_box-shadow-y) var(--_box-shadow-b) rgb(0 0 0 / 0.16);
  background-color: rgb(255 255 255 / 1);
  transition: background-color 0.2s ease-out;
}
.l-aside .p-aside-content a:focus-visible {
  background-color: rgb(237 246 247 / 1);
}
@media (any-hover: hover) {
  .l-aside .p-aside-content a:where(:-webkit-any-link, :enabled, summary):hover {
    background-color: rgb(237 246 247 / 1);
  }
  .l-aside .p-aside-content a:where(:-moz-any-link, :enabled, summary):hover {
    background-color: rgb(237 246 247 / 1);
  }
  .l-aside .p-aside-content a:where(:any-link, :enabled, summary):hover {
    background-color: rgb(237 246 247 / 1);
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-aside .p-aside-content a.touch-active {
      background-color: rgb(237 246 247 / 1);
    }
  }
}
.l-aside .p-aside-content a::before {
  content: "";
  inline-size: 2.5rem;
  aspect-ratio: 1;
  background-image: url(../img/common/icon_ear.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.l-aside .p-aside-content a > div:not([class]) {
  display: grid;
  row-gap: 6px;
}
.l-aside .p-aside-content__text {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  color: rgb(0 154 171 / 1);
}
.l-aside .p-aside-content__please {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  -moz-column-gap: 3px;
       column-gap: 3px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  color: rgb(0 154 171 / 1);
}
.l-aside .p-aside-content__please::after {
  content: "";
  block-size: 0.9375rem;
  aspect-ratio: 15/13;
  background-image: url(../img/common/icon_blank.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  .l-aside .p-aside-content a {
    -moz-column-gap: calc((3 / var(--designwidth)) * 100vw);
         column-gap: calc((3 / var(--designwidth)) * 100vw);
    padding: calc((21 / var(--designwidth)) * 100vw) calc((22 / var(--designwidth)) * 100vw) calc((18 / var(--designwidth)) * 100vw) calc((21 / var(--designwidth)) * 100vw);
  }
  .l-aside .p-aside-content a::before {
    inline-size: max(2.5rem, (40 / var(--designwidth)) * 100vw);
  }
  .l-aside .p-aside-content a > div:not([class]) {
    row-gap: calc((6 / var(--designwidth)) * 100vw);
  }
  .l-aside .p-aside-content__text {
    font-size: max(0.875rem, (14 / var(--designwidth)) * 100vw);
  }
  .l-aside .p-aside-content__please {
    -moz-column-gap: calc((3 / var(--designwidth)) * 100vw);
         column-gap: calc((3 / var(--designwidth)) * 100vw);
    font-size: max(1.125rem, (18 / var(--designwidth)) * 100vw);
  }
  .l-aside .p-aside-content__please::after {
    block-size: max(0.9375rem, (15 / var(--designwidth)) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-aside {
    top: unset;
    bottom: -2px;
    left: calc((24 / var(--designwidth)) * 100vw);
    right: calc((24 / var(--designwidth)) * 100vw);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  }
  .l-aside.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .l-aside .p-aside-content {
    writing-mode: unset;
  }
  .l-aside .p-aside-content a {
    -moz-column-gap: calc((7 / var(--designwidth)) * 100vw);
         column-gap: calc((7 / var(--designwidth)) * 100vw);
    padding: calc((15 / var(--designwidth)) * 100vw) calc((18 / var(--designwidth)) * 100vw) calc((16 / var(--designwidth)) * 100vw) calc((19 / var(--designwidth)) * 100vw);
    border-radius: var(--_border-radius) var(--_border-radius) 0 0;
  }
  .l-aside .p-aside-content a::before {
    inline-size: max(2.5rem, (40 / var(--designwidth)) * 100vw);
  }
  .l-aside .p-aside-content a > div:not([class]) {
    row-gap: calc((6 / var(--designwidth)) * 100vw);
  }
  .l-aside .p-aside-content__text {
    font-size: max(0.875rem, (14 / var(--designwidth)) * 100vw);
    line-height: 1.1429;
  }
  .l-aside .p-aside-content__please {
    align-items: end;
    -moz-column-gap: calc((5 / var(--designwidth)) * 100vw);
         column-gap: calc((5 / var(--designwidth)) * 100vw);
    font-size: max(1.125rem, (18 / var(--designwidth)) * 100vw);
    line-height: 1.1112;
  }
  .l-aside .p-aside-content__please::after {
    block-size: max(0.9375rem, (15 / var(--designwidth)) * 100vw);
  }
}
.p-pagetop {
  position: fixed;
  bottom: 12px;
  right: 20px;
  width: 2.75rem;
  aspect-ratio: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}
.p-pagetop.show {
  opacity: 1;
  visibility: visible;
}
.p-pagetop a {
  display: block;
  transition: opacity 0.2s ease-out;
}
.p-pagetop a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .p-pagetop a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .p-pagetop a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .p-pagetop a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .p-pagetop a.touch-active {
      opacity: 0.8;
    }
  }
}
.p-pagetop a > img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-pagetop {
    position: fixed;
    bottom: max(5rem, (80 / var(--designwidth)) * 100vw);
    right: 16px;
    width: 44px;
  }
}
.l-footer {
  display: grid;
  justify-items: center;
  padding-block: 57px 24px;
}
.l-footer .p-footer-site a {
  display: grid;
  justify-items: center;
  row-gap: 8px;
}
.l-footer .p-footer-site a:focus-visible .p-footer-site__text {
  background-color: rgb(22 22 22 / 0.2);
}
@media (any-hover: hover) {
  .l-footer .p-footer-site a:where(:-webkit-any-link, :enabled, summary):hover .p-footer-site__text {
    background-color: rgb(22 22 22 / 0.2);
  }
  .l-footer .p-footer-site a:where(:-moz-any-link, :enabled, summary):hover .p-footer-site__text {
    background-color: rgb(22 22 22 / 0.2);
  }
  .l-footer .p-footer-site a:where(:any-link, :enabled, summary):hover .p-footer-site__text {
    background-color: rgb(22 22 22 / 0.2);
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-footer .p-footer-site a.touch-active .p-footer-site__text {
      background-color: rgb(22 22 22 / 0.2);
    }
  }
}
.l-footer .p-footer-site__logo {
  width: 9.375rem;
}
.l-footer .p-footer-site__logo > img {
  width: 100%;
}
.l-footer .p-footer-site__text {
  --_border-radius: 100vmax;
  --_border-size: 1px;
  padding: 2px 10px 4px;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  border-radius: var(--_border-radius);
  border: var(--_border-size) solid rgb(22 22 22 / 1);
  background-color: rgb(255 255 255 / 1);
  transition: background-color 0.2s ease-out;
}
.l-footer .p-footer__anchor {
  margin-top: 64px;
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  text-align: center;
}
.l-footer .p-footer__anchor a {
  transition: opacity 0.2s ease-out, -webkit-text-decoration-color 0.2s ease-out;
  transition: opacity 0.2s ease-out, text-decoration-color 0.2s ease-out;
  transition: opacity 0.2s ease-out, text-decoration-color 0.2s ease-out, -webkit-text-decoration-color 0.2s ease-out;
}
.l-footer .p-footer__anchor a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .l-footer .p-footer__anchor a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-footer .p-footer__anchor a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-footer .p-footer__anchor a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-footer .p-footer__anchor a.touch-active {
      opacity: 0.8;
    }
  }
}
.l-footer .p-footer__copy {
  margin-top: 32px;
  font-size: 0.75rem;
  line-height: 1.4167;
  color: rgb(0 131 145 / 1);
  text-align: center;
}
.l-footer .p-footer-sns {
  margin-top: 64px;
  display: grid;
  gap: 24px;
}
.l-footer .p-footer-sns__title {
  font-size: 0.875rem;
  line-height: 1.7143;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  text-align: center;
}
.l-footer .p-footer-sns-list {
  display: grid;
  grid-template-columns: repeat(3, 2.5rem);
  gap: 40px;
}
.l-footer .p-footer-sns-item a {
  transition: opacity 0.2s ease-out;
}
.l-footer .p-footer-sns-item a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .l-footer .p-footer-sns-item a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-footer .p-footer-sns-item a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-footer .p-footer-sns-item a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-footer .p-footer-sns-item a.touch-active {
      opacity: 0.8;
    }
  }
}
.l-footer .p-footer-sns-item a > img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .l-footer {
    margin-inline: auto;
    padding-block: calc((30 / var(--designwidth)) * 100vw) max(6.25rem, (100 / var(--designwidth)) * 100vw);
    width: calc((327 / var(--designwidth)) * 100vw);
  }
  .l-footer .p-footer-site a {
    row-gap: calc((8 / var(--designwidth)) * 100vw);
  }
  .l-footer .p-footer-site__text {
    padding: calc((2 / var(--designwidth)) * 100vw) calc((10 / var(--designwidth)) * 100vw) calc((4 / var(--designwidth)) * 100vw);
    font-size: max(0.75rem, (12 / var(--designwidth)) * 100vw);
  }
  .l-footer .p-footer__anchor {
    margin-top: calc((40 / var(--designwidth)) * 100vw);
    font-size: max(0.875rem, (14 / var(--designwidth)) * 100vw);
  }
  .l-footer .p-footer__copy {
    margin-top: calc((35 / var(--designwidth)) * 100vw);
    font-size: max(0.75rem, (12 / var(--designwidth)) * 100vw);
  }
  .l-footer .p-footer-sns {
    margin-top: calc((36 / var(--designwidth)) * 100vw);
    gap: calc((22 / var(--designwidth)) * 100vw);
  }
  .l-footer .p-footer-sns__title {
    font-size: max(0.875rem, (14 / var(--designwidth)) * 100vw);
  }
  .l-footer .p-footer-sns-list {
    gap: calc((40 / var(--designwidth)) * 100vw);
  }
}
/*
	Components
	-button
*/
.c-btn-return {
  display: grid;
  place-content: center;
}
.c-btn-return a {
  --_border-radius: 100vmax;
  --_border-size: 2px;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: baseline;
  -moz-column-gap: 6px;
       column-gap: 6px;
  padding: 4px 38px 6px 30px;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  background-color: rgb(255 255 255 / 1);
  border-radius: var(--_border-radius);
  border: var(--_border-size) solid rgb(0 154 171 / 1);
  transition: background-color 0.2s ease-out;
}
.c-btn-return a:focus-visible {
  background-color: rgb(237 246 247 / 1);
}
@media (any-hover: hover) {
  .c-btn-return a:where(:-webkit-any-link, :enabled, summary):hover {
    background-color: rgb(237 246 247 / 1);
  }
  .c-btn-return a:where(:-moz-any-link, :enabled, summary):hover {
    background-color: rgb(237 246 247 / 1);
  }
  .c-btn-return a:where(:any-link, :enabled, summary):hover {
    background-color: rgb(237 246 247 / 1);
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .c-btn-return a.touch-active {
      background-color: rgb(237 246 247 / 1);
    }
  }
}
.c-btn-return a::before {
  content: "";
  inline-size: 0.625rem;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/icon_arrow_left.svg);
          mask-image: url(../img/common/icon_arrow_left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
}

@media print, screen and (min-width: 768px) and (max-width: 1380px) {
  .c-btn-return a {
    -moz-column-gap: calc((6 / var(--designwidth)) * 100vw);
         column-gap: calc((6 / var(--designwidth)) * 100vw);
    padding: calc((4 / var(--designwidth)) * 100vw) calc((38 / var(--designwidth)) * 100vw) calc((6 / var(--designwidth)) * 100vw) calc((30 / var(--designwidth)) * 100vw);
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .c-btn-return a::before {
    inline-size: max(0.625rem, (10 / var(--designwidth)) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-btn-return a {
    -moz-column-gap: calc((6 / var(--designwidth)) * 100vw);
         column-gap: calc((6 / var(--designwidth)) * 100vw);
    padding: calc((4 / var(--designwidth)) * 100vw) calc((38 / var(--designwidth)) * 100vw) calc((6 / var(--designwidth)) * 100vw) calc((30 / var(--designwidth)) * 100vw);
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .c-btn-return a::before {
    inline-size: max(0.625rem, (10 / var(--designwidth)) * 100vw);
  }
}
/*
	Utilities
	-font
*/
.u-font-medium {
  font-weight: 500;
}

.u-font-bold {
  font-weight: 700;
}

/*
	Utilities
	-text
*/
.u-text-center {
  text-align: center;
}

.u-text-link {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
  text-underline-offset: 4px;
}
.u-text-link:focus-visible {
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
@media (any-hover: hover) {
  .u-text-link:where(:-webkit-any-link, :enabled, summary):hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
  .u-text-link:where(:-moz-any-link, :enabled, summary):hover {
    text-decoration-color: transparent;
  }
  .u-text-link:where(:any-link, :enabled, summary):hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .u-text-link.touch-active {
      -webkit-text-decoration-color: transparent;
              text-decoration-color: transparent;
    }
  }
}

/*
	Utilities
	-display
*/
.u-display-sp-only {
  display: none !important;
}

.u-display-pc-only {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .u-display-sp-only {
    display: block !important;
  }
  .u-display-pc-only {
    display: none !important;
  }
}
.u-hidden {
  display: none !important;
}

/*
	Utilities
	-space
*/
.u-mt-72 {
  margin-top: 72px !important;
}

.u-mt-74 {
  margin-top: 74px !important;
}

@media screen and (max-width: 767px) {
  .u-mt-72 {
    margin-top: 17vw !important;
  }
  .u-mt-74 {
    margin-top: 24vw !important;
  }
}
/*
	Animation
	-an-main
*/
.fadeIn {
  --ease-out-cubic: cubic-bezier(0.33, 1, 0.68, 1);
  translate: 0 0.6em;
  opacity: 0;
}
.fadeIn.is-show {
  transition: opacity 0.8s var(--ease-out-cubic), translate 0.8s var(--ease-out-cubic);
  translate: 0;
  opacity: 1;
}

@-webkit-keyframes waveFlowRight {
  0% {
    -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;
  }
  100% {
    -webkit-mask-position: -100% 0%;
    mask-position: -100% 0%;
  }
}

@keyframes waveFlowRight {
  0% {
    -webkit-mask-position: 100% 0%;
    mask-position: 100% 0%;
  }
  100% {
    -webkit-mask-position: -100% 0%;
    mask-position: -100% 0%;
  }
}
@-webkit-keyframes waveFlowLeft {
  0% {
    -webkit-mask-position: 100% 100%;
    mask-position: 100% 100%;
  }
  100% {
    -webkit-mask-position: -100% 100%;
    mask-position: -100% 100%;
  }
}
@keyframes waveFlowLeft {
  0% {
    -webkit-mask-position: 100% 100%;
    mask-position: 100% 100%;
  }
  100% {
    -webkit-mask-position: -100% 100%;
    mask-position: -100% 100%;
  }
}
@-webkit-keyframes waveBlurRight {
  0% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -100% 0%;
  }
}
@keyframes waveBlurRight {
  0% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -100% 0%;
  }
}
@-webkit-keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
/*
	Pages
	-home
*/
.l-top-content {
  margin-inline: auto;
  padding-inline: 114px 36px;
  padding-block: 0 60px;
  max-width: 1206px;
  width: 100%;
}
.l-top-content .p-top-content-heading {
  position: fixed;
  top: 5rem;
  left: 0;
  display: grid;
  grid-template-columns: 71.3334% 14%;
  align-items: center;
  justify-content: space-between;
  width: 150px;
}
.l-top-content .p-top-content-heading__title img {
  width: 100%;
}
.l-top-content .p-top-content-heading__text img {
  width: 100%;
}
.l-top-content .p-top-content-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px 4px;
}
.l-top-content .p-top-content-item {
  width: 100%;
}
.l-top-content .p-top-content-item:nth-child(even) {
  padding-top: 36.1217%;
}
.l-top-content .p-top-content-item a:focus-visible .p-top-content-article-box__visual::after {
  transform: translateX(2px);
}
.l-top-content .p-top-content-item a:focus-visible .p-top-content-article-box__visual > img {
  transform: scale(1.2);
}
@media (any-hover: hover) {
  .l-top-content .p-top-content-item a:where(:-webkit-any-link, :enabled, summary):hover .p-top-content-article-box__visual::after {
    transform: translateX(2px);
  }
  .l-top-content .p-top-content-item a:where(:-moz-any-link, :enabled, summary):hover .p-top-content-article-box__visual::after {
    transform: translateX(2px);
  }
  .l-top-content .p-top-content-item a:where(:any-link, :enabled, summary):hover .p-top-content-article-box__visual::after {
    transform: translateX(2px);
  }
  .l-top-content .p-top-content-item a:where(:-webkit-any-link, :enabled, summary):hover .p-top-content-article-box__visual > img {
    transform: scale(1.2);
  }
  .l-top-content .p-top-content-item a:where(:-moz-any-link, :enabled, summary):hover .p-top-content-article-box__visual > img {
    transform: scale(1.2);
  }
  .l-top-content .p-top-content-item a:where(:any-link, :enabled, summary):hover .p-top-content-article-box__visual > img {
    transform: scale(1.2);
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-top-content .p-top-content-item a.touch-active .p-top-content-article-box__visual::after {
      transform: translateX(2px);
    }
    .l-top-content .p-top-content-item a.touch-active .p-top-content-article-box__visual > img {
      transform: scale(1.2);
    }
  }
}
.l-top-content .p-top-content-article {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
}
.l-top-content .p-top-content-article.show {
  opacity: 1;
  visibility: visible;
}
.l-top-content .p-top-content-article:has(a:focus-visible) {
  outline-width: 2px !important;
  outline-style: solid !important;
  outline-offset: 2px !important;
  outline-color: rgb(66 139 202 / 1);
}
.l-top-content .p-top-content-article-heading {
  position: absolute;
  top: 0;
  right: 0;
  width: 31.48296%;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out;
}
.l-top-content .p-top-content-article-heading.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.l-top-content .p-top-content-article-heading img {
  width: 100%;
}
.l-top-content .p-top-content-article-box {
  display: flex;
  flex-direction: column;
}
.l-top-content .p-top-content-article-box__visual {
  position: relative;
  margin: 13.8212% auto -8.1969% 10.6464%;
  width: 76.0457%;
  aspect-ratio: 400/335;
  overflow: hidden;
  order: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
  z-index: 0;
}
.l-top-content .p-top-content-article-box__visual.show {
  opacity: 1;
  visibility: visible;
}
.l-top-content .p-top-content-article-box__visual:before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 25%;
  aspect-ratio: 1;
  background-image: url(../img/common/icon_corner.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.l-top-content .p-top-content-article-box__visual::after {
  content: "";
  position: absolute;
  bottom: 1.4355%;
  right: 2px;
  width: 3.5%;
  aspect-ratio: 1;
  background-image: url(../img/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease-out;
}
.l-top-content .p-top-content-article-box__visual > img {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-out;
  z-index: -1;
}
.l-top-content .p-top-content-article-box__place {
  width: 47.5286%;
  order: 1;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, visibility 0.4s ease-out;
  z-index: 1;
}
.l-top-content .p-top-content-article-box__place.kenshin__place {
  width: 26.8061%;
}
.l-top-content .p-top-content-article-box__place.history__place {
  width: 55.5134%;
}
.l-top-content .p-top-content-article-box__place.childcare__place {
  width: 62.9278%;
}
.l-top-content .p-top-content-article-box__place.zoo__place {
  width: 45.2472%;
}
.l-top-content .p-top-content-article-box__place.library__place {
  width: 53.9924%;
}
.l-top-content .p-top-content-article-box__place.bousai__place {
  width: 55.5134%;
}
.l-top-content .p-top-content-article-box__place.green__place {
  width: 33.4601%;
}
.l-top-content .p-top-content-article-box__place.health__place {
  width: 70.5324%;
}
.l-top-content .p-top-content-article-box__place.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.l-top-content .p-top-content-article-box__title {
  margin: 5px auto 0 6px;
  font-size: 1.125rem;
  line-height: 1.6112;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  order: 2;
}
.l-top-content .p-top-content-article-box__title > .point {
  color: rgb(222 35 88 / 1);
}
.l-top-content .p-top-content-article-box__title > .notice {
  display: block;
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
}
.l-top-content .p-top-content-banners {
  display: grid;
  place-items: center;
  margin-top: 120px;
}
.l-top-content .p-top-content-banner {
  width: 47.3485%;
}
.l-top-content .p-top-content-banner a {
  position: relative;
  display: block;
  transition: opacity 0.2s ease-in-out;
}
.l-top-content .p-top-content-banner a::after {
  content: "";
  position: absolute;
  bottom: 2.4391%;
  right: 2px;
  width: 2.8%;
  aspect-ratio: 1;
  background-image: url(../img/common/icon_arrow_right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.2s ease-out;
}
.l-top-content .p-top-content-banner a > img {
  width: 100%;
  transition: transform 0.2s ease-out;
}
.l-top-content .p-top-content-banner a:focus-visible {
  opacity: 0.8;
}
.l-top-content .p-top-content-banner a:focus-visible::after {
  transform: translateX(2px);
}
@media (any-hover: hover) {
  .l-top-content .p-top-content-banner a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-top-content .p-top-content-banner a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-top-content .p-top-content-banner a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-top-content .p-top-content-banner a:where(:-webkit-any-link, :enabled, summary):hover::after {
    transform: translateX(2px);
  }
  .l-top-content .p-top-content-banner a:where(:-moz-any-link, :enabled, summary):hover::after {
    transform: translateX(2px);
  }
  .l-top-content .p-top-content-banner a:where(:any-link, :enabled, summary):hover::after {
    transform: translateX(2px);
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-top-content .p-top-content-banner a.touch-active {
      opacity: 0.8;
    }
    .l-top-content .p-top-content-banner a.touch-active::after {
      transform: translateX(2px);
    }
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  .l-top-content {
    padding-inline: calc((114 / 1400) * 100%) calc((36 / 1400) * 100%);
    width: calc((1206 / 1400) * 100%);
  }
  .l-top-content .p-top-content-heading {
    width: calc((150 / 1400) * 100%);
  }
}
@media screen and (max-width: 767px) {
  .l-top-content {
    padding-inline: unset;
    padding-block: 0 calc((30 / var(--designwidth)) * 100vw);
  }
  .l-top-content .p-top-content-heading {
    position: relative;
    top: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: calc((20 / var(--designwidth)) * 100vw);
    width: unset;
  }
  .l-top-content .p-top-content-heading__title {
    width: 100%;
  }
  .l-top-content .p-top-content-heading__text {
    width: 73.8667%;
  }
  .l-top-content .p-top-content-list {
    grid-template-columns: 1fr;
    -moz-column-gap: unset;
         column-gap: unset;
    row-gap: calc((50 / var(--designwidth)) * 100vw);
    margin: calc((30 / var(--designwidth)) * 100vw) auto 0;
    width: calc((327 / var(--designwidth)) * 100vw);
  }
  .l-top-content .p-top-content-item:nth-child(even) {
    padding-top: unset;
  }
  .l-top-content .p-top-content-article-heading {
    width: 33.63921%;
  }
  .l-top-content .p-top-content-article-box__visual {
    margin: calc((46 / var(--designwidth)) * 100vw) auto calc((-30 / var(--designwidth)) * 100vw) calc((32 / var(--designwidth)) * 100vw);
    width: 76.4526%;
  }
  .l-top-content .p-top-content-article-box__visual:before {
    width: 24.8%;
  }
  .l-top-content .p-top-content-article-box__visual::after {
    width: 5.6%;
  }
  .l-top-content .p-top-content-article-box__place {
    width: 53.5169%;
  }
  .l-top-content .p-top-content-article-box__place.kenshin__place {
    width: 29.9695%;
  }
  .l-top-content .p-top-content-article-box__place.history__place {
    width: 62.3854%;
  }
  .l-top-content .p-top-content-article-box__place.childcare__place {
    width: 70.9481%;
  }
  .l-top-content .p-top-content-article-box__place.zoo__place {
    width: 51.0704%;
  }
  .l-top-content .p-top-content-article-box__place.library__place {
    width: 60.8563%;
  }
  .l-top-content .p-top-content-article-box__place.bousai__place {
    width: 59.0215%;
  }
  .l-top-content .p-top-content-article-box__place.green__place {
    width: 37.6147%;
  }
  .l-top-content .p-top-content-article-box__place.health__place {
    width: 79.5108%;
  }
  .l-top-content .p-top-content-article-box__title {
    margin: calc((5 / var(--designwidth)) * 100vw) auto 0 0;
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .l-top-content .p-top-content-article-box__title > .notice {
    font-size: max(0.875rem, (14 / var(--designwidth)) * 100vw);
  }
  .l-top-content .p-top-content-banners {
    margin: calc((40 / var(--designwidth)) * 100vw) auto 0;
    width: calc((327 / var(--designwidth)) * 100vw);
  }
  .l-top-content .p-top-content-banner {
    width: 100%;
  }
  .l-top-content .p-top-content-banner a::after {
    width: 3.0582%;
  }
}
/*
	Pages
	-sub
*/
.l-sub {
  position: fixed;
  top: 0;
  left: 0;
}
.l-sub .p-sub-heading {
  display: grid;
  justify-items: center;
  row-gap: 18px;
}
.l-sub .p-sub-heading__title {
  width: 52px;
}
.l-sub .p-sub-heading__text {
  width: 14px;
}
.l-sub .p-sub-heading__text img {
  width: 100%;
}

@media print, screen and (min-width: 768px) and (max-width: 1380px) {
  .l-sub .p-sub-heading {
    row-gap: calc((18 / var(--designwidth)) * 100vw);
  }
  .l-sub .p-sub-heading__title {
    width: calc((52 / var(--designwidth)) * 100vw);
  }
  .l-sub .p-sub-heading__text {
    width: calc((14 / var(--designwidth)) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-sub {
    position: absolute;
    width: 50%;
  }
  .l-sub .p-sub-heading {
    justify-items: unset;
    row-gap: unset;
  }
  .l-sub .p-sub-heading__title {
    width: 100%;
  }
  .l-sub .p-sub-heading__text {
    padding: calc((10 / var(--designwidth)) * 100vw) 0 0 calc((10 / var(--designwidth)) * 100vw);
    width: auto;
  }
}
.l-detail {
  margin-inline: auto;
  padding-block: 0 60px;
  max-width: 1100px;
  width: 100%;
}
.l-detail .p-detail-article {
  position: relative;
  display: grid;
  grid-template-columns: 53.6364% 40.9091%;
  justify-content: space-between;
}
.l-detail .p-detail-article-heading {
  position: absolute;
  top: 0;
  right: 0;
  width: 12.5455%;
}
.l-detail .p-detail-article-heading__title > img {
  width: 100%;
}
.l-detail .p-detail-article-item {
  display: flex;
  flex-direction: column;
}
.l-detail .p-detail-article-item__place {
  margin-top: 3.75rem;
  max-width: 66.6667%;
  order: 0;
}
.l-detail .p-detail-article-item__place > img {
  width: 100%;
}
.l-detail .p-detail-article-item__place.kenshin__place {
  max-width: 37.5556%;
}
.l-detail .p-detail-article-item__place.history__place {
  max-width: 77.7778%;
}
.l-detail .p-detail-article-item__place.childcare__place {
  max-width: 67.7778%;
}
.l-detail .p-detail-article-item__place.zoo__place {
  max-width: 63.5556%;
}
.l-detail .p-detail-article-item__place.library__place {
  max-width: 75.5556%;
}
.l-detail .p-detail-article-item__place.bousai__place {
  max-width: 78%;
}
.l-detail .p-detail-article-item__place.green__place {
  max-width: 47.1112%;
}
.l-detail .p-detail-article-item__place.health__place {
  max-width: 72.6667%;
}
.l-detail .p-detail-article-item__place.smile__place {
  max-width: 66%;
}
.l-detail .p-detail-article-item__word {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
}
.l-detail .p-detail-article-item__title {
  margin-top: 10px;
  width: 82.2223%;
  font-size: 1.5rem;
  line-height: 1.5834;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  order: 1;
}
.l-detail .p-detail-article-item__title > .point {
  color: rgb(222 35 88 / 1);
}
.l-detail .p-detail-article-item__title > .notice {
  display: block;
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
}
.l-detail .p-detail-article-item__text {
  margin-top: 27px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(0 131 145 / 1);
  order: 2;
}
.l-detail .p-detail-article-item__text > .notice {
  display: block;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgb(0 131 145 / 1);
}
.l-detail .p-detail-article-item__copy {
  margin-top: 19px;
  font-size: 1.5rem;
  line-height: 1.5834;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  order: 3;
}
.l-detail .p-detail-article-item__btn {
  margin-top: 26px;
  order: 4;
}
.l-detail .p-detail-article-item__btn a {
  --_border-radius: 100vmax;
  --_border-size: 2px;
  display: grid;
  grid-template-columns: auto auto;
  place-content: center;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 15px 10px 17px;
  font-size: 1rem;
  line-height: 1.4445;
  font-weight: 700;
  color: rgb(255 255 255 / 1);
  background-color: rgb(222 35 88 / 1);
  border-radius: var(--_border-radius);
  border: var(--_border-size) solid transparent;
  text-align: center;
  transition: color 0.2s ease-out, border-color 0.2s ease-out, background-color 0.2s ease-out;
}
.l-detail .p-detail-article-item__btn a:focus-visible {
  color: rgb(222 35 88 / 1);
  background-color: rgb(255 255 255 / 1);
  border: var(--_border-size) solid rgb(222 35 88 / 1);
}
@media (any-hover: hover) {
  .l-detail .p-detail-article-item__btn a:where(:-webkit-any-link, :enabled, summary):hover {
    color: rgb(222 35 88 / 1);
    background-color: rgb(255 255 255 / 1);
    border: var(--_border-size) solid rgb(222 35 88 / 1);
  }
  .l-detail .p-detail-article-item__btn a:where(:-moz-any-link, :enabled, summary):hover {
    color: rgb(222 35 88 / 1);
    background-color: rgb(255 255 255 / 1);
    border: var(--_border-size) solid rgb(222 35 88 / 1);
  }
  .l-detail .p-detail-article-item__btn a:where(:any-link, :enabled, summary):hover {
    color: rgb(222 35 88 / 1);
    background-color: rgb(255 255 255 / 1);
    border: var(--_border-size) solid rgb(222 35 88 / 1);
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-detail .p-detail-article-item__btn a.touch-active {
      color: rgb(222 35 88 / 1);
      background-color: rgb(255 255 255 / 1);
      border: var(--_border-size) solid rgb(222 35 88 / 1);
    }
  }
}
.l-detail .p-detail-article-item__btn a::after {
  content: "";
  inline-size: 0.9375rem;
  aspect-ratio: 15/13;
  -webkit-mask-image: url(../img/common/icon_blank.svg);
          mask-image: url(../img/common/icon_blank.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
}
.l-detail .p-detail__btn {
  margin: 30px auto 0;
}

@media print, screen and (min-width: 768px) and (max-width: 1380px) {
  .l-detail {
    width: calc((1100 / 1380) * 100%);
  }
}
@media screen and (max-width: 767px) {
  .l-detail {
    margin: calc((45 / var(--designwidth)) * 100vw) auto 0;
    padding-block: 0 calc((60 / var(--designwidth)) * 100vw);
    width: calc((327 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article {
    grid-template-columns: 1fr;
  }
  .l-detail .p-detail-article-heading {
    width: 32.1101%;
  }
  .l-detail .p-detail-article-item__visual {
    margin-top: calc((48 / var(--designwidth)) * 100vw);
    width: 85.3212%;
  }
  .l-detail .p-detail-article-item__place {
    margin-top: calc((40 / var(--designwidth)) * 100vw);
    width: 99.0826%;
  }
  .l-detail .p-detail-article-item__place.kenshin__place {
    max-width: 51.682%;
  }
  .l-detail .p-detail-article-item__place.history__place {
    max-width: 89.2967%;
  }
  .l-detail .p-detail-article-item__place.childcare__place {
    max-width: 77.6759%;
  }
  .l-detail .p-detail-article-item__place.zoo__place {
    max-width: 72.7829%;
  }
  .l-detail .p-detail-article-item__place.library__place {
    max-width: 86.8502%;
  }
  .l-detail .p-detail-article-item__place.bousai__place {
    max-width: 89.2967%;
  }
  .l-detail .p-detail-article-item__place.green__place {
    max-width: 53.8227%;
  }
  .l-detail .p-detail-article-item__place.health__place {
    max-width: 85.627%;
  }
  .l-detail .p-detail-article-item__place.smile__place {
    max-width: 75.841%;
  }
  .l-detail .p-detail-article-item__word {
    margin-top: calc((8 / var(--designwidth)) * 100vw);
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__title {
    margin-top: calc((10 / var(--designwidth)) * 100vw);
    width: 100%;
    font-size: max(1.5rem, (24 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__title > .notice {
    font-size: max(0.875rem, (14 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__text {
    margin-top: calc((27 / var(--designwidth)) * 100vw);
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__text > .notice {
    font-size: max(0.875rem, (14 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__copy {
    margin-top: calc((29 / var(--designwidth)) * 100vw);
    font-size: max(1.5rem, (24 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__btn {
    margin-top: calc((32 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__btn a {
    -moz-column-gap: calc((8 / var(--designwidth)) * 100vw);
         column-gap: calc((8 / var(--designwidth)) * 100vw);
    padding: calc((15 / var(--designwidth)) * 100vw) calc((10 / var(--designwidth)) * 100vw) calc((17 / var(--designwidth)) * 100vw);
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail-article-item__btn a::after {
    content: "";
    inline-size: max(0.9375rem, (15 / var(--designwidth)) * 100vw);
  }
  .l-detail .p-detail__btn {
    margin: calc((27 / var(--designwidth)) * 100vw) auto 0;
  }
}
.l-about {
  margin: 50px auto 0;
  padding-block: 0 60px;
  max-width: 800px;
  width: 100%;
}
.l-about .p-about-heading {
  display: grid;
  justify-items: center;
  row-gap: 20px;
}
.l-about .p-about-heading__title {
  font-size: 2rem;
  font-weight: 700;
  color: rgb(222 35 88 / 1);
  text-align: center;
}
.l-about .p-about-heading__text {
  font-size: 1.125rem;
  line-height: 1.7778;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  text-align: center;
}
.l-about .p-about-feature {
  display: grid;
  justify-items: center;
  row-gap: 20px;
  margin-top: 50px;
}
.l-about .p-about-feature__title {
  font-size: 1.5rem;
  line-height: 1.5834;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
}
.l-about .p-about-feature__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(0 131 145 / 1);
}
.l-about .p-about-contact {
  --_border-size: 1px;
  margin-top: 100px;
  padding: 30px 40px 40px;
  border: var(--_border-size) solid rgb(0 131 145 / 1);
}
.l-about .p-about-contact__title {
  font-size: 1.5rem;
  line-height: 1.5834;
  font-weight: 700;
  color: rgb(0 131 145 / 1);
  text-align: center;
}
.l-about .p-about-contact-info {
  display: grid;
  row-gap: 8px;
  margin-top: 24px;
}
.l-about .p-about-contact-info__text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(0 131 145 / 1);
}
.l-about .p-about-contact__at {
  margin-top: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  line-height: 1.75;
  color: rgb(0 131 145 / 1);
}
.l-about .p-about-contact__at a {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  -moz-column-gap: 8px;
       column-gap: 8px;
  transition: opacity 0.2s ease-out, -webkit-text-decoration-color 0.2s ease-out;
  transition: opacity 0.2s ease-out, text-decoration-color 0.2s ease-out;
  transition: opacity 0.2s ease-out, text-decoration-color 0.2s ease-out, -webkit-text-decoration-color 0.2s ease-out;
}
.l-about .p-about-contact__at a::after {
  content: "";
  inline-size: 0.9375rem;
  aspect-ratio: 15/13;
  -webkit-mask-image: url(../img/common/icon_blank.svg);
          mask-image: url(../img/common/icon_blank.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
}
.l-about .p-about-contact__at a:focus-visible {
  opacity: 0.8;
}
@media (any-hover: hover) {
  .l-about .p-about-contact__at a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-about .p-about-contact__at a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
  .l-about .p-about-contact__at a:where(:any-link, :enabled, summary):hover {
    opacity: 0.8;
  }
}
@media (pointer: coarse), (hover: none) {
  @supports (touch-action: none) {
    .l-about .p-about-contact__at a.touch-active {
      opacity: 0.8;
    }
  }
}
.l-about .p-about__btn {
  margin: 82px auto 0;
}

@media print, screen and (min-width: 768px) and (max-width: 1024px) {
  .l-about {
    width: calc((800 / 1024) * 100%);
  }
}
@media screen and (max-width: 767px) {
  .l-about {
    margin: calc((78 / var(--designwidth)) * 100vw) auto 0;
    padding-block: 0 calc((60 / var(--designwidth)) * 100vw);
    width: calc((327 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-heading {
    row-gap: calc((16 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-heading__title {
    font-size: max(2rem, (32 / var(--designwidth)) * 100vw);
    line-height: 1.5;
  }
  .l-about .p-about-heading__text {
    font-size: max(1.125rem, (18 / var(--designwidth)) * 100vw);
    text-align: left;
  }
  .l-about .p-about-feature {
    row-gap: calc((12 / var(--designwidth)) * 100vw);
    margin-top: calc((50 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-feature__title {
    font-size: max(1.5rem, (24 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-feature__text {
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-contact {
    margin-top: calc((60 / var(--designwidth)) * 100vw);
    padding: calc((32 / var(--designwidth)) * 100vw) calc((24 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-contact__title {
    font-size: max(1.5rem, (24 / var(--designwidth)) * 100vw);
    text-align: left;
  }
  .l-about .p-about-contact-info {
    row-gap: calc((18 / var(--designwidth)) * 100vw);
    margin-top: calc((24 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-contact-info__text {
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-contact__at {
    margin-top: calc((18 / var(--designwidth)) * 100vw);
    font-size: max(1rem, (16 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-contact__at a {
    -moz-column-gap: calc((8 / var(--designwidth)) * 100vw);
         column-gap: calc((8 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about-contact__at a::after {
    inline-size: max(0.9375rem, (15 / var(--designwidth)) * 100vw);
  }
  .l-about .p-about__btn {
    margin: calc((40 / var(--designwidth)) * 100vw) auto 0;
  }
}
/*
	Accessibility
	-a-main
*/
*:focus-visible {
  outline-width: 2px !important;
  outline-style: solid !important;
  outline-offset: 2px !important;
  outline-color: rgb(66 139 202 / 1);
}

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
/*# sourceMappingURL=style.css.map */