@charset 'UTF-8';

/*Base------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  font-family: “Times New Roman”, “游明朝”, “Yu Mincho”, “游明朝体”, “YuMincho”,
    “ヒラギノ明朝 Pro W3”, “Hiragino Mincho Pro”, “HiraMinProN-W3”, “HGS明朝E”,
    “ＭＳ Ｐ明朝”, “MS PMincho”, serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: .1em;
  color: #333;
  background-color: #ffffff;
  margin: 0 auto;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover {
  opacity: .6;
}

li {
  list-style: none;
}

.sp-br {
  display: none;
}

.menu-single {
  position: relative;
}

.menu-single:hover ul {
  display: block;
}

.menu-second {
  display: none;
  margin: 0px;
  /* ★2:サブメニュー外側の余白(ゼロ) */
  padding: 0px;
  /* ★3:サブメニュー内側の余白(ゼロ) */
  position: absolute;
  ;
}


.menu-second {
  /* ※A */
  width: 24.5rem;
  padding: 1.3rem;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px #4a9489;
  z-index: 100;
}

.menu-second-li {
  margin-top: 10px;
  margin-bottom: 15px;
}

.menu-second-li:first-child {
  margin-top: 0;
}

.menu-second-li:last-child {
  margin-bottom: 10px;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto 200px auto;
}

.wrapper2 {
  margin: 0 auto 200px auto;
}

.section-title {
  font-size: 2rem;
  color: #4a9489;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
  align-items: center;
  /* 横線を上下中央 */
  display: flex;
  /* 文字と横線を横並び */
  justify-content: center;
  /* 文字を中央寄せ */
}


.section-title::before,
.section-title::after {
  background-color: #4a9489;
  /* 横線の色 */
  content: "";
  height: 2px;
  /* 横線の高さ */
  width: 50px;
  /* 横線の長さ */
}

.section-title::before {
  margin-right: 20px;
  /* 文字との余白 */
}

.section-title::after {
  margin-left: 20px;
  /* 文字との余白 */
}

.section-title2 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  background-color: #ffffff;
  margin-bottom: 100px;
  align-items: center;
  /* 横線を上下中央 */
  display: inline flex;
  /* 文字と横線を横並び */
  justify-content: center;
  /* 文字を中央寄せ */
  padding: .8rem 2rem;
  box-sizing: border-box;
}

.section-title2::before,
.section-title2::after {
  background-color: #333;
  /* 横線の色 */
  content: "";
  height: 2px;
  /* 横線の高さ */
  width: 50px;
  /* 横線の長さ */
}

.section-title2::before {
  margin-right: 20px;
  /* 文字との余白 */
}

.section-title2::after {
  margin-left: 20px;
  /* 文字との余白 */
}



/*Header------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1;
  box-shadow: 0px 6px 5px -5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
}

.salon-name {
  display: flex;
  align-items: center;
}

.salon-icon {
  padding-right: 10px;
  width: 3.8rem;
}

.pc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
}

.pc-header a {
  display: block;
}

.pc-header-sns {
  display: flex;
  margin-left: 20px;
}

.pc-header-sns a {
  width: 2.4rem;
  margin-left: 8px;
}

.pc-header-sns a:first-child {
  margin: 0;
}

.pc-header-ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.pc-header-li {
  font-weight: bold;
}

.pc-header-li:last-child {
  padding-right: 0;
}

.pc-header-li:first-child {
  padding-left: 3rem;
}

.pc-header-li a:hover {
  opacity: 1;
}

.pc-header-nav {
  display: flex;
  align-items: center;
}

.pc-nav-btn {
  background-color: #4a9489;
  box-sizing: border-box;
  padding: 1.6rem 1.7rem;
  color: #ffffff;
  font-weight: bold;
}

.header-salon-name-png {
  width: 12.3rem;
}

/*li マウスオーバー------------------------------------------------*/
.pc-header-ul {
  display: flex;
  list-style: none;
}

.pc-header-li a {
  padding: 10px 1rem;
  text-decoration: none;
  color: #333;
}


