@charset "UTF-8";

/* 共通 */
html,
body {
  overflow-x: hidden;
}
body {
  color: #FFFFFF;
  font-family: 'Shippori Mincho', serif;
  padding-bottom: 0;
  background-color: #131317;
}

p {
  line-height: 2.0em;
  font-weight: 100;
  font-style: normal;
  font-size: 14px;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 3s,visibility 3s, transform 3s;
}
.scrolled {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.grad_hr {
  width: 80%;
  margin: 20px auto; /* 上下20pxのマージン、左右オートマージン */
}

.title h1,.title h6 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.section_title {
  padding: 120px 80px 10px 80px;
}
.section_subtitle {
  padding: 5px 125px 60px 125px;
}
@media screen and (max-width: 576px) {
  .section_title {
    padding: 60px 80px 10px 80px;
    text-align: center;
  }
  .section_subtitle {
    padding: 0px 125px 60px 125px;
    font-size: 1rem;
    text-align: center;
  }
}

/* メイン */

/* トップ */
.top {
  position: relative;
  width: auto;
  overflow: hidden;
}
.top_img {
  display: none;
  position: absolute;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}
@media screen and (min-width: 993px) {
  .top {
    height: 100vh;
  }
  .top_img.desktop {
    display: block;
    width: 100%;
    height: auto;
  }
  .top_img.tablet,
  .top_img.mobile {
    display: none;
  }
}
@media screen and (min-width: 577px) and (max-width: 992px) {
  .top {
    height: 100vh;
  }
  .top_img.tablet {
    display: block;
    height: 100%;
    width: auto;
  }
  .top_img.desktop,
  .top_img.mobile {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .top {
    height: 100vh;
  }
  .top_img.mobile {
    display: block;
    width: 100%;
    height: auto;
  }
  .top_img.desktop,
  .top_img.tablet {
    display: none;
  }
}

.title {
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 20px 20px 20px 40px;
}
@media screen and (max-width: 576px) {
  .title {
    padding: 20px;
  }
}

.title h6 {
  padding-top: 15px;
  font-size: 10px;
}
.top_img.active {
  opacity: 1;
}

/* ヘッダー */
#header {
  position: relative;
  background-color: transparent;
  z-index: 1000;
}
#logo {
  font-family: "GFS Didot";
  font-size: 50px;
  padding-left: 40px;
  padding-top: 9px;
  letter-spacing: 0.4rem;
  background-color: transparent;
  text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}

/* ナビゲーションのレイアウト */
#nav_pc {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 36px;
  right: 45px;
}

#nav_pc > a {
  text-decoration: none;
  margin-top: 5px;
  margin-left: 35px;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7)
}

#nav_pc > a:link {
  color: #FFFFFF;
}

#nav_pc > a:visited {
  color: #FFFFFF;
  text-decoration: none; /* アンダーラインを一旦消す */
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 4px;
}

#nav_pc > a:hover {
  text-decoration: none; /* アンダーラインを一旦消す */
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 4px;
}

#nav_pc > a:active {
  color: #FFFFFF;
}

/* SP用ナビを非表示 */
#menu_sp {
  display: none;
}
#nav_sp {
  /* 初期状態 */
  display: none;
  /* フェードインアニメーション */
  &.show {
    animation: fadeInRight 1s ease-in-out;
  }
}

/* フェードインアニメーションのキーフレーム */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* フェードアウトアニメーション */
.fadeOut {
  animation: fadeOutLeft 2s ease-in-out forwards;
}

/* フェードアウトアニメーションのキーフレーム */
@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}


@media screen and (max-width: 992px) {
  /* PC用ナビゲーション非表示 */
  #nav_pc {
    display: none;
  }
  
  /* ハンバーガーメニュー */
  #menu_sp {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 35px;
    right: 35px;
    width: 30px;
    height: auto;
    margin: 0px;
  }
  .nav_sp_menu {
    display: block;
    margin: 20px 0;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    margin: 20px auto;
    padding: 20px 20px 20px 40px;
  }
  .nav_sp_menu span {
    font-size: 18px;
    margin-left: 16px;
    text-align: center;
  }
  
  /* デフォルトでSP用ナビを非表示にする */
  #nav_sp {
    background-color: #131317;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 20px 20px 20px;
    z-index: 100;
    text-align: center;
  }
  
  
  /* SPメニュー内のクローズボタン */
  #close {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  
  #nav_sp > a {
    display: block;
  }
  
  #nav_sp > a:hover {
    text-decoration: underline;
  }
  
  /* メニュー項目のスタイル */
  #nav_sp .menu {
    display: block;
    margin: 20px 0;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
  }
  /* メニューボタンを押した時にナビゲーションバーを表示する */
  #nav_sp.show {
    display: block;
  }
}

