@charset "utf-8";

/* ----------------------------------------- Base style---------------------------------------------------------------- */
body {
  font-family: "Courgette", cursive;
  font-family: "Eczar", serif;
  font-family: "Hina Mincho", serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  line-height: 1.5;
  /* color: #333; */
  margin: 0;
  padding: 0;
  /* background-color: #001728; */
}

img {
  width: 100%;
  height: auto;
}

/* ----------------------------------------- Hero ---------------------------------------------------------------- */
.hero {
  width: 100vw;
  /* height: 100vh; */
  /* position: relative; */
  /* overflow: hidden; */
}

.hero > img {
  /* position: absolute; */
  z-index: 1;
  width: 100%;
  height: 100%;
  /* height: auto; */
  /* opacity: 0.9; */
}

/*モバイル表示*/
@media screen and (max-width: 480px) {
  .hero > img {
    width: 100%;
    height: auto;
  }
}

/* ----------------------------------------- Header ---------------------------------------------------------------- */
.header {
  width: 100%;
  height: auto;
  font-size: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 15px; */
  position: absolute;
  /* position: fixed; */
  z-index: 10;
  top: 0;
  left: 0;
  /* background-color: #f1f1f1; */
  /* background-color: #333; */
  /* background-color: #000; */
  /* background-color: transparent; */
}

.header-logo img {
  width: 200px;
  height: 100px;
  /* border-radius: 50%; */
  /* color: transparent;
  background-color: transparent; */
  /* background-color: #aaaaaa; */
  /* opacity: 0.1; */
}

.header-logo {
  /* margin: 15px;
  margin-top: 5px;*/
  margin-left: 25px;
  justify-content: center;
  align-items: center;
}

#g-nav ul {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 30px;
  background-color: transparent;
}

#g-nav li > a {
  display: block;
  font-size: 20px;
  margin: 20px;
  padding-bottom: 15px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #2c4700;
  line-height: 0.4em;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
}

#g-nav li > a:hover {
  line-height: 0.4em;
  /* border-bottom: 3px solid #f1f1f1; */
  border-bottom: 3px solid #2c4700;
}

/*モバイル表示*/
@media screen and (max-width: 480px) {
  .header-logo img {
    width: 140px;
    height: 60px;
  }

  .header-logo {
    margin-top: 10px;
    margin-left: 10px;
  }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .header-logo img {
    width: 150px;
    height: 70px;
  }

  .header-logo {
    margin-top: 10px;
    margin-left: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header-logo img {
    width: 150px;
    height: 70px;
  }

  .header-logo {
    margin-top: 10px;
    margin-left: 10px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1240px) {
  .header-logo img {
    width: 150px;
    height: 70px;
  }

  .header-logo {
    margin-top: 10px;
    margin-left: 10px;
  }
}

/* ----------------------------------------- ハンガーガーメニュー  ---------------------------------------------------------------- */

@media (max-width: 1024px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    /* background: #98a2b1; */
    background: #fff;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    flex-direction: column;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
  }
}

#g-nav li a {
  color: #2c4700;
  /* color: #f1f1f1; */
  text-decoration: none;
  display: block;
  /* text-transform: uppercase; */
  font-weight: bold;
  font-size: 20px;
  margin: 20px;
  line-height: 0.4em;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  /* position: fixed; */
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  /* background-color: #f1f1f1; */
  background-color: #2c4700;
  width: 45%;
}

#g-nav li > a:hover {
  line-height: 0.4em;
  /* border-bottom: 3px solid #f1f1f1; */
  border-bottom: 2px solid #2c4700;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

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

.openbtn span:nth-of-type(3) {
  top: 31px;
}

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

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

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

@media screen and (min-width: 1024px) {
  .openbtn {
    position: none;
    z-index: -9999; /*ボタンを最前面に*/
    top: 0;
    right: 0;
    width: 0;
    height: 0;
  }
}
/* ----------------------------------------- Main ---------------------------------------------------------------- */
main {
  background-color: #98a2b1;
}

main img {
  padding: 0;
  margin: 0;
}
/* ----------------------------------------- OUTLINE ---------------------------------------------------------------- */

