@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  zoom: 1;
}

/* Set default styles for html */
html {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size-adjust: 0.5;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
}

strong {
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  outline: none;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  transition: all 0.3s ease;
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.js-typein {
  opacity: 0;
}

.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  margin: 0;
}

:root {
  --bg1: #f6f4f1;
  --bg2: #e3e1de;
  --bk: #000;
  --br: #bb8d76;
  --font1:
    "utile-display", -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --font2:
    "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "Yu Gothic", "YuGothic", "Noto Sans JP", "Meiryo", sans-serif;
}

html,
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", "Meiryo", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  line-height: clamp(1.875rem, 1.673rem + 0.88vw, 2.5rem);
  letter-spacing: 0.1em;
  overflow-x: clip;
  background-color: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-style: normal;
}

/* フォントサイズ 14~16pt */
.p-text {
  font-size: clamp(0.875rem, 0.844rem + 0.17vw, 1rem);
  line-height: clamp(1.75rem, 1.642rem + 0.58vw, 2.188rem);
}

.f-13 {
  font-size: 13px;
}

/* フォントサイズ 11~15pt */
.f-15 {
  font-size: clamp(0.813rem, 0.782rem + 0.17vw, 0.938rem);
}

/* フォントサイズ 16~18pt */
.f-18 {
  font-size: clamp(1rem, 0.969rem + 0.17vw, 1.125rem);
}

/* フォントサイズ 17~20pt */
.f-20 {
  font-size: clamp(1.063rem, 1.016rem + 0.25vw, 1.25rem);
}

/* フォントサイズ 18~25pt */
.f-25 {
  font-size: clamp(1.125rem, 0.983rem + 0.61vw, 1.563rem);
}

/* フォントサイズ 20~30pt */
.f-30 {
  font-size: clamp(1.25rem, 1.048rem + 0.88vw, 1.875rem);
}

/* フォントサイズ 19~35pt */
.f-35 {
  font-size: clamp(1.188rem, 0.155rem + 2.15vw, 2.188rem);
}

/* フォントサイズ 21~40pt */
.f-40 {
  font-size: clamp(1.313rem, 1.019rem + 1.57vw, 2.5rem);
}

/* フォントサイズ 21~45pt */
.f-45 {
  font-size: clamp(1.313rem, 0.941rem + 1.98vw, 2.813rem);
}

/* フォントサイズ 40~50pt */
.f-50 {
  font-size: clamp(2.5rem, 2.345rem + 0.83vw, 3.125rem);
}

/* フォントサイズ 21~55pt */
.f-55 {
  font-size: clamp(1.313rem, 0.787rem + 2.81vw, 3.438rem);
}

/* フォントサイズ 30~75pt */
.f-75 {
  font-size: clamp(1.875rem, 1.179rem + 3.71vw, 4.688rem);
}

/* フォントサイズ 60~80pt */
.f-80 {
  font-size: clamp(3.75rem, 3.345rem + 1.75vw, 5rem);
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

.line-25 {
  line-height: 25px;
}

.f-16 {
  font-size: clamp(0.875rem, 0.844rem + 0.17vw, 1rem);
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  line-height: 1.5;
  margin: 0;
}

.v-text2 {
  writing-mode: sideways-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.v-text-p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  line-height: 2.2;
  margin: 0;
}

.font1 {
  font-family: var(--font1);
}

.font2 {
  font-family: var(--font2);
}

.text-shadow {
  text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
  text-shadow: 2px 2px 5px white;
}

.has-shadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.has-shadow2 {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* テキストカラー*/
.fc-bk {
  color: var(--bk);
}

.fc-br {
  color: var(--br);
}

.fc-wh {
  color: var(--bg1);
}

/* 背景 */
.bg-bk {
  background-color: var(--bk);
}

.bg-1 {
  background-color: var(--bg1);
}

.bg-2 {
  background-color: var(--bg2);
}

.bg-br {
  background-color: var(--br);
}

/* News表示 画像あり版 */
.news-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-list .webgene-item {
  width: 100%;
}

@media (min-width: 768px) {
  .news-list .webgene-item {
    width: 48%;
  }
}
/* ページ共通設定 */
.ja-title {
  position: relative;
  padding-left: 25px;
}
.ja-title::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--br);
}

.ja-title-wh {
  position: relative;
  padding-left: 25px;
}
.ja-title-wh::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}