/* コンセプト */
.concept_text {
  padding-left: 50px;
}
.heading {
  font-size: 32px;
}
.concept_text p {
  padding: 40px 60px 60px 20px;
}
.img_frame {
  position: relative;
  height: 700px;
}
.img_frame img {
  position: absolute;
}
.origin_img_01 {
  top: -50px;
  right: -100px;
  width: 50%;
}
.origin_img_02 {
  top: 50px;
  right: 250px;
  width: 40%;
}
.origin_img_03 {
  display: none;
}
.story_img_01 {
  top: 200px;
  left: 100px;
  width: 50%;
}
.story_img_02 {
  top: -50px;
  left: 250px;
  width: 50%;
}
.story_img_03 {
  top: -250px;
  left: -50px;
  width: 65%;
}
.mood_text h2 {
  margin-top: 80px;
}
.mood_text p {
  padding-bottom: 0px;
}
.mood_img_frame {
  height: 350px;
}
.mood_img_01 {
  top: -50px;
  right: -25px;
  width: 50%;
}
.mood_img_02 {
  top: 50px;
  right: 150px;
  width: 55%;
}
.mood_img_03 {
  display: none;
}
.mood_img_04 {
  display: none;
}
@media screen and (max-width: 992px) {
  .concept_text {
    padding: 0;
  }
  .heading {
    font-size: 30px;
    font-weight: 700;
  }
  .concept_text p {
    font-size: 18px;
    padding: 10px 0px 20px 20px;
  }
  .origin_img_01 {
    top: -50px;
    right: 0px;
    width: 75%;
  }
  .origin_img_02 {
    top: 275px;
    right: 150px;
    width: 40%;
  }
  .origin_img_03 {
    display: none;
  }
  .story_img_01 {
    top: 200px;
    left: 100px;
    width: 50%;
  }
  .story_img_02 {
    top: -25px;
    left: 150px;
    width: 50%;
  }
  .story_img_03 {
    top: -250px;
    left: -50px;
    width: 65%;
  }
  .mood_text h2 {
    margin-top: 80px;
  }
  .mood_text p {
    padding-bottom: 0px;
  }
  .mood_img_frame {
    height: 350px;
  }
  .mood_img_01 {
    display: none;
  }
  .mood_img_02 {
    top: 350px;
    right: 25px;
    width: 75%;
  }
  .mood_img_03 {
    display: none;
  }
  .mood_img_04 {
    display: block;
    top: 50px;
    right: -50px;
    width: 75%;
  }
}
@media screen and (max-width: 576px) {
  .concept_text {
    padding: 0;
  }
  .heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
  }
  .concept_text p {
    font-size: 18px;
    padding: 10px 20px 20px 20px;
  }
  .img_frame {
    position: relative;
    height: 550px;
  }
  .origin_img_01 {
    top: 0px;
    right: -50px;
    width: 65%;
  }
  .origin_img_02 {
    display: none;
  }
  .origin_img_03 {
    display: block;
    top: 200px;
    right: 175px;
    width: 40%;
  }
  .story_text { 
    order: 1;
  }
  .story_img_frame { 
    order: 2;
  }
  .story_img_01 {
    top: 250px;
    left: 180px;
    width: 65%;
  }
  .story_img_02 {
    top: 25px;
    left: 200px;
    width: 50%;
  }
  .story_img_03 {
    top: 50px;
    left: -25px;
    width: 65%;
  }
  .mood_text h2 {
    margin-top: 170px;
  }
  .mood_text p {
    padding-bottom: 0px;
  }
  .mood_img_frame {
    height: 450px;
  }
  .mood_img_01 {
    display: none;
  }
  .mood_img_02 {
    top: 125px;
    right: 150px;
    width: 55%;
  }
  .mood_img_03 {
    display: block;
    top: 25px;
    right: 20px;
    width: 50%;
  }
  .mood_img_04 {
    display: none;
  }
}

/* 自己紹介 */
#introduction {
  margin-top: 40px;
  margin-bottom: 80px;
}
.introduction_img img {
  width: 100%;
  padding: 0 30px;
}
@media screen and (min-width: 577px) and (max-width: 992px) {
  .introduction_img img {
    width: 45%;
  }
}

@media screen and (max-width: 576px) {
  .introduction_img img {
    width: 80%;
  }
}

.introduction_text {
  padding: 30px;
}
.introduction_text p {
  padding-top: 30px;
  font-size: 18px;
}

/* 施術事例 */
#model_example{
  padding-top: 40px;
  padding-bottom: 50px;
}
#model_example .section_title {
  padding: 40px 80px 10px 80px;
}
.slider img {
  width: 80%;
  height: auto;
}

/* メニュー */
.menu_title {
  padding: 60px 10px;
}
.menu {
  max-width: 800px;
  margin: 0 auto;
  background-color: #6b6b79;
  padding: 20px 20px 20px 40px;
  border-radius: 2px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.menu h2 {
  color: #FFFFFF;
  margin-top: 30px;
}
.menu h6 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #FFFFFF;
  border-bottom: 1px solid #b9b9b9;
  text-align: right;
}

ul li span {
  display: inline-block;
  width: 100px;
  text-align: left;
  color: #FFFFFF;
  font-weight: normal;
  padding-left: 20px;
}

ul li:last-child {
  border-bottom: none;
}

/* 営業時間 */
/* .shop_info {
  padding: 50px 100px 50px 100px;
}
@media screen and (max-width: 576px) {
  .shop_info {
    padding: 50px 50px 20px 50px;
  }
} */


.shop_info p {
  line-height: 1.5em;
  font-size: 1rem;
  margin: 0;
}
.trade_name {
  line-height: 1.5em;
  font-size: 2rem;
  margin: 0;
}
.contact_icon div {
  margin-top: 50px;
}
.contact_icon a img {
  width: 6rem;
  height: auto;
  padding: 0 0.8rem;
}
.contact_icon p {
  margin-top: 10px;
}

.shop_img img {
  width: 75%;
}

.map {
  margin-top: 100px;
  position: relative;
  width: 100%;
  height: 450px;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 450px;
}


/* フッター */
footer {
  text-align: center;
  margin: 20px;
}