.outline {
  /* color: #5f8ac5; */
  /* background-color: #001728; */
  margin: 10% 10%;
}

.outline .title span {
  display: inline-block;
  border-bottom: 1px solid;
  padding-bottom: 5px;
  font-size: 18px;
}

.outline .title {
  font-size: 18px;
}

.outline h2 {
  font-size: 25px;
}

.outline p {
  font-size: 16px;
}

/* ----------------------------------------- Menu ---------------------------------------------------------------- */
.menu {
  padding-top: 10%;
  padding-bottom: 10%;
}
.salon {
  display: flex;
  background-color: #f2dcde;
}

.salon-title {
  background-color: #e8e1e1;
  background-color: #98a2b1;
  display: flex;
  width: 35%;
  padding-left: 21%;
  letter-spacing: 0.3em;
}
.salon-title h2 {
  writing-mode: vertical-rl;
  font-size: 90px;
  color: #f1f1f1;
  margin: 0px 0px;
  line-height: 0.9em;
}
.salon-title p {
  writing-mode: vertical-rl;
  font-size: 26px;
  padding: 0;
  margin: 0px 0px;
}

.store-list {
  margin: 0;
  display: flex;
  width: 65%;
  height: auto;
  background-color: #efe6e7;
}

figure {
  padding: 20px 0;
}

figure:nth-child(1) {
  margin-right: 0px;
}

figure img {
  padding-bottom: 10px;
}

figcaption {
  text-decoration-line: none;
  color: white;
  font-size: 16px;
  text-align: center;
  padding: 10px 0;
  background-color: #777;
}

figure a.store-link:hover {
  opacity: 0.9;
}
figure a {
  text-decoration: none;
}

