@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&family=Noto+Serif+JP:wght@400;500;600;700;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  html {
    font-size: 1vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}

body {
  animation: fadeIn .8s ease-in 0s 1 normal;
}
@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

body {
  font-size: 1.6rem;
  font-weight: 500;
  color: #454545;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

* {
  line-height: 1.5;
  box-sizing: border-box;
}

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

a {
  color: #876b4a;
  text-decoration: none;
}

a:hover {
  filter: brightness(110%);
}

li {
  list-style: none;
}

/* フォント */
.serif {
  font-family: "Noto Serif JP", serif;
}
.shippori {
  font-family: "Shippori Mincho", serif;
}

/* SPのみ改行 */
@media (min-width: 768px) {
  .br-sp-only {
    display: none;
  }
}

/* PCのコンテンツ幅 */
.pc-content-width {
  max-width: 108rem;
  margin-inline: auto;
}

/* SPのコンテンツ幅 */
@media (max-width: 767px) {
  .sp-content-width {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* header */
.header {
  background-image: url(../images/FV/FV_pc.webp);
  background-size: cover;
  height: 52.489vw;
  padding: 2.6rem 0rem 0px 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .header {
    background-image: url(../images/FV/FV_sp.webp);
    height: 127.733vw;
    padding: 1.3rem 1.5rem 0 2rem;
  }
}

.logo {
  width: 13.8rem;
}
@media (max-width: 767px) {
  .logo {
    width: 9.6rem;
  }
}

.header-wrapper {
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .header-wrapper {
    display: flex;
    justify-content: space-around;
  }
}

@media (max-width: 767px) {
.header-nav {
 display: none;
}
}

@media (min-width: 768px) {
  .hamburger-menu {
    display: none;
  }
}

/* ヘッダー ご予約ボタン ----*/
.reserve-btn {
  width: 17.4rem;
  height: 3.7rem;
  background-color: #fff;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 0 1rem;
}
@media (max-width: 767px) {
  .reserve-btn {
    width: 15rem;
    height: 3.5rem;
    background-color: #fff;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
}

.reserve-btn img {
  width: 8.8rem;
  height: 2.7rem;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .reserve-btn img {
    width: 7rem;
    height: auto;
    margin-left: 0.1rem;
  }
}

/* インスタアイコン*/
.insta-btn img {
  width: 4rem;
  margin-left: 1.6rem;
}
@media (max-width: 767px) {
  .insta-btn {
    display: none;
  }
}

/* ヘッダーナビゲーション */
@media (min-width: 768px) {
  .header-nav a {
    color: #fef3f3;
  }
}
.header-list {
  display: flex;
  font-size: 1.4rem;
  color: #fef3f3;
  padding: 2rem 0 0 2rem;
}

.header-list li {
  padding: 0 1rem;
}

.header-btn-group {
  display: flex;
  padding-top: 1rem;
  padding-left: 5rem;
}
@media (max-width: 767px) {
  .header-btn-group {
    padding-left: 5rem;
  }
}

/* ハンバーガーボタン */
@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

@media (max-width: 767px) {
  .hamburger-btn {
    display: block;
    font-size: 3rem;
    color: #fff;
    margin-top: 0.3rem;
  }
}

/* ハンバーガーメニュー */
@media (max-width: 767px) {
  .hamburger-menu {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5rem);
    background-color: #fed8c3;
    transition: all 0.6s;
    transform: translateX(100%);
    z-index: 99;
  }
}
/* アクティブ状態 */
.hamburger-menu-active {
  transform: translateX(0);
}

@media (max-width: 767px) {
  .hamburger-list {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    color: #fef3f3;
    padding: 2rem 3rem 0 3rem;
  }
}

@media (max-width: 767px) {
  .hamburger-list a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.72rem 2rem;
    line-height: 1;
    border-bottom: 0.0625rem solid #876b4a;
  }
  .hamburger-list li {
    width: 100%;
  }
  .hamburger-list li:nth-child(4) a,
  .hamburger-list li:nth-child(5) a {
    padding: 1.5rem 2rem 1.95rem;
  }
  .hamburger-list li:nth-child(4) a::after,
  .hamburger-list li:nth-child(5) a::after {
    padding-top: 0.25rem;
  }
}

.hamburger-insta-btn {
  width: 4rem;
  margin-inline: auto;
  padding-top: 1.5rem;
}

/* FV */
.fv-hand-img {
  position: absolute;
  top: 28%;
  left: 0;
  width: 75.3rem;
  opacity: 0.4;
}

.fv-lead-1 {
  position: absolute;
  top: 48%;
  left: 3%;
  font-size: 5.6rem;
  font-weight: 400;
  color: #fef3f3;
}
@media (max-width: 767px) {
  .fv-lead-1 {
    top: 72%;
    left: 3%;
    font-size: 3.2rem;
  }
}

.fv-lead-2 {
  position: absolute;
  top: 63%;
  left: 10%;
  font-size: 4rem;
  font-weight: 400;
  color: #fef3f3;
}
@media (max-width: 767px) {
  .fv-lead-2 {
    top: 83%;
    left: 10%;
    font-size: 2.4rem;
  }
}

/* licence */
.licence {
  background-image: url(../images/licence/licence_back_pc.jpg);
  background-size: cover;
  margin-inline: auto;
  padding-top: 6.4rem;
  padding-bottom: 7.4rem;
}
@media (max-width: 767px) {
  .licence {
    background-image: url(../images/licence/licence_back_sp.jpg);
    background-size: cover;
    margin-inline: auto;
    padding: 2.5rem 1.5rem 3.6rem;
  }
}

.licence h3 {
  font-size: 3.6rem;
  font-weight: 500;
  color: #876b4a;
  text-align: center;
}
@media (max-width: 767px) {
  .licence h3 {
    font-size: 2.4rem;
  }
}

.licence-diploma {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  column-gap: 4rem;
  margin-top: 5.4rem;
  animation-duration: 1.5s;
}
@media (max-width: 767px) {
  .licence-diploma {
    column-gap: 1.6rem;
    margin-top: 2.7rem;
  }
}

.img-diploma-person {
  width: 37.3rem;
  height: 26.3rem;
}
@media (max-width: 767px) {
  .img-diploma-person {
    width: 17.739rem;
    height: 12.251rem;
  }
}

.img-diploma-corporation {
  width: 27.3rem;
  height: 18.5rem;
}
@media (max-width: 767px) {
  .img-diploma-corporation {
    width: 13rem;
    height: 8.809rem;
  }
}

.licence-diploma img {
  box-shadow : 8px 8px 8px rgba(37, 23, 4, 0.2);
}

.licence-text-group {
  display: flex;
  justify-content: center;
  margin-top: 5.2rem;
}
@media (max-width: 767px) {
  .licence-text-group {
    margin-top: 2.7rem;
  }
}

.licence-text-group img {
  width: 15rem;
  margin-right: 3.2rem;
}
@media (max-width: 767px) {
  .licence-text-group img {
    width: 9.3rem;
    height: 9.116rem;
    margin-right: 1.2rem;
  }
}

.licence-text-inner p:nth-child(1) {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .licence-text-inner p:nth-child(1) {
    font-size: 1.6rem;
  }
}

.licence-text-inner p:nth-child(2) {
  width: 39.8rem;
  margin-top: 0.9rem;
}
@media (max-width: 767px) {
  .licence-text-inner p:nth-child(2) {
    font-size: 1.4rem;
    width: 22.7rem;
    margin-top: 0.6rem;
  }
}

/* concept */
#concept {
  padding: 6.5rem 5rem 7rem;
}
@media (max-width: 767px) {
  #concept {
    padding: 5rem 1.5rem 5rem;
    text-align: center;
    margin-inline: auto;
  }
}

