@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

:root {
  --l-green: #eefff4;
  --green: #39744e;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.4rem, 3.3vw, 1.6rem);
  letter-spacing: 0.04rem;
  line-height: 2;
  text-align: center;
}

.en {
  font-family: "beloved-script", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

a.clarity:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.white {
  color: #ffffff;
}



.green {
  color: var(--green);
}

.red {
  color: #ff0000;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

h2,
h3,
h4,
h5 {
  line-height: 1.5;
  font-weight: 600;
}
.ft_16{
  font-size: clamp(1.4rem, 3.3vw, 1.6rem);
}
.ft_24{
  font-size: clamp(2.0rem, 4vw, 2.4rem);
}

.fadeInUpTrigger,
.fadeInRightTrigger,
.fadeInleftTrigger {
  opacity: 0;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.flex.row {
  flex-direction: row;
  justify-content: space-between;
}

header {
  width: 100%;
  height: 55px;
  background-color: var(--green);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  background-size: cover;
  z-index: 100;
}

.header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 4px 2vw;
}

header .logo {
  max-width: 350px;
  width: 60%;
}

/* ham_menu */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999;
  margin: 0;
  top: 8px;
  right: 8px;
  background: var(--blue);
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 8px;
  height: 1px;
  background: #ffffff;
  width: 25px;
  top: 20px;
}

.ham_btn span:nth-of-type(1) {
  top: 13px;
}

.ham_btn span:nth-of-type(2) {
  top: 27px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 14px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 26px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 26px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 26px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--green);
  overflow-y: auto;
  padding: 5%;
}

.nav_wrap nav {
  height: 50%;
}

.nav_wrap ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px 0;
  margin-bottom: 8px;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.6rem, 3.7vw, 2.0rem);
}

.nav_wrap.show {
  right: 0;
}

.float_area.flex {
  gap: 0;
  height: min(12vw, 60px);
  position: fixed;
  bottom: -100%;
  left: 0;
  transition: all 1s;
  background-color: var(--green);
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 4px 5vw;
  box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1);
}
.float_area.flex.active {

  bottom: 0;
 
}

.float_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float_btn a {
  height: 100%;
  width: auto;
}

.float_btn a img {
  height: 100%;
  width: auto;
}

.float_area.flex.fixed {
  bottom: 0;
  transition: all 1s;
}































.more a {
  display: inline-block;
  width: 100%;
  max-width: 270px;
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}

/* MV */
.MV {
  margin-top: 55px;
  position: relative;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

/* @keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
} */

.MV_logo {
  width: 50%;
  max-width: 384px;
  position: absolute;
  left: 5%;
  top: 5vw;
}



/* 共通 */
section {
  position: relative;
  padding: min(16vw, 80px) 0
}

.inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.deco {
  position: absolute;
}

.section_ttl {
  color: var(--green);
  font-size: min(12.5vw, 6.0rem);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.section_ttl span {
  color: #333333;
  font-size: min(8.3vw, 4.0rem);
}

#top_concept {
  padding: min(20vw, 100px) 0 40px;
}

#top_concept .inner {
  background-color: var(--l-green);
  padding: 20px 5vw;
  border-radius: min(5vw, 33px);

}

#top_concept .section_ttl {
  font-size: min(10.4vw, 5.0rem);
}

#top_concept h3 {
  font-size: clamp(2.4rem, 6.25vw, 3.0rem);
  color: var(--green);
}

#top_concept table {
  font-size: clamp(2.0rem, 5.4vw, 2.6rem);
  width: 90%;
  max-width: 360px;
  color: var(--green);
}

#top_concept table td {
  padding: 0 5%;
}

#top_concept .deco01 {
  bottom: -20vw;
  left: 2%;
  width: 30%;
  max-width: 320px;
}

#top_concept .deco02 {
  top: 2%;
  right: 5%;
  width: 30%;
  max-width: 228px;
  z-index: -1;
}

#top_feature .section_ttl {
  width: 100%;
  padding-bottom: 2%;
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
}

.feature_itemWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
margin: 0 auto;
}

.feature_itemWrap li {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items:center;
}

