@charset "UTF-8";
/* ---------------------------- */
/* Base
/* ---------------------------- */
:root {
  --font: "Puritan", 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", メイリオ, Meiryo "system-ui", sans-serif;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 150px;
  margin: 0;
  font-size: 62.5%;
  box-sizing: border-box;
}

/* 変更 */
main .l-inner {
  margin: 0 auto;
}

main .l-inner * {
  box-sizing: border-box;
}

main .l-inner article {
  width: 100%;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.ftool-wrapper {
  background-color: #fff;
}

.ftool-wrapper p {
  line-height: 1em;
}

.ftool-wrapper .col--02--C {
  width: auto;
}

/*fix*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translate(0, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translate(0, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time05 {
  animation-delay: 0.5s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time12 {
  animation-delay: 1.2s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time25 {
  animation-delay: 2.5s;
}

.delay-time3 {
  animation-delay: 3s;
}

.delay-time35 {
  animation-delay: 3.5s;
}

.delay-time4 {
  animation-delay: 4s;
}

.delay-time45 {
  animation-delay: 4.5s;
}

.ftool-wrapper .ref-item .name {
  font-size: 12px;
}

.ftool-wrapper .col--02--C {
  width: auto;
}

/* フェードアウトのアニメーション */
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.box-wrapper .pc {
  display: none;
}
@media screen and (min-width: 750px) {
  .box-wrapper .pc {
    display: block;
  }
}
.box-wrapper .sp {
  display: block;
}
@media screen and (min-width: 750px) {
  .box-wrapper .sp {
    display: none;
  }
}

/* ---------------------------- */
/* Initialize
/* ---------------------------- */

:root {
  --text-color: #747B70;
  --main-color: #BAD18C;
  --sub-color: #DEE8C8;
  --bg-color-00: #fff;
  --bg-color-01: #FAF7F2;
  --bg-color-02: #EFF4E4;
  --font-size-heading-xl: 160px;
  --font-size-heading-l: 64px;
  --font-size-heading-m: 48px;
  --font-size-heading-s: 40px;
  --font-size-heading-xs: 28px;
  --font-size-l: 16px;
  --font-size-m: 14px;
  --font-size-s: 12px;
  --font-size-xs: 10px;
  --line-height-xl: 2;
  --line-height-l: 1.75;
  --line-height-m: 1.5;
  --line-height-s: 1.25;
  --line-height-xs: 1;
  --line-height-xxs: .875;
}

body {
  overflow-x: clip;
}

.ftool-wrapper p {
  margin-bottom: 0;
  line-height: var(--line-height-l);
}

.box-wrapper {
  font: normal 400 16px/1.75 "Inter", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  background: var(--bg-color-00);
  color: var(--text-color);
  position: relative;
  overflow-x: clip;
}

.box-wrapper a:link,
.box-wrapper a:visited {
  color: var(--text-color);
  text-decoration: none;
  opacity: 1;
  transition: .3s ease;
}

.box-wrapper a:hover,
.box-wrapper a:active {
  color: var(--text-color);
  text-decoration: none;
}

/* ---------------------------- */
/* Font
/* ---------------------------- */

.box-wrapper .-playfair {
  font-family: "Playfair", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.box-wrapper .-ttcp {
  font-family: "tt-commons-pro", sans-serif;
  font-style: normal;
}

.box-wrapper .-fw_100 { font-weight: 100; }
.box-wrapper .-fw_200 { font-weight: 200; }
.box-wrapper .-fw_300 { font-weight: 300; }
.box-wrapper .-fw_400 { font-weight: 400; }
.box-wrapper .-fw_500 { font-weight: 500; }
.box-wrapper .-fw_600 { font-weight: 600; }
.box-wrapper .-fw_700 { font-weight: 700; }
.box-wrapper .-fw_800 { font-weight: 800; }
.box-wrapper .-fw_900 { font-weight: 900; }

/* ---------------------------- */
/* Image
/* ---------------------------- */

.box-wrapper img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}

.box-wrapper .-pic {
	display: block;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
	position: relative;
}

.box-wrapper .-pic > .-img {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	padding-top: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

/* ---------------------------- */
/* Text
/* ---------------------------- */

.box-wrapper .-text_box > * { margin-bottom: 1.75em; }
.box-wrapper .-text_box > *:last-child { margin-bottom: 0; }

.box-wrapper .-ls_-200 { letter-spacing: -.2em; }
.box-wrapper .-ls_-175 { letter-spacing: -.175em; }
.box-wrapper .-ls_-150 { letter-spacing: -.15em; }
.box-wrapper .-ls_-125 { letter-spacing: -.125em; }
.box-wrapper .-ls_-100 { letter-spacing: -.1em; }
.box-wrapper .-ls_-75 { letter-spacing: -.075em; }
.box-wrapper .-ls_-50 { letter-spacing: -.05em; }
.box-wrapper .-ls_-25 { letter-spacing: -.025em; }
.box-wrapper .-ls_25 { letter-spacing: .025em; }
.box-wrapper .-ls_50 { letter-spacing: .05em; }
.box-wrapper .-ls_75 { letter-spacing: .075em; }
.box-wrapper .-ls_100 { letter-spacing: .1em; }
.box-wrapper .-ls_125 { letter-spacing: .125em; }
.box-wrapper .-ls_150 { letter-spacing: .15em; }
.box-wrapper .-ls_175 { letter-spacing: .175em; }
.box-wrapper .-ls_200 { letter-spacing: .2em; }

/* ---------------------------- */
/* Inner
/* ---------------------------- */

.box-wrapper * > .-inner {
	width: 86%;
	margin: 0 auto;
}

/* ---------------------------- */
/* KV
/* ---------------------------- */

.box-wrapper #--251126_slobe__kv > .-inner {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: var(--bg-color-00);
  padding: 36px 0 64px;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box > .-inner {
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-title {
  width: 156px;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-title-lead p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-m);
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 2;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-tl {
  top: 0;
  left: 0;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-tl::before,
.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-tl::after {
  display: block;
  content: '';
  position: absolute;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-tl::before {
  width: 48px;
  height: 1px;
  background: var(--text-color);
  top: 0;
  left: -12px;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-tl::after {
  width: 1px;
  height: 72px;
  background: var(--text-color);
  top: -16px;
  left: 0;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-rb {
  width: 64px;
  height: 48px;
  border-right: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  right: 0;
  bottom: 0;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-slobe {
  width: 56px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  margin-left: -28px;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pics {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic-sp {
  width: 100%;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic-sp > .-img {
  padding-top: 103%;
  background-image: url(../images/kv/kv_sp.jpg);
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pics-text {
  position: absolute;
  bottom: -20px;
  right: -96px;
  width: 280px;
  opacity: .6;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pics-text p {
  font-size: 12px;
  line-height: var(--line-height-s);
  color: var(--bg-color-00);
  word-break: break-all;
  margin: 0;
}

.box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic {
  display: none;
}

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

  .box-wrapper #--251126_slobe__kv {
    height: 100dvh;
    max-height: 800px;
  }

  .box-wrapper #--251126_slobe__kv > .-inner {
    max-width: 1920px;
    height: 100%;
    flex-direction: row;
    justify-content: flex-end;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box {
    width: 36%;
    height: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box > .-inner {
    width: 336px;
    max-width: 80%;
    padding: 56px 0;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-contents {
    gap: 24px;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-title {
    width: 225px;
    max-width: 75%;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-title-lead {
    max-width: 75%;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-title-lead p {
    font-size: var(--font-size-s);
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-tl::before {
    width: 50%;
    left: -24px;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-tl::after {
    height: 70%;
    top: -40px;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box-border-rb {
    width: 65%;
    height: 50%;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-slobe {
    width: 56px;
    bottom: 32px;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pics {
    width: 64%;
    height: 100%;
    display: flex;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic-sp {
    display: none;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pics-text {
    bottom: -32px;
    right: -16px;
    width: 460px;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pics-text p {
    font-size: 20px;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic {
    display: block;
    width: calc(100% / 3);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic-01 {
    background-image: url(../images/kv/kv_01.jpg);
    background-position: center top;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic-02 {
    background-image: url(../images/kv/kv_02.jpg);
    background-position: center center;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-pic-03 {
    background-image: url(../images/kv/kv_03.jpg);
    background-position: center center;
  }

}

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

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-box > .-inner {
    max-width: initial;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-title {
    max-width: initial;
  }

  .box-wrapper #--251126_slobe__kv .--251126_slobe__kv-title-lead {
    max-width: initial;
  }

}

/* ---------------------------- */
/* Lead
/* ---------------------------- */

.box-wrapper #--251126_slobe__lead {
  background: var(--bg-color-01);
}

.box-wrapper #--251126_slobe__lead > .-inner {
  padding: 64px 0 0;
}

.box-wrapper #--251126_slobe__lead p {
  margin: 0;
  font-size: var(--font-size-s);
  line-height: var(--line-height-xl);
  text-align: center;
}

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

  .box-wrapper #--251126_slobe__lead > .-inner {
    padding-top: 120px;
  }

  .box-wrapper #--251126_slobe__lead p {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--font-size-m);
  }

  .box-wrapper #--251126_slobe__lead p br {
    display: none;
  }

}

/* ---------------------------- */
/* Anchor
/* ---------------------------- */

.box-wrapper #--251126_slobe__anchor {
  background: var(--bg-color-01);
}

.box-wrapper #--251126_slobe__anchor > .-inner {
  padding: 64px 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block > .-inner {
  width: 100%;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block > .-inner > a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-item {
  width: calc(calc(100% - 32px) / 3);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-color-00);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: relative;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents::before {
  display: block;
  content: '';
  width: 9px;
  height: 5px;
  background: url(../images/arrow_down.svg) no-repeat center center / cover;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%, 0);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-num {
  font-size: var(--font-size-heading-m);
  line-height: var(--line-height-xs);
  color: var(--sub-color);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-text > span {
  white-space: nowrap;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-text-name {
  font-size: 20px;
  line-height: var(--line-height-xs);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-text-lead {
  font-size: 11px;
  line-height: var(--line-height-xs);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-pic {
  transition: .3s ease;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-pic:hover {
  opacity: .6;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-pic > .-img {
  padding-top: 150%;
}

/* 01 Makiko */

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-01 .--251126_slobe__anchor-block-item-01 > .-img {
  background-image: url(../images/item/01.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-01 .--251126_slobe__anchor-block-item-02 > .-img {
  background-image: url(../images/item/02.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-01 .--251126_slobe__anchor-block-item-03 > .-img {
  background-image: url(../images/item/03.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-01 .--251126_slobe__anchor-block-item-04 > .-img {
  background-image: url(../images/item/04.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-01 .--251126_slobe__anchor-block-item-05 > .-img {
  background-image: url(../images/item/05.jpg);
}

/* 02 Yui */

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-02 .--251126_slobe__anchor-block-item-01 {
  order: -2;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-02 .--251126_slobe__anchor-block-item-01 > .-img {
  background-image: url(../images/item/06.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-02 .--251126_slobe__anchor-block-item-02 {
  order: -1;
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-02 .--251126_slobe__anchor-block-item-02 > .-img {
  background-image: url(../images/item/07.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-02 .--251126_slobe__anchor-block-item-03 > .-img {
  background-image: url(../images/item/08.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-02 .--251126_slobe__anchor-block-item-04 > .-img {
  background-image: url(../images/item/09.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-02 .--251126_slobe__anchor-block-item-05 > .-img {
  background-image: url(../images/item/10.jpg);
}

/* 03 Wakiko */

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-03 .--251126_slobe__anchor-block-item-01 > .-img {
  background-image: url(../images/item/10.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-03 .--251126_slobe__anchor-block-item-02 > .-img {
  background-image: url(../images/item/11.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-03 .--251126_slobe__anchor-block-item-03 > .-img {
  background-image: url(../images/item/12.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-03 .--251126_slobe__anchor-block-item-04 > .-img {
  background-image: url(../images/item/13.jpg);
}

.box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-03 .--251126_slobe__anchor-block-item-05 > .-img {
  background-image: url(../images/item/14.jpg);
}

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

  .box-wrapper #--251126_slobe__anchor > .-inner {
    max-width: 464px;
    padding: 120px 0;
    gap: 56px;
  }

  .box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block > .-inner > a {
    gap: 16px;
  }

  .box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents::before {
    width: 12px;
    height: 6px;
    bottom: -20px;
  }

  .box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-num {
    font-size: var(--font-size-heading-l);
  }

  .box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-text-name {
    font-size: var(--font-size-heading-xs);
  }

  .box-wrapper #--251126_slobe__anchor .--251126_slobe__anchor-block-heading-contents-text-lead {
    font-size: var(--font-size-l);
  }
  
}

/* ---------------------------- */
/* Stylists
/* ---------------------------- */

.box-wrapper #--251126_slobe__stylists > .-inner {
  width: 100%;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist > .-inner {
  width: 100%;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents > .-inner {
  padding: 104px 0 56px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box > .-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 2;
  position: relative;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading {
  position: relative;
  z-index: 1;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-num {
  font-size: 80px;
  line-height: var(--line-height-xs);
  color: var(--sub-color);
  position: absolute;
  top: -56px;
  left: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-heading-num {
  top: -48px;
  right: 0;
  left: auto;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-heading-desc {
  align-items: flex-end;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-name {
  font-size: 36px;
  line-height: var(--line-height-xxs);
  margin: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-text {
  width: 60%;
  position: relative;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-text::before {
  display: block;
  content: '';
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--bg-color-00);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-text p {
  font-size: var(--font-size-s);
  line-height: var(--line-height-m);
  margin: 0;
  position: relative;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: 2;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-tl {
  top: 0;
  left: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-tl::before,
.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-tl::after {
  display: block;
  content: '';
  position: absolute;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-tl::before {
  width: calc(100% - 128px);
  height: 1px;
  background: var(--text-color);
  top: -24px;
  right: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-tl::after {
  width: 1px;
  height: calc(100% - 160px);
  background: var(--text-color);
  bottom: 0;
  left: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-contents-box-border-tl::before {
  right: auto;
  left: 8px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-contents-box-border-tl::after {
  right: 12px;
  left: auto;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-rb {
  width: calc(100% - 10px);
  height: calc(100% + 24px);
  border-right: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  right: -16px;
  bottom: 12px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-contents-box-border-rb {
  height: calc(100% - 40px);
  border-left: 1px solid var(--text-color);
  left: -12px;
  border-right: none;
  right: auto
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents > .-inner {
    max-width: 750px;
    padding: 160px 0 80px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-num {
    font-size: var(--font-size-heading-xl);
    top: -96px;
    left: -32px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-heading-num {
    top: -96px;
    right: -32px;
    left: auto;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-name {
    font-size: var(--font-size-heading-l);
    line-height: var(--line-height-s);
    flex-direction: row;
    gap: .25em;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-text {
    width: 380px;
    padding: 0 0 0 40px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-heading-desc-text {
    padding-right: 24px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-text::before {
    display: block;
    content: '';
    width: 28px;
    height: 1px;
    background: var(--text-color);
    position: absolute;
    top: 10px;
    left: 0;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-heading-desc-text p {
    font-size: var(--font-size-m);
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-tl::before {
    width: calc(100% - 224px);
    top: -24px;
    right: 32px;
  }


  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-contents-box-border-tl::before {
    left: -40px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-contents-box-border-tl::after {
  right: 0;
}

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-box-border-rb {
    right: 0;
    bottom: 40px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-even .--251126_slobe__stylist-contents-box-border-rb {
    left: -20px;
  }

}

/* Cropped ----------------- */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-cropped {
  position: absolute;
}

/* 01 Makiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-cropped {
    width: 174px;
    top: -48px;
    right: -20px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-cropped > .-img {
  padding-top: 170%;
  background-image: url(../images/01/01.png);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-cropped {
    width: 309px;
    top: -72px;
    right: auto;
    left: 430px;
  }

}

/* 02 Yui */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-cropped {
  width: 168px;
  top: -48px;
  left: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-cropped > .-img {
  padding-top: 162%;
  background-image: url(../images/02/01.png);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-cropped {
    width: 309px;
    top: -56px;
    left: 8px;
  }

}

/* 03 Wakiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-cropped {
  width: 156px;
  top: -48px;
  right: -20px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-cropped > .-img {
  padding-top: 184%;
  background-image: url(../images/03/01.png);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-cropped {
    width: 278px;
    top: -72px;
    right: auto;
    left: 430px;
  }

}

/* Pics ----------------- */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pics {
  display: flex;
  flex-direction: column;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic {
  width: 45%;
  max-width: 304px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic > .-img {
  padding-top: 150%;
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pics {
    flex-direction: row;
    align-items: flex-start;
  }


  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic {
    width: 40%;
  }

}

/* 01 Makiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pics {
  gap: 40px;
  margin: 0 0 0 -4%;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-01 {
  margin-right: 24%;
  margin-left: auto;
  top: -32px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-01 > .-img {
  background-image: url(../images/01/02.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-02 {
  top: -40px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-02 > .-img {
  background-image: url(../images/01/03.jpg);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pics {
    gap: 2%;
    margin: 0 104px 0 2.5%;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-01 {
    margin-top: 168px;
    margin-right: 0;
    margin-left: 0;
    top: auto;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-02 {
    top: auto;
    margin-top: 24px;
  }

}

/* 02 Yui */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pics {
  gap: 40px;
  margin: 0 -4% 0 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-01 {
  margin: 40px 0 0 24%;
  top: -32px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-01 > .-img {
  background-image: url(../images/02/02.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-02 {
  top: -40px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-02 > .-img {
  background-image: url(../images/02/03.jpg);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pics {
    gap: 2%;
    margin: 0 104px 0 2.5%;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-01 {
    margin-top: 220px;
    margin-left: 0;
    top: auto;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-02 {
    top: auto;
  }

}

/* 03 Wakiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pics {
    gap: 40px;
    margin: 0 0 0 -4%;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-01 {
  margin-left: 32%;
  top: -24px;
  z-index: 1;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-01 > .-img {
  background-image: url(../images/03/02.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-02 {
  top: -38px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-02 > .-img {
  background-image: url(../images/03/03.jpg);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pics {
    gap: 2%;
    margin: 0 104px 0 2.5%;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-01 {
    margin-top: 168px;
    margin-left: 0;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-02 {
    margin-top: 24px;
  }

}

/* Comment ----------------- */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment {
  background: var(--main-color);
  color: var(--bg-color-00);
  padding: 12px 14px 10px;
  font-size: var(--font-size-xs);
  position: absolute;
  bottom: 0;
  left: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::before,
.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::after {
  display: block;
  content: '';
  width: 10px;
  height: 8px;
  position: absolute;
  background: no-repeat center center / cover;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::before {
  background-image: url(../images/quotes-l.svg);
  top: 7px;
  left: 7px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::after {
  background-image: url(../images/quotes-r.svg);
  right: 7px;
  bottom: 7px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment p {
  margin: 0;
  display: flex;
  flex-direction: column;
  line-height: var(--line-height-l);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment {
    min-width: 240px;
    padding: 16px 24px 16px;
    font-size: var(--font-size-s);
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::before,
  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::after {
    width: 12px;
    height: 10px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::before {
    top: 10px;
    left: 10px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-pic-comment::after {
    right: 10px;
    bottom: 10px;
  }

}

/* 01 Makiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-01 .--251126_slobe__stylist-body-pic-comment {
  bottom: -16px;
  left: -24px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-02 .--251126_slobe__stylist-body-pic-comment {
  right: -12px;
  bottom: -16px;
  left: auto;
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-01 .--251126_slobe__stylist-body-pic-comment {
    bottom: -24px;
    left: -32px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-body-pic-02 .--251126_slobe__stylist-body-pic-comment {
    top: 32px;
    right: auto;
    bottom: auto;
    left: -208px;
  }

}

/* 02 Yui */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-01 .--251126_slobe__stylist-body-pic-comment {
  width: 86%;
  bottom: -16px;
  left: -24px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-02 .--251126_slobe__stylist-body-pic-comment {
  right: -12px;
  bottom: -16px;
  left: 12px;
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-01 .--251126_slobe__stylist-body-pic-comment {
    width: auto;
    bottom: -24px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-body-pic-02 .--251126_slobe__stylist-body-pic-comment {
    top: 40px;
    right: auto;
    bottom: auto;
    left: 192px;
  }

}

/* 03 Wakiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-01 .--251126_slobe__stylist-body-pic-comment {
  width: 90%;
  bottom: -16px;
  left: -20px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-02 .--251126_slobe__stylist-body-pic-comment {
  right: -32px;
  bottom: -16px;
  left: auto;
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-01 .--251126_slobe__stylist-body-pic-comment {
    width: auto;
    bottom: -24px;
    left: -32px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-body-pic-02 .--251126_slobe__stylist-body-pic-comment {
    top: 32px;
    right: auto;
    bottom: auto;
    left: -208px;
  }

}

/* 　Insta ----------------- */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-insta {
  width: 142px;
  position: absolute;
  right: 0;
  bottom: -24px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-insta a {
  display: block;
  position: relative;
  transition: .3s ease;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-insta a:hover {
  opacity: 1;
  transform: rotate(2deg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-insta a:hover img {
  opacity: 1;
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-body-insta {
    width: 216px;
    right: -24px;
    bottom: -24px;
  }

}

/* Bottom ----------------- */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-bottom > .-inner {
  width: 100%;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-bottom {
  padding: 48px 0 40px;
  overflow: hidden;
}

/* 01 Makiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-contents-bottom {
  background: var(--bg-color-02);
}

/* 02 Yui */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-contents-bottom {
  background: var(--bg-color-01);
}

/* 03 Wakiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-contents-bottom {
  background: var(--bg-color-02);
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-contents-bottom {
    padding: 72px 0 56px;
  }

}

/* Slider ----------------- */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slider {
  position: relative;
  overflow: hidden;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide {
  height: auto;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-title {
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  opacity: 0;
  transition: 1s ease;
}

.box-wrapper #--251126_slobe__stylists .swiper-slide-active .--251126_slobe__stylist-slide-title {
  opacity: 1;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-pic {
  margin-bottom: 32px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-pic > .-img {
  padding-top: 150%;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: 1s ease;
}

.box-wrapper #--251126_slobe__stylists .swiper-slide-active .--251126_slobe__stylist-slide-credit {
  opacity: 1;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-l);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-row {
  display: flex;
  align-items: flex-start;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-row > span {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-row > span::after {
  display: inline-block;
  content: '/';
  margin: 0 .5em;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-row > span:last-of-type::after {
  display: none;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-backordered {
  opacity: .6;
  margin-top: 2px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-size > span:nth-of-type(1)::after,
.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-color > span:nth-of-type(1)::after {
  display: inline-block;
  content: ':';
  margin: 0 .2em;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-row a {
  text-decoration: underline;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-row a:hover {
  text-decoration: none;
  opacity: .6;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment {
  background: var(--bg-color-00);
  margin-top: 8px;
  padding: 40px 32px;
  position: relative;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border {
  position: absolute;
  width: 64px;
  height: 40px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-tl {
  top: 12px;
  left: 12px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-tl::before,
.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-tl::after {
  display: block;
  content: '';
  background: var(--text-color);
  position: absolute;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-tl::before {
  width: 100%;
  height: 1px;
  top: 8px;
  left: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-tl::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 12px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-rb {
  right: 12px;
  bottom: 12px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-rb::before,
.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-rb::after {
  display: block;
  content: '';
  background: var(--text-color);
  position: absolute;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-rb::before {
  width: 100%;
  height: 1px;
  bottom: 8px;
  right: 0;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-border-rb::after {
  width: 1px;
  height: 100%;
  bottom: 0;
  right: 12px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment > .-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-heading {
  font-size: var(--font-size-l);
  line-height: var(--line-height-xs);
  display: flex;
  align-items: center;
  gap: .25em;
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-body {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-m);
}

.box-wrapper #--251126_slobe__stylists .swiper-button-next,
.box-wrapper #--251126_slobe__stylists .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: no-repeat center center / 10px 20px;
  position: absolute;
  top: 0;
  margin-top: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.box-wrapper #--251126_slobe__stylists .swiper-button-prev {
    left: 2.5%;
    right: auto;
    background-image: url(../images/arrow_left.svg);
}

.box-wrapper #--251126_slobe__stylists .swiper-button-next {
    right: 2.5%;
    left: auto;
    background-image: url(../images/arrow_right.svg);
}

.box-wrapper #--251126_slobe__stylists .swiper-button-prev:after,
.box-wrapper #--251126_slobe__stylists .swiper-button-next:after {
    display: none;
}

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

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-title {
    font-size: var(--font-size-heading-xs);
    line-height: var(--line-height-m);
    margin-bottom: 40px;
  }

  .box-wrapper #--251126_slobe__stylists .swiper-button-prev {
    left: calc(36% - 40px);
  }
  
  .box-wrapper #--251126_slobe__stylists .swiper-button-next {
    right: calc(36% - 40px);
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-box {
    font-size: var(--font-size-s);
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment {
    margin-top: 12px;
    padding: 40px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment > .-inner {
    gap: 24px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-heading {
    font-size: 20px;
  }

  .box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist-slide-credit-comment-body {
    font-size: var(--font-size-s);
  }

}

/* 01 Makiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-slide-pic-01 > .-img {
  background-image: url(../images/item/01.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-slide-pic-02 > .-img {
  background-image: url(../images/item/02.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-slide-pic-03 > .-img {
  background-image: url(../images/item/03.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-slide-pic-04 > .-img {
  background-image: url(../images/item/04.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-slide-pic-05 > .-img {
  background-image: url(../images/item/05.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-slide-pic-06 > .-img {
  background-image: url(../images/item/a-01.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#makiko .--251126_slobe__stylist-slide-pic-07 > .-img {
  background-image: url(../images/item/a-02.jpg);
}

/* 02 Yui */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-slide-pic-01 > .-img {
  background-image: url(../images/item/06.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-slide-pic-02 > .-img {
  background-image: url(../images/item/07.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-slide-pic-03 > .-img {
  background-image: url(../images/item/08.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-slide-pic-04 > .-img {
  background-image: url(../images/item/10.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-slide-pic-05 > .-img {
  background-image: url(../images/item/09.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-slide-pic-06 > .-img {
  background-image: url(../images/item/b-01.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#yui .--251126_slobe__stylist-slide-pic-07 > .-img {
  background-image: url(../images/item/b-02.jpg);
}

/* 03 Wakiko */

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-slide-pic-01 > .-img {
  background-image: url(../images/item/10.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-slide-pic-02 > .-img {
  background-image: url(../images/item/11.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-slide-pic-03 > .-img {
  background-image: url(../images/item/12.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-slide-pic-04 > .-img {
  background-image: url(../images/item/13.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-slide-pic-05 > .-img {
  background-image: url(../images/item/14.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-slide-pic-06 > .-img {
  background-image: url(../images/item/c-01.jpg);
}

.box-wrapper #--251126_slobe__stylists .--251126_slobe__stylist#wakiko .--251126_slobe__stylist-slide-pic-07 > .-img {
  background-image: url(../images/item/c-02.jpg);
}

/* ---------------------------- */
/* Footer
/* ---------------------------- */

.box-wrapper #--251126_slobe__footer > .-inner {
  padding: 64px 0;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-contents > .-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-staff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-staff-heading {
  font-size: 32px;
  line-height: var(--line-height-xs);
  text-align: center;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-staff-desc p {
  font-size: var(--font-size-s);
  line-height: var(--line-height-m);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links-heading {
  width: 96px;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links-desc ul {
  display: flex;
  gap: 12px;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links-desc a {
  font-size: var(--font-size-s);
  line-height: var(--line-height-xs);
  text-decoration: underline;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links-desc a:hover,
.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links-desc a:active {
  text-decoration: none;
  opacity: .7;
}

.box-wrapper #--251126_slobe__footer .--251126_slobe__footer-copyright {
  font-size: var(--font-size-xs);
  line-height: var(--line-height-m);
  text-align: center;
}

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

  .box-wrapper #--251126_slobe__footer > .-inner {
    max-width: 640px;
    padding: 96px 0 64px;
  }

  .box-wrapper #--251126_slobe__footer .--251126_slobe__footer-contents > .-inner {
    gap: 64px;
  }

  .box-wrapper #--251126_slobe__footer .--251126_slobe__footer-staff {
    gap: 16px;
  }

  .box-wrapper #--251126_slobe__footer .--251126_slobe__footer-staff-heading {
    font-size: var(--font-size-heading-s);
  }

  .box-wrapper #--251126_slobe__footer .--251126_slobe__footer-staff-desc p {
    font-size: var(--font-size-m);
  }

  .box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links-heading {
    width: 120px;
  }

  .box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links {
    gap: 24px;
  }

  .box-wrapper #--251126_slobe__footer .--251126_slobe__footer-links-desc a {
    font-size: var(--font-size-m);
  }

}
.buy-button {
  margin-left: 12px;
  font-size: 12px;
  color: #333;
  text-decoration: none; /* カッコへの下線を消す */
  cursor: pointer;
}
@media screen and (min-width: 750px) {
.buy-button {
  font-size: 10px !important;
}
}

.buy-underline {
  text-decoration: underline; /* BUY にだけ下線 */
}

.buy-button:hover .buy-underline {
  opacity: 0.7;
}
/* デフォルト：PC・タブレットでは改行させない */
br.sp-only {
  display: none;
}

/* SPのみ改行させる（例：幅767px以下をSPとみなす） */
@media screen and (max-width: 750px) {
  br.sp-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .buy-sp-down {
    display: block;
    margin-top: .5em;
  }
}