@charset "utf-8";
/*
Theme Name : New__CIRQ
Description : シルクネット用テーマ
Version : 202503
*/

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Noto+Sans+JP&display=swap');

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}

@keyframes scaleFadeIn {
  from {
      opacity: 0;
      transform: scale(1.2); 
  }
  to {
      opacity: 1;
      transform: scale(1); 
  }
}

@keyframes shadowFloat {
    0% {
      transform: translateX(-50%) scaleX(1);
      opacity: 0.5;
    }
    100% {
      transform: translateX(-50%) scaleX(1.3);
      opacity: 0.35;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0);
    }
   100% {
        transform: translateY(100%);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== BASE STYLES ===== */

.appointment-button-container {
    position: fixed;
    right: 0;
    bottom: 150px;
    text-align: center;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.appointment-button {
  background: linear-gradient(135deg, #5cb8b2, #3cb9b1);
    border: #5cb8b2 solid 2px;
    color: #fff;
}

.appointment-button:hover {
    background: white;
    border: #5cb8b2 solid 2px;
    color: #5cb8b2;
    transform: scale(1.02);
    transition: transform 0.2s ease;
    box-shadow: 0 6px 16px rgba(92, 184, 178, 0.5);
}

/* ===== HEADER STYLES ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
  justify-content: space-between;
  padding: 15px 0;
}

.header.scrolled .header__logo {
  height: 60px;
  width: 150px;
}

.header__logo {
  height: 80px;
  width: 250px;
  margin: 0;
  background-image: url(../img/logo/logo.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-indent: -9999px;
  transition: width 0.3s ease, 
              height 0.3s ease,
              margin 0.3s ease;
}

/* ===== MOBILE NAVIGATION ===== */
@media screen and (max-width: 800px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .header.scrolled {
    justify-content: space-between;
  }

  .header.scrolled .header__logo {
    height: 50px;
    width: 120px;
    margin: 0 0 0 15px;
  }

  .header__logo {
    background-image: url(../img/logo/CIRQ_logo3.png);
  }

  .nav__hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
  }

  .nav__hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__child {
    width: auto;
    border: none;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav.active .nav__child {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__child:nth-child(1) { transition-delay: 0.1s; }
  .nav__child:nth-child(2) { transition-delay: 0.15s; }
  .nav__child:nth-child(3) { transition-delay: 0.2s; }
  .nav__child:nth-child(4) { transition-delay: 0.25s; }
  .nav__child:nth-child(5) { transition-delay: 0.3s; }
  .nav__child:nth-child(6) { transition-delay: 0.35s; }
  .nav__child:nth-child(7) { transition-delay: 0.4s; }
  .nav__child:nth-child(8) { transition-delay: 0.45s; }

  .nav__child-link {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .nav__child-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .nav__child-link:hover::before {
    left: 100%;
  }

  .nav__child-link:hover {
    color: #5cb8b2;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(92, 184, 178, 0.3);
  }
}
.header__spacer {
    height: 18vh; 
}

/* ===== LOADING ===== */
#page-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#page-loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

#page-loading.fade-out .loading-content {
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.loading-content {
  text-align: center;
}

.loading-logo {
  margin-bottom: 30px;
}

.loading-logo-img {
  width: 300px;
  height: auto;
  opacity: 0;
  animation: scaleFadeIn 0.5s ease-out both;
}

.loading-text {
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

/* top */
.top-section__container {
    max-width: 1500px;
    margin: 130px auto 0 auto;
    border: 2px solid rgba(255,255,255,0.55);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    background: #fff;
}

.top-section {
    width: 100vw;
    height: 80vh;
    position: relative;
}

.top__container {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 300;
}

.top__slider__text {
    position: absolute;
    z-index: 2;
    top: 30%;
    left: 5vw;
    width: 90vw;
    overflow: visible;
    pointer-events: none;
}

.top__video__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.top__video__bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    border: none;
    pointer-events: auto;
}

.slide__text {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 4em;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-background-clip: text;
    background-clip: text;
    mix-blend-mode: color-dodge;
    padding: 10px;
    line-height: 1.4;
    max-width: 80%;
    text-shadow:
      0 2px 8px rgba(0,0,0,0.35),
      0 1px 0 rgba(0,0,0,0.15),
      0 0.5px 0 rgba(0,0,0,0.10);
}

.top__slider__container {
    position: relative;
    z-index: 1;
    top: 0;
    top: -13vh;
    right: -20px;
    width: 80vw;
    height: 80vh;
}

@media screen and (min-width: 1600px) {
    .top__slider__container {
        top: -10vh;
    }
}

.top__slide.slide__a {
    background-image: url(../img/top_slide/slide01.jpg);
    background-repeat: no-repeat;
    background-position: right center; 
    position: relative;
}

.top__slide.slide__b {
    background-image: url(../img/top_slide/slide02.jpg);
    background-repeat: no-repeat;
    background-position: right center; 
    position: relative;
}

.top__slide.slide__c {
    background-image: url(../img/top_slide/slide03.jpg);
    background-repeat: no-repeat;
    background-position: right center; 
    position: relative;
}

.top__slide.slide__d {
    background-image: url(../img/top_slide/slide04.jpg);
    background-repeat: no-repeat;
    background-position: right center; 
    position: relative;
}

.top__slide.slide__e {
    background-image: url(../img/top_slide/slide05.jpg);
    background-repeat: no-repeat;
    background-position: right center; 
    position: relative;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.red-color{
    color: #ff0000;
    font-weight: bold;
}

.top__slide {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform; 
    background-size:100% ;
    animation: zoomIn 10s ease-in-out infinite;
    animation-fill-mode: both;
}


/* banner */
.banner-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.banner-container {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    width: 100%;
}

.banner-container::-webkit-scrollbar {
    display: none;
}

.flxbox__3clmn__banner {
    flex: 0 0 auto;
    width: 27vw;
}

.banner__section__img {
    width: 100%;
    height: auto;
    display: block;
}
.banner-scroll-left {
    position: absolute;
    left: 4%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.banner-scroll-left:hover {
    background: rgba(92, 184, 178, 0.8);
}

.banner-scroll-right {
    position: absolute;
    left: 7%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.banner-scroll-right:hover {
    background: rgba(92, 184, 178, 0.8);
}

.banner-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.banner-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 20px 0 0 0;
    width: 100%;
}
.banner-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s;
}
.banner-dot.active {
    background: #5cb8b2;
}

/* ===== CONTACT BUTTONS ===== */

.facility-button,
.appointment-button {
    display: inline-block;
    padding: 20px;
    height: 200px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: normal;
    white-space: nowrap;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.facility-button {
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
}

.facility-button:hover {
    color: #000;
    background: white;
    border: 2px solid #000;
    transform: scale(1.02); 
    transition: transform 0.2s ease;
    box-shadow: 0 6px 16px rgba(92, 184, 178, 0.5);
}
@media (max-width: 1024px) {
  .facility-button,
.appointment-button {
    max-height: 180px;
}
}

.line-animation {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px; 
    height: 100px; 
    background: linear-gradient(135deg, #5cb8b2, #3cb9b1); 
    transform: translateX(-50%);
    animation: slideDown 2s ease-in-out infinite;
    z-index: -1;
}

/* facility */
.flxbox__map__container{
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
width: 100%;
margin-right: 20%;
}

.map__container{
padding:50px 0;
}

.facility_indicates{
    margin: 0 auto;
    max-width: 1100px;
    scrollbar-width: thin; 
    scrollbar-color: #888 #f1f1f1;
    z-index: 1;
}

/* intrduction */

.index__feature__section__title-2nd{
	width: 100%;
	font-size: 3.5em;
	letter-spacing: 2px;
	font-weight: normal;
	padding: 20px 15px;
	margin: 0;
	font-family: 'Shippori Mincho', serif;
}

.section__left{
	text-align: left!important;
}

.section__right{
	text-align: right!important;
}

.section__center{
	text-align: center!important;
}
.margin-left{
  margin-left: 0 !important;
}
.index__feature__section__title-2nd__caption{
	display: inline-block;
	padding: 0 15px;
	font-size: 0.5em;
	letter-spacing: 2px;
}
.index__feature__section__title-2nd__description {
	display: block; 
	padding: 0 15px;
	font-size: 1em;
	letter-spacing: 2px;
	text-align: justify;
}


/* use */
.section__flow__index,.section__use__index{
	width: 100%;
	border-bottom: 1px solid #EFEFEF;
	padding:70px 0;
	margin: 0 AUTO;
}

.use__row__slide {
    display: flex!important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 20px;
    scroll-behavior: smooth;
    width: 70%;
    height: auto;
}

.use-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    min-width: max-content;
}

.use__row__slide::before{
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 200px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}
.use__row__slide::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 200px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
}

.use__row__slide::before {
    left: 0; 
}

.use__row__slide::after {
    right: 0; 
}

.flxbox__3clmn__use {
    flex: 0 0 auto;
    width: calc(33.333% - 14px);
    max-width: 500px;
    scroll-snap-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.flxbox__3clmn__use.common__content {
    flex: 0 0 auto;
    width: 100%; 
    height: 300px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.use__row__slide::-webkit-scrollbar {
    display: none;
}

.use__index__feature__container {
    display: flex;
    justify-content: center;
    align-items: stretch;  
    gap: 40px;
    flex-wrap: nowrap;  
    max-width: 1100px;
    margin: 40px auto;
}

.use__index__feature {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
    position: relative;
}

.use__index__feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.use__index__feature__img {
    width: 100%;
    height: auto;
    display: block;
}

.use__index__feature__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60,60,60,0.55);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s;
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}

.use__index__feature:hover .use__index__feature__overlay {
    opacity: 1;
}

.use__index__feature__overlay-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.use__index__feature__overlay-desc {
    font-size: 1em;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.use__index__feature h3.common__content-title,.use__index__feature h3.common__content-title-2nd {
    display: none;
}

.use-scroll-container {
    position: relative;
    display: flex;
    justify-content: center;  
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.use-scroll-left, .use-scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    width: 100px;
    height: 100px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.use-scroll-left {
    left: 30%;
}

.use-scroll-right {
    right: 30%;
}

.use-scroll-left:hover, .use-scroll-right:hover {
    background-color: rgba(0, 0, 0, 0.5);
}


/* flow */
.decor-square {
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.decor-large {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(92, 184, 178, 0.2), rgba(60, 185, 177, 0.3));
}

.decor-medium {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, rgba(231, 231, 231, 0.1), rgba(181, 181, 181, 0.2));
}

.decor-small {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(92, 184, 178, 0.3), rgba(60, 185, 177, 0.4));
}


.flow__scrollable {
    width: 100%;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    justify-content: center; 
    position: relative;
    min-height: 350px;
    z-index: 1;
  }
  
  .flow__scrollable::-webkit-scrollbar {
    display: none;
  }
  
  .flow__content {
    width: 100%;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    position: relative;
    row-gap: 2.9rem;
}

.flow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.flow__circle {
    width: 18vh; 
    height: 18vh;
    border-radius: 50%;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: linear-gradient(135deg, rgba(92, 184, 178, 1), rgba(60, 185, 177, 1));
    position: relative;
    z-index: 100;
}

.flow::before {
    content: '';
    position: absolute;
    left:100%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        #3cb9b1 0px,
        #3cb9b1 5px,
        transparent 10px,
        transparent 15px
    );
    z-index: 1;
}

.flow:last-child::after,.flow:last-child::before {
  display: none;
}

.banner-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.banner-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.banner-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.banner-arrow svg {
    color: #333;
    transition: color 0.3s ease;
}

.banner-arrow:hover svg {
    color: #3cb9b1;
}

.banner-arrow-left {
    margin-left: 100px;
}

.banner-arrow-right {
    margin-right: 210px;
}

@media (max-width: 768px) {
    .banner-arrow {
        width: 40px;
        height: 40px;
    }
    
    .banner-arrow-left {
        margin-left: 10px !important;
    }
    
    .banner-arrow-right {
        margin-right: 10px !important;
    }
}

.flow__circle:hover {
    transform: scale(1.02);
}

.flow:nth-child(1) .flow__circle {
    background: linear-gradient(135deg, rgba(92, 184, 178, 0.8), rgba(60, 185, 177, 1));
    border: 1px solid #5cb8b2;
}
.flow:nth-child(2) .flow__circle {
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(234, 234, 234,1));
    border: 1px solid #5cb8b2;
}
.flow:nth-child(3) .flow__circle {
  background: linear-gradient(135deg, rgba(92, 184, 178, 0.8), rgba(60, 185, 177, 1));
  border: 1px solid #5cb8b2;
}
.flow:nth-child(4) .flow__circle {
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(234, 234, 234,1));
  border: 1px solid #5cb8b2;
}
.flow:nth-child(5) .flow__circle {
  background: linear-gradient(135deg, rgba(92, 184, 178, 0.8), rgba(60, 185, 177, 1));
  border: 1px solid #5cb8b2;
}
  
  .flow__inner {
    text-align: center;
    max-width: 90%;
  }
  
  .flow__step {
    font-size: 0.75em;
    color: #666;
    margin-bottom: 5px;
  }
  
  .flow__title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 6px;
  }
  .flow__title__big {
    font-size: 2.5em;
    font-weight: bold;
    color: #333;
    margin-bottom: 6px;
  }
  .flow__title__small {
    font-size: 1.5em;
  }
  .flow__white {
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .flow__green{
    color: #5cb8b2;
  }
  .flow__desc {
    font-size: 1em;
    line-height: 1.4;
  }
  
  .subpage__btn-mail {
    display: inline-block;
    background-color: #fff;
    font-size: 1em;
    color: #5cb8b2;
    padding: 5px 0;
    text-decoration: none;
    border-radius: 40px;
  }

  .floating-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.1), transparent 70%);
    border-radius: 50%;
    animation: shadowFloat 4s ease-in-out infinite alternate;
    z-index: 0;
    margin-top: 100px;
    margin-bottom: 20px;
  }
  
  @keyframes shadowFloat {
    0% {
      transform: translateX(-50%) scaleX(1);
      opacity: 0.5;
    }
    100% {
      transform: translateX(-50%) scaleX(1.3);
      opacity: 0.35;
    }
  }
  