.feature_item_img1{
  background-image: url(../img/feature_item01.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.feature_item_img2{
  background-image: url(../img/feature_item02.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.feature_item_img3{
  background-image: url(../img/feature_item03.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.feature_item_img4{
  background-image: url(../img/feature_item04.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.feature_item_img5{
  background-image: url(../img/feature_item05.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.feature_item_img6{
  background-image: url(../img/feature_item06.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.feature_item p {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  color: #ffffff;
  font-size: clamp(2.4rem, 6.25vw, 3.5rem);
  text-shadow:4px 0px 4px rgba(0, 0, 0, 0.7) ;
}

.feature_item p span {
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  word-break: keep-all;
}

/* pcスタイル */
@media screen and (min-width: 580px) {
  .feature_itemWrap li {
    width: calc((100% - 40px)/ 2);
  }

  .feature_item p {

    font-size: clamp(2rem, 2vw, 3.5rem);

  }

  .feature_item p span {

    font-size: clamp(1.4rem, 2vw, 2.6rem);

  }
}


.menu {
  background-image: url(../img/menu_bg.png);
  background-size: cover;
}

.menu_itemWrap-outer {
  background-color: var(--l-green);
  padding: 20px 5vw;
  border-radius: min(5vw, 33px);
  width: 100%;
}

.menu_itemWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 20px;
  justify-content: center;

}

.menu_itemWrap>li {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
  font-weight: 500;
}

.menu_itemWrap h3 {
  font-size: clamp(2.0rem, 4vw, 2.6rem);
}

.menu_itemWrap .logo {
  max-width: 180px;
  margin: 0 auto;
}

.staff_container {
  padding-bottom: min(30vw, 200px);
}

.staff_container .section_ttl {
  width: 100%;
  padding-bottom: 2%;
  border-top: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
  margin-bottom: 40px;
}

.staff_container h3 {
  font-size: min(10.4vw, 5.0rem);
  width: 100%;
  text-align: left;
  color: var(--green);
}

.staff_container .inner {
  margin-bottom: 40px;
}

.staff {
  display: flex;
  align-items: center;
  gap: 2%;
}

.staff>a {
  width: 50%;
}

.staff_info {
  width: 50%;
  text-align: justify;
}

.staff_info a {
  color: var(--green);
  font-size: clamp(2.0rem, 4vw, 2.4rem);
  display: inline-block;
  position: relative;
  font-weight: 600;
  padding-right: 3rem;
  line-height: 1;
}

.staff_info a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 12px solid var(--green);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.staff_container .deco {
  width: 50%;
  max-width: 326px;
  bottom: 2vw;
  right: 0;
  z-index: -1;
}


.salon {
  overflow: hidden;
  padding-top: 100px;
}

.salon::before {
  content: "";
  width: 1920px;
  height: 60px;
  background-image: url(../img/bg_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: 0;
  left: 0;

}

dl.flex {
  width: 100%;
  margin: 40px auto;
  font-size: clamp(1.6rem, 3.7vw, 2.0rem);
  font-weight: 500;
  line-height: 1.5;
  gap: 0;
}


dl a {
  color: #333333;
}

dt {
  padding: 12px;
  border-bottom: 1px solid var(--green);
}

dd {
  padding: 16px 8px;
  border-bottom: 1px solid var(--green);
}

.salon .deco01 {
  width: 35%;
  max-width:170px;
  top: 65px;
  left: 5%;
  z-index: -1;
}


.gallery {
  background-image: radial-gradient(#c3d5ca 1.5px, transparent 1.5px);
  background-position: 15px 15px;
  background-size: 30px 30px;
  padding-bottom: min(25vw, 160px);
}


.gallery .more a {
  margin: 20px auto;
}


.top_slide {
  position: relative;
  z-index: 2;
  margin: 40px 0;
}

.top_slide .slide {
  margin-left: 3vw;
  width: min(80vw, 400px);
}


.gallery .deco01 {
  top: 150px;
  left: -10%;
  z-index: 0;
}

.gallery .deco02 {
  bottom: 2%;
  right: 0;
  width: min(40%, 134px);
}

#contact {
  background-color: var(--l-green);
 ;
 padding-bottom: 0;
}
#contact p{
word-break: keep-all;
}
#contact h3{
  margin: 20px 0 0;
  font-size: clamp(2.4rem, 8.3vw, 4.0rem);
  font-weight: 600;
}

#contact .map {
  height: min(80vw, 450px);
  width: 100%;
}

#contact  iframe {
  height: 100%;
  width: 100%;
  display: block;
}










footer {

  color: var(--green);
}
.footer_inner {
padding: 20px 0;
}
footer .logo {
  width: 80%;
  max-width: 286px;
  margin: 0 auto 10px;
}
.footer_info {
  width: 90%;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.footer_name{
  width: 80%;
  margin: 0 auto;
}
.footer_iconWrap{
  display: flex;
  margin: 0 auto;
  gap: 40px;
}


.footer_nav{
  width: 80%;
  margin: 20px auto 0;
}
.footer_nav ul{
display: flex;
flex-direction: column;
gap: 14px;
text-align: left;
}
.footer_nav ul li a{
color: var(--green);
font-size: 1.8rem
}
#go_top {
  position: fixed;
  bottom:min(13vw, 65px);
  right: 10px;
  width: 40px;
  z-index: 50;
}

.cr {
  padding: 10px;
  width: 100%;
  background-color: var(--green);
  font-weight: 700;
  color: #ffffff;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }
  
  .flex {
    flex-direction: row;
    justify-content: space-between;
  }

  .flex.reverse {
    flex-direction: row-reverse;
  }

  .flex.column {
    flex-direction: column;
    justify-content: flex-start;
  }

  .inner_1150{
    max-width: 1150px;
  }
  .inner_1280{
    max-width: 1150px;
  }
  .inner_1300{
    max-width: 1300px;
  }
  .inner_1460{
    max-width: 1460px;
  }
  .inner_1530{
    max-width: 1530px;
  }
  .inner_1730{
    max-width: 1730px;
  }

  header {
    position: fixed;
    height: 80px;
    line-height: 1.2;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.1);
  }

  .header_inner {
    gap: 20px;
    position: relative;
    align-items: center;
    z-index: 5;
    padding: 4px 2vw 0 2vw;
  }

  header .logo {
    width: 30%;
    max-width: 317px;
  }
  .header_right{
    display: flex;
    gap: 1.5vw;
    align-items: center;
    justify-content:flex-end ;
    max-width: 1000px;
    width: 100%;
  }

  .pc_nav {
    width: 100%;
   }
   .pc_nav ul {
    width: 100%;
    font-size: 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
  }

   .pc_nav ul li a { 
    color: #ffffff;
    line-height: 1;
    position: relative;
    font-size: 1.8rem;
  }
.header_insta{
 min-width: 32px;
 width: 32px;
}

.header_tel{
  width: 100%;
  max-width:230px ;
}
.header_web{
  width: 100%;
  max-width:160px ;
}



  .float_area.flex {
 display: none;
  }

 
.MV{
  margin-top: 80px;
}

.MV_logo {
    left: 7%;
    top: auto;
  bottom: 10%;
}
  .MV_text {
    width: 9%;
    right: 10%;
    top: 8vw;
  }
  #top_concept{
    padding-bottom: 120px;
  }
#top_concept .inner{
  max-width: 1146px;
  padding: 40px min(5vw,120px);
}
#top_concept .inner p{
text-align: justify;
}

#top_concept .deco01{
  bottom: 0;
  max-width: 320px;
  left:calc(50% - 600px);
  transform: translateX(-80%);
}
#top_concept .deco02{
top: 100px;
  right:calc(50% - 600px);
  transform: translateX(90%);
}

#top_feature{
  padding-bottom: 200px;
}

#top_feature .section_ttl {
    width: 100%;
    max-width: 480px;
    padding-bottom: 2%;
    border:none;
    text-align: left;
    position: relative;
}
#top_feature .section_ttl span{
    text-align: right;
}