/*モバイル表示*/
@media screen and (max-width: 480px) {
  .menu {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .salon {
    display: flex;
    background-color: #f2dcde;
  }

  .salon-title {
    background-color: #e8e1e1;
    background-color: #98a2b1;
    display: flex;
    width: 35%;
    padding-left: 23%;
  }
  .salon-title h2 {
    writing-mode: vertical-rl;
    font-size: 30px;
    color: #f1f1f1;
    margin: 0px 0px;
    line-height: 0.9em;
  }
  .salon-title p {
    writing-mode: vertical-rl;
    font-size: 6px;
    padding: 0;
    margin: 0px 0px;
  }

  .store-list {
    margin: 0;
    display: flex;
    width: 65%;
    height: auto;
    background-color: #efe6e7;
  }

  figure {
    padding: 5px 0;
    width: 100%;
  }

  figure:nth-child(1) {
    margin-right: 8px;
    margin-left: 15px;
  }
  figure {
    margin-right: 15px;
    margin-left: 0px;
  }

  figure img {
    padding-bottom: 5px;
    width: 100%;
  }

  figcaption {
    text-decoration-line: none;
    color: white;
    font-size: 5px;
    text-align: center;
    padding: 5px 3px;
    background-color: #777;
  }

  figure a.store-link:hover {
    opacity: 0.9;
  }
  figure a {
    text-decoration: none;
  }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  .menu {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .salon {
    display: flex;
    background-color: #f2dcde;
  }

  .salon-title {
    background-color: #e8e1e1;
    background-color: #98a2b1;
    display: flex;
    width: 35%;
    padding-left: 23%;
  }
  .salon-title h2 {
    writing-mode: vertical-rl;
    font-size: 30px;
    color: #f1f1f1;
    margin: 0px 0px;
    line-height: 0.9em;
  }
  .salon-title p {
    writing-mode: vertical-rl;
    font-size: 6px;
    padding: 0;
    margin: 0px 0px;
  }

  .store-list {
    margin: 0;
    display: flex;
    width: 65%;
    height: auto;
    background-color: #efe6e7;
  }

  figure {
    padding: 5px 0;
    width: 100%;
  }

  figure:nth-child(1) {
    margin-right: 8px;
    margin-left: 15px;
  }
  figure {
    margin-right: 15px;
    margin-left: 0px;
  }

  figure img {
    padding-bottom: 5px;
    width: 100%;
  }

  figcaption {
    text-decoration-line: none;
    color: white;
    font-size: 7px;
    text-align: center;
    padding: 5px 0;
    background-color: #777;
  }

  figure a.store-link:hover {
    opacity: 0.9;
  }
  figure a {
    text-decoration: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .menu {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .salon {
    display: flex;
    background-color: #f2dcde;
  }

  .salon-title {
    background-color: #e8e1e1;
    background-color: #98a2b1;
    display: flex;
    width: 35%;
    padding-left: 23%;
  }
  .salon-title h2 {
    writing-mode: vertical-rl;
    font-size: 30px;
    color: #f1f1f1;
    margin: 0px 0px;
    line-height: 0.9em;
  }
  .salon-title p {
    writing-mode: vertical-rl;
    font-size: 6px;
    padding: 0;
    margin: 0px 0px;
  }

  .store-list {
    margin: 0;
    display: flex;
    width: 65%;
    height: auto;
    background-color: #efe6e7;
  }

  figure {
    padding: 5px 0;
    width: 100%;
  }

  figure:nth-child(1) {
    margin-right: 8px;
    margin-left: 15px;
  }
  figure {
    margin-right: 15px;
    margin-left: 0px;
  }

  figure img {
    padding-bottom: 5px;
    width: 100%;
  }

  figcaption {
    text-decoration-line: none;
    color: white;
    font-size: 7px;
    text-align: center;
    padding: 5px 0;
    background-color: #777;
  }

  figure a.store-link:hover {
    opacity: 0.9;
  }
  figure a {
    text-decoration: none;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1240px) {
  .menu {
    padding-top: 10%;
    padding-bottom: 10%;
  }
  .salon {
    display: flex;
    background-color: #f2dcde;
  }

  .salon-title {
    background-color: #e8e1e1;
    background-color: #98a2b1;
    display: flex;
    width: 35%;
    padding-left: 21%;
    letter-spacing: 0.3em;
  }
  .salon-title h2 {
    writing-mode: vertical-rl;
    font-size: 90px;
    color: #f1f1f1;
    margin: 0px 0px;
    line-height: 0.9em;
  }
  .salon-title p {
    writing-mode: vertical-rl;
    font-size: 26px;
    padding: 0;
    margin: 0px 0px;
  }

  .store-list {
    margin: 0;
    display: flex;
    width: 65%;
    height: auto;
    background-color: #efe6e7;
  }

  figure {
    padding: 20px 0;
  }

  figure:nth-child(1) {
    margin-right: 0px;
  }

  figure img {
    padding-bottom: 10px;
  }

  figcaption {
    text-decoration-line: none;
    color: white;
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
    background-color: #777;
  }

  figure a.store-link:hover {
    opacity: 0.9;
  }
  figure a {
    text-decoration: none;
  }
}
/******************************* staff **************************************/

.staff {
  padding-bottom: 15%;
}

ul.aroma-mei-member {
  margin: 0;
  padding: 0;
}

.staff-list {
  list-style: none;
  margin: 0;
  padding: 2% 5%;
  width: 65%;
  height: auto;
  background-color: #efe6e7;
}

li.staff-list {
  display: flex;
}

li.staff-list .card {
  padding-left: 5%;
  padding-bottom: 30px;
  width: 70%;
}

li.staff-list .card .detail {
  width: 70%;
  text-align: center;
}

li.staff-list .card .detail:hover {
  opacity: 0.8;
}

li.staff-list .staff-picture {
  display: flex;
  position: absolute;
  left: 45%;
  width: 29%;
  z-index: 8;
}

.staff-picture img {
  width: 70%;
}

.card p.message {
  margin-top: 0;
  width: 90%;
}

.staff-list .detail {
  width: 50%;
}
.card {
  color: #333;
}

.card h2 {
  padding-top: 0%;
  padding-bottom: 10px;
  font-size: 30px;
}

.card p {
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 16px;
}

.detail {
  background-color: #777;
  padding: 10px 0;
}

a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  text-align: center;
}

/* .staff-detail {
  padding-top: 10px;
  padding-bottom: 10px;
} */

/*モバイル表示*/
@media screen and (max-width: 480px) {
  .staff {
    padding-bottom: 13%;
  }

  ul.aroma-mei-member {
    margin: 0;
    padding: 0;
  }

  .staff-list {
    list-style: none;
    margin: 0;
    padding: 2% 10%;
    width: 70%;
    background-color: #efe6e7;
  }

  li.staff-list {
    position: relative;
    display: flex;
    padding-left: 0;
  }

  li.staff-list .card {
    padding-left: 15%;
    width: 100%;
    padding-bottom: 5px;
  }

  li.staff-list .staff-picture {
    position: absolute;
    left: 73%;
    width: 46%;
  }

  .card p.message {
    width: 100%;
    font-size: 7px;
  }

  .staff-list .detail {
    width: 50%;
  }
  .card {
    color: #333;
  }

  .card h2 {
    font-size: 13px;
    padding-top: 0%;
    padding-bottom: 0px;
  }

  .card p {
    padding-top: 0px;
    padding-bottom: 5px;
  }

  .detail {
    background-color: #777;
    padding: 5px 3px;
  }

  a {
    text-decoration: none;
    color: white;
    font-size: 5px;
    text-align: center;
  }

  /* .staff-detail {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 5px;
  } */
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  .staff {
    padding-bottom: 13%;
  }

  ul.aroma-mei-member {
    margin: 0;
    padding: 0;
  }

  .staff-list {
    list-style: none;
    margin: 0;
    padding: 2% 10%;
    width: 70%;
    background-color: #efe6e7;
  }

  li.staff-list {
    position: relative;
    display: flex;
    padding-left: 0;
  }

  li.staff-list .card {
    padding-left: 15%;
    width: 100%;
    padding-bottom: 5px;
  }

  li.staff-list .staff-picture {
    position: absolute;
    left: 73%;
    width: 46%;
  }

  .card p.message {
    width: 100%;
    font-size: 7px;
  }

  .staff-list .detail {
    width: 50%;
  }
  .card {
    color: #333;
  }

  .card h2 {
    font-size: 13px;
    padding-top: 0%;
    padding-bottom: 0px;
  }

  .card p {
    padding-top: 0px;
    padding-bottom: 5px;
  }

  .detail {
    background-color: #777;
  }

  a {
    font-size: 8px;
    text-decoration: none;
  }

  .staff-detail {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .staff {
    padding-bottom: 13%;
  }

  ul.aroma-mei-member {
    margin: 0;
    padding: 0;
  }

  .staff-list {
    list-style: none;
    margin: 0;
    padding: 2% 10%;
    width: 70%;
    background-color: #efe6e7;
  }

  li.staff-list {
    position: relative;
    display: flex;
    padding-left: 0;
  }

  li.staff-list .card {
    padding-left: 15%;
    width: 100%;
    padding-bottom: 5px;
  }

  li.staff-list .staff-picture {
    position: absolute;
    left: 73%;
    width: 46%;
  }

  .card p.message {
    width: 100%;
    font-size: 7px;
  }

  .staff-list .detail {
    width: 50%;
  }
  .card {
    color: #333;
  }

  .card h2 {
    font-size: 13px;
    padding-top: 0%;
    padding-bottom: 0px;
  }

  .card p {
    padding-top: 0px;
    padding-bottom: 5px;
  }

  .detail {
    background-color: #777;
  }

  a {
    font-size: 8px;
    text-decoration: none;
  }

  .staff-detail {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 8px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1240px) {
  .staff {
    padding-bottom: 15%;
  }

  ul.aroma-mei-member {
    margin: 0;
    padding: 0;
  }

  .staff-list {
    list-style: none;
    margin: 0;
    padding: 2% 5%;
    width: 65%;
    height: auto;
    background-color: #efe6e7;
  }

  li.staff-list {
    display: flex;
  }

  li.staff-list .card {
    padding-left: 5%;
    padding-bottom: 30px;
    width: 70%;
  }

  li.staff-list .card .detail {
    width: 70%;
    text-align: center;
  }

  li.staff-list .card .detail:hover {
    opacity: 0.8;
  }

  li.staff-list .staff-picture {
    display: flex;
    position: absolute;
    left: 45%;
    width: 29%;
    z-index: 8;
  }

  .staff-picture img {
    width: 70%;
  }

  .card p.message {
    margin-top: 0;
    width: 90%;
  }

  .staff-list .detail {
    width: 50%;
  }
  .card {
    color: #333;
  }

  .card h2 {
    padding-top: 0%;
    padding-bottom: 10px;
    font-size: 30px;
  }

  .card p {
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 16px;
  }

  .detail {
    background-color: #777;
  }

  a {
    text-decoration: none;
    color: white;
    font-size: 8px;
    text-align: center;
  }

  .staff-detail {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
  }
}

/* -----------------------------------------Contact---------------------------------------------------------------- */
.contact-button {
  padding-top: 0%;
  padding-bottom: 8%;
}
.contact-button a.btn {
  display: block;
  text-align: center;
  /* vertical-align: middle; */
  text-decoration: none;
  width: 400px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #665e62;
  background: #665e62;
  color: #fff;
  border-radius: 5px;
  transition: 0.5s;
  font-size: 16px;
}
a.btn:hover {
  color: #665e62;
  background: #fff;
}

@media screen and (max-width: 480px) {
  .contact-button a.btn {
    font-size: 8px;
    width: 100px;
    padding: 0.25rem 1rem;
  }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  .contact-button a.btn {
    font-size: 13px;
    width: 200px;
    padding: 0.5rem 2rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-button a.btn {
    font-size: 15px;
    width: 250px;
    padding: 0.6rem 2rem;
  }
}

/* ----------------------------------------- SNS ---------------------------------------------------------------- */

.sns_list {
  margin: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  margin: 0 auto;
}

.sns_list img {
  width: 25px;
}

.sns_icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns_icons .lineContact,
.homeContact,
.InstagramContact {
  margin: 8px;
}

/*モバイル表示*/
@media screen and (max-width: 480px) {
  .sns_list img {
    width: 20px;
  }
  .sns_icons .lineContact,
  .InstagramContact,
  .YoutubeContact {
    margin: 5px;
  }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  .sns_list img {
    width: 20px;
  }
  .sns_icons .lineContact,
  .InstagramContact,
  .YoutubeContact {
    margin: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .sns_list img {
    width: 25px;
  }
  .sns_icons .lineContact,
  .InstagramContact,
  .YoutubeContact {
    margin: 8px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .sns_list img {
    width: 30px;
  }
  .sns_icons .lineContact,
  .InstagramContact,
  .YoutubeContact {
    margin: 8px;
  }
}

/* ----------------------------------------- Footer ---------------------------------------------------------------- */
footer {
  background-color: #98a2b1;
  color: whitesmoke;
  margin: 0;
  padding: 0;
  /* color: darkkhaki; */
}

.footer-menu {
  height: 60px;
}

.footer-menu-list {
  list-style: none;
  text-align: center;
  line-height: 60px;
  color: whitesmoke;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.footer-menu-list li {
  margin: 5px;
  display: inline;
}

.footer-logo img {
  width: 100px;
  color: transparent;
}

.footer-logo {
  text-align: center;
}

.footer-logo > a span {
  font-weight: bold;
}

.footer-logo > a {
  display: block;
  text-decoration: none;
  color: whitesmoke;
  font-size: 28px;
  /* font-family: "Courgette", cursive; */
  /* font-family: "Eczar", serif; */
  font-family: "Hina Mincho", serif;
  /* font-family: "Noto Sans JP", sans-serif; */
}

.copyright {
  text-align: center;
  padding-bottom: 10px;
  color: #665e62;
}

/*モバイル表示*/
@media screen and (max-width: 480px) {
  .footer-logo img {
    width: 80px;
  }
  .copyright {
    font-size: 10px;
  }
}

@media screen and (min-width: 480px) and (max-width: 768px) {
  .footer-logo img {
    width: 90px;
  }
  .copyright {
    font-size: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}