.wh-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 35px;
  width: 250px;
  border-radius: 50px;
  border: var(--br) 1px solid;
  background-color: var(--bg1);
  transition: 0.3s;
}
.wh-btn:hover {
  background-color: var(--br);
  color: var(--bg1);
}
.wh-btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/Arrow1.svg) no-repeat center/contain;
  transition: 0.3s;
}
.wh-btn:hover::after {
  background: url(../images/Arrow3.svg) no-repeat center/contain;
}

.wh-btn2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 35px;
  width: 250px;
  border-radius: 50px;
  border: var(--br) 1px solid;
  background-color: var(--bg1);
  transition: 0.3s;
}
.wh-btn2:hover {
  background-color: var(--br);
  color: #fff;
  border: #fff 1px solid;
}
.wh-btn2::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/Arrow1.svg) no-repeat center/contain;
  transition: 0.3s;
}
.wh-btn2:hover::after {
  background: url(../images/Arrow3.svg) no-repeat center/contain;
}

.wh-btn__end {
  align-self: flex-end;
}

.br-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 35px;
  width: 250px;
  border-radius: 50px;
  border: var(--br) 1px solid;
  background-color: var(--br);
  transition: 0.3s;
  color: var(--bg1);
}
.br-btn:hover {
  background-color: var(--bg1);
  color: var(--br);
}
.br-btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/Arrow3.svg) no-repeat center/contain;
  transition: 0.3s;
}
.br-btn:hover::after {
  background: url(../images/Arrow1.svg) no-repeat center/contain;
}

.b-bttom {
  border-bottom: var(--br) 1px solid;
}

.b-top {
  border-top: var(--br) 1px solid;
}