/* 背景画像の見えている高さ */
.parallax {
  height: 100%;
}

/* 背景画像 */
.parallax::before {
  background-image: url(../images/concept/main_back_pc.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .parallax::before {
    background-image: url(../images/concept/main_back_sp.jpg);
  }
}

.font-orange {
  color: #f45410;
}

.concept-text-wrapper1 h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f45410;
}
@media (max-width: 767px) {
  .concept-text-wrapper1 h3 {
    font-size: 2.2rem;
  }
}

.size-up {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .size-up {
    font-size: 3.2rem;
  }
}

.size-down {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .size-down {
    font-size: 1.2rem;
  }
}

.concept-text-group1,
.concept-text-group2,
.concept-text-group3 {
  width: 53.2rem;
  margin-top: 2.3rem;
}
@media (max-width: 767px) {
  .concept-text-group1,
  .concept-text-group2,
  .concept-text-group3 {
    width: 34.5rem;
    margin-top: 2rem;
  }
}

.concept-text-group1 p {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .concept-text-group1 p {
    font-size: 1.7rem;
  }
}

.concept-text-group2 p:nth-child(1) {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .concept-text-group2 p:nth-child(1) {
    font-size: 1.7rem;
  }
}

.concept-text-group3 p:nth-child(1) {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .concept-text-group3 p:nth-child(1) {
    font-size: 1.7rem;
  }
}

