@charset "UTF-8";
/* base setting */
body {
  color: #1c1c1c;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1240px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body.no-scroll {
  overflow: hidden;
}
body.no-scroll #wrap {
  overflow-y: scroll;
}

a {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

#wrap {
  overflow-x: clip;
  width: 100%;
}

body.is-fixed #wrap {
  position: fixed;
  left: 0;
  width: 100%;
}

button {
  color: #181f1f;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

/* /base setting */
/* header */
#header {
  position: absolute;
  padding: 32px 32px 0;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  #header {
    padding: 24px 20px 0;
  }
}
#header .logo {
  width: 150px;
  height: 20px;
}
@media (any-hover: hover) {
  #header .logo:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #header .logo {
    display: flex;
    width: 95px;
    height: auto;
  }
}

/* /header */
/* footer */
#footer {
  background: #fff;
  color: #000;
  position: relative;
  z-index: 2;
  padding: 56px 0 64px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 48px 0;
  }
}
#footer .logo-wrap {
  width: 150px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  #footer .logo-wrap {
    width: 150px;
    height: auto;
    margin: 0 auto;
  }
}
#footer .ft-list {
  display: flex;
}
#footer .ft-contents {
  display: flex;
}
@media screen and (max-width: 767px) {
  #footer .ft-contents {
    flex-direction: column;
    align-items: center;
  }
}
#footer .ft-list {
  display: flex;
}
@media screen and (max-width: 767px) {
  #footer .ft-list {
    margin-top: 16px;
  }
}
#footer .ft-list li + li {
  margin-left: 30px;
}
#footer .ft-list li a {
  font-size: 1.4rem;
  color: #000;
}
#footer .ft-list li a:hover {
  text-decoration: underline;
}
#footer .copy {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #footer .copy {
    text-align: center;
  }
}
#footer .ft-right {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  #footer .ft-right {
    margin: 0 auto;
  }
}
#footer .ft-logo {
  display: flex;
}
@media (any-hover: hover) {
  #footer .ft-logo:hover {
    opacity: 0.7;
  }
}

.top-btn-wrap {
  position: fixed;
  right: 16px;
  bottom: 32px;
  z-index: 99;
}
.top-btn-wrap .top-btn {
  display: block;
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  overflow: hidden;
  text-indent: -9999px;
  border: 1px solid #0b6fad;
  background: #0b6fad url(/special/fiole-view_25/assets/images/icn_pagetop_arr.svg) no-repeat center/14px 8px;
  opacity: 0;
  pointer-events: none;
}
@media (any-hover: hover) {
  .top-btn-wrap .top-btn:hover {
    background: #fff url(/special/fiole-view_25/assets/images/icn_pagetop_arr_blue.svg) no-repeat center/14px 8px;
  }
}
.top-btn-wrap.show .top-btn {
  opacity: 1;
  pointer-events: all;
}

/* /footer */
/* module */
#contents {
  display: block;
  min-height: 2000px;
}

.cmn-inner {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .cmn-inner {
    width: 1240px;
    margin: 0 auto;
  }
}

/* /module */
.main-visual {
  position: relative;
  padding-top: 96px;
  z-index: 3;
}
.main-visual .main-title-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .main-visual .main-title-wrap {
    margin-bottom: 48px;
  }
}
.main-visual .main-title-wrap .main-title {
  width: 590px;
}
@media screen and (max-width: 767px) {
  .main-visual .main-title-wrap .main-title {
    width: 78.9333333333vw;
  }
}
.main-visual .main-title-wrap .catch-copy {
  margin-top: 30px;
  font-size: 2rem;
  letter-spacing: 0.46em;
}
@media screen and (max-width: 767px) {
  .main-visual .main-title-wrap .catch-copy {
    margin-top: 15px;
    font-size: 1.4rem;
    letter-spacing: 0.22em;
  }
}
.main-visual .main-visual-img {
  width: 1330px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .main-visual .main-visual-img {
    width: 100%;
  }
}

