@charset "utf-8";
:root {
  --black: #222;
  --white: #fff;
  --navy: #3D3F4B;
  /* --main: #2286E6; */
  --main: #555;
  --sub01: #7D8491;
  --sub02: #BDC5A5;
  --gray: #f4f7f6;
  --pink02: #F05692;
  --container: min(1200px, 91.5vw);
  --header-height: 75px;
  --radius-ro: 1000px;
  --radius-lg: 10px;
  --radius-md: 5px;
  --overlap: 30px;
  --section-space: 200px;
  --section-space_sp: 100px;
  --bg-space: 80px 0 130px;
  --bg-space_sp: 80px 0;
}

body {
  background-color: #fff;
  color: var(--black);
  font-family: 'Noto sans JP', Arial, sans-serif;
  font-size: clamp(.95rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .05em;
}
body.no-scroll {
  overflow: hidden;
}
main {
  padding-top: var(--header-height);
  overflow-x: clip; 
}
section {
  margin-bottom: var(--section-space);
}
h2.section-title  {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: var(--black);
  font-weight: 600;
  display: block;
  text-align: left;
  margin: 0 0 25px;
  line-height: 1.5;
}
h2.section-title.-right {
  text-align: right;
}
h2.section-title span{
  font-size: clamp(.95rem, 3vw, 1.25rem);
  border-bottom: 1px solid var(--main);
  color: var(--sub01);
  line-height: 1;
  padding-bottom: 4px;
}

a {
  color: var(--black);
}
/* ---------- common ---------- */
.wrap {
  width: var(--container);
  margin: 0 auto;
}
.link {
  display: inline-block;
  text-decoration: underline;
  color: var(--pink02);
  margin: 0 .1em;
  transition: 0.3s;
}
.hover-slide {
  width: 100%;
  padding: 2em 0;
  height: 100%;
  font-size: clamp(1rem, 3vw, 1.25rem );
  font-weight: bold;
  white-space: nowrap;
  display: inline-flex; 
  gap: .5em;       
  align-items: center;
  justify-content: center;
  padding: 1.5em .8em;        
  background-color: var(--black);
  color: var(--white);
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none;
  border: 1px solid var(--black);
}
.line-link__icon {
  width: 1.1em;                 
  height: 1.1em;
  display: block;
}
.hover-slide::after {
  background-color: var(--sub01);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .4s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.ham-menu-wrap .hero-cta,
.hero-main .hover-slide{
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  border-radius: 10px;          
  background-color: #555;
  color: var(--sub02);
  border: 1px solid var(--sub02);
  width: min(500px, 90%);
  padding: 1em;            
}
.line-link-middle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 350px;
  width: 100%;
  padding: 1.5em;
  margin: 0 auto;
}
.view_more-btn {
  color: var(--sub01);
  text-align: right;
  margin-right: 15px;
  text-decoration: underline;
  font-size: .875rem;
  font-weight: 600;
  transition: .3s;
}
.asterisk {
  font-size: .9rem;
  color: #777;
}
.pc-only {
  display: block;
}
.sp-only, .tab-only {
  display: none;
}
.en {
  font-weight: 400;
  font-family: "Bowlby One SC", sans-serif;
}
.section-triangle {
  position: relative;
  --tri-h: 50px;
}
/* .section-triangle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-1 * var(--tri-h));
  width: 100%;
  height: var(--tri-h);
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
} */
/* ---------- header ---------- */
.header {
  background-color: #fff;
  display: flex;
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  z-index: 9999;
  justify-content: space-between;
}
.hamburger {
  min-width: var(--header-height);
  height: 100%;
  z-index: 900;
  flex-direction: column;
  justify-content: center; 
  align-items: center;   
  background-color: var(--black);
}
.hamburger span {
  width: 30px;
  height: 1px;
  background-color: var(--white);
  border-radius: .5rem;
  position: relative;
  transition: ease .4s;
  display: block;
  z-index: 999;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -9px;
  transform: rotate(-45deg);
} 
.header-warp {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 25px;
}
#header h1 {
  font-size: 1.25rem;
  white-space: nowrap;
}
.header-text {
  font-size: .75rem;
  white-space: nowrap;
}
.header-left {
  padding: 0 0 0 3rem;
}
.header-logo-right {
  width: 240px;
  height: 100%;
  display: flex;
  align-items: center;
}
.logo-link img {
  min-width: 240px;
}
.header-menu {
  font-size: 1rem;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.header-menu .header-link {
  font-weight: bold;
  letter-spacing: inherit;
  position: relative;
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  color: var(--black);
}
.header-menu .header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; 
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}
.header-contact {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 120;
  padding: 0 .5em;
  background-color: var(--sub02);
  transition: .3s;
}
.header-contact .line-link {
  white-space: nowrap;
  font-size: clamp(12px, 3vw, 1rem);
  color: var(--white);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
}
.header-nav-item {
  gap:20px;
}
.header-nav-item a{
  display: flex;
  align-items: center;
  margin: 0 10px;
  gap: 5px;
}
.header-nav-item p{
  font-size: 0.75rem;
}
.header-nav-item img {
  width: 25px;
  height: auto;
}
.header__nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: transform .4s ease;
  z-index: 90;
}
.header__nav.active {
  transform: translateX(0);
}
.ham-menu-wrap {
  max-width: 780px;
  width: 90%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-bottom: 50px;
  text-align: center;
}
.ham_wrap {
position: relative;
top: 70px;
width: 100%;
height: calc(100% - 60px);
background-color: #fff;
z-index: 50;
transition: all 0.5s;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
overflow: auto;
gap: 50px;
}
.ham_wrap hr {
  width: 90%;
  margin: 0 auto;
}
.ham-menu-contact, .ham-tabs-lists, .ham-menu-tabs,
.ham-menu-lists, .ham-sns  {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.ham-menu-tabs, .ham-sns {
  flex-direction: row;
  gap: 0;
}
.ham-tabs-lists {
  margin-top: 25px;
}
.ham-solo, .ham-company {
  width: 100%;
  padding: 25px 0;
}
.ham-company {
  background-color: var(--main);
}
.ham-menu-tabs .ham-company h3 {
  color: #fff;
}
.ham-menu-tabs h3 {
  font-size: 1rem;
}
.ham-menu-tabs li {
  background-color: #fff;
  border-radius: 5px;
  width: 90%;
  padding: 10px 5px;
}
.ham-common li{
  width: 90%;
  text-align: left;
  border-top: 1px solid #333;
  padding: 25px 0 0 10px;
}
.ham-common li:last-child {
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}
.ham-sns img{
  max-width: 45px;
}
.ham-icon-logo{
  height: 58px;
} 
.ham-main-font {
  font-size: 9px;
}
.ham-sub-nav a {
  margin-left: 2rem;
}
.ham-iconText {
  display: flex; 
}
.ham-lp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ham-lp p {
  text-align: center;
}
.ham-footer {
  width: 30%;
  margin: 0 auto;
}
.ham-dotLine{
  margin: 1.5rem 0;
  height: 3px;
  background-size: 12px 3px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-image: linear-gradient(to right, var(--pink) 3px, transparent 3px);
} 
/* -------------------- hero --------------------
---------------------------------------- */
section.hero {
  margin: 20px auto 100px;
}
.hero-wrap {
  padding: 0;
  width: 95%;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}
.hero-left-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 25px;
}
.hero-left-block h2 {
  font-size: clamp( 1.5rem, 3vw, 2.25rem);
  font-weight: bold;
}
.hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: bold;
}
.hero-right-block {
  width: 55%;
}
.hero-swiper {
  padding-bottom: 25px;
}
#hero .swiper-horizontal>.swiper-pagination-bullets {
  bottom: 0;
}
.swiper-arrow {
  background-color: #ffffff30;
  border: 1px solid var(--white);
  width: 25px;
  height: 25px;
}
#hero .swiper-button-next:after,
#hero .swiper-button-prev:after {
  font-size: 1rem;
  color: var(--white);
}
#hero .swiper-pagination-bullet-active {
  background-color: var(--black);
}
.line-btn-box {
  width: 100%;
  margin: 0 auto;
}
.line-btn-box .c-button {
  font-size: clamp(.875rem, 2vw, 1.25rem);
  font-weight: bold;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 1em;
  text-decoration: none;
  position: relative;
  padding: 1em;
  color: #fff;
  background-color: var(--black);
  transition: .3s;
}
.line-btn-box.-more_view {
  margin-top: 1rem;
  width: min(300px, 100%);
}
.line-btn-box .c-button.-line {
  background-color: var(--sub02);
}

