/* ===============================================
 * 
 * -- style
 * 
 * =============================================== */
/* =============================================
   First make — style.css
   ============================================= */

:root {
  --pink-light:  #fce8ef;
  --pink-mid:    #f4b8cc;
  --pink-deep:   #e8829f;
  --pink-accent: #d45c7c;
  --blue-accent: #003c7f;
  --navy:        #1e2d4a;
  --navy-light:  #2e4068;
  --cream:       #fdf6f0;
  --white:       #ffffff;
  --dot:       url(http://first-make.jp/wp-content/uploads/2026/03/bg.svg);
  --make:       url(http://first-make.jp/wp-content/uploads/2026/03/bg_g.webp);
  --dot-color:   rgba(212, 92, 124, 0.18);
  --bg:            #fae1ec;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'dnp-shuei-mgothic-std', 'Noto Sans JP', sans-serif;
  color: var(--blue-accent);
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  position: relative;
  font-weight: 600;
}

a {
    font-family: 'dnp-shuei-mgothic-std', 'Noto Sans JP', sans-serif;
text-decoration: none;
  color: #003c7f;
    transition: ease all 0.25s;
}
a:hover {
opacity: 0.5;
  transition: ease all 0.25s;
}
/* Loader */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;

  background: linear-gradient(
    105deg,
    rgba(255, 220, 240, 0.8),
    rgba(200, 220, 255, 0.8),
    rgba(200, 255, 230, 0.8),
    rgba(255, 255, 200, 0.8),
    rgba(255, 210, 200, 0.8)
  );
  background-size: 300% 300%;
  animation: rainbow-wave 3s linear infinite;
}

.loader-overlay.hide {
  opacity: 0;
  visibility: hidden;
}

@keyframes rainbow-wave {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.loader-logo {
  width: 22vw; /* ロゴの幅に合わせて調整 */
  margin-top: -5%;
  position: relative;
}
.loader-logo img {
  width: 100%;
  height: auto;
  animation: loader-spin 1.2s ease-out forwards; 
}

@keyframes loader-spin {
  0% {
    transform: rotateY(0deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: rotateY(360deg); /* 1回転で終わり */
    opacity: 1;
  }
}
.hero-logo {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 33%;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0; 
}
.hero-logo.is-show {
  visibility: visible;
  animation: logo-powaan 1.2s ease-out forwards;
}

@keyframes logo-powaan {
  0% {
    opacity: 0;
    transform: scale(0.7);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rainbow-wave {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === puwa1：ふわふわ浮く === */
.puwa1 {
  animation: puwa-float 3s ease-in-out infinite;
}

/* === puwa2：ワンテンポ遅れてふわふわ === */
.puwa2 {
  animation: puwa-float 3s ease-in-out 1s infinite; /* 1s遅れ */
}

@keyframes puwa-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}


/* ── HEADER ── */
#lpheader {
  position: fixed;
  top: 5%;
  right: 0;
  width: 100%;
  max-width: 50px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  justify-content: right;
    transition: ease all 0.5s;
}
#lpheader.open {
  right: min(43%, 600px);
  transition: ease all 0.5s;
}
.logo {
  font-family: 'dnp-shuei-mgothic-std', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--pink-accent);
  line-height: 1;
}
.logo span {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--navy-light);
  margin-top: 3px;
}

#menuBtn.hamburger {
  width: 100px;
  height: 110px;
  background: var(--blue-accent);
  border-radius: 12px 0 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  border: 2px solid var(--blue-accent);
	padding: 0;
}
#menuBtn.hamburger span {
  display: block;
  width: 70%;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
#menuBtn.hamburger span:nth-child(2) {
  margin: 8px auto;
}
#menuBtn.hamburger.open span:nth-child(1) {
  transform: translateY(17px) rotate(45deg);
}
#menuBtn.hamburger.open span:nth-child(2) {
  opacity: 0;
}
#menuBtn.hamburger.open span:nth-child(3) {
  transform: translateY(-15px) rotate(-45deg);
}
#lpheader.scrolled {
  position: fixed;
  top: 5%;
}
.pickup-sidebar.scrolled {
  position: fixed;
  top: calc(5% + 140px);
}

/* ── DRAWER NAV ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 45, 74, 0.5);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  max-width: 600px;
  height: 100%;
  background: var(--white);
  z-index: 300;
  transition: right 0.35s cubic-bezier(.4, 0, .2, 1);
  padding: 80px 30px 40px;
  display: flex;
  flex-direction: column;
  border-radius: 30px 0 0 30px;
}
.nav-drawer.open { right: 0; }


.nav-drawer nav a {
  display: block;
  font-size: clamp(16px, calc(20 / 1280 * 100vw), 22px);
  letter-spacing: 0.12em;
  color: var(--navy);
  text-decoration: none;
  padding: 1vw 0;
  border-bottom: 1px solid var(--pink-light);
  font-weight: 300;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-drawer nav a:hover { color: var(--pink-accent); padding-left: 6px; }
.nav-drawer nav a .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--pink-mid);
  margin-top: 2px;
}

/* ── HERO / KEY VISUAL ── */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  max-height: 85vh;
  overflow: hidden;
  z-index: 1;
}
.hero-slides {
  overflow: hidden; /* はみ出しを隠す */
  width: 100%;
}

.hero-track {
  display: flex;
  width: max-content; 
  animation: slide-loop 30s linear infinite; 
}

.hero-track img {
  height: 85vh;
  width: auto;
  display: block;
  flex-shrink: 0;
}

@keyframes slide-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); 
  }
}

/* Hero text overlay */
.hero-text {
  position: absolute;
  bottom: 36px;
  left: 20px;
  z-index: 5;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.hero-text .catch {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  display: block;
  margin-bottom: 4px;
  opacity: 0.9;
}
.hero-text .main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
.hero-text .main em {
  font-style: italic;
  color: var(--pink-light);
}

.hero-logo {
  position: absolute;
  top: 33%;
  left: 0;
  right: 0;
  text-align: center;
  animation: logo-powaan 1.2s ease-out forwards;
}

.hero-logo img {
  width: 22vw;
  height: auto;
}

@keyframes logo-powaan {
  0% {
    opacity: 0;
    transform: scale(0.7);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05); /* 少しだけ大きくなって… */
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: scale(1); /* ストンと収まる */
  }
}
.instagram-btn {
  position: fixed;
  right: 0;
  top: calc(5% + 120px);
  z-index: 13;
  border-top: 2px solid var(--blue-accent);
  border-bottom: 2px solid var(--blue-accent);
  border-left: 2px solid var(--blue-accent);
  border-radius: 12px 0 0 12px;
  background: #fff;
  transition: ease all 0.5s;
  width: 100px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.instagram-btn .scrolled {
	
}
.instagram-btn img {
  width: 60px;
  height: 60px;
}



/* ── SECTION BASE ── */
section {
  position: relative;
  padding: 48px 20px;
}

.section-label {
  text-align: center;
  margin-bottom: 28px;
}
.section-label .ttl {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-size: clamp(18px, calc(22 / 1280 * 100vw), 24px);
  font-weight: 600;
  color: var(--blue-accent);
  letter-spacing: 0.08em;
  display: block;
  line-height: 1.5;
  margin: 3vw 0;
}
.section-label .ja {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--navy-light);
  font-weight: 300;
  display: block;
  margin-top: 4px;
}
.inner-row {
  max-width: 900px;
  margin: 0 auto;
}