/* 検索枠 */
.search__form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1100px;
    width: 100%;
    margin: 1rem auto;
    justify-content: flex-end;
}

.search__form--child {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search__form--freeword {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search__form--freeword:focus {
    border-color: #c89eff;
    box-shadow: 0 0 0 3px rgba(200, 158, 255, 0.2);
    outline: none;
}

.search__form--child select {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    background-color: white;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23333' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.search__form--child select:focus {
    border-color: #5cb8b2;
    box-shadow: 0 0 0 3px rgba(200, 158, 255, 0.2);
    outline: none;
}

.search__form--btn {
    padding: 0.55rem 2rem;
    background: linear-gradient(135deg, #5cb8b2, #3cb9b1);
    color: white;
    border: #5cb8b2 1px solid;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search__form--btn:hover {
    background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
    border: #5cb8b2 1px solid;
    color: #5cb8b2;
}

.search__number, .no-results {
    text-align: center;
    font-size: 1.3em;
    padding: 20px;
    margin: 10px auto;
}

/* popup */
.use-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  display: none; 
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.use-modal[style*="display: flex"] {
  display: flex !important;
}
.use-modal__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}
.use-modal__content {
  position: relative;
  z-index: 2;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-width: 57vw;
  max-height: 90vh;
  overflow: hidden;
}
.use-modal__body {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
}
.use-modal__img {
  width: 30vw;
  height: 100%;
  object-fit: cover;
  background: #eee;
  display: block;
}
.use-modal__text {
    width: 50vw;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 220px;
  max-width: 350px;
}
.use-modal__title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
  color: #222;
}
.use-modal__caption {
  font-size: 1em;
  color: #444;
  line-height: 1.7;
}
.use-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2em;
  color: #888;
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s;
}
.use-modal__close:hover {
  color: #222;
}
.use-modal__prev,
.use-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 2em;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}

