@charset "UTF-8";
/* ---------------------------
  A Modern CSS Reset
----------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
}

ul {
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

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

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------
  variable
----------------------------- */
:root {
  --blue: #0099CC;
  --lightblue: #D9F0F7;
  --red: #FF3628;
  --darkgray: #4D4D4D;
  --fontMainColor: #000000;
  --fontSubColor: #777777;
  --borderMainColor: #eeeeee;
  --borderSubColor: #cccccc;
  --mainFont: "Noto Sans JP", sans-serif;
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  function
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  color: var(--fontMainColor);
  font-size: 16px;
  line-height: 1.75;
  font-family: var(--mainFont);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
}

a {
  color: var(--fontMainColor);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

/* ---------------------------
  utility
----------------------------- */
.outer {
  margin: 0 auto;
  max-width: 1280px;
  width: 100%;
}

.wrapper {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper {
    padding-left: 80px;
    padding-right: 80px;
  }
}

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

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

/* ---------------------------
  header
----------------------------- */
.header {
  background-color: #fff;
}

.header__logo {
  padding: 5px;
}
.header__logo img {
  margin-inline: auto;
}

.header__title {
  background-color: var(--blue);
  padding: 20px 24px;
}
.header__title img {
  margin-inline: auto;
  max-width: 100%;
}
@media screen and (min-width: 640px) {
  .header__title img {
    max-width: 480px;
  }
}

/* ---------------------------
  footer
----------------------------- */
.footer {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .footer {
    margin-bottom: 80px;
  }
}

.footer__head {
  font-size: 14px;
  font-weight: 700;
}

.footer__info {
  font-size: 14px;
  line-height: 2;
  margin: 0.5em 0;
}

.footer__copy {
  font-size: 13px;
}

.fixed-link {
  position: fixed;
  z-index: 1000;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
}

.fixed-link__rsv {
  max-width: 640px;
  width: calc(100% - 64px);
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .fixed-link__rsv {
    height: 80px;
  }
}
@media screen and (min-width: 768px) {
  .fixed-link__rsv img {
    height: 24px;
    width: auto;
  }
}

.fixed-link__pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 56px;
  border-right: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .fixed-link__pagetop {
    width: 90px;
    height: 80px;
  }
}

.common-head span {
  display: block;
  text-align: center;
  font-weight: 900;
  line-height: 1.2;
  color: var(--blue);
}
.common-head img {
  margin-inline: auto;
}

/* ---------------------------
  hero
----------------------------- */
.hero {
  position: relative;
}
.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 16px;
  background-color: var(--lightblue);
  opacity: 0.8;
}
.hero .swiper-pagination-bullet-active {
  background-color: var(--blue);
}
.hero .swiper-slide img, .hero .swiper-slide picture {
  width: 100%;
}
.swiper-pagination {
  bottom: -40px !important;
}

/* ---------------------------
  present
----------------------------- */
.present {
  padding: 60px 0 46px;
}
@media screen and (min-width: 768px) {
  .present {
    padding: 60px 0;
  }
}
.present__head span {
  font-size: 24px;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .present__head span {
    margin-top: 1em;
    font-size: 30px;
  }
}
.present__head strong {
  color: var(--red);
  font-weight: 900;
  font-size: 26px;
  margin-top: 0.3em;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .present__head strong {
    font-size: 32px;
    display: block;
  }
}

.present__badge {
  margin-top: 8px;
  max-width: 400px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .present__badge {
    margin-top: 32px;
  }
}
.present__badge img {
  width: 100%;
  margin-inline: auto;
}

.present__date {
  text-align: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 24px;
  margin-top: 0.2em;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .present__date {
    font-size: 28px;
  }
}

.present__plus {
  margin: 16px 0;
}
@media screen and (min-width: 768px) {
  .present__plus {
    margin: 20px 0;
  }
}
.present__plus img {
  margin-inline: auto;
}

