@charset "utf-8";
/* ************************************************
*  TOPページ
* ************************************************ */

/* ローディング アニメーション後にmain-contentが表示される */
#main-content.hidden {
  display: none;
}
#main-content.show {
  display: block;
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    pointer-events: none;
  }
  100% {
    opacity: 1;
    pointer-events: auto;
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, #d57883, #e8c5c5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#loading.loaded {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#loading .loader {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* ロゴを中央に固定 */
#loading .loader img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70vw;
  max-width: none;
  transform: translate(-50%, -50%);
  filter: blur(20px);
  opacity: 1;
  animation: blurIn 0.8s ease forwards;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  transition: opacity 0.4s ease;
  
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}
@keyframes blurIn {
  0% {
    filter: blur(20px);
  }
  100% {
    filter: blur(0);
  }
}
/* 円の初期状態 */
#loading .expand-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  transition: none;
  z-index: 10;
}

#loading .expand-circle.expand {
  animation: expandCircle 0.4s ease-out forwards;
}

@keyframes expandCircle {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(10);
  }
  100% {
    transform: translate(-50%, -50%) scale(20);
    opacity: 1;
  }
}


/* メインビジュアル */
.page-top{
  position: relative;
}
.page-top .main-visual{
  padding: 10px;
}
.page-top .main-visual .inner{
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 0;
  box-sizing: border-box;
}
.page-top .grid-box{
  height: 70vh;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0px;
  box-sizing: border-box;
}
.page-top .grid-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  line-height: 0;
  position: relative;
  width: 100%; height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  border-radius: 5px;
}
.page-top .grid-item.show {
  opacity: 1;
  transform: translateY(0);
}
.page-top .grid-item img {
  transition: opacity 1s ease;
  opacity: 1;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-top .grid-item img.fade-out {
  opacity: 0;
}
.page-top .mv-catch {
  position: relative;
  height: 30vh;
  background: url('/wp-content/themes/laugh-corporate-wordpress/images/top/obi.png') no-repeat right center / cover;
  display: flex;
  align-items: center;
  margin-top: 10px;
  border-radius: 5px;
}
.page-top .obi_logo{
  position: absolute;
  height: 90%;
  bottom: 2%; right: 1%;
}
.page-top .catch-about {
  position: relative;
  z-index: 2;
  left: 8vw;
}
.page-top .catch-about .wrapper {
  height: 100vh;
  display: flex;
  align-items: flex-end;
}
.page-top .catch-about .mv-catch-text {
  position: sticky;
  bottom: 5.5rem;
  z-index: 10;
  text-align: center;
  max-width: 704px;
  width: 90%;
}
.page-top .catch-about .mv-catch-text img {
  max-height: 15vh;
  height: auto;
  width: auto;
}
@media screen and (max-width: 750px) {
  #loading .loader img {
    width: 250vw;
  }
  
  .page-top {
    padding-top: var(--header-height);
  }
  .page-top .main-visual{
    padding: 2.26vw;
  }
  .page-top .main-visual .inner {
    height: 100dvh;
    /* height: calc(var(--real-vh, 1vh) * 100 - var(--header-height)); */
  }
  .page-top .grid-item{
    aspect-ratio: 1 / 1;
  }
  .page-top .grid-box{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: calc(100dvh - var(--header-height) - 20vh);
    /* height: calc(var(--real-vh, 1vh) * 80); */
  }
  .page-top .mv-catch{
    height: 20vh;
    /* height: calc(var(--real-vh, 1vh) * 20); */
  }
  .page-top .obi_logo{
    height: 60%;
  }
  .page-top .catch-about{
    left: 0vw;
  }
  .page-top .catch-about .wrapper {
    justify-content: center;
    height: calc(100dvh / 1.6);
  }
  .page-top .catch-about .mv-catch-text{
    width: 80%;
    bottom: 4vh;
  }
}