.concept-annotation {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .concept-annotation {
    font-size: 1.2rem;
    margin-top: 1.6rem;
	margin-bottom: 2.6rem;
  }
}

.concept-text-wrapper2 {
  display: flex;
  margin-top: 8%;
  align-items: center;
}
@media (max-width: 767px) {
  .concept-text-wrapper2 {
    margin-top: 22%;
    flex-direction: column;
    justify-content: center;
  }
}

.concept-text-wrapper2-img {
  display: grid;
  row-gap: 3.5rem;
  margin-right: 2.8rem;
}
@media (max-width: 767px) {
  .concept-text-wrapper2-img {
    row-gap: 1.5rem;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.concept-text-wrapper2-img img {
  display: block;
  width: 41rem;
  animation-duration: 1s;
}
@media (max-width: 767px) {
  .concept-text-wrapper2-img img {
    width: 27.2rem;
  }
}

.concept-text-img {
  transition-duration: 3s, 1s;
}

.concept-text-wrapper2-lead h3 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f45410;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .concept-text-wrapper2-lead h3 {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .concept-text-wrapper2-lead span {
    font-size: 2.4rem;
  }
}

.concept-text-wrapper2-lead p {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .concept-text-wrapper2-lead p {
    font-size: 1.8rem;
    white-space: nowrap;
  }
}

/* important */
.important {
  background-image: url(../images/important/important_back_pc.jpg);
  background-size: 100% auto;
  padding: 8rem 0 5rem;
  text-align: center;
  background-position: top center;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 787px) {
  .important {
    background-image: url(../images/important/important_back_sp.jpg);
    padding: 4.5rem 0 0;
    height: 480vw;
  }
}

.important-lead {
  display: flex;
  flex-direction: column;
  max-width: 50rem;
  margin-inline: auto;
  transition-duration: 3s, 1s;
}
@media (max-width: 767px) {
  .important-lead {
    max-width: 26.4rem;
  }
}

.important-lead h3 {
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .important-lead h3 {
    font-size: 2rem;
    font-weight: 600;
  }
}

.line-css {
  position: relative;
  padding-bottom: 1.5rem;
  margin-bottom: 0.2rem;
  border-bottom: 2px dashed;
  color: #b6935c;
  font-size: 26px;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .line-css {
    margin-bottom: 1rem;
  }
}

.font-gold {
  color: #b6935c;
}

.important-lead-sub {
  font-size: 3.6rem;
  text-align: center;
}
@media (max-width: 767px) {
  .important-lead-sub {
    font-size: 2.4rem;
  }
}

.important-group-inner1 {
  display: flex;
  align-items: center;
  margin: 2.4rem 0 7.4rem;
  justify-content: center;
  padding-left: 10%;
}

.important-group-inner {
  display: flex;
  align-items: center;
  margin: 2.4rem 0 7.4rem;
  justify-content: center;
  padding-left: 5%;
}
@media (max-width: 767px) {
  .important-group-inner {
    flex-direction: column-reverse;
    margin: 1.6rem 0 5.6rem;
    padding-left: 0;
  }
}

.important-group-inner-text {
  margin-right: 3.2rem;
}
@media (max-width: 767px) {
  .important-group-inner-text {
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 2rem;
  }
}

.important-group-inner-text p:nth-child(1) {
  font-size: 2.4rem;
  font-weight: 400;
  text-align: start;
}
@media (max-width: 767px) {
  .important-group-inner-text p:nth-child(1) {
    font-size: 1.8rem;
    text-align: center;
  }
}

.important-group-inner-text p:nth-child(2) {
  width: 45rem;
  text-align: justify;
  margin-top: 1.2rem;
  letter-spacing: 0.05rem;
}
@media (max-width: 767px) {
  .important-group-inner-text p:nth-child(2) {
    width: 33.6rem;
    text-align: justify;
    margin-top: 1.2rem;
  }
}

.important-group-inner img {
  width: 34.2rem;
}
@media (max-width: 767px) {
  .important-group-inner img {
    width: 29.8rem;
  }
}

.important-group-machine-img img {
  width: 17.2rem;
}
@media (max-width: 767px) {
  .important-group-machine-img img {
    width: 11rem;
  }
}

.important-group-machine-img p {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .important-group-machine-img p {
    margin-top: 1.6rem;
  }
}

/* important last */
.important-last {
  background-image: url(../images/important/important_back2_pc.jpg);
  background-size: cover;
  text-align: center;
  padding-top: 6.2rem;
  padding-bottom: 7rem;
}
@media (max-width: 767px) {
  .important-last {
    background-image: url(../images/important/important_back2_sp.jpg);
    padding-top: 17.5rem;
    padding-bottom: 3rem;
  }
}

.important-last p {
  line-height: 1.75;
}

.important-last h4 {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .important-last h4 {
    font-size: 2rem;
    white-space: nowrap;
  }
}

.important-last p:nth-child(2) {
  margin-top: 2.6rem;
}
@media (max-width: 767px) {
  .important-last p:nth-child(2) {
    font-size: 1.5rem;
  }
}

.important-last p:nth-child(3) {
  font-size: 2rem;
  margin-top: 3.1rem;
}

.important-last p:nth-child(4) {
  font-size: 2.2rem;
  margin-top: 3.3rem;
}
@media (max-width: 767px) {
  .important-last p:nth-child(4) {
    font-size: 1.9rem;
  }
}

.important-last-animation {
  transition-duration: 3s;
}

/* detail */
.detail {
  padding: 6rem;
  background: #fff;
}
@media (max-width: 767px) {
  .detail {
    padding: 4rem 0;
  }
}

.detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .detail-wrapper {
    column-gap: unset;
  }
}

#fem p:nth-child(1) {
  font-size: 1.8rem;
  width: 13rem;
  height: 3.5rem;
  border: 2px #f45410 solid;
  padding-top: 0.3rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  #fem p:nth-child(1) {
    font-size: 1.6rem;
    margin-inline: auto;
  } 
}

