@charset "UTF-8";
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 70.3%;
  }
}
@media screen and (max-width: 440px) {
  html {
    font-size: 3.125vw;
  }
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
}
@media screen and (max-width: 440px) {
  body {
    font-size: clamp(14px, 1.4rem, 16px);
  }
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

iframe {
  max-width: 100%;
}

a {
  display: block;
  transition: 0.3s;
}

.di-b {
  display: inline-block;
}

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

.pc-only {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-only {
    display: inline;
  }
}

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

.tb-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .tb-only {
    display: block;
  }
}

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

.nowrap {
  white-space: nowrap !important;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

.ta-c {
  text-align: center;
}

.colR {
  color: #c71444;
}

.back-subcolor {
  background-color: #FFFFD2;
}

.textMin {
  font-size: 0.8em;
}

.emphasisText {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 440px) {
  .emphasisText {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}

.textBig {
  font-size: 1.2em;
}

.filter--white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(127deg) brightness(103%) contrast(103%);
}
.filter--main {
  filter: brightness(0) saturate(100%) invert(25%) sepia(14%) saturate(0%) hue-rotate(243deg) brightness(96%) contrast(91%);
}

.link {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.8em 3em 0.8em 1.5em;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  background: #444;
  color: #fff;
  border: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 440px) {
  .link {
    font-size: 1.3rem;
  }
}
.link:after {
  position: absolute;
  content: "↑";
  transform: rotate(45deg);
  font-size: 0.8em;
  color: #fff;
  background: #c71444;
  width: 1.7em;
  aspect-ratio: 1;
  border-radius: 50%;
  font-weight: 600;
  display: grid;
  place-content: center;
  place-items: center;
  right: 1em;
  transition: 0.3s;
  z-index: 0;
}
.link:hover {
  border: 1px solid rgba(255, 255, 255, 0.5607843137);
  background-color: #eee;
  color: #444;
}
.link:hover:after {
  content: "";
  transform: scale(0.5) rotate(45deg);
}
.link--white {
  background-color: #fff;
  color: #000;
  border: 1px solid #aaa;
  font-weight: 500;
}
.link--white:hover {
  border: 1px solid rgba(170, 170, 170, 0.3960784314);
}

.textlink, .changeable-content a:not(.link) {
  color: #c71444;
  text-decoration: underline;
}
.textlink:hover, .changeable-content a:not(.link):hover {
  opacity: 0.7;
}

.textlink--arrow {
  position: relative;
  padding-right: 1.1em;
}
.textlink--arrow:after {
  position: absolute;
  content: "↑";
  transform: rotate(45deg);
}

.disc dd, .disc li {
  position: relative;
  padding-left: 0.9em;
}
.disc dd::before, .disc li::before {
  position: absolute;
  content: "・";
  left: 0;
}
@media screen and (max-width: 440px) {
  .disc--sp-none dd, .disc--sp-none li {
    position: static;
    padding-left: 0;
  }
}
@media screen and (max-width: 440px) {
  .disc--sp-none dd::before, .disc--sp-none li::before {
    display: none;
  }
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  overflow: hidden;
  background: #C8C8C8;
  background: linear-gradient(180deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (min-width: 768px) {
  .hero {
    flex-direction: row;
    height: 100vh;
    height: 100svh;
    min-height: 900px;
    background: linear-gradient(-135deg, rgb(200, 200, 200) 0%, rgb(255, 255, 255) 100%);
  }
}
@media screen and (min-width: 1280px) {
  .hero {
    min-height: 1000px;
  }
}
.hero_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3vh 0;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .hero_left {
    width: 35%;
  }
}
.hero_hgroup {
  position: absolute;
  content: "";
  z-index: 1;
  top: 50px;
  left: 5%;
}
@media screen and (min-width: 768px) {
  .hero_hgroup {
    position: inherit;
  }
}
@media screen and (max-width: 440px) {
  .hero_hgroup {
    top: 5vw;
  }
}
.hero_logo {
  max-width: 100px;
  margin-bottom: 2vh;
}
@media screen and (min-width: 768px) {
  .hero_logo {
    margin-left: 5%;
    max-width: 160px;
  }
}
.hero_text {
  font-size: clamp(2.4rem, 7.5vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  left: 3%;
  z-index: 1;
  text-shadow: 0px 0px 15px #000, 1px 1px 30px #000, -1px -1px 30px #000;
}
@media screen and (max-width: 440px) {
  .hero_text {
    padding-top: 28vh;
  }
}
@media screen and (min-width: 768px) {
  .hero_text {
    position: absolute;
    content: "";
    font-size: clamp(4rem, 5vw, 7rem);
    font-weight: 200;
    color: #000;
    text-shadow: 0px 5px 30px #fff, 5px 0px 30px #fff, 1px 1px 30px #fff, -1px -1px 30px #fff, 5px 5px 30px #fff;
  }
}
@media screen and (min-width: 1280px) {
  .hero_text {
    left: 5%;
  }
}
.hero_clinic-list, .hero_link-list {
  width: 85%;
  text-align: center;
  margin-inline: auto;
  max-width: 480px;
}
.hero_clinic-list {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .hero_clinic-list {
    display: block;
    padding-top: clamp(22rem, 24vw, 28rem);
  }
}
.hero_clinic-list li {
  position: relative;
  height: 75px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 20px;
  width: 100%;
}
.hero_clinic-list li:nth-child(1) {
  background-image: url(../img/top/hero_clinic-link1.jpg);
}
.hero_clinic-list li:nth-child(2) {
  background-image: url(../img/top/hero_clinic-link2.jpg);
}
.hero_clinic-list li:nth-child(3) {
  background-image: url(../img/top/hero_clinic-link3.jpg);
}
@media screen and (min-width: 768px) {
  .hero_clinic-list li {
    width: unset;
    height: 100px;
  }
}
.hero_clinic-link {
  height: 100%;
  color: #fff;
  display: grid;
  place-content: center;
  place-items: center;
  backdrop-filter: brightness(0.7) blur(2px);
}
.hero_clinic-link img {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 250px;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .hero_clinic-link img {
    width: 80%;
    max-width: 300px;
  }
}
.hero_clinic-link:hover {
  backdrop-filter: brightness(0.9) blur(0px);
}
.hero_link-list {
  display: flex;
  justify-content: space-around;
  gap: 1.5vw;
  font-size: 1.35rem;
}
@media screen and (min-width: 768px) {
  .hero_link-list {
    justify-content: space-between;
  }
}
.hero_link-list li {
  width: calc(50% - 0.75vw);
  max-width: 250px;
  text-align: center;
}
.hero_link {
  border: 1px solid #444;
  padding: 10px 0 12px;
}
.hero_link:hover {
  opacity: 0.8;
}
.hero_right {
  filter: grayscale(0.2);
  height: 65vh;
  min-height: 500px;
}
@media screen and (min-width: 768px) {
  .hero_right {
    width: 65%;
    height: 100%;
  }
}
.hero_right img {
  height: 100%;
  max-width: unset;
}

.swiper {
  z-index: 0;
  width: 100%;
  height: 100%;
}

.swiper img {
  width: 100%;
  height: 100%;
}

#drawer {
  display: none;
}
#drawer:checked + .drawer-btn span {
  border-bottom: solid 1px transparent;
}
#drawer:checked + .drawer-btn span::before {
  transform: rotate(135deg) scaleX(1.2);
  top: 50%;
}
#drawer:checked + .drawer-btn span::after {
  transform: rotate(-135deg) scaleX(1.2);
  top: 50%;
}
#drawer:checked ~ .header {
  right: 0;
  opacity: 1;
  pointer-events: visible;
}
#drawer:checked ~ .header .accordion .Label {
  display: block;
}

