@charset "UTF-8";
/* resset.dev • v5.0.2 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
  color: inherit; /* Correct border color in Firefox. */
}

details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled=true] {
  cursor: default;
}

ul {
  list-style: none;
}

:root {
  --vw: 1vw;
}

@keyframes hamburgerOn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes hamburgerOff {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
/*===========
inview
===========*/
.inview {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.inview.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
}
.anm {
  transition-delay: 0.5s;
}

.anm_top {
  transition: 1s;
  transform: translateY(0%);
}
.anm_top.off {
  transform: translateY(-25%);
}

.anm_right {
  transition: 1s;
  transform: translateX(0%);
}
.anm_right.off {
  transform: translateX(25%);
}

.anm_bottom {
  transition: 1s;
  transform: translateY(0%);
}
.anm_bottom.off {
  transform: translateY(25%);
}

.anm_left {
  transition: 1s;
  transform: translateX(0%);
}
.anm_left.off {
  transform: translateX(-25%);
}

.pb11sp {
  padding-bottom: calc(2.8205128205 * var(--vw));
}

.lineup-detail .lineup__btn--back a {
  color: #fff !important;
}

@media screen and (min-width: 751px) {
  .adj-sp {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .adj-sp {
    height: 2px;
  }
}

.mb30 {
  margin-bottom: calc(2.0833333333 * var(--vw));
}
@media screen and (max-width: 750px) {
  .mb30 {
    margin-bottom: calc(7.6923076923 * var(--vw));
  }
}

.mt70 {
  margin-top: calc(4.8611111111 * var(--vw));
}
@media screen and (max-width: 750px) {
  .mt70 {
    margin-top: calc(10.2564102564 * var(--vw));
  }
}

.mb140 {
  margin-bottom: calc(9.7222222222 * var(--vw));
}
@media screen and (max-width: 750px) {
  .mb140 {
    margin-bottom: calc(17.9487179487 * var(--vw));
  }
}

.pd-tb30 {
  padding-top: calc(2.0833333333 * var(--vw));
  padding-bottom: calc(2.0833333333 * var(--vw));
}
@media screen and (max-width: 750px) {
  .pd-tb30 {
    padding-top: calc(7.6923076923 * var(--vw));
    padding-bottom: calc(7.6923076923 * var(--vw));
  }
}

#HAIR753 .sec-in {
  width: 100%;
  max-width: 1060px;
  height: 100%;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  #HAIR753 .sec-in {
    padding-right: calc(2.0833333333 * var(--vw));
    padding-left: calc(2.0833333333 * var(--vw));
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .sec-in {
    padding-right: 0;
    padding-left: 0;
  }
}

#HAIR753 {
  position: relative;
  transition: 1s;
  /*
   * {
    font-feature-settings: "palt";
    letter-spacing: .05em;
  }
    */
}
#HAIR753.is-loading {
  opacity: 0;
}
#HAIR753 .ttl {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: inherit;
}
#HAIR753 #wrapper {
  width: 100%;
  padding-bottom: 0;
}
#HAIR753 *,
#HAIR753 *::before, #HAIR753::after {
  box-sizing: border-box;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #HAIR753 img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 img {
    image-rendering: auto;
  }
}
#HAIR753 a {
  color: inherit;
}
#HAIR753 .sec {
  position: relative;
}
#HAIR753 .sec-in {
  position: relative;
}
#HAIR753 .kv-bg {
  background: url(../img/top-kv-bg.jpg) no-repeat 0 0/cover;
}
#HAIR753 .top-kv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#HAIR753 .top-kv__ttl {
  margin: calc(4.8611111111 * var(--vw)) auto 0 auto;
  width: calc(56.3888888889 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .top-kv__ttl {
    margin: 70px auto 0 auto;
    width: 812px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .top-kv__ttl {
    margin-top: calc(8.9743589744 * var(--vw));
    width: 90%;
  }
}
#HAIR753 .top-kv__lead {
  margin: calc(1.7361111111 * var(--vw)) auto 0 auto;
  font-size: calc(1.25 * var(--vw));
  line-height: calc(2.2222222222 * var(--vw));
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .top-kv__lead {
    margin: 25px auto 0 auto;
    font-size: 18px;
    line-height: 32px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .top-kv__lead {
    width: 90%;
    font-size: calc(3.5897435897 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
  }
}
#HAIR753 .top-kv__catch {
  margin: 0 auto;
  width: calc(52.9166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .top-kv__catch {
    width: 762px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .top-kv__catch {
    width: 90%;
  }
}
#HAIR753 .top-kv__btn {
  margin: calc(0.3472222222 * var(--vw)) 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(1.3888888889 * var(--vw));
  padding-bottom: calc(2.7777777778 * var(--vw));
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .top-kv__btn {
    margin: 5px 0 auto;
    gap: 20px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .top-kv__btn {
    gap: calc(5.1282051282 * var(--vw));
    padding-bottom: calc(10.2564102564 * var(--vw));
  }
}
#HAIR753 .top-kv__btn .btn {
  width: calc(16.3194444444 * var(--vw));
  text-align: center;
  font-size: calc(1.3888888889 * var(--vw));
  line-height: calc(1.9444444444 * var(--vw));
  font-weight: 500;
  border-radius: calc(4.1666666667 * var(--vw));
  padding: calc(1.3888888889 * var(--vw)) 0 calc(1.0416666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .top-kv__btn .btn {
    width: 235px;
    font-size: 20px;
    line-height: 28px;
    border-radius: 60px;
    padding: 20px 0 15px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .top-kv__btn .btn {
    width: 45%;
    font-size: calc(4.1025641026 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
    border-radius: calc(15.3846153846 * var(--vw));
    padding: calc(5.1282051282 * var(--vw)) 0 calc(3.8461538462 * var(--vw));
  }
}
#HAIR753 .top-kv__btn .btn:hover {
  opacity: 0.8;
}
#HAIR753 .top-kv__btn .bg1 {
  background-color: #FCE8EB;
  color: #E7537D;
}
#HAIR753 .top-kv__btn .bg2 {
  background-color: #FDE9DB;
  color: #F0844A;
}
#HAIR753 .top-kv__btn .bg3 {
  background-color: #E5F3F5;
  color: #00B2BC;
}
#HAIR753 .top-kv__btn .bg4 {
  background-color: #E1F0FB;
  color: #20AEE5;
}
#HAIR753 .top-kv .arrow1,
#HAIR753 .top-kv .arrow2,
#HAIR753 .top-kv .arrow3,
#HAIR753 .top-kv .arrow4 {
  position: relative;
  display: inline-block;
  width: calc(1.0625 * var(--vw));
  height: calc(0.6736111111 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .top-kv .arrow1,
  #HAIR753 .top-kv .arrow2,
  #HAIR753 .top-kv .arrow3,
  #HAIR753 .top-kv .arrow4 {
    width: 15.3px;
    height: 9.7px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .top-kv .arrow1,
  #HAIR753 .top-kv .arrow2,
  #HAIR753 .top-kv .arrow3,
  #HAIR753 .top-kv .arrow4 {
    width: calc(3.9230769231 * var(--vw));
    height: calc(2.4871794872 * var(--vw));
  }
}
#HAIR753 .top-kv .arrow1::before,
#HAIR753 .top-kv .arrow1::after,
#HAIR753 .top-kv .arrow2::before,
#HAIR753 .top-kv .arrow2::after,
#HAIR753 .top-kv .arrow3::before,
#HAIR753 .top-kv .arrow3::after,
#HAIR753 .top-kv .arrow4::before,
#HAIR753 .top-kv .arrow4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: calc(0.1388888889 * var(--vw));
  height: calc(0.8333333333 * var(--vw));
  border-radius: 9999px;
  transform-origin: 50% calc(100% - 1px);
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .top-kv .arrow1::before,
  #HAIR753 .top-kv .arrow1::after,
  #HAIR753 .top-kv .arrow2::before,
  #HAIR753 .top-kv .arrow2::after,
  #HAIR753 .top-kv .arrow3::before,
  #HAIR753 .top-kv .arrow3::after,
  #HAIR753 .top-kv .arrow4::before,
  #HAIR753 .top-kv .arrow4::after {
    width: 2px;
    height: 12px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .top-kv .arrow1::before,
  #HAIR753 .top-kv .arrow1::after,
  #HAIR753 .top-kv .arrow2::before,
  #HAIR753 .top-kv .arrow2::after,
  #HAIR753 .top-kv .arrow3::before,
  #HAIR753 .top-kv .arrow3::after,
  #HAIR753 .top-kv .arrow4::before,
  #HAIR753 .top-kv .arrow4::after {
    width: calc(0.5128205128 * var(--vw));
    height: calc(3.0769230769 * var(--vw));
  }
}
#HAIR753 .top-kv .arrow1::before,
#HAIR753 .top-kv .arrow1::after {
  background-color: #E7537D;
}
#HAIR753 .top-kv .arrow2::before,
#HAIR753 .top-kv .arrow2::after {
  background-color: #F0844A;
}
#HAIR753 .top-kv .arrow3::before,
#HAIR753 .top-kv .arrow3::after {
  background-color: #00B2BC;
}
#HAIR753 .top-kv .arrow4::before,
#HAIR753 .top-kv .arrow4::after {
  background-color: #20AEE5;
}
#HAIR753 .top-kv .arrow1::before,
#HAIR753 .top-kv .arrow2::before,
#HAIR753 .top-kv .arrow3::before,
#HAIR753 .top-kv .arrow4::before {
  transform: rotate(45deg);
}
#HAIR753 .top-kv .arrow1::after,
#HAIR753 .top-kv .arrow2::after,
#HAIR753 .top-kv .arrow3::after,
#HAIR753 .top-kv .arrow4::after {
  transform: rotate(-45deg);
}
#HAIR753 .bottom-kv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#HAIR753 .bottom-kv__ttl {
  margin: calc(4.8611111111 * var(--vw)) auto 0 auto;
  padding-top: calc(4.8611111111 * var(--vw));
  width: calc(53.75 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__ttl {
    margin: 70px auto 0 auto;
    padding-top: 70px;
    width: 774px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__ttl {
    margin-top: calc(8.9743589744 * var(--vw));
    padding-top: calc(8.9743589744 * var(--vw));
    width: 90%;
  }
}
#HAIR753 .bottom-kv__lead {
  margin: calc(1.7361111111 * var(--vw)) auto 0 auto;
  font-size: calc(1.25 * var(--vw));
  line-height: calc(2.6388888889 * var(--vw));
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__lead {
    margin: 25px auto 0 auto;
    font-size: 18px;
    line-height: 38px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__lead {
    width: 90%;
    font-size: calc(3.5897435897 * var(--vw));
    line-height: calc(6.6666666667 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn {
  margin: calc(2.7777777778 * var(--vw)) 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: calc(5.9027777778 * var(--vw));
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn {
    margin: 40px 0 auto;
    padding-bottom: 85px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn {
    margin: calc(10.2564102564 * var(--vw)) 0 auto;
    padding-bottom: calc(21.7948717949 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1 {
  width: 40%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(1.7361111111 * var(--vw)) 0 calc(1.7361111111 * var(--vw));
  border: solid calc(0.1388888889 * var(--vw));
  border-radius: calc(6.9444444444 * var(--vw));
  margin-top: calc(1.3888888889 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1 {
    width: 40%;
    padding: 25px 0 25px;
    border: solid 2px;
    border-radius: 100px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1 {
    width: 90%;
    padding: calc(6.4102564103 * var(--vw)) 0 calc(6.4102564103 * var(--vw));
    border-radius: calc(25.641025641 * var(--vw));
    margin-top: calc(5.1282051282 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1__ttl2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: calc(0.6944444444 * var(--vw));
  padding-left: calc(2.4305555556 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1__ttl2 {
    gap: 10px;
    padding-left: 35px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1__ttl2 {
    padding-left: calc(8.9743589744 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1__txt {
  display: flex;
  justify-content: flex-start;
  margin-top: calc(0.6944444444 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1__txt {
    margin-top: 10px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1__txt {
    margin-top: calc(2.5641025641 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1__txt .txt {
  text-align: center;
  font-size: calc(0.9722222222 * var(--vw));
  line-height: calc(1.3888888889 * var(--vw));
  font-weight: 400;
  color: #000;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1__txt .txt {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1__txt .txt {
    font-size: calc(3.0769230769 * var(--vw));
    line-height: calc(5.1282051282 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1 .box3 {
  width: calc(2.6388888889 * var(--vw));
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .box3 {
    width: 38px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .box3 {
    width: calc(9.7435897436 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1 .box4 {
  width: 68%;
  display: flex;
  align-items: center;
  font-size: calc(1.5277777778 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
  font-weight: 600;
  justify-content: center;
  flex-direction: column;
  color: #9B72B0 !important;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .box4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .box4 {
    font-size: calc(3.8461538462 * var(--vw));
    line-height: calc(7.6923076923 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1 .box4 .p1 {
  position: relative;
  display: block;
}
#HAIR753 .bottom-kv__btn .btn-box1 .box4 .p1::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #9B72B0;
  border-right: solid calc(0.2083333333 * var(--vw)) #9B72B0;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .box4 .p1::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #9B72B0;
    border-right: solid 3px #9B72B0;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .box4 .p1::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #9B72B0;
    border-right: solid calc(0.7692307692 * var(--vw)) #9B72B0;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753 .bottom-kv__btn .btn-box1 .pdf-img2 {
  position: absolute;
  top: calc(0.6944444444 * var(--vw));
  right: calc(-0.5555555556 * var(--vw));
  width: calc(5.9722222222 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .pdf-img2 {
    top: 10px;
    right: -8px;
    width: 69px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .bottom-kv__btn .btn-box1 .pdf-img2 {
    top: calc(2.5641025641 * var(--vw));
    right: calc(-7.6923076923 * var(--vw));
    width: calc(22.0512820513 * var(--vw));
  }
}
#HAIR753 .bc5-a {
  border-color: #9B72B0 !important;
}
#HAIR753 .bc5-a:hover {
  background: rgba(115, 114, 176, 0.1);
}
#HAIR753 .contents {
  display: flex;
  align-items: center;
}
#HAIR753 .contents-box {
  margin: calc(8.3333333333 * var(--vw)) auto calc(6.9444444444 * var(--vw));
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box {
    justify-content: center;
  }
}
#HAIR753 .contents-box .cs1 {
  color: #E7537D !important;
}
#HAIR753 .contents-box .cs2 {
  color: #F0844A !important;
}
#HAIR753 .contents-box .cs3 {
  color: #00B2BC !important;
}
#HAIR753 .contents-box .cs4 {
  color: #20AEE5 !important;
}
#HAIR753 .contents-box .bc1 {
  border-color: #E7537D !important;
}
#HAIR753 .contents-box .bc1-a {
  border-color: #E7537D !important;
}
#HAIR753 .contents-box .bc1-a:hover {
  background: rgba(231, 83, 125, 0.1);
}
#HAIR753 .contents-box .bc2 {
  border-color: #F0844A !important;
}
#HAIR753 .contents-box .bc2-a {
  border-color: #F0844A !important;
}
#HAIR753 .contents-box .bc2-a:hover {
  background: rgba(240, 131, 74, 0.1);
}
#HAIR753 .contents-box .bc3 {
  border-color: #00B2BC !important;
}
#HAIR753 .contents-box .bc3-a {
  border-color: #00B2BC !important;
}
#HAIR753 .contents-box .bc3-a:hover {
  background: rgba(0, 178, 100, 0.1);
}
#HAIR753 .contents-box .bc4 {
  border-color: #20AEE5 !important;
}
#HAIR753 .contents-box .bc4-a {
  border-color: #20AEE5 !important;
}
#HAIR753 .contents-box .bc4-a:hover {
  background: rgba(32, 174, 229, 0.1);
}
#HAIR753 .contents-box .c-box__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 44%;
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn {
    width: initial;
    order: 2;
  }
}
#HAIR753 .contents-box .c-box__btn .btn_ttl {
  position: relative;
  width: 100%;
  font-size: calc(2.0833333333 * var(--vw));
  font-weight: 600;
  text-align: center;
  padding: calc(2.4305555556 * var(--vw)) 0 0;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn_ttl {
    width: 100%;
    font-size: 30px;
    padding: 35px 0 0;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn_ttl {
    width: 65%;
    font-size: calc(4.1025641026 * var(--vw));
    padding: calc(8.9743589744 * var(--vw)) 0 0;
  }
}
#HAIR753 .contents-box .c-box__btn .btn_ttl_txt {
  width: 100%;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn_ttl_txt {
    top: 58%;
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 {
  width: 80%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(1.7361111111 * var(--vw)) 0 calc(1.7361111111 * var(--vw));
  border: solid calc(0.1388888889 * var(--vw));
  border-radius: calc(6.9444444444 * var(--vw));
  margin-top: calc(1.3888888889 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 {
    width: 85%;
    padding: 25px 0 25px;
    border: solid 2px;
    border-radius: 100px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 {
    width: 65%;
    padding: calc(2.5641025641 * var(--vw)) 0 calc(2.5641025641 * var(--vw));
    border-radius: calc(25.641025641 * var(--vw));
    margin-top: calc(5.1282051282 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1__ttl {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: calc(0.6944444444 * var(--vw));
  padding-left: calc(2.4305555556 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__ttl {
    gap: 10px;
    padding-left: 35px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__ttl {
    padding-left: calc(5.641025641 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1__ttl2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: calc(0.6944444444 * var(--vw));
  padding-left: calc(2.4305555556 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__ttl2 {
    gap: 10px;
    padding-left: 35px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__ttl2 {
    padding-left: calc(4.8717948718 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1__ttl3 {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: calc(1.3888888889 * var(--vw));
  padding-left: calc(2.4305555556 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__ttl3 {
    gap: 20px;
    padding-left: 35px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__ttl3 {
    padding-left: calc(4.8717948718 * var(--vw));
    gap: initial !important;
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1__txt {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: calc(1.0416666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__txt {
    margin-top: 15px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__txt {
    margin-top: initial;
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1__txt .txt {
  width: 85%;
  text-align: center;
  padding-left: calc(2.7777777778 * var(--vw));
  font-size: calc(0.9722222222 * var(--vw));
  line-height: calc(1.3888888889 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__txt .txt {
    padding-left: 40px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1__txt .txt {
    padding-left: calc(3.0769230769 * var(--vw));
    font-size: calc(2.0512820513 * var(--vw));
    line-height: calc(3.5897435897 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box1 {
  width: calc(1.9444444444 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box1 {
    width: 28px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box1 {
    width: calc(4.358974359 * var(--vw));
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box1 img {
    margin-bottom: calc(1.2820512821 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 {
  width: 60%;
  display: flex;
  align-items: center;
  font-size: calc(1.5277777778 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
  font-weight: 600;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 {
    font-size: calc(3.0769230769 * var(--vw));
    line-height: initial;
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p1 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p1::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #E7537D;
  border-right: solid calc(0.2083333333 * var(--vw)) #E7537D;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p1::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #E7537D;
    border-right: solid 3px #E7537D;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p1::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #E7537D;
    border-right: solid calc(0.7692307692 * var(--vw)) #E7537D;
    right: calc(-3.0769230769 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p2 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p2::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #F0844A;
  border-right: solid calc(0.2083333333 * var(--vw)) #F0844A;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p2::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #F0844A;
    border-right: solid 3px #F0844A;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p2::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #F0844A;
    border-right: solid calc(0.7692307692 * var(--vw)) #F0844A;
    right: calc(-3.0769230769 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p3 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p3::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #00B2BC;
  border-right: solid calc(0.2083333333 * var(--vw)) #00B2BC;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p3::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #00B2BC;
    border-right: solid 3px #00B2BC;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p3::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #00B2BC;
    border-right: solid calc(0.7692307692 * var(--vw)) #00B2BC;
    right: calc(-3.0769230769 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p4 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p4::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #20AEE5;
  border-right: solid calc(0.2083333333 * var(--vw)) #20AEE5;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p4::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #20AEE5;
    border-right: solid 3px #20AEE5;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box2 .p4::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #20AEE5;
    border-right: solid calc(0.7692307692 * var(--vw)) #20AEE5;
    right: calc(-3.0769230769 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box3 {
  width: calc(2.6388888889 * var(--vw));
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box3 {
    width: 38px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box3 {
    width: calc(5.641025641 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 {
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: calc(1.5277777778 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
  font-weight: 600;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 {
    font-size: calc(2.8205128205 * var(--vw));
    line-height: calc(4.6153846154 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .txt {
  width: 85%;
  text-align: center;
  font-size: calc(0.9722222222 * var(--vw));
  line-height: calc(1.3888888889 * var(--vw));
  color: #000;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .txt {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .txt {
    font-size: calc(3.0769230769 * var(--vw));
    line-height: calc(5.1282051282 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p1 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p1::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #E7537D;
  border-right: solid calc(0.2083333333 * var(--vw)) #E7537D;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p1::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #E7537D;
    border-right: solid 3px #E7537D;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p1::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #E7537D;
    border-right: solid calc(0.7692307692 * var(--vw)) #E7537D;
    right: calc(-4.8717948718 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p2 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p2::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #F0844A;
  border-right: solid calc(0.2083333333 * var(--vw)) #F0844A;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p2::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #F0844A;
    border-right: solid 3px #F0844A;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p2::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #F0844A;
    border-right: solid calc(0.7692307692 * var(--vw)) #F0844A;
    right: calc(-4.8717948718 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p3 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p3::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #00B2BC;
  border-right: solid calc(0.2083333333 * var(--vw)) #00B2BC;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p3::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #00B2BC;
    border-right: solid 3px #00B2BC;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p3::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #00B2BC;
    border-right: solid calc(0.7692307692 * var(--vw)) #00B2BC;
    right: calc(-4.8717948718 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p4 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p4::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #20AEE5;
  border-right: solid calc(0.2083333333 * var(--vw)) #20AEE5;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p4::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #20AEE5;
    border-right: solid 3px #20AEE5;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box4 .p4::after {
    width: calc(2.5641025641 * var(--vw));
    height: calc(2.5641025641 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #20AEE5;
    border-right: solid calc(0.7692307692 * var(--vw)) #20AEE5;
    right: calc(-4.8717948718 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box5 {
  width: calc(2.2222222222 * var(--vw));
  display: flex;
  align-items: center;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box5 picture {
  max-width: 214px;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box5 {
    width: 32px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box5 {
    width: calc(5.1282051282 * var(--vw));
    margin-right: calc(2.5641025641 * var(--vw));
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box5 img {
    margin-bottom: calc(1.2820512821 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 {
  width: 60%;
  display: flex;
  align-items: center;
  font-size: calc(1.5277777778 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
  font-weight: 600;
  /*
  p{
    position: relative;
    display: block;
    &::after{
      content: '';
      width: getvwPc(14);
      height: getvwPc(14);
      border: 0;
      border-top: solid getvwPc(3) $color-type1;
      border-right: solid getvwPc(3) $color-type1;
      transform: rotate(45deg);
      position: absolute;
      top: 0;
      right: getvwPc(-30);
      bottom: 0;
      margin: auto;
      @include media(pc-l) {
        width: 14px;
        height: 14px;
        border-top: solid 3px $color-type1;
        border-right: solid 3px $color-type1;
        right: -30px;                      
      }
      @include media(sp) {
      width: getvw(14);
      height: getvw(14);
      border-top: solid getvw(3) $color-type1;
      border-right: solid getvw(3) $color-type1;
      right: getvw(-30);                                          
      }              
    }
  }
  */
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 {
    font-size: calc(3.8461538462 * var(--vw));
    line-height: calc(7.6923076923 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p1 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p1::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #E7537D;
  border-right: solid calc(0.2083333333 * var(--vw)) #E7537D;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p1::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #E7537D;
    border-right: solid 3px #E7537D;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p1::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #E7537D;
    border-right: solid calc(0.7692307692 * var(--vw)) #E7537D;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p2 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p2::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #F0844A;
  border-right: solid calc(0.2083333333 * var(--vw)) #F0844A;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p2::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #F0844A;
    border-right: solid 3px #F0844A;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p2::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #F0844A;
    border-right: solid calc(0.7692307692 * var(--vw)) #F0844A;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p3 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p3::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #00B2BC;
  border-right: solid calc(0.2083333333 * var(--vw)) #00B2BC;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p3::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #00B2BC;
    border-right: solid 3px #00B2BC;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p3::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #00B2BC;
    border-right: solid calc(0.7692307692 * var(--vw)) #00B2BC;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p4 {
  position: relative;
  display: block;
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p4::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #20AEE5;
  border-right: solid calc(0.2083333333 * var(--vw)) #20AEE5;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p4::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #20AEE5;
    border-right: solid 3px #20AEE5;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .box6 .p4::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #20AEE5;
    border-right: solid calc(0.7692307692 * var(--vw)) #20AEE5;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img1 {
  position: absolute;
  top: calc(2.2222222222 * var(--vw));
  right: calc(-0.6944444444 * var(--vw));
  width: calc(6.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img1 {
    top: 32px;
    right: -10px;
    width: 73px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img1 {
    top: calc(1.7948717949 * var(--vw));
    right: calc(-6.6153846154 * var(--vw));
    width: calc(13.6666666667 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img2 {
  position: absolute;
  top: calc(0.6944444444 * var(--vw));
  right: calc(-0.5555555556 * var(--vw));
  width: calc(5.9722222222 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img2 {
    top: 10px;
    right: -8px;
    width: 69px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img2 {
    top: calc(-2.0512820513 * var(--vw));
    right: calc(-5.3846153846 * var(--vw));
    width: calc(13 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img3 {
  position: absolute;
  top: calc(0.6944444444 * var(--vw));
  right: calc(-0.5555555556 * var(--vw));
  width: calc(5.9722222222 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img3 {
    top: 10px;
    right: -8px;
    width: 69px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .btn-box1 .pdf-img3 {
    top: calc(1.0256410256 * var(--vw));
    right: calc(-5.3846153846 * var(--vw));
    width: calc(13 * var(--vw));
  }
}
#HAIR753 .contents-box .c-box__btn .pd-adj {
  padding: calc(1.3888888889 * var(--vw)) 0 calc(1.3888888889 * var(--vw)) !important;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .contents-box .c-box__btn .pd-adj {
    padding: 20px 0 20px !important;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn .pd-adj {
    padding: calc(2.5128205128 * var(--vw)) 0 calc(2.5128205128 * var(--vw)) !important;
  }
}
#HAIR753 .contents-box .c-box__btn-bg1 {
  color: #fff;
  background: url(../img/type1-1-pc.svg) no-repeat 0 0/cover;
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__btn-bg1 {
    background: url(../img/type1-1-pc.svg) no-repeat 0 0/100%;
  }
}
#HAIR753 .contents-box .c-box__img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 56%;
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__img {
    width: 100%;
  }
}
#HAIR753 .contents-box .c-box__img picture {
  width: 100%;
}
@media screen and (max-width: 750px) {
  #HAIR753 .contents-box .c-box__img picture {
    width: 100%;
  }
}
#HAIR753 .contents-box .bg1 {
  background: url(../img/type1-bg-pc.png) no-repeat 0 0/cover;
}
#HAIR753 .contents-box .bg2 {
  background: url(../img/type2-bg-pc.png) no-repeat 0 0/cover;
}
#HAIR753 .contents-box .bg3 {
  background: url(../img/type3-bg-pc.png) no-repeat 0 0/cover;
}
#HAIR753 .contents-box .bg4 {
  background: url(../img/type4-bg-pc.png) no-repeat 0 0/cover;
}
#HAIR753 .c-bg {
  background-color: #F9F7F7;
}
#HAIR753 .c-bg2 {
  background-color: #F7F5F5;
}
#HAIR753 .arrow_type {
  position: relative;
  display: inline-block;
  width: calc(0.6944444444 * var(--vw));
  height: calc(1.25 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .arrow_type {
    width: 10px;
    height: 18px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .arrow_type {
    width: calc(2.5641025641 * var(--vw));
    height: calc(4.6153846154 * var(--vw));
  }
}
#HAIR753 .arrow_type::after {
  content: "";
  position: absolute;
  top: calc(50% - 1.5px);
  right: 0;
  width: calc(0.9236111111 * var(--vw));
  height: calc(0.2083333333 * var(--vw));
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 1.5px) 50%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .arrow_type::after {
    width: 13.3px;
    height: 3px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .arrow_type::after {
    width: calc(3.4102564103 * var(--vw));
    height: calc(0.7692307692 * var(--vw));
  }
}
#HAIR753 .arrow_type::after {
  transform: rotate(-45deg);
}
#HAIR753 .mid-kv__ttl {
  margin: calc(4.8611111111 * var(--vw)) auto 0 auto;
  width: calc(44.7916666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__ttl {
    margin: 70px auto 0 auto;
    width: 645px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__ttl {
    margin-top: calc(7.6923076923 * var(--vw));
    width: 90%;
  }
}
#HAIR753 .mid-kv__lead {
  font-size: calc(1.1111111111 * var(--vw));
  line-height: calc(2.6388888889 * var(--vw));
  width: 100%;
  text-align: center;
  margin: calc(3.4722222222 * var(--vw)) 0;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__lead {
    font-size: 16px;
    line-height: 38px;
    margin: 50px 0;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__lead {
    font-size: calc(4.1025641026 * var(--vw));
    line-height: calc(9.7435897436 * var(--vw));
    margin: calc(12.8205128205 * var(--vw)) 0;
  }
}
#HAIR753 .mid-kv__line {
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__line {
    margin: auto 0 auto;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__line {
    width: 90%;
  }
}
#HAIR753 .mid-kv__cottl {
  margin: calc(3.4722222222 * var(--vw)) auto 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__cottl {
    margin: 50px auto 0 auto;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__cottl {
    margin-top: calc(12.8205128205 * var(--vw));
    width: 100%;
  }
}
#HAIR753 .mid-kv__cottl .co-title {
  background: url(../img/lineup/cottl-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 12.3%;
  font-size: calc(1.7361111111 * var(--vw));
  line-height: calc(3.4722222222 * var(--vw));
  font-weight: 600;
  text-align: center;
  padding: calc(1.0416666667 * var(--vw)) 0;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__cottl .co-title {
    font-size: 25px;
    line-height: 50px;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__cottl .co-title {
    font-size: calc(5.1282051282 * var(--vw));
    line-height: calc(12.8205128205 * var(--vw));
    padding: calc(3.8461538462 * var(--vw)) 0;
    text-align: center;
    width: 30%;
  }
}
#HAIR753 .mid-kv__btn {
  margin: calc(0.3472222222 * var(--vw)) 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(1.3888888889 * var(--vw));
  padding-bottom: calc(2.7777777778 * var(--vw));
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__btn {
    margin: 5px 0 auto;
    gap: 20px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__btn {
    gap: calc(5.1282051282 * var(--vw));
    padding-bottom: calc(10.2564102564 * var(--vw));
  }
}
#HAIR753 .mid-kv__btn .btn {
  width: calc(17.3611111111 * var(--vw));
  text-align: center;
  font-size: calc(1.5277777778 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
  font-weight: 500;
  border: solid calc(0.1388888889 * var(--vw)) #C4A56F;
  border-radius: calc(4.1666666667 * var(--vw));
  padding: calc(1.3888888889 * var(--vw)) 0 calc(1.3888888889 * var(--vw));
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__btn .btn {
    width: 250px;
    font-size: 22px;
    line-height: 30px;
    border-radius: 60px;
    padding: 20px 0 20px;
    border: solid 2px #C4A56F;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__btn .btn {
    width: 60%;
    font-size: calc(4.1025641026 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
    border-radius: calc(15.3846153846 * var(--vw));
    padding: calc(5.1282051282 * var(--vw)) 0 calc(5.1282051282 * var(--vw));
    border: solid calc(0.5128205128 * var(--vw)) #C4A56F;
  }
}
#HAIR753 .mid-kv__btn .btn:hover {
  background: rgba(196, 165, 111, 0.2);
}
#HAIR753 .mid-kv__btn .btn p {
  position: relative;
  display: block;
  width: 55%;
  margin-right: calc(2.0833333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__btn .btn p {
    margin-right: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__btn .btn p {
    margin-right: calc(7.6923076923 * var(--vw));
  }
}
#HAIR753 .mid-kv__btn .btn p::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #C4A56F;
  border-right: solid calc(0.2083333333 * var(--vw)) #C4A56F;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753 .mid-kv__btn .btn p::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #C4A56F;
    border-right: solid 3px #C4A56F;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753 .mid-kv__btn .btn p::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #C4A56F;
    border-right: solid calc(0.7692307692 * var(--vw)) #C4A56F;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753 .mid-kv__btn .bg1 {
  background-color: #fff;
  color: #C4A56F;
}
#HAIR753 .mid-kv .style-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
#HAIR753 .mid-kv .style-images .photo-box {
  width: 31%;
}

#HAIR753_ST .sec-in {
  width: 100%;
  max-width: 1060px;
  height: 100%;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (min-width: 751px) and (max-width: 1200px) {
  #HAIR753_ST .sec-in {
    padding-right: calc(2.0833333333 * var(--vw));
    padding-left: calc(2.0833333333 * var(--vw));
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .sec-in {
    padding-right: 0;
    padding-left: 0;
  }
}

#HAIR753_ST {
  position: relative;
  transition: 1s;
  /*
   * {
    font-feature-settings: "palt";
    letter-spacing: .05em;
  }
    */
}
#HAIR753_ST.is-loading {
  opacity: 0;
}
#HAIR753_ST .ttl {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  line-height: inherit;
}
#HAIR753_ST #wrapper {
  width: 100%;
  padding-bottom: 0;
}
#HAIR753_ST *,
#HAIR753_ST *::before, #HAIR753_ST::after {
  box-sizing: border-box;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #HAIR753_ST img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST img {
    image-rendering: auto;
  }
}
#HAIR753_ST a {
  color: inherit;
}
#HAIR753_ST .sec {
  position: relative;
}
#HAIR753_ST .sec-in {
  position: relative;
}
#HAIR753_ST .kv-bg__st {
  background-color: #F9F7F7;
}
#HAIR753_ST .top-kv {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: calc(4.1666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv {
    padding-bottom: calc(15.3846153846 * var(--vw));
  }
}
#HAIR753_ST .top-kv__ttl {
  margin: calc(4.4444444444 * var(--vw)) auto 0 auto;
  width: calc(41.6666666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__ttl {
    margin: 64px auto 0 auto;
    width: 600px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__ttl {
    margin-top: calc(7.6923076923 * var(--vw));
    width: 90%;
  }
}
#HAIR753_ST .top-kv__lead {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: calc(3.8194444444 * var(--vw));
  background-color: #fff;
  border-radius: calc(1.3888888889 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead {
    padding: 55px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead {
    width: 90%;
    padding: calc(6.4102564103 * var(--vw));
    border-radius: calc(5.1282051282 * var(--vw));
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box {
  display: flex;
  justify-content: center;
  gap: calc(2.7777777778 * var(--vw));
  margin-bottom: calc(2.7777777778 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box {
    gap: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box {
    margin-bottom: calc(10.2564102564 * var(--vw));
    flex-direction: column;
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box .l-box {
  width: 50%;
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box .l-box {
    order: 1;
    width: 100%;
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box .r-box {
  width: 50%;
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box .r-box {
    width: 100%;
    order: 2;
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box .r-box h3 {
  font-size: calc(2.2222222222 * var(--vw));
  line-height: calc(3.3333333333 * var(--vw));
  font-weight: 600;
  color: #A276B1;
  margin-bottom: calc(1.3888888889 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box .r-box h3 {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box .r-box h3 {
    font-size: calc(5.1282051282 * var(--vw));
    line-height: calc(7.1794871795 * var(--vw));
    margin-bottom: calc(5.1282051282 * var(--vw));
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box .r-box p {
  font-size: calc(1.1111111111 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box .r-box p {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box .r-box p {
    font-size: calc(3.0769230769 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: solid 3px #A276B1;
  border-radius: calc(0.6944444444 * var(--vw));
  position: relative;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 {
    border-radius: 10px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 {
    width: 100%;
    border-radius: calc(2.5641025641 * var(--vw));
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 h3 {
  width: 100%;
  background-color: #A276B1;
  font-size: calc(1.9444444444 * var(--vw));
  line-height: calc(3.3333333333 * var(--vw));
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: calc(1.0416666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 h3 {
    font-size: 28px;
    line-height: 48px;
    padding: 15px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 h3 {
    font-size: calc(4.6153846154 * var(--vw));
    line-height: calc(7.1794871795 * var(--vw));
    padding: calc(3.8461538462 * var(--vw));
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox {
    flex-direction: column;
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .l-box {
  width: 50%;
  padding: calc(2.0833333333 * var(--vw)) 0 calc(2.0833333333 * var(--vw)) calc(2.0833333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .l-box {
    padding: 30px 0 30px 30px;
    width: 55%;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .l-box {
    padding: calc(2.5641025641 * var(--vw));
    width: 100%;
    order: 2;
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .l-box .ob__ind {
  padding-left: 1em;
  text-indent: -1em;
  font-size: calc(0.9027777778 * var(--vw));
  line-height: calc(1.5972222222 * var(--vw));
  padding-bottom: calc(1.1111111111 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .l-box .ob__ind {
    font-size: 13px;
    line-height: 23px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .l-box .ob__ind {
    font-size: calc(2.8205128205 * var(--vw));
    line-height: calc(5.1282051282 * var(--vw));
    padding-bottom: calc(4.1025641026 * var(--vw));
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .r-box {
  width: 43%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .r-box {
    width: 43%;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox .r-box {
    width: 100%;
    order: 1;
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox-txt {
  font-size: calc(1.1111111111 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox-txt {
    font-size: 16px;
    line-height: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__cobox-txt {
    font-size: calc(3.0769230769 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
  }
}
#HAIR753_ST .top-kv__lead .title-lead__box2 .box2__photo {
  position: absolute;
  bottom: 0;
  right: calc(-2.0833333333 * var(--vw));
  width: 45%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__photo {
    width: 45%;
    right: -30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__lead .title-lead__box2 .box2__photo {
    width: 90%;
    top: calc(12.8205128205 * var(--vw));
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
#HAIR753_ST .top-kv__catch {
  margin: 0 auto;
  width: calc(52.9166666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__catch {
    width: 762px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__catch {
    width: 90%;
  }
}
#HAIR753_ST .top-kv__btn {
  margin: calc(0.3472222222 * var(--vw)) 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(1.3888888889 * var(--vw));
  padding-bottom: calc(2.7777777778 * var(--vw));
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__btn {
    margin: 5px 0 auto;
    gap: 20px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__btn {
    gap: calc(5.1282051282 * var(--vw));
    padding-bottom: calc(10.2564102564 * var(--vw));
  }
}
#HAIR753_ST .top-kv__btn .btn {
  width: calc(16.3194444444 * var(--vw));
  text-align: center;
  font-size: calc(1.3888888889 * var(--vw));
  line-height: calc(1.9444444444 * var(--vw));
  font-weight: 500;
  border-radius: calc(4.1666666667 * var(--vw));
  padding: calc(1.3888888889 * var(--vw)) 0 calc(1.0416666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv__btn .btn {
    width: 235px;
    font-size: 20px;
    line-height: 28px;
    border-radius: 60px;
    padding: 20px 0 15px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv__btn .btn {
    width: 45%;
    font-size: calc(4.1025641026 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
    border-radius: calc(15.3846153846 * var(--vw));
    padding: calc(5.1282051282 * var(--vw)) 0 calc(3.8461538462 * var(--vw));
  }
}
#HAIR753_ST .top-kv__btn .btn:hover {
  opacity: 0.8;
}
#HAIR753_ST .top-kv__btn .bg1 {
  background-color: #FCE8EB;
  color: #E7537D;
}
#HAIR753_ST .top-kv__btn .bg2 {
  background-color: #FDE9DB;
  color: #F0844A;
}
#HAIR753_ST .top-kv__btn .bg3 {
  background-color: #E5F3F5;
  color: #00B2BC;
}
#HAIR753_ST .top-kv__btn .bg4 {
  background-color: #E1F0FB;
  color: #20AEE5;
}
#HAIR753_ST .top-kv .arrow1,
#HAIR753_ST .top-kv .arrow2,
#HAIR753_ST .top-kv .arrow3,
#HAIR753_ST .top-kv .arrow4 {
  position: relative;
  display: inline-block;
  width: calc(1.0625 * var(--vw));
  height: calc(0.6736111111 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv .arrow1,
  #HAIR753_ST .top-kv .arrow2,
  #HAIR753_ST .top-kv .arrow3,
  #HAIR753_ST .top-kv .arrow4 {
    width: 15.3px;
    height: 9.7px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv .arrow1,
  #HAIR753_ST .top-kv .arrow2,
  #HAIR753_ST .top-kv .arrow3,
  #HAIR753_ST .top-kv .arrow4 {
    width: calc(3.9230769231 * var(--vw));
    height: calc(2.4871794872 * var(--vw));
  }
}
#HAIR753_ST .top-kv .arrow1::before,
#HAIR753_ST .top-kv .arrow1::after,
#HAIR753_ST .top-kv .arrow2::before,
#HAIR753_ST .top-kv .arrow2::after,
#HAIR753_ST .top-kv .arrow3::before,
#HAIR753_ST .top-kv .arrow3::after,
#HAIR753_ST .top-kv .arrow4::before,
#HAIR753_ST .top-kv .arrow4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: calc(0.1388888889 * var(--vw));
  height: calc(0.8333333333 * var(--vw));
  border-radius: 9999px;
  transform-origin: 50% calc(100% - 1px);
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .top-kv .arrow1::before,
  #HAIR753_ST .top-kv .arrow1::after,
  #HAIR753_ST .top-kv .arrow2::before,
  #HAIR753_ST .top-kv .arrow2::after,
  #HAIR753_ST .top-kv .arrow3::before,
  #HAIR753_ST .top-kv .arrow3::after,
  #HAIR753_ST .top-kv .arrow4::before,
  #HAIR753_ST .top-kv .arrow4::after {
    width: 2px;
    height: 12px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .top-kv .arrow1::before,
  #HAIR753_ST .top-kv .arrow1::after,
  #HAIR753_ST .top-kv .arrow2::before,
  #HAIR753_ST .top-kv .arrow2::after,
  #HAIR753_ST .top-kv .arrow3::before,
  #HAIR753_ST .top-kv .arrow3::after,
  #HAIR753_ST .top-kv .arrow4::before,
  #HAIR753_ST .top-kv .arrow4::after {
    width: calc(0.5128205128 * var(--vw));
    height: calc(3.0769230769 * var(--vw));
  }
}
#HAIR753_ST .top-kv .arrow1::before,
#HAIR753_ST .top-kv .arrow1::after {
  background-color: #E7537D;
}
#HAIR753_ST .top-kv .arrow2::before,
#HAIR753_ST .top-kv .arrow2::after {
  background-color: #F0844A;
}
#HAIR753_ST .top-kv .arrow3::before,
#HAIR753_ST .top-kv .arrow3::after {
  background-color: #00B2BC;
}
#HAIR753_ST .top-kv .arrow4::before,
#HAIR753_ST .top-kv .arrow4::after {
  background-color: #20AEE5;
}
#HAIR753_ST .top-kv .arrow1::before,
#HAIR753_ST .top-kv .arrow2::before,
#HAIR753_ST .top-kv .arrow3::before,
#HAIR753_ST .top-kv .arrow4::before {
  transform: rotate(45deg);
}
#HAIR753_ST .top-kv .arrow1::after,
#HAIR753_ST .top-kv .arrow2::after,
#HAIR753_ST .top-kv .arrow3::after,
#HAIR753_ST .top-kv .arrow4::after {
  transform: rotate(-45deg);
}
#HAIR753_ST .mid-kv__ttl {
  margin: calc(4.8611111111 * var(--vw)) auto 0 auto;
  width: calc(44.7916666667 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__ttl {
    margin: 70px auto 0 auto;
    width: 645px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__ttl {
    margin-top: calc(7.6923076923 * var(--vw));
    width: 90%;
  }
}
#HAIR753_ST .mid-kv__lead {
  font-size: calc(1.1111111111 * var(--vw));
  line-height: calc(2.6388888889 * var(--vw));
  width: 100%;
  text-align: center;
  margin: calc(3.4722222222 * var(--vw)) 0;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__lead {
    font-size: 16px;
    line-height: 38px;
    margin: 50px 0;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__lead {
    font-size: calc(4.1025641026 * var(--vw));
    line-height: calc(9.7435897436 * var(--vw));
    margin: calc(12.8205128205 * var(--vw)) 0;
  }
}
#HAIR753_ST .mid-kv__line {
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__line {
    margin: auto 0 auto;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__line {
    width: 90%;
  }
}
#HAIR753_ST .mid-kv__cottl {
  margin: calc(3.4722222222 * var(--vw)) auto 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__cottl {
    margin: 50px auto 0 auto;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__cottl {
    margin-top: calc(12.8205128205 * var(--vw));
    width: 100%;
  }
}
#HAIR753_ST .mid-kv__cottl .co-title {
  background: url(../img/lineup/cottl-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 12.3%;
  font-size: calc(1.7361111111 * var(--vw));
  line-height: calc(3.4722222222 * var(--vw));
  font-weight: 600;
  text-align: center;
  padding: calc(1.0416666667 * var(--vw)) 0;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__cottl .co-title {
    font-size: 25px;
    line-height: 50px;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__cottl .co-title {
    font-size: calc(5.1282051282 * var(--vw));
    line-height: calc(12.8205128205 * var(--vw));
    padding: calc(3.8461538462 * var(--vw)) 0;
    text-align: center;
    width: 30%;
  }
}
#HAIR753_ST .mid-kv__btn {
  margin: calc(0.3472222222 * var(--vw)) 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(1.3888888889 * var(--vw));
  padding-bottom: calc(2.7777777778 * var(--vw));
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn {
    margin: 5px 0 auto;
    gap: 20px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn {
    gap: calc(5.1282051282 * var(--vw));
    padding-bottom: calc(10.2564102564 * var(--vw));
  }
}
#HAIR753_ST .mid-kv__btn .btn {
  width: calc(17.3611111111 * var(--vw));
  text-align: center;
  font-size: calc(1.5277777778 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
  font-weight: 500;
  border: solid calc(0.1388888889 * var(--vw)) #000;
  border-radius: calc(4.1666666667 * var(--vw));
  padding: calc(1.3888888889 * var(--vw)) 0 calc(1.3888888889 * var(--vw));
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn .btn {
    width: 250px;
    font-size: 22px;
    line-height: 30px;
    border-radius: 60px;
    padding: 20px 0 20px;
    border: solid 2px #000;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn .btn {
    width: 45%;
    font-size: calc(4.1025641026 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
    border-radius: calc(15.3846153846 * var(--vw));
    padding: calc(5.1282051282 * var(--vw)) 0 calc(5.1282051282 * var(--vw));
    border: solid calc(0.5128205128 * var(--vw)) #000;
  }
}
#HAIR753_ST .mid-kv__btn .btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
#HAIR753_ST .mid-kv__btn .btn p {
  position: relative;
  display: block;
  width: 55%;
  margin-right: calc(2.0833333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn .btn p {
    margin-right: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn .btn p {
    margin-right: calc(7.6923076923 * var(--vw));
  }
}
#HAIR753_ST .mid-kv__btn .btn p::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #000;
  border-right: solid calc(0.2083333333 * var(--vw)) #000;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn .btn p::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #000;
    border-right: solid 3px #000;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn .btn p::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #000;
    border-right: solid calc(0.7692307692 * var(--vw)) #000;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753_ST .mid-kv__btn .bg1 {
  background-color: #fff;
  color: #000;
}
#HAIR753_ST .mid-kv__btn_st {
  margin: calc(0.3472222222 * var(--vw)) 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(1.3888888889 * var(--vw));
  padding-bottom: calc(2.7777777778 * var(--vw));
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn_st {
    margin: 5px 0 auto;
    gap: 20px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn_st {
    gap: calc(5.1282051282 * var(--vw));
    padding-bottom: calc(10.2564102564 * var(--vw));
  }
}
#HAIR753_ST .mid-kv__btn_st .btn {
  width: calc(27.7777777778 * var(--vw));
  text-align: center;
  font-size: calc(1.5277777778 * var(--vw));
  line-height: calc(2.0833333333 * var(--vw));
  font-weight: 500;
  border: solid calc(0.1388888889 * var(--vw)) #9B72B0;
  border-radius: calc(4.1666666667 * var(--vw));
  padding: calc(1.7361111111 * var(--vw)) 0 calc(1.7361111111 * var(--vw));
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn_st .btn {
    width: 400px;
    font-size: 22px;
    line-height: 30px;
    border-radius: 60px;
    padding: 25px 0 25px;
    border: solid 2px #9B72B0;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn_st .btn {
    width: 75%;
    font-size: calc(4.1025641026 * var(--vw));
    line-height: calc(6.1538461538 * var(--vw));
    border-radius: calc(15.3846153846 * var(--vw));
    padding: calc(6.4102564103 * var(--vw)) 0 calc(6.4102564103 * var(--vw));
    border: solid calc(0.5128205128 * var(--vw)) #9B72B0;
  }
}
#HAIR753_ST .mid-kv__btn_st .btn:hover {
  background: rgba(115, 114, 176, 0.1);
}
#HAIR753_ST .mid-kv__btn_st .btn p {
  position: relative;
  display: block;
  width: 75%;
  margin-right: calc(2.0833333333 * var(--vw));
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn_st .btn p {
    margin-right: 30px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn_st .btn p {
    margin-right: calc(7.6923076923 * var(--vw));
  }
}
#HAIR753_ST .mid-kv__btn_st .btn p::after {
  content: "";
  width: calc(0.9722222222 * var(--vw));
  height: calc(0.9722222222 * var(--vw));
  border: 0;
  border-top: solid calc(0.2083333333 * var(--vw)) #9B72B0;
  border-right: solid calc(0.2083333333 * var(--vw)) #9B72B0;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: calc(-1.3888888889 * var(--vw));
  bottom: 0;
  margin: auto;
}
@media only screen and (min-width: 1200px) {
  #HAIR753_ST .mid-kv__btn_st .btn p::after {
    width: 14px;
    height: 14px;
    border-top: solid 3px #9B72B0;
    border-right: solid 3px #9B72B0;
    right: -20px;
  }
}
@media screen and (max-width: 750px) {
  #HAIR753_ST .mid-kv__btn_st .btn p::after {
    width: calc(3.5897435897 * var(--vw));
    height: calc(3.5897435897 * var(--vw));
    border-top: solid calc(0.7692307692 * var(--vw)) #9B72B0;
    border-right: solid calc(0.7692307692 * var(--vw)) #9B72B0;
    right: calc(-5.1282051282 * var(--vw));
  }
}
#HAIR753_ST .mid-kv__btn_st .bg1 {
  background-color: #fff;
  color: #9B72B0;
}
#HAIR753_ST .mid-kv .style-images {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
#HAIR753_ST .mid-kv .style-images .photo-box {
  width: 31%;
}

/*====================================================================
slick
====================================================================*/
.f-slider {
  margin: calc(4.8611111111 * var(--vw)) auto calc(2.0833333333 * var(--vw));
}
@media screen and (max-width: 750px) {
  .f-slider {
    margin: calc(7.6923076923 * var(--vw)) auto calc(5.1282051282 * var(--vw));
  }
}

.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 calc(1.7361111111 * var(--vw));
}
@media screen and (max-width: 750px) {
  .sliderArea {
    padding: 0 calc(6.4102564103 * var(--vw));
  }
}

.sliderArea.w300 {
  max-width: 300px;
}

.slick-slide {
  margin: 0 5px;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

.slick-prev, .slick-next {
  z-index: 1;
}

.slick-prev:before, .slick-next:before {
  color: #000;
}

.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 1;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

.thumb {
  margin: 20px 0 0;
}

.thumb .slick-slide {
  cursor: pointer;
}

.thumb .slick-slide:hover {
  opacity: 0.7;
}

/*====================================================================
.footer-slide
====================================================================*/
.footer-slide .slick-list {
  overflow: visible;
}

.footer-slide.slider {
  max-width: calc(30.7638888889 * var(--vw));
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .footer-slide.slider {
    max-width: 100%;
  }
}

.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: calc(2.4305555556 * var(--vw));
}

.prev-arrow {
  left: 0;
  bottom: calc(2.4305555556 * var(--vw));
}

.next-arrow {
  right: 0;
  bottom: calc(2.4305555556 * var(--vw));
}

.slick-dots li.slick-active {
  background: #C4A56F;
  border-color: #C4A56F;
}/*# sourceMappingURL=style.css.map */