@charset "UTF-8";
/* style.scss */
/*==============================*/
/* color */
/*==============================*/
/*==============================*/
/* font */
/*==============================*/
/*-- fontsize
------------------------- */
/*-- fontfamily
------------------------- */
/*==============================*/
/* flex */
/*==============================*/
/*==============================*/
/* 余白 */
/*==============================*/
/*-------------------common--------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #3A3A3A;
  font-family: "Noto Sans JP", "sans-serif";
  letter-spacing: 0.2em;
  line-height: 2;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  * {
    line-height: 1.7;
  }
}

/*----font----*/
body {
  background-color: #F6F3EE;
}

.c-h2 {
  font-size: 34px;
  font-family: "Cormorant Garamond", serif, "Noto Sans JP", "sans-serif";
  color: #5A514A;
  font-weight: 500;
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .c-h2 {
    font-size: 32px;
    margin-bottom: 32px;
    line-height: 1.2;
  }
}
.c-h2 span {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-h2 span {
    margin-top: 16px;
  }
}

.c-h3 {
  font-size: 20px;
  font-family: "Cormorant Garamond", serif, "Noto Sans JP", "sans-serif";
  color: #5A514A;
}
@media screen and (max-width: 768px) {
  .c-h3 {
    margin-bottom: 24px;
  }
}
.c-h3 span {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans JP", "sans-serif";
  font-weight: normal;
}

/*----color----*/
.c-bgSubColor {
  background-color: #E9E4DB;
}

.c-mainColor {
  color: #E0A84E;
}

/*----color end----*/
/*----flexbox----*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/*----flexbox end----*/
/*----container----*/
.container {
  width: 79.0629575403vw;
  margin: 0 auto;
}

/*----container end----*/
/*----link----*/
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.c-btn {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid #E0A84E;
  color: #E0A84E;
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  position: relative;
  overflow: hidden;
}
.c-btn:hover {
  background-color: #E0A84E;
  color: #F6F3EE;
  opacity: 1;
}

/*----link end----*/
/*----img----*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*----img end----*/
/*----wrap----*/
section {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
/*----wrap end----*/
@media screen and (max-width: 768px) {
  .sp-dnone {
    display: none;
  }
}
/*-------------------common end--------------------------------*/
/* _header.scss */
.header {
  border-top: 8px solid #E0A84E;
  padding-top: 24px;
  padding-bottom: 64px;
}

/* PCではボタンを隠す */
.hamburger {
  display: none;
}

.nav {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  color: #5A514A;
}

/* --- スマホ版のスタイル --- */
@media screen and (max-width: 768px) {
  /* ボタンの配置と形 */
  .hamburger {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 100;
    cursor: pointer;
  }
  /* 三本線のデザイン */
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #E0A84E; /* 指定のカラー */
    position: absolute;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    top: 22px;
  }
  /* クリック時に「×」にするアニメーション */
  .hamburger.active span:nth-child(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
            transform: translateY(11px) rotate(-45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
            transform: translateY(-11px) rotate(45deg);
  }
  /* メニューの背景（全画面） */
  .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; /* 中央寄せのためにflexを使用 */
    position: fixed;
    top: 0;
    left: 0; /* 画面の左端から */
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    z-index: 90;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    /* 【ここがポイント】初期状態は隠す */
    opacity: 0; /* 透明にする */
    visibility: hidden; /* 存在を隠してクリック不可にする */
  }
  /* アクティブ時にふわっと表示 */
  .nav.active {
    opacity: 1; /* 不透明にする */
    visibility: visible; /* 表示する */
  }
  /* 以下、リストのスタイルは今のままでOK */
  .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; /* 縦並びを確実に適用 */
  }
  .nav li {
    margin: 20px 0;
  }
  .nav a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}
.footer {
  border-bottom: 8px solid #E0A84E;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
}
.footer-list {
  margin-top: 48px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .footer-list li {
    margin-bottom: 32px;
  }
}
.footer-copy {
  margin-top: 48px;
  margin-bottom: 24px;
}

