@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  word-break: break-all;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media (min-width: 376px) and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 1.0204081633vw;
  }
}
@media (min-width: 980px) {
  html {
    font-size: 10px;
  }
}

body {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.4375;
  color: #313131;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

html,
body {
  height: 100%;
  margin: 0;
}

/* PC、SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
img {
  width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section-title-style {
  font-family: "LXGW Marker Gothic", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: rgb(235, 109, 70);
}

.section-title-style-black {
  font-size: 2rem;
  color: #313131;
}

/*ヘッダー*/
.pc-menu {
  position: fixed;
  top: 0;
  left: calc(50% + 215px);
  /* 中央から右へ（390px の半分） */
  right: 0;
  /* ← これで右端まで拡張 */
  height: 100vh;
  z-index: 2;
  padding: 4rem 6rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.5);
  font-family: "LXGW Marker Gothic", sans-serif;
  font-weight: 700;
  /* 必要に応じて */
}
@media only screen and (max-width: 1000px) {
  .pc-menu {
    left: calc(50% + 150px);
    /* 中央から右へ（390px の半分） */
  }
}
@media only screen and (max-width: 767px) {
  .pc-menu {
    display: none;
  }
}

.pc-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-menu li {
  margin: 1rem 0;
  display: flex;
  justify-content: start;
}

.pc-menu a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.3s ease;
  color: white;
  font-size: 4rem;
}

@media screen and (max-width: 1203px) {
  .pc-menu a {
    font-size: 2rem;
  }
}
.service-page .pc-menu a {
  font-size: 2rem;
}

.pc-menu .menu-icon-svg {
  width: 2rem;
  height: auto;
  color: white;
  transition: color 0.3s ease;
}

.pc-menu a.active .menu-icon-svg {
  color: #ffa500;
}

.seo-link {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 2rem !important;
  color: #313131;
}

.pc-accent {
  position: fixed;
  top: 0;
  left: 0;
  /* 左端から開始 */
  right: calc(50% + 215px);
  /* 中央より右をカット */
  height: 100vh;
  z-index: 2;
  padding: 4rem 3rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  /* 影の向きも反転 */
  background-color: rgba(255, 255, 255, 0.5);
  /* 必要に応じて */
}
@media only screen and (max-width: 1000px) {
  .pc-accent {
    right: calc(50% + 150px);
  }
}
@media only screen and (max-width: 767px) {
  .pc-accent {
    display: none;
  }
}

/*PC背景*/
#trail-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* ← 重要！ */
  pointer-events: none;
  z-index: 9999;
}

.section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  /* 背景扱いに */
}

.section.is-visible {
  opacity: 1;
}

.section-1 {
  background-image: url("../img/main-picture-pc1.jpg");
}

.section-2 {
  background-image: url("../img/main-picture-back-pc.jpg");
}

.section-3 {
  background-image: url("../img/main-picture-back-pc3.jpg");
}

.section-4 {
  background-image: url("../img/main-picture-pc4.jpg");
}

.section-5 {
  background-image: url("../img/main-picture-pc5.jpg");
}

.section-6 {
  background-image: url("../img/main-picture-pc3.jpg");
}

.back-image {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .back-image {
    display: none;
  }
}

.back-image img {
  height: auto;
  max-width: none;
  /* 必須：制限解除 */
  width: 100%;
  display: block;
}

@media (min-width: 768px) {
  .back-image-message {
    position: fixed;
    bottom: 150px;
    left: calc(50% + 220px);
    /* モバイル幅(390px)の半分 + 15〜20pxの余白 */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    font-size: 2rem;
    line-height: 2;
    z-index: 5;
    pointer-events: none;
  }
  .back-image-message p {
    display: none;
  }
  .back-image-message p.active {
    display: block;
  }
}
/* モバイル枠（中央配置） */
.mobile-shell {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 43rem;
  height: 100vh;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: #EEE7E0;
  transition: max-width 1.5s ease;
  /* ← 追加！ */
}

.mobile-shell.expand {
  max-width: 100%;
}