/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.pc-header-li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}

.pc-header-li.current a,
.pc-header-li a:hover {
  color: #4a9489;
}

.menu-second-li.current a,
.menu-second-li a:hover {
  color: #4a9489;
}

.menu-second-li {
  width: 100%;
}

.pc-header-li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 10%;
  /*線の形状*/
  width: 80%;
  height: 2px;
  background: #4a9489;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

.li-last a::after {
  left: 4%;
  width: 92%;
}

/*現在地とhoverの設定*/
.pc-header-li.current a::after,
.pc-header-li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}


/*fv---------------*/
.max-container {
  width: 100%;
}

.top-fv {
  margin-bottom: 100px;
  padding-top: 79px;
}

.top-fv img {
  width: 100vw;
}


/*section1---------------*/
.concept-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.concept-title {
  color: #4a9489;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.5rem;
  letter-spacing: .3rem;
}

.concept-text1 {
  padding-top: 2rem;
}

.concept-text2 {
  padding-top: 1rem;
}

#concept {
  margin-top: 150px;
}

/*section2---------------*/
.profile-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.owner-name {
  font-size: 1.4rem;
}

.owner-name-span {
  font-size: 1.2rem;
}

.profile-img {
  width: 45%;
}

.profile-textbox {
  width: 45%;
}

.owner-name {
  margin-top: 0;
  letter-spacing: .2rem;
}

.owner-name-frigana {
  margin-bottom: 0;
  font-size: .8rem;
}

/*section3---------------*/
.menu-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 150px;
}

.menu-title {
  font-size: 1.9rem;
  color: #4a9489;
  font-weight: bold;
  border-bottom: dashed 1px #4a9489;
  display: inline-block;
  letter-spacing: .2rem;
}

.menu-img {
  width: 45%;
}

.menu-textbox {
  width: 45%;
}

.menu-btn {
  background-color: #b0ebe2;
  display: inline-block;
  padding: 1.2rem 4rem;
  border-radius: 3rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.menu-btn:hover {
  background-color: #4a9489;
  color: #ffffff;
  transition: .3s;
}

.menu-textbox a:hover {
  opacity: 1;
}

.menu-text {
  margin: 3rem 0;
}

.menu-flex-reverse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 150px;
}

#menu {
  margin-bottom: 50px;
}

/*section4---------------*/

#reason {
  background-color: #b8f2e9;
  padding-bottom: 150px;
  padding-top: 100px;
  text-align: center;
}

.reason-flex {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding-right: 3%;
  padding-left: 3%;
}

.reason-items {
  width: 30.3%;
}

.reason-title {
  text-align: center;
  color: #4a9489;
  line-height: 2.3rem;
  margin: 0;
  padding-top: 60px;
  font-size: 1.6rem;
  letter-spacing: .3rem;
}

.reason-textbox {
  background-color: #ffffff;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  height: 19rem;
}

.reason-number {
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  width: 125px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  left: 50%;
  transform: translateX(-50%);
  top: -65px;
  color: #4a9489;
}

.reason-text {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 30px;
}

/*contact---------------*/
#contact {
  text-align: center;
}

.contact-p {
  text-align: center;
}

.carender-btn {
  background-color: #b0ebe2;
  display: inline flex;
  align-items: center;
  padding: .4rem 10.2rem;
  border-radius: 4rem;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 30px;
}

.carender-btn img {
  width: 45px;
  margin-right: 20px;
}

.contact-btn {
  background-color: #535656;
  color: #ffffff;
  display: inline flex;
  align-items: center;
  padding: .5rem 8rem;
  border-radius: 4rem;
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 30px;
}

.contact-btn img {
  width: 45px;
  margin-right: 20px;
}

.contact-bottom-p {
  margin-top: 100px;
}

.line-box {
  display: flex;
  background-color: #06c655;
  padding: 1.2rem;
  box-sizing: border-box;
  width: 47rem;
  margin: 0 auto 50px auto;
  justify-content: space-between;
  align-items: center;
}