.use-modal__prev:hover,
.use-modal__next:hover {
  background: rgba(92,184,178,0.5);
}
.use-modal__prev {
  left: 15%;
}
.use-modal__next {
  right: 15%;
}

@media (max-width: 768px) {
  .use-modal__content {
    flex-direction: column;
    min-width: 90vw;
    max-width: 98vw;
    min-height: unset;
    max-height: 98vh;
  }
  .use-modal__body {
    flex-direction: column;
    align-items: center;
  }
  .use-modal__img {
    width: 100vw;
    max-width: 100vw;
    height: 220px;
    max-height: 40vh;
    object-fit: cover;
  }
  .use-modal__text {
    width:80%;
    padding: 20px 12px;
    min-width: unset;
    max-width: unset;
  }
  .use-modal__prev,
  .use-modal__next {
    top: unset;
    bottom: 16px;
    transform: none;
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .use-modal__prev {
    left: 16px;
  }
  .use-modal__next {
    right: 16px;
  }
  .use-modal__close {
    top: 8px;
    right: 12px;
    font-size: 1.5em;
  }
}

/* サブページのタイトル */
.subpage__section__content{
    max-width: 1100px;
    margin: 0 auto;
}
.subpage__section {
    width: 100%;
    min-height: 250px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    background-image: 
      linear-gradient(
        rgba(255, 255, 255, 0.3),
        rgba(255, 255, 255, 0.9)
      ),
      url(../img/top_slide/slide04.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
    animation: fadeInUp 1.2s ease-out both;
  }
  
  .subpage__section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
    z-index: 1;
    pointer-events: none;
  }
  
  .subpage__section .flower-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/decoration/decoration.webp) no-repeat left center;
    background-size: contain;
    opacity: 0.5;
    z-index: 0;
  }
  
  .subpage__section .flower-decoration.bottom-right {
transform: rotate(180deg);
  }
  
  
  .subpage__section__title,
  .subpage__section__caption {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease both;
  }
  
  .subpage__section__title {
    display: inline-block;
    font-size: 3.5em;
    letter-spacing: 2px;
    text-align: center;
    font-weight: normal;
    margin: 0 auto;
    font-family: 'Shippori Mincho', serif;
    color: #333;
    background-color: rgba(255, 255, 255, 0.2); 
    position: relative;
    z-index: 2;
  }
  
  .subpage__section__caption {
    display: inline-block;
    font-size: 1.5em;
    letter-spacing: 2px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.2); 
    position: relative;
    z-index: 2;
    font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  }
  
  .fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .process-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .process-step {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 20px 0 40px 0;
    margin-bottom: 20px;
  }
  
  .process-box {
    width: 250px;
    min-width: 200px;
    padding: 20px;
    font-weight: bold;
    margin-right: 30px;
    text-align: center;
  }

  .process-box__design1 {
    background: linear-gradient(135deg, #5cb8b2, #3cb9b1);
    color: #fff;
    border: 1px solid #5cb8b2;
  }
  
  .process-box__design2 {
    background: linear-gradient(135deg, #ffffff, #f1f1f1);
    color: #5cb8b2;
    border: 1px solid #5cb8b2;
  }
  
  /*吹き出しの三角形 */
  .process-box {
    position: relative;
  }
  
  .process-box::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid;
    z-index: 1;
  }
  
  .process-box__design1::after {
    border-top-color: #5cb8b2 !important;
  }
  
  .process-box__design2::after {
    border-top-color: #5cb8b2;
  }
  
  .process-step:last-child .process-box::after {
    display: none;
  }
  .process-step-num {
    font-size: .8em;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .process-step-title {
    font-size: 1.5em;
  }
  
  .process-desc {
    font-size: 1.1em;
    color: #333;
    line-height: 1.6;
  }

  .menu-text{
padding: 20px 0;
  }

  .plan-image-container{
    margin-bottom: 30px;
  }

  .buffet-section, .course-section, .special-course-section {
    padding: 20px 30px 5px 30px;
  }
 .drink-section {
    padding: 20px 30px 0 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
  .buffet-item, .course-item, .drink-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
  }

  .menu-detail:last-child {
    margin-bottom: 0;
}

/* training__content の高さを強制的に統一 */
.training__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    height: auto !important;
}

.training__content strong {
    margin-bottom: 15px !important;
    text-align: center !important;
}

.training__content .training__content-sub {
    margin-top: auto !important;
    padding-top: 10px !important;
}

  .buffet-item, .course-item, .drink-item {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .top__video__bg__video{
    position:absolute;
    top:0;
    left:-5%;
    width:100%;
    height:75vh;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
  }
  .top__video__bg__video__video{
    width:100%;
    height:auto;
    object-fit:contain;
    display:block;
    margin:0;
    padding:0;
  }

  @media screen and (min-width: 2000px) {

    .top-section__container {
      width: 100vw;
      max-width: 100%;
    }
    .top__slider__text {
      font-size: 1em;
    }
  
    .slide__text {
      font-size: 3.5em;
      max-width: 70%;
    }
    .top__slider__container {
      width: 75vw;
      height: 90vh;
      top: -12vh;
      right: -30px;
    }
    .area-category-description{
      padding:0;
    }
    .banner-container {
      gap: 25px;
    }
    .index__feature:nth-child(odd) .index__feature-content{
      padding: 30px 50px 30px 400px;
    }
    .index__feature:nth-child(even) .index__feature-content{
      padding: 30px 400px 30px 50px;
    }
    .subpage__index__feature:nth-child(odd) .index__feature-content,.subpage__index__feature:nth-child(odd) .index__feature-img{
      height: 30vh;
    }
    .subpage__index__feature:nth-child(even) .index__feature-content,.subpage__index__feature:nth-child(even) .index__feature-img{
      height: 30vh;
    }
.subpage__index__feature{
      height: 30vh;
    }
    .flow__content,.common__img,.subpage__section__content,.flex__container, .flow__scrollable,.use__index__feature__container, .use__row__slide, .facility_indicates,.search__form {
      max-width: 1600px;
    }
  }
  @media screen and (max-width: 1600px) {
    .top__video__bg__video{
      left:0;
    }
  }
  @media screen and (max-width: 1200px) {
    .flow__content,.common__img,.subpage__section__content,.flex__container, .flow__scrollable,.use__index__feature__container, .use__row__slide, .facility_indicates,.search__form {
      max-width: 1000px;
    }
    .nav {
      gap: 0px;
    }
    .area-category-description,.nav__child-link{
      padding: 0;
    }
    .search__form{
      justify-content: center;
    }
    .index__feature:nth-child(odd) .index__feature-content{
      padding: 30px 50px 30px 100px;
    }
    .index__feature:nth-child(even) .index__feature-content{
      padding: 30px 100px 30px 50px;
    }
    .use-scroll-left, .use-scroll-right{
           top: auto;
    }
    .subpage__index__feature:nth-child(odd) .index__feature-content,.subpage__index__feature:nth-child(odd) .index__feature-img{
      height: 30vh;
    }
    .subpage__index__feature:nth-child(even) .index__feature-content,.subpage__index__feature:nth-child(even) .index__feature-img{
      height: 30vh;
    }
.subpage__index__feature{
      height: 32vh;
    }
    .process-step{
      padding: 20px 50px;
    }
    .use-modal__prev {
      left: 10%;
    }
    .use-modal__next {
      right: 10%;
    }
    .use-row {
      grid-template-columns: repeat(2, 1fr);
      gap: 5px;
    }
    .use__row__slide {
      width: 100%;
    }
    .use__row__slide::after{
      display: none;
    }
    .use__row__slide::before{
transform: rotate(180deg);
    }
    .banner-arrow-left {
      margin-left: 200px;
  }
  
  .banner-arrow-right {
      margin-right: 200px;
  }
}
  
  @media screen and (max-width: 800px) {
.index__feature:nth-child(odd) .index__feature-content,
.index__feature:nth-child(even) .index__feature-content{
  padding: 0;
}
.subpage__index__feature:nth-child(odd) .index__feature-content{
  width: 45%;
}
.subpage__index__feature:nth-child(odd) .index__feature-content,.subpage__index__feature:nth-child(odd) .index__feature-img{
  height: 40vh;
}
.subpage__index__feature:nth-child(even) .index__feature-img{
  height: 40vh;
  align-self: flex-start;
}
.subpage__index__feature{
  height: 40vh;
}
.use__row__slide{
  gap: 10px;
}
.common__content-title,.common__content-title-2nd{
  font-size: 1em;
}
.section__margin{
  margin: 0;
}
.use-scroll-left, .use-scroll-right{
  top: 50%;
  width: 80px;
  height: 80px;
}
.use-scroll-left{
left: 5%;
}
.use-scroll-right{
  right: 5%;
}
.flow__content{
  grid-template-columns: repeat(5, 1fr);
  row-gap: 1rem;
margin:30px 0;
}
.flow__scrollable{
  width: 650px;
}
.process-box{
  width: 200px;
}
.appointment-button-container {
  bottom: 0;
  left: 0;
  flex-direction: row;
  gap: 0;
  position: fixed;
  z-index: 10001 !important;
  writing-mode: horizontal-tb;
  width: 100%;
}
  .facility-button, .appointment-button {
    padding: 15px 20px;
    height: auto;
    font-size: 14px;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    flex: 1;
    width: 50%;
    z-index: 10001 !important;
  }
  .flow__title{
    font-size: 1.5em;
  }
  .flow__title__small {
    font-size: 1.2em;
  }
  .subpage__btn-mail{
    font-size: .8em;
  }
  }

  @media screen and (max-width: 550px) {

    .top-section__container {
      margin: 80px 10px 0 10px;
      border-width: 1px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
  
    .top-section {
      height: 50vh;
    }

    .top__video__bg__video {
      height: 50vh;
      left: 0;
    }

    .top__video__bg__video__video {
      width: auto;
      height: 100%;
      object-fit: contain;
    }
  
    .top__slider__text {
      top: 20%;
      left: 5vw;
      width: 90vw;
      font-size: 1.5em;
    }
  
    .slide__text {
      font-size: 1.2em;
      max-width: 100%;
      padding: 5px;
    }
  
    .top__slider__container {
      width: 100vw;
      height: 50vh;
      top: -6vh;
      right: 0;
    }
  
    /* banner */
    .banner-scroll-container {
      padding: 10px 0;
    }
  
    .banner-container {
      gap: 10px;
    }
  
    .flxbox__3clmn__banner {
      width: 80vw;
    }
  
    .search__form {
      flex-direction: column;
      max-width: 90%;
      margin: 1rem auto;
    }
  
    .search__form--child {
      flex: none;
      width: 100%;
      margin: 10px auto;
      margin-bottom: 8px;
    }
    .search-form{
    gap: 10px;
    width: 50%;
    margin: 0;
    }
  
    .process-step {
      flex-direction: column;
      align-items: stretch;
    }
  
    .process-box {
      width: 90%;
      min-width: auto;
      margin-right: 0;
      margin-bottom: 10px;
    }
    
    .process-box::after {
      bottom: -12px;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-top: 12px solid;
    }
    
    .process-step {
      padding: 20px 20px 35px 20px;
      margin-bottom: 15px;
  }
    .use-row {
      grid-template-columns: repeat(2, 1fr);
    }
    .use__row__slide {
      height: auto;
      min-height: auto;
      gap: 15px;
      padding: 10px;
      flex-direction: column;
      width: 100%;
    }
    .use-scroll-left, .use-scroll-right{
      width: 50px;
      height: 50px;
    }
    .flxbox__3clmn__use {
      width: calc(50% - 7.5px);
      max-width: 100%;
      scroll-snap-align: none;
    }
  
    .flow__scrollable {
      min-height: 350px;
    }
  
    .use-modal__content {
      min-width: 90vw;
      max-width: 98vw;
      min-height: auto;
      max-height: 90vh;
    }
    .subpage__index__feature{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: auto;
      padding: 0;
      width: 100%;
    }
    .subpage__index__feature:nth-child(odd) .index__feature-img{
      width: 100%;
    }.subpage__index__feature:nth-child(even) .index__feature-img{
      width: 100%;
      align-self: flex-start;
    }
    .subpage__index__feature:nth-child(odd) .index__feature-content{
      width: 90%;
      position: relative;
      height: auto;
    }
    .subpage__index__feature:nth-child(even) .index__feature-content{
      width: 90%;
      position: relative;
      height:auto;
      align-items: flex-start;
    }
    .section__title-3rd.section__right::after, .section__title-3rd.section__left::after{
      left: 0;
      right: auto;
      width: 80%;
    }
    .index__feature-img {
      position: relative;
      overflow: hidden;
    }
    .common__caption-center{
      padding: 15px;
    }
    .phone-button{
      width: 80%;

    }
    .subpage__section{
      padding: 0;
    }
    .title_padding{
      padding: 20px 0 !important;
    }  
    .use-card-title-bg{
      margin: 0;
      height: 50px;
    }
    .section__flow__index, .section__use__index{
      padding: 0;
    }
    .use__index__feature__container {
      gap: 10px;
  }
  .use__index__feature__overlay-title{
    font-size: 1.2em;
  }
  .flow__desc{
    display: none;
  }
.flow__scrollable {
  width: 100%;
  padding: 0;
}
.flow__title {
  font-size: 1.5em;
}
.subpage__section__title,.index__feature__section__title-2nd{
  font-size: 2.5em;
  width: 92%;
}
.section__right{
	text-align: left!important;
}
.section__title-3rd{
  width:100%;
  
}
.use__index__feature__overlay-desc {
display: none;
}
.flow__content{
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1rem;
  margin:30px 0;
}
.flow__circle::after{
  display: none;
}
.flow__circle{
width: 14vh;
    height: 14vh;
}
.flow__title__small{
  font-size: 1.1em !important;
}
  }
  @media screen and (max-width: 400px) {

.flow__title {
  font-size: 1.3em;
}
.subpage__btn-mail{
  margin: 0;
  font-size: .7em;
}
.contact__btn-mail{
font-size: 18px;
}
.floating-shadow{
  display: none;
}
  .facility-button, .appointment-button {
    padding: 15px 20px;
    flex: 1;
    width: 50%;
  }
}
@media screen and (max-width: 320px) {

  .subpage__index__feature:nth-child(odd) .index__feature-img{
    width: 100%;
    height: 30vh;
  }.subpage__index__feature:nth-child(even) .index__feature-img{
    width: 100%;
    height: 30vh;
  }
  .subpage__index__feature:nth-child(odd) .index__feature-content{
    width: 90%;
  }
  .subpage__index__feature:nth-child(even) .index__feature-content{
    width: 90%;
  }
  .process-box {
    width: 80%;
  }
  
  .process-box::after {
    bottom: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid;
  }
  .top__container{
    width: 100%;
  }
  .flow__title__small{
    font-size: 1em !important;
  }
}

.buffet-section,
.course-section,
.special-course-section,
.drink-section {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
  border: 3px double;
  border-color: var(--theme-color, #999);
}

/* 确保每行的两个flxbox__2clmn高度一致 */
.flex__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.flxbox__2clmn {
  width: calc(50% - 20px);
  margin: 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.buffet-item,
.course-item,
.special-course-item,
.drink-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-detail {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.menu-text {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.buffet-price-taxoff,
.buffet-price-taxin,
.course-price-taxoff,
.course-price-taxin,
.special-course-price-taxoff,
.special-course-price-taxin {
  text-align: right;
  margin-bottom: 10px;
}
/* ===== THANKS PAGE STYLES ===== */
.thanks__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}


.thanks__content {
  position: relative;
  z-index: 1;
}

.thanks__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  font-family: 'Shippori Mincho', serif;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thanks__message {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.thanks__main-text {
  font-size: 1rem;
  color: #34495e;
  margin-bottom: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.thanks__notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 20px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.notice__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.notice__text {
  color: #856404;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.thanks__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.btn__right {
  background: linear-gradient(135deg, #5cb8b2, #3cb9b1);
  border: #5cb8b2 solid 2px;
  color: #fff;
}
.btn__right:hover {
  background: white;
  border: #5cb8b2 solid 2px;
  color: #5cb8b2;
}
@media (max-width: 768px) {
  .thanks__container {
      margin: 20px;
      padding: 40px 20px;
      border-radius: 15px;
  }
  
  .thanks__title {
      font-size: 1.7rem;
  }
  
  .thanks__main-text {
      font-size: 1rem;
  }
  
  .thanks__actions {
      flex-direction: row;
      align-items: center;
      gap: 15px;
  }
}

@media (max-width: 480px) {
  .thanks__title {
      font-size: 1.4rem;
  }
  
  .thanks__main-text {
      font-size: 0.9rem;
  }
  
  .thanks__container {
      padding: 30px 15px;
  }
  .thanks__actions {
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
}
