@charset "UTF-8";
/* CSS Document */

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

h2 {
  padding-bottom: 0;
}

div.contents_area_ {
  /*=== EDWIN header ===*/
  padding-top: 80px;
}

body {
  margin: 0;
}

/*=============================
=============================
#TSG26ss
=============================
=============================*/
#TSG26ss {
  width: 100%;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
#TSG26ss p {
  font-size: 18px;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
#TSG26ss img {
  max-width: 100%;
}

/******************
#MainVisual
*******************/
#MainVisual {
  width: 100%;
}
#MainVisual .movie {
  aspect-ratio: 16/9;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
#MainVisual .video-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
#MainVisual .movie {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  width: 100%;
}
#MainVisual .movie iframe {
  height: 100%;
  width: 100%;
}
/******************
#MainVisual
*******************/

/******************
#Select
*******************/
#Select {
width: 100%;
margin-top: 160px;
}
#Select p.txt{
font-size: 140%;
font-weight: 500;
font-family: "irohamaru", sans-serif;
}
#Select .orange{
color: #e2813d;
}
#Select .green{
color: #708e5c;
}

#Select .select_btn{
    max-width: 1080px;
  width: 90%;
  display: flex;
  gap: 5%;
  margin: 0 auto 24px;
      justify-content: center;
  align-items: center;
   animation: buttonPulse 1.6s ease-in-out infinite;
  transform-origin: center;
}
#Select a {
  width: 45%;
  transition: 1s;
}
#Select a:hover {
  scale: 0.95;
  transition: 0.6s;
}
#Select a img {
  width: 100%;
}
#Select a.tsgN img {
  width: 90%;
}
@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

/* 初期状態 */
.fade-flower {
  opacity: 0;
  transform: translateY(10px) scale(0.6);
  filter: blur(4px);
  transition: opacity 0.6s ease, transform 1.4s cubic-bezier(0.22, 1.4, 0.36, 1), filter 0.6s ease;
  transform-origin: center center;
  will-change: opacity, transform;
}

/* 表示状態 */
.fade-flower.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  animation: petal 1s ease-out;
}
@keyframes petal {
  0% {
    transform: scale(0.9);
  }
  60% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
/******************
#Select
*******************/

/******************
#Copy
*******************/
#Copy {
  max-width: 1080px;
  width: 90%;
  margin: 120px auto;
}
#Copy .logo {
  width: 60%;
}
#Copy p {
  font-weight: bold;
  font-size: 120%;
  margin: 60px auto;
  line-height: 2.2;
  color: #666;
}
/******************
#Copy
*******************/

/******************
#Visual
*******************/
#Visual {
  width: 100%;
}
#Visual .Visual_img {
  width: 100%;
  margin-bottom: 120px;
}
@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.Visual_Scroll__wrap {
  display: flex;
  overflow: hidden;
}
.Visual_Scroll__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.Visual_Scroll__list--left {
  animation: infinity-scroll-left 20s linear infinite;
  display: flex;
  min-width: 200%;
}
.Visual_Scroll__item,
.scroll-infinity__item {
  width: 20%; /* 固定 or 内容に応じて調整 */
  flex-shrink: 0;
  margin-right: 48px;
}
.Visual_Scroll__item > img,
.scroll-infinity__item > img {
  width: 100%;
  height: auto;
}

/***** nouveau *****/
#Visual.n-visual {
  background: rgba(240, 235, 233, 0.4);
  width: 100%;
  aspect-ratio: 10 /5.6;
}
#Visual.n-visual .build-image {
  position: relative;
  width: 100%;
  height: 100%;
}
#Visual.n-visual .build-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
}

#Visual.n-visual .build-image img.is-show {
  animation: softReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes softReveal {
  0% {
    opacity: 0;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
  }
}
@keyframes buildFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#Visual.n-visual .build-image img.is-show:nth-child(1) {
  animation-delay: 0.2s;
}
#Visual.n-visual .build-image img.is-show:nth-child(2) {
  animation-delay: 0.6s;
}
#Visual.n-visual .build-image img.is-show:nth-child(3) {
  animation-delay: 1.2s;
}
#Visual.n-visual .build-image img.is-show:nth-child(4) {
  animation-delay: 1.8s;
}
#Visual.n-visual .build-image img.is-show:nth-child(5) {
  animation-delay: 2.4s;
}