#fem h4 {
  font-size: 2.4rem;
  margin-top: 2.2rem;
}
@media (max-width: 767px) {
  #fem h4 {
    margin-top: 1.6rem;
  }
}

#fem p:nth-child(3) {
  font-size: 2.4rem;
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  #fem p:nth-child(3) {
    font-size: 1.9rem;
    white-space: nowrap;
  }
}

#rinpa p:nth-child(1) {
  font-size: 1.8rem;
  width: 13rem;
  height: 3.5rem;
  border: 2px #f45410 solid;
  padding-top: 0.3rem;
  margin-inline: auto;
}
@media (max-width: 767px) {
  #rinpa p:nth-child(1) {
    font-size: 1.6rem;
    margin-inline: auto;
  } 
}

#rinpa h4 {
  font-size: 2.4rem;
  margin-top: 2.2rem;
}
@media (max-width: 767px) {
  #rinpa h4 {
    margin-top: 1.6rem;
  }
}

#rinpa p:nth-child(3) {
  font-size: 2.4rem;
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  #rinpa p:nth-child(3) {
    font-size: 1.9rem;
    white-space: nowrap;
  }
}

.container {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container2 {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* スライダーの設定-------*/
.swiper-container {
  max-width: 465px;
  position: relative;
  margin-inline: auto;
}
@media (max-width: 500px) {
  .swiper-container {
    max-width: 350px;
  }
}
@media (max-width: 400px) {
  .swiper-container {
    max-width: 300px;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
  position: relative;
}

/* 矢印を外に出す指定 */
/* 前への矢印 */
.swiper-button-prev {
  left: -30px;
}
/* 次への矢印 */
.swiper-button-next {
  right: -30px;
}

/* 矢印の色を変更 / デフォルトは青 */
.swiper-button-next,
.swiper-button-prev {
  --swiper-navigation-color: #b6935c; /*ここに変更する色を指定*/
}

/* ここまで-------*/

.slider-caption {
  font-size: 1.6rem;
  text-align: justify;
  position: absolute;
  bottom: 0;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  .slider-caption {
    font-size: 1.2rem;
    padding: .5rem;
  }
}

.box-text {
  position: relative;
  border: 2px solid #b6935c;
  border-radius: 5px;
  margin: 4rem 0;
  padding: 2rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .box-text {
    padding: 2rem;
    line-height: 1.75;
  }
}
.box-text::before {
  content: "こんなお悩みに";
  position: absolute;
  background-color: #fff;
  color: #b6935c;
  font-weight: bold;
  left: 20px;
  top: -23px;
  padding: 10px;
}

.reserve-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2rem;
}

/* 以下共通 ご予約ボタン ----*/
.hotpepper-btn {
  width: 24rem;
  height: 6rem;
  background-color: #fff;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  border: #f45410 solid 2px;
}
@media (max-width: 767px) {
  .hotpepper-btn {
    width: 17rem;
    height: 4.5rem;
    background-color: #fff;
    border-radius: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0 0.8rem;
  }
}

.hotpepper-btn img {
  width: 10rem;
  height: auto;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .hotpepper-btn img {
    width: 7rem;
    height: auto;
    margin-left: 0.1rem;
  }
}

.reserve-btn-group-insta-btn img {
 width: 5rem;
}

/*---------------------*/

/* mind */
.mind {
  background-image: url(../images/mind/head_img.jpg);
  background-size: 100% auto;
  background-color: #fff;
  padding-bottom: 8rem;
}

.mind-title {
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  padding: 10rem 0;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .mind-title {
    font-size: 2.2rem;
    padding: 4.5rem 0;
  }
}

.mind-group-container,.obsession-group-container {
  display: grid;
  column-gap: 2rem;
  justify-content: center;
  grid-template-columns: 30% 30% 30%;
  grid-template-rows: 50% 50%;
}
@media (max-width: 767px) {
  .mind-group-container,.obsession-group-container {
    display: inline-block;
    column-gap: 0;
    grid-template-columns: unset;
    grid-template-rows: unset;
    text-align: center;
  }
}

.mind-group,.obsession-group {
  letter-spacing: -0.1rem;
  margin-bottom: 4.8rem;
}

.mind-group p:nth-child(2) {
  font-size: 2.2rem;
  text-align: center;
  margin: 1.6rem 0;
}

.mind-group p:nth-child(3) {
  text-align: justify;
}

.obsession-title {
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  padding: 4.8rem 0;
  white-space: nowrap;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .obsession-title {
    font-size: 2.2rem;
    padding: 2.3rem 0;
  }
}

.obsession-group p:nth-child(2) {
  font-size: 2.4rem;
  text-align: center;
  margin: 1.6rem 0;
}

.obsession-group p:nth-child(3) {
  text-align: justify;
}

@media (max-width: 767px) {
  .mind-group img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .obsession-group img {
    width: 100%;
  }
}

.mind-group-img2 {
  border: #454545 solid 0.75px;
}

/* SALON */
#salon {
  background-image: url(../images/mind/head_img.jpg);
  background-size: 100% auto;
  background-color: #fff;
  padding-bottom: 6rem;
}

.salon-container {
  padding-left: 5%;
}
@media (max-width: 767px) {
  .salon-container {
    padding-left: 1.5rem;
  }
}

.salon-title {
  display: grid;
  column-gap: 3rem;
  justify-content: center;
  padding: 10rem 3rem 3.6rem;
  grid-template-columns: 30% 40%;
  letter-spacing: -0.1em;
}
@media (max-width: 767px) {
  .salon-title {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    padding: 1.5rem 0 2rem;
    letter-spacing: -0.1em;
    text-align: center;
  }
}

.salon-title-text h3 {
  font-size: 3.6rem;
  font-weight: 500;
  margin-bottom: .8rem;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .salon-title-text h3 {
    font-size: 3.2rem;
    margin-bottom: 3rem;
  }
}

.salon-title-text p:nth-child(2) {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
@media (max-width: 767px) {
  .salon-title-text p:nth-child(2) {
    margin-bottom: 3rem;
  }
}

@media (max-width: 767px) {
  .salon-title-text p:nth-child(3) {
    font-size: 1.6rem;
    line-height: 2.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
  }
}

.salon-img-group {
  display: flex;
  justify-content: space-between;
  max-width: 71.4rem;
  margin-inline: auto;
  margin-bottom: 5.3rem;
}
@media (max-width: 767px) {
  .salon-img-group {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
}

.salon-img-group img {
  width: 15rem;
  height: 13rem;
  object-fit: cover;
}

.salon-shoplist {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .salon-shoplist {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.salon-shoplist-text {
  margin-right: 5rem;
  }
@media (max-width: 767px) {
  .salon-shoplist-text {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

.salon-shoplist-text p:nth-child(1) {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.salon-shoplist-text p:nth-child(2) {
  line-height: 2.2rem;
}
@media (max-width: 767px) {
  .salon-shoplist-text p:nth-child(2) {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

#google-map {
  width: 33.4rem;
  height: 20.8rem;
}

/* footer */
.footer {
  display: flex;
  height: 8rem;
  background: linear-gradient(90deg, rgba(252,159,108,1) 0%, rgba(206,66,6,1) 50%);
}
@media (max-width: 767px) {
  .footer {
    height: 6rem;
}
}

/* ヘッダーナビゲーション */
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 767px) {
  .footer-nav {
  margin: 0;
  }
}

.footer-list {
  display: flex;
  font-size: 1.4rem;
  color: #fef3f3;
  margin-left: 30rem;
}
@media (max-width: 767px) {
  .footer-list {
    display: none;
  }
}

.footer-list li {
  padding: 0 1rem;
}

.footer-list a {
  color: #fef3f3;
}

.footer-btn-group {
  display: flex;
  align-items: center;
}

.footer-insta-btn img {
  width: 4rem;
  margin-left: 1.6rem;
}
@media (max-width: 767px) {
  .footer-insta-btn img {
    margin-left: 1rem;
  }
}

/* 戻るボタン */
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
}
.pagetop a {
  display: block;
  background-color: #ccc;
  text-align: center;
  color: #222;
  font-size: 20px;
  text-decoration: none;
  padding: 5px 10px;
filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}
.pagetop a:hover {
  display: block;
  background-color: #b2d1fb;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  padding:5px 10px;
filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

/* アニイメーションの詳細設定 */
.animate__animated {
  transition: all 1s;
}


