@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright KIKUCHI. All Rights Reserved.

HTML CSS Selectors THE BEAUTY

$Revision: 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
:root {
  --min-width:1368px;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Jost", sans-serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html,body {
  height: 100%;
}
body {
  margin: 0px;
  padding: 0px;
  font-family: var(--font-jp);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: 0;
  color: #696969;
  -webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
}

h1,h2,h3,h4,h5,h6,
ul,ol,dl,
p,li,dt,dd,th,td,em,strong,blockquote {
  margin: 0px;
  padding: 0px;
  border: 0;
  vertical-align: baseline;
  font-weight: inherit;
}
em {
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  margin: 0px;
  padding: 0px;
}
p,dd,li {
  list-style: none;
}
em,strong {
  font-weight: bold;
}
table {
  border-collapse: collapse;
}

img {
  vertical-align:top;
  max-width: 100%;
  height: auto;
}
.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a img {
  border: none;
}
a:link,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
  outline: none;
}
a {
	transition: 0.2s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

.none {
  display: none!important;
}

.nolink {
  pointer-events: none;
}
.anchor {
  display: block;
  position: relative;
  top: -150px;
}

.fv-effect {
  opacity: 0;
}
.loaded .fv-effect {
  opacity: 1;
  transform: translate(0,0);
  transition : all 500ms 300ms ease-out;
}
/* 画面外にいる状態 */
.effect {
  transform: translate(0,50px);
  opacity : 0;
}
.fade-drop {
  transform: translate(0,-50px);
}
.fade-rize {
  transform: translate(0,50px);
}
.fade-left-in {
  transform: translate(-50px,0);
}
.fade-right-in {
  transform: translate(50px,0);
}
.fade-in {
  transform: translate(0,0);
}
.no-fade {
  transform: translate(0,0);
  opacity: 1.0;
}

/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
  transform: translate(0,0px)!important;
  transition : all 500ms 300ms ease-out;
}
.wrap {
  width: 100%;
  overflow:hidden;
}
.wrapper {
  width: clamp(1368px, 100%, 1980px);
}

/*---------------------------------------------------------------------------------
固定
--------------------------------------------------------------------------------- */
#toggle_menu {
	width: 60px;
	height: 60px;
	position: fixed;
	top: 45px;
	right: 85px;
	z-index:101;
	cursor: pointer;
}
#toggle_menu:hover {
	transition: 0.2s ease-in-out;
	opacity:0.5;
}

#toggle_menu .inner {
	width: 60px;
	height: 60px;
	position:relative;
}
#toggle_menu .inner div {
	height: 1px;
	background-color: #2B2B2B;
	position: absolute;
}
#toggle_menu .menu1 {
  width: 60px;
	top: 21px;
  right: 0;
}
#toggle_menu .inner .menu2 {
  width: 47px;
	top:39px;
  right: 0;
}
#toggle_menu .menu1, #toggle_menu .menu2 {
  transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out; /* opera */
  -moz-transition: all 0.5s ease-out; /* firefox */
  -webkit-transition: all 0.5s ease-out; /* chrome, safari */
  -ms-transition: all 0.5s ease-out; /* ie */
}
.open #toggle_menu .menu1 {
  width: 45px;
  top: 27px;
  -moz-transform: rotate(405deg);
  -webkit-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  transform: rotate(405deg);
  background-color: #fff!important;
}
.open #toggle_menu .menu2 {
  width: 45px;
  top: 27px;
  -moz-transform: rotate(-405deg);
  -webkit-transform: rotate(-405deg);
  -o-transform: rotate(-405deg);
  -ms-transform: rotate(-405deg);
  transform: rotate(-405deg);
  background-color: #fff!important;
}
#nav-background {
	position: fixed;
	width: 378px;
  height: 100vh;
	top: 0;
	right: 0;
	z-index:98;
  background-color: #46A4DB;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}