.line-title {
  font-size: 2.1rem;
  font-weight: bold;
  color: #ffffff;
  font-family: sans-serif;
  margin-top: 0;
  line-height: 1.3;
}

.line-subtitle {
  font-size: 1.8rem;
  color: #ffffff;
}

.line-text-container {
  text-align: left;
  width: 55%;
  padding-left: 1rem;
}

.line-textbox {
  background-color: #ffffff;
  padding: 1.3rem 1rem;
}

.line-img {
  width: 40%;
}

.line-img img {
  width: 250px;
}

.bottom-sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: solid 1px #4a9489;
  width: 100%;
  box-sizing: border-box;
}

.bottom-sns img {
  width: 50px;
  margin-right: 20px;
}

.bottom-sns {
  display: flex;
  justify-content: space-between;
  width: 47rem;
  margin: auto;
}

.bottom-sns-a {
  width: 48%;
}

.bottom-sns-btn:hover {
  border-radius: 50px;
  transition: .3s;
}

/*access---------------*/
.access-p {
  text-align: center;
  font-size: 1.3rem;
}

.access-span {
  font-size: .9rem;
}

#access {
  margin-bottom: 300px;
}

.top-bottom {
  text-align: center;
}

.top-bottom img {
  width: 100vw;
}

footer {
  background-color: #333;
  color: #ffffff;
  text-align: center;
  padding: 5px 0;
}

/*感想---------------*/

#thoughts {
  background-color: #b8f2e9;
  padding-bottom: 150px;
  padding-top: 100px;
  text-align: center;
  margin-bottom: 0;
}

.thoughts-box-title {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #333;
  padding-bottom: 5px;
}

.thoughts-box-title img {
  width: 9%;
}

.voice-title {
  font-size: 1.3rem;
  padding-left: 1rem;
}

.thoughts-box {
  background-color: #fff;
  width: 1000px;
  padding: 1.8rem;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 80px;
  border-top: solid 5px #4a9489;
  line-height: 1.9;
  letter-spacing: .2rem;
}

.thoughts-text {
  padding-top: 1.8rem;
}

.voice-from {
  padding-top: 2rem;
  text-align: end;
}

/*hamberger---------------*/

.humberger {
  display: none;
}

.humberger-span {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: absolute;
  top: 1.9rem;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  z-index: 100;
  display: flex;
  margin-right: 2rem;
}

/*ボタン内側*/
.humberger-span span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  height: 4px;
  border-radius: 2px;
  background: #2c2207;
  width: 80%;
}

.humberger-span span:nth-of-type(1) {
  top: 10px;
}

.humberger-span span:nth-of-type(2) {
  top: 23px;
}

.humberger-span span:nth-of-type(3) {
  top: 37px;
}

/*activeクラスが付与されると線が回転して×に*/

.humberger-span.active span:nth-of-type(1) {
  top: 18px;
  left: 7px;
  transform: translateY(6px) rotate(-45deg);
  width: 80%;
}

.humberger-span.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.humberger-span.active span:nth-of-type(3) {
  top: 30px;
  left: 7px;
  transform: translateY(-6px) rotate(45deg);
  width: 80%;
}

.sp-header-nav {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 100%;
  background-color: #fff;
  transition: .5s;
  overflow: auto;
}

#drawer_input:checked~.sp-header-nav {
  left: 0;
}

input[type="checkbox"] {
  display: none;
}

/*tablet---------------*/

