@charset "UTF-8";
/* Reset style */
/***
    The new CSS reset - version 1.7.3 (last updated 7.8.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/* br-sp */
.br-sp_1420 {
  display: none;
}
@media screen and (max-width: 1420px) {
  .br-sp_1420 {
    display: block;
  }
}

.br-sp_1380 {
  display: none;
}
@media screen and (max-width: 1380px) {
  .br-sp_1380 {
    display: block;
  }
}

.br-sp_1280 {
  display: none;
}
@media screen and (max-width: 1280px) {
  .br-sp_1280 {
    display: block;
  }
}

.br-sp_1180 {
  display: none;
}
@media screen and (max-width: 1180px) {
  .br-sp_1180 {
    display: block;
  }
}

.br-sp_820 {
  display: none;
}
@media screen and (max-width: 800px) {
  .br-sp_820 {
    display: block;
  }
}

.br-sp_480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .br-sp_480 {
    display: block;
  }
}

/* br-sp_oo-oo */
/* br-pc */
/* br-pc_oo-oo */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 54.6%;
  }
}

body {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: 1.6rem;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

h2, h3, h4, p, li, a, div {
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-weight: 500;
}

a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
a:hover {
  opacity: 0.8;
}

.no-link {
  pointer-events: none;
}

.pc_480 {
  display: block;
}
@media screen and (max-width: 480px) {
  .pc_480 {
    display: none;
  }
}

.sp_480 {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp_480 {
    display: block;
  }
}

/*キラリン*/
.kirari {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 85%;
  height: 41vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .kirari {
    top: 500px;
    width: 638px;
    height: 315px;
  }
}
.kirari::before {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/*点滅*/
.flash {
  animation: flash 2s linear infinite;
}

@keyframes flash {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/*ぷるるん*/
.puyon {
  animation: puyon 1s linear 0s 1;
}
@keyframes puyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  50% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
main {
  overflow: hidden;
}

img {
  margin-inline: auto;
}

.linkbox {
  display: flex;
  justify-content: center;
  gap: 3%;
  width: 85%;
  margin-inline: auto;
}
.linkbox a {
  width: 48.5%;
}
.linkbox a img {
  position: static;
}

.sec01 .flash01 {
  width: 62%;
  margin-inline: auto;
  margin-top: 2%;
  margin-bottom: 2%;
}
.sec01 .box {
  position: relative;
  overflow-x: hidden;
}
.sec01 .box .puyonbox {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.sec02 {
  position: relative;
  z-index: 2;
}
.sec02 .box {
  margin-top: -10.5%;
}
.sec02 .box .flash02 {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 61%;
}
.sec02 .box .linkbox {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.sec03 {
  position: relative;
  z-index: 3;
  margin-top: -12%;
}
.sec03 .box {
  position: relative;
}
.sec03 .box .kirari01 {
  position: absolute;
  top: 30.3%;
  left: 10%;
  width: 58%;
}
.sec03 .box .kirari02 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 58%;
}
.sec03 .box .linkbox {
  position: absolute;
  bottom: 9.4%;
  left: 50%;
  transform: translateX(-50%);
}

.sec04 {
  position: relative;
  z-index: 2;
  margin-top: -20%;
}
.sec04 .box {
  position: relative;
}
.sec04 .box .kirari03 {
  position: absolute;
  top: 51%;
  left: 10%;
  width: 59%;
}
.sec04 .box .linkbox {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
}

.sec05 {
  position: relative;
  z-index: 3;
  margin-top: -9%;
}
.sec05 .box {
  position: relative;
}
.sec05 .box .tel {
  position: absolute;
  top: 39%;
  left: 7%;
  width: 56%;
}
.sec05 .box .inbox {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  display: flex;
  justify-content: space-between;
}
.sec05 .box .inbox .left {
  width: 55%;
}
.sec05 .box .inbox .right {
  width: 43%;
}
.sec05 .box .map {
  position: absolute;
  bottom: 7.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 87%;
  aspect-ratio: 2/1;
}/*# sourceMappingURL=style.css.map */