.present__more {
  color: var(--blue);
  font-size: 26px;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  color: var(--red);
}
@media screen and (min-width: 768px) {
  .present__more {
    font-size: 30px;
  }
}
.present__more span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--fontMainColor);
  font-weight: 900;
  margin-bottom: 0.2em;
}
@media screen and (min-width: 768px) {
  .present__more span {
    gap: 15px;
  }
}
.present__more span::before, .present__more span::after {
  content: "";
  display: block;
  width: 15px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .present__more span::before, .present__more span::after {
    width: 20px;
    height: 35px;
  }
}
.present__more span::before {
  background-image: url(../img/sarani_left.svg);
}
.present__more span::after {
  background-image: url(../img/sarani_right.svg);
}

.present__arrow {
  margin-top: 32px;
}
.present__arrow img {
  margin-inline: auto;
}

.present-notice {
  padding: 32px 0 40px;
  border-bottom: 2px dotted var(--blue);
}
@media screen and (min-width: 768px) {
  .present-notice {
    padding: 80px 0;
  }
}
.present-notice:first-of-type {
  margin-top: 40px;
}
.present-notice:last-of-type {
  padding-bottom: 0;
}

.present-notice__head img + span {
  margin-top: 0.5em;
}
.present-notice__head span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .present-notice__head span {
    font-size: 32px;
  }
}

.present-notice__image {
  padding: 0 32px;
  margin-top: 24px;
  max-width: 400px;
  margin-inline: auto;
}
.present-notice__image img {
  margin-inline: auto;
}
.present-notice__image h4 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
  margin-top: 0.4em;
}
@media screen and (min-width: 768px) {
  .present-notice__image h4 {
    font-size: 32px;
  }
}

.present-notice__image-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 10px;
  margin-inline: auto;
  border-radius: 50%;
  background-color: var(--lightblue);
  aspect-ratio: 1/1;
}

.present-notice__notice {
  text-align: center;
  font-weight: 700;
  margin: 1em 0 0.5em;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .present-notice__notice {
    font-size: 20px;
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 768px) {
  .present-notice__caution {
    width: fit-content;
    margin-inline: auto;
  }
}
.present-notice__caution li {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 11px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .present-notice__caution li {
    font-size: 14px;
  }
}
.present-notice__caution li::before {
  content: "※";
  display: inline;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .present-notice__caution li::before {
    font-size: 14px;
  }
}

/* ---------------------------
  index
----------------------------- */
.index {
  padding: 40px 0;
  background-color: var(--lightblue);
}
@media screen and (min-width: 768px) {
  .index {
    padding: 80px 0;
  }
}

.index__head span {
  margin-top: 0.4em;
  font-size: 44px;
}

.index__list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 10px;
}
@media screen and (min-width: 768px) {
  .index__list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    gap: 20px;
  }
}
.index__list li {
  border-radius: 20px;
  background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #dfe5eb 100%);
  box-shadow: 0px 4px 0px rgba(115, 148, 159, 0.5);
}
.index__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  min-height: 64px;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .index__list a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .index__list a {
    padding: 20px 0;
  }
}
.index__list img {
  max-height: 56px;
}

.index__notice {
  text-align: center;
  font-weight: 900;
  font-size: 32px;
  line-height: 1.5;
  margin-top: 1em;
}

/* ---------------------------
  flow
----------------------------- */
.flow {
  padding: 40px 0 80px;
  background-color: var(--lightblue);
}
@media screen and (min-width: 768px) {
  .flow {
    padding-top: 0;
  }
}

.flow__head span {
  letter-spacing: 0.2em;
  font-size: 56px;
}
@media screen and (min-width: 768px) {
  .flow__head span {
    letter-spacing: inherit;
    margin-top: 0.2em;
  }
}
.flow__head b {
  letter-spacing: 0.04em;
  font-size: 0.8em;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .flow__head b {
    letter-spacing: inherit;
    font-size: 1em;
  }
}

.flow__notice {
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  margin-top: 2em;
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .flow__notice {
    font-size: 20px;
  }
}

.flow__subhead {
  text-align: center;
  margin-bottom: 2em;
}
.flow__subhead span {
  display: block;
  margin-inline: auto;
  padding-bottom: 0.1em;
  max-width: 300px;
  font-size: 32px;
  font-weight: 900;
  background-image: url(../img/head_bubble_left.png), url(../img/head_bubble_right.png);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: left center, right center;
}