/* ── ABOUT CONTENT ── */
.about-section {
  background: var(--dot);
  background-size: 70px;
  padding: 5vw 0;
}
.about-section .ttl {
  max-width: 31vw;
  margin: 0 auto;
}
.txt_deco_line {
  color: #cc261c;
  position: relative;
  display: inline-block;
  z-index: 0;
}
.txt_deco_line::before {
  content: "";
  position: absolute;
  left: -0.2em;
  right: -0.2em;
  bottom: 0.1em;
  height: 0.7em;
  background: #fff;
  transform: skewX(-25deg);
  z-index: -1;
}
.about-section .section-text {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 21px);
  font-weight: 600;
  line-height: 2;
}
.about-photo {
  margin: 3vw 0 0;
}
.about-banner {
  background: #fff;
  border-radius: 45px;
  margin: 5vw auto 0;
	display: none;/* 非公開 */
}
.about-banner::before, .about-banner::after {
  content: '';
  display: block;
  width: 100%;
  margin: 0;
  height: 4px;
  background: #f9a8c9;
  border-radius: 10px;
}
.about-banner::before {
  width: 82%;
  margin-left: 4%;
}
.about-banner::after {
  width: 82%;
  margin-left: 13%;
  right: 0;
}
.about-bnr-list {
  position: relative;
display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1vw 10vw;
  grid-gap: 2%;
  justify-content: center;
  align-items: center;
}
.about-bnr-list::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/about_deco_star.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 47px;
  position: absolute;
  z-index: 1;
  top: -14%;
  background-position: right;
  right: 22px;
	animation: pikopiko 2s ease-in-out infinite alternate;
}
.about-bnr-list::after {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/about_deco_star2.svg) no-repeat;
  background-size: auto;
  background-size: contain;
  width: 100%;
  height: 47px;
  position: absolute;
  z-index: 1;
  bottom: -10%;
  left: 15px;
  background-position: left;
	animation: pikopiko 2s ease-in-out infinite alternate;
}
.about-bnr-footer {
  text-align: right;
  font-weight: 600;
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 21px);
  position: absolute;
  width: 100%;
  bottom: 15px;
  padding: 0 3vw;
}
.about-bnr-footer img {
  max-width: 16px;
  margin: 0 5px;
}
.about-bnr-item {
  justify-content: center;
  align-items: center;
  display: flex;
}
.about-bnr-item img {
  width: auto;
}




/*── OUR THOUGHTS CONTENT ── */
.ourthoughts-section {
  background: var(--bg);
  padding: 5vw 0;
  z-index: 3;
}
.ourthoughts-plane{
  position: relative;
  width: 100%;
}
.plane_line{
  width: 100%;
  display: block;
  max-width: 38vw;
  margin: 0 auto;
}
.plane{
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
}
.ourthoughts-section .section-text {
  max-width: 700px;
  margin: 7vw auto 0;
}
.message-open {
}
.ourthoughts-section .ttl {
  position: relative;
  max-width: 33vw;
  margin: 0 auto;
}
.ourthoughts-section .ourthoughts-plane {
  position: absolute;
  top: 33%;
  right: 0;
  left: 3%;
  margin: 0 auto;
  z-index: -1;
  max-width: 100%;
}


/* message modal */
.message-open {
  cursor: pointer;
  transition: opacity 0.2s;
}

.message-open:hover {
  opacity: 0.8;
}

.message-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.message-overlay.show {
  display: flex;
}

.message-modal {
  position: relative;
  background: transparent;
  padding: 0;
  max-width: 90vw;
  width: 800px;
  text-align: left;
  border: 5px solid;
  border-radius: 5px;
}
.message-modal::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/stamp.svg) no-repeat;
  background-size: contain;
  width: 20vw;
  height: 20vw;
  position: absolute;
  z-index: -1;
  top: 37%;
  left: 0;
  right: 0;
  margin: auto;
}
.message-modal::after {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.message-inner {
  overflow: scroll;
  max-height: 80vh;
  padding: 3vw 1.8vw;
}
.message-text {
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 20px);
  line-height: 2;
  color: var(--blue-accent);
  font-weight: bold;
  margin: 0;
  background-color: transparent;
  background-image: linear-gradient(180deg, #fae1ec 1px, transparent 1px);
  background-size: 100% 2.5em;
  line-height: 2.5em;
  padding-bottom: 1px;
  text-align: left;
}
.right_tt {
  text-align: right;
  display: block;
}
.message-close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--blue-accent);
  border: none;
  font-size: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.ourthoughts-section .section-text .message-tap {
  position: absolute;
  width: 105px;
  height: 105px;
  bottom: 29%;
  right: 27%;
  cursor: pointer;
  animation: tap-blink 2s ease-in-out infinite;
}
@keyframes tap-blink {
  0%   { opacity: 1; }
  50%  { opacity: 0.2; }
  100% { opacity: 1; }
}