/* 中身がスクロール */
.mobile-wrapper {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: white;
  /* コンテンツ背景（不透明） */
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}

/* WebKit系 (Chrome, Safariなど) */
.mobile-wrapper::-webkit-scrollbar {
  display: none;
}

/*ハンバーガーメニュー*/
/* ========== スマホ専用表示制御 ========== */
.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block;
  }
}
/* ========== ハンバーガーメニュー構成 ========== */
.outer-menu {
  position: fixed;
  top: 10rem;
  right: 1rem;
  z-index: 999;
}

.outer-menu-animation {
  visibility: hidden;
}

/* チェックボックス非表示だけどクリック可能にする */
.checkbox-toggle {
  opacity: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 1000;
  cursor: pointer;
}

/* PNG画像ハンバーガー */
.hamburger {
  position: relative;
  z-index: 1001;
}

.hamburger img {
  width: 40px;
  height: 40px;
  transition: transform 0.4s ease;
}

.checkbox-toggle:checked + .hamburger img {
  transform: rotate(90deg);
}

/* ========== メニューエリア ========== */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 900;
  pointer-events: none;
}

/* 拡大する円 */
.menu-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200vmax;
  height: 200vmax;
  background: rgba(235, 109, 70, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  overflow: hidden;
}

/* メニュー本体 */
.menu-inner {
  position: fixed;
  top: 2rem;
  left: 50%;
  padding-block-start: 6rem;
  transform: translateX(-50%);
  width: 100%;
  max-width: 90vw;
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
  pointer-events: none;
  z-index: 950;
  /* 円の上に出す */
}

.menu-inner ul {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 0;
  width: 100%;
}

.menu-inner li {
  margin: 0;
  width: 100%;
  font-family: "LXGW Marker Gothic", sans-serif;
  font-weight: 700;
  font-size: 3rem;
}

.service-page-menu li {
  font-size: 1.6rem;
}

.service-page-menu .section-title-style {
  font-size: 2.2rem;
}

.menu-inner a {
  display: flex;
  align-items: center;
  justify-content: start;
  /* 中央揃え */
  color: white;
  gap: 0.5em;
  padding: 2rem;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.menu-inner a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  /* 視覚的フィードバック */
}

.menu-icon img {
  height: 3rem;
  margin-right: 0.5rem;
}

.menu-label {
  display: inline-block;
  transition: transform 0.3s ease;
}

.menu-label :hover {
  animation: floatHover 1s ease-in-out infinite;
}

@keyframes floatHover {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.menu-label img {
  height: 3.5rem;
}

.menu-label-omoi img {
  width: 25rem;
  height: auto;
}

.menu-inner-accent {
  display: flex;
  justify-content: flex-end;
}

.menu-inner-accent img {
  width: 4rem;
  height: auto;
  text-align: center;
  padding: 1rem;
}

.bg-slide.bg3 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  text-align: center;
  background: #f9f9f9;
  /* 適当な背景色など */
}

/* 各セクション色（仮） */
.section-top {
  background-color: #EEE7E0;
}
@media only screen and (max-width: 767px) {
  .section-top {
    height: 60vh;
  }
}

.section-omoi {
  padding-block-start: 5rem;
  padding-block-end: 8rem;
  background-color: #EEE7E0;
  color: #281A14;
}

.section-title {
  text-align: center;
  position: relative;
}