.mainVisual {
  padding-top: 0;
  padding-bottom: 0;
}
.mainVisual-inner {
  position: relative;
}
.mainVisual-inner-img img {
  border-radius: 400px;
}
.mainVisual-inner-imgsp {
  display: none;
}
.mainVisual-inner-name {
  max-width: 380px;
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  margin: 0;
}

/* --- スマホ版のスタイル --- */
@media screen and (max-width: 768px) {
  .mainVisual-inner-img {
    display: none;
  }
  .mainVisual-inner-imgsp {
    display: block;
    width: 100%;
    height: auto;
  }
  .mainVisual-inner-imgsp img {
    width: 100%;
    height: auto;
  }
  .mainVisual-inner-name {
    max-width: 280px;
  }
}
.concept-inner {
  max-width: 720px;
  margin: 0 auto;
}
.concept-inner-img {
  margin-right: 80px;
  max-width: 210px;
}
.concept-inner-text {
  line-height: 2.4;
  letter-spacing: 0.3em;
}

@media screen and (max-width: 768px) {
  .concept-inner-img {
    max-width: 180px;
    margin-bottom: 32px;
  }
}
.treatment {
  padding-bottom: 0;
}

.treatment .treatment-about {
  margin-bottom: 64px;
}
.treatment .treatment-about-inner {
  margin-left: 64px;
  max-width: 540px;
}
@media screen and (max-width: 768px) {
  .treatment .treatment-about-inner {
    margin-left: 0;
  }
}
.treatment .treatment-about-img {
  width: 480px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .treatment-about-img {
    margin-bottom: 24px;
    height: 400px;
    text-align: center;
  }
  .treatment-about-img img {
    height: 100%;
  }
}
.treatment .treatment-history {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .treatment .treatment-history {
    padding-bottom: 80px;
  }
}
.treatment .treatment-history-inner {
  max-width: 480px;
}
@media screen and (max-width: 768px) {
  .treatment .treatment-history-inner .c-h3 {
    margin-bottom: 16px;
  }
}
.treatment .treatment-history-img {
  max-width: 540px;
}
@media screen and (max-width: 768px) {
  .treatment .treatment-history-img {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .treatment .treatment-history {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.treatment-bg {
  width: 100%;
  height: 180px;
  background-image: url(../img/top/treatment03.jpg);
}
@media screen and (max-width: 768px) {
  .treatment-bg {
    height: 120px;
  }
}

.menu-text {
  text-align: center;
  margin-bottom: 80px;
}
.menu-list-text {
  margin-top: 24px;
  margin-bottom: 16px;
  max-width: 320px;
}
@media screen and (max-width: 768px) {
  .menu-list-text dt {
    margin-bottom: 12px;
  }
}
.menu-list li {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .menu-list li {
    margin-bottom: 48px;
  }
  .menu-list li:last-child {
    margin-bottom: 0;
  }
}
.menu-list li img {
  border-radius: 200px;
}

.therapist-text-top {
  font-size: 34px;
  font-family: "Cormorant Garamond", serif;
}
@media screen and (max-width: 768px) {
  .therapist-text-top {
    font-size: 32px;
    margin-top: 24px;
    margin-bottom: 32px;
    line-height: 1.2;
  }
}
.therapist-img {
  max-width: 480px;
}

.contact-inner {
  margin-bottom: 24px;
}
.contact-inner-text {
  margin-left: 64px;
}
@media screen and (max-width: 768px) {
  .contact-inner-text {
    margin-top: 16px;
    margin-left: 0;
  }
}
.contact-inner-img {
  max-width: 480px;
}

.info {
  line-height: 3;
}
@media screen and (max-width: 768px) {
  .info {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.info-text-top {
  font-size: 20px;
  margin-bottom: 16px;
}
.info-text-sub {
  margin-top: 48px;
}
.info-img {
  width: 430px;
  max-width: 100%;
}

.reservation {
  text-align: center;
}
.reservation-text {
  text-align: center;
  margin-bottom: 48px;
}
.reservation-btn {
  display: inline-block;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 48px;
  padding-left: 48px;
  background-color: #E0A84E;
  color: #fff;
}/*# sourceMappingURL=style.css.map */