.message-open {
  cursor: pointer;
  opacity: 0;
  transform: translateY(200px) scale(0.8);
  filter: blur(4px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

/* JSでクラスを付けたら登場 */
.message-open.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation:
    message-float 3s ease-in-out 0.8s infinite; /* 登場後にふわふわ */
}

@keyframes message-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* === モーダル：ぽわっと小→大 === */
.message-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.message-overlay.show {
  display: flex;
}

.message-modal {
  animation: modal-powaan 0.5s ease-out forwards;
}

@keyframes modal-powaan {
  0% {
    opacity: 0;
    transform: scale(0.6);
    filter: blur(4px);
  }
  70% {
    opacity: 1;
    transform: scale(1.04);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.message-close {
  position: absolute;
  top: -52px;
  left: -8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.message-close img {
  width: 36px;
  height: 36px;
}



/* ── EVENT CONTENT ── */
.event-section {
  background: #fae1ec;
  background-size: 70px;
  padding: 150px 0;
  z-index: inherit;
}
.event-section .inner-row {
  position: relative;
  max-width: 900px;
}
.event-section .ttl {
  max-width: 73%;
  position: absolute;
  top: 0;
  z-index: 1;
}
.event-card {
 margin: 150px auto 30px;
  background: #fff;
  padding: 90px 40px 20px;
  border-radius: 20px;
  position: relative;
  max-width: 700px;
  aspect-ratio: 4 / 3;
}
.event-card::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/event_star01.svg) no-repeat;
    background-size: auto;
  background-size: contain;
  width: 3vw;
  height: 3vw;
  position: absolute;
  top: -5%;
  right: 3%;
  z-index: 1;
  animation: puwa-float 3s ease-in-out 1s infinite;
}
.event-card::after {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/event_star02.svg) no-repeat;
  background-size: contain;
width: 3vw;
  height: 3vw;
  position: absolute;
  bottom: -4%;
  left: 3%;
  z-index: 1;
  animation: puwa-float 3s ease-in-out infinite;
}
.event-card-ttl {
  background: #f0a0c4;
  color: #fff;
  font-size: clamp(16px, calc(20 / 1280 * 100vw), 22px);
  padding: 4px 20px;
  display: inline;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
}
.event-card-text {
  font-size: clamp(14px, calc(16 / 1280 * 100vw), 18px);
  line-height: 1.5;
  padding: 30px 0;
}
.event-card-entry {
  font-size: clamp(14px, calc(18 / 1280 * 100vw), 20px);
  font-weight: 600;
  text-align: center;
  margin: 3vw 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
}
.event-card-entry span {
  z-index: 1;
  position: relative;
  margin: 0;
  background: #fae1ec;
  border: 2px solid #003c7f;
  padding: 0.7vw 2vw;
  border-radius: 40px;
  font-weight: 600;
  transition: ease all 0.25s;
  filter: drop-shadow(4px 4px 0 #003c7f);
	letter-spacing: 0.2rem;
}
.event-card-entry span:hover {
  filter: drop-shadow(0 0 0 #003c7f);
}
.event-card-entry a:hover {
  opacity: 1;
}

.event-card-img {
  margin: 10px 20px;
  border-radius: 10px;
  overflow: hidden;
}
.event-card-ftr {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 20vw;
}
.event-card-text table {
  width: 100%;
}
.event-card-text table th, .event-card-text table td {
	border: none;
  border-bottom: 1px solid #fae1ec;
  padding: 10px;
	text-align: left;
}
.event-card-text table th {
  color: #f0a0c4;
  width: 25%;
}
.event-card.cat_preparation .event-card-ttl {
  background: #aecef0;
}
.event-card.cat_preparation .event-card-text table th,
.event-card.cat_preparation .event-card-text table td {
  color: #aecef0;
	border-bottom: 1px solid #aecef0;
}
.event-card.cat_preparation 
.event-card-entry span {
background: #fff;
border: 2px solid #aecef0;
filter: none;
color: #aecef0;
}
.event-card.cat_deadline .event-card-ttl {
  background: #c8c8c8;
}
.event-card.cat_deadline .event-card-text table th,
.event-card.cat_deadline .event-card-text table td {
  color: #c8c8c8;
	border-bottom: 1px solid #c8c8c8;
}
.event-card.cat_deadline
.event-card-entry span {
background: #fff;
border: 2px solid #c8c8c8;
filter: none;
color: #c8c8c8;
	letter-spacing: inherit;
}

.event-slider {
  overflow: hidden;
  position: relative;
  touch-action: pan-y;
  cursor: grab;
}
.event-slider.is-dragging {
  cursor: grabbing;
}
.event-card-list {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}
.event-card {
  min-width: 100%;
  flex-shrink: 0;
}
.event-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 100px;
  position: relative;
}
.event-dot {
padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d9;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
z-index: 1;
}
.event-dot.active {
  background: #0a3d91;
  transform: scale(1.2);
}


/* ── GALLERY CONTENT ── */
.gallery-section {
  background: var(--make);
  background-size: 30%;
  background-position: center top;
  z-index: 2;
  padding: 5vw 0 2vw;
}
.gallery-section .inner-row {
  padding: 0 0 6vw;
  max-width: 900px;
}
.gallery-section::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/bg_before.svg);
background-size: auto 40px;
  background-position: left bottom;
  width: 100%;
  height: 40px;
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  z-index: 1;
	background-repeat: repeat-x;
}
.gallery-section::after {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/bg_after.svg);
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: -38px;
  left: 0;
  right: 0;
  z-index: 1;
background-size: auto 40px;
  background-position: left top;
	background-repeat: repeat-x;
}
.gallery-section .ttl {
  max-width: 13vw;
  margin: 0 auto;
}
.gallery-bord {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2%;
  margin: 3vw auto 0;
}
.gallery-bord-img {
  background: #fff;
  padding: 1vw;
}
.gallery-bord-img .gallery_data {
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 20px);
  font-weight: 600;
  display: inline-block;
}
.gallery-bord-img .gallery_cat {
  display: inline-block;
  text-align: right;
}
.bord-head {
display: grid;
grid-template-columns: 2fr 1fr;
}
.bord-head .gallery_cat {
  text-align: right;
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
}
.gallery-bord-img .gallery_img_ttl {
  display: block;
  text-align: center;
  font-size: clamp(20px, calc(22 / 1280 * 100vw), 24px);
  padding: 10px 0 0;
  font-weight: 600;
}
.gallery_photo {
  aspect-ratio: 1;
  object-fit: cover;
}
.gallery-footer {
  margin: 2vw auto 5vw;
  text-align: right;
  max-width: 900px;
}
.gallery-footer .gallery-ftr-bnr-text {
  background: #fff;
  padding: 0.8vw 3vw;
  display: inline-block;
  font-size: clamp(16px, calc(20 / 1280 * 100vw), 22px);
	font-weight: 600;
}
.cat_make {
  background: #fff1ef;
}
.cat_media {
  background: #e6ffff;
}
.cat_collabo {
  background: #fff6de;
}
.gallery_cat.cat_media {
  color: #0075d9;
}
.gallery_cat.cat_collabo {
  color: #ffad76;
}
.gallery_cat.cat_collabo img {
  max-height: clamp(14px, calc(16 / 1280 * 100vw), 18px);
	width: auto;
}
.gallery-bord a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-bord a:hover {
	opacity: 1;
  transform: rotate(-2deg) translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* ── PERSONAL COLLAR CONTENT ── */
.personal-section {
  background: #fae1ec;
  padding: 5vw 0;
}
.accordion-wrap {
  border-radius: 16px;
  padding: 8px;
  border-radius: 20px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion-btn {
  width: 100%;
  background: transparent;
  color: #1a3a6b;
  border: none;
  border-radius: 12px;
  padding: 40px 40px 60px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, border-radius 0.3s;
}

.accordion-item.open .accordion-btn {
  border-radius: 12px 12px 0 0;
  color: #1a3a6b;
}

.accordion-icon {
  width: 1.8vw;
  height: 1.8vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-icon img {
  width: 100%;
  height: auto;
}
.icon-close {
  display: none;
}
.accordion-item.open .icon-open {
  display: none;
}
.accordion-item.open .icon-close {
  display: block;
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  background: transparent;
  border-radius: 0 0 12px 12px;
}

.accordion-content-inner {
  overflow: hidden;
  padding: 0 20px;
  transition: padding 0.3s ease;
}

.accordion-item.open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.open .accordion-content-inner {
  padding: 1.8vw 1.8vw 7vw;
}

.ttl img,
.material img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text {
  font-size: 14px;
  line-height: 1.8;
  color: #1a3a6b;
  font-weight: bold;
  margin: 12px 0;
}

.popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10% 8%;
  margin: 3vw 0;
}

.popup-btn {
	padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
  border-radius: 0;
	background: transparent;
}

.popup-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.popup-btn:hover {
  opacity: 0.8;
}

._tap {
position: relative;
}
._tap::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/tap.svg) no-repeat;
  background-size: contain;
  width: 120px;
  height: 60px;
  position: absolute;
  top: -43%;
  right: -16%;
  margin: auto;
  animation: tap-blink 2s ease-in-out infinite;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.show {
  display: flex;
}
.modal-inner {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  max-width: 90vw;
}
.modal-inner img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: -46px;
  left: 4px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
}
.modal-close img {
  max-width: inherit;
  width: 36px;
  height: 36px;
}

