@charset "UTF-8";
@-webkit-keyframes up {
  0% {
    transform: translateY(34.375rem) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-80vh) rotate(var(--rotate));
    opacity: 0;
  }
}
@keyframes up {
  0% {
    transform: translateY(34.375rem) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-80vh) rotate(var(--rotate));
    opacity: 0;
  }
}
img {
  max-width: 100%;
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
  color: #000;
  line-height: 2;
  letter-spacing: 0.1em;
  background-color: #7CCDFF;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.global {
  align-content: center;
}

.hamburger {
  position: relative;
  z-index: 200;
  display: grid;
  grid-auto-flow: row;
  row-gap: 0.625rem;
  cursor: pointer;
}
.hamburger__span {
  width: 4.375rem;
  height: 0.75rem;
  border-radius: 0.75rem;
  background-color: #002756;
  transition: all 0.2s;
  z-index: 2;
}

.logo {
  width: 40%;
  max-width: 15.625rem;
  display: inline-block;
  position: relative;
  z-index: 200;
}

.linkBtn {
  color: #FFF;
  display: block;
  position: relative;
  text-align: center;
  align-content: center;
  width: 18.75rem;
  height: 75px;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 2.5rem;
  background-color: #DF0000;
  border: #FFF 4px solid;
  font-family: "Tsukushi B Round Gothic", sans-serif;
}

/* ベース状態の線 */
.hamburger__span {
  width: 3.125rem;
  height: 0.375rem;
  border-radius: 0.1875rem;
  background-color: #002756;
  transition: all 0.5s ease;
  transform-origin: center;
}

/* アクティブ時 = ✗ マーク */
.hamburger.active .hamburger__span:nth-child(1) {
  transform: translateY(1rem) rotate(45deg);
}

.hamburger.active .hamburger__span:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__span:nth-child(3) {
  transform: translateY(-1rem) rotate(-45deg);
}

.header {
  width: 100%;
  position: fixed;
  z-index: 30;
  padding: 30px 0;
  background-color: rgba(230, 230, 230, 0.7);
}
.header__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 1100px) {
  .header__inner {
    width: 70%;
  }
}

.menu {
  position: fixed;
  pointer-events: none;
  text-align: center;
  height: 100vh;
  width: 100%;
  left: 0;
  overflow-y: auto;
  background-color: #7CCDFF;
  top: -100%;
  transition: all 0.6s ease-in-out;
  box-sizing: border-box;
  z-index: 5;
  padding-bottom: 3.125rem;
}
.menu.active {
  top: 0;
  padding-top: 12.5rem;
  pointer-events: all;
}
.menu__inner {
  display: grid;
  grid-auto-flow: row;
  row-gap: 3.125rem;
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  width: 80%;
  margin: 0 auto;
}
.menu__inner ul {
  display: grid;
  grid-auto-flow: row;
  row-gap: 1.25rem;
  border-bottom: #FFF solid;
  padding-bottom: 3.125rem;
}
.menu__inner ul a {
  transition: all 0.5s linear;
}
.menu__inner ul a:hover {
  color: #FCFF54;
}

.mainvisual {
  position: relative;
  background-color: #FFE5B5;
  padding: 270px 0;
  /* 追加 ------------------------ */
  overflow: hidden;
  /* -------------------------------- */
}
.mainvisual__image-group {
  display: block;
}
.mainvisual__image-group__image {
  border-radius: 50%;
  position: absolute;
  width: 40%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  background-color: #007ecc;
}
.mainvisual__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-weight: bold;
  color: #007ecc;
  font-size: 32px;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 0;
  background-color: #FFF;
  text-shadow: 2px 2px 5px #c6c6c6;
}
.mainvisual__title::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: url("../img/svg/nami_1.svg") repeat-x center top;
  background-size: 50%;
  transform: rotate(180deg);
}
.mainvisual__title::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 5%;
  width: 100%;
  height: 30px;
  background: url("../img/svg/nami_1.svg") repeat-x center top;
  background-size: 50%;
}

.about {
  margin-top: 15.625rem;
  position: relative;
  overflow: hidden;
  background-color: #FFE5B5;
  padding-top: 6.25rem;
  padding-bottom: 12.5rem;
  margin-bottom: 15.625rem;
}
.about__inner {
  position: relative;
  z-index: 2;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/image/28.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  transform: scale(1.1);
  z-index: 0;
}
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.about__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  font-weight: bold;
  color: #FFF;
  font-size: 32px;
  text-align: center;
  margin-bottom: 100px;
  text-shadow: 2px 2px 5px #272727;
}
.about__textbox {
  display: block;
  max-width: 31.25rem;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  padding: 18px 50px;
  border-radius: 1.875rem;
  background-color: rgba(230, 230, 230, 0.8);
  white-space: pre-line;
  color: #000;
  margin: 0 auto;
}