.line-btn-box .c-button::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 100px;
  flex-shrink: 0;
}
.line-btn-box .c-button.-line::before {
  background-image: url("../img/svg/line_text.svg");
}
.line-btn-box .c-button.-registration::before {
  background-image: url("../img/svg/card_icon.svg");
}
.line-btn-box .c-button.-online::before {
  background-image: url("../img/svg/cart_icon.svg");
}

.line-btn-box .c-button span {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: auto;
  overflow: hidden;
  border-left: 2px solid #ffffff30;
  background-repeat: no-repeat;
  background-position: left center;
}
.line-btn-box .c-button span::before,
.line-btn-box .c-button span::after {
  content: "";
  position: absolute;
  width: 1rem;
  margin-left: 1rem;
  inset: 0;
  background-image: url("../img/svg/btn_arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.35s cubic-bezier(0.45, 0, 0.55, 1),
    opacity 0.35s cubic-bezier(0.45, 0, 0.55, 1);
}
.line-btn-box .c-button span::before {
  transform: translateX(0);
  opacity: 1;
}
.line-btn-box .c-button span::after {
  transform: translateX(-140%);
  opacity: 0;
}
.hero-img {
  border-radius: .8rem;
}
/* ---------- about ---------- */
.about-wrap {
  padding-top: 0;
}
.about-section-left {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.about-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-section-left img {
  width: 70%;
  border-radius: 0 1rem 0;
}
.about-text {
  text-align: left;
}
.about-text p{
  margin-bottom: .5em;
  line-height: 1.8;
}

/* ---------- contact ---------- */
.contact-wrap{
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-section-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.contact-section-left p.text {
  margin-bottom: 15px;
}
.contact-section-right{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem 0;
}

/* ---------- scene ---------- */
.scene-section {
  background-color: var(--gray);
  padding: var(--bg-space);
}
.scene-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 0;
}
.scene-boxes {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.scene-box {
  border: 1px dashed var(--main);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  width: calc( 100% / 2 );
  padding: 1rem;
}
.scene-box:first-child,
.scene-box:last-child {
  border-radius: 20px 0;
}
.scene-box:nth-child(2),
.scene-box:nth-child(3) {
  border-radius: 0 20px;
}
.scene-title {
  position: relative;
}
.scene-img {
  object-fit: cover;
  border-radius: 20px;
}
.scene-tag {
  color: var(--black);
  display: grid;
  text-align: left;
  margin: 10px 0;
}
.scene-tag p {
  color: var(--sub01);
  font-size: 14px;
}
.scene-tag h3 {
  font-size: 1.5rem;
}
.scene-box-dw {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
}
/* ---------- research ---------- */
.research-section {
  background-color: #fff;
}
.research-section h2.section-title {
  width: var(--container);
  text-align: center;
  margin: 0 auto 1rem;
}
.title-cap {
  width: var(--container);
  margin: 0 auto;
  text-align: center;
}
.tag-title {
  margin-top: 2rem;
}
.tag-title h3{
  color: var(--main);
  font-size: 1.5rem;
  display: inline;
  padding: 0 1em;
  border: 1px solid var(--main);
  border-bottom: 1px solid #fff;
  margin: 0 20%;
}
.keyword-slider {
  overflow: hidden;
  background: var(--white);
  padding: 1em 0;
  border-top: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  display: flex;
  margin-top: -1px;
}
.keyword-track {
  display: flex;
  width: max-content;
  animation: scroll-left 50s linear infinite;
}

.keyword-group {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

.filter-btn {
  color: var(--main);
  font-size: .875rem;
  white-space: nowrap;
  padding: .5em 1em;
  border: 1px solid var(--main);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================
  コーディネートGALLERY
========================= */
.gallery-right-col {
  min-width: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0; 
}
.gallery-grid-wrap {
  width: 100%;
  position: relative;
  max-height: 100vh;
  overflow: hidden;
}
#item-grid {
  display: block;
  position: relative;
}
.grid-item {
  width: 25%;    
  box-sizing: border-box;
}
.grid-item img {
  border-radius: 10px;
  border: 1px dashed var(--sub01);
}
#item-grid.gallery-main {
  width: 100%;
}
#item-grid, .gallery-main.grid, .grid {
  position: relative;
  min-height: 1px;
}
.gallery-grid-wrap.is-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 10;
}
.gallery-grid-wrap.is-expanded {
  max-height: 20000px;
}
.gallery-grid-wrap.is-expanded::after {
  display: none; 
}
.more-btn-wrap {
  text-align: center;
  margin-top: 30px;
}
.btn-more {
  background-color: var(--black);
  color: var(--white);
  padding: .8em 5em;
  font-size: 1rem;
  font-weight: bold;
  border: 2px solid var(--sub02);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn-large {
  width: 100%;
  max-width: 300px;
  padding: 15px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid var(--black);
  font-weight: 600;
  margin: 0 auto;
  transition: .3s;
}
.gallery-container {
  display: flex;
  gap: 20px;
  width: 90%;
  margin: 0 auto;
  padding: 40px 0;
}
.search-sidebar {
  width: 280px;
  flex-shrink: 0;
}
.gallery-main {
  flex: 1;
  min-width: 0;
}

/* =========================
  サイドバー（衣装を探す）
========================= */
.search-sidebar {
  width: min(280px, 90%);
  flex-shrink: 0;
}

.sidebar-inner {
  background-color: #fff;
  border: 2px solid var(--main);
  padding: 20px 15px;
  border-radius: 10px;
}

.sidebar-title {
  text-align: center;
  color: var(--sub01);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.sidebar-count {
  font-size: 0.85rem;
  font-weight: normal;
  margin-left: 5px;
  color: #555;
}

.sidebar-details {
  border: 1px dashed var(--main);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.sidebar-summary {
  color: var(--sub01);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}
.sidebar-summary::-webkit-details-marker {
  display: none; /* Safariのデフォルト三角を消す */
}

/* 右側の三角アイコンの動き（閉じている時は横向き、開いたら下向き） */
.sidebar-summary-icon {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.sidebar-details:not([open]) .sidebar-summary-icon {
  transform: rotate(-90deg); /* 閉じている時は左を向かせる */
}

/* チェックボックスの並び */
.sidebar-content {
  padding: 0 15px 20px;
}
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 15px;
}
.checkbox-group label {
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* チェックボックス自体のデザイン */
.checkbox-group input[type="checkbox"] {
  accent-color: var(--black); /* チェックを入れた時の色を黒に */
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}


/* ---------- modal ---------- */
/* =========================
  モーダル全体の設定
========================= */
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;

  display: grid;
  place-items: center;

  padding: 24px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__container {
  background-color: var(--gray);
  padding: 40px;
  width: min(1200px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  position: relative;
  border: 2px solid var(--sub02);
  box-sizing: border-box;
}

/* 閉じるボタン (右上の大きい✕) */
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.modal__close::before,
.modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--black);
}
.modal__close::before {
  transform: translateY(-50%) rotate(45deg);
}
.modal__close::after {
  transform: translateY(-50%) rotate(-45deg);
}

/* =========================
  モーダル内のレイアウト
========================= */
.modal-content-wrap {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}
.modal-left img {
  object-fit: cover;
  border-radius: 8px;
}

/* 右カラム (テキスト・テーブル・ボタン) */
.modal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}

/* テーブルスタイル */
.modal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
  text-align: center;
  font-size: 0.875rem;
}
.modal-table th, 
.modal-table td {
  padding: 12px 5px;
}
.modal-table thead th {
  background-color: #ccc; /* ヘッダーのグレー */
  font-weight: 600;
  border-bottom: none;
}
.modal-table tbody td {
  border-bottom: 1px solid var(--black);
  vertical-align: middle;
}
/* フッター（合計金額部分） */
.modal-table tfoot td {
  background-color: #333; 
  color: #fff;
  font-weight: 600;
  padding: 15px 10px;
}
.modal-table tfoot td.total-label {
  text-align: left;
}
.modal-table tfoot td.total-price {
  text-align: right;
  font-size: 1.125rem;
}

/* ボタンスタイル */
.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto; /* 下に寄せる */
}
.modal-btn-row {
  display: flex;
  gap: 10px;
}
#research .modal-btn-row a {
  font-size: .95rem;
}
.modal-btn-row a {
  width: calc(50% - 10px);
  padding: 1em 0;
}
.modal-btn-row a,
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  text-align: center;
  
}
.btn-black {
  color: var(--white);
  background-color: var(--black);
  border: 2px solid var(--black);
}
.btn-line {
  background-color: var(--sub02); /* rootの変数を利用 */
  color: var(--black);
}