/* accordion tab */
.accordion-title {
  text-align: left;
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 22px);
  line-height: 1.5;
  font-family: 'dnp-shuei-mgothic-std', 'Noto Sans JP', sans-serif;
}
.accordion-item {
border-radius: 25px 25px 0 0;
}
.accordion-item._uno {
  background: url(http://first-make.jp/wp-content/uploads/2026/03/bg_b.svg);
  background-size: 37.7px;
	border-radius: 25px;/* コンテンツ非公開のため */
}
.accordion-item._uno .ttl {
  max-width: 90%;
  margin: 20px auto;
  position: relative;
}
.accordion-item._uno .ttl::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/pnr_deco.svg) no-repeat;
    background-size: auto;
  background-size: contain;
  width: 107%;
  height: 160%;
  position: absolute;
  bottom: -30%;
  right: 0;
  left: -2%;
  margin: auto;
  animation: puwa-float 3s ease-in-out infinite;
}
.psnl_in {
  margin: 5vw auto 7vw;
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: center;
  align-items: center;
  max-width: 520px;
}
.accordion-item._uno .text {
  position: relative;
  line-height: 1.5;
  font-size: clamp(16px, calc(20 / 1280 * 100vw), 28px);
}
.accordion-item._uno 
.material {
  max-width: 146px;
}

.accordion-item._uno .text .material {
max-width: 140px;
}
.accordion-item._uno .accordion-content-inner {
  padding: 0;
  opacity: 0;
  transition: ease all 0.25s;
}
.accordion-item._uno.open .accordion-content-inner {
	padding: 60px 2vw 7vw;
  opacity: 1;
  transition: ease all 0.25s;
}
.accordion-item._due {
  background: #7ab4f0;
  margin-top: -30px;
}
.accordion-item._tre {
  background: #7f86cf;
  margin-top: -30px;
  border-radius: 25px;
}
.accordion-item._due .accordion-title ,
.accordion-item._tre .accordion-title  {
  color: #fff;
}
.accordion-item._due .accordion-btn {
padding: 40px 40px 60px 40px;
}
.accordion-item._tre .accordion-btn {
padding: 40px;
}

.diagnosis-result {
  margin: 10vw auto 0;
}
.diagnosis-result .intro {
  font-size: clamp(16px, calc(20 / 1280 * 100vw), 22px);
  font-weight: 600;
  letter-spacing: 0.3rem;
  padding: 0 20px 10px;
}
.diagnosis-result .intro span {
  font-size: 180%;
}
.diagnosis-result .intro img {
  height: clamp(26px, calc(30 / 1280 * 100vw), 32px);
  width: auto;
}
.diagnosis-result .basettl img {
  height: clamp(28px, calc(31 / 1280 * 100vw), 31px);
}
.diagnosis-result .basettl {
  background: #ffe856;
  border-radius: 50px;
  padding: 8px 80px;
  display: inline-block;
  margin: 5px 0 15px;
	position: relative;
	width: 100%;
}
.diagnosis-result .blue_base .basettl {
background: #9ae6ff;
}
.diagnosis-result .basettl::before {
  content: "";
  background: url(hhttp://first-make.jp/wp-content/uploads/2026/04/brush.svg) no-repeat;
    background-size: auto;
  background-size: contain;
  width: 17%;
  height: 150%;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  animation: puwa-float 3s ease-in-out infinite;
}
.diagnosis-result .blue_base .basettl::before  {
  background: url(http://first-make.jp/wp-content/uploads/2026/04/buehler.svg) no-repeat;
  background-size: contain;	
}
.diagnosis-result .name_en {
  font-size: clamp(18px, calc(22 / 1280 * 100vw), 24px);
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  margin: 0 0 10px;
}
.diagnosis-result .name_en img {
  height: 80px;
  width: auto;
}
.diagnosis-result 
.name_ja {
  font-size: clamp(12px, calc(14 / 1280 * 100vw), 16px);
  font-weight: 600;
  line-height: 1.5;
  color: #000;
	text-align: right;
}
.diagnosis-result 
.viewmore {
  margin: 20px 0 0;
}
.diagnosis-result .viewmore span {
  background: #fff;
  border: 2px solid #ffad26;
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 20px);
  font-weight: 600;
  color: #ffad26;
  padding: 6px 50px;
  border-radius: 50px;
  filter: drop-shadow(4px 4px 0 #ffad26);
  transition: ease all 0.25s;
}
.diagnosis-result .viewmore span:hover {
  filter: drop-shadow(0 0 0 #ffad26);
}
.yellow_base, .blue_base {
	background: url(http://first-make.jp/wp-content/uploads/2026/04/base_y.svg) no-repeat;
  display: grid;
  grid-template-columns: 2fr 1fr;
  justify-content: center;
  align-items: center;
	margin: 0 auto 40px;
	gap: 0 2%;
  padding: 20px 40px 40px 0;
}
.blue_base {
  background: url(http://first-make.jp/wp-content/uploads/2026/04/base_b.svg) no-repeat;
  background-position: top right;
	grid-template-columns: 1fr 2fr;
	padding: 20px 0 40px 40px;
}
.diagnosis-result .note {
  display: grid;
	padding: 0 0 0 40px;
}
.diagnosis-result .blue_base .note {
padding: 0 40px 0 0;
}
.diagnosis-result .palette {
  padding: 10px;
}
.blue_base .name_en, .blue_base .name_ja {
  text-align: left;
}
.diagnosis-result .blue_base .viewmore span {
  border: 2px solid #64b2ff;
	color: #64b2ff;
filter: drop-shadow(4px 4px 0 #64b2ff);
}




.accordion-item._due {/* 現在非公開 */
display: none;
}
.accordion-item._tre {/* 現在非公開 */
display: none;
}






/* ── SNS CONTENT ── */
.sns-section {
  padding: 10vw 0;
  z-index: 0;
}
.snscheck {
  width: 15vw;
  height: 8vw;
  position: absolute;
  top: 6%;
  left: 33%;
}
.sns-section::before {

}
.sns-section .inner-row {
  max-width: 600px;
  margin: 0 auto;
}
.sns-section .ttl {
  margin: 0 auto;
}
.sns-section .ttl img {
  height: 2vw;
}
.sns-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 5vw auto 3vw;
  gap: 5%;
  max-width: 350px;
}
.sns-list-item a {
  display: grid;
  grid-template-columns: 1fr;
  font-family: 'dnp-shuei-mgothic-std', 'Noto Sans JP', sans-serif;
  font-weight: 600;
}
.sns-list-item img {
  max-width: 80px;
  height: auto;
  margin: 0 auto;
}
.sns-list-item span {
  line-height: 1.3;
  margin: 1vw 0;
}

/* ── PARTNER CONTENT ── */
.partner-section {
  padding: 5vw 0 10vw;
}
.partner-section .ttl img {
  height: 2vw;
}
.partner-section .ttl::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/partner_deco.svg) no-repeat;
  background-size: contain;
  width: 19vw;
  height: 5vw;
  position: absolute;
  bottom: -70%;
  z-index: -1;
  right: 0;
  left: 0;
  margin: auto;
  animation: puwa-float 3s ease-in-out infinite;
}
.partner-list .partner-list-item {
  list-style: none;
  padding: 0;
  margin-right: 60px;
}
.partner-list {
  overflow: hidden;
  width: 100%;
}

.partner-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 30s linear infinite; /* 数字で速さ調整 */
	margin: 10px auto;
}
.partner-list.half {
  max-width: 70%;
  margin: 0 auto;
}
.partner-track:hover {
  animation-play-state: paused; /* ホバーで一時停止 */
}
.partner-list-item {
  display: flex;
  align-items: center;
  gap: 60px; /* ロゴ間の余白 */
  list-style: none;
  margin: 0;
  padding: 0 20px;
}

.partner-list-item li img {
  height: 80px;
  width: auto;
  display: block;
  max-width: 250px;
  height: auto;
}

@keyframes partner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* ul1枚分スライドでシームレスに */
  }
}
.partner-track:hover,
.partner-track.paused {
  animation-play-state: paused;
}