/* aboutus */
.page-top .aboutus{
  position: relative;
  padding-top: 124px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 310px;
}
.page-top .aboutus .section-title{
  position: absolute;
  top: 35%;
  left: 0;
  width: 100vw;
  transform: translateY(-50%);
  white-space: nowrap;
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 100;
  color: #BEAEA8;
  font-size: 16rem;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.page-top .aboutus .section-title span {
  display: inline-block;
  padding-right: 50px;
  animation: loopScroll 40s linear infinite;
}
.page-top .aboutus .section-title img{
  max-width: 3193px;
  width: 250rem;
}
.page-top .aboutus-content{
  width: 90%;
  max-width: 1200px;
  margin: 300px auto 0;
}
.page-top .aboutus-content .inner{
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-top .aboutus-content .text-box{
  padding-top: 150px;
  width: 48%;
  max-width: 660px;
}
.page-top .aboutus-content .text-box .text{
  margin-bottom: 100px;
  line-height: 1.6;
  font-size: clamp(1.4rem, 1vw + 0.5rem, var(--fontSizeBasic));
}
.page-top .aboutus-content .text-box .text .sub-title{
  color: var(--colorAccent);
  font-size: 5.6rem;
  font-family: var(--fontEnglishInter);
  font-weight: 300;
}
.page-top .aboutus-content .text-box .text p{
  margin-bottom: 30px;
}
.page-top .aboutus-content .text-box .text p:last-child{
  margin-bottom: 0px;
}
.page-top .aboutus-content .btn-area{
  text-align: left;
}
.page-top .aboutus-content .btn-area .btn-link{
  color: var(--colorAccent);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.page-top .aboutus-content .btn-area .icon {
    position: relative;
    display: inline-block;
    width: fit-content;
}
.page-top .aboutus-content .btn-area .icon .bg {
    display: block;
}
.page-top .aboutus-content .btn-area .icon .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.page-top .aboutus-content .btn-area .close {
    display: block;
    font-size: 2.6rem;
    border-bottom: 2px solid var(--colorAccent);
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 10px;
    letter-spacing: 2px;
    font-family: var(--fontEnglishInter);
}
.page-top .aboutus-content .photo-box{
  display: flex;
  gap: 35px;
  position: relative;
  max-width: 477px;
  width: 48%;
  margin: 0;
  padding: 0;
}
.page-top .aboutus-content .photo-box li{
  width: 50%;
}
.page-top .aboutus-content .photo-box .photo01{
  width: 100%;
}
.page-top .aboutus-content .photo-box .photo02{
  width: 100%;
  position: relative;
  top: 40%;
  top: calc(50% - 70px);
}
@media screen and (max-width: 750px) {
  .page-top .aboutus {
    padding-top: calc(113px / 2);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: calc(200px / 2);
  }
  .page-top .aboutus .section-title{
    font-size: clamp(1.4rem, 1vw + 0.5rem, var(--fontSizeBasic));
    top: 18%;
  }
  .page-top .aboutus .section-title img{
    width: 150rem;
  }
  .page-top .aboutus-content{
    margin: calc(82px + 133px / 2) auto 0;
  }
  .page-top .aboutus-content .inner{
    flex-direction: column-reverse;
    width: 90%;
    margin: 0 auto;
  }
  .page-top .aboutus-content .text-box{
    width: 100%;
    text-align: left;
    padding-top: 0;
  }
  .page-top .aboutus-content .text-box .text{
    margin-bottom: 0;
    margin-top: 20.4vw;
    line-height: 1.9;
    letter-spacing: 1.2px;
    font-size: clamp(1.5rem, 4vw, 3rem);
  }
  .page-top .aboutus-content .text-box .text .sub-title{
    font-size: clamp(2.3rem, 6.13vw, 4.6rem);
  }
  .page-top .aboutus-content .text-box .text p{
    margin-bottom: 5.3vw;
  }
  .page-top .aboutus-content .photo-box{
    width: 100%;
    margin: 0 auto;
  }
  .page-top .aboutus-content .photo-box .photo02{
    top: calc(25%);
  }
  .page-top .aboutus-content .btn-area{
    position: relative;
    z-index: 1;
    margin-top: 12.4vw;
  }
  .page-top .aboutus-content .btn-area .btn-link{
    color: var(--colorAccent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
  }
  .page-top .aboutus-content .btn-area .icon {
    position: relative;
    display: inline-block;
    width: 9.7vw;
  }
  .page-top .aboutus-content .btn-area .icon .bg {
    display: block;
  }
  .page-top .aboutus-content .btn-area .icon .arrow {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-top .aboutus-content .btn-area .close {
    display: block;
    border-bottom: 2px solid var(--colorAccent);
    font-size: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 2vw;
    padding-left: calc(10px / 2);
    padding-right: calc(10px / 2);
    margin-left: 10px;
    letter-spacing: 2px;
    font-family: var(--fontEnglishInter);
  }
}

/* Highlights */
.page-top .highlights{
  position: relative;
  background: #F8F5F5;
}
.page-top .highlights .container {
  position: relative;
  padding-top: 200px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 200px;
}
.page-top .highlights .container:after {
  content: "";
  display: block;
  width: calc(100%);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #F5F4F2;
  background: #ffffff;
  border-bottom-right-radius: 250px;
}
.page-top .highlights .inner{
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-top .highlights .section-title {
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 7rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
}
.page-top .highlights .section-title img{
  max-width: 326px;
  width: 50%;
}
.page-top .highlights .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 20px;
  width: 25%; height: 2px;
}
.page-top .highlights .section-subtitle {
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.page-top .highlights .highlight-list{
  margin: 80px auto 0px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 40px;
  gap: 40px;
}
.page-top .highlights .highlight-item {
  text-align: center;
  width: 33.33%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-top .highlights .highlight-image{
  width: 100%;
  max-width: 173px;
  margin: 0 auto 30px;
}
.page-top .highlights .highlight-image img{
  width: 100%;
}
.page-top .highlights .highlight-title{
  text-align: left;
  line-height: 1.6;
  font-size: clamp(1.4rem, 5vw + 0.5rem, var(--fontSizeBasic));
}
.page-top .highlights .highlight-note{
  display: block;
  margin-top: 60px;
  text-align: left;
  line-height: 1.5;
  font-size: clamp(1rem, 5vw + 0.5rem, 1.2rem);
  position: relative;
  z-index: 1;
  padding: 0px 4vw;
}
.page-top .highlights .scroll {
    position: absolute;
    font-size: clamp(1.4rem, 5vw + 0.5rem, var(--fontSizeBasic));
    font-weight: 400;
    z-index: 1;
    letter-spacing: 2px;
    text-align: center;
    left: 0; right: 0; bottom: -110px;
    margin: auto;
    line-height: 1.7;
}
.page-top .highlights .scrolldown {
  position: absolute;
  top: -80px; left: 0; right: 0;
  width: 1px;
  height: 60px;
  margin: 0 auto;
  overflow: hidden;
}
.page-top .highlights .scroll-line {
  width: 100%;
  height: 100%;
  background: black;
  transform: translateY(-100%);
  animation: scrollhighlight 2.2s cubic-bezier(0.76, 0, 0.3, 1) infinite;
}
@keyframes scrollhighlight {
  0% {
    transform: translateY(-100%);
  }
  75% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}
@media screen and (max-width: 750px) {
  .page-top .highlights .container{
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 22vw;
  }
  .page-top .highlights .inner{
    width: 85%;
  }
  .page-top .highlights .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  }
  .page-top .highlights .section-title img{
    width: 50%;
  }
  .page-top .highlights .section-title::after{
    height: 1px;
  }
  .page-top .highlights .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .page-top .highlights .box{
    /* -ms-overflow-style: none; */
    margin-right: calc(50% - 50vw);
    /* overflow-x: auto; */
    padding-right: calc(50vw - 50%);
    /* scrollbar-width: none; */
  }
  .page-top .highlights .highlight-list{
    /* -webkit-column-gap: min(32px, 7.44vw);
    -moz-column-gap: min(32px, 7.44vw);
    column-gap: min(32px, 7.44vw);
    margin-top: 32px;
    row-gap: min(32px, 7.44vw);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0; */
    column-gap: 0;
    margin-top: 13.2vw;
    row-gap: 6.5vw;
    width: 100%;
    display: grid;
    padding: 0;
  }
  .page-top .highlights .highlight-item{
    flex-direction: unset;
    width: 100%;
    column-gap: 5.3vw;
    flex: 0 0 auto;
  }
  .page-top .highlights .highlight-image{
    width: 40%;
    max-width: 100%;
    width: 23vw;
    margin: 0;
  }
  .page-top .highlights .highlight-title{
    width: 60%;
    width: min(212px, 49.3vw);
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  }
  .page-top .highlights .highlight-note{
    margin-top: 5.3vw;
    font-size: clamp(1.1rem, 2.6vw, 2rem);
    padding: 0;
  }
  .page-top .highlights .container:after{
    border-bottom-right-radius: 33.3vw;
  }
  .page-top .highlights .scroll{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
    width: 85%;
    bottom: -18.73vw;
  }
}

/* CEO Message */
.page-top .ceo-message{
  position: relative;
  background: #F8F5F5;
}
.page-top .ceo-message .container{
  padding: 0 20px;
  padding-top: 376px;
  padding-bottom: 265px;
}
.page-top .ceo-message .inner{
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.page-top .ceo-message-content{
  position: relative;
}
.page-top .ceo-message .ceo-text{
  width: 100%;
}
.page-top .ceo-text .section-title {
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 7rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
}
.page-top .ceo-text .section-title img{
  max-width: 484px;
  width: 50%;
}
.page-top .ceo-text .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 20px;
  width: 25%; height: 2px;
}
.page-top .ceo-text .section-subtitle {
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.page-top .ceo-message .ceo-message-body{
  margin-top: 90px;
  margin-bottom: 60px;
  width: 50%;
}
.page-top .ceo-message .ceo-message-body p{
  margin-bottom: 30px;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: clamp(1.4rem, 1vw + 0.5rem, var(--fontSizeBasic));
  font-weight: 400;
  letter-spacing: 2px;
}
.page-top .ceo-message .ceo-message-body p:last-child{
  margin-bottom: 0px;
}
.page-top .ceo-message .ceo-message-content .btn-link{
  color: var(--colorAccent);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.page-top .ceo-message .ceo-message-content .close{
  font-size: 2.6rem;
  border-bottom: 1px solid var(--colorAccent);
  padding-bottom: 5px;
  margin-left: 15px;
}
.page-top .ceo-message .ceo-message-content .icon {
    position: relative;
    display: inline-block;
    width: fit-content;
}
.page-top .ceo-message .ceo-message-content .icon .bg {
    display: block;
}
/* .ceo-message-content .icon .arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} */
.page-top .ceo-message .ceo-photo{
  width: 50%;
  max-width: 575px;
  position: absolute;
  right: 0; top: 0;
}
.page-top .ceo-message .ceo-photo figure{
  margin: 0;
}
.page-top .ceo-message .ceo-photo img{
  width: 100%;
  object-fit: cover;
}

/*** モーダル ***/
.page-top .ceo-modal .modal-content{
  padding: 5vw 5vw 3vw 5vw;
  box-sizing: border-box;
  overflow-y: auto;
  max-height: 80vh;
}
.page-top .ceo-modal .modal-header{
  width: 100%;
  margin-bottom: 70px;
}
.page-top .ceo-modal .section-title {
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 6rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(100%);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 4px;
}
.page-top .ceo-modal .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 20px;
  width: 35%; height: 2px;
}
.page-top .ceo-modal .section-subtitle {
  margin-top: 10px;
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.4rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
}
.page-top .ceo-modal .modal-body{
  display: flex;
  gap: 55px;
  flex-direction: row-reverse;
}
.page-top .ceo-modal .text-body{
  line-height: 1.6;
  font-size: clamp(1.6rem, 1vw + 0.5rem, var(--fontSizeBasic));
  font-weight: 400;
  letter-spacing: 1px;
}
.page-top .ceo-modal .text-body p{
  margin-bottom: 32px;
}
.page-top .ceo-modal .text-body p:last-child{
  margin-bottom: 0px;
}
.page-top .ceo-modal .text-body-info{
  margin-top: 50px;
}
.page-top .ceo-modal .photo-body{
  max-width: 330px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .page-top .ceo-message .container {
    padding: 0;
    padding-top: 39vw;
    padding-bottom: 38.2vw;
  }
  .page-top .ceo-message .inner{
    width: 85%;
  }
  .page-top .ceo-text .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  }
  .page-top .ceo-text .section-title img{
    width: 65%;
  }
  .page-top .ceo-text .section-title::after{
    height: 1px;
  }
  .page-top .ceo-text .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .page-top .ceo-message .ceo-photo{
    width: 100%;
    max-width: 575px;
    position: static;
    margin-top: 10.1vw;
  }
  .page-top .ceo-message .ceo-photo a:hover,
  .page-top .ceo-message .ceo-photo a img:hover{
    opacity: 1;
  }
  .page-top .ceo-message .ceo-message-body{
    margin-top: 6.8vw;
    margin-bottom: 5.8vw;
    width: 100%;
  }
  .page-top .ceo-message .ceo-message-body p{
    margin-bottom: 2.6vw;
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  }
  .page-top .ceo-message .ceo-message-content .btn-link{
    color: var(--colorAccent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .page-top .ceo-message .ceo-message-content .icon {
    position: relative;
    display: inline-block;
    width: 6.4vw;
  }
  .page-top .ceo-message .ceo-message-content .icon .bg {
    display: block;
  }
  .page-top .ceo-message .ceo-message-content .icon .arrow {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-top .ceo-message .ceo-message-content .close {
    display: block;
    border-bottom: 2px solid var(--colorAccent);
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
    padding-bottom: 2vw;
    padding-left: calc(10px / 2);
    padding-right: calc(10px / 2);
    margin-left: 10px;
    letter-spacing: 2px;
    font-family: var(--fontEnglishInter);
  }

  .page-top .ceo-modal .modal-content{
    padding: calc(44px / 2) calc(50px / 2);
  }
  .page-top .ceo-modal .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
    letter-spacing: 2px;
  }
  .page-top .ceo-modal .section-title::after{
    height: 1px;
    width: 20%;
  }
  .page-top .ceo-modal .section-subtitle{
    width: 100%;
    font-size: calc(2.6rem / 2);
  }
  .page-top .ceo-modal .modal-header {
    margin-bottom: calc(50px / 2);
  }
  .page-top .ceo-modal .modal-body{
    display: block;
  }
  .page-top .ceo-modal .text-body{
    margin-top: calc(34px / 2);
    font-size: calc(2.4rem / 2);
  }
  .page-top .ceo-modal .text-body p{
    margin-bottom: calc(30px / 2);
  }
  .page-top .ceo-modal .text-body-info {
    margin-top: calc(50px / 2);
  }
}

/* Member Section */
.page-top .member {
  background: #F8F5F5;
}
.page-top .member .container{
  position: relative;
  padding: 0 20px 100px 20px;
}
.page-top .member .container:after {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #EFE1DD 0.7%, #E0A2A3 70.48%, #D06268 100%);
  border-top-left-radius: 250px;
  z-index: 0;
}
.page-top .member .inner{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.page-top .member .section-title {
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 7rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
}
.page-top .member .section-title img{
  max-width: 274px;
  width: 50%;
}
.page-top .member .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 20px;
  width: 25%; height: 2px;
}
.page-top .member .section-subtitle {
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.page-top .member .member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 60px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 100px auto 0;
  max-width: 1200px;
}
.page-top .member .member-card {
  width: calc(33.333% - 40px); /* 3列の計算 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.page-top .member .member-card:nth-child(3n+1) {
  margin-top: 0px;
}
.page-top .member .member-card:nth-child(3n+2) {
  margin-top: -80px;
}
.page-top .member .member-card:nth-child(3n+3) {
  margin-top: -160px;
}
.page-top .member .member-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.page-top .member .member-image .photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.page-top .member .member-image .viewmore-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px 0px 10px 0px;
  padding: 6px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 314px;
  width: 45%;
  box-sizing: border-box;
}
.page-top .member .member-image .viewmore-wrap .view {
  width: auto;
  width: 100%;
  display: block;
}

.page-top .member .member-card a:hover .member-image .photo {
  transform: scale(1.05);
}
.page-top .member .member-message {
  font-size: clamp(1.4rem, 1vw + 0.5rem, var(--fontSizeBasic));
  margin: 20px 0 20px;
  line-height: 1.5;
  text-align: left;
}
.page-top .member .btn-area{
  margin: 30px auto 0;
}
.page-top .member .btn-area .btn-link{
  color: var(--colorAccent);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.page-top .member .btn-area .icon {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.page-top .member .btn-area .icon .bg {
  display: block;
}
.page-top .member .btn-area .icon .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-top .member .btn-area .close {
  display: block;
  font-size: 2.6rem;
  border-bottom: 2px solid var(--colorAccent);
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  letter-spacing: 2px;
  font-family: var(--fontEnglishInter);
}

/* 矢印のスタイル */
.swiper-button-prev.member-prev,
.swiper-button-next.member-next {
  display: none;
}
@media screen and (max-width: 750px) {
  .page-top .member{
    overflow: hidden;
    position: relative;
  }
  .page-top .member .container{
    padding: 0 0 calc(138px / 2) 0;
  }
  .page-top .member .container:after {
    bottom: -1px;
    border-top-left-radius: 33.3vw;
    height: 60%;
  }
  .page-top .member .inner{
    width: 85%;
  }
  .page-top .member .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
    letter-spacing: 2px;
  }
  .page-top .member .section-title img{
    width: 40%;
  }
  .page-top .member .section-title::after{
    height: 1px;
    width: 20%;
  }
  .page-top .member .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .page-top .member .member-image .viewmore-wrap {
    width: 45%;
    border-radius: 6px 0px 6px 0px;
  }
  .page-top .member .btn-area{
    position: relative;
    z-index: 1;
    margin-top: calc(67px / 2);
  }
  .page-top .member .btn-area .btn-link{
    color: var(--colorAccent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
  }
  .page-top .member .btn-area .icon {
    position: relative;
    display: inline-block;
    width: 9.7vw;
  }
  .page-top .member .btn-area .icon .bg {
    display: block;
  }
  .page-top .member .btn-area .icon .arrow {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-top .member .btn-area .close {
    display: block;
    border-bottom: 2px solid var(--colorAccent);
    font-size: clamp(1.5rem, 3.6vw, 3rem);
    padding-bottom: 2vw;
    padding-left: calc(10px / 2);
    padding-right: calc(10px / 2);
    margin-left: 10px;
    letter-spacing: 2px;
    font-family: var(--fontEnglishInter);
  }
  
  .page-top .member .member-swiper {
    overflow: visible;
    position: relative;
  }
  .page-top .member .swiper-wrapper {
    overflow: visible;
  }
  .page-top .member .member-list{
    margin: 8.6vw auto 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0px;
    padding-right: 8%;
  }
  .page-top .member .member-card{
    width: 70vw;
    max-width: none;
    flex-shrink: 0;
  }
  .page-top .member .member-card:nth-child(3n+2),
  .page-top .member .member-card:nth-child(3n+3){
    margin-top: 0px;
  }
  .page-top .member .member-image{
    border-radius: 6px;
  }
  .page-top .member .member-message{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
    margin: 4.1vw 0 4.1vw;
  }
  .page-top .member .member-info{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  }
  /* 矢印のスタイル */
  .swiper-button-prev.member-prev,
  .swiper-button-next.member-next {
    display: block;
  }
  /* 矢印のスタイル */
  .page-top .member .member-prev,
  .page-top .member .member-next {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    text-indent: -9999px;
    top: 40%;
    width: 11.8vw;
  }
  .page-top .member .member-prev img,
  .page-top .member .member-next img {
    width: 100%;
    height: auto;
    display: block;
  }
  .page-top .member .member-prev {
    left: 0px;
    transform: rotate(180deg);
  }
  .page-top .member .member-next {
    right: 0vw;
  }
  .page-top .member .swiper-button-disabled{
    opacity: 0;
  }
}

/* Service Section */
.page-top .service {
  background: #ffffff;
  position: relative;
}
.page-top .service:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #EFE1DD 0.7%, #E0A2A3 70.48%, #D06268 100%);
  border-bottom-right-radius: 250px;
  z-index: 0;
}
.page-top .service .container{
  position: relative;
  padding-right: 20px;
  max-width: 1920px;
  overflow: hidden;
}
.page-top .service .container::before {
  content: "";
  position: absolute;
  width: 1200px;
  height: 1200px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #201715;
  z-index: 1;
  top: -45px;
  left: -85rem;
  left: calc(-1 * ((82rem - ((100vw - 1920px) / 2) - 47px)));
  min-width: 1140px;
  /* padding-left: calc((100% - 1200px) / 2); */
  min-height: 1140px;
}
@media screen and (max-width: 1215px) {
  .page-top .service .container::before {
    left: -112.4rem;
  }
}
@media screen and (max-width: 1040px) {
  .page-top .service .container::before {
    left: -200%;
  }
}

.page-top .service .inner{
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding: 100px 0px 200px 0px;
  max-width: 1200px;
}
.page-top .service .inner .title-area{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.page-top .service .section-title {
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 7rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 2;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
}
.page-top .service .section-title img{
  max-width: 251px;
  width: 50%;
}
.page-top .service .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 20px;
  width: 25%; height: 2px;
}
.page-top .service .section-subtitle {
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.page-top .service-content {
  position: relative;
  margin-top: 100px;
  z-index: 1;
}
.page-top .service-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 1;
  flex-direction: row-reverse;
}
.page-top .service-left {
  flex: 1;
  width: 50%;
}
.page-top .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 22.4rem;
  padding-left: 0;
  z-index: 2;
  position: relative;
}
.page-top .service-list li {
  margin-bottom: 50px;
  line-height: 1.6;
  cursor: pointer;
}
.page-top .service-list .box{
  display: flex;
  align-items: center;
  position: relative;
}
.page-top .service-list .box:before {
  content: "";
  min-width: 15px;
  min-height: 15px;
  background-color: rgb(106, 106, 106);
  margin-right: 30px;
  border-radius: 50%;
  transition: 250ms ease-out;
}
.page-top .service-list .box.active:before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: rgb(208, 18, 28);
  border-radius: 50%;
}
.page-top .service-list .title {
  opacity: 0.6;
  font-size: clamp(2.5rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 1px;
  max-width: 360px;
  line-height: 1;
}
.page-top .service-list .title .mini{
  opacity: 0.6;
  font-size: clamp(1.6rem, 1vw + 0.5rem, 2rem);
  padding-left: 20px;
  font-family: 'Noto Sans JP', 'Cabinet Grotesk', sans-serif;
}
.page-top .service-list .lead{
  margin-top: 10px;
  opacity: 0.6;
  font-size: clamp(1.3rem, 1vw + 0.5rem, 1.4rem);
  letter-spacing: 1px;
  max-width: 360px;
  padding-left: 46px;
  line-height: 1.7;
}
.page-top .service-right {
  flex: 1;
  min-width: 280px;
}
.page-top .service-right img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.page-top .service-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.page-top .service-img.active {
  opacity: 1;
  pointer-events: auto;
}
.page-top .service-right {
  position: relative;
  min-height: 515px;
  cursor: pointer;
}
.page-top .service-list li:nth-child(1) {
  padding-left: 15px;
}
.page-top .service-list li:nth-child(1) .box:before{
  margin-right: 60px;
}
.page-top .service-list li:nth-child(1) .lead{
  padding-left: 0px;
  margin-left: 100px;
}
.page-top .service-list li:nth-child(2) {
  padding-left: 66px;
}
.page-top .service-list li:nth-child(2) .box:before{
  margin-right: 60px;
}
.page-top .service-list li:nth-child(2) .lead{
  padding-left: 15px;
  margin-left: 80px;
}
.page-top .service-list li:nth-child(3) {
  padding-left: 67px;
}
.page-top .service-list li:nth-child(3) .box:before{
  margin-right: 60px;
}
.page-top .service-list li:nth-child(3) .lead{
  padding-left: 15px;
  margin-left: 80px;
}
.page-top .service-list li:nth-child(4) {
  padding-left: 28px;
}
.page-top .service-list li:nth-child(4) .box:before{
  margin-right: 50px;
}
.page-top .service-list li:nth-child(4) .lead{
  padding-left: 15px;
  margin-left: 70px;
}
.page-top .service-list li.active .box:before{
  width: 18px;
  height: 18px;
  background-color: rgb(208 98 104);
}
.page-top .service-list li.active .title,
.page-top .service-list li.active .lead,
.page-top .service-list li.active .title .mini{
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .page-top .service{
    padding-top: 18.4vw;
    background: transparent;
  }
  .page-top .service .container::before{
    width: 114.13vw;
    height: auto;
    border: 1px solid #201715;
    top: 3vw;
    margin: auto;
    left: -91.2vw;
    min-width: auto;
    min-height: auto;
  }
  .page-top .service .inner{
    width: 85%;
    padding: 0px 0px 29.8vw 0px;
  }
  .page-top .service:after{
    border-bottom-right-radius: 33.3vw;
  }
  .page-top .service .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
    letter-spacing: 2px;
  }
  .page-top .service .section-title img{
    width: 40%;
  }
  .page-top .service .section-title::after{
    height: 1px;
  }
  .page-top .service .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .page-top .service-right .sp-content-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }
  .page-top .service-right .sp-content-area.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }
  .page-top .service-content{
    margin-top: calc(124px / 2);
    position: static;
  }
  .page-top .service-inner{
    gap: 20px;
    position: static;
  }
  .page-top .service-right{
    min-height: 280px;
    width: 75%;
    min-width: 40%;
  }
  .page-top .service-img{
    position: relative;
    opacity: 1;
    display: block;
  }
  .page-top .sp-content-area .box{
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 3.7vw;
  }
  .page-top .sp-content-area .title {
    font-size: clamp(2.3rem, 6.1vw, 4.6rem);
    font-family: var(--fontEnglishInter);
    font-weight: 400;
    font-stretch: 100%;
    font-style: normal;
    font-weight: normal;
    letter-spacing: 1px;
    max-width: 360px;
    line-height: 1;
  }
  .page-top .sp-content-area .title .mini {
    font-size: clamp(1.1rem, 2.9vw, 2.2rem);
    padding-left: 2.6vw;
    font-family: 'Noto Sans JP', 'Cabinet Grotesk', sans-serif;
  }
  .page-top .sp-content-area .lead {
    margin-top: 10px;
    font-size: clamp(1.2rem, 2.9vw, 2.2rem);
    letter-spacing: 1px;
    line-height: 1.7;
  }

  .page-top .service-left{
    width: 25%;
    flex: none;
  }
  .page-top .service-list{
    position: static;
  }
  .page-top .service-list .box{
    position: static;
  }
  .page-top .service-list .box:before{
    margin-right: 0;
    width: calc(14px / 2);
    height: calc(14px / 2);
  }
  .page-top .service-list li.active .box:before{
    width: calc(16px / 2);
    height: calc(16px / 2);
  }
  .page-top .service-list li{
    margin-bottom: 50px;
  }
  .page-top .service-list li:nth-child(1){
    padding-left: 0px;
  }
  .page-top .service-list li:nth-child(2){
    padding-left: 0px;
  }
  .page-top .service-list li:nth-child(3){
    padding-left: 0px;
  }
  .page-top .service-list li:nth-child(4){
    padding-left: 0px;
  }
  .page-top .service-list li:nth-child(1) .box:before{
    margin-right: 0;
    left: 7.8vw;
    position: absolute;
    top: 32vw;
  }
  .page-top .service-list li:nth-child(2) .box:before {
    margin-right: 0;
    left: 13.8vw;
    position: absolute;
    top: 50vw;
  }
  .page-top .service-list li:nth-child(3) .box:before{
    margin-right: 0;
    left: 13.2vw;
    position: absolute;
    top: 70vw;
  }
  .page-top .service-list li:nth-child(4) .box:before{
    margin-right: 0;
    left: 7.5vw;
    position: absolute;
    top: 86vw;
  }
  .page-top .service-list .title,
  .page-top .service-list .lead{
    display: none;
  }
  .service-img {
    display: none;
  }
  .service-img.active {
    display: block;
  }
}

/* イントロダクション */
.page-top .introduction{
  position: relative;
  background: #ffffff;
  padding-top: 230px;
  padding-bottom: 180px;
  padding-left: 20px;
  padding-right: 20px;
}
.page-top .introduction .inner{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-top .introduction .inner .section-title{
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 7rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 4px;
}
.page-top .introduction .inner .section-title img{
  max-width: 440px;
  width: 50%;
}
.page-top .introduction .inner .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 50px;
  width: 40%; height: 2px;
}
.page-top .introduction .inner .section-subtitle{
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.page-top .introduction-list {
  display: flex;
  flex-wrap: wrap;
  gap: 136px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 100px auto 0;
  max-width: 1200px;
  z-index: 1;
  position: relative;
}
.page-top .introduction-card {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  max-width: 500px;
}
.page-top .introduction-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.page-top .introduction-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.page-top .introduction-card a:hover .introduction-image img {
  transform: scale(1.05);
}
.page-top .introduction .box{
  position: relative;
}
.page-top .introduction .loop_text {
  position: absolute;
  top: 65%;
  left: 0;
  width: 100vw;
  transform: translateY(-65%);
  white-space: nowrap;
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 100;
  color: #ECE7E6;
  font-size: 16rem;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-top .introduction .loop_text img{
    max-width: 1920px;
    width: 150rem;
}
.page-top .introduction .loop_text span {
  display: inline-block;
  padding-right: 50px;
  animation: loopScroll 30s linear infinite;
}
@keyframes loopScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* モーダル */
.survey-modal .modal-content,
.event-modal .modal-content {
  overflow-y: auto;
  max-height: 90vh;
}
.survey-modal .box,
.event-modal .box{
  padding: 2.5vw 3vw 4vw 3vw;
  box-sizing: border-box;
}
.survey-modal .modal-title,
.event-modal .modal-title {
  font-size: clamp(2.2rem, 5vw + 0.5rem, 2.8rem);
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 3vw 1vw 3vw 1vw;
}
.survey-modal .modal-lead,
.event-modal .modal-lead {
  font-size: clamp(1.5rem, 5vw + 0.5rem, 1.6rem);
  line-height: 1.8;
  text-align: justify;
  width: 80%;
  margin: 0 auto 60px;
  letter-spacing: 2px;
}
/* 矢印のスタイル */
.swiper-button-prev.introduction-prev,
.swiper-button-next.introduction-next {
  display: none;
}
@media screen and (max-width: 750px) {
  .page-top .introduction{
    overflow: hidden;
    padding: calc(185px / 2) 0px calc(193px / 2) 0px;
  }
  .page-top .introduction .inner {
    width: 85%;
  }
  .page-top .introduction .inner .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  }
  .page-top .introduction .inner .section-title img{
    width: 60%;
  }
  .page-top .introduction .inner .section-title::after{
    height: 1px;
  }
  .page-top .introduction .inner .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .page-top .introduction .introduction-swiper{
    overflow: visible;
    position: relative;
  }
  .page-top .introduction-swiper .swiper-wrapper {
    overflow: visible;
  }
  .page-top .introduction-list {
    margin: calc(65px / 2) auto 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0px;
    padding-right: 8%;
  }
  .page-top .introduction-card {
    width: 70vw;
    max-width: none;
    flex-shrink: 0;
  }
  .introduction .swiper-button-prev.introduction-prev,
  .introduction .swiper-button-next.introduction-next {
    display: block;
  }
  .introduction .swiper-button-next::after,
  .introduction .swiper-button-prev::after {
    content: none !important;
  }
  .page-top .introduction .introduction-image{
    border-radius: 6px;
  }
  /* 矢印のスタイル */
  .page-top .introduction .introduction-prev,
  .page-top .introduction .introduction-next {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    text-indent: -9999px;
    top: 45%;
    width: 11.3vw;
  }
  .page-top .introduction .introduction-prev img,
  .page-top .introduction .introduction-next img {
    width: 100%;
    height: auto;
    display: block;
  }
  .page-top .introduction .introduction-prev {
    left: 0px;
    transform: rotate(180deg);
  }
  .page-top .introduction .introduction-next {
    right: 0;
  }
  .page-top .introduction .swiper-button-disabled{
    opacity: 0;
  }
  .page-top .introduction .loop_text {
    top: 60%;
    font-size: calc(14rem / 2);
  }
  .page-top .introduction .loop_text img{
    width: 100rem;
  }
  .page-top .introduction-modal .box{
    padding: 0;
  }
  .survey-modal .modal-title,
  .event-modal .modal-title{
    font-size: clamp(1.7rem, 4.5vw, 3.4rem);
    padding: 6.2vw 2.6vw 5.3vw 2.6vw;
    font-weight: 500;
    width: 85%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .survey-modal .modal-lead,
  .event-modal .modal-lead{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
    width: 85%;
    margin: 0 auto 3.3vw;
  }
  /* モーダル */
  .survey-modal .box,
  .event-modal .box{
    padding: 0;
  }
}


/* ニュース */
.page-top .news{
  position: relative;
  background: #ffffff;
  padding-top: 150px;
  padding-bottom: 280px;
  padding-left: 20px;
  padding-right: 20px;
}
.page-top .news .inner{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
.page-top .news .inner .section-title{
  display: flex;
  align-items: center;
  font-size: clamp(5.5rem, 5vw + 0.5rem, 8rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 4px;
}
.page-top .news .inner .section-title img{
  max-width: 167px;
  width: 40%;
}
.page-top .news .inner .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 50px;
  width: 40%; height: 2px;
}
.page-top .news .inner .section-subtitle{
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.4rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.page-top .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 136px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 100px auto 0;
  max-width: 1200px;
  z-index: 1;
  position: relative;
}
.page-top .news-card {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  max-width: 500px;
}
.page-top .news-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.page-top .news-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.page-top .news-card a:hover .news-image img {
  transform: scale(1.05);
}
.page-top .news .box{
  position: relative;
}
.page-top .news .news-swiper{
  width: 100%;
  box-sizing: border-box;
}
.page-top .news .loop_text {
  position: absolute;
  top: 53%;
  left: 0;
  width: 100vw;
  transform: translateY(-60%);
  white-space: nowrap;
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  font-weight: 100;
  color: #ECE7E6;
  font-size: 16rem;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-top .news .loop_text span {
  display: inline-block;
  padding-right: 50px;
  animation: loopScroll 20s linear infinite;
}
.page-top .news .loop_text img{
  max-width: 1920px;
  width: 100rem;
}
@keyframes loopScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* モーダル */
.page-top .news-modal .modal-content {
  overflow-y: auto;
  max-height: 90vh;
}
.page-top .news-modal .box {
  padding: 2.5vw 3vw 4vw 3vw;
  box-sizing: border-box;
}
.page-top .news-modal .modal-title {
  font-size: clamp(2.2rem, 5vw + 0.5rem, 2.8rem);
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
  padding: 3vw 1vw 3vw 1vw;
}
.page-top .news-modal .modal-lead {
  font-size: clamp(1.5rem, 5vw + 0.5rem, 1.6rem);
  line-height: 1.8;
  text-align: justify;
  width: 80%;
  margin: 0 auto 60px;
  letter-spacing: 1px;
}
.page-top .news-modal .modal-lead02 {
  font-size: clamp(1.5rem, 5vw + 0.5rem, 1.6rem);
  line-height: 1.8;
  text-align: justify;
  width: 80%;
  margin: 0 auto 15px;
  letter-spacing: 2px;
}
.page-top .news-modal .modal-lead-mini{
  font-size: clamp(1.2rem, 5vw + 0.5rem, 1.4rem);
  line-height: 1.8;
  text-align: justify;
  width: 80%;
  margin: 0 auto 15px;
  letter-spacing: 2px;
}
.page-top .modal-btn-area{
  max-width: 518px;
  width: 60%;
  margin: 40px auto 0;
}
.page-top .modal-btn-area a{
  display: flex;
  width: 100%;
  background: #F8F5F5;
  align-items: center;
  justify-content: center;
  padding: clamp(15px, 2vw + 0.5rem, 20px) clamp(20px, 2vw + 0.5rem, 30px);
  box-sizing: border-box;
  border-radius: 10px;
}
.page-top .modal-btn-area a .text{
  font-size: clamp(1.6rem, 5vw + 0.5rem, 1.8rem);
  text-align: center;
  color: var(--colorAccent);
  margin-right: 30px;
}
.page-top .modal-btn-area .icon {
  position: relative;
  display: inline-block;
  width: fit-content;
  width: 53px;
}
.page-top .modal-btn-area .icon .bg {
  display: block;
}
.page-top .modal-btn-area .icon .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
}
/* 矢印のスタイル */
.swiper-button-prev.news-prev,
.swiper-button-next.news-next {
  display: none;
}
@media screen and (max-width: 750px) {
  .page-top .news{
    overflow: hidden;
    padding: 0 0px 27.7vw 0px;
  }
  .page-top .news .inner{
    width: 85%;
  }
  .page-top .news .inner .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  }
  .page-top .news .inner .section-title img{
    width: 30%;
  }
  .page-top .news .inner .section-title::after{
    height: 1px;
  }
  .page-top .news .inner .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .page-top .news .news-swiper{
    overflow: visible;
    position: relative;
  }
  .page-top .news-swiper .swiper-wrapper {
    overflow: visible;
  }
  .page-top .news .news-list{
    margin: calc(65px / 2) auto 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0px;
    padding-right: 8%;
  }
  .page-top .news .news-card {
    width: 70vw;
    max-width: none;
    flex-shrink: 0;
  }
  .swiper-button-prev.news-prev,
  .swiper-button-next.news-next {
    display: block;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    content: none !important;
  }
  .page-top .news .news-image{
    border-radius: 6px;
  }
  /* 矢印のスタイル */
  .page-top .news .news-prev,
  .page-top .news .news-next {
    position: absolute;
    z-index: 5;
    cursor: pointer;
    text-indent: -9999px;
    top: 45%;
    width: 11.3vw;
  }
  .page-top .news .news-prev img,
  .page-top .news .news-next img {
    width: 100%;
    height: auto;
    display: block;
  }
  .page-top .news .news-prev {
    left: 0px;
    transform: rotate(180deg);
  }
  .page-top .news .news-next {
    right: 0;
  }
  .page-top .news .swiper-button-disabled{
    opacity: 0;
  }
  .page-top .news .loop_text {
    top: 50%;
    font-size: calc(14rem / 2);
  }
  .page-top .news .loop_text img{
    width: 80rem;
  }

  .page-top .news-modal .box{
    padding: 0;
  }
  .page-top .news-modal .modal-title{
    font-size: clamp(1.7rem, 4.5vw, 3.4rem);
    padding: 6.2vw 2.6vw 5.3vw 2.6vw;
    font-weight: 500;
    width: 85%;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .page-top .news-modal .modal-lead{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
    width: 85%;
    margin: 0 auto 3.3vw;
  }
  .page-top .news-modal .modal-lead02{
    font-size: clamp(1.2rem, 2.9vw, 2.4rem);
    width: 85%;
    margin: 0 auto 2vw;
  }
  .page-top .news-modal .modal-lead-mini{
    font-size: clamp(1.1rem, 3.2vw, 2.2rem);
    width: 85%;
  }
  .page-top .modal-btn-area{
    width: 85%;
    margin: 6.2vw auto 0;
  }
  .page-top .modal-btn-area a{
    padding: 4.6vw 6vw;
    justify-content: space-between;
  }
  .page-top .modal-btn-area a .text{
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
    margin-right: 2vw;
  }
  .page-top .modal-btn-area .icon{
    width: 8.2vw;
  }
}


/* 商品紹介 */
.page-top .products{
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding-top: 270px;
  padding-bottom: 280px;
}
.page-top .products .inner{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}
.page-top .products .inner .section-title{
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 7rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 4px;
}
.page-top .products .inner .section-title img{
  max-width: 298px;
  width: 50%;
}
.page-top .products .inner .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 50px;
  width: 40%; height: 2px;
}
.page-top .products .inner .section-subtitle{
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.page-top .products .products-detail {
  width: 280px;
  flex-shrink: 0;
}
.page-top .products .products-detail .products-list {
  position: relative;
  min-width: 35rem;
}
.page-top .products .products-detail .products-border {
  position: absolute;
  top: 1.8rem;
  left: 9.5rem;
  width: 1px;
  height: calc(100% - 3rem);
  background: #4d4d4d;
}
.page-top .products .products-wrap{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  padding-right: 0;
  box-sizing: border-box;
  margin-top: 100px;
}
.page-top .products .products-wrap:before {
  content: '';
  position: absolute;
  background: #F8F5F5;
  top: 6.4rem;
  left: -30vw;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  z-index: 0;
}
.page-top .products .products-wrap .products-summary{
  width: calc((var(--slide-width) * 2.5) + (var(--slide-gap) * 2));
  /* overflow: hidden; */
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.page-top .products .products-wrap .products-detail{
  width: 20%;
  min-width: 200px;
  flex-shrink: 0;
}
.page-top .products .products-wrap .products-detail .products-data {
  margin-left: 8.8rem;
  padding: 0;
}
.page-top .products .products-detail .swiper-slide {
  width: 42rem;
  margin-right: 4.2rem;
}
.page-top .products .products-detail .products-data li {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-left: 40px;
  margin-top: 70px;
}
.page-top .products .products-detail .products-data li:first-child {
  margin-top: 0px;
}
.page-top .products .products-detail .products-data li .position {
  position: absolute;
  border-radius: 50%;
  background: #f8f5f5;
  top: 0.6rem;
  left: 0rem;
  width: 13px;
  height: 13px;
  border: 1px solid #2C2726;
}
.page-top .products .products-detail .products-data li.active .position {
  background: #2C2726;
}
.page-top .products .products-detail .products-data li .text p {
  font-family: var(--fontEnglishCabinet);
  font-size: 1.4rem;
  line-height: 2.6rem;
  letter-spacing: 0.12em;
}
.page-top .products .products-wrap .products-summary .swiper-slide {
  width: var(--slide-width);
  margin-right: var(--slide-gap);
  flex-shrink: 0;
  box-sizing: border-box;
}
.mod-goods-info{
  padding: 20px 10px;
}
.mod-goods-info .name-en{
  font-size: clamp(2.3rem, 5vw + 0.5rem, 3rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  text-align: center;
  letter-spacing: 2px;
}
.mod-goods-info .name-jp{
  font-size: clamp(1.4rem, 2vw + 0.5rem, var(--fontSizeBasic));
  text-align: center;
  margin-top: 2px;
  font-weight: normal;
  letter-spacing: 1px;
}
.mod-goods-info .desc{
  font-size: clamp(1.3rem, 2vw + 0.5rem, 1.4rem);
  font-weight: normal;
  color: #7E6F6C;
  margin-top: 14px;
  line-height: 1.6;
}
.mod-goods-info .note{
  font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
  font-weight: normal;
  color: #7E6F6C;
  margin-top: 10px;
}
/* 矢印のスタイル */
.page-top .products .products-wrap .products-summary .custom-prev,
.page-top .products .products-wrap .products-summary .custom-next {
  position: absolute;
  z-index: 5;
  cursor: pointer;
  text-indent: -9999px;
  top: 14vw;
  width: 6vw;
  height: 6vw;
  max-width: 78px;
  max-height: 78px;
}
.page-top .products .products-wrap .products-summary .custom-prev img,
.page-top .products .products-wrap .products-summary .custom-next img {
  width: 100%;
  height: auto;
  display: block;
}
.page-top .products .products-wrap .products-summary .custom-prev {
  left: -30px;
  transform: rotate(180deg);
}
.page-top .products .products-wrap .products-summary .custom-next {
  right: 13vw;
  max-width: 88px;
}
.page-top .products .products-wrap .products-summary .swiper-button-disabled{
  opacity: 0;
}
@media screen and (max-width: 750px) {
  .page-top .products{
    padding-top: 9.2vw;
    padding-bottom: 30.9vw;
  }
  .page-top .products .inner{
    width: 85%;
    padding: 0;
  }
  .page-top .products .inner .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  }
  .page-top .products .inner .section-title img{
    width: 46%;
  }
  .page-top .products .inner .section-title::after{
    height: 1px;
    margin-left: 10px;
    width: 20%;
  }
  .page-top .products .inner .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .page-top .products .products-wrap .products-detail{
    width: 85%;
    margin: 0 auto;
  }
  .page-top .products .products-wrap{
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .page-top .products .products-wrap:before{
    top: 0;
    right: 0px;
    left: auto;
    width: 190vw;
    height: 190vw;
  }
  .page-top .products .products-detail .products-list{
    margin-top: calc(100px / 2);
    margin-bottom: calc(80px / 2);
  }
  .page-top .products .products-detail .products-border{
    top: 0;
    left: 0;
    width: 77%;
    height: 1px;
    margin: 0 auto;
    right: 0;
  }
  .page-top .products .products-wrap .products-detail .products-data{
    display: flex;
    margin-left: 0;
  }
  .page-top .products .products-detail .products-data li{
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    width: 25%;
    margin-top: 0px;
    padding-left: 0;
  }
  .page-top .products .products-detail .products-data li .position{
    top: -0.6rem;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    right: 0;
    margin: auto;
  }
  .page-top .products .products-detail .products-data li .text p{
    font-family: var(--fontEnglishInter);
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
    padding-top: 3.5vw;
  }
  .page-top .products .products-wrap .products-summary{
    /* width: calc(100% + (25% / 2)); */
    width: 100%;
  }
  .page-top .products .products-wrap .products-summary .swiper-slide {
    width: 100vw;
    margin-right: 0;
  }
  .page-top .products .products-wrap .products-summary .products-swiper {
    padding-left: 10vw;
    padding-right: 10vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .mod-goods-img{
    margin: 0 auto;
  }
  .mod-goods-info{
    padding: calc(44px / 2) 0;
    width: 85%;
    margin: 0 auto;
  }
  .mod-goods-info .name-en{
    font-family: var(--fontEnglishInter);
    font-size: clamp(2.1rem, 5.6vw, 4.2rem);
  }
  .mod-goods-info .name-jp{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  }
  .mod-goods-info .desc{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
    margin-top: calc(20px / 2);
  }
  .mod-goods-info .note{
    font-size: clamp(1.1rem, 2.6vw, 2rem);
    margin-top: calc(15px / 2);
  }
  /* 矢印のスタイル */
  .page-top .products .products-wrap .products-summary .custom-prev,
  .page-top .products .products-wrap .products-summary .custom-next {
    top: 30vw;
    width: 11.7vw;
    height: 11.7vw;
    max-width: calc(88px);
    max-height: calc(88px);
  }
  .page-top .products .products-wrap .products-summary .custom-prev {
    left: 6vw;
  }
  .page-top .products .products-wrap .products-summary .custom-next {
    right: 6vw;
  }
}



/* リクルート */
.recruit {
  overflow: hidden;
  padding-bottom: 300px;
}
.recruit .cover{
  width: 95%;
  max-width: 1760px;
  float: right;
  margin-bottom: 70px;
}
.page-top .recruit .inner{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 20px;
}
.page-top .recruit .inner .section-title{
  display: flex;
  align-items: center;
  font-size: clamp(4.5rem, 5vw + 0.5rem, 7rem);
  font-family: var(--fontEnglishCabinet);
  font-weight: 400;
  font-stretch: 100%;
  font-style: normal;
  color: #222;
  position: relative;
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 4px;
}
.page-top .recruit .inner .section-title img{
  max-width: 235px;
  width: 50%;
}
.page-top .recruit .inner .section-title::after {
  content: "";
  background: #2C2726;
  margin-left: 50px;
  width: 40%; height: 2px;
}
.page-top .recruit .inner .section-subtitle{
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  z-index: 1;
  width: calc(80% - 120px);
  max-width: 1200px;
  position: relative;
  letter-spacing: 4px;
  margin-top: 10px;
}
.recruit .text-box{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
}
.recruit .text-box .box{
  text-align: left;
}
.recruit .text-box .title{
  font-size: clamp(1.8rem, 5vw + 0.5rem, 2.2rem);
  margin: 0;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.recruit .text-box .lead{
  line-height: 1.6;
}
.page-top .recruit .btn-area{
  margin: 30px auto 0;
}
.page-top .recruit .btn-area .btn-link{
  color: var(--colorAccent);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: flex-start;
}
.page-top .recruit .btn-area .icon {
  position: relative;
  display: inline-block;
  width: fit-content;
}
.page-top .recruit .btn-area .icon .bg {
  display: block;
}
.page-top .recruit .btn-area .icon .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-top .recruit .btn-area .close {
  display: block;
  font-size: 2.6rem;
  border-bottom: 2px solid var(--colorAccent);
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 10px;
  letter-spacing: 2px;
  font-family: var(--fontEnglishInter);
}

@media screen and (max-width: 750px) {
  .recruit{
    padding-bottom: 37.8vw;
  }
  .page-top .recruit .inner{
    width: 85%;
    padding-left: 0px;
  }
  .page-top .recruit .inner .section-title{
    width: 100%;
    font-size: clamp(3.2rem, 8.5vw, 6.4rem);
    letter-spacing: 2px;
  }
  .page-top .recruit .inner .section-title img{
    width: 43%;
  }
  .page-top .recruit .inner .section-title::after{
    height: 1px;
    width: 20%;
  }
  .page-top .recruit .inner .section-subtitle{
    width: 100%;
    font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  }
  .recruit .cover{
    width: 100%;
    max-width: 1760px;
    float: none;
    margin-bottom: 7.6vw;
    margin-top: 7.6vw;
  }
  .recruit .text-box{
    width: 85%;
    align-items: center;
  }
  .recruit .text-box .title{
    font-size: clamp(1.4rem, 3.7vw, 2.8rem);
    margin-bottom: 2.4vw;
  }
  .recruit .text-box .lead{
    font-size: clamp(1.2rem, 3.2vw, 2.4rem);
  }
  .page-top .recruit .btn-area{
    margin: 5.8vw auto 0;
  }
  .page-top .recruit .btn-area .btn-link{
    color: var(--colorAccent);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: flex-start;
  }
  .page-top .recruit .btn-area .icon {
    position: relative;
    display: inline-block;
    width: 9.7vw;
  }
  .page-top .recruit .btn-area .icon .bg {
    display: block;
  }
  .page-top .recruit .btn-area .icon .arrow {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-top .recruit .btn-area .close {
    display: block;
    border-bottom: 2px solid var(--colorAccent);
    font-size: clamp(1.5rem, 3.6vw, 3rem);
    padding-bottom: 2vw;
    padding-left: calc(10px / 2);
    padding-right: calc(10px / 2);
    margin-left: 10px;
    letter-spacing: 2px;
    font-family: var(--fontEnglishInter);
  }
}