/* =========================
  診断モーダル用スタイル
========================= */
.diagnosis-container {
  max-width: 900px !important;
}
.diagnosis-title {
  text-align: center;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
}
.diagnosis-sub {
  text-align: center;
  margin-bottom: 10px;
}
.diagnosis-container .modal-content-wrap {
  flex-direction: column;
}
.diagnosis-container .modal-right {
  gap: 15px;
}
.diagnosis-q-block {
  margin-bottom: 25px;
  padding: 1em;
  border-radius: var(--radius-md);
}
.diagnosis-q-title {
  font-weight: 600;
  font-size: clamp(1rem, 3vw, 1.125rem);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.diagnosis-q-title .required {
  color: var(--sub01);
  font-size: 0.75rem;
}
.diagnosis-q-title .multiple {
  background: #fff;
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 3px;
}
.diagnosis-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.diagnosis-options label {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.diagnosis-options label:has(input:checked) {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.diagnosis-options input {
  accent-color: var(--black);
}
.error-msg {
  display: none;
  color: var(--pink);
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}
.diagnosis-submit-wrap {
  text-align: center;
}
.result-item-wrap:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.diagnosis-result-card {
  width: min(480px, 90%);
  margin: 0 auto;
  overflow: hidden;
  padding: 25px 0;
  border-bottom: 1px dashed var(--black);
}
.diagnosis-result-heading {
  font-size: 1.5rem;
  font-weight: 700;
}
.diagnosis-result-lead {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.diagnosis-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.diagnosis-result-tag::before {
  content: "#";
}
.diagnosis-result-tag {
  font-size: 0.85rem;
  color: var(--sub01);
  font-weight: bold;
}
.diagnosis-result-card .modal-btn-row {
  justify-content: center
}
.diagnosis-result-card  .modal-btn-row a {
  font-size: 1rem;
  border: 2px solid var(--sub01);
  background-color: var(--gray);
  color: var(--sub01);
  width: min(320px, 90%);
}
@media screen and (max-width: 767px) {
  .diagnosis-result-heading {
    font-size: 1.2rem;
  }
  .diagnosis-result-kind {
    margin-top: 4px;
  }
}

/* =========================
  レンタルご利用の流れ (Timeline)
========================= */
.rental-section {
  background-color: var(--gray);
}
.rental-wrap {
  padding: var(--bg-space);
}
.rental-section h2 {
  margin-bottom: 40px;
}
.timeline {
  width: min(1100px, 90%);
  margin: 0 auto;
}
.timeline-step-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-left: 5px;
}
.timeline-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 28px;
  top: 50px; 
  bottom: -40px; 
  width: 1px;
  background-color: var(--black);
  z-index: 1;
}
.timeline-number {
  width: 56px;
  height: 56px;
  color: var(--sub01);
  border: 2px solid var(--sub01);
  border-radius: 50%;
  background-color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 600;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.timeline-content {
  flex: 1;
  padding-top: 10px;
}
.timeline-content h3 {
  color: var(--sub01);
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.timeline-content p {
  margin-bottom: 10px;
}

/* ステップ内の小見出しブロック（オンライン・店舗など） */
.timeline-sub-block {
  margin-top: 20px;
  margin-bottom: 20px;
}
.timeline-sub-block h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.timeline-sub-block .asterisk {
  margin-left: 2em;
}
.timeline-list li {
  margin-bottom: 5px;
  list-style: disc;
  margin-left: 2em;
}

.rental-buttons-wrap {
  width: min(1100px, 90%);
  display: flex;
  gap: 1rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}
.rental-buttons-wrap .line-btn-box {
  width: calc(50% - 8px);
}
.rental-buttons-wrap .line-btn-box .c-button {
  font-size: 1rem;
}
.btn-gray {
  white-space: nowrap;
  background-color: var(--main);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 1.2em;
  border-radius: 500px;
  text-align: center;
  width: calc(50% - 17.5px);
  transition: 0.3s ease;
  border: 2px solid var(--sub02);
}


/* =========================
  アクセス (ACCESS)
========================= */
.access-section .section-title {
  width: var(--container);
  margin: 0 auto;
}
.access-wrap {
  display: flex;
  align-items: stretch;
  gap: 50px;
}

/* 左カラム（テキスト情報） */
.access-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

.access-address {
  text-align: left;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* 店舗情報のテーブル */
.access-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.access-table tr {
  border-bottom: 1px solid var(--black);
}
.access-table th,
.access-table td {
  padding: 15px 10px;
  text-align: left;
  vertical-align: top;
}

.access-table th {
  font-weight: 600;
  width: 120px;
  white-space: nowrap;
}
.access-right {
  flex: 1;
  aspect-ratio: 1/ 1;
  display: flex;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
}

/* 実際にiframeを入れたときの設定 */
.access-right iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}
/* =========================
  よくあるお悩み (Troubles)
========================= */

.troubles-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.troubles-left {
  max-width: 680px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.troubles-item {
  display: flex;
  align-items: stretch;
  gap: 30px;
  margin-bottom: 80px;
}
.troubles-item:last-child {
  margin-bottom: 0;
}
.troubles-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--gray);
  padding: 32px;
  border-radius: 32px 0;
}
.trouble-title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.trouble-badge {
  background-color: var(--sub01);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.trouble-title {
  color: var(--main);
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 15px;
}
.trouble-arrow {
  width: 15px;
  height: 15px;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: rotate(45deg);
  margin-bottom: 15px;
}
.trouble-desc {
  font-size: clamp(.95rem, 2vw, 1rem);
}
.troubles-right {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}

.troubles-sticky {
  text-align: center;
}
.troubles-sub-title {
  color: #fff;
  text-align: right;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
/* =========================
  お客様の声 (Voice)
========================= */
.voice-wrap {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
}
.voice-left {
  flex: 0 0 400px; 
  position: -webkit-sticky;
  position: sticky;
  top: 150px; 
}
.voice-item {
  margin-bottom: 40px;
  background-color: #fff;
}
.voice-item:last-child {
  margin-bottom: 0;
}
.voice-user-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.voice-user-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
/* SVGアイコンの設定 */
.voice-user-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.voice-user-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.voice-user-meta .stars {
  color: #ffc107; 
}
.voice-user-meta .job {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--black);
}
.voice-text {
  font-size: 0.95rem;
  line-height: 1.8;
  background-color: var(--gray);
  padding: 1em;
  border-radius: var(--radius-lg);
}

/* =========================
  よくあるご質問 (FAQ)
========================= */
.faq-section {
  background-color: #fff;
}
.title-gra {
  font-size: 1.1rem;
  font-weight: normal;
  color: var(--main); 
  letter-spacing: 0.05em;
}
.faq_inner {
  margin: 0 auto;
}

/* HTMLのhrタグを綺麗な区切り線にする */
.faq_inner hr {
  border: none;
  border-top: 2px solid #f0f0f0;
  margin: 0;
}

/* details・summaryのデフォルトの黒い三角を消す */
.details {
  width: 100%;
}
.details-summary {
  list-style: none;
  cursor: pointer;
}
.details-summary::-webkit-details-marker {
  display: none; /* Safari用 */
}

/* 質問行（Q. とテキスト と ＋アイコン） */
.summary_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
}

.summary_question_text {
  display: flex;
  align-items: flex-start;
  gap: 15px; /* Q.とテキストの隙間 */
}

/* Q. と A. の大きい文字 */
.details-summary_big {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  flex-shrink: 0; /* 文字が潰れるのを防ぐ */
}

.details-summary_q {
  color: var(--black);
}

.summary_question_text p {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  padding-top: 2px; /* Q.と少し高さを合わせる微調整 */
}

/* ＋アイコン */
.details-summary_icon {
  font-size: 2.5rem;
  color: var(--sub01);
  font-weight: normal;
  transition: transform 0.3s ease; /* 開閉時のアニメーション */
  line-height: 1;
}

/* 開いた時（open属性がついた時）の＋アイコンを45度回転させて×にする */
.details[open] .details-summary_icon {
  transform: rotate(45deg);
}

.faq-content {
  overflow: hidden;
}

@keyframes fade-in {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.faq-content_text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 35px; /* 開いた時の下の余白 */
}

.details-summary_a {
  color: var(--sub01); 
}

.faq-content_text p {
  padding-top: 3px;
}

.faq-left-space {
  display: block;
  padding-left: .8em;
}

/* 強い強調部分 */
.strong {
  font-weight: 600;
  color: var(--black);
  display: inline-block;
  margin-top: 10px;
}
.contact02.section {
  background-color: var(--gray);
  padding: var(--bg-space);
}
.contact02 .wrap {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.contact02 .contact-text {
  width: 60%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
}
.contact02 .line-btn-box {
  width: 100%;
}

/* =========================
　　衣装＆サービスの特設サイト 
========================= */
.lp-banner-wrap > h2 {
  width: 90%;
  margin: 0 auto 24px;
}
.lp-banner-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lp-banner-box {
  margin-bottom: 24px;
  width: calc((100% / 4) - 8px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
.banner-info, .banner-box-up {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.banner-box-up {
  justify-content: space-between;
  margin-bottom: 1rem;
}
.banner-link {
  min-width: 250px;
}
.lp-banner-img {
  border-radius: 1rem 0 1rem 0;
  border: 1px solid var(--main);
  transition: .3s;
}
.lp-banner-box h3 {
  color: var(--main);
  font-size: 1.25rem;
  font-weight: 600;
}
.lp-banner-box p {
  font-size: .95rem;
}

/* =========================
  フッター (会社概要 & Footer)
========================= */
.company-wrap {
  width: min(1100px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
}
.company-left {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
}
.company-right {
  flex: 1;
  width: 70%;
}
.company-section {
  background-color: #fff;
}
.tbl-company {
  width: min(900px, 100%);
  margin: 0 auto;
  border-collapse: collapse;
}
.tbl-company tr {
  border-bottom: 1px solid #d9d9d9;
}
.tbl-company th,
.tbl-company td {
  padding: 18px 12px;
  vertical-align: top;
}
.tbl-company th {
  width: 180px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.tbl-company td {
  text-align: left;
  line-height: 1.8;
  font-size: clamp(.95rem, 2vw, 1rem);
}
.tbl-company td ul {
  margin: 0;
  padding-left: 1.2em;
}

.footer-section {
  background-color: var(--main);
  padding-top: 60px;
  color: #fff;
}
.footer-section .section-title {
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 1;
  margin: 0;
}
.footer-section > p {
  text-align: center;
  color: #fff;
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.8;
  margin: 0 0 1rem;
}
.footer-title {
  line-height: 1;
}
.footer-title span {
  margin-top: 15px;
  font-size: .95rem;
  font-weight: normal;
}
.footer-copy {
  text-align: center;
}
.footer-wrap {
  width: min(650px, 90%);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0 0 60px;
  align-items: center;
  margin: 0 auto;
}
.footer-up {
  display: flex;
  justify-content: space-around;
  gap: 25px;
  width: 100%;
  margin: 0 auto;
}
.footer-col h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}
.footer-banners {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.footer-banner-btn img {
  border-radius: 5px;
}
.brand-lists {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.brand-lists li {
  width: min(320px, 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.95rem;
  margin: 0 auto;
}
.footer-sns-icon {
  display: flex;
  gap: 12px;
}
.sns-link img {
  width: 32px;
  height: auto;
  transition: opacity 0.3s ease;
}
.lp-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
}
.lp-lists .link {
  color: var(--main);
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s;
}

.copyright {
  background-color: var(--sub01);
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* =========================
  Animation
========================= */
.fade-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}
/* =========================
  Responsive
========================= */
@media (max-width: 1350px) {
  .header-menu {
    font-size: .9rem;
    gap: 1rem;
  }
  .header-logo-right {
    width: 200px;
  }
}
@media (max-width: 1170px) {
  .header {
    justify-content: flex-end;
  } 
}
/* ---------- 1100px ---------- */
@media (max-width: 1100px) {
  .gallery-container {
    flex-direction: column;
    padding: 20px 0;
  }
  .search-sidebar {
    width: 100%;
    max-width: none;
  }
  .gallery-main {
    flex: none;
  }
  .lp-banner-box {
    width: calc(50% - 8px);
  }
}

/* ---------- 980px ---------- */
@media (max-width: 980px) { 
  .pc-only { 
    display: none; 
  }
  .tab-only {
    display: block;
  }
  .hamburger.tab-only {
    display: flex;
  }
  .header-logo-right {
    width: 240px;
  }
  .scene-box {
    width: calc(50% - 10px);
  }
  .hero-wrap{
    padding-top: 1em;
  }
  .hero-left-block {
    margin-bottom: 0;
  }
  .hero-right-block {
    width: 50%;
  }
  .hero-left-block h2, .hero-text {
    text-align: center;
  }
  /* contact */
  .contact-wrap, .about-section-left {
    flex-direction: column;
    align-items: center;
  }
  .contact-section-left {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
  .contact-section-left .contact-text{
    width: 100%;
    margin-right: 8px;
  }
  .contact-section-left p.text {
    text-align: left;
  }
  .contact-section-right {
    justify-content: center;
    width: var(--container);
    padding: 0;
  }
  /* troubles */
  .troubles-wrap {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }
  .troubles-right {
    flex: auto;
    width: 100%;
    position: static;
  }
  .troubles-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
  .troubles-img {
    width: 100%;
  }
  /* voice */
  .voice-wrap {
    flex-direction: column;
    gap: 0;
  }
  .voice-left {
    flex: auto;
    width: 100%;
    position: static;
  }
  .voice-user-icon {
    width: 60px;
    height: 60px;
  }
 .voice-right {
  max-width: 100%;
 }
 .voice-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
 }
 .voice-item {
  width: calc(50% - 1rem);
 }
  /* footer */
  .btn-gray {
    width: 100%;
    max-width: 100%;
  }
  .lp-lists {
    grid-template-columns: 1fr;
  }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
  section {
    margin-bottom: var(--section-space_sp);
  }
  h2.section-title.-right {
    text-align: left;
  }
  /* hero */
  .hero-wrap{
    flex-direction: column;
  }
  .hero-left-block {
    order: 2; 
  }
  .hero-right-block {
    width: 100%;
    order: 1;
  }
  .hero-campaign img {
    display: block;
    width: min(360px, 100%);
    height: auto;
  }
  .hero-reasons {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
  .about-section-left img {
    width: 100%;
  }
   /* contact */
  .contact-section-left {
    flex-direction: column;
  }
  .contact-text {
    width: var(--container);
  }
  .timeline {
    margin: 0;
    width: 100%;
  }
  .scene-wrap {
    flex-direction: column;
  }
  .scene-box {
    width: 100%;
  }
  .modal-content-wrap {
    flex-direction: column;
  }
  .modal__container {
    padding: 60px 15px;
  }

  .modal-table {
    font-size: 0.75rem;
  }
  .grid-item{ 
    width: 50%; 
  }
  .timeline-item {
    gap: 15px;
    margin-bottom: 30px;
  }

  .timeline-item:not(:last-child)::after {
    left: 23px;
    top: 45px;
  }

  .timeline-number {
    width: 46px;
    height: 46px;
    font-size: 1.5rem;
  }
  .rental-buttons-wrap {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  /* voice */
  .voice-item {
    width: 100%;
  }
  .rental-buttons-wrap .line-btn-box {
    width: 100%;
  }
  /* scene */
  .scene-boxes {
    gap: 2rem;
  }
  /* access */
  .access-wrap {
    flex-direction: column;
    gap: 16px;
  }
  .access-left {
    padding: 0;
    order: 2;
  }
  .access-right {
    margin-top: 1rem;
    order: 1;
  }
  .access-address {
    margin-bottom: 1rem;
  }
  .access-table th {
    width: 100px;
  }
  .access-right,
  .map-placeholder,
  .access-right iframe {
    min-height: 300px;
  }

  /* faq */
  .summary_question {
    padding: 20px 0;
  }

  .details-summary_big {
    font-size: 1.3rem;
  }

  .summary_question_text p {
    font-size: 0.95rem;
  }

  .details-summary_icon {
    font-size: 2rem;
  }
 .contact02.section {
    padding: var(--bg-space_sp);
  }
  .contact02 .wrap {
    gap: 0;
  }
  .contact02 h2{
    order: 1;
    display: inline;
  }
  .contact02 .contact-text {
    padding: 1.5rem;
    order: 2;
    width: 100%;
  }
  .contact02-btn-line {
    font-size: 1.5rem;
    padding: 15px;
  }
  .lp-banner-box {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 32px;
  }
  /*----- company -----*/
  .company-wrap {
    gap: 0;
  }
  .company-right {
    width: 100%;
  }
  .company-left {
    width: 100%;
    position: relative;
    top: 0;
  }

  /*----- footer -----*/
  .footer-up {
    flex-direction: column;
    align-items: center;
  }
  .footer-banners {
    flex-direction: column;
  }
}

/* ---------- 520px ---------- */
@media (max-width: 520px) {
  .sp-only { 
    display: block;
  }
  .header-warp {
    padding: 0 0 0 .5rem;
    gap: 0;
  }
  .header-left {
    padding: 0;  
  }
  .header-logo-right {
    width: 190px;
  }
  .logo-link img {
    min-width: auto;
    max-width: 160px;
  }
  .access-table th,
  .access-table td {
    display: block;
    width: 100%;
    padding: 5px 0;
  }
  .access-table th {
    margin-top: 15px;
  }
  .access-table td {
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .tbl-company,
  .tbl-company tbody,
  .tbl-company tr,
  .tbl-company th,
  .tbl-company td {
    display: block;
    width: 100%;
  }
  .tbl-company tr {
    padding: 18px 0;
  }
  .tbl-company th,
  .tbl-company td {
    padding: 0;
    border: 0;
    text-align: center;
  }
  .tbl-company th {
    margin-bottom: 8px;
  }
  .tbl-company td {
    margin-top: 4px;
  }

  .tbl-company td ul {
    display: inline-block;
    margin-top: 8px;
    text-align: left;
    padding-left: 1.2em;
  }
  .troubles-content {
    align-items: center;
  }
  
}




@media (hover: hover) {
  
  .header-menu .header-link:hover::after {
    transform: scaleX(1);
  }
  .hover-slide:hover {
    border: 1px solid var(--black);
    color: var(--black);
  }
  .hover-slide:hover::after {
    transform: scale(1, 1);
  }
  button:hover, a:hover, .grid-item:hover {
    cursor: pointer;
  }
  .view_more-btn:hover, .header-contact:hover {
    opacity: 0.6; 
  }
  .btn-gray:hover {
    opacity: 0.7;
  }
  .keyword-slider:hover .keyword-track {
    animation-play-state: paused;
  }
  .filter-btn:hover {
    background: var(--pink);
    color: var(--main);
    font-weight: 600;
  }
  .sns-link img:hover, .lp-banner-img:hover,
  .lp-lists .link:hover, .modal__close:hover, .modal-buttons a:hover {
    opacity: 0.6;
  }
  .footer-contact-btn:hover, .footer-banner-btn:hover  {
    opacity: 0.7;
    transform: translateY(-3px);
  }
  .btn-more:hover {
    background-color: transparent;
    color: var(--black);
  }
  .btn-large:hover {
    background-color: var(--black);
    color: var(--gray);
    border: 2px solid var(--sub02);
  }
  .link:hover {
    opacity: 0.6;
    letter-spacing: .1em;
  }
  .line-btn-box .c-button:hover {
    opacity: .8;
  }
  .line-btn-box .c-button:hover span::before {
    transform: translateX(140%);
    opacity: 0;
  }
  .line-btn-box .c-button:hover span::after {
    transform: translateX(0);
    opacity: 1;
  }
}