@media screen and (max-width : 1380px) {
  /*header---------------*/

  .humberger {
    display: block;
    position: relative;
    width: 100%;
    padding: .7rem 0;
  }

  .sp-header-ul {
    padding: 0 4rem;
    margin: 1rem 0;
  }

  .sp-header-ul a {
    display: block;
    padding-left: 1.3rem;
  }

  .sp-salon-name {
    display: flex;
    align-items: center;
    margin-left: 2rem;
  }

  .hum-salon-name {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    margin-top: 1.5rem;
  }

  .sp-header-li {
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: dotted 3.5px #333;
  }

  .sp-header-li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-header-li img {
    width: 8%;
    height: auto;
  }

  .li-last {
    margin-bottom: 3rem;
  }

  .sp-header-menu {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .sp-header-menu img {
    width: 7%;
    height: auto;
  }

  .header-salon-name-png {
    width: 16.5rem;
  }

  .salon-icon {
    width: 5rem;
  }

  .pc-header-nav {
    display: none;
  }

  .pc-header {
    display: none;
  }

  .sp-header-sns {
    padding: 0 4rem;
    display: flex;
    align-items: center;
    margin-top: 4rem;
  }

  .sp-nav-btn {
    padding: 0 4rem;
  }

  .sp-nav-btn {
    background-color: #b0ebe2;
    display: inline flex;
    align-items: center;
    padding: 1.3rem 10rem;
    border-radius: 4rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 30px;
  }

  .sp-nav-btn img {
    width: 45px;
    margin-right: 20px;
  }

  .sp-header-sns-a img {
    width: 25%;
    margin-left: 1.3rem;
  }

  .sp-header-nav {
    text-align: center;
  }

  .sp-header-nav-a {
    width: 400px;
    display: block;
  }

  .sp-sns-follows {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp-sns-follows:before {
    border-top: 1px solid;
    content: "";
    width: 3em;
  }

  .sp-sns-follows:before {
    margin-right: 1em;
    /* 文字の右隣 */
  }
  .top-fv {
    padding-top: 110px
  }


  /*acd-----------------*/
  .sp-acd summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 1.3rem;
    margin-top: .2em;
    margin-bottom: .2em;
  }

  .sp-acd summary::-webkit-details-marker {
    display: none;
  }

  .sp-menu-second {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .8s, opacity .8s;
  }

  .sp-acd[open] ul {
    transform: none;
    opacity: 1;
  }

  .sp-menu-second-li {
    border-bottom: solid 1px #afafae;
  }

  .sp-menu-second-li img {
    width: 2%;
    height: auto;
  }

  .sp-menu-p {
    margin: 1.8rem 0;
  }

  .hum-carender-text {
    font-size: 1.6rem;
  }

  .hum-nav-btn {
    background-color: #b0ebe2;
    display: inline flex;
    align-items: center;
    padding: 1rem 10rem;
    border-radius: 10rem;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 40px 5% 0 5%;
  }

  .hum-nav-btn img {
    width: 45px;
    margin-right: 20px;
  }

  .humberger-a {
    padding-left: 2%;
    display: block;
    width: 400px;
  }

  /*bottom---------------*/
  .carender-btn {
    padding: 1.5rem 11rem;
  }

  .contact-btn {
    padding: 1.4rem 9rem;
  }

}

@media screen and (max-width : 1156px) {
  .sp-acd summary {
    margin-top: .3em;
    margin-bottom: .3em;
  }
}

@media screen and (max-width : 1060px) {
  .wrapper {
    margin-left: 5%;
    margin-right: 5%;
  }

  .concept-img {
    margin-right: 20px;
  }

  .concept-img picture {
    width: 100%;
  }

  .section-title {
    padding: 0 5%;
  }

  .sp-acd summary {
    margin-top: .4em;
    margin-bottom: .4em;
  }
}

@media screen and (max-width : 976px) {
  .sp-acd summary {
    margin-top: .5em;
    margin-bottom: .5em;
  }
}


@media screen and (max-width : 899px) {
  body {
    font-size: .9rem;
  }

  .concept-title {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }

  .concept-text1 {
    padding-top: 1rem;
  }
}

@media screen and (max-width : 848px) {
  .reason-textbox {
    height: 22rem;
  }

  .line-box {
    width: 100%;
  }

  .bottom-sns-btn {
    width: auto;
  }

  .bottom-sns {
    width: 100%;
  }
}

@media screen and (max-width : 846px) {
  .menu-btn {
    padding: 1.7rem 3.8rem;
  }

  .concept-text1 {
    font-size: .8rem;
  }

  .concept-text2 {
    font-size: .8rem;
  }
}

@media screen and (max-width : 845px) {
  .menu-btn {
    padding: 1.5rem 3rem;
  }
}

@media screen and (max-width : 823px) {
  .sp-acd summary {
    margin-top: .7em;
    margin-bottom: .7em;
  }
}

@media screen and (max-width : 768px) {
  .wrapper {
    margin-bottom: 150px;
    width: auto;
  }

  .wrapper2 {
    margin-bottom: 150px;
    width: auto;
  }

  .section-title {
    padding: 0 5%;
    margin-bottom: 60px;
    font-size: 2rem;
    line-height: 1.5;
  }

  .section-title2 {
    margin: 0 5%;
    margin-bottom: 60px;
    font-size: 2rem;
    line-height: 1.5;
    padding: 0.6rem 1rem;
  }

  /*header---------------*/
  .header-salon-name-png {
    width: 100%;
  }

  .humberger-span {
    margin-right: 3%;
  }

  .humberger-a {
    padding-left: 0;
    width: 210px;
  }

  .sp-header-nav-a {
    width: 210px;
  }

  .sp-salon-name {
    margin-left: 8%;
  }

  .hum-salon-name {
    margin-top: 1rem;
    margin-left: 5%;
  }

  .sp-header-li {
    border-bottom: dotted 2px #333;
  }

  .sp-header-li img {
    width: 12%;
  }

  .sp-menu-second-li img {
    width: 3%;
  }

  .sp-header-ul {
    padding: 0 5%;
  }

  .sp-header-ul a {
    padding-left: 1rem;
  }

  .sp-acd summary {
    padding-left: 1rem;
  }

  .hum-carender-text {
    font-size: 1.7rem;
  }

  .hum-nav-btn {
    padding: 1.3rem 10rem;
  }

  .hum-nav-btn img {
    width: 30px;
    margin-right: 10px;
  }

  .sp-header-sns {
    margin-top: 3rem;
    padding: 0 5%;
    margin-bottom: 2rem;
  }

  .sp-sns-follows {
    font-size: .7rem;
  }

  .sp-header-sns-a img {
    width: 26%;
    margin-left: .5rem;
  }

  .sp-menu-p {
    margin: 1.3rem 1rem 1.3rem 0;
  }

  .sp-acd[open] ul {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .top-fv {
    padding-top: 7rem;
  }


  /*section1---------------*/
  .concept-flex {
    flex-direction: column;
  }

  .concept-textbox {
    padding: 0 5%;
    margin-top: 2rem;
  }

  .concept-text1 {
    padding-top: 1.8rem;
    margin: 0;
  }

  .concept-text2 {
    margin: 0;
  }

  .concept-title {
    line-height: 2.2rem;
  }

  .concept-img {
    margin-right: 0px;
  }


  /*section2---------------*/
  .profile-flex {
    flex-direction: column;
  }

  .profile-img {
    width: 80%;
    object-fit: cover;
  }

  .profile-img img {
    width: 100%;
  }

  .profile-textbox {
    width: 80%;
    margin-top: 2rem;
  }

  /*section3---------------*/
  .menu-flex {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .menu-flex-reverse {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .menu-img {
    width: 80%;
  }

  .menu-img img {
    width: 100%;
  }

  .menu-textbox {
    width: 80%;
    margin-top: 1rem;
  }

  .menu-text {
    margin: 2rem 0;
  }

  .menu-btn {
    padding: 1.4rem 3rem;
    font-size: 1.2rem;
  }

  .menu-title {
    font-size: 1.8rem;
  }

  /*section4---------------*/
  .reason-flex {
    flex-direction: column;
  }

  .reason-items {
    width: 100%;
    margin-bottom: 60px;
  }

  .reason-items img {
    width: 80%;
  }

  #reason {
    padding-bottom: 100px;
    padding-top: 80px;
  }

  .reason-textbox {
    padding-left: 24px;
    padding-right: 24px;
    height: 15rem;
    width: 80%;
    margin: auto;
    box-sizing: border-box;
  }

  .reason-title {
    font-size: 1.8rem;
  }

  /*section5---------------*/
  .contact-p {
    padding: 0 5%;
  }

  .contact-bottom-p {
    margin-top: 60px;
  }

  .carender-btn {
    padding: .8rem 9rem;
    font-size: 1.3rem;
  }

  .carender-btn img {
    width: 25px;
    margin-right: 10px;
  }

  .contact-btn {
    padding: 1rem 7rem;
    font-size: 1.3rem;
  }

  .contact-btn img {
    width: 25px;
    margin-right: 10px;
  }

  .bottom-sns {
    flex-direction: column;
    margin: 0 5%;
    width: auto;
  }

  .bottom-sns-a {
    width: 100%;
    margin-bottom: 20px;
  }

  .bottom-sns-btn {
    box-sizing: border-box;
  }

  .line-box {
    display: block;
    width: auto;
    margin: 0 5% 60px 5%;
    padding: 2rem .5rem;
  }

  .line-img {
    width: 80%;
    margin: 20px auto 0 auto;
    padding: 0 1rem 1rem 1rem;
  }

  .line-img img {
    width: 100%;
  }

  .line-text-container {
    width: 100%;
    padding: 0;
  }

  .line-textbox {
    padding: 1rem;
    margin: 0 auto;
    width: 80%;
    box-sizing: border-box;
  }

  .line-title {
    font-size: 1.8rem;
    padding-left: 1rem;
    width: 80%;
    margin: 0 auto 20px auto;
  }


  /*section6---------------*/
  #access {
    margin-bottom: 200px;
  }

}

@media screen and (max-width : 686px) {
  .hum-nav-btn {
    padding: .8rem 8.6rem;
  }
}

@media screen and (max-width : 636px) {
  .hum-nav-btn {
    padding: .5rem 6.4rem;
  }
}

@media screen and (max-width : 558px) {
  .hum-nav-btn {
    padding: .3rem 4.4rem;
  }
}

@media screen and (max-width : 487px) {
  .hum-nav-btn {
    padding: .2rem 2.8rem;
  }
}

/*sp---------------*/

@media screen and (max-width : 456px) {
.menu-btn{
  padding: 1.4rem 2.8rem;
}
}

@media screen and (max-width : 430px) {
  body {
    font-size: 0.87rem;
  }

  .wrapper {
    margin-bottom: 150px;
    width: auto;
  }

  .wrapper2 {
    margin-bottom: 150px;
    width: auto;
  }

  .section-title {
    padding: 0 5%;
    margin-bottom: 60px;
    font-size: 1.7rem;
    line-height: 1.5;
  }

  .section-title2 {
    margin: 0 5%;
    margin-bottom: 60px;
    font-size: 1.7rem;
    line-height: 1.5;
    padding: 0.6rem 1rem;
  }

  .section-title::before,
  .section-title::after {
    width: 30px;
    /* 横線の長さ */
  }

  /*header---------------*/
  .salon-icon {
    width: 2.5rem;
  }

  .header-salon-name-png {
    width: 9rem;
  }

  .humberger-span {
    margin-right: 2%;
    top: .5rem;
  }

  .humberger-a {
    padding-left: 0;
    width: 210px;
  }

  .sp-header-nav-a {
    width: 210px;
  }

  .sp-salon-name {
    margin-left: 5%;
  }

  .hum-salon-name {
    margin-top: 1rem;
    margin-left: 5%;
  }

  .sp-header-li {
    font-size: 1.1rem;
    border-bottom: dotted 2px #333;
  }

  .sp-header-li img {
    width: 12%;
  }

  .sp-menu-second-li img {
    width: 3%;
  }

  .sp-header-ul {
    padding: 0 5%;
  }

  .sp-header-ul a {
    padding-left: 1rem;
  }

  .sp-acd summary {
    padding-left: 1rem;
  }

  .hum-carender-text {
    font-size: 1.1rem;
  }

  .hum-nav-btn {
    padding: .3rem 3rem;
  }

  .hum-nav-btn img {
    width: 30px;
    margin-right: 10px;
  }

  .sp-header-sns {
    margin-top: 2rem;
    padding: 0 5%;
    margin-bottom: 2rem;
  }

  .sp-sns-follows {
    font-size: .7rem;
  }

  .sp-header-sns-a img {
    width: 26%;
    margin-left: .5rem;
  }

  .sp-menu-p {
    margin: 1.3rem 1rem 1.3rem 0;
  }

  .sp-acd[open] ul {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .top-fv {
    padding-top: 4.4rem;
  }


  /*section1---------------*/
  .concept-flex {
    flex-direction: column;
  }

  .concept-textbox {
    padding: 0 5%;
    margin-top: 2rem;
  }

  .concept-text1 {
    padding-top: 1.8rem;
    margin: 0;
  }

  .concept-text2 {
    margin: 0;
  }

  .concept-title {
    line-height: 2.2rem;
  }

  .concept-img {
    margin-right: 0px;
  }


  /*section2---------------*/
  .profile-flex {
    flex-direction: column;
  }

  .profile-img {
    width: 100%;
    object-fit: cover;
  }

  .profile-textbox {
    width: 100%;
    margin-top: 2rem;
  }

  /*section3---------------*/
  .menu-flex {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .menu-flex-reverse {
    flex-direction: column;
    margin-bottom: 100px;
  }

  .menu-img {
    width: 90%;
  }

  .menu-textbox {
    width: 90%;
    margin-top: 1rem;
  }

  .menu-text {
    margin: 2rem 0;
  }

  .menu-btn {
    padding: 1.4rem 3rem;
  }

  .menu-title {
    font-size: 1.6rem;
  }

  /*section4---------------*/
  .reason-flex {
    flex-direction: column;
  }

  .reason-items {
    width: 100%;
    margin-bottom: 60px;
  }

  #reason {
    padding-bottom: 100px;
    padding-top: 80px;
  }

  .reason-textbox {
    padding-left: 24px;
    padding-right: 24px;
    height: 280px;
  }

  .reason-items img{
    width: 90%;
  }

  .reason-textbox{
    width: 90%;
  }

  /*section5---------------*/
  .contact-p {
    padding: 0 5%;
  }

  .carender-btn {
    padding: .3rem 4.4rem;
    font-size: 1.1rem;
  }

  .carender-btn img {
    width: 25px;
    margin-right: 10px;
  }

  .contact-btn {
    padding: .4rem 2.7rem;
    font-size: 1.1rem;
  }

  .contact-btn img {
    width: 25px;
    margin-right: 10px;
  }

  .bottom-sns {
    flex-direction: column;
    margin: 0 5%;
    width: auto;
  }

  .bottom-sns-a {
    width: 100%;
    margin-bottom: 20px;
  }

  .bottom-sns-btn {
    box-sizing: border-box;
  }

  .line-box {
    display: block;
    width: auto;
    margin: 0 5% 60px 5%;
    padding: 2rem .5rem;
  }

  .line-img {
    width: auto;
    margin-top: 20px;
    padding: 0 1rem 1rem 1rem;
  }

  .line-img img {
    width: 100%;
  }

  .line-text-container {
    width: 100%;
    padding: 0;
  }

  .line-textbox {
    padding: 1rem;
    margin: 0 1rem;
  }

  .line-title {
    font-size: 1.8rem;
    padding-left: 1rem;
  }

  #lomilomi-course a {
    padding: 1rem .1rem;
  }

  /*section6---------------*/
  #access {
    margin-bottom: 200px;
  }

  @media screen and (max-width : 406px) {
    .menu-btn{
      padding: 1.4rem 2.2rem;
    }
  }

  @media screen and (max-width : 385px) {
    .carender-btn {
      padding: .3rem 3.4rem;
    }
  }


}