.section-title p {
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

.section-title img {
  height: 3.2rem;
  margin: 0 auto;
}

.section-sub-title {
  margin-block-start: 1.5rem;
}

.section-sub-title h3 {
  font-size: 1.8rem;
}

.section-profile .section-sub-title h3 {
  text-align: right;
  padding-right: 1rem;
}

.section-sub-title rt {
  font-size: 0.5em;
  letter-spacing: 0.05em;
}

.contents-text {
  margin-block-start: 1.5rem;
  padding-inline: 1rem;
  font-weight: bold;
}

.contents-text rt {
  font-size: 0.6em;
  letter-spacing: 0.05em;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 43rem;
  aspect-ratio: 430/120;
  margin-block: 2rem;
  overflow: hidden;
}

.video-mask-box {
  position: absolute;
  top: 2px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.video-mask-box video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mask-overlay {
  position: absolute;
  top: 0;
  /* かぶせたい量だけマイナスに*/
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.wave-divider {
  width: 100%;
  height: 20px;
  margin: 0 auto;
  position: relative;
}

.wave-divider svg {
  position: absolute;
  bottom: -1px;
}

.wave-divider-beige {
  background-color: #EEE7E0;
}

.wave-divider-green {
  background-color: #93B881;
}

.section-profile {
  background-color: #93B881;
  color: #313131;
  padding-block: 5rem;
}

.section-profile .contents-text {
  line-height: 2;
}

.profile {
  position: relative;
  width: 100%;
  /* 必要に応じて幅を指定 */
  aspect-ratio: 16/8;
  display: flex;
  align-items: flex-end;
  /* 下詰め */
  overflow: hidden;
  margin-block: 2rem;
}

.profile img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  /* トリミングで16:8にフィットさせる場合 */
  display: block;
}

.profile img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.profile-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* クリックなどを通過させる */
  z-index: 1;
}

.instructor {
  background: linear-gradient(to bottom right, rgba(209, 232, 209, 0.6666666667), rgba(194, 224, 194, 0.6666666667));
  /* 緑ベースの半透明グラデ */
  border-radius: 1rem;
  padding: 1rem 1rem;
  text-align: center;
  max-width: 42rem;
  margin-inline: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  /* シャドウ控えめ */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* 境界にやさしい線 */
  position: relative;
}

.instructor h4 {
  font-size: 1.8rem;
  color: #313131;
}

.qualifications {
  margin-block-start: 1rem;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.qualifications li {
  display: flex;
  align-items: center;
  gap: 0.8em;
  font-weight: bold;
  font-size: 1.5rem;
  color: #2e2e2e;
  padding-left: 2rem;
}

.li-icon {
  width: 1.6em;
  height: 1.6em;
  background-color: rgba(255, 255, 255, 0.6);
  /* 足跡背景を白っぽく */
  border-radius: 50%;
  padding: 0.3em;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.instructor-accent {
  position: absolute;
  bottom: 1rem;
  right: 3rem;
}

.instructor-accent img {
  width: 5rem;
}

.section-service {
  padding-block: 5rem;
  background-color: #EEE7E0;
}

#service .section-title img {
  width: 15rem;
}

#service .section-sub-title {
  margin-block-start: 4rem;
}

.service-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.service-sub-title {
  margin-block-start: 8rem;
}

.service-sub-title img {
  height: 2.5rem;
  width: auto;
}

.service-text {
  margin-block-start: 2rem;
  padding-inline: 1rem;
  text-align: center;
}

.service-list {
  margin-block-start: 1.5rem;
}

.service-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: 0.5rem;
}

.service-list img {
  width: 1em;
  height: 1em;
}

.btn-area {
  text-align: center;
  margin-block-start: 4rem;
}

.btn-detail {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 5rem;
  background-color: #93B881;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.btn-detail:hover {
  background-color: #45c181;
  /* 少し明るい緑に */
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.service-image {
  margin-block-start: 3rem;
  width: 100%;
}

.service-image img {
  width: 100%;
  height: auto;
}

.area-line-image {
  margin-block-start: 8rem;
  display: flex;
  justify-content: center;
}

.area-line-image img {
  width: 60%;
  height: auto;
}

.face-icon {
  position: absolute;
  top: -2rem;
  right: 1rem;
}

.face-icon img {
  width: 10rem;
  height: auto;
}

#profile .face-icon-text {
  margin-block-start: 8.5rem;
}

#profile .section-title-style {
  margin-inline-start: -4rem;
}

.service-note {
  margin-block-start: 1rem;
  text-align: center;
  font-size: 1rem;
  color: #6c5c4f;
  /* 落ち着いたブラウン系 */
}

.section-labo {
  background-color: #93B881;
  padding-block-start: 5rem;
  padding-block-end: 10rem;
}