#Visual.n-visual .build-image img:last-child {
  position: absolute;
  width: 60%;
  top: 60%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%) scale(0.95);
}
/******************
#Visual
*******************/

/******************
#Lineup
*******************/
#Lineup {
  max-width: 1080px;
  width: 90%;
  margin: 120px auto;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
}
#Lineup h2 {
  font-size: 300%;
  transform: scaleY(1.1);
}
#Lineup .L-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
  flex-wrap: wrap;
  margin: 120px auto 240px;
}
#Lineup .L-flex .flower {
  width: 25%;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: visible;
}
#Lineup .L-flex .flower img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  border-radius: 50% / 60%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#Lineup .L-flex .flower .border {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
#Lineup .L-flex .flower .border path {
  stroke: rgba(35, 24, 21, 0.3);
  stroke-width: 0.5;
  stroke-dasharray: 430;
  stroke-dashoffset: 430;
  transition: stroke-dashoffset 0.3s;
}
#Lineup .L-flex .flower .border.draw-border path {
  animation: draw-border 1s linear forwards;
}

@keyframes draw-border {
  to {
    stroke-dashoffset: 0;
  }
}

#Lineup .L-flex .flower:hover {
  transform: scale(0.9);
  opacity: 0.6;
}
/******************
#Lineup
*******************/

/******************
#Look (nouveau)
*******************/
#Look {
  max-width: 1080px;
  width: 90%;
  margin: 120px auto 120px;
}
#Look .timeline-block {
  position: relative;
  padding: 40px 0;
  text-align: center;
  --line-length: 320px;
}
/* 点線 */
#Look .timeline-line {
  width: 2px;
  height: 0;
  margin: 0 auto;
  background-image: linear-gradient(to bottom, #ccc 0, rgba(183, 146, 138, 0.7) 6px, transparent 6px, transparent 12px);
  background-size: 3px 16px;
  background-repeat: repeat-y;
}
/* 花・文字・写真 共通 */
#Look .timeline-flower,
#Look .timeline-text,
#Look .timeline-image {
  opacity: 0;
  transform: translateY(10px);
}
#Look .timeline-block.is-active .timeline-line {
  animation: lineGrow 1.2s ease-out forwards;
}
@keyframes lineGrow {
  from {
    height: 0;
  }
  to {
    height: var(--line-length);
  }
}

#Look .timeline-block.is-active .timeline-flower {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 1.3s;
  width: 10%;
  margin: 80px auto 40px;
}
#Look .timeline-block.is-active .timeline-text {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 1.7s;
}
#Look .timeline-block.is-active .timeline-text p.name {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}
#Look .timeline-block.is-active .timeline-text p.name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background-color: #c8a19a;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  border-radius: 4px;
}
#Look .timeline-block.is-active .timeline-text p.name img {
  width: auto;
  height: 54px;
  display: block;
  margin: 0 auto;
}
#Look .timeline-block.is-active .timeline-text p.type {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  transform: scaleY(1.2);
  font-size: 260%;
  margin-top: 16px;
}
#Look .timeline-block.is-active .timeline-image {
  animation: fadeUp 0.6s ease-out forwards;
  animation-delay: 2.1s;
  width: 50%;
  margin: 40px auto;
  transition: 0.6s;
}
#Look .timeline-block.is-active .timeline-image:hover {
  opacity: 0.6;
  scale: 0.9;
  transition: 0.6s;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#Look .timeline-block.is-active .timeline-text .name::after {
  animation: lineDraw 0.5s ease-out forwards;
  animation-delay: 1.6s; /* ← name表示の直後 */
}