#top_feature .section_ttl::before, 
#top_feature .section_ttl::after {
content: "";
width: min(45vw,587px );
height:1px;
background-color: var(--green);
position: absolute;
top: 40px;
left: calc(100% - 160px);

}
#top_feature .section_ttl::after {
top: 124px;
left: auto;
right: calc(100% - 160px);

}

.feature_itemWrap li {
 
  width: calc((100% - 80px)/3);
}


.menu{
  padding: 120px 0 ;
}

.menu_itemWrap-outer{
padding: 40px;
}
.menu_itemWrap{
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px;
}

.menu_itemWrap>*{
width: calc((100% - 120px) / 4);
}

.menu_itemWrap .logo {
    max-width: 180px;
    margin: 0 auto 0 0;
}


.staff_container{
  padding: 120px 0;
  overflow: hidden;
}

.staff_container .section_ttl {
    width: 100%;
    max-width: 430px;
    padding-bottom: 2%;
    border:none;
    text-align: left;
    position: relative;
}
.staff_container .section_ttl span{
    text-align: right;
}

.staff_container .section_ttl::before, 
.staff_container .section_ttl::after {
content: "";
width: min(45vw,587px );
height:1px;
background-color: var(--green);
position: absolute;
top: 40px;
left: calc(100% - 160px);

}
.staff_container .section_ttl::after {
top: 124px;
left: auto;
right: calc(100% - 160px);

}
.staff_Wrap{
  flex-wrap: wrap;
  justify-content: flex-start;
}
.staff{
  flex-direction: column;
  width: calc((100% - 160px) / 5);
  min-width: 300px;
  gap: 0;
 
}