.labo-access .section-title-style {
  margin-block: 2rem;
}

.labo-access img {
  height: 2.5rem;
  margin-block-start: 3rem;
}

.labo-map {
  width: 43rem;
  aspect-ratio: 1/1;
  max-width: 100%;
  margin: 2rem auto;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* 任意：見栄え強化 */
}

.labo-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.labo-address {
  font-style: normal;
  /* デフォルトで斜体になるのを防ぐ */
  font-weight: bold;
  line-height: 1.5;
  color: white;
  text-align: center;
}

.labo-info {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4375;
  color: white;
  max-width: 430rem;
  margin: 0 auto;
  text-align: center;
}

.labo-info .address {
  font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.5;
}

.access-notes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.access-notes li {
  margin-bottom: 0.4em;
  font-size: 0.9em;
}

.labo-shop-gallery {
  margin-block-start: 6rem;
}

.labo-shop-gallery img {
  height: 2.8rem;
}

.swiper-wrapper-container {
  width: 100%;
  margin-block-start: 2rem;
  overflow: hidden;
  position: relative;
}

.swiper {
  margin-block-start: 3rem;
  margin-block-end: 5rem;
  transform: rotate(5deg) scale(1.1);
  transform-origin: center center;
}

.swiper-slide {
  width: 50%;
  height: auto;
  /* スライドの高さを指定 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* はみ出し防止 */
}

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

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

.labo-visit-info {
  margin-top: 3rem;
  padding-inline-start: 1rem;
  color: white;
}

.labo-visit-info img {
  height: 2.8rem;
}

.visit-text .visit-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.visit-text {
  margin-block-start: 2rem;
}

.visit-points li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.visit-icon {
  width: 1em;
  height: 1em;
}

.footer {
  background-color: #F1E2CE;
  padding: 0.5em 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 1rem 0 8rem;
  }
}

.footer-inner {
  display: inline-flex;
  align-items: center;
  /* ←縦中央揃え */
  justify-content: center;
  /* ←左右中央揃え */
  gap: 0.5em;
  /* ←アイコンと文字の間隔 */
}

.footer-icon {
  width: 1em;
  height: auto;
  display: block;
}

.sns-float {
  position: fixed;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8em;
  z-index: 10;
  pointer-events: auto;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: floatY 1.5s ease-in-out infinite;
}
@media only screen and (max-width: 767px) {
  .sns-float {
    bottom: 6rem;
  }
}

.sns-float.show {
  opacity: 1;
}

/* ボタン本体のデザイン */
.sns-button {
  width: 15rem;
  height: 4.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.95em;
  text-decoration: none;
  gap: 0.5em;
}

/* アイコン画像 */
.sns-button img {
  height: 22px;
  width: auto;
}

/* 個別ボタンカラー */
.line {
  background-color: #A8B5A0;
}

.insta {
  background-color: #C6A6A2;
}

.page-service .service-item {
  min-height: 90vh;
  background-color: #EEE7E0;
  display: flex;
  justify-content: start;
  flex-direction: column;
}
.page-service .service-text {
  text-align: start;
}
.page-service .service-list li {
  text-align: start;
  padding-inline: 1rem;
  margin-block-start: 0.5rem;
}

.seo-content {
  padding-inline: 1rem;
  color: #313131;
  background-color: #EEE7E0;
  padding-block-start: 6rem;
  padding-bottom: 4rem;
  min-height: 90vh;
}

.seo-content h2 {
  font-size: 2rem;
  text-align: center;
  color: #EB6D46;
  padding-block: 1rem;
}