@keyframes lineDraw {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/******************
#Modal
*******************/
#TSG26ss .modal {
  display: none;
  position: fixed;
  inset: 0; /* top: 0; left: 0; right: 0; bottom: 0 と同義 */
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6); /* ← 半透明黒背景 */
  z-index: 1000;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  overflow-y: auto;
  padding: 60px 20px;
}
#TSG26ss .modal .modal-content {
  background: white;
  border-radius: 48px;
  max-width: 1080px;
  width: 80%;
  height: 90dvh;
  max-height: 100vh; /* 画面に収まるように制限 */
  overflow: auto; /* コンテンツが大きい場合に中だけスクロール */
  padding: 64px 0;
  box-sizing: border-box;
}
#TSG26ss .modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  box-sizing: border-box;
}
.modal > * {
  z-index: 1001;
}
#TSG26ss .modal .modal-flower {
  width: auto;
  height: 120px;
  max-width: 80px;
}
#TSG26ss .modal h3 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-size: 300%;
  transform: scaleY(1.3);
  margin: 24px auto 40px;
  line-height: 1.1;
}
#TSG26ss .modal p.lead {
  font-size: 110%;
  margin: 40px auto;
  line-height: 1.8;
}
#TSG26ss .modal .bottom {
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: bold;
  border: solid 1px rgba(0, 0, 0, 0.3);
  width: 64%;
  margin: 0 auto;
  box-sizing: border-box;
}
#TSG26ss .modal .bottom .item {
  margin: 0;
  line-height: 1;
  padding: 4px;
  width: calc(70% - 1px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4px 0;
}
#TSG26ss .modal .bottom .item p.name {
  line-height: 1;
  margin: 0;
  width: 60%;
  transform: scaleY(1.4);
  font-size: 100%;
  letter-spacing: 0em;
}
#TSG26ss .modal .bottom span.border {
  width: 1px;
  background: #000;
  width: 1px;
  height: 1em;
  display: block;
}
#TSG26ss .modal .bottom p.lot {
  width: 30%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  transform: scaleY(1.4);
  font-size: 100%;
  letter-spacing: 0em;
}
#TSG26ss .modal .bottom p.lot span {
  font-size: 50%;
  margin-right: 4px;
}
#TSG26ss .modal .bottom a.buy {
  background: #000;
  display: block;
  width: 30%;
  padding: 6px 0;
}
#TSG26ss .modal .bottom a.buy p {
  color: #fff;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
  transform: scaleY(1.2);
  padding: 2px 0;
  letter-spacing: 0em;
}
#TSG26ss .modal .bottom a.buy p::before {
  content: "";
  background: url(../image/icon_bag.png);
  width: 12px;
  aspect-ratio: 2/3;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  transform: scaleY(0.9);
  margin-right: 12px;
}
#TSG26ss .modal .bottom a.buy p:hover {
  opacity: 0.6;
  transform: scale(0.95);
  transition: 0.6s;
}
#TSG26ss .modal a.item-list {
  background: #ee9654;
  display: block;
  color: #fff;
  padding: 8px 0;
  width: 70%;
  max-width: 320px;
  margin: 40px auto 0;
  font-size: 120%;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  transition: 0.6s;
}
#TSG26ss .modal a.item-list:hover {
  scale: 0.95;
  opacity: 0.6;
  transition: 0.6s;
}
#TSG26ss .modal a.item-list span {
  transform: scaleY(1.3);
  font-size: 90%;
  display: inline-block;
  margin-right: 8px;
}

/***写真切り替え***/
#TSG26ss .modal .auto-gallery {
  display: flex;
  width: 70%;
  aspect-ratio: 1/0.9;
  margin: 0 auto 0;
  align-items: center;
  justify-content: center;
  gap: 2%;
}
#TSG26ss .modal .gallery-main {
  width: 72%;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
}
#TSG26ss .modal .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
    transition: opacity 0.15s ease;
}
#TSG26ss .modal .gallery-thumbs {
  width: 24%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  row-gap: 2%;
}
#TSG26ss .modal .thumb {
  opacity: 1;
  filter: none;
  transition: opacity 0.15s ease, filter 0.15s ease;
  position: relative;
  overflow: hidden;
}
#TSG26ss .modal .thumb.is-current {
  opacity: 0.4;
  filter: brightness(0.7);
}
#TSG26ss .modal .thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
#TSG26ss .modal .thumb-text {
  position: absolute;
  left: 8%;
  bottom: 4%;
  font-family: neulis-sans, sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 90%;
  letter-spacing: -0.02em;
}
#TSG26ss .modal .gallery-main {
  position: relative;
}
#TSG26ss .modal .item-text {
  position: absolute;
  left: 8%;
  bottom: 4%;
  font-size: 200%;
  color: #000;
  font-family: neulis-sans, sans-serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.02em;
}