.staff>a{
width: 100%;
}

.staff_info{
width: 100%;
padding-top: 12px;
}

.staff_container .deco {
  bottom: 5%;
right: calc(50% - 500px);
transform: translateX(50%);

}
.salon{
  padding-top: 200px;
}
.salon>.inner{
  gap: min(4vw,60px);
  padding-top: 60px;
}


.salon::before {
    content: "";
    width: max(100% , 1920px);
    height: auto;
    aspect-ratio: 1920 / 60; 

}
.salon .deco01 {
  width: 170px;
    top: 160px;
    left: calc(50% - 280px);
    transform: translateX(-50%);
}
.salon .deco02 {
  display: block;
  width: 150px;
  bottom: 80px;
  right: calc(50% - 700px);
  transform: translateX(50%);
  z-index: -1;
}

.salon dl{
  width: 50%;
  flex-direction: column;
  font-size: 1.6rem;
}
.description-item{
  display: flex;
}
.description-item dt{
  width: 160px;
}
.description-item dd{
  width:calc(100% - 160px)
}
#top_salon .description-item:last-of-type{
  flex-direction: column;
}
#top_salon .description-item:last-of-type dt{
width: 100%;
border: none;
padding-bottom: 0;
}
#top_salon  .description-item:last-of-type dd{
width: 100%;
}
.gallery {
  background-image: radial-gradient(#c3d5ca 1.5px, transparent 1.5px);
  background-position: 1vw 1vw;
  background-size: 2vw 2vw;
}


.top_slide .slide {
    margin-left: 20px;
    width:20vw;
  }

.gallery .deco01 {
    top: 150px;
    left: 10%;
    z-index: 0;
}
.gallery .deco02 {
    top: 170px;
   right: 5%;
}

#contact{
  padding: 0;
}
.contact_info{
  width: 50%;
  padding: 40px 0;
}
#contact .map{
  width: 50%;
  height: 100%;
}
#contact .map iframe{
  width: 100%;
  height: 100%;
}
  .footer_inner {
width: 60%;
margin-left: 5vw;
  }
footer .logo{
  margin: 0 ;
}
  .footer_info {
    width: 100%;
    justify-content: space-evenly;
    margin: 0;
    max-width: 580px;
  }
  .footer_nav{
    width: 100%;
  }
.footer_nav ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    gap: 24px;
    text-align: left
}

#go_top {
 
  bottom:20px;

  width: 60px;

}

}