/* ── MEDIA CONTENT ── */
.media-section {
  background: url(http://first-make.jp/wp-content/uploads/2026/03/bg_p.svg);
  background-size: 200px;
  padding: 5vw 0;
}
.media-section .ttl {
  position: relative;
}
.media-section .ttl img {
  height: 2vw;
}
.media-section .ttl::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/media_deco.svg) no-repeat;
  background-size: contain;
  width: 15vw;
  height: 5.5vw;
  position: absolute;
  bottom: -49%;
  z-index: -1;
  right: 0;
  left: 2%;
  margin: auto;
  animation: puwa-float 3s ease-in-out 1s infinite;
}
.media-list-name {
  list-style: none;
  padding: 0 0 2vw;
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1%;
}
.media-list-name li {
  width: 100%;
  margin: 0 auto 20px;
}
.media-list-name li span {
  background: #ffc9dc;
  padding: 1vw 2vw;
  display: inline-block;
  line-height: 1.5;
  margin: 0;
  font-weight: 600;
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 20px);
	width: 100%;
}
.media-list-name li a {
  position: relative;
  width: 100%;
  display: inline-block;
	  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%
  );
}
.media-list-name li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #003c7f transparent transparent transparent;
}
.media-banner a {
  background: url(http://first-make.jp/wp-content/uploads/2026/03/btn-ribbon.svg) no-repeat;
  background-size: contain;
  background-position: center;
    padding: 1.5vw;
  text-decoration: none;
  color: #003c7f;
  font-size: 12px;
  font-weight: 600;
}
.media-banner {
  text-align: center;
}

/* ── Q&A CONTENT ── */
.faq-section .ttl {
  position: relative;
}
.faq-section .ttl::before {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/faq_deco.svg) no-repeat;
  background-size: contain;
  width: 13vw;
  height: 3vw;
  position: absolute;
  top: -20%;
  z-index: -1;
  right: 0;
  left: 0;
  margin: auto;
  animation: puwa-float 3s ease-in-out infinite;
}
.faq-section .ttl img {
  height: 2vw;
}
.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-btn {
  width: 100%;
  color: var(--blue-accent);
  border: none;
  border-radius: 12px;
  padding: 20px 40px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s, border-radius 0.3s;
  background: transparent;
  font-family: 'dnp-shuei-mgothic-std', 'Noto Sans JP', sans-serif;
  text-align: left;
}
.faq-item._ott .faq-btn {
  padding: 20px 40px;
}
.faq-item {
  font-family: 'dnp-shuei-mgothic-std', 'Noto Sans JP', sans-serif;
}
.faq-question {
  text-align: left;
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 22px);
  line-height: 1.5;
}
.faq-item.open .faq-btn {
  border-radius: 12px 12px 0 0;
}