/******************
#Modal nouveau
*******************/
#TSG26ss .nouveau-modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(177, 147, 140, 0.8); /* ← 半透明ベージュ背景 */
  z-index: 1000;
  overflow-y: auto;
  padding: 0;
  box-sizing: border-box;
}
#TSG26ss .nouveau-modal *,
#TSG26ss .nouveau-modal *::before,
#TSG26ss .nouveau-modal *::after {
  box-sizing: inherit;
}
#TSG26ss .nouveau-modal.active {
display: flex;
justify-content: center;
align-items: center;
}
#TSG26ss .nouveau-modal .modal-content {
  background: #fff;
  width: 70%;
  height: 90dvh;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  padding: 0 0;
  box-sizing: border-box;
  position: relative;
    vertical-align: middle;
    overflow-y: auto;
    display: flex;
    align-items: center;
}

#TSG26ss .modal-overlay.active {
  display: flex;
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 1px;
  background-color: rgba(183,146,138,1);
  transform-origin: center;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#TSG26ss .modal-close:hover {
  opacity: 0.6;
}
#TSG26ss .nouveau-modal .flexbox {
  width: 80%;
  height: 74vh;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
#TSG26ss .nouveau-modal .flexbox .photo {
  width: auto;
  height: 100%;
}
#TSG26ss .nouveau-modal .flexbox .details {
  width: 38%;
  padding-bottom: 8px;
  text-align: left;
}
#TSG26ss .nouveau-modal .flexbox .photo img{
  max-width: 100%;
  max-height: 100%;
}
#TSG26ss .nouveau-modal .flexbox .details p.name {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 2vh;
}
#TSG26ss .nouveau-modal .flexbox .details p.name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 6px;
  background-color: #c8a19a;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  border-radius: 4px;
}
#TSG26ss .nouveau-modal .flexbox .details p.name img {
  width: auto;
  height: 7vh;
  display: block;
  margin: 0 auto;
}
#TSG26ss .nouveau-modal .flexbox .details p.name::after {
  animation: modalLineDraw 0.5s ease-out forwards;
}
@keyframes modalLineDraw {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
#TSG26ss .nouveau-modal .flexbox .details p.type {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  transform: scaleY(1.2);
  font-size: 6vh;
  margin-top: 16px;
  line-height: 0.9;
}

#TSG26ss .nouveau-modal .flexbox .details .list {
  width: 100%;
  margin: 40px 0 24px;
  border-top: solid 1px rgba(0, 0, 0, 0.4);
  border-bottom: solid 1px rgba(0, 0, 0, 0.4);
  padding: 4px;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  transform: scaleY(1.2);
}
#TSG26ss .nouveau-modal .flexbox .details .list p {
  letter-spacing: -0.05em;
}
#TSG26ss .nouveau-modal .flexbox .details .list p.list-item {
  font-size:2.2vh;
  border-bottom: solid 1px rgba(0, 0, 0, 0.4);
  padding-bottom: 4px;
}
#TSG26ss .nouveau-modal .flexbox .details .list p.list-lot {
  font-size:1.6vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4px;
}
#TSG26ss .nouveau-modal .flexbox .details .list p.list-lot span {
  font-size: 60%;
  margin-right: 8px;
}

#TSG26ss .nouveau-modal .flexbox .details a.buy {
  background: #b1938c;
  display: block;
  color: #fff;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  width: 50%;
  padding: 8px 0;
  display: block;
  transition: 0.6s;
}
#TSG26ss .nouveau-modal .flexbox .details a.buy p {
  width: auto;
  margin: 0 auto;
  text-align: center;
  transform: scaleY(1.2);
  display: flex;
  align-items: center;
  justify-content: center;
    font-size:2vh;
}
#TSG26ss .nouveau-modal .flexbox .details a.buy p::before {
  content: "";
  background: url(../image/icon_bag.png);
  width: 12px;
  aspect-ratio: 2/3;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
  transform: scaleY(0.9);
  margin-right: 12px;
}
#TSG26ss .nouveau-modal .flexbox .details a.buy:hover {
  opacity: 0.6;
  transform: scale(0.95);
  transition: 0.6s;
}
#TSG26ss .nouveau-modal .flexbox .details p.doc {
  font-size: 1.7vh;
  margin-top: 24px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

/******************
#Tolight
*******************/
#Tolight {
  max-width: 1080px;
  width: 90%;
  margin: 120px auto;
}
#Tolight a {
  width: 40%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  transition: 1s;
}
#Tolight a:hover {
  scale: 0.9;
  opacity: 0.6;
  transition: 0.6s;
}
/******************
#Tologht
*******************/