.u_mv .MV_ttl {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: #ffffff;
  font-size: clamp(3.6rem, 10.4vw ,5.0rem);
  display: flex;
  flex-direction: column;
}
.u_mv .MV_logo {
width: 40%;
top: 1vw;
left: 2vw;
}
#salon_01 h4{
  font-size: clamp(2.4rem, 6.6vw ,3.2rem);
  padding-top: 20px;
}

.salon_lead p{
  font-size: clamp(1.6rem, 3.7vw , 1.8rem);

}

#salon_02 .content_itemWrap{
  list-style: none;
}
#salon_02 .content_item{
display: flex;
flex-direction: column;
gap: 0;
}
#salon_02  .content_ttl{
  color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--green);
}
#salon_02  .content_ttl .no{
  font-size: min(12.5vw, 6.0rem);
line-height: 1.8;
}
#salon_02  .content_ttl h4{
  font-size: clamp(2.0rem, 4.8vw, 2.4rem);
  text-align: left;

}
#salon_02  .content_ttl h4.ft_22{
  font-size: clamp(1.8rem, 4.5vw, 2.0rem);
  text-align: left;
}

#salon_02  .content_textWrap p{
padding-bottom: 20px;
}
#salon_02  .content_textWrap .insta_icon{
display: block;
width: 40px;
margin: 20px auto;
}
#salon_03 {
  padding-bottom: 200px;
}
#salon_03 .content_textWrap{
  display: flex;
  flex-direction: column;
  gap: 24px;

}

#salon_03 .section_ttl .ft_16{
  font-size: clamp(1.4rem, 3.3vw, 1.6rem);
}


/* pcスタイル */
@media screen and (min-width: 960px) {
  .u_mv .MV_ttl {
    bottom: 50%;
  }
  .u_mv .MV_logo {
  width: 19%;
  top: 1vw;
  left: 3vw;
  }
  #salon_02 {
    padding-bottom: 200px;
  }
#salon_02 .deco01 {
        display: block;
        width: 150px;
        top: 0;
        right: calc(50% - 600px);
        transform: translate(50%,50%);
        z-index: -1;
    }
#salon_02 .deco02 {
        display: block;
        width: 130px;
        bottom: 0;
        left: calc(50% - 700px);
        transform: translateY(-50%);
        z-index: -1;
    }


    #salon_02 .content_itemWrap{
      flex-direction: column;
      gap: 0;
      padding: 40px 0;
    }
    #salon_02 .content_item{
      flex-direction: row;
      gap: 0;
    }
    #salon_02 .content_img{
      width: 50%;
    }
    #salon_02 .content_textWrap{
      width: 50%;
    }
    #salon_02 .content_ttl{
   flex-direction: row-reverse;
   align-items: center;
padding-top: 40px;
    }
    #salon_02 .content_ttl h4{
 padding: 0 10%;
 font-size: clamp(2.0rem, 4.8vw, 2.6rem);
     
    }
    #salon_02 .content_textWrap p{
padding: 0 5%;
    }
    #salon_02 .content_item:nth-of-type(even){
      flex-direction: row-reverse;
    
    }

    #salon_02 .content_item:nth-of-type(even) .content_ttl{
      flex-direction: row;
     
    }

    #salon_02  .content_ttl h4.ft_22{
      font-size: clamp(1.8rem, 4.5vw, 2.6rem);
     padding: 0 5%;
    }

    #salon_02  .content_textWrap .insta_icon{
      margin: 40px auto;
      }
      #salon_03 .inner{
        gap: 5vw;
      }
      #salon_03 .content_textWrap{
        width: 50%;
      }
      #salon_03 .content_imgWrap{
        width: 50%;
        display: flex;
        flex-direction: row;
      }

}



#staff_01 h3{
  text-align: center;
}
#staff_01 .staff_Wrap {
  gap:80px ;
  padding-bottom: 100px;
}
#staff_01 .staff_Wrap li{
  margin-top: -100px;
  padding-top: 100px;
  flex-direction: column;
}
#staff_01  .staff_img{
width: 96%;
margin: 0 auto;
text-align: left;
position: relative;
}
#staff_01 .staff_info{
width: 100%;
margin-top: 40px;
}
#staff_01  li .name_deco{
position: absolute;
font-size: clamp(3.6rem, 9vw ,5.0rem);
color: #dec5a6;
text-wrap: nowrap;
transform:translateY(50%) rotate(-20deg);
right: -5%;
bottom: 10%;
}