#nav-background .triangle {
  display: block;
  height: 100%;
  aspect-ratio: 1;
  filter: drop-shadow(0px -10px 10px rgba(105, 105, 105, 0.2));
  position: absolute;
  right: 378px;
  top: 0;
  content:"";
  z-index: 1;
}
#nav-background .triangle::before {
  background-color: #46A4DB;  
  clip-path: polygon(0 100%,100% 0,100% 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.open #nav-background{
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.nav-background-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #46A4DB; 
  position: relative;
  z-index: 2;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
.nav-background__list li {
  margin-bottom: 24px;
}
.nav-background__list .en {
  display: block;
  padding-bottom: 5px;
  font-family: var(--font-en);
  font-size: 26px;
}
.nav-background__list .jp {
  font-size: 12px;
}
.nav-background__sns {
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;

}
.nav-background__sns p {
  width: 100%;
  padding-bottom: 18px;
  font-size: 14px;
}
.nav-background__sns a {
  width: 40px;
  margin-right: 22px;
}
.nav-background-reserve {
  display: flex;
  align-items: center;
  align-content: center;
  width: 204px;
  height: 236px;
  position: absolute;
  right: 440px;
  bottom: 150px;
  filter: drop-shadow(0px -10px 10px rgba(105, 105, 105, 0.2));
  cursor: pointer;
}
.nav-background-reserve::before {
  background: #f8f8f8;
  clip-path: polygon(0 0,100% 50%,0 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.nav-background-reserve span {
  display: block;
  padding-left: 33px;
  font-size: 16px;
  line-height: 1.25;
  color: #46A4DB;
  position: relative;
  z-index: 2;
}
.side-reserve {
  width: 120px;
  height: 140px;
  position: fixed;
  right: 60px;
  bottom: 45px;
  z-index: 20;
}
.side-reserve a {
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px -10px 10px rgba(105, 105, 105, 0.2));
  cursor: pointer;
  position: relative;
}
.side-reserve a:hover {
  opacity: 1;
  transform: scale(1.1);
}
.side-reserve a::before {
  background: #E282B3;
  border: 1px solid #46A4DB;
  clip-path: polygon(0 0,100% 50%,0 100%);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
}
.side-reserve a span {
  padding: 3px 0 0 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #F8F8F8;
  position: relative;
  z-index: 2;
}

/*---------------------------------------------------------------------------------
FV
--------------------------------------------------------------------------------- */
.fv-area {
  width: 100%;
  height: 102vw;
  position: relative;
  z-index: 2;
}
.fv-area .fv-area__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  transition-duration:600ms;
  transition-timing-function: ease-in;
}
.fv-area__bg.bg01 {
  transition-delay:600ms;
}
.fv-area__bg.bg02 {
  transition-delay:800ms;
}
.fv-area__bg.bg03 {
  transition-delay:1000ms;
}
.fv-area__bg.bg04 {
  transition-delay:1200ms;
}
.fv-area .fv-logo {
  width: 8.77vw;
  position: absolute;
  top: 16.88vw;
  left: 12vw;
  /*right: 50%;
  margin-right: 27.5vw;*/
  z-index: 5;
}
.fv-area .fv-read {
  width: 6.8vw;
  position: absolute;
  top: 4.78vw;
  right: 13.6vw;
  z-index: 5;
}
.fv-logo img,
.fv-read img {
  max-width: 100%;
}

/*---------------------------------------------------------------------------------
リード
--------------------------------------------------------------------------------- */
.read-sec {
  padding-bottom: 21vw;
  margin-bottom: 233px;
  position: relative;
}
.read-sec::before {
  display: block;
	width: 100%;
	aspect-ratio: 1;
	background-color: #F8F8F8;
	clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  top: -38.6vw;
  left: 0;
  z-index: 1;
  content:"";
}
.read-sec-inner {
  width: 655px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.read-sec-inner__ttl {
  padding-bottom: 80px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.66;
  text-align: center;
  color: #46A4DB;
}
.read-sec-inner__ttl ruby {
  display: inline-block;
  font-size: 80px;
  position: relative;
}
.read-sec-inner__ttl ruby rt {
  display: block;
  width: 100%;
  font-size: 30px;
  position: absolute;
  top: -20px;
  left: 0;
  text-align: center;
}
.read-sec-inner_txt {
  font-size: 22px;
  line-height: 2.27;
  text-align: center;
}
.read-sec__bg {
  position: absolute;
  right: 0;
}
.read-sec__bg img {
  width: 100%;
  max-width: 100%;
}
.read-sec__bg.bg01 {
  width:  52.7vw;
  top: 37.9vw;
  z-index: 2;
}
.read-sec__bg.bg02 {
  width: 43.3vw;
  top: 33.4vw;
  right: -1.1vw;
  z-index: 3;
}

/*---------------------------------------------------------------------------------
ABOUT
--------------------------------------------------------------------------------- */
.about-sec {
  background: url("../img/the_beauty/about_bg.svg") repeat-y center -1314px;
  background-size: 4000px;
}

.about-sec-header {
  width: 1008px;
  margin: 0 auto 175px;
  padding-top: 225px;
  position: relative;
  z-index: 2;
}
.about-sec-header__ttl {
  width: fit-content;
  margin-bottom: 88px;
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}
.about-sec-header__ttl span {
  display: block;
  width: fit-content;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 600;
  color: #CCC;
}
.about-sec-header-in {
  width: 755px;
  margin-left: auto;
}
.about-sec-header-in__ttl {
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.6;
  color: #46A4DB;
}
.about-sec-header-in__txt {
  font-size: 18px;
  line-height: 1.88;
  font-weight: 500;
}

.about-list {
  width: 1168px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.about-list li {
  position: relative;
  z-index: 2;
  opacity: 1.0;
  transform: translate(0,0px)!important;
}
.about-list li::before {
  transform: translate(0,50px);
  opacity : 0;
}
.about-list li.effect-on::before {
  opacity: 1.0;
  transform: translate(0,0px)!important;
  transition : all 500ms 300ms ease-out;
}

.about-list-inner {
  position: relative;
  z-index: 5;
}
.about-list-inner__ttl {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}
.about-list-inner__ttl .jp {
  display: block;
  font-family: var(--font-jp);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.about-list-inner__txt {
  padding: 30px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
.about-list-inner__btn {
  width: 140px;
  margin-left: auto;
}
.about-list-inner__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #fff;
  width: 100%;
  height: 44px;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 500;
  text-box-edge: cap alphabetic;
  line-height: 1;
}
.about-list-inner__btn a::after {
  width: 13px;
  height: 13px;
  margin-left: 6px;
  content:"";
}
.about-list-img {
  position: absolute;
  left: 50%;
  transition-delay: 500ms;
}
.about-list-img:nth-last-child(1) {
  transition-delay: 700ms;
}

.about-list-datail01 {
  padding: 250px 0 78px 80px;
}
.about-list-datail01::before {
  display: block;
  width: 465px;
  height: 288px;
  background: url("../img/the_beauty/pc_abolut_list_01_bg.svg") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content:"";
}
.about-list-datail01 .about-list-inner {
  width: 408px;
  color: #46A4DB;
}
.about-list-datail01 .about-list-inner__ttl .jp {
  margin-bottom: 50px;
}
.about-list-datail01 .about-list-inner__btn a {
  border: 1px solid #46A4DB;
}
.about-list-datail01 .about-list-inner__btn a::after {
  background: url("../img/the_beauty/about_icon_arrow_01.svg") no-repeat;
}
.about-list-datail01__img01 {
  width: 451px;
  top: 203px;
  margin-left: 129px;
}
.about-list-datail01__img02 {
  width: 286px;
  top: 347px;
  margin-left: 4px;
}

.about-list-datail02 {
  padding: 122px 0 418px 325px;
}
.about-list-datail02::before {
  display: block;
  width: 1017px;
  height: 282px;
  background: url("../img/the_beauty/pc_abolut_list_02_bg.svg") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content:"";
}
.about-list-datail02 .about-list-inner {
  width: 428px;
  color: #E282B3;
  position: relative;
}
.about-list-datail02 .about-list-inner__ttl .jp {
  position: absolute;
  top: 125px;
  left: -247px;
}
.about-list-datail02 .about-list-inner__btn a {
  border: 1px solid #E282B3;
}
.about-list-datail02 .about-list-inner__btn a::after {
  background: url("../img/the_beauty/about_icon_arrow_02.svg") no-repeat;
}
.about-list-datail02__img01 {
  width: 453px;
  top: 445px;
  margin-left: -504px;
}
.about-list-datail02__img02 {
  width: 648px;
  top: 460px;
  margin-left: -67px;
}

.about-list-datail03 {
  padding: 208px 0 311px 134px;
}
.about-list-datail03::before {
  display: block;
  width: 745px;
  height: 302px;
  background: url("../img/the_beauty/pc_abolut_list_03_bg.svg") no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content:"";
}
.about-list-datail03 .about-list-inner {
  width: 428px;
  color: #A190C4;
}
.about-list-datail03 .about-list-inner__ttl .jp {
  margin-bottom: 50px;
}
.about-list-datail03 .about-list-inner__btn a {
  border: 1px solid #A190C4;
}
.about-list-datail03 .about-list-inner__btn a::after {
  background: url("../img/the_beauty/about_icon_arrow_03.svg") no-repeat;
}
.about-list-datail03__img01 {
  width: 274px;
  top: 165px;
  margin-left: 228px;
}
.about-list-datail03__img02 {
  width: 502px;
  top: 682px;
  margin-left: -89px;
}

/*DETAILs-------------------------------------------------------------------------*/
.details-bg01,
.details-bg02,
.details-bg03 {
  opacity : 0;
  position: absolute;
  top: 0;
  left: 0;
}
.effect-on .details-bg01,
.effect-on .details-bg02,
.effect-on .details-bg03 {
  opacity: 1.0;
  transition : all 500ms 300ms ease-out; 
}
.effect-on .details-bg02 {
  transition-delay: 500ms
}
.effect-on .details-bg03 {
  transition-delay: 700ms
}
.details-bg02 {}
.details-bg03 {}

.details-inner {
  width: 1007px;
  margin: 0 auto;
  position: relative;
  z-index: 6;
}
.details-inner header.effect-on {
  transition-delay: 900ms;
}
.details-inner__ttl {
  width: fit-content;
  font-size: 20px;
  color: #fff;
}
.details-inner__ttl span {
  display: block;
  width: fit-content;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 600;
}
.details-inner__read {
  font-size: 18px;
  line-height: 1.77;
  color: #fff;
}
.details-inner-wrap {
  padding-top: 100px;
}
.details-inner-wrap__ttl {
  padding: 34px 0 60px 105px;
  position: relative;
  font-size: 16px;
  line-height: 1;
  text-box-edge: cap alphabetic;
}
.details-inner-wrap__ttl::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content:"";
}
.details-inner-wrap__ttl .en {
  display: block;
  padding-bottom: 30px;
  font-family: var(--font-en);
  font-size: 50px;
  font-weight: 600;
}
.details-inner-salon {
  display: flex;
  flex-wrap: wrap;
}
.details-inner-salon li {
  width:244px;
  margin: 0 10px 10px 0;
}
.details-inner-salon li:nth-of-type(4n) {
  margin-right: 0;
}

.modal-datail {
  width: 100%;
  padding: 60px 0 0;
}
.modal-datail-inner {
  width: 244px;
  margin: 0 auto;
  line-height: 1;
}
.modal-datail-inner__img {
  margin-bottom: 10px;
}
.modal-datail-inner__area {
  margin-bottom: 10px;
  font-size: 12px;
  color: #46A4DB;
}
.modal-datail-inner__name {
  margin-bottom: 10px;
  font-size: 22px;
}
.modal-datail-inner__tag {
  display: flex;
  flex-wrap: wrap;
}
.modal-datail-inner__tag span {
  padding: 6px 7px;
  border: 1px solid #696969;
  border-radius: 5px;
  font-size: 10px;
  margin: 0 4px 4px 0;
}

/*同サロン説明会*/
.about-details01 {
  padding: 21.92vw 0 0;
  position: relative;
  z-index: 3;
}
.about-details01 .details-bg01,
.about-details01 .details-bg02,
.about-details01 .details-bg03 {
  width: 100vw;
  height: 79.6vw;
  top: -14.91vw;
}
.about-details01 .details-bg01 {
  background: url("../img/the_beauty/pc_detail01_bg01.svg") no-repeat;
  background-size: 100% auto;
}
.about-details01 .details-bg02 {
  background: url("../img/the_beauty/pc_detail01_bg02.svg") no-repeat;
  background-size: 100% auto;
}
.about-details01 .details-bg03 {
  background: url("../img/the_beauty/pc_detail01_bg03.svg") no-repeat;
  background-size: 100% auto;
}
.about-details01 header {
  height: 40.77vw;
}
.about-details01 .details-inner__ttl {
  margin-bottom: 60px;
}
.about-details01 .details-inner__read {
  width: 580px;
  margin: 0 0 0 163px;
}
.about-details01 .details-inner-wrap__ttl::before {
  width: 84px;
  height: 128px;
  background: url("../img/the_beauty/pc_about-details01_list_icon.svg") no-repeat;
}
.about-details01 .details-inner-wrap__ttl .sub {
  display: block;
  font-size: 22px;
  position: absolute;
  top: -10px;
  left: 105px;
}
.about-details01 .details-inner-salon li {
  width: 162px;
  margin: 0 7px 7px 0;
}
.about-details01 .details-inner-salon li:nth-of-type(4n) {
  margin-right: 7px;
}
.about-details01 .details-inner-salon li:nth-of-type(6n) {
  margin-right: 0;
}
.about-details01 .details-inner-salon li:nth-of-type(6n+2) {
  transition-delay: 400ms;
}
.about-details01 .details-inner-salon li:nth-of-type(6n+3) {
  transition-delay: 500ms;
}
.about-details01 .details-inner-salon li:nth-of-type(6n+4) {
  transition-delay: 600ms;
}
.about-details01 .details-inner-salon li:nth-of-type(6n+5) {
  transition-delay: 700ms;
}
.about-details01 .details-inner-salon li:nth-of-type(6n) {
  transition-delay: 800ms;
}

/*ヘアショー*/
.about-details02 {
  padding:36.33vw 0 0;
  position: relative;
  z-index: 3;
}
.about-details02 .details-bg01,
.about-details02 .details-bg02,
.about-details02 .details-bg03 {
  width: 100vw;
  height: 76.3vw;
  top: 6vw;
}
.about-details02 .details-bg01 {
  background: url("../img/the_beauty/pc_detail02_bg01.svg") no-repeat;
  background-size: 100% auto;
}
.about-details02 .details-bg02 {
  background: url("../img/the_beauty/pc_detail02_bg02.svg") no-repeat;
  background-size: 100% auto;
}
.about-details02 .details-bg03 {
  background: url("../img/the_beauty/pc_detail02_bg03.svg") no-repeat;
  background-size: 100% auto;
}
.about-details02 header {
  height: 43.97vw;
}
.about-details02 .details-inner__ttl {
  margin-bottom: 20px;
  text-align: right;
  position: relative;
  left: -80px;
}
.about-details02 .details-inner__ttl span {
  text-align: left;
  line-height: 1;
}
.about-details02 .details-inner__read {
  width: 580px;
  margin: 0 0 9vw 350px;
}
.about-details02 .details-inner-wrap__ttl::before {
  width: 84px;
  height: 128px;
  background: url("../img/the_beauty/pc_about-details02_list_icon.svg") no-repeat;
}
.about-details02 .details-inner-wrap__ttl .sub {
  display: block;
  font-size: 22px;
  position: absolute;
  top: -10px;
  left: 105px;
}
.about-details02 .details-inner-salon li:nth-of-type(4n+2) {
  transition-delay: 400ms;
}
.about-details02 .details-inner-salon li:nth-of-type(4n+3) {
  transition-delay: 500ms;
}
.about-details02 .details-inner-salon li:nth-of-type(4n+4) {
  transition-delay: 600ms;
}

/*美容商材・美容体験*/
.about-details03 {
  padding: 33.26vw 0 20vw;
  position: relative;
  z-index: 3;
}
.about-details03 .details-bg01,
.about-details03 .details-bg02,
.about-details03 .details-bg03 {
  width: 100vw;
  height: 72.4vw;
  top: 5vw;
}
.about-details03 .details-bg01 {
  background: url("../img/the_beauty/pc_detail03_bg01.svg") no-repeat;
  background-size: 100% auto;
}
.about-details03 .details-bg02 {
  background: url("../img/the_beauty/pc_detail03_bg02.svg") no-repeat;
  background-size: 100% auto;
}
.about-details03 .details-bg03 {
  background: url("../img/the_beauty/pc_detail03_bg03.svg") no-repeat;
  background-size: 100% auto;
}
.about-details03 header {
  height: 44.14vw;
}
.about-details03 .details-inner__ttl {
  margin: 0 0 45px 286px;
  text-align: right;
}
.about-details03 .details-inner__ttl span {
  margin-bottom: 15px;
  line-height: 1;
  text-align: left;
}
.about-details03 .details-inner__read {
  width: 545px;
  margin: 0 0 10.96vw 462px;
}
.about-details03 .details-inner-wrap__ttl::before {
  width: 64px;
  height: 128px;
  background: url("../img/the_beauty/pc_about-details03_list_icon.svg") no-repeat;
}
.about-details03 .details-inner-salon li:nth-of-type(4n+2) {
  transition-delay: 400ms;
}
.about-details03 .details-inner-salon li:nth-of-type(4n+3) {
  transition-delay: 500ms;
}
.about-details03 .details-inner-salon li:nth-of-type(4n+4) {
  transition-delay: 600ms;
}

/*---------------------------------------------------------------------------------
会場内マップ
--------------------------------------------------------------------------------- */
.map-sec {
  width: 1008px;
  margin: 0 auto 365px;
  position: relative;
  z-index: 5;
}
.map-sec::before {
  display: block;
  width: 644px;
  height: 644px;
  background: url("../img/the_beauty/pc_map_ttl_bg.svg") no-repeat right top;;
  position: absolute;
  top: 5px;
  left: -284px;
  z-index: 1;
  content:"";
}
.map-sec-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}
.map-sec-inner-ttl {
  font-size: 24px;
  line-height: 1;
}
.map-sec-inner-ttl span {
  display: block;
  margin-bottom: 70px;
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 600;
  line-height: 1;
  letter-spacing:-0.6em;
  color: #E282B3;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.map-img {
  background-color: #fff;
  width: 755px;
}
.map-img a {
  display: block;
  position: relative;
}
.map-img a::after {
  width: 30px;
  height: 30px;
  background: url("../img/the_beauty/icon_roupe.svg") no-repeat;
  position: absolute;
  top: 10px;
  right: 10px;
  content:"";
}
.map-bg01 {
  width: 404px;
  position: absolute;
  top: 1906px;
  right: -79px;
  z-index: 1;
}
.map-bg02 {
  width: 160px;
  position: absolute;
  top: 1758px;
  right: 212px;
  z-index: 2;
}

/*---------------------------------------------------------------------------------
開催概要
--------------------------------------------------------------------------------- */
.overview-sec {
  width: 1008px;
  margin: 0 auto 256px;
  position: relative;
  z-index: 6;
}
.overview-sec::before {
  width: 705px;
  height: 1301px;
  background: url("../img/the_beauty/pc_overview-sec_bg.svg") no-repeat;
  position: absolute;
  top: -287px;
  left: -180px;
  content:"";
}
.overview-sec-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  position: relative;
  z-index: 5;
}
.overview-sec-ttl {
  padding-left: 37px;
  writing-mode: vertical-rl;
  position: relative;
  font-size: 40px;
  line-height: 1;
  color: #46A4DB;
}
.overview-sec-ttl::before {
  width: 108px;
  height: 90px;
  background: url("../img/the_beauty/pc_overview_ttl_icon.svg") no-repeat;
  position: absolute;
  top: -116px;
  left: 0;
  content:"";
}
.overview-sec-ttl span {
  display: block;
  padding: 3px 0 0 5px;
  font-family: var(--font-en);
  font-size: 20px;
}
.overview-inner {
  width: 800px;
}
.overview-data {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-top: 1px solid #46A4DB;
  border-left: 1px solid #46A4DB;
  margin-bottom: 60px;
  font-size: 20px;
}
.overview-data dt {
  width: 197px;
  padding: 28px 0 29px;
  border-right: 1px solid #46A4DB;
  border-bottom: 1px solid #46A4DB;
  text-align: center;
}
.overview-data dd {
  width: calc(100% - 197px);
  padding: 28px 0 29px 97px;
  border-right: 1px solid #46A4DB;
  border-bottom: 1px solid #46A4DB;
}
.overview-data dd .add {
  display: block;
  font-size: 16px;
}
.overview-map iframe {
  width: 100%;
  height: 450px;
}
.overview-map > a {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1;
  text-decoration: underline;
}
.overview-img {
  position: absolute;
}
.overview-img.img01 {
  width: 202px;
  top: 1343px;
  left: -80px;
  z-index: 1;
}
.overview-img.img02 {
  width: 201px;
  top: 2494px;
  left: -180px;
  z-index: 2;
}
.overview-img.img03 {
  width: 403px;
  top: 1298px;
  right: -80px;
  z-index: 1;
}
.overview-img.img04 {
  width: 202px;
  top: 1868px;
  right: -180px;
  z-index: 2;
}
.overview-img.img05 {
  width: 232px;
  top: 3650px;
  right: -46px;
  z-index: 3;
}

/*---------------------------------------------------------------------------------
FAQ
--------------------------------------------------------------------------------- */
.faq-sec {
  width: 1008px;
  margin: 0 auto 470px;
  position: relative;
  z-index: 7;
}
.faq-sec::before {
  width: 605px;
  height: 605px;
  background: url("../img/the_beauty/pc_faq_bg.svg") no-repeat;
  position: absolute;
  top: 202px;
  left: 20px;
  z-index: 1;
  content:"";
}
.faq-sec-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  position: relative;
  z-index: 5;
}
.faq-sec-inner__ttl {
  font-size: 16px;
  line-height: 1;
  color: #E282B3;
  position: relative;
}
.faq-sec-inner__ttl::before {
  width: 90px;
  height: 90px;
  background: url("../img/the_beauty/pc_faq_ttl_icon.svg") no-repeat;
  position: absolute;
  top: -125px;
  left: 0;
  content:"";
}
.faq-sec-inner__ttl span {
  display: block;
  padding-bottom: 20px;
  font-family: var(--font-en);
  font-size: 60px;
  font-weight: 600;
}
.faq-sec-inner-in {
  width: 800px;
  padding-top: 15px;
}
.faq-list div {
  border-bottom: 1px solid #CCCCCC;
}
.faq-list dt {
  padding: 30px 145px 30px 118px;
  font-size: 20px;
  position: relative;
  cursor: pointer;
}
.faq-list dt::before {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  color: #E282B3;
  position: absolute;
  top: 24px;
  left: 30px;
  content:"Q.";
}
.faq-list dt::after {
  width: 43px;
  height: 18px;
  background: url("../img/the_beauty/icon_faq_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  right: 48px;
  bottom: 0;
  margin: auto;
  content:"";
}
.faq-list dt.selected::after {
  transform: rotate(180deg);
}

.faq-list dd {
  padding: 0 145px 30px 118px;
  font-size: 18px;
  line-height: 1.77;
}

.faq-img01 {
  width: 332px;
  position: absolute;
  top: -1000px;
  left: -210px;
  z-index: 2;
}
.faq-img02 {
  width: 332px;
  position: absolute;
  top: calc(110% + 2200px);
  left: 675px;
  z-index: 2;
}

/*---------------------------------------------------------------------------------
footer
--------------------------------------------------------------------------------- */
.footer {
  width: 712px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.footer__logo {
  width: 105px;
  margin: 0 auto 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.footer-nav a {
  margin: 0 0 20px 0;
  font-size: 16px;
  line-height: 1;
}
.footer-nav a:nth-of-type(4n+1) {
  width: 217px;
}
.footer-nav a:nth-of-type(4n+2) {
  width: 157px;
}
.footer-nav a:nth-of-type(4n+3) {
  width: 166px;
}
.footer-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  margin-bottom: 102px;
}
.footer-sns__ttl {
  width: 100%;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1;
  text-align: center;
}
.footer-sns a {
  width: 40px;
  margin: 0 10px;
}
.copyright {
  padding-bottom: 92px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
}
/*---------------------------------------------------------------------------------
JS
--------------------------------------------------------------------------------- */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:visible;}
#colorbox {
  overflow: visible!important;
}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:rgba(0,0,0,0.70); opacity: 1; filter: alpha(opacity = 100);}
#colorbox{outline:0;}
    #cboxContent{background:transparent; overflow:visible;}
        .cboxIframe{background: transparent;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:0px;}
        #cboxTitle{width:100%; color:#000;}
        #cboxCurrent{display: none!important;}
        #cboxLoadingOverlay{/*background:#fff;*/}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxClose{position:absolute; top:17px; right:15px; display:block; width: 28px; height: 28px; background-image: url("../img/common/btn_close.svg");background-size: 100% auto;}

        #cboxPrevious,
        #cboxNext {
          width: 13px;
          height: 35px;
          text-indent: 200%;
          white-space: nowrap;
          overflow: hidden;
          position: absolute;
          top: 0;
          bottom: 0;
          margin: auto;
        }
        #cboxPrevious{
          background: url("../img/the_beauty/btn_prev.svg") no-repeat;
          left: 15px;
        }
        #cboxNext{
          background: url("../img/the_beauty/btn_next.svg") no-repeat;
          right: 15px;
        }

/*SP ---------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #cboxClose {
    width: 18px;
    height: 18px;
    background-size: 100% auto;
    top: 17px;
    right: 20px;
    margin: 0;
  }
        #cboxPrevious,
        #cboxNext {
          width: 15px;
          height: 44px;
          background-size: 100% auto;
        }
        #cboxPrevious{
          left: -20px;
        }
        #cboxNext{
          right: -20px;
        }
  
}