.faq-icon {
  width: 1.8vw;
  height: 1.8vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon img {
  width: 100%;
  height: auto;
}

.faq-icon .icon-close {
  display: none;
}

.faq-item.open .faq-icon .icon-open {
  display: none;
}

.faq-item.open .faq-icon .icon-close {
  display: block;
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  border-radius: 0 0 12px 12px;
}

.faq-content-inner {
  overflow: hidden;
  padding: 0 2vw;
  transition: padding 0.3s ease;
  font-weight: 600;
  color: var(--blue-accent);
}

.faq-item.open .faq-content {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-content-inner {
  padding: 1.8vw 2vw 7vw;
  letter-spacing: -0.02rem;
}

.faq-answer {
  font-size: clamp(16px, calc(18 / 1280 * 100vw), 18px);
  line-height: 1.8;
  color: #1a3a6b;
  margin: 0;
}
/* faq accordion */
.faq-section {
  padding: 3vw 0 0;
}
.faq-item._uno {
  background: #ffdbec;
}
.faq-item._uno .ttl {
  max-width: 23vw;
  margin: 0 auto;
}
.faq-item._uno .text {
  text-align: center;
  position: relative;
  padding: 2vw 0;
  font-size: 16px;
  line-height: 1.5;
}
.faq-item._uno .text .material {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.faq-item._uno .accordion-content-inner {
  padding: 20px 20px 7vw;
}
.faq-item._due {
  background: #7ab4f0;
  margin-top: -30px;
}
.faq-item._tre {
  margin-top: -30px;
}
.faq-item._qua {
  margin-top: -30px;
}
.faq-item._cin {
  margin-top: -30px;
}
.faq-item._sei {
  margin-top: -30px;
}
.faq-item._set {
  margin-top: -30px;
}
.faq-item._ott {
  margin-top: -30px;
  border-radius: 25px;
}
.faq-item._due .accordion-title,
.faq-item._tre .accordion-title,
.faq-item._qua .accordion-title {
  color: #fff;
}
.faq-item._due .accordion-btn,
.faq-item._tre .accordion-btn {
  padding: 1.8vw 2vw 2.8vw 2vw;
}
.faq-item._qua .accordion-btn {
  padding: 1.8vw 2vw;
}
.faq-item._uno {
  background: #ffe9ec;
  border-radius: 25px 25px 0 0;
}
.faq-item._due {
  background: #ffdbec;
  border-radius: 25px 25px 0 0;
}
.faq-item._tre {
  background: #ffd1df;
  border-radius: 25px 25px 0 0;
}
.faq-item._qua {
  background: #ffc9dc;
  border-radius: 25px 25px 0 0;
}
.faq-item._cin {
  background: #ffbbd5;
  border-radius: 25px 25px 0 0;
}
.faq-item._sei {
  background: #ffacc4;
  border-radius: 25px 25px 0 0;
}
.faq-item._set {
  background: #ff9bb7;
  border-radius: 25px 25px 0 0;
}
.faq-item._ott {
  background: #ff8bb1;

}

/* ── CONTACT CONTENT ── */
.contact-section {
  background: var(--dot);
  background-size: 70px;
  padding: 5vw 0;
}
.contact-section .ttl img {
  height: 2vw;
}
.contact-box {
  text-align: center;
  padding: 0;
  position: relative;
  color: #003c7f;
  line-height: 1.5;
  display: block;
  font-weight: 600;
}
.contact-banner span {
  padding: 3vw 0;
  display: block;
  font-size: clamp(28px, calc(31 / 1280 * 100vw), 31px);
  background: #fff;
  border: 5px solid;
  border-radius: 25px;
}
.contact-box {
  max-width: 810px;
  margin: 0 auto;
}
.contact-banner span::before {
content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/contact_deco.svg) no-repeat;
  background-size: contain;
width: 122px;
  height: 14.5vw;
  position: absolute;
  z-index: 1;
  top: -11%;
  left: -5%;
  right: 0;
  background-position: center;
  animation: puwa-float 3s ease-in-out infinite;
}
.contact-banner span::after {
  content: "";
  background: url(http://first-make.jp/wp-content/uploads/2026/03/contact_deco2.svg) no-repeat;
  background-size: contain;
  width: 182px;
  height: 14.5vw;
  position: absolute;
  z-index: 1;
  top: -4%;
  right: -2%;
  background-position: center;
  animation: puwa-float 3s ease-in-out 1s infinite;
}
.contact-list {
  list-style: none;
  margin: 1vw auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 2%;
  max-width: 100%;
}
.contact-list li {
  text-align: center;
}
.contact-btn {
  background: #fff;
  display: block;
  border: 5px solid #003c7f;
  border-radius: 22px;
  line-height: 1.5;
  font-size: clamp(16px, calc(20 / 1280 * 100vw), 24px);
  font-weight: 600;
  padding: 1.5vw 0;
}


/* ── FOOTER ── */
footer {
  color: var(--pink-light);
  padding: 40px 24px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.foot-logo {
  margin: 2vw auto;
  max-width: 150px;
}

.foot-copy {
  font-size: 10px;
  color: var(--blue-accent);
  letter-spacing: 0.1em;
  font-size: clamp(9px, calc(14 / 1280 * 100vw), 14px);
}

/* ── SCROLL FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* === right-fade：右からすっと出てくる === */
.right-fade {
  opacity: 0;
  transform: translateX(80px); /* 右からスタート */
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.right-fade.visible {
  opacity: 1;
  transform: translateX(0);
}
/* === left-line-in：左から姿が現れる === */
.left-line-in {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.left-line-in.visible {
  clip-path: inset(0 0% 0 0);
}

/* === up-deco：くるっと回りながらふわっと登場 === */
.up-deco img {
  display: block;
  opacity: 0;
  transform: rotateY(90deg) scale(0.8);
  filter: blur(4px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.6s ease;
}

.up-deco.is-show img {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  filter: blur(0);
}
/* 360度ぐるっと回ってから登場 */
.up-deco img {
  opacity: 0;
  transform: rotateY(180deg) scale(0.6);
  filter: blur(6px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.7s ease;
}

.up-deco.is-show img {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
  filter: blur(0);
}
/* === 画像全体：ぴこぴこ上下 === */
.pikopiko {
  animation: pikopiko 0.6s ease-in-out infinite alternate;
}

@keyframes pikopiko {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(-2deg); }
}

/* === ゆっくりぴこぴこ（サブ用） === */
.pikopiko-slow {
  animation: pikopiko 1s ease-in-out infinite alternate;
}

/* === ぐるぐる回転しながらぴこぴこ（CHECK!強調用） === */
.pikopiko-spin {
  animation: pikopiko-spin 0.8s ease-in-out infinite alternate;
}

@keyframes pikopiko-spin {
  0%   { transform: translateY(0) scale(1) rotate(-3deg); }
  100% { transform: translateY(-6px) scale(1.05) rotate(3deg); }
}
/* === 星クリックエフェクト === */
.star-effect {
  position: absolute;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  animation: star-burst 0.6s ease-out forwards;
}

@keyframes star-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: translate(
      calc(-50% + var(--tx)),
      calc(-50% + var(--ty))
    ) scale(1.2) rotate(var(--rot));
  }
  100% {
    opacity: 0;
    transform: translate(
      calc(-50% + var(--tx)),
      calc(-50% + var(--ty))
    ) scale(0.5) rotate(var(--rot));
  }
}








/* ---------------------------------------
 *  view change
 * --------------------------------------- */
.view-pc { display: block; }
.view-sp { display: none; }

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


/* ---------------------------------------
 *  sp
 * --------------------------------------- */
@media screen and (max-width: 1000px) {

/* header */
#menuBtn.hamburger {
width: 80px;
height: 86px;
}
.pickup-btn {
width: 77px;
padding: 25px 5px;
}
.pickup-sidebar.scrolled {
top: calc(5% + 110px);
}
.pickup-sidebar {
top: calc(38% + 110px);
}
.instagram-btn {
top: calc(5% + 100px);
width: 80px;
height: 90px;
}
.instagram-btn img {
  width: 50px;
  height: 50px;
}
	
/* hero */
.hero-logo {
top: 37%;
}

/* about */
.inner-row {
max-width: 600px;
}
.about-section .ttl {
  max-width: 40vw;
}
.about-banner {
border-radius: 30px;
}
.about-bnr-list::before {
height: 2vw;
height: 3.5vw;
}
.about-bnr-list::after {
height: 3.5vw;
bottom: -11%;
}

/* our thoughts */
.ourthoughts-section .ttl {
  max-width: 44vw;
}
.plane_line {
  max-width: 70%;
}
.ourthoughts-section .section-text .message-tap {
width: 90px;
height: 90px;
}
.message-modal {
width: 500px;
}

/* event */
.event-section {
padding: 60px 0;
}
.event-slider {
max-width: 500px;
margin: 0 auto;
}
.event-card {
max-width: 500px;
	padding: 50px 40px 20px;
	aspect-ratio: 1/1;
}
.event-card::before {
width: 7vw;
height: 7vw;
}
.event-card::after {
width: 7vw;
height: 7vw;
}
.event-card-ftr {
bottom: 30px;
width: 39vw;
}
	
/* gallery */
.gallery-section .ttl {
  max-width: 22vw;
}
.gallery-section .inner-row {
  max-width: 600px;
}

/* personal */
.personal-section {
  padding: 10vw 0;
}
.accordion-wrap {
max-width: 600px;
}
.accordion-btn {
padding: 2.8vw 4vw 4.4vw;
}
.accordion-item._due .accordion-btn {
padding: 2.8vw 4vw 3.8vw 4vw;
}
.accordion-item._tre .accordion-btn {
padding: 2.8vw 4vw;
}
.accordion-icon {
width: 3.8vw;
height: 3.8vw;
}
.accordion-item._uno .ttl {
max-width: 90%;
margin: 40px auto;
}
.accordion-item._uno .ttl::before {
height: 15em;
}
.psnl_in {
    margin: 8vw auto 11vw;
    max-width: 340px;
  }
.accordion-item._uno .accordion-content-inner {
padding: 5vw 5vw 10vw;
}
.diagnosis-result .name_en img {
height: 65px;
}
	
	
/* sns */
.snscheck {
    top: 4%;
}
.sns-section .ttl img {
  height: 3.4vw;
}

/* paetner */
.partner-section .ttl img {
  height: 3.4vw;
}
.partner-section .ttl::before {
width: 29vw;
height: 4em;
}
.partner-list-item li img {
max-width: 180px;
}
.partner-track {
margin: 0 auto;
}

/* media */
.media-section .ttl img {
  height: 3.4vw;
}
.media-section .ttl::before {
width: 23vw;
height: 4em;
}
.media-list-name li span {
padding: 2vw 2vw;
}

/* faq */
.faq-section .ttl img {
  height: 3.4vw;
}
.faq-section .ttl::before {
width: 23vw;
height: 3em;
}
.faq-icon {
width: 3.8vw;
height: 3.8vw;
}
.faq-btn {
padding: 1.8vw 4vw 3.4vw;
}	
.faq-item._ott .faq-btn {
  padding: 1.8vw 4vw 1.8vw;
}

	
	
/* contact */
.contact-section .ttl img {
  height: 3.4vw;
}
.contact-banner span {
padding: 5vw 0;
}
.contact-btn {
padding: 3vw 0;
}
.contact-banner span::before {
height: 27vw;
}
.contact-banner span::after {
height: 25vw;
}





}




/* ---------------------------------------
 *  sp
 * --------------------------------------- */
@media screen and (max-width: 767px) {


/* lorder */
.loader-logo {
width: 62vw;
}

/* header */
#lpheader.open {
  right: 75%;
}
#menuBtn.hamburger.open span:nth-child(1) {
transform: translateY(10px) rotate(45deg);
}
#menuBtn.hamburger.open span:nth-child(3) {
transform: translateY(-10px) rotate(-45deg);
}
.pickup-sidebar {
top: calc(38% + 70px);
}
#menuBtn.hamburger {
width: 50px;
height: 55px;
}
#menuBtn.hamburger span:nth-child(2) {
margin: 3px auto;
}
#menuBtn.hamburger span {
height: 2px;
}
.pickup-btn {
width: 48px;
padding: 16px 0;
font-size: clamp(8px, calc(12 / 375 * 100vw), 14px);
}
.pickup-btn._menu03 {
  letter-spacing: inherit;
  padding: 8px 0;
}
.nav-drawer nav a {
font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
padding: 10px 0;
}
.nav-drawer {
border-radius: 15px 0 0 15px;
}
#lpheader, #lpheader.scrolled {
top: 3%;
}
.pickup-sidebar.scrolled {
    top: calc(0% + 70px);
}
.instagram-btn {
    top: calc(3% + 60px);
    width: 50px;
    height: 55px;
}	
 .instagram-btn img {
    width: 30px;
    height: 30px;
  }
	
	