#staff_01  li a{
  display: inline-block;
width: 36px;
margin: 20px 0;
}
#staff_01 .staff_info{
  
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 20px;
}
#staff_01 .staff_info h4{
  color: var(--green);
  font-size: clamp(2.4rem, 5.8vw, 2.8rem);
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
#staff_01 .staff_info h4 span{
  color:#333333;
  font-size: clamp(1.4rem, 3.3vw, 1.6rem);
}
#staff_01 .staff_info dl{
  font-size: clamp(1.4rem, 3.3vw, 1.6rem);
  font-weight: 600;
  margin: 0;
}
#staff_01 .staff_info dt,
#staff_01 .staff_info dd{
border-bottom: none;
padding: 4px 0;
}
#staff_01 .description-item{
border-bottom: 2px dashed #e7ded5;
padding: 14px 0;
}
#staff_01 .staff_img{
  padding-bottom: 80px;
}
#staff_01 .staff_img.has_insta{
  padding-bottom: 0;
}
#staff_01 .assistant_wrap .staff_info{
  text-align: center;
}

/* pcスタイル */
@media screen and (min-width: 960px) {

#staff_01 h3{
  text-align: left;
  max-width: 1280px;
}

#staff_01 .stylist_wrap{
  flex-direction: column;
  gap: 80px;
  margin-bottom: 120px;
}
#staff_01 .stylist_wrap li{
  flex-direction: row;
  width: 100%;
  gap: 4vw;
}

#staff_01 .stylist_wrap li .staff_img{
  width: 30%;
}
#staff_01  li .name_deco{
  position: absolute;
  font-size: clamp(3.6rem, 3.9vw ,5.0rem);
  color: #dec5a6;
  text-wrap: nowrap;
  transform:translateY(50%) rotate(-20deg);
  right: -10%;
  bottom: 10%;
  }

  
#staff_01 .stylist_wrap li .staff_info{
  width: 70%;
 
}
#staff_01 .stylist_wrap dl{
  flex-direction: column;
  width: 100%;
}
#staff_01 .stylist_wrap .staff_img{
  padding-bottom: 0;
}
.assistant_wrap {
  justify-content: center;
  padding-bottom: 200px;
}

.assistant_wrap li{
  width: calc((100% - 160px) / 3);
}
#staff_01 .deco_01{
  display: block;
  width: 326px;
  top: 100px;
  bottom: auto;
  right: calc(50% - 600px);
  transform: translate(50%,50%);
  z-index: -1;
}
#staff_01 .deco_02{
  display: block;
  width: 326px;

  bottom: 5%;
  left: calc(50% - 700px);
  transform: translate(-50%,50%);
  z-index: -1;
}

}

#gallery_01{
  padding-bottom: 100px;
}
#gallery_01 .section_ttlWrap{

position: relative;
padding-bottom: min(20vw, 100px);
}
#gallery_01 .section_ttlWrap .deco01{
width: min(30vw,146px);
bottom: 5%;
top: auto;
left: -35px;
}
#gallery_01 .section_ttlWrap .deco02{
width: min(25vw,110px);
bottom: 5%;
top: auto;
}


#gallery_01  .content_itemWrap {
width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: min(3vw, 20px) 2vw;
  position: relative;
}


/* モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  margin: 15% auto;
  width: 80%;
}
.modal-close {
  position: absolute;
  bottom:calc(100% + 5px);
  right: 0px;
  width: 26px;
  height: 26px;
  background-image: url(../img/modal_close.png);
  background-size: contain;
  cursor: pointer;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  #gallery_01{
    padding-bottom: 200px;
  }
  #gallery_01  .content_itemWrap {
    width: 100%;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: min(3vw, 20px) 2vw;
      position: relative;
    }

}

#recruit table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px auto;
}
#recruit th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
#recruit th {
  background: #39744e;
  color: #fff;
}

@media screen and (max-width: 960px) {
	#recruit th, td {
		display: block;
		width: 100%;
	}
}