.vision-example {
  margin-bottom: 15.625rem;
}
.vision-example__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.vision-example__image-area {
  position: relative;
  height: 43.75rem;
  width: 100%;
  background-color: #FFF;
}
.vision-example__image-area img {
  width: 100%;
  height: 80%;
  max-width: 37.5rem;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
}

.appointment-ex {
  margin-bottom: 15.625rem;
}
.appointment-ex__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  max-width: 62.5rem;
}
@media (min-width: 1100px) {
  .appointment-ex__inner {
    width: 70%;
  }
}
.appointment-ex__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.appointment-ex__textbox {
  display: block;
  text-align: left;
  width: 100%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  padding: 18px 50px;
  border: #000 3px solid;
  border-radius: 1.875rem;
  background-color: #FFF;
  white-space: pre-line;
  color: #000;
  margin: 0 auto;
}
.appointment-ex__link {
  display: inline-block;
  margin-top: 0.625rem;
  margin-bottom: 8.125rem;
  border-bottom: #000 solid;
}
.appointment-ex__fee {
  margin-top: 6.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  text-align: left;
}
.appointment-ex__fee ul {
  list-style: disc;
  background-color: #FFF;
  display: grid;
  row-gap: 1.875rem;
  border: #000 3px solid;
  border-radius: 1.875rem;
  padding: 1.875rem;
}

.news {
  margin-bottom: 15.625rem;
  width: 100%;
}
@media (min-width: 1100px) {
  .news__inner {
    max-width: 1000px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1100px) and (min-width: 1100px) {
  .news__inner {
    width: 70%;
  }
}
.news__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.news__box {
  margin-left: 5%;
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  margin-bottom: 6.25rem;
}
@media (min-width: 1100px) {
  .news__box {
    margin-left: 0;
  }
}
.news__box a article {
  width: 18.75rem;
}
.news__textbox {
  background-color: #FFF;
  height: 12.5rem;
  overflow: scroll;
}
.news__imgbox img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-archive {
  padding: 15.625rem 0;
  width: 100%;
}
.news-archive__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .news-archive__inner {
    width: 70%;
  }
}
.news-archive__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.news-archive__grid {
  display: grid;
  grid-auto-flow: row;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  row-gap: 1.25rem;
  margin-bottom: 6.25rem;
}
@media (min-width: 1100px) {
  .news-archive__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.news-archive__grid a article {
  width: 100%;
  max-width: 37.5rem;
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .news-archive__grid a article {
    max-width: 18.75rem;
  }
}
.news-archive__grid a article img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1100px) {
  .news-archive__grid a article img {
    height: 200px;
  }
}
.news-archive__textbox {
  background-color: #FFF;
  height: 12.5rem;
  overflow: scroll;
}

.footer img {
  width: 100%;
}

.footer {
  background-color: #1C5E75;
  color: #FFF;
  padding: 6.25rem 0;
  text-align: center;
}
.footer__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .footer__inner {
    width: 70%;
  }
}
.footer__media {
  max-width: 31.25rem;
  margin: 0 auto;
  display: grid;
  grid-auto-flow: row;
  row-gap: 3.125rem;
}
.footer__media a {
  transition: all 0.5s linear;
}
.footer__media a:hover {
  transform: scale(105%);
}
.footer__media__SNS {
  display: grid;
  grid-auto-flow: column;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  align-items: center;
}
.footer__media__SNS .insta {
  display: block;
  width: 40%;
  margin: 0 auto;
}
.footer__media__SNS .insta img {
  width: 100%;
  height: auto;
}
.footer__fnav {
  display: grid;
  text-align: center;
  grid-auto-flow: column;
  margin: 6.25rem 0 6.25rem 0;
}
.footer__fnav ul {
  display: grid;
  border-right: #FFF solid;
  border-left: #FFF solid;
  padding: 0 1.25rem;
  grid-auto-flow: row;
  row-gap: 2.5rem;
}
.footer__fnav ul a {
  transition: all 0.5s linear;
}
.footer__fnav ul a:hover {
  color: #FCFF54;
}
.footer__copy {
  font-size: 0.75rem;
  font-weight: bold;
}
.footer__info {
  border-radius: 1.25rem;
  border: #FFF 2px solid;
  text-align: left;
  padding: 1.875rem;
  line-height: 3;
}