/* hero */
.hero-logo img {
width: 62vw;
}
.hero-logo {
top: 37%;
}

/* about */
.about-section {
padding: 12vw 6vw;
}
.about-section .ttl {
max-width: 75vw;
margin: 5vw auto;
}
.txt_deco_line {
    font-feature-settings: "palt";
    font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
  }
.about-section .section-text {
  font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
}
.txt_left {
  text-align: left;
}
.about-photo {
margin: 10vw 0 5vw;
}
.about-banner {
margin: 10vw auto;
border-radius: 20px;
}
.about-bnr-item img {
width: 100%;
max-height: 85px;
}
.about-bnr-list {
padding: 3vw 10vw;
}
.about-bnr-list::before {
height: 5vw;
top: -9%;
}
.about-bnr-list::after {
height: 5vw;
bottom: -10%;
}
.about-bnr-footer {
font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
bottom: 0;
}
.about-bnr-footer img {
max-width: clamp(12px, calc(14 / 375 * 100vw), 16px);
}
.about-banner::before {
width: 76%;
}
.about-banner::before, .about-banner::after {
height: 2px;
}
.about-banner::after {
width: 76%;
margin-left: 19%;
}

/* our thoughts */
.ourthoughts-section .ttl {
max-width: 75vw;
}
.ourthoughts-section .ourthoughts-plane {
top: 24%;
}
.plane_line {
max-width: 90%;
}
.ourthoughts-section .section-text {
margin: 19vw 6vw 5vw;
max-width: 100%;
}
.ourthoughts-section {
overflow: hidden;
}
.message-open {
}
.ourthoughts-section .section-text .message-tap {
width: 14vw;
    height: 14vw;
    bottom: 27%;
    right: 25%;
}
.message-text {
font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
/*background-size: 100% 2em;
line-height: 2em;*/
--lh: 2.5em;
font-size: clamp(16px, calc(18 / 1280 * 100vw), 20px);
line-height: var(--lh);
color: var(--blue-accent);
font-weight: bold;
margin: 0;
text-align: left;
padding-bottom: 1px;
background-color: transparent;
background-image: repeating-linear-gradient( to bottom, transparent 0, transparent calc(var(--lh) - 1px), #fae1ec calc(var(--lh) - 1px), #fae1ec var(--lh) );
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}
.message-modal::before {
width: 60vw;
height: 60vw;
top: 34%;
}
.message-inner {
padding: 12vw 8vw;
}

/* event */
.event-section {
padding: 10vw 0 13vw;
}
.event-section .ttl {
top: -7%;
}
  .event-slider {
    max-width: 84%;
  }
 .event-card {
    margin: 15vw auto 5vw;
    max-width: 100%;
    padding: 40px 20px 100px;
    aspect-ratio: auto;
  }
.event-card-ttl {
font-size: clamp(18px, calc(20 / 375 * 100vw), 22px);
}
.event-card-text {
font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
}
.event-card-text table th, .event-card-text table td {
padding: 5px;
}
.event-card-entry {
font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
bottom: 44px;
}
.event-card-entry span {
filter: drop-shadow(2px 3px 0 #003c7f);
padding: 2vw 8vw;
}
.event-card.cat_deadline .event-card-entry span {
padding: 2vw 4vw;
}
.event-card::before {
width: 13vw;
height: 13vw;
top: -3%;
right: 4%;
}
.event-card::after {
width: 13vw;
height: 13vw;
left: 4%;
}
  .event-card-ftr {
    width: 55vw;
    bottom: 4%;
  }
.event-dots {
z-index: 10;
	padding: 10px 0 50px;
}

/* gallery */
.gallery-section {
background-size: contain;
}
.gallery-section .inner-row {
padding: 0;
}
.gallery-section::before {
background-size: auto 21px;
}
.gallery-section::after {
background-size: auto 21px;
}
.gallery-section .ttl {
max-width: 50vw;
}
.gallery-bord {
gap: 1% 2%;
margin: 10vw 6vw;
}
.gallery-bord-img {
padding: 10px;
	margin-bottom: 1vw;
}
.gallery-bord-img .gallery_data {
font-size: clamp(10px, calc(12 / 375 * 100vw), 14px);
}
.gallery-bord-img .gallery_cat {
font-size: clamp(10px, calc(12 / 375 * 100vw), 14px);
}
.gallery-bord-img .gallery_img_ttl {
font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
line-height: 1.2;
	padding: 6px 0 0;
}
.gallery-footer {
margin: 0 auto 3vw;
}
.gallery-footer .gallery-ftr-bnr-text {
font-size: clamp(10px, calc(12 / 375 * 100vw), 16px);
}

/* personal */
.personal-section {
padding: 20vw 0;
}
.accordion-wrap {
padding: 0;
}
.accordion-btn {
font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
padding: 5vw 7vw 10vw;
padding: 5vw 7vw 5vw;/* コンテンツが増え次第変更 */
}
.accordion-icon {
width: 9vw;
height: 9vw;
}
.accordion-item {
  border-radius: 15px 15px 0 0;
}
.accordion-item._due .accordion-btn {
padding: 5vw 7vw 10vw 7vw;
}
.accordion-item._tre .accordion-btn {
padding: 5vw 7vw;
}

.accordion-item._uno .accordion-content-inner, .accordion-item._uno.open .accordion-content-inner {
padding: 6vw 6vw 20vw;
padding: 0 6vw 6vw;/* コンテンツ追加されたら変更 */
}
.accordion-item._uno .ttl {
max-width: 100%;
}
.accordion-item._uno .ttl::before {
height: 37vw;
}
.accordion-item._uno .text {
font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
margin: 10vw 0;
}
.psnl_in {
    margin: 10vw 10vw 17vw;
}
.accordion-item._tre {
  border-radius: 15px;
}
.popup-grid {
margin: 10vw 0;
}
._tap::before {
width: 80px;
height: 40px;
top: -34%;
}
.diagnosis-result {
  margin: 20vw -6vw 0;
}
.yellow_base, .blue_base {
grid-template-columns: 1.8fr 1fr;
padding: 20px 4vw 20px 6vw;
}
.diagnosis-result .note {
padding: 0;
}
.diagnosis-result .intro img {
height: clamp(15px, calc(17 / 375 * 100vw), 21px);
}
.diagnosis-result .intro {
  font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
  padding: 0 10px;
}
.diagnosis-result .basettl img {
  height: clamp(12px, calc(14 / 375 * 100vw), 16px);
}	
.diagnosis-result .basettl {
padding: 2px 0 4px;
margin: 4px 0 8px;
}
.diagnosis-result .name_en img {
    height: 45px;
}	
.diagnosis-result .palette {
padding: 0;
}	
.diagnosis-result .name_en {
margin: 0;
}
.diagnosis-result .viewmore span {
font-size: clamp(8px, calc(10 / 375 * 100vw), 12px);
padding: 3px 20px;
filter: drop-shadow(2px 2px 0 #ffad26);
}
.diagnosis-result .blue_base .viewmore span {
  filter: drop-shadow(2px 2px 0 #64b2ff);
}
.diagnosis-result .viewmore {
  margin: 5px 0 0;
}	
.blue_base {
grid-template-columns: 1fr 1.8fr;
padding: 20px 6vw 20px 4vw;
}	
.diagnosis-result .blue_base .note {
  padding: 0;
}	
.yellow_base {
    padding: 20px 10px 20px 20px;
  }	
	
/* sns */
.sns-section {
padding: 25vw 6vw;
}
.snscheck {
width: 36vw;
    height: 18vw;
    top: 6%;
    left: 7%;
}
.sns-section .ttl img {
height: 7vw;
}
.sns-list {
margin: 10vw auto;
max-width: 70vw;
}
.sns-list-item img {
max-width: 70px;
}
.sns-list-item span {
font-size: clamp(10px, calc(12 / 375 * 100vw), 14px);
margin: 4vw 0;
}
.yellow_base, .blue_base {
padding: 20px 10px;
}

/* partner */
.partner-section {
  padding: 10vw 0 20vw;
}
.partner-section .ttl img {
height: 7vw;
}
.partner-section .ttl::before {
width: 63vw;
height: 15vw;
}
.partner-section
.section-label {
margin-bottom: 10vw;
}
.partner-list-item li img {
max-width: 120px;
}
.partner-track {
margin: 0 auto;
}
.partner-list .partner-list-item {
margin-right: 30px;
}
.partner-list-item {
gap: 30px;
}
	
	
	
/* media */
.media-section {
padding: 15vw 6vw 10vw;
}
.media-section .ttl img {
height: 7vw;
}
.media-section .ttl::before {
width: 52vw;
height: 16vw;
}
.media-list {
  margin: 10vw auto;
}
.media-list-name li span {
padding: 4vw 10vw;
}

/* faq */
.faq-section {
padding: 15vw 0 0;
}
.faq-section .ttl img {
height: 7vw;
}
.faq-section .ttl::before {
width: 46vw;
height: 13vw;
}
.faq-btn {
padding: 5vw 7vw 10vw;
font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
}
.faq-question {
font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
}
.faq-item.open .faq-btn {
  border-radius: 7px 7px 0 0;
}
.faq-item.open .faq-content-inner {
padding: 6vw 6vw 15vw;
}
.faq-icon {
width: 9vw;
height: 9vw;
}
.faq-item._uno,
.faq-item._due,
.faq-item._tre,
.faq-item._qua,
.faq-item._cin,
.faq-item._sei,
.faq-item._set {
  border-radius: 15px 15px 0 0;
}
.faq-item._ott {
    border-radius: 15px;
}
.faq-item._ott .faq-btn {
  padding: 5vw 7vw;
}
.faq-answer {
font-size: clamp(12px, calc(14 / 375 * 100vw), 16px);
}
	
/* contact */
.contact-section {
padding: 15vw 6vw;
}
.contact-section .ttl img {
height: 7vw;
}
.contact-section .ttl {
margin: 10vw auto;
}
.contact-banner {
  margin: 0 auto 2vw;
}
.contact-banner span {
border: 2px solid;
border-radius: 12px;
padding: 7vw 0;
font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
}
.contact-btn {
font-size: clamp(14px, calc(16 / 375 * 100vw), 18px);
    border: 2px solid;
    border-radius: 10px;
    padding: 2vw 0;
    line-height: 1.5;
}
.contact-banner span::after {
width: 23vw;
top: 0;
right: -3%;
height: 33vw;
}	
 .contact-banner span::before {
    height: 32vw;
    width: 15vw;
    top: -2%;
    right: 0;
  }
	
	
/* footer */
.foot-logo {
max-width: 100px;
}
.foot-copy {
font-size: clamp(8px, calc(10 / 375 * 100vw), 14px);
padding: 0 0 2vw;
}
footer {
padding: 15vw 6vw 0;
}


























}