/******************
#profile
*******************/
#Profile{
  width: 100%;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 120px 0;
}
#Profile .prof_img{
width: 40%;
max-width: 480px;
margin: 0 auto 120px;
}
#Profile .prof_img .p_flower{
width: 100%;
position: relative;
height: auto;
}

#Profile .prof_img .p_flower img{
position: absolute;
width: 24%;
z-index: 99;
  opacity: 0;
}
#Profile .prof_img .p_flower img.mei{
position: relative;
width: 100%;
z-index: 1;
}

#Profile .prof_img .p_flower img.ann{
bottom: -4%;
right: -8%;
}
#Profile .prof_img .p_flower img.claudia{
bottom: -12%;
left: -14%;
width: 36%;
}
#Profile .prof_img .p_flower img.hana{
bottom: 9%;
left: -23%;
width: 36%;
}
#Profile .prof_img .p_flower img.lisa{
top: 23%;
left: -19%;
width: 32%;
}
#Profile .prof_img .p_flower img.elsa{
top: -5%;
right: -19%;
width: 40%;
}

#Profile .p_flower.is-show img {
  animation: softReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* 時間差 */
#Profile .p_flower.is-show img:nth-child(1) { animation-delay: .0s; }
#Profile .p_flower.is-show img:nth-child(2) { animation-delay: .4s; }
#Profile .p_flower.is-show img:nth-child(3) { animation-delay: 1.2s; }
#Profile .p_flower.is-show img:nth-child(4) { animation-delay: 1.6s; }
#Profile .p_flower.is-show img:nth-child(5) { animation-delay: 2.3s; }
#Profile .p_flower.is-show img:nth-child(6) { animation-delay: 2s; }


#Profile .p-read{
margin: 0 auto 64px;
}
#Profile .p-read p{
font-size: 120%;
line-height: 2;
}
#Profile .p-detail{
width: 100%;
max-width: 1080px;
margin: 0 auto;
}

#Profile .p-detail img{
  max-width: 400px;
width: 40%;
margin-bottom: 24PX;
}
#Profile .p-detail h2.name{
  display: flex;
  align-items: baseline; /* 和文と英文の高さズレ防止 */
  white-space: nowrap;   /* ★改行させない */
  justify-content: center;
  gap: 0.4em;        
  margin: 0 auto 64px;
font-size: 240%;
font-weight: 400;
}
#Profile .p-detail h2.name span{
font-size: 60%;
  font-family: hiragino-mincho-pron, sans-serif;
}

#Profile .p-detail p{
text-align: justify;
width: 60%;
margin: 0 auto;
font-size: 100%;
line-height: 2;
font-weight: 500;
}
#Profile .link{
display: flex;
align-items: center;
width: 40%;
margin: 120px auto;
padding-left: -40px;
justify-content: center;
gap: 4%;
}
#Profile .link img{
width: 10%;
max-width: 40px;
}
#Profile .link a{
font-size: 140%;
font-family: hiragino-mincho-pron, sans-serif;
font-weight: 600;
}

/******************
#profile
*******************/




/*=============================
fade
=============================*/
.fade {
  width: 100%;
  opacity: 0;
  transition: all 0.8s ease;
}
.fade.show {
  opacity: 1;
  transform: translateY(0);
}

.fadeLR {
  transform: translate(-200px, 0);
}
.fadeRL {
  transform: translate(200px, 0);
}
.fadeUp {
  transform: translate(0, 100px);
}
.fadeDown {
  transform: translate(0, -100px);
}
.fadeSU {
  transform: scale(0.5);
}
.fadeSD {
  transform: scale(1.5);
}
.fadeRotateL {
  transform: rotate(180deg);
}
.fadeRotateR {
  transform: rotate(-180deg);
}
/*=============================
fade
=============================*/

.pc {
  display: inline-block !important;
}
.sp {
  display: none !important;
}

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

@media screen and (max-width: 768px) {
  div.contents_area_ {
    /*=== EDWIN header ===*/
    padding-top: 56px;
  }

  #TSG26ss p {
    font-size: 12px;
    line-height: 1.8;
  }

  /******************
#MainVisual
*******************/
  #MainVisual {
    width: 100%;
    height: 100%;
  }
  /* #MainVisual .video-wrapper {
width: 100%;
max-width: 100%;
margin: 0 auto;
will-change: transform;
overflow: visible;
} */
  #MainVisual .movie {
    aspect-ratio: 9/16;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 0;
  }
  #MainVisual .movie iframe {
    height: 100%;
    width: 100%;
  }
  /******************
#Select
*******************/
  #Select {
    width: 100%;
    gap: 0%;
    margin: 80px auto;
  }