.seo-content a {
  color: #001ad3;
  /* ベージュサイトに合う柔らかいトーン */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

.profile-clip {
  width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  -webkit-clip-path: ellipse(50% 47% at 50% 50%);
          clip-path: ellipse(50% 47% at 50% 50%);
}

.sdgs-section {
  background-color: #EEE7E0;
  padding: 6rem 0;
  max-width: 430px;
  padding-bottom: 1rem;
}
.sdgs-section .section-title {
  text-align: center;
}
.sdgs-section .section-title img {
  width: 60%;
  max-width: 300px;
  height: auto;
}
.sdgs-section .sdgs-content {
  color: #444;
  font-size: 0.95em;
  line-height: 1.8;
  padding-inline: 1rem;
}
.sdgs-section .sdgs-content h3,
.sdgs-section .sdgs-content h4 {
  font-weight: bold;
  color: #6C5C4F;
  margin-top: 4rem;
  margin-bottom: 0.5em;
}
.sdgs-section .sdgs-content ul {
  list-style-type: disc;
  padding-left: 1.2em;
  margin-top: 0.5em;
}
.sdgs-section .sdgs-content ul li {
  margin-bottom: 0.5em;
}
.sdgs-section .sdgs-content ul li strong {
  color: #93B881;
}

.sdgs-content-img {
  margin-top: 3rem;
}

/* 上下に揺れるアニメーション */
@keyframes floatY {
  0% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}
/* ========== アニメーション ========== */
.checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
}

.checkbox-toggle:checked ~ .menu .menu-circle {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-toggle:checked ~ .menu .menu-inner {
  opacity: 1;
  pointer-events: auto;
}

/*足跡*/
.trail {
  position: absolute;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

/* 軌跡用のフェードアウト */
.fadeout {
  animation: fadeout 1s ease-in-out forwards;
}

@keyframes fadeout {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
/* バースト（パーン！）演出用 */
.burst {
  animation: burstAnim 0.6s ease-out forwards;
}

@keyframes burstAnim {
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.5);
  }
}
.section-top {
  background: url("../img/shop-gallery1.jpg") no-repeat center center;
  background-size: cover;
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main-visual-animation {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

@keyframes dropBounce {
  0% {
    transform: translate(-50%, -300px) rotateZ(0deg);
    opacity: 0;
  }
  20% {
    transform: translate(-50%, -150px) rotateZ(-5deg);
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -80px) rotateZ(5deg);
  }
  60% {
    transform: translate(-50%, 0) rotateZ(0deg);
  }
  75% {
    transform: translate(-50%, -20px);
  }
  90% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.main-visual-image {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 5;
  animation: dropBounce 1.8s ease-out 0.3s 1 both;
}

.main-visual-message h2 {
  position: absolute;
  top: 6rem;
  left: 50%;
  transform: translate(-50%, 0);
  color: #313131;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  animation: floatDropText 1.4s ease-out 1.2s both;
}
@media only screen and (max-width: 767px) {
  .main-visual-message h2 {
    font-size: 1.8rem;
    top: 5.5rem;
  }
}

.page-service .mobile-shell h1 {
  text-align: center;
  font-size: 1.2rem;
  padding-block-start: 7rem;
  background-color: #EEE7E0;
}

.main-visual-message h3 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  color: #313131;
  z-index: 2;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  white-space: nowrap;
  animation: floatDropText 1.4s ease-out 1.5s both;
}
@media only screen and (max-width: 767px) {
  .main-visual-message h3 {
    font-size: 1.6rem;
  }
}

@keyframes floatDropText {
  0% {
    transform: translate(-50%, -200px);
    opacity: 0;
  }
  40% {
    transform: translate(-50%, 20px);
    opacity: 1;
  }
  60% {
    transform: translate(-50%, -10px);
  }
  80% {
    transform: translate(-50%, 5px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.section-privacy {
  background-color: #EEE7E0;
  padding: 6rem 1rem;
  color: #313131;
  font-weight: bold;
}
.section-privacy .section-title-style {
  font-size: 2.2rem;
  text-align: center;
  color: #EB6D46;
  margin-bottom: 2rem;
}
.section-privacy .privacy-content {
  max-width: 43rem;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 1.8;
  padding-inline: 1rem;
}
.section-privacy .privacy-content p {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .section-privacy {
    padding: 4rem 1rem;
  }
  .section-privacy .section-title-style {
    font-size: 2rem;
  }
  .section-privacy .privacy-content {
    font-size: 1.5rem;
  }
}/*# sourceMappingURL=styles.css.map */