.video-area {
  position: relative;
  padding: 142px 0 186px;
}
@media screen and (max-width: 767px) {
  .video-area {
    padding: 56px 0 64px;
  }
}
.video-area::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 984px;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: url(/special/fiole-view_25/assets/images/bg_main_visual_video_texture.webp) repeat-x center bottom/100% 984px;
}
@media screen and (max-width: 767px) {
  .video-area::before {
    height: calc(100% + 29.3333333333vw);
    background: url(/special/fiole-view_25/assets/images/bg_main_visual_video_texture_sp.webp) no-repeat center top/auto 100%;
  }
}
.video-area .cmn-inner {
  position: relative;
  z-index: 2;
}
.video-area .video-contents-wrap .video-contents {
  display: flex;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .video-area .video-contents-wrap .video-contents {
    flex-direction: column;
    gap: 48px;
  }
}
.video-area .video-contents-wrap .video-contents .video-info {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .video-area .video-contents-wrap .video-contents .video-info {
    flex: 0 1 auto;
    text-align: center;
  }
}
.video-area .video-contents-wrap .video-contents .video-info .teams {
  font-family: "Jost", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}
.video-area .video-contents-wrap .video-contents .video-info .teams .main {
  font-size: 5rem;
}
.video-area .video-contents-wrap .video-contents .video-info .video-txt {
  margin-top: 24px;
}
.video-area .video-contents-wrap .video-contents .video-info .video-txt p {
  line-height: 2;
}
.video-area .video-contents-wrap .video-contents .video-info .video-txt p + p {
  margin-top: 24px;
}
.video-area .video-contents-wrap .video-contents .video-info .video-txt p span {
  font-weight: bold;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap {
  width: 756px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .video-area .video-contents-wrap .video-contents .video-thumbnail-wrap {
    width: 100%;
  }
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap::before, .video-area .video-contents-wrap .video-contents .video-thumbnail-wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 16px;
  left: calc(50% - 35px);
  background: url(/special/fiole-view_25/assets/images/item_thumbnail_flame.svg) no-repeat center/70px auto;
  pointer-events: none;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap::before {
  top: -8px;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap::after {
  bottom: -8px;
  transform: rotate(180deg);
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail {
  padding: 25px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail {
    padding: 20px;
  }
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail::before, .video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  bottom: -8px;
  background-color: #181f1f;
  transform: rotate(45deg);
  pointer-events: none;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail::before {
  left: -8px;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail::after {
  right: -8px;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail .play-btn {
  display: block;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail .thumbnail::before, .video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail .thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: -8px;
  background-color: #181f1f;
  transform: rotate(45deg);
  pointer-events: none;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail .thumbnail::before {
  left: -8px;
}
.video-area .video-contents-wrap .video-contents .video-thumbnail-wrap .video-thumbnail .thumbnail::after {
  right: -8px;
}

/* style */
.style-wrap {
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  padding: 156px 0 136px;
  background: url(/special/fiole-view_25/assets/images/bg_style.webp) no-repeat left bottom/cover;
}
@media screen and (max-width: 767px) {
  .style-wrap {
    gap: 64px;
    padding: 80px 0;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .style-wrap .style-section:nth-of-type(odd) .style-contents .style-info-wrap {
    order: 2;
  }
  .style-wrap .style-section:nth-of-type(odd) .style-contents .style-txt-wrap {
    order: 1;
    align-items: start;
  }
  .style-wrap .style-section:nth-of-type(odd) .style-contents .style-txt-wrap .style-txt-inner {
    padding-left: 0;
    padding-right: 48px;
  }
  .style-wrap .style-section:nth-of-type(odd) .style-number .num {
    text-align: left;
  }
  .style-wrap .style-section:nth-of-type(odd) .style-number .label {
    right: auto;
    left: 20px;
  }
}
.style-wrap .style-main-copy {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .style-wrap .style-main-copy {
    position: absolute;
    top: 214px;
    left: calc(50% - 200px);
    z-index: 2;
    width: 400px;
  }
  .style-wrap .style-main-copy.scroll {
    position: fixed;
    top: calc(50% - 250px);
  }
  .style-wrap .style-main-copy.end {
    position: absolute;
    top: auto;
    bottom: 136px;
  }
}
@media screen and (max-width: 767px) {
  .style-wrap .style-main-copy {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
  }
}
.style-wrap .style-slider-wrap {
  max-width: 378px;
}
@media screen and (max-width: 767px) {
  .style-wrap .style-slider-wrap {
    max-width: none;
    order: 3;
  }
  .style-wrap .style-slider-wrap .splide__slide img {
    width: 100%;
    height: auto;
  }
}

.style-contents {
  display: flex;
  gap: 440px;
}
@media screen and (max-width: 767px) {
  .style-contents {
    position: relative;
    flex-direction: column;
    gap: 0;
    padding-top: 32px;
  }
}
.style-contents .style-info-wrap {
  width: 378px;
}
@media screen and (max-width: 767px) {
  .style-contents .style-info-wrap {
    display: contents;
    width: auto;
  }
}
.style-contents .style-txt-wrap {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .style-contents .style-txt-wrap {
    display: contents;
    flex: 0 1 auto;
  }
}

.style-ttl-wrap {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .style-ttl-wrap {
    order: 2;
    padding-right: 48px;
  }
}
.style-ttl-wrap .style-ttl {
  display: flex;
  align-items: baseline;
  font-family: "Jost", sans-serif;
  font-size: 4.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  position: relative;
}
.style-ttl-wrap .style-ttl span {
  display: inline-block;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .style-ttl-wrap .style-ttl {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .style-ttl-wrap .style-ttl {
    font-size: 3.2rem;
    font-size: 8.5333333333vw;
  }
}
.style-ttl-wrap .style-ttl::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 6px;
  height: 20px;
  background: url(/special/fiole-view_25/assets/images/item_title_colon.svg) no-repeat left top/6px auto;
}
.style-ttl-wrap .jp {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .style-ttl-wrap .jp {
    font-size: 4.2666666667vw;
  }
}

.style-dl-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .style-dl-wrap {
    margin-top: 32px;
    order: 4;
  }
}
.style-dl-wrap .style-dl {
  display: flex;
  gap: 10px;
}
.style-dl-wrap .style-dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 20px;
  font-family: "Jost", sans-serif;
}
.style-dl-wrap .style-dl dt.before {
  color: #181f1f;
  background-color: #e1e5e3;
}
.style-dl-wrap .style-dl dt.after {
  color: #fff;
  background-color: #181f1f;
}
.style-dl-wrap .style-dl dd {
  line-height: 1;
}

.recipe {
  display: flex;
  flex-direction: column;
  align-items: start;
  overflow: hidden;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .recipe {
    order: 5;
    margin-top: 24px;
  }
}
.recipe .ttl {
  position: relative;
  font-family: "Jost", sans-serif;
  padding-right: 16px;
}
.recipe .ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 1px;
  top: calc(50% - 0.5px);
  left: 100%;
  background-color: #181f1f;
}
.recipe .recipe-dl {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
}
.recipe .recipe-dl dt {
  display: block;
}
.recipe .recipe-dl dd {
  flex: 1;
}

.style-txt-wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (min-width: 768px) {
  .style-txt-wrap .style-txt-inner {
    padding-left: 48px;
  }
}
.style-txt-wrap .style-pic {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .style-txt-wrap .style-pic {
    order: 7;
    margin-top: 32px;
  }
  .style-txt-wrap .style-pic img {
    width: 100%;
    height: auto;
  }
}

.style-number {
  position: relative;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .style-number {
    order: 1;
    position: absolute;
    width: 40%;
    right: 0;
    top: 0;
  }
}
.style-number .num {
  text-align: right;
}
.style-number .label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-weight: 600;
  font-size: 2.4rem;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 767px) {
  .style-number .label {
    right: 10px;
    bottom: 10px;
    font-size: 1.2rem;
  }
}

.style-txt-inner {
  margin-top: 84px;
}
@media screen and (max-width: 767px) {
  .style-txt-inner {
    order: 6;
    margin-top: 32px;
  }
}
.style-txt-inner .style-txt {
  line-height: 2;
}
.style-txt-inner .stylist {
  margin-top: 80px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .style-txt-inner .stylist {
    margin-top: 32px;
  }
}
.style-txt-inner .stylist .name {
  font-size: 1.6rem;
}

/* gallery */
.gallery-area {
  position: relative;
  overflow: hidden;
  background: url(/special/fiole-view_25/assets/images/pic_gallery_base.webp) no-repeat center top/cover;
  z-index: 3;
}
.gallery-area .gallery-main-pic {
  position: relative;
  z-index: 2;
  text-align: center;
}
.gallery-area .gallery-main-pic img {
  width: 100%;
  max-width: none;
}
.gallery-area .text-loop-animation-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .gallery-area .text-loop-animation-box {
    top: 10px;
    gap: 8px;
    height: 192vw;
  }
}
.gallery-area .text-loop-animation-box .loop-animation {
  display: flex;
  gap: 40px;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .gallery-area .text-loop-animation-box .loop-animation {
    gap: 16px;
    margin-right: 16px;
  }
}
.gallery-area .text-loop-animation-box .loop-animation .loop-item {
  animation: txt-loop-animation 80s linear infinite;
}
.gallery-area .text-loop-animation-box .loop-animation .loop-item img {
  max-width: none;
  height: 204px;
  height: max(180px, 14.934114202vw);
}
@media screen and (max-width: 767px) {
  .gallery-area .text-loop-animation-box .loop-animation .loop-item img {
    height: 64px;
  }
}
.gallery-area .text-loop-animation-box .loop-animation:nth-of-type(2n) .loop-item {
  animation-direction: reverse;
}
.gallery-area .text-loop-animation-box .loop-animation:nth-of-type(3) .loop-item {
  animation-delay: -30s;
}

@keyframes txt-loop-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* products */
.products-section {
  padding: 180px 0 144px;
  background: url(/special/fiole-view_25/assets/images/bg_products_texture.webp) repeat-x center bottom/100% 298px #fff;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .products-section {
    padding: 64px 0;
    background-size: 100% 90%;
  }
}
.products-section .cmn-inner {
  position: relative;
}
.products-section .cmn-inner .products-ttl {
  position: absolute;
  top: -80px;
  left: -44px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .products-section .cmn-inner .products-ttl {
    position: static;
    top: 0;
    left: 0;
    zoom: 0.35;
  }
}

.products-box {
  position: relative;
  width: 726px;
  margin-right: 0;
  margin-left: auto;
  background: url(/special/fiole-view_25/assets/images/bg_products_box.webp) repeat-x left top/726px 475px #fff;
}
@media screen and (max-width: 767px) {
  .products-box {
    background: #fff;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 48px;
    padding: 32px 20px;
  }
}
.products-box::before, .products-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 16px;
  left: calc(50% - 35px);
  background: url(/special/fiole-view_25/assets/images/item_products_box_flame.svg) no-repeat center/70px auto;
  pointer-events: none;
}
.products-box::before {
  top: 0;
}
.products-box::after {
  bottom: 0;
  transform: rotate(180deg);
}
.products-box .products-box-inner {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .products-box .products-box-inner {
    display: contents;
    position: static;
  }
}
.products-box .products-box-inner::before, .products-box .products-box-inner::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: -8px;
  background-color: #0c96cf;
  transform: rotate(45deg);
  pointer-events: none;
}
.products-box .products-box-inner::before {
  left: -8px;
}
.products-box .products-box-inner::after {
  right: -8px;
}
.products-box .products-img {
  position: absolute;
  width: 468px;
  right: calc(100% + 88px);
  top: 32px;
}
@media screen and (max-width: 767px) {
  .products-box .products-img {
    position: relative;
    right: 0px;
    order: 2;
    margin-bottom: 48px;
    width: 80%;
  }
}
.products-box .products-txt-wrap {
  padding: 80px 64px;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .products-box .products-txt-wrap {
    display: contents;
    font-size: 1.6rem;
  }
  .products-box .products-txt-wrap p {
    order: 3;
  }
}
.products-box .products-txt-wrap::before, .products-box .products-txt-wrap::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  bottom: -8px;
  background-color: #0c96cf;
  transform: rotate(45deg);
  pointer-events: none;
}
.products-box .products-txt-wrap::before {
  left: -8px;
}
.products-box .products-txt-wrap::after {
  right: -8px;
}
.products-box .products-txt-wrap .ttl {
  width: 516px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .products-box .products-txt-wrap .ttl {
    order: 1;
    width: 100%;
  }
}
.products-box .products-txt-wrap .products-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .products-box .products-txt-wrap .products-btn-wrap {
    margin-top: 32px;
    order: 4;
    grid-template-columns: repeat(1, 1fr);
  }
}
.products-box .products-txt-wrap .products-btn-wrap .products-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  padding: 12px 48px;
  background: linear-gradient(to right, #0767ba 0%, #15acd8 100%);
}
@media (any-hover: hover) {
  .products-box .products-txt-wrap .products-btn-wrap .products-btn:hover {
    opacity: 0.7;
  }
}
.products-box .products-txt-wrap .products-btn-wrap .products-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 8px;
  top: calc(50% - 4px);
  right: 16px;
  background: url(/special/fiole-view_25/assets/images/icn_arr_white.svg) no-repeat right center/26px auto;
}
.products-box .products-txt-wrap .products-btn-wrap .products-bd-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 48px;
  color: #181f1f;
  border: 1px solid #181f1f;
}
@media (any-hover: hover) {
  .products-box .products-txt-wrap .products-btn-wrap .products-bd-btn:hover {
    opacity: 0.7;
  }
}
.products-box .products-txt-wrap .products-btn-wrap .products-bd-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 8px;
  top: calc(50% - 4px);
  right: 16px;
  background: url(/special/fiole-view_25/assets/images/icn_arr.svg) no-repeat right center/26px auto;
}