#Select p.txt{
font-size: 100%;
}

  #Select a {
    width: 50%;
  }
  /******************
#Copy
*******************/
  #Copy {
    width: 90%;
    margin: 80px auto;
  }
  #Copy .logo {
    width: 80%;
  }
  #Copy p {
    margin: 40px auto;
    font-size: 3.5vw;
  }

  /******************
#Visual
*******************/
  #Visual .Visual_img {
    margin-bottom: 24px;
  }
  .Visual_Scroll__list--left {
    animation: infinity-scroll-left 10s linear infinite;
  }
  .Visual_Scroll__item,
  .scroll-infinity__item {
    width: 30%;
    margin-right: 24px;
  }

  #Visual.n-visual .build-image img:last-child {
    width: 55%;
    top: 55%;
  }
  /******************
#Lineup
*******************/
  #Lineup {
    width: 90%;
    margin: 80px auto;
  }
  #Lineup h2 {
    font-size: 200%;
  }
  #Lineup .L-flex {
    gap: 2%;
    margin: 40px auto 120px;
  }
  #Lineup .L-flex .flower {
    width: 32%;
  }
  /******************
#Look (nouveau)
*******************/
  #Look {
    margin: 60px auto 60px;
  }
  #Look .timeline-block {
    padding: 24px 0 0px;
    --line-length: 180px;
  }
  /* 点線 */
  #Look .timeline-line {
    width: 2px;
    background-image: linear-gradient(to bottom, #ccc 0, rgba(183, 146, 138, 0.4) 6px, transparent 6px, transparent 12px);
    background-size: 3px 12px;
  }
  #Look .timeline-block.is-active .timeline-flower {
    width: 64px;
    margin: 40px auto 24px;
  }
  #Look .timeline-block.is-active .timeline-text p.name {
    padding-bottom: 8px;
  }
  #Look .timeline-block.is-active .timeline-text p.name::after {
    bottom: -2px;
    height: 4px;
  }
  #Look .timeline-block.is-active .timeline-text p.name img {
    height: 32px;
  }
  #Look .timeline-block.is-active .timeline-text p.type {
    font-size: 160%;
    margin-top: 4px;
  }
  #Look .timeline-block.is-active .timeline-image {
    width: 70%;
    margin: 8px auto 24px;
  }
  /******************
#Modal
*******************/
  #TSG26ss .modal {
    display: none;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    border-radius: 0;
  }
  #TSG26ss .modal .modal-content {
    background: white;
    border-radius: 24px;
    width: 80%;