.fv {
  height: 100dvh;
  border-bottom: var(--br) 1px solid;
}
.fv__img {
  height: 300px;
}
@media (min-width: 576px) {
  .fv__img {
    height: 400px;
  }
}
@media (min-width: 768px) {
  .fv__img {
    height: 500px;
  }
}
.fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__text {
  height: calc(100vh - 450px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .fv__text {
    height: calc(100vh - 500px);
  }
}
@media (min-width: 768px) {
  .fv__text {
    height: calc(100vh - 600px);
  }
}

/*ヘッダー*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--bg1);
  z-index: 1000;
}
.header__inner {
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 10px 40px;
  }
}
.header__logo img {
  width: clamp(5rem, 4.691rem + 1.65vw, 6.25rem);
  transition: 0.3s ease;
}
.header__insta {
  width: 35px;
  height: 35px;
  background-image: url("../images/IG2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.header__insta:hover {
  background-image: url("../images/IG_b.svg");
}
.header__nav {
  gap: clamp(0.625rem, 0.393rem + 1.24vw, 1.563rem);
}
.header__nav a {
  color: #000;
}
.header__nav a:hover {
  color: var(--br);
}
.header__nav-wrap {
  gap: clamp(0.625rem, 0.393rem + 1.24vw, 1.563rem);
}
@media (orientation: landscape) {
  .header__nav-wrap {
    justify-content: flex-start;
  }
}
.header__btn {
  padding: 3px 30px;
  color: #fff;
  background-color: var(--br);
  border-radius: 50px;
  border: var(--br) 1px solid;
}
.header__btn:hover {
  color: var(--br);
  background-color: var(--bg1);
  border: var(--br) 1px solid;
}
.header__btn2 {
  position: absolute;
  top: 25%;
  right: 12%;
  padding: 3px 30px;
  color: #fff;
  background-color: var(--br);
  border-radius: 50px;
  border: var(--br) 1px solid;
}
@media (min-width: 900px) {
  .header__btn2 {
    right: 10%;
  }
}
.header__btn2:hover {
  color: var(--br);
  background-color: var(--bg1);
  border: var(--br) 1px solid;
}
.header__right {
  gap: 25px;
}
.header__burger {
  display: none;
  width: 30px;
  height: 15px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 200;
}
.header__burger-line {
  height: 2px;
  background: var(--br);
  border-radius: 999px;
  transition: 0.3s;
}
@media (max-width: 576px) {
  .header .header__nav-wrap {
    width: 100%;
  }
}
@media (min-width: 577px) and (max-width: 992px) {
  .header .header__nav-wrap {
    width: clamp(18.75rem, 14.686rem + 21.68vw, 28.125rem);
  }
}
@media (max-width: 992px) {
  .header__burger {
    display: flex;
  }
  .header__nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    background: var(--bg2);
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: center;
    padding-block: 100px;
    overflow-y: auto;
    transition: 0.4s ease;
    z-index: 150;
  }
  .header__nav {
    flex-direction: column;
    align-items: center;
  }
  .header__right {
    flex-direction: column;
  }
  .header__nav-wrap.is-open {
    right: 0;
  }
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  transform: translateY(-7px) rotate(-45deg);
}

/* フッター */
.footer__reserve-btn {
  border: var(--br) 1px solid;
  border-radius: 20px;
  gap: 25px;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__reserve-btn {
    gap: clamp(1.563rem, -0.371rem + 10.31vw, 9.375rem);
  }
}
@media (min-width: 992px) {
  .footer__reserve-btn {
    width: clamp(48.125rem, 27.26rem + 33.65vw, 52.5rem);
  }
}
@media (min-width: 1200px) {
  .footer__reserve-btn {
    width: clamp(52.5rem, 34.59rem + 23.88vw, 59.5rem);
  }
}
.footer__reserve-btn:hover {
  color: var(--br);
  background-color: var(--bg2);
}
.footer__reserve-btn-ar {
  width: clamp(2.188rem, 1.801rem + 2.06vw, 3.75rem);
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 575px) {
  .footer__reserve-btn-ar {
    display: none;
  }
}
.footer__reserve-btn-p {
  line-height: 25px;
  font-size: 13px;
}
@media (min-width: 576px) {
  .footer__reserve-btn-p {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .footer__reserve-btn-p {
    font-size: 13px;
  }
}
@media (min-width: 992px) {
  .footer__reserve-btn-p {
    font-size: 15px;
  }
}
.footer__logo {
  width: clamp(6.25rem, 4.703rem + 8.25vw, 12.5rem);
}
.footer__nav {
  gap: clamp(0.938rem, 0.551rem + 2.06vw, 2.5rem);
}
.footer__box {
  gap: clamp(1.875rem, 0.792rem + 5.78vw, 6.25rem);
}
.footer__box-right a:hover {
  color: var(--bg1);
}
.footer__copy {
  width: 100%;
  border-top: var(--br) 1px solid;
}

/* トップ */
.top-fv {
  background-color: var(--bg1);
  height: 100dvh;
  overflow: hidden;
}
.top-fv__circle {
  width: 80vw;
  height: 80vw;
  top: 75%;
  right: 15%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  transform: translateY(-50%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-fv__circle {
    width: 70vw;
    height: 70vw;
    top: 45%;
    right: 15%;
  }
}
@media (min-width: 992px) {
  .top-fv__circle {
    width: 55vw;
    height: 55vw;
    top: 45%;
    right: 10%;
  }
}
@media (min-width: 1200px) {
  .top-fv__circle {
    width: 50vw;
    height: 50vw;
    top: 55%;
    right: 15%;
  }
}
@media (min-width: 1500px) {
  .top-fv__circle {
    width: 45vw;
    height: 45vw;
  }
}
.top-fv__circle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-fv__circle-text {
  position: absolute;
  right: 25%;
  top: 90%;
  width: 140px;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.top-fv__circle-text img {
  width: 100%;
  height: auto;
}
@media (max-width: 575px) {
  .top-fv__circle-text {
    display: none;
  }
}
@media (min-width: 576px) {
  .top-fv__circle-text {
    right: 10%;
    top: 40%;
    width: 180px;
  }
}
@media (min-width: 768px) {
  .top-fv__circle-text {
    right: 13%;
    top: 60%;
  }
}
@media (min-width: 992px) {
  .top-fv__circle-text {
    right: 9%;
    top: 60%;
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .top-fv__circle-text {
    right: 12%;
    top: 68%;
  }
}
@-webkit-keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.top-fv__text {
  position: absolute;
  left: 10%;
  top: 20%;
}
@media (min-width: 768px) {
  .top-fv__text {
    left: 10%;
    top: 70%;
  }
}
.top-fv__h1 {
  font-size: clamp(1.875rem, 1.101rem + 4.13vw, 5rem);
  margin-bottom: 20px;
}

.top-sec1 {
  border-bottom: var(--br) 1px solid;
  padding-bottom: 50%;
}
.top-sec1__left {
  position: relative;
  height: 300px;
}
.top-sec1__img1 {
  position: absolute;
  border-radius: 20px;
  top: 0%;
  left: 7%;
  z-index: 10;
}
@media (min-width: 576px) {
  .top-sec1__img1 {
    top: 0%;
    left: 10%;
  }
}
@media (min-width: 992px) {
  .top-sec1__img1 {
    top: 0%;
    left: 0%;
  }
}
.top-sec1__img1 img {
  border-radius: 20px;
  width: 60%;
}
@media (min-width: 768px) {
  .top-sec1__img1 img {
    width: 80%;
  }
}
.top-sec1__img2 {
  position: absolute;
  border-radius: 20px;
  top: 80%;
  left: 30%;
  z-index: 5;
}
@media (min-width: 350px) {
  .top-sec1__img2 {
    top: 90%;
    left: 30%;
  }
}
@media (min-width: 400px) {
  .top-sec1__img2 {
    top: 90%;
    left: 30%;
  }
}
@media (min-width: 500px) {
  .top-sec1__img2 {
    top: 90%;
    left: 40%;
  }
}
@media (min-width: 768px) {
  .top-sec1__img2 {
    top: 92%;
    left: 30%;
  }
}
@media (min-width: 992px) {
  .top-sec1__img2 {
    top: 120%;
    left: 30%;
  }
}
.top-sec1__img2 img {
  border-radius: 20px;
  width: 85%;
}
@media (min-width: 400px) {
  .top-sec1__img2 img {
    width: 82%;
  }
}
@media (min-width: 500px) {
  .top-sec1__img2 img {
    width: 75%;
  }
}
@media (min-width: 576px) {
  .top-sec1__img2 img {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .top-sec1__img2 img {
    width: 90%;
  }
}
@media (min-width: 992px) {
  .top-sec1__img2 img {
    width: 80%;
  }
}

.top-sec2 {
  border-bottom: var(--br) 1px solid;
}
.top-sec2__circle {
  width: clamp(12.5rem, 11.262rem + 6.6vw, 17.5rem);
  height: clamp(12.5rem, 11.262rem + 6.6vw, 17.5rem);
  border-radius: 50%;
  overflow: hidden;
}
.top-sec2__left {
  border-bottom: var(--br) 1px solid;
}
@media (min-width: 768px) {
  .top-sec2__left {
    border-right: var(--br) 1px solid;
    border-bottom: none;
  }
}
.top-sec2__title {
  font-size: 15px;
}
@media (min-width: 576px) {
  .top-sec2__title {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .top-sec2__title {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .top-sec2__title {
    font-size: 18px;
  }
}

.top-sec3__box {
  width: 250px;
}
@media (min-width: 576px) {
  .top-sec3__box {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .top-sec3__box {
    width: 700px;
  }
}
@media (min-width: 992px) {
  .top-sec3__box {
    width: 200px;
  }
}
@media (min-width: 1200px) {
  .top-sec3__box {
    width: 320px;
  }
}

.gallery {
  position: relative;
  overflow: hidden;
}
.gallery__inner {
  width: 100%;
  overflow: hidden;
}
.gallery__track {
  display: flex;
  gap: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: slide 20s linear infinite;
          animation: slide 20s linear infinite;
}
.gallery img {
  width: 250px;
  border-radius: 20px;
  flex-shrink: 0;
}

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

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.top-sec4__box {
  position: relative;
  width: 280px;
}
@media (min-width: 400px) {
  .top-sec4__box {
    width: 350px;
  }
}
@media (min-width: 500px) {
  .top-sec4__box {
    width: 450px;
  }
}
@media (min-width: 576px) {
  .top-sec4__box {
    width: 500px;
  }
}
@media (min-width: 768px) {
  .top-sec4__box {
    width: 700px;
  }
}
@media (min-width: 992px) {
  .top-sec4__box {
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .top-sec4__box {
    width: 320px;
  }
}
.top-sec4__box::before {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
}
@media (min-width: 992px) {
  .top-sec4__box::before {
    display: none;
  }
}
.top-sec4__box * {
  position: relative;
  z-index: 1;
}

.top-sec5__news {
  width: 100%;
}
.top-sec5__btn-box {
  flex: 1;
}

.news-item a:hover {
  color: var(--br);
}

.top-sec6__box {
  border-radius: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .top-sec6__box {
    width: clamp(16.25rem, 13.156rem + 16.5vw, 28.75rem);
  }
}
.top-sec6__circle {
  width: clamp(11.25rem, 10.167rem + 5.78vw, 15.625rem);
  height: clamp(11.25rem, 10.167rem + 5.78vw, 15.625rem);
  border-radius: 50%;
  overflow: hidden;
}
.top-sec6__cont {
  gap: 25px;
}

.concept-sec1__img {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  overflow: hidden;
}
.concept-sec1__img img {
  width: 100%;
  height: 100%;
}
@media (min-width: 576px) {
  .concept-sec1__img {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 768px) {
  .concept-sec1__img {
    width: 300px;
    height: 300px;
  }
}
@media (min-width: 992px) {
  .concept-sec1__img {
    width: 400px;
    height: 400px;
  }
}
@media (min-width: 1200px) {
  .concept-sec1__img {
    width: 500px;
    height: 500px;
  }
}
.concept-sec1__img2 {
  height: 50dvh;
}

.concept-sec2__img {
  border-radius: 20px;
  -o-object-fit: cover no-repeat;
     object-fit: cover no-repeat;
}

.concept-sec3 {
  height: 120dvh;
  align-items: center;
}
@media (min-width: 576px) {
  .concept-sec3 {
    height: 110dvh;
  }
}
@media (min-width: 768px) {
  .concept-sec3 {
    height: 80dvh;
  }
}
.concept-sec3__box {
  width: 100%;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .concept-sec3__box {
    width: 40%;
  }
}
.concept-sec3__text {
  width: 80%;
}
@media (min-width: 768px) {
  .concept-sec3__text {
    width: clamp(16.25rem, 7.218rem + 18.82vw, 25rem);
  }
}
.concept-sec3__img {
  flex: 1;
  height: 100%;
  overflow: hidden;
  -webkit-clip-path: ellipse(80% 100% at 10% 50%);
          clip-path: ellipse(80% 100% at 10% 50%);
}
.concept-sec3__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-sec3__img2 {
  width: 100%;
}
.concept-sec3__blank {
  height: 300px;
}

.service-sec1__box {
  gap: 20px;
}
.service-sec1__left {
  width: 100%;
  background-color: var(--bg1);
  border-bottom: var(--br) 1px solid;
}
@media (min-width: 992px) {
  .service-sec1__left {
    width: 40%;
    border-bottom: none;
    border-right: var(--br) 1px solid;
    background-color: var(--bg2);
  }
}
.service-sec1__right {
  width: 100%;
  background-color: var(--bg2);
}
@media (min-width: 992px) {
  .service-sec1__right {
    width: 60%;
  }
}
.service-sec1__img {
  width: 130px;
  height: 130px;
  border-radius: 20px;
}
.service-sec1__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-sec1__text {
  width: 100%;
}
@media (min-width: 576px) {
  .service-sec1__text {
    width: 75%;
  }
}

.gallery-sec1__img {
  width: 250px;
  border-radius: 20px;
}
.gallery-sec1__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 31, 31, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-img img {
  max-width: 100%;
  max-height: 100%;
}

.modal-img {
  position: relative;
  display: inline-block;
}

.modal-close {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10000;
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (min-width: 576px) {
  .modal-close {
    top: 23%;
  }
}

.menu__btn {
  gap: clamp(1.25rem, -1.331rem + 5.38vw, 3.75rem);
}
.menu__line {
  padding-top: 30px;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 576px) {
  .menu__line {
    flex-direction: row;
  }
}
.menu__line::after {
  content: "";
  position: absolute;
  background-color: var(--br);
  width: 100%;
  height: 1px;
  bottom: -15px;
}
.menu__cate {
  font-size: clamp(0.75rem, 0.657rem + 0.5vw, 1.125rem);
  text-align: center;
  font-weight: 700;
}
@media (min-width: 576px) {
  .menu__cate {
    text-align: left;
    font-weight: 500;
  }
}
.menu__title {
  font-size: clamp(0.813rem, 0.735rem + 0.41vw, 1.125rem);
  letter-spacing: normal;
  font-weight: 700;
}
@media (min-width: 576px) {
  .menu__title {
    font-weight: 500;
  }
}
.menu__p {
  font-size: clamp(0.813rem, 0.782rem + 0.17vw, 0.938rem);
  line-height: clamp(1.25rem, 1.173rem + 0.41vw, 1.563rem);
  letter-spacing: normal;
}

.menu-sec3 {
  background-color: var(--bg2);
}
@media (min-width: 576px) {
  .menu-sec3 {
    background-color: var(--bg1);
  }
}

.products__left {
  width: 100%;
  background-color: var(--bg2);
}
@media (min-width: 768px) {
  .products__left {
    width: 40%;
    border-right: var(--br) 1px solid;
    background-color: var(--bg2);
  }
}
.products__right {
  width: 100%;
  background-color: var(--bg2);
}
@media (min-width: 768px) {
  .products__right {
    width: 70%;
  }
}

.reserve-sec1__img {
  width: 250px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .reserve-sec1__img {
    width: clamp(11.25rem, 2.904rem + 13.46vw, 15.625rem);
  }
}
.reserve-sec1__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.reserve-sec2__left {
  width: 100%;
  border-bottom: var(--br) 1px solid;
  word-break: auto-phrase;
  overflow-wrap: normal;
}
@media (min-width: 992px) {
  .reserve-sec2__left {
    border-bottom: none;
    border-right: var(--br) 1px solid;
    width: 50%;
  }
}
.reserve-sec2__right {
  width: 100%;
  word-break: auto-phrase;
  overflow-wrap: normal;
}
@media (min-width: 992px) {
  .reserve-sec2__right {
    width: 50%;
  }
}

.info-sec1__img {
  border-radius: 20px;
}
.info-sec1__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.info-sec1__box {
  border: var(--br) 1px solid;
  border-radius: 20px;
  padding: 20px;
}

.info-sec2__title {
  width: 100px;
  text-align: center;
}
@media (min-width: 576px) {
  .info-sec2__title {
    text-align: left;
  }
}
.info-sec2__line {
  width: 100%;
  position: relative;
  margin-top: 30px;
}
@media (min-width: 576px) {
  .info-sec2__line {
    gap: clamp(6.25rem, -6.653rem + 26.88vw, 18.75rem);
  }
}
@media (min-width: 768px) {
  .info-sec2__line {
    width: 80%;
  }
}
.info-sec2__line::after {
  content: "";
  position: absolute;
  background-color: var(--br);
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -15px;
}
.info-sec2__line a:hover {
  color: var(--br);
}
.info-sec2__img-box {
  gap: 20px;
}
.info-sec2__img {
  border-radius: 20px;
}
.info-sec2__img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.webgene-item {
  position: relative;
  margin-bottom: 25px;
  font-weight: 500;
}
.webgene-item::after {
  content: "";
  position: absolute;
  background-color: var(--br);
  width: 100%;
  height: 1px;
  bottom: -5px;
}

.webgene-item a:hover {
  color: var(--br);
}

.webgene-pagination ul {
  display: flex;
  justify-content: center;
  margin-top: clamp(3.125rem, 2.619rem + 2.19vw, 4.688rem);
  gap: 20px;
  padding: 0;
}

.webgene-pagination a {
  display: inline-block;
  padding: 1px 25px;
  border: var(--br) 1px solid;
  color: #000;
  border-radius: 50px;
  text-align: center;
  display: inline-flex;
}
.webgene-pagination a:hover {
  color: var(--bg1);
  background-color: var(--br);
}

.newsdetail__h1 {
  position: relative;
  margin-bottom: 30px;
}
.newsdetail__h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--br);
  left: 0;
  bottom: -20px;
}
.newsdetail__box {
  border: var(--br) 1px solid;
}

.pagelink {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.pagelink a {
  padding: 10px 25px;
  border: var(--br) 1px solid;
  border-radius: 50px;
}
.pagelink a:hover {
  color: var(--bg1);
  background-color: var(--br);
}

.back-btn {
  padding: 1px 25px;
  border-radius: 50px;
  background-color: var(--br);
  color: var(--bg1);
  border: var(--br) 1px solid;
  margin-top: 15px;
  margin-bottom: 15px;
}
.back-btn:hover {
  background-color: var(--bg2);
  color: var(--br);
}

.reserve-btn {
  position: relative;
  background-color: var(--br);
  color: var(--bg1);
  padding: 15px 40px;
  border: var(--br) 1px solid;
  border-radius: 50px;
  width: 500px;
}
.reserve-btn:hover {
  background-color: var(--bg2);
  color: var(--br);
}
.reserve-btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url(../images/Arrow-big2.svg) no-repeat center/contain;
  transition: 0.3s;
}
.reserve-btn:hover::after {
  background: url(../images/Arrow-big3.svg) no-repeat center/contain;
}