/* salon */
.salon-section {
  padding: 88px 0 96px;
  background: url(/special/fiole-view_25/assets/images/bg_salon.webp) no-repeat center top/cover;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .salon-section {
    padding: 64px 0;
  }
}
@media screen and (min-width: 768px) {
  .salon-section .cmn-inner {
    width: 1024px;
  }
}

.salon-box {
  display: flex;
  gap: 80px;
  padding: 0 48px;
}
@media screen and (max-width: 767px) {
  .salon-box {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 0;
  }
}
.salon-box .logo {
  width: 222px;
}
.salon-box .salon-txt-wrap {
  flex: 1;
}
.salon-box .salon-txt-wrap .salon-ttl {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .salon-box .salon-txt-wrap .salon-ttl {
    text-align: center;
    zoom: 0.75;
  }
}
.salon-box .salon-txt-wrap p {
  line-height: 2.25;
}

.stylist-list {
  display: flex;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #181f1f;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .stylist-list {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.stylist-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 96px) / 4);
  border: 1px solid #181f1f;
  background-color: #181f1f;
  overflow: hidden;
  border-radius: 111px;
  gap: 16px;
  padding-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .stylist-list li {
    width: calc((100% - 16px) / 2);
  }
}
.stylist-list li .img {
  border-radius: 111px;
  overflow: hidden;
}
.stylist-list li .name-wrap {
  color: #fff;
  text-align: center;
}
.stylist-list li .name-wrap .en {
  font-size: 2rem;
  font-family: "Jost", sans-serif;
}
.stylist-list li .name-wrap .jp {
  font-size: 1.4rem;
}
.stylist-list li .icn-link {
  display: block;
  width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
}
.stylist-list li:nth-of-type(2n) {
  padding-top: 24px;
  padding-bottom: 0;
}
.stylist-list li:nth-of-type(2n) .img {
  order: 3;
}
.stylist-list li:nth-of-type(2n) .name-wrap {
  order: 2;
}
.stylist-list li:nth-of-type(2n) .icn-link {
  order: 1;
}

/* modal */
.black-mat {
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}

.modal-pop {
  display: none;
  width: 100%;
  max-width: 800px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
}
@media screen and (max-width: 767px) {
  .modal-pop {
    padding: 0 16px;
  }
}

.modal-pop.show {
  display: block;
}

.close {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: calc(100% + 16px);
  right: 0;
}
@media screen and (max-width: 767px) {
  .close {
    right: 16px;
    width: 36px;
    height: 36px;
    bottom: calc(100% + 8px);
  }
}

.modal-pop .contents-pop {
  width: 100%;
}

.contents-pop {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-pop {
  aspect-ratio: 16/9;
}

.video {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}