height: 85dvh;
    overflow: auto; /* コンテンツが大きい場合に中だけスクロール */
    padding: 24px 0;
    box-sizing: border-box;
  }
  .modal.active {
    padding: 60px 0;
    margin: 0;
  }
  .modal > * {
    z-index: 1001;
  }
  #TSG26ss .modal .modal-flower {
    height: 80px;
  }
  #TSG26ss .modal h3 {
    font-size: 160%;
    margin: 24px auto 40px;
  }
  #TSG26ss .modal p.lead {
    width: 80%;
    font-size: 85%;
    margin: 40px auto;
    text-align: justify;
  }
  #TSG26ss .modal .bottom {
    width: 90%;
  }
  #TSG26ss .modal .bottom .item {
    padding: 4px;
    width: calc(70% - 1px);
    padding: 4px 0;
  }
  #TSG26ss .modal .bottom .item p.name {
    font-size: 50%;
  }
  #TSG26ss .modal .bottom p.lot {
    width: 32%;
    font-size: 30%;
    margin-right: 4px;
  }
  #TSG26ss .modal .bottom p.lot span {
    font-size: 30%;
    transform: scale(0.6);
    margin-right: -4px;
  }
  #TSG26ss .modal .bottom a.buy {
    width: 30%;
    padding: 6px 0;
  }
  #TSG26ss .modal .bottom a.buy p::before {
    width: 8px;
    margin-right: 8px;
    font-size: 50%;
  }
  #TSG26ss .modal a.item-list {
    padding: 8px 0;
    width: 70%;
    margin: 24px auto 0;
    font-size: 90%;
  }

  /***写真切り替え***/
  #TSG26ss .modal .auto-gallery {
    width: 80%;
    flex-wrap: wrap;
  }
  #TSG26ss .modal .gallery-main {
    width: 100%;
  }
  #TSG26ss .modal .gallery-thumbs {
    width: 100%;
    grid-template-rows: none;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2%;
  }
  #TSG26ss .modal .thumb-text {
    font-size: 50%;
  }
  #TSG26ss .modal .item-text {
    font-size: 120%;
  }
  /******************
#Modal nouveau
*******************/
  #TSG26ss .nouveau-modal {
    display: none;
    width: 100%;
    padding: 0px 0;
  }

  #TSG26ss .nouveau-modal.active {
  display: flex;
  margin: 0;
  padding: 0;
}
  #TSG26ss .nouveau-modal .modal-content {
    width: 85%;
  height: 80dvh;
  overflow-y: auto;
  padding: 40px 0;
  display: block;
  
}
  #TSG26ss .nouveau-modal .flexbox {
    width: 80%;
    display: block;
    height: auto;
  }
  #TSG26ss .nouveau-modal .flexbox .photo {
    width: 100%;
    margin-bottom: 40px;
  height: auto;
  }
  #TSG26ss .nouveau-modal .flexbox .details {
    width: 85%;
    margin: 0 auto;
  }
  #TSG26ss .nouveau-modal .flexbox .details p.name::after {
    bottom: -6px;
    height: 6px;
  }
  #TSG26ss .nouveau-modal .flexbox .details p.name {
    text-align: center;
    margin: 0 auto 24px;
    padding-bottom: 2px;
  }
  #TSG26ss .nouveau-modal .flexbox .details p.name img {
    height: 48px;
    display: block;
    margin: 0 auto;
  }
  #TSG26ss .nouveau-modal .flexbox .details p.type {
    font-size: 240%;
    margin-top: 4px;
    margin-bottom: 24px;
  }

  #TSG26ss .nouveau-modal .flexbox .details .list {
    margin: 8px 0 24px;
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    padding: 2px;
  }
  #TSG26ss .nouveau-modal .flexbox .details .list p.list-item {
    font-size: 90%;
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
    padding-bottom: 2px;
  }
  #TSG26ss .nouveau-modal .flexbox .details .list p.list-lot {
    font-size: 100%;
    padding-top: 2px;
  }

  #TSG26ss .nouveau-modal .flexbox .details a.buy {
    width: 100%;
  }
  #TSG26ss .nouveau-modal .flexbox .details a.buy p {
    font-size: 100%;
  }
  #TSG26ss .nouveau-modal .flexbox .details a.buy p::before {
    width: 12px;
    margin-right: 12px;
    margin-top: -2px;
  }
.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.modal-close::before,
.modal-close::after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: rgba(183, 146, 138, 1); /* ← ご指定の色 */
  transform-origin: center;
}

  #TSG26ss .nouveau-modal .flexbox .details p.doc {
    font-size: 85%;
    margin-top: 24px;
    text-align: justify;
    letter-spacing: -0.15em;
  }

  /******************
#Tolight
*******************/
  #Tolight {
    margin: 80px auto;
  }
  #Tolight a {
    width: 40%;
  }

  #Tolight.T-nouveau {
    margin: 160px auto 80px;
  }
  /******************
#Tologht
*******************/

/******************
#profile
*******************/
#Profile{
  width: 80%;
  padding: 80px 0;
  margin: 0 auto;
}
#Profile .prof_img{
width: 60%;
margin: 0 auto 80px;
}

#Profile .p-read{
margin: 0 auto 64px;
}
#Profile .p-read p{
font-size: 90%;
}

#Profile .p-detail img{
width: 60%;
margin-bottom: 24px;
}
#Profile .p-detail h2.name{
    display: block;
  gap: 0;
  margin: 24px auto 48px;
font-size: 180%;
line-height: 1.2;
}
#Profile .p-detail h2.name span{
font-size: 48%;
}

#Profile .p-detail p{
width: 90%;
font-size: 90%;
}
#Profile .link{
width: 80%;
margin: 60px auto 0;
padding-left: -24px;
}
#Profile .link img{
width: 24px;
}
#Profile .link a{
font-size: 100%;
}

/******************
#profile
*******************/
}
/*=============================
=============================
#TSG26ss
=============================
=============================*/