.appointment {
  padding: 15.625rem 0;
}
.appointment__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .appointment__inner {
    width: 70%;
  }
}
.appointment__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.appointment__toggleBtn {
  margin-top: 1.875rem;
  cursor: pointer;
}
.appointment__list {
  display: grid;
  grid-auto-flow: row;
  row-gap: 50px;
  text-align: center;
}
.appointment__list p {
  position: relative;
  display: inline-block;
  text-align: left;
  padding-left: 50px;
}
.appointment__list p::before {
  position: absolute;
  content: "";
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 0.3125rem;
  transition: all 0.4s linear;
  background-color: #FCFF54;
}
.appointment__list p::before:hover {
  transform: rotate(315deg);
  background-color: #FFF;
}
.appointment__others {
  text-align: right;
}
.appointment__others__textbox {
  text-align: left;
  background-color: #FFF;
  display: flex;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background: #f0f0f0;
  padding: 0 1rem;
  justify-content: space-between;
  margin-bottom: 9.375rem;
}
.appointment__others__textbox ul {
  display: grid;
  row-gap: 1.875rem;
  list-style: disc;
}
.appointment__others__textbox.show {
  max-height: 700px;
  padding: 2.5rem;
}

.contact-form {
  margin-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-item input,
.form-item textarea {
  width: 100%;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #000;
  border-radius: 6px;
  font-size: 16px;
}

.form-item textarea {
  height: 150px;
  resize: vertical;
}

.form-submit {
  display: block;
  text-align: center;
  width: 6.25rem;
  padding: 12px 20px;
  background-color: #FFF;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
}

.form-submit:hover {
  opacity: 0.8;
}

.root {
  padding: 15.625rem 0;
}
.root__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .root__inner {
    width: 70%;
  }
}
.root__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.root__image {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 9.375rem;
}
.root__textbox {
  margin-top: 6.25rem;
  background-color: #FFF;
  padding: 3.125rem;
}

.spot {
  padding: 15.625rem 0;
}
.spot__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  row-gap: 6.25rem;
}
@media (min-width: 1100px) {
  .spot__inner {
    width: 70%;
  }
}
.spot__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.spot .unit {
  border-top: #FFF dotted 3px;
  padding-top: 5rem;
}
.spot .unit__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.spot .unit__box {
  background-color: #FFF;
  padding: 10%;
  border-radius: 3.125rem;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}
.spot .unit__img {
  width: 100%;
  height: 31.25rem;
  max-width: 31.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1100px) {
  .spot .unit__img {
    height: 50rem;
  }
}
.spot .unit__textbox {
  text-align: left;
  margin-top: 4.375rem;
  padding: 1.125rem;
  border-radius: 1.25rem;
  border: #7CCDFF solid 5px;
}

.access {
  padding: 15.625rem 0;
}
.access__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .access__inner {
    width: 70%;
  }
}
.access__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.access__information {
  background-color: #FFF;
  padding: 1.875rem;
  border-radius: 1.875rem;
}
.access__information ul {
  display: grid;
  row-gap: 1.25rem;
}

.info {
  padding: 15.625rem 0;
}
.info__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .info__inner {
    width: 70%;
  }
}
.info__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.info__gmap {
  position: relative;
  width: 100%;
  border: #FFF dotted 5px;
  padding-top: 56.25%;
  /* 16:9のアスペクト比の再現 */
  height: 0;
}
.info__gmap iframe {
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  width: 95%;
  height: 95%;
}

.qa {
  padding: 15.625rem 0;
}
.qa__inner {
  max-width: 1000px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1100px) {
  .qa__inner {
    width: 70%;
  }
}
.qa__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.qa__group:nth-child(even) {
  margin-bottom: 7.8125rem;
  padding-bottom: 7.8125rem;
  border-bottom: #FFF dotted 3px;
}
.qa .item {
  display: grid;
  grid-auto-flow: row;
  row-gap: 3.125rem;
}
.qa .item__qanda {
  display: grid;
  grid-template-columns: 1fr 3fr;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.qa .item__textbox {
  background-color: #FFF;
  padding: 2.5rem;
  position: relative;
  align-content: center;
  border-radius: 1.875rem;
}
.qa .item__textbox a {
  border-bottom: #000 solid;
}
.qa .item__textbox::after {
  content: "";
  position: absolute;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #FFF;
  transform: rotate(45deg);
  left: -0.625rem;
  top: 15%;
}
.qa .item__imgbox {
  align-content: top;
  text-align: center;
  max-width: 12.5rem;
}
.qa .item__imgbox img {
  width: 70%;
}

.single-news {
  padding: 15.625rem 0;
}
.single-news__title {
  font-family: "Tsukushi B Round Gothic", sans-serif;
  margin-bottom: 5rem;
  font-weight: bold;
  font-size: 2.375rem;
  text-align: center;
  color: #000;
  paint-order: stroke;
}
.single-news__date {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 30px;
}
.single-news__thumb img {
  width: 100%;
  height: auto;
  max-width: 50rem;
  margin-bottom: 40px;
}
.single-news__contents {
  padding: 3.125rem 5%;
  text-align: center;
  line-height: 1.8;
  background-color: #FFF;
}
.single-news__contents .content {
  max-width: 50rem;
  margin: 0 auto;
}
.single-news__contents .content p {
  max-width: 50rem;
  text-align: left;
}
/*# sourceMappingURL=style.css.map */