/* loading */
.loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
.loading_left {
  width: 50%;
  height: 100%;
  background-color: var(--main-color);
}
.loading_right {
  width: 50%;
  height: 100%;
  background-color: var(--main-color);
}
.loading_logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7rem;
}
canvas {
  width: 100%;
  height: 200px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media (max-width: 768px) {
  .loading_logo {
    width: 5rem;
  }
}

/* fixed_btn */
.fixed_btn {
  position: fixed;
  z-index: 5000;
  bottom: 3rem;
  right: 3rem;
  z-index: 80;
  display: none;
}
.fixed_btn_link {
  background-color: rgb(117 159 179 / 0.9);
  border-radius: 4rem;
  width: 30rem;
  height: 14.5rem;
  padding-left: 13.7rem;
  padding-top: 2rem;
  padding-right: 2.5rem;
  box-sizing: border-box;
  display: block;
  overflow: visible;
}
.fixed_btn_img {
  width: 12.3rem;
  position: absolute;
  top: -1.3rem;
  left: -0.4rem;
  transition: 0.3s;
}
.fixed_btn:hover .fixed_btn_img {
  transform: scale(1.1);
}
.fixed_btn_text_en {
  font-weight: 600;
  font-size: 1.7rem;
  color: rgb(255 255 255 / 0.5);
  letter-spacing: 0.04em;
}
.fixed_btn_text_ja {
  font-weight: 500;
  font-size: 2.3rem;
  color: #fff;
  letter-spacing: 0.07em;
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #fff;
}
.fixed_btn_link_btn {
  font-weight: 600;
  font-size: 1.2rem;
  color: rgb(255 255 255 / 0.5);
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 1rem;
}
.fixed_btn_link_btn:after {
  content: "";
  width: 3.1rem;
  height: 3.1rem;
  background-image: url(../img/recruit-btn-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .fixed_btn {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .fixed_btn_link {
    width: 20rem;
    height: 8.5rem;
    padding-left: 7.6rem;
    padding-top: 1rem;
    padding-right: 2rem;
    border-radius: 2.4rem;
  }
  .fixed_btn_img {
    width: 7.2rem;
    position: absolute;
    top: -0.8rem;
    left: -0.6rem;
  }
  .fixed_btn_text_en {
    font-size: 1rem;
  }
  .fixed_btn_text_ja {
    font-size: 1.4rem;
    margin-top: 0.4rem;
    padding-bottom: 0.5rem;
  }
  .fixed_btn_link_btn {
    font-size: 0.9rem;
    margin-top: 0.3rem;
  }
  .fixed_btn_link_btn:after {
    width: 1.9rem;
  }
}

/* MV */
.mv {
  position: relative;
  z-index: 2;
  padding-top: 34.2rem;
  padding-bottom: 19rem;
  overflow: hidden;
}
.mv_title {
  margin-left: 6.5rem;
  position: relative;
  z-index: 2;
}
.mv_title_ja {
  font-size: 1.5rem;
}
.mv_title_en {
  font-family: "Butler";
  font-size: 13rem;
  color: #736f6f;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: 2rem;
}
.mv_title_en span {
  color: var(--main-color);
}
.mv_textbox {
  margin-top: 22rem;
  margin-left: 75rem;
}
.mv_text_en {
  font-family: "Butler";
  font-size: 6.5rem;
  color: #736f6f;
  letter-spacing: -0.03em;
}
.mv_text_en span {
  color: var(--main-color);
}
.mv_text_en_block {
  display: inline;
}
.mv_text_ja {
  font-size: 1.5rem;
  line-height: calc(38 / 17);
  margin-top: 2rem;
}
.mv_logo {
  width: 9.2rem;
  position: absolute;
  top: 5.5rem;
  left: 8.5rem;
}
.mv_image1 {
  position: absolute;
  z-index: -1;
  top: -10rem;
  right: -20rem;
  width: 91.8rem;
  height: auto;
}
.mv_svg {
  width: 100%;
  height: auto;
  display: block;
}
.mv_svg.sp {
  display: none;
}
.mv_image1 .mv_video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv_image2 {
  position: absolute;
  z-index: -1;
  top: 29rem;
  left: -12rem;
  width: 75rem;
  height: auto;
}
.mv_scroll {
  position: absolute;
  z-index: 1;
  top: 117rem;
  left: 11rem;
  width: 20rem;
  cursor: pointer;
}
.mv_scroll_text {
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.mv_scroll_arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  animation: movedown 3s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
}
@keyframes movedown {
  0% {
    margin-top: -10px;
    opacity: 0;
  }

  20% {
    margin-top: 0;
    opacity: 1;
  }

  70% {
    margin-top: 0;
    opacity: 1;
  }

  to {
    margin-top: 10px;
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .mv {
    padding-top: 12.4rem;
    padding-bottom: 17rem;
  }
  .mv_title {
    margin-left: 3rem;
  }
  .mv_title_ja {
    font-size: 1.2rem;
  }
  .mv_title_en {
    font-size: 7rem;
    line-height: 0.99;
    margin-top: 1.5rem;
  }
  .mv_text_en_block {
    display: block;
  }
  .mv_text_en_block:nth-child(2) {
    margin-left: 1rem;
  }
  .mv_text_en_block:nth-child(3) {
    margin-left: 3rem;
  }
  .mv_text_en_block:nth-child(4) {
    margin-left: 8rem;
  }
  .mv_textbox {
    margin-top: 46rem;
    margin-left: 7rem;
  }
  .mv_text_en {
    font-size: 5.4rem;
  }
  .mv_text_ja {
    font-size: 1.3rem;
    line-height: calc(32 / 13);
    margin-top: 2.5rem;
    margin-left: 3rem;
  }
  .mv_logo {
    width: 5.2rem;
    top: 2rem;
    left: 2rem;
  }
  .mv_image1 {
    top: 22rem;
    right: -11rem;
    width: 46rem;
  }
  .mv_image2 {
    top: 77rem;
    left: -18rem;
    width: 30rem;
  }
  .mv_scroll {
    top: inherit;
    bottom: 5rem;
    left: 1.4rem;
    width: 10.5rem;
  }
  .mv_scroll_arrow {
    width: 1.5rem;
  }
  .mv_svg.pc {
    display: none;
  }
  .mv_svg.sp {
    display: block;
  }
}

/* about */
#about {
  scroll-margin-top: 12rem;
}
.about {
  height: 45.3rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about_image1 {
  position: absolute;
  z-index: 2;
  width: 37rem;
  height: 21rem;
  top: 8.3rem;
  left: -2.6rem;
  background-color: var(--main-color);
  border-radius: 3rem;
  overflow: hidden;
}
.about_image2 {
  position: absolute;
  z-index: 2;
  width: 16.5rem;
  height: 12.35rem;
  top: 33rem;
  left: 16.2rem;
  background-color: var(--main-color);
  border-radius: 3rem;
  overflow: hidden;
}
.about_image3 {
  position: absolute;
  z-index: 2;
  width: 18.5rem;
  height: 13.35rem;
  top: 0;
  right: 17.2rem;
  background-color: var(--main-color);
  border-radius: 3rem;
  overflow: hidden;
}
.about_image4 {
  position: absolute;
  z-index: 2;
  width: 35.7rem;
  height: 21.35rem;
  top: 20.3rem;
  right: -2rem;
  background-color: var(--main-color);
  border-radius: 3rem;
  overflow: hidden;
}
.about_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_box {
  width: 86rem;
  /*height: 34rem;*/
  background-color: rgb(255 255 248 / 0.8);
  border-radius: 7rem;
  position: relative;
  padding-top: 6.4rem;
  padding-bottom: 6.4rem;
  text-align: center;
}
.about_title {
  font-family: "Butler";
  font-size: 3.2rem;
  color: var(--main-color);
  letter-spacing: -0.03em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.5rem;
}
.about_title_circle {
  display: flex;
  gap: 0.5rem;
}
.about_title_circle:before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--main-color);
  border-radius: 50%;
  display: block;
}
.about_title_circle:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--main-color);
  border-radius: 50%;
  display: block;
}
.about_text {
  font-size: 1.5rem;
  line-height: calc(38 / 17);
  margin-top: 1.6rem;
  /*margin-bottom: 2.6rem;*/
}
.about_link_btn {
  font-weight: 300;
  font-size: 1.8rem;
  color: #000;
  width: 19rem;
  height: 5.2rem;
  border: 0.1rem solid #949191;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.7rem;
  margin: auto;
}
.about_link_btn:after {
  content: "";
  width: 1.3rem;
  height: 0.8rem;
  background-image: url(../img/arrow-right.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.about_link_btn:hover:after {
  animation-name: transformLeftRight;
  animation-fill-mode: forwards;
  animation-duration: 0.7s;
  transition-timing-function: ease-out;
}
@media (max-width: 768px) {
  .about {
    height: 42.8rem;
  }
  .about_image1 {
    width: 18rem;
    height: 10rem;
    top: 0;
    left: -0.7rem;
    border-radius: 1.6rem;
  }
  .about_image2 {
    width: 8.5rem;
    height: 6.5rem;
    top: 5.8rem;
    left: inherit;
    right: 1.4rem;
    border-radius: 1.576rem;
  }
  .about_image3 {
    width: 9rem;
    height: 6.5rem;
    top: inherit;
    bottom: 1.1rem;
    right: 18.4rem;
    border-radius: 1.576rem;
  }
  .about_image4 {
    width: 15.7rem;
    height: 10rem;
    top: inherit;
    bottom: 0;
    right: 1.2rem;
    border-radius: 1.576rem;
  }

  .about_box {
    width: 32.5rem;
    /*height: 42rem;*/
    border-radius: 4rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .about_title {
    font-size: 3.2rem;
  }
  .about_title_circle {
    display: none;
  }
  .about_text {
    font-size: 1.3rem;
    line-height: calc(32 / 13);
    margin-top: 1.6rem;
    /*margin-bottom: 2.6rem;*/
  }
  .about_link_btn {
    font-size: 1.3rem;
    color: #000;
    width: 13.9rem;
    height: 3.8rem;
    gap: 2rem;
  }
  .about_link_btn:after {
    width: 0.9rem;
    height: 0.6rem;
  }
}

/* salon */
.salon {
  margin-top: 16rem;
  margin-bottom: 5rem;
}
.salon_inner {
  max-width: 115rem;
  margin: auto;
  padding-top: 1.7rem;
  border-top: 0.1rem solid #949191;
}
.salon .section_title {
  margin-left: 0;
}
.salon_title {
  font-family: "Butler";
  font-size: 7.4rem;
  color: #736f6f;
  letter-spacing: -0.03em;
  text-align: right;
  padding-right: 4rem;
  margin-top: -2.8rem;
}
.salon_title span {
  font-size: 5.4rem;
}
.salon_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.1rem solid #949191;
  margin-top: 2rem;
}
.salon_box_item {
  border-bottom: 0.1rem solid #949191;
}
.salon_box_item:not(:nth-child(3n + 1)) {
  border-left: 0.1rem solid #949191;
}
.salon_box_item_inner {
  height: 43.3rem;
  padding: 1.8rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.salon_box_item_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.salon_box_item_category {
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 100vmax;
  padding: 0.4rem 1.8rem;
}
.salon_box_item_location {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: 0.3s;
}
.salon_box_item_location:before {
  content: "";
  width: 0.7rem;
  height: 1.6rem;
  background-image: url(../img/pin.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.salon_box_item_inner:hover .salon_box_item_location {
  color: #fff;
}
.salon_box_item_inner:hover .salon_box_item_location:before {
  filter: invert(1) brightness(2);
}
.salon_box_item_inner:hover .salon_box_item_arrow {
  animation-name: transformLeftRight;
  animation-fill-mode: forwards;
  animation-duration: 0.7s;
  transition-timing-function: ease-out;
}
.salon_box_item_logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
}
.salon_logo-normal {
  width: 9.1rem;
}
.salon_logo-medium {
  width: 10.3rem;
}
.salon_logo-wide {
  width: 19.2rem;
}
.salon_box_item_image {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.66);
  width: 100%;
  aspect-ratio: 250/285;
  border-radius: 2rem;
  overflow: hidden;
  transition: 0.3s;
}
.salon_box_item_image:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.3);
}
.salon_box_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.salon_box_item_inner:hover .salon_box_item_image {
  transform: translate(-50%, -50%) scale(1);
  border-radius: 0;
}
.salon_box_item_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.salon_box_item_name {
  font-weight: 500;
  font-size: 2rem;
  transition: 0.3s;
}
.salon_box_item_inner:hover .salon_box_item_name {
  color: #fff;
}
.salon_box_item_name_ja {
  font-size: 1.3rem;
}
.salon_box_item_arrow {
  width: 1.3rem;
  transition: 0.3s;
}
.salon_box_item_inner:hover .salon_box_item_arrow {
  filter: invert(1) brightness(2);
}
.salon_box_item_info {
  border-top: 0.1rem solid #949191;
  padding: 1.8rem 1.4rem 1.8rem;
}
.salon_box_item_address {
  font-size: 1.4rem;
  line-height: 1.75;
}
.salon_box_item_tel {
  font-size: 1.4rem;
}
.salon_box_item_tel span {
  font-size: 1.4rem;
  margin-right: 1.5rem;
}
.salon_link {
  border-bottom: 0.1rem solid #949191;
  text-align: right;
  padding: 1.6rem;
}
.salon_video {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 8rem auto;
  gap: 2rem;
}
.salon_video_wrap {
  width: 100%;
  height: 52.6rem;
}
.salon_video_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.salon_loop {
  margin-top: 12.4rem;
}
.salon_loop_item {
  font-family: "Butler";
  font-size: 13.4rem;
  color: #736f6f;
  letter-spacing: -0.03em;
  display: flex;
  gap: 6rem;
}
.salon_loop_item span {
  color: var(--main-color);
}
.salon_loop .swiper-wrapper {
  transition-timing-function: linear;
}
@media (max-width: 768px) {
  .salon {
    margin-top: 9rem;
  }
  .salon_inner {
    width: 35.3rem;
    border-top: none;
  }
  .salon_title {
    font-size: 4.3rem;
    line-height: 1;
    padding: 1.5rem 2rem 0;
    margin-top: 0.3rem;
    text-align: left;
    border-top: 0.1rem solid #949191;
  }
  .salon_title span {
    font-size: 3.3rem;
    margin-left: 12.9rem;
  }
  .salon_box {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.4rem;
  }
  .salon_box_item:nth-of-type(5),
  .salon_box_item:nth-of-type(6) {
    display: none;
  }
  .salon_box_item:not(:nth-child(3n + 1)) {
    border-left: none;
  }
  .salon_box_item:nth-child(even) {
    border-left: 0.1rem solid #949191;
  }
  .salon_box_item_inner {
    height: 30.5rem;
    padding: 1.4rem 1.1rem;
  }
  .salon_box_item_category {
    font-size: 0.99rem;
    padding: 0.25rem 1.1rem;
  }
  .salon_box_item_location {
    font-size: 1rem;
    gap: 0.8rem;
  }
  .salon_box_item_location:before {
    width: 0.5rem;
    height: 1.2rem;
  }
  .salon_box_item_image {
    transform: translate(-50%, -50%) scale(1);
    width: 90%;
  }
  .salon_logo-normal {
    width: 6.6rem;
  }
  .salon_logo-medium {
    width: 7.3rem;
  }
  .salon_logo-wide {
    width: 12.2rem;
  }
  .salon_box_item_bottom {
    align-items: flex-start;
  }
  .salon_box_item_name {
    font-size: 1.3rem;
  }
  .salon_box_item_name_ja {
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
  }
  .salon_box_item_arrow {
    width: 0.9rem;
    margin-top: 0.5rem;
  }
  .salon_box_item_info {
    padding: 1.2rem;
  }
  .salon_box_item_address {
    font-size: 1rem;
    line-height: 1.7;
  }
  .salon_box_item_tel {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
  .salon_box_item_tel span {
    font-size: 1rem;
    margin-right: 1rem;
  }
  .salon_link {
    padding: 1rem;
  }
  .salon_video {
    width: 35.3rem;
  }
  .salon_video_wrap {
    height: auto;
  }
  .salon_loop {
    margin-top: 9.4rem;
  }
  .salon_loop_item {
    font-size: 6.2rem;
    gap: 2rem;
  }
}

/* style */
.style {
  padding: 8rem 0 17rem;
  background-color: #fffff8;
  position: relative;
}
.style_wave_top {
  position: absolute;
  top: -10.4rem;
  left: 0;
  width: 100%;
  height: auto;
}
.style_wave_bottom {
  position: absolute;
  bottom: -10.4rem;
  left: 0;
  width: 100%;
  height: auto;
}
.style_inner {
  max-width: 110.8rem;
  margin: 4rem auto 0;
}
.style_head {
  display: flex;
  align-items: baseline;
  gap: 6.4rem;
  margin-bottom: 3.6rem;
  margin-left: 1.4rem;
}
.style_title {
  font-family: "Butler";
  font-size: 7.4rem;
  color: #736f6f;
  letter-spacing: -0.03em;
}
.style_block + .style_block {
  margin-top: 9rem;
}
.style_tab {
  display: flex;
  gap: 3.6rem;
  margin-bottom: 6.4rem;
  margin-left: 1.4rem;
}
.style_tab_btn {
  font-weight: 300;
  font-size: 1.8rem;
}
.style_tab_btn.active {
  color: var(--main-color);
}
.style_content {
  display: none;
}
.style_content.active {
  display: block;
}
.style_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
}
.style_box_image {
  border-radius: 2rem;
  aspect-ratio: 250/300;
  overflow: hidden;
  display: block;
}
.style_box_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.style_box_image:hover .style_box_img {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .style {
    padding: 5rem 0 8rem;
  }
  .style_wave_top {
    top: -3rem;
  }
  .style_wave_bottom {
    bottom: -3rem;
  }
  .style_inner {
    margin-top: 2rem;
  }
  .style_head {
    justify-content: space-between;
    gap: 0;
    margin-left: 3.2rem;
    margin-bottom: 2.2rem;
    padding-right: 3.2rem;
  }
  .style_title {
    font-size: 4.3rem;
  }
  .style_tab {
    gap: 2.8rem;
    margin-left: 3.2rem;
    margin-bottom: 3rem;
  }
  .style_tab_btn {
    font-size: 1.3rem;
  }
  .style_block + .style_block {
    margin-top: 7rem;
  }
  .style_box {
    width: 35.3rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem 2.3rem;
    margin: auto;
  }
}

/* recruit */
.recruit {
  padding: 18rem 0 17rem;
}
.recruit_box {
  width: 94rem;
  height: 42rem;
  margin: 6.4rem auto 0;
  background-image: url(../img/recruit-bg.png);
  background-size: cover;
  padding: 4rem 7rem 4rem 9.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.recruit_box_image {
  position: absolute;
  z-index: -1;
  top: -5rem;
  left: 3rem;
  width: 33rem;
  height: auto;
}
.recruit_svg {
  width: 100%;
  height: auto;
  display: block;
}
.recruit_box_title_ja {
  font-size: 1.6rem;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.03em;
}
.recruit_box_title_en {
  font-family: "Butler";
  font-size: 7.4rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.recruit_box_text {
  font-size: 2rem;
  color: #fff;
  line-height: calc(38 / 22);
  margin-top: 1.1rem;
}
.recruit_box_text_sm {
  font-size: 1.6rem;
  color: #fff;
  line-height: calc(38 / 18);
  margin-top: 1.6rem;
}
.recruit_link {
  margin-top: auto;
}
.recruit_link_btn {
  font-size: 1.8rem;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.8rem;
}
.recruit_link_btn:after {
  content: "";
  width: 5.4rem;
  height: 5.4rem;
  background-image: url(../img/recruit-btn-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .recruit {
    padding: 8.8rem 0;
  }
  .recruit_box {
    width: 35.3rem;
    height: 42.3rem;
    margin: 3.2rem auto 0;
    background-image: url(../img/recruit-bg-sp.png);
    background-size: cover;
    padding: 3.2rem 4rem 2.8rem 3.2rem;
  }
  .recruit_box_image {
    width: 20rem;
    top: 0;
    left: -2rem;
  }
  .recruit_box_title_ja {
    font-size: 1.4rem;
  }
  .recruit_box_title_en {
    font-size: 4.3rem;
    margin-top: 0.5rem;
  }
  .recruit_box_text {
    font-size: 1.5rem;
    line-height: calc(29.5 / 15);
    margin-top: 2.5rem;
  }
  .recruit_box_text_sm {
    font-size: 1.3rem;
    line-height: calc(29.5 / 13);
    margin-top: 1.2rem;
  }
  .recruit_link_btn {
    font-size: 1.4rem;
  }
  .recruit_link_btn:after {
    width: 4.5rem;
    height: 4.5rem;
  }
}

/* column */
.cursor {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--main-color);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition:
    background-color 0.3s,
    opacity 0.3s;
  transform: translate(-50%, -50%);
}
.cursor.is-hover {
  opacity: 0.2 !important;
}
.cursor.is-column {
  background-color: transparent;
  background-image: url(../img/column-swipe.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 18.5rem;
  height: 18.5rem;
  top: -9rem;
  left: -9rem;
}
.column_box {
  height: 97.6rem;
  background-image: url(../img/column-bg.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 4rem;
  padding-top: 9rem;
}
.column_box_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7rem;
  margin-left: 10rem;
  margin-right: 10rem;
}
.column_text {
  width: 76.4rem;
}
.column_box_top .view_btn {
  color: #fff;
}
.column_box_top .view_btn:after {
  filter: invert(1) brightness(2);
}
.column_swiper {
  margin-top: 6.8rem;
}
.column_swiper_item {
  background-color: #fffff8;
  border-radius: 1.9rem;
  padding: 2.5rem 1.5rem 1.5rem;
  width: 41rem;
  transform: scale(0.8) !important;
  transition: 0.4s;
}
.column_swiper_item:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.9rem;
  transition: 0.4s;
  pointer-events: none;
  background-color: rgb(35 24 21 /0.7);
}
.column_swiper_item_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 1.2rem;
}
.column_swiper_item_category {
  font-size: 1.3rem;
  color: #fff;
  background-color: #949191;
  border-radius: 100vmax;
  padding: 0.2rem 1.4rem;
}
.column_swiper_item_date {
  font-size: 1.3rem;
  color: #949191;
}
.column_swiper_item_title {
  font-size: 1.5rem;
  line-height: calc(26.4 / 17);
  margin-top: 1.2rem;
  width: 100%;
}
.column_swiper_item_shop {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  width: 100%;
}
.column_swiper_item_image {
  margin-top: 2.5rem;
  border-radius: 0.9rem;
  aspect-ratio: 380/340;
  overflow: hidden;
}
.column_swiper_item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.column_swiper_item_bottom {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.2rem;
}
.column_swiper_item_editor {
  font-size: 1.4rem;
}
.column_swiper_item_logo {
  height: 4.6rem;
  width: auto;
}
.swiper-slide-active.column_swiper_item {
  transform: scale(1) !important;
}
.swiper-slide-active.column_swiper_item:after {
  opacity: 0;
}
.column_swiper_item:hover .column_swiper_item_img {
  transform: scale(1.1);
}
.column_pagination {
  font-weight: 300;
  font-size: 1.67rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.6rem;
}
.column_swiper_pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: auto;
}
.column_swiper_pagination .swiper-pagination-current {
  font-weight: 500;
}
@media (max-width: 768px) {
  .column_box {
    height: 66.4rem;
    background-image: url(../img/column-bg-sp.jpg);
    margin-top: 2rem;
    padding-top: 4rem;
  }
  .column_box_top {
    margin-right: 3.3rem;

    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
  }
  .column_text {
    width: 32.7rem;
  }
  .column_swiper {
    margin-top: 3rem;
  }
  .column_swiper_item {
    width: 30rem;
    border-radius: 1.4rem;
    padding: 2rem 1.1rem 1.1rem;
  }
  .column_swiper_item:after {
    border-radius: 1.4rem;
  }
  .column_swiper_item_category {
    font-size: 0.95rem;
  }
  .column_swiper_item_date {
    font-size: 0.95rem;
  }
  .column_swiper_item_title {
    font-size: 1.25rem;
    line-height: calc(19.4 / 12.5);
    margin-top: 1rem;
  }
  .column_swiper_item_shop {
    font-size: 0.95rem;
    margin-top: 1rem;
  }
  .column_swiper_item_image {
    margin-top: 1.7rem;
  }
  .column_swiper_item_bottom {
    margin-top: 1rem;
  }
  .column_swiper_item_editor {
    font-size: 1.03rem;
  }
  .column_swiper_item_logo {
    height: 3.4rem;
  }
  .column_pagination {
    font-size: 1.1rem;
    margin-top: 2.4rem;
  }
}

/* news */
.news {
  padding: 10.6rem 0 19.3rem;
}
.news_box {
  padding-left: 64rem;
  padding-right: 6.5rem;
  box-sizing: border-box;
  margin-top: 3.4rem;
  position: relative;
}
.news_image {
  position: absolute;
  top: 0;
  left: -9rem;
  width: 61.1rem;
  height: auto;
}
.news_svg {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
  display: block;
}
.news_list {
  margin-bottom: 4rem;
}
.news_item + .news_item {
  margin-top: 2.3rem;
}
.news_item_link {
  position: relative;
  padding-bottom: 4rem;
  display: block;
}
.news_item_link:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.2px;
  background-color: rgb(93 93 93 / 0.4);
}
.news_item_link:after {
  content: "";
  width: 100%;
  height: 1.2px;
  background-color: var(--main-color);
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news_item_link:hover:after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.news_item_date {
  font-weight: 400;
  font-size: 1.5rem;
  color: #231815;
  line-height: 1.7;
  letter-spacing: 0.15em;
  display: block;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news_item_title {
  font-weight: 400;
  font-size: 1.5rem;
  color: #231815;
  line-height: 1.7;
  letter-spacing: 0.15em;
  margin-top: 0.3rem;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.news_item_link:hover .news_item_date,
.news_item_link:hover .news_item_title {
  transform: translateX(2rem);
}
.news_link {
  text-align: right;
}
.news_video {
  position: relative;
  display: block;
  width: 100%;
  height: 40rem;
  cursor: pointer;
}
.news_video_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.news_video::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(69, 65, 64, 0.2);
  z-index: 2;
}
.news_video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16.5rem;
  height: 16.5rem;
  object-fit: cover;
  z-index: 3;
}
@media (max-width: 768px) {
  .news {
    padding: 5.6rem 0 9.3rem;
  }
  .news_box {
    padding: 0;
    margin-top: 1rem;
  }
  .news_image {
    position: static;
    width: 100%;
  }
  .news_svg {
    margin-left: -5rem;
  }
  .news_list {
    width: 35rem;
    margin: 3rem auto;
  }
  .news_item_link {
    padding-bottom: 2rem;
  }
  .news_item_date {
    font-size: 1.3rem;
  }
  .news_item_title {
    font-size: 1.3rem;
  }
  .news_item + .news_item {
    margin-top: 1.8rem;
  }
  .news_link {
    padding-right: 2rem;
  }
  .news_video {
    height: auto;
  }
  .news_video_btn {
    width: 8rem;
    height: 8rem;
  }
  .news_video {
    height: auto;
  }
}

body.is-modal-open {
  overflow: hidden;
}
.modal_video {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
.modal_video.is-active {
  display: flex;
}
.modal_video_inner {
  position: relative;
  width: min(90vw, 100rem);
}
.modal_video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.modal_video .modal_close {
  position: absolute;
  top: 3rem;
  right: 4rem;
  width: 10rem;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 768px) {
  .modal_video_inner {
    position: static;
  }
  .modal_video .modal_close {
    top: 4rem;
    right: 2rem;
    width: 6rem;
  }
}