.flow__content {
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  .flow__content {
    display: grid;
    grid-template-columns: 3fr 2fr 3fr;
    align-items: center;
  }
}

.yoyaku {
  background-color: #fff;
  padding: 0 32px 32px;
}
.yoyaku img {
  transform: translateY(-50%);
  margin-top: 40px;
  margin-bottom: -40px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .yoyaku img {
    margin-top: 0;
  }
}
.yoyaku h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 0.1em 0;
  margin: 1.2em 0 0.8em;
}
.yoyaku p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.yoyaku-or {
  padding: 20px 0;
  margin: 40px 0 64px;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  background-image: url(../img/or.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100px;
}
@media screen and (min-width: 768px) {
  .yoyaku-or {
    height: fit-content;
    margin: 0;
  }
}

/* ---------------------------
  house
----------------------------- */
@media screen and (min-width: 768px) {
  .house-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .house-grid {
    gap: 80px;
  }
}

.house {
  display: block;
  background-color: #fff;
  border-top: 5px solid var(--blue);
  border-bottom: 5px solid var(--blue);
  margin: 80px 0;
  max-width: 400px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .house {
    margin: 0;
    max-width: inherit;
  }
}
.house:first-of-type {
  margin-top: 0;
}
.house:last-of-type {
  margin-bottom: 0;
}
.house h2 {
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
  padding: 0.2em 0.8em 0.4em;
}
@media screen and (min-width: 768px) {
  .house h2 {
    font-size: 19px;
  }
}
@media screen and (min-width: 1024px) {
  .house h2 {
    font-size: 22px;
  }
}

.house-logo {
  padding: 10px;
}
.house-logo img {
  margin-inline: auto;
  width: 100%;
}

.house-action {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 16px;
  gap: 18px;
}

.house-action__vr a {
  display: block;
  padding: 0.2em 0;
  height: 32px;
  background-color: var(--darkgray);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 0.6em;
  line-height: 1;
  border-radius: 0.5em;
}
@media screen and (min-width: 1024px) {
  .house-action__vr a {
    font-size: 16px;
    height: 44px;
  }
}
.house-action__vr a::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 18px;
  background-image: url(../img/vr.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.house-action__vr a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 12px;
  background-image: url(../img/chevron.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.house-action__vr img {
  width: 100%;
}

.house-action__yoyaku a {
  display: block;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .house-action__yoyaku a:hover {
    opacity: 0.8;
  }
}
.house-action__yoyaku img {
  width: 100%;
}
.house-action__yoyaku p {
  line-height: 1.3;
  margin-top: 0.2em;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .house-action__yoyaku p {
    font-size: 14px;
  }
}

.house-tel {
  text-align: center;
  background-color: #99D6EB;
  padding: 0.5em 0;
}
.house-tel a {
  display: block;
  width: fit-content;
  margin-inline: auto;
  line-height: 1;
  font-weight: 700;
  font-size: 28px;
  padding-left: 1em;
  background-image: url(../img/icon_yoyaku_tel.svg);
  background-position: left bottom 2px;
  background-repeat: no-repeat;
  background-size: 20px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 640px) {
  .house-tel a:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .house-tel a {
    font-size: 32px;
    background-size: 24px;
  }
}

.house-tel__head {
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .house-tel__head {
    font-size: 18px;
  }
}

.house-tel__hours {
  font-size: 12px;
  font-weight: 700;
  margin-top: 0.3em;
}
@media screen and (min-width: 768px) {
  .house-tel__hours {
    font-size: 15px;
  }
}

/* ---------------------------
  map
----------------------------- */
.map {
  padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .map {
    padding: 80px 0 40px;
  }
}

.map__head {
  margin-bottom: 1.5em;
}
.map__head span {
  margin-top: 0.4em;
  font-size: 32px;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .map__head span {
    font-size: 44px;
  }
}

.map__embed {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .map__embed {
    aspect-ratio: 2/1;
  }
}
.map__embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.sp1em {
  margin-bottom: 0.5em;
}