label {
  position: fixed;
}

label[for] {
  pointer-events: visible;
}

.drawer-btn {
  position: fixed;
  background: #fff;
  display: block;
  height: 50px;
  width: 50px;
  transition: transform 0.4s;
  top: 0;
  right: 0;
  z-index: 1001;
}
@media screen and (min-width: 1280px) {
  .drawer-btn {
    pointer-events: none;
  }
}
.drawer-btn span {
  border-bottom: solid 3px #444;
  display: block;
  position: absolute;
  content: "";
  top: 21.5px;
  left: 25%;
  width: 50%;
  transition: transform 0.4s;
}
.drawer-btn span::before, .drawer-btn span::after {
  border-bottom: solid 3px #444;
  display: block;
  position: absolute;
  content: "";
  top: calc(50% + 1.5px);
  left: 0;
  width: 100%;
  transition: transform 0.4s;
}
.drawer-btn span::before {
  transform: translateY(-11px);
}
.drawer-btn span::after {
  transform: translateY(9px);
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 0.1s;
  height: 100vh;
  height: 100svh;
  width: 100%;
  background: rgba(68, 68, 68, 0.9490196078);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.header_head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 90%;
  margin-inline: auto;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .header_head {
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .header_head {
    flex-wrap: nowrap;
  }
}
.header_head a {
  width: 120px;
  margin-inline: unset;
}
.header_head a img {
  width: 100%;
}
.header_head a:hover {
  opacity: 0.8;
}
.header_head p {
  font-size: clamp(3.5rem, 4.5vw, 4rem);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 440px) {
  .header_head p {
    font-size: 2.3rem;
  }
}
.header_link {
  display: flex;
  flex-wrap: wrap;
  gap: 25px 3vw;
  position: relative;
  z-index: 3;
  padding-bottom: 50px;
  justify-content: center;
}
.header_link li {
  width: calc(50% - 1.55vw);
  min-width: 350px;
}
@media screen and (max-width: 440px) {
  .header_link li {
    width: 90%;
    min-width: unset;
  }
}
@media screen and (min-width: 768px) {
  .header_link li {
    width: calc(33% - 4.5vw);
    min-width: 400px;
  }
}
.header_link img {
  width: 100%;
}
.header_footlink {
  padding: 1em;
  width: 100%;
  font-weight: 600;
  background-color: rgba(199, 20, 68, 0.4431372549);
  color: #fff;
  text-align: center;
}
.header_footlink:hover {
  background-color: #c71444;
}
.header .accordion .Label {
  display: none;
}

.nav {
  width: 85%;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
  display: grid;
  position: relative;
  z-index: 2;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(9, 1fr);
  grid-column-gap: 5vw;
}
@media screen and (min-width: 768px) {
  .nav {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 3vw;
    width: 95%;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 440px) {
  .nav {
    width: 100%;
    border-top: 1px solid #aaa;
    max-width: unset;
    display: block;
  }
}

.clinic-list {
  max-width: -moz-max-content;
  max-width: max-content;
  grid-area: 6/1/10/3;
  margin-inline: auto;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .clinic-list {
    grid-area: 1/3/5/5;
    margin-left: auto;
    margin-top: 0;
  }
}
@media screen and (max-width: 440px) {
  .clinic-list {
    width: 90%;
    margin-top: 50px;
    margin-inline: auto;
    max-width: unset;
  }
}
.clinic-list_ttl {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5em;
  text-align: center;
}
.clinic-list li {
  background: #444;
  color: #fff;
  margin-bottom: 30px;
  max-width: 500px;
}
.clinic-list a {
  display: flex;
  padding: 10px 10px 15px;
  gap: 15px;
  position: relative;
  letter-spacing: 0.01em;
  font-size: 1.5rem;
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 440px) {
  .clinic-list a {
    flex-direction: column;
    padding: 0;
  }
}
.clinic-list a::after {
  position: absolute;
  content: "↑";
  transform: rotate(45deg);
  bottom: 7px;
  right: 7px;
  font-size: 1.2em;
}
.clinic-list a img {
  width: 30%;
}
@media screen and (max-width: 440px) {
  .clinic-list a img {
    width: 100%;
  }
}
.clinic-list a > span {
  min-width: 200px;
  width: 70%;
}
@media screen and (max-width: 440px) {
  .clinic-list a > span {
    padding: 0 10px 15px;
    width: 100%;
  }
}
.clinic-list a:hover {
  opacity: 0.8;
}
.clinic-list b {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
}
@media screen and (max-width: 440px) {
  .clinic-list b {
    font-size: 1.8rem;
  }
}
.clinic-list .mirai a {
  border: 3px solid #08457e;
}
.clinic-list .mirai a::after {
  color: #08457e;
}
.clinic-list .kawaguchi a {
  border: 3px solid #cea66f;
}
.clinic-list .kawaguchi a::after {
  color: #cea66f;
}
.clinic-list .hanaten a {
  border: 3px solid #c5825b;
}
.clinic-list .hanaten a::after {
  color: #c5825b;
}

header .hojin-list:nth-child(1), footer .hojin-list:nth-child(1) {
  grid-area: 1/1/2/2;
}
header .hojin-list:nth-child(2), footer .hojin-list:nth-child(2) {
  grid-area: 1/2/6/3;
}
@media screen and (min-width: 768px) {
  header .hojin-list:nth-child(2), footer .hojin-list:nth-child(2) {
    grid-area: 1/2/6/3;
    margin-inline: auto;
  }
}
header .hojin-list:nth-child(3), footer .hojin-list:nth-child(3) {
  grid-area: 2/1/5/2;
}
@media screen and (min-width: 768px) {
  header .hojin-list:nth-child(3), footer .hojin-list:nth-child(3) {
    grid-area: 2/1/5/2;
  }
}
header .hojin-list > li, footer .hojin-list > li {
  margin-bottom: 30px;
  font-size: 1.7rem;
  font-weight: 600;
}
@media screen and (max-width: 440px) {
  header .hojin-list > li, footer .hojin-list > li {
    border-bottom: 1px solid #aaa;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 440px) {
  header .hojin-list > li:hover, footer .hojin-list > li:hover {
    background: #c71444;
    color: #fff;
  }
}
header .hojin-list > li li, footer .hojin-list > li li {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 440px) {
  header .hojin-list > li li, footer .hojin-list > li li {
    margin-top: 0;
    border-top: 1px solid #aaa;
    background-color: #eee;
    color: #444;
  }
}
header .hojin-list > li li a, footer .hojin-list > li li a {
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
header .hojin-list > li li a:hover, footer .hojin-list > li li a:hover {
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 440px) {
  header .hojin-list > li li a:hover, footer .hojin-list > li li a:hover {
    border-bottom: 1px solid transparent;
    background-color: #c71444;
    color: #fff;
  }
}
@media screen and (max-width: 440px) {
  header .hojin-list > li a, footer .hojin-list > li a {
    padding: 0.8em 1em !important;
    display: flex;
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 440px) {
  header .hojin-list > li a::after, footer .hojin-list > li a::after {
    position: absolute;
    content: "↑";
    transform: rotate(45deg);
    right: 1rem;
    font-size: 1rem;
    font-weight: 600;
  }
}
header .hojin-list > li > a, footer .hojin-list > li > a {
  display: flex;
  align-items: center;
}
header .hojin-list > li > a:before, footer .hojin-list > li > a:before {
  position: absolute;
  content: "";
  background: #444;
  width: 0.3em;
  aspect-ratio: 1;
  opacity: 0;
  transition: 0.3s;
  left: 0;
  border-radius: 50%;
}
@media screen and (max-width: 440px) {
  header .hojin-list > li > a:before, footer .hojin-list > li > a:before {
    display: none;
  }
}
header .hojin-list > li > a:hover, footer .hojin-list > li > a:hover {
  padding-left: 0.7em;
  left: 0.9em;
}
@media screen and (max-width: 440px) {
  header .hojin-list > li > a:hover, footer .hojin-list > li > a:hover {
    padding-left: 1em;
  }
}
header .hojin-list > li > a:hover:before, footer .hojin-list > li > a:hover:before {
  opacity: 1;
}

.top-section {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #fff;
}
@media screen and (max-width: 440px) {
  .top-section {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}

.top-section h2 {
  font-weight: 600;
  font-size: 4rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 440px) {
  .top-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }
}

.top-message {
  display: flex;
  flex-direction: column-reverse;
  background-color: #eee;
}
@media screen and (min-width: 768px) {
  .top-message {
    flex-direction: row-reverse;
    background-image: url(../img/top/top-message.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left 50% center;
    height: 95vh;
    height: 95svh;
    min-height: 900px;
  }
}
@media screen and (min-width: 1280px) {
  .top-message {
    background-position: right center;
  }
}
.top-message_imgbox {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .top-message_imgbox {
    display: none;
  }
}
.top-message h2 {
  font-size: clamp(2.4rem, 2vw, 3rem);
  margin-bottom: 0.5em;
}
@media screen and (max-width: 440px) {
  .top-message h2 {
    font-size: 2rem;
  }
}
.top-message_textbox {
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-message_textbox {
    background-color: rgba(238, 238, 238, 0.8823529412);
    height: -moz-fit-content;
    height: fit-content;
    padding: 1em 2em;
    margin-right: 2vw;
    max-width: 900px;
    width: 55%;
  }
}
.top-message_text {
  line-height: 1.5;
}

.top-future {
  background-color: #444;
  background-image: url(../img/top/logo-back.svg);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 60%;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-future {
    padding-top: 125px;
    background-size: 45%;
  }
}
@media screen and (min-width: 1280px) {
  .top-future {
    background-size: 35%;
  }
}
@media screen and (max-width: 440px) {
  .top-future {
    padding-top: 50px;
    background-size: 80%;
  }
}
.top-future .wrapper {
  max-width: 1600px;
}
.top-future h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}
@media screen and (min-width: 768px) {
  .top-future h2 {
    font-size: clamp(3.8rem, 4vw, 4rem);
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 440px) {
  .top-future h2 {
    margin-bottom: 1em;
  }
}
.top-future_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 440px) {
  .top-future_box {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .top-future_box {
    flex-wrap: nowrap;
  }
}
.top-future_ttl3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 440px) {
  .top-future_ttl3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .top-future_ttl3 {
    margin-bottom: 1.5em;
  }
}
.top-future_text {
  line-height: 1.5;
  margin-bottom: 50px;
}
.top-future_textbox {
  width: clamp(400px, 40%, 850px);
  flex-grow: 1;
}
.top-future_imgbox {
  width: 60%;
  flex-grow: 1;
}

.top-group {
  padding-top: 125px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 440px) {
  .top-group {
    padding-top: 50px;
  }
}
.top-group h2 {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 95%;
  margin-inline: auto;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.5em;
}
.top-group h2 span:not(.di-b) {
  display: block;
  border-top: 2px solid currentColor;
  margin-top: 10px;
  padding-top: 10px;
}
@media screen and (max-width: 440px) {
  .top-group h2 {
    margin-bottom: 1.5em;
    font-size: 2.6rem;
  }
}
.top-group_list {
  width: 95%;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .top-group_list {
    width: 90%;
    gap: 3rem;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .top-group_list {
    gap: 20px;
  }
}
@media screen and (min-width: 1280px) {
  .top-group_list {
    width: 60%;
    gap: 40px;
  }
}
.top-group_list li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 440px) {
  .top-group_list li {
    width: 100%;
  }
}
.top-group_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.top-group_link--reverse {
  flex-direction: column-reverse;
}
@media screen and (max-width: 440px) {
  .top-group_link--reverse {
    flex-direction: column;
  }
}
.top-group_link > span {
  width: 100%;
}
.top-group_link span {
  margin-top: 5px;
  margin-bottom: 5px;
}
.top-group_img {
  margin-bottom: 7px;
  display: block;
  max-width: 300px;
  width: 90%;
  margin-inline: auto;
}
.top-group_logo {
  position: absolute;
  content: "";
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  max-width: 100px;
}
@media screen and (max-width: 440px) {
  .top-group_logo {
    position: unset;
    transform: none;
  }
}
@media screen and (min-width: 768px) {
  .top-group_logo {
    max-width: 150px;
  }
}
.top-group_logo:before {
  position: absolute;
  content: "";
  width: calc(100% + 15px);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 440px) {
  .top-group_logo:before {
    display: none;
  }
}
@media screen and (min-width: 1280px) {
  .top-group_logo:before {
    width: calc(100% + 20px);
  }
}
@media screen and (min-width: 1280px) {
  .top-group_logo:before {
    width: calc(100% + 30px);
  }
}

.top-clinic_box {
  margin-bottom: 75px;
}
.top-clinic_box:nth-child(odd) .top-clinic_textbox {
  padding-right: 0;
}
.top-clinic_box:nth-child(odd) .top-clinic_textbox > * {
  padding-right: 3.6rem;
}
@media screen and (max-width: 440px) {
  .top-clinic_box:nth-child(odd) .top-clinic_textbox > * {
    padding-right: 1.8rem;
    padding-left: 1.8rem;
  }
}
.top-clinic_box:nth-child(even) .top-clinic_textbox {
  margin-left: auto;
  padding-left: 0;
}
.top-clinic_box:nth-child(even) .top-clinic_textbox > * {
  padding-left: 3.6rem;
}
@media screen and (max-width: 440px) {
  .top-clinic_box:nth-child(even) .top-clinic_textbox > * {
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
}
.top-clinic .mirai .top-clinic_textbox {
  border-left: 7px solid #08457e;
}
@media screen and (max-width: 440px) {
  .top-clinic .mirai .top-clinic_textbox {
    border-left: none;
    border-top: 5px solid #08457e;
  }
}
.top-clinic .mirai .top-clinic_list {
  border-top: 1px solid #08457e;
}
.top-clinic .mirai .link:after {
  background: #08457e;
}
.top-clinic .kawaguchi .top-clinic_textbox {
  border-right: 7px solid #cea66f;
}
@media screen and (max-width: 440px) {
  .top-clinic .kawaguchi .top-clinic_textbox {
    border-right: none;
    border-top: 5px solid #cea66f;
  }
}
.top-clinic .kawaguchi .top-clinic_list {
  border-top: 1px solid #cea66f;
}
.top-clinic .kawaguchi .link:after {
  background: #cea66f;
}
.top-clinic .hanaten .top-clinic_textbox {
  border-left: 7px solid #c5825b;
}
@media screen and (max-width: 440px) {
  .top-clinic .hanaten .top-clinic_textbox {
    border-left: none;
    border-top: 5px solid #c5825b;
  }
}
.top-clinic .hanaten .top-clinic_list {
  border-top: 1px solid #c5825b;
}
.top-clinic .hanaten .link:after {
  background: #c5825b;
}
.top-clinic_textbox {
  max-width: 920px;
  box-shadow: 1px 1px 20px #eee;
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 3.6rem;
}
@media screen and (max-width: 440px) {
  .top-clinic_textbox {
    padding: 2.4rem 0;
  }
}
@media screen and (min-width: 1280px) {
  .top-clinic_textbox {
    width: 60%;
    margin-top: -50px;
  }
}
.top-clinic_name {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 440px) {
  .top-clinic_name {
    font-size: 2.4rem;
  }
}
.top-clinic_text {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 440px) {
  .top-clinic_text {
    font-size: 2rem;
  }
  .top-clinic_text .textBig {
    font-size: 2.2rem;
  }
}
.top-clinic_list {
  padding-top: 1.6rem;
}
.top-clinic_list li {
  margin-bottom: 5px;
}
.top-clinic_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 3em;
}

.top-point {
  background-image: url(../img/top/top-point_back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 0;
  width: 100%;
  margin-inline: auto;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  min-height: 100svh;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-point {
    padding-bottom: 125px;
    border-radius: 50px;
    width: 95%;
    min-height: auto;
  }
}
.top-point h2 {
  text-align: center;
  color: #fff;
  font-size: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .top-point h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .top-point h2 {
    position: sticky;
    top: 25%;
    z-index: 1;
    margin-bottom: 0;
    opacity: 1;
  }
}
.top-point h2 span {
  font-size: 0.7em;
  display: block;
}
.top-point h2:after {
  position: absolute;
  content: "";
  background-image: url(../img/top/logo-back.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 130%;
  aspect-ratio: 1/1;
  z-index: -1;
  bottom: -70%;
  right: 0;
}
.top-point_text {
  position: relative;
  z-index: 4;
  font-size: 3rem;
  font-weight: 600;
  background-color: #444;
  color: #eee;
  margin-left: 5%;
  margin-top: -30px;
  padding-left: 0.7em;
  display: block;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #aaa;
  border-left: 5px solid #c71444;
}
@media screen and (max-width: 440px) {
  .top-point_text {
    font-size: 2rem;
    height: 90px;
  }
}
.top-point_list {
  position: relative;
  z-index: 2;
  margin-inline: auto;
}
.top-point_list li {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 2%;
  margin-bottom: 75px;
  width: 85%;
}
@media screen and (min-width: 768px) {
  .top-point_list li {
    margin-left: 3%;
    width: 33%;
    min-width: 350px;
    margin-top: -5vw;
    margin-bottom: calc(8% - 7vw);
  }
}
@media screen and (min-width: 768px) {
  .top-point_list li::after {
    position: absolute;
    content: "";
    width: 70%;
    height: 85%;
    background-color: #fff;
    top: 25%;
    left: 0;
    z-index: -1;
    border-radius: 30px;
    box-shadow: 1px 1px #000;
  }
}
@media screen and (min-width: 768px) {
  .top-point_list li:nth-child(2) {
    margin-bottom: calc(7% + 7rem);
  }
}
@media screen and (min-width: 768px) {
  .top-point_list li:nth-child(even) {
    margin-left: auto;
    margin-right: 3%;
  }
}
@media screen and (min-width: 768px) {
  .top-point_list li:nth-child(odd) {
    margin-right: auto;
  }
}
.top-point_list img {
  border-radius: 30px;
  width: 95%;
}

.top-pickup {
  padding: 100px 0 125px;
}
@media screen and (max-width: 440px) {
  .top-pickup {
    padding: 50px 0;
  }
}
.top-pickup h2 {
  font-size: 5rem;
  margin-bottom: 0;
}
@media screen and (max-width: 440px) {
  .top-pickup h2 {
    font-size: 3.6rem;
  }
}
.top-pickup h2 span {
  display: block;
  font-size: 1.1em;
}
.top-pickup_flex {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5vw;
  justify-content: space-between;
  margin-left: auto;
  margin-bottom: 125px;
}
@media screen and (min-width: 768px) {
  .top-pickup_flex {
    flex-direction: row;
  }
}
@media screen and (max-width: 440px) {
  .top-pickup_flex {
    margin-bottom: 60px;
  }
}
.top-pickup_flex > div {
  padding-left: 5vw;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 3vw;
}
@media screen and (min-width: 1280px) {
  .top-pickup_flex > div {
    flex-direction: column;
  }
}
.top-pickup_list {
  flex: 1;
  display: grid;
  gap: 3vw;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(2, 1fr);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  width: 100%;
}
@media screen and (max-width: 440px) {
  .top-pickup_list {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .top-pickup_list {
    min-width: 700px;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .top-pickup_list {
    width: auto;
  }
}
.top-pickup_list li {
  aspect-ratio: 3/2;
  background-repeat: no-repeat;
  background-position: center;
}
.top-pickup_list li:nth-child(1) {
  background-image: url(../img/top/top-pickup1.jpg);
}
.top-pickup_list li:nth-child(2) {
  background-image: url(../img/top/top-pickup2.jpg);
}
.top-pickup_list li:nth-child(3) {
  background-image: url(../img/top/top-pickup3.jpg);
}
.top-pickup_list li:nth-child(4) {
  background-image: url(../img/top/top-pickup4.jpg);
}
.top-pickup_list li:nth-child(5) {
  background-image: url(../img/top/top-pickup5.jpg);
}
.top-pickup_list li:nth-child(6) {
  background-image: url(../img/top/top-pickup6.jpg);
}
.top-pickup_link {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 10px;
  z-index: 1;
  color: #fff;
  font-weight: 500;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-pickup_link {
    gap: 20px;
  }
}
.top-pickup_link:before {
  position: absolute;
  content: "";
  background-color: #444;
  opacity: 0.8;
  width: 200%;
  height: 100%;
  z-index: -1;
  transform: rotate(45deg);
  border: 1px solid #fff;
  transition: 0.5s;
}
.top-pickup_link img {
  width: 40%;
  transition: 0.5s;
  min-width: 75px;
}
@media screen and (max-width: 440px) {
  .top-pickup_link img {
    min-width: 50px;
  }
}
@media screen and (min-width: 1280px) {
  .top-pickup_link img {
    min-width: 100px;
  }
}
.top-pickup_link:hover {
  color: #000;
}
.top-pickup_link:hover:before {
  height: 180%;
  background-color: #fff;
}
.top-pickup_link:hover img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(14%) saturate(0%) hue-rotate(243deg) brightness(96%) contrast(91%);
}

.top-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 1280px) {
  .top-banner {
    width: calc(95% - 10vw - 245px);
    margin-right: 2.5%;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .top-banner {
    flex-wrap: nowrap;
    gap: 1.5vw;
  }
}
.top-banner a {
  width: calc(50% - 10px);
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  .top-banner a {
    width: auto;
  }
}
.top-banner a:hover {
  filter: brightness(0.8);
}

.top-info {
  background-color: #444;
  color: #fff;
}

.top-blog {
  display: flex;
  flex-direction: column;
  background: #444;
  border: 1px solid #aaa;
  width: 90%;
  margin-inline: auto;
  margin-bottom: 75px;
  position: relative;
}
@media screen and (max-width: 440px) {
  .top-blog {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .top-blog {
    flex-direction: row;
  }
}
.top-blog::before, .top-blog::after {
  position: absolute;
  content: "";
  height: calc(100% + 2px);
  width: calc(5% + 7px);
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  left: calc(-5% - 7px);
  top: -1px;
  display: none;
}
@media screen and (min-width: 1280px) {
  .top-blog::before, .top-blog::after {
    display: inline;
  }
}
.top-blog::after {
  left: unset;
  right: calc(-5% - 7px);
}
.top-blog_wpttl {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #aaa;
  gap: 0.5em;
}
@media screen and (max-width: 440px) {
  .top-blog_wpttl {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .top-blog_wpttl {
    padding: 20px 0 20px 1.5vw;
    width: 20%;
    border-bottom: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: normal;
  }
}
.top-blog_wpttl h2 {
  font-weight: 600;
  font-size: 4rem;
}
@media screen and (max-width: 440px) {
  .top-blog_wpttl h2 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .top-blog_wpttl h2 {
    letter-spacing: -0.05em;
    font-size: clamp(3rem, 4vw, 4rem);
  }
}
.top-blog_wpttl a {
  margin-inline: unset;
}
@media screen and (min-width: 768px) {
  .top-blog_wpttl a {
    font-size: clamp(12px, 1.5vw, 1.5rem);
  }
}
@media screen and (min-width: 768px) {
  .top-blog_postbox {
    width: 80%;
    display: flex;
  }
}
.top-blog_link {
  display: flex;
}
@media screen and (min-width: 768px) {
  .top-blog_link {
    width: 33.3333333333%;
    border-left: 1px solid #aaa;
  }
}
.top-blog_link:nth-child(1), .top-blog_link:nth-child(2) {
  border-bottom: 1px solid #aaa;
}
@media screen and (min-width: 768px) {
  .top-blog_link:nth-child(1), .top-blog_link:nth-child(2) {
    border-bottom: none;
  }
}
.top-blog_link:hover {
  opacity: 0.8;
  background-color: #eee;
  color: #000;
}
.top-blog_postdate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #aaa;
  padding: 0.5em;
  font-weight: 600;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .top-blog_postdate {
    padding: 5px;
  }
}
.top-blog_postdate span:nth-child(1) {
  font-size: 1.3rem;
}
.top-blog_postdate span:nth-child(2) {
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .top-blog_postdate span:nth-child(2) {
    font-size: 4.5rem;
  }
}
.top-blog_postttl {
  display: flex;
  align-items: center;
  padding: 10px 1.2em 20px 10px;
  font-weight: 600;
  font-size: 1.5rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-blog_postttl {
    padding: 10px 10px 20px;
  }
}
@media screen and (max-width: 440px) {
  .top-blog_postttl {
    font-size: 1.3rem;
  }
}
.top-blog_postttl::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
}
.top-blog_postttl span {
  position: relative;
}
.top-blog_postttl span::after {
  position: absolute;
  content: "↑";
  transform: rotate(45deg);
  color: #c71444;
}

.top-linkbox {
  background-image: url(../img/top/top-linkbox_sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
  margin-bottom: 75px;
  font-weight: 600;
  font-size: 2rem;
}
@media screen and (max-width: 440px) {
  .top-linkbox {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .top-linkbox {
    display: flex;
    background-image: url(../img/top/top-linkbox.jpg);
  }
}
.top-linkbox li {
  border-top: 1px solid #aaa;
  background-color: rgba(68, 68, 68, 0.8);
  backdrop-filter: blur(5px);
  height: 200px;
  position: relative;
  text-shadow: 0px 0px 5px #444;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .top-linkbox li {
    width: 33.3333333333%;
    border-bottom: 1px solid #aaa;
    border-right: 1px solid #aaa;
  }
}
.top-linkbox li:last-child {
  border-bottom: 1px solid #aaa;
}
@media screen and (min-width: 768px) {
  .top-linkbox li:last-child {
    border-right: none;
  }
}
.top-linkbox li:hover {
  backdrop-filter: blur(0px);
}
.top-linkbox a {
  display: grid;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 100%;
}

.top-recruit {
  position: relative;
  z-index: 0;
}
.top-recruit::before {
  position: absolute;
  content: "";
  background: #fff;
  background: linear-gradient(300deg, #fff 0%, #eee 100%);
  width: 100%;
  height: calc(100% - 30vw);
  bottom: 0;
  left: 0;
  z-index: -1;
}
.top-recruit_topimg {
  width: 90%;
  margin-right: unset;
  margin-left: auto;
  margin-bottom: 15px;
}
.top-recruit_ttl2 {
  margin-top: 1.5vw;
}
.top-recruit_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 3.5vw;
  width: calc(89% - 15px);
  margin-left: auto;
  margin-right: 15px;
}
.top-recruit_flex p {
  line-height: 2;
}
@media screen and (min-width: 1280px) {
  .top-recruit_flex {
    flex-wrap: nowrap;
  }
}
.top-recruit_flex2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 3vw 0;
}
@media screen and (min-width: 768px) {
  .top-recruit_flex2 {
    flex-direction: row;
  }
}
.top-recruit_flex2 a {
  max-width: 300px;
}
.top-recruit_doctor {
  background-color: #fff;
  padding: 0 1.5rem 3rem;
  width: 95%;
  margin-left: 2%;
}
@media screen and (max-width: 440px) {
  .top-recruit_doctor {
    width: 100%;
    padding: 2rem 1rem 3rem;
  }
}
.top-recruit_doctor p {
  padding-left: 1rem;
}
.top-recruit_ttl3 {
  font-size: 2.4rem;
  font-weight: 600;
  background-color: #444;
  color: #fff;
  text-align: center;
  padding: 0.7em 3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0.5em -3rem;
  border-left: 5px solid #c71444;
}
@media screen and (max-width: 440px) {
  .top-recruit_ttl3 {
    font-size: 1.8rem;
    padding: 0.7em 1.8rem;
    margin: 0 0 0.5em -1.8rem;
  }
}
.top-recruit_imgbox {
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 1280px) {
  .top-recruit_imgbox {
    flex-direction: column;
  }
}
.top-recruit a:hover {
  filter: brightness(0.9);
}

.top-footer {
  background-color: #aaa;
}
.top-footer ul {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
@media screen and (min-width: 768px) {
  .top-footer ul {
    flex-direction: row;
  }
}
.top-footer li {
  background-color: #fff;
  color: #000;
}
@media screen and (min-width: 768px) {
  .top-footer li {
    width: calc((100% - 6vw) / 3);
  }
}
.top-footer a {
  padding: 1em;
  position: relative;
  height: 100%;
}
.top-footer a::after {
  position: absolute;
  content: "↑";
  transform: rotate(45deg);
  bottom: 5px;
  right: 5px;
}
.top-footer a:hover {
  opacity: 0.8;
}
.top-footer b {
  display: block;
  font-size: 1.25em;
  margin: 5px 0;
}
.top-footer .mirai {
  border: 3px solid #08457e;
}
.top-footer .kawaguchi {
  border: 3px solid #cea66f;
}
.top-footer .hanaten {
  border: 3px solid #c5825b;
}

.top-partner {
  text-align: center;
  background-color: #444;
}
.top-partner h2 {
  margin-bottom: 1.5em;
}
.top-partner_list {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 15px;
  width: 90%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-partner_list {
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: repeat(5, 1fr);
  }
}
.top-partner_list li {
  border: 1px solid currentColor;
  background-color: #fff;
  color: #000;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .top-partner_list li {
    height: 100px;
  }
}
.top-partner_link {
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  place-items: center;
}
.top-partner_link:hover {
  filter: opacity(0.5);
}

.footer {
  background-color: #444;
  color: #fff;
  margin-inline: auto;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 75px;
  }
}
.footer_foot {
  width: 90%;
  margin-inline: auto;
  text-align: right;
  font-weight: 600;
  font-size: 3.6rem;
}
@media screen and (max-width: 440px) {
  .footer_foot {
    font-size: 2.8rem;
  }
}
.footer_backtop {
  position: relative;
  font-size: 4.5rem;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 5px;
}
@media screen and (max-width: 440px) {
  .footer_backtop {
    font-size: 3.4rem;
    border-top: 1px solid currentColor;
    padding-top: 0.3em;
  }
}
.footer_backtop:before {
  position: absolute;
  content: "";
  width: calc(100% - 35rem);
  height: 2px;
  background-color: #fff;
  left: 0;
}
@media screen and (max-width: 440px) {
  .footer_backtop:before {
    display: none;
  }
}
.footer_copy {
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 15px;
}

.toggle {
  display: none;
}

.accordion .Label {
  position: static;
}

header .accordion .Label, footer .accordion .Label { /*タイトル*/
  pointer-events: none;
}
@media screen and (max-width: 440px) {
  header .accordion .Label, footer .accordion .Label {
    padding: 0.8em 1em;
    display: block;
    position: relative;
    pointer-events: visible;
  }
}

@media screen and (max-width: 440px) {
  header .Label::before, footer .Label::before {
    position: absolute; /*タイトル横の矢印*/
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    -webkit-transform: rotate(45deg);
    top: calc(50% - 3px);
    right: 1.5rem;
    transform: rotate(135deg);
  }
}

header .accordion:hover .Label::before, footer .accordion:hover .Label::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

header .Label, header .content, footer .Label, footer .content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

@media screen and (max-width: 440px) {
  header .content, footer .content { /*本文*/
    height: 0;
    overflow: hidden;
    opacity: 0;
  }
}

header .toggle:checked + .Label + .content, footer .toggle:checked + .Label + .content { /*開閉時*/
  height: auto;
  transition: all 0.3s;
  opacity: 1;
}

header .toggle:checked + .Label::before, footer .toggle:checked + .Label::before {
  transform: rotate(-45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.scroll-infinity {
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  font-size: 20rem;
  font-weight: 600;
  padding: 20px 0;
}
.scroll-infinity:hover .scroll-infinity__list--left {
  animation-play-state: paused;
}
@media screen and (max-width: 440px) {
  .scroll-infinity {
    font-size: 8rem;
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-top {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 3vw;
}
@media screen and (max-width: 440px) {
  .scroll-infinity__wrap {
    gap: 20px;
  }
}

.scroll-infinity__list {
  display: flex;
  align-items: center;
  padding: 0;
  gap: 3vw;
}
@media screen and (max-width: 440px) {
  .scroll-infinity__list {
    gap: 20px;
  }
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__list--top {
  animation: infinity-scroll-top 120s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: -moz-max-content;
  width: max-content;
}
.scroll-infinity__item a, .scroll-infinity__item img {
  display: grid;
  place-content: center;
  place-items: center;
}
.scroll-infinity__item a {
  width: 100%;
  height: 100%;
}
.scroll-infinity__item img {
  width: 90%;
  max-width: 400px;
}

.scroll-infinity--top {
  height: 100%;
  padding: 0;
  border-top: none;
  border-bottom: none;
}
.scroll-infinity--top .scroll-infinity__wrap {
  gap: 0;
  flex-direction: column;
  height: 100%;
}
.scroll-infinity--top .scroll-infinity__list {
  gap: 0;
  flex-direction: column;
}
.scroll-infinity--top .scroll-infinity__item {
  width: 100%;
}
.scroll-infinity--top .scroll-infinity__item img {
  width: 100%;
  max-width: unset;
}

.sitemap_only {
  display: none;
}/*# sourceMappingURL=top.css.map */