html {
  --navy: #031d35;
  --blue: #0a3965;
  --light: #086fb0;
  --gold: #eed067;
  --white: #fff;
  --green: #056b2f;
  --dark-green: #00662d;
  --dark-green02: #013b21;
  --bg-green: #085030;
  --gothic: "Noto Sans JP", sans-serif;
  --mincho: "Noto Serif JP", serif;
  --open_sans: "Open Sans", sans-serif;
  --icomoon: "icomoon";
  font-size: 62.5%;
  /* 62.5% 10px 1em */
  min-width: 1200px;
  scroll-padding-top: 0px;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Cormorant";
  src: url("../css/fonts/CormorantGaramond-Light.ttf") format("truetype");
}

@media screen and (max-width: 768px) {
  html {
    min-width: 100%;
    scroll-padding-top: 0px;
  }
}

html body {
  position: relative;
  line-height: 2;
  background: #fff;
  color: var(--white);
  font-family: var(--gothic);
  font-size: 1.6rem;
  font-weight: 600;
  -webkit-text-size-adjust: none;
  font-feature-settings: "palt";
}

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

html h1,
html h2,
html h3,
html h4 {
  line-height: 1.5;
  font-family: var(--mincho);
  font-weight: 800;
}

html p {
  color: var(--white);
  font-weight: 400;
}

html a {
  border: 0;
  text-decoration: none;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html a img {
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html a:hover {
  filter: brightness(120%);
}

html .animation {
  transform: translate(0px, 10px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  opacity: 0;
  backface-visibility: hidden;
}

html .animation_left {
  transform: translate(-10px, 0px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  opacity: 0;
  backface-visibility: hidden;
}

html .animation_left.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html .animation_right {
  transform: translate(10px, 0px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  opacity: 0;
  backface-visibility: hidden;
}

html .animation_right.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html .animation_down {
  transform: translate(0px, -10px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  opacity: 0;
  backface-visibility: hidden;
}

html .animation_down.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html .animation.active {
  transform: translate(0%, 0%);
  opacity: 1;
}

html #wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

html .tel {
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  html .sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  html .pc {
    display: none !important;
  }

  html .tel {
    pointer-events: auto;
  }
}

@media screen and (max-width: 740px) {
  html body {
    position: relative;
    font-size: 1.5rem;
    min-width: 320px;
  }

  html p {
    line-height: 2;
    font-size: 1.5rem;
  }

  html img {
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }

  html .pc {
    display: none !important;
  }
}

@media screen and (min-width: 741px) {
  /* html body {
    min-width: 1200px;
  } */

  html .sp {
    display: none !important;
  }
}

html .l-inner {
  margin: 0 auto;
  max-width: 1400px;
}

html .sect_ttl {
  position: relative;
  padding-top: 199px;
  padding-bottom: 20px;
  font-family: var(--mincho);
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.6rem;
}

/* header */

html header {
  display: flex;
  position: absolute;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 100;
  width: 100%;
}

html header h1 {
  padding: 35px 0 0 35px;
  transition: all 0.6s ease;
}

html .line_hbtn {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  z-index: 100;
  width: 120px;
  height: 120px;
  color: var(--white);
  transition: all 0.6s ease;
}

html .line_hbtn.on {
  background: #00b900;
}

html .line_hbtn span {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 5px;
}

html .line_hbtn span .icon-line {
  display: block;
  line-height: 1;
  font-size: 3.6rem;
}

html .line_hbtn span small {
  display: block;
  line-height: 1;
  padding-top: 2px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  html header {
    z-index: 100;
    width: 100%;
  }

  html header h1 {
    margin: 0 auto;
    padding: 30px 0 0;
    text-align: center;
  }

  html header h1 img {
    width: 60%;
  }

  html .line_hbtn {
    display: none;
  }

  html .line_hbtn.on {
    background: none;
  }

  html .line_hbtn span {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  html .line_hbtn span .icon-line {
    font-size: 2rem;
  }

  html .line_hbtn span small {
    display: block;
    line-height: 1;
    font-size: 1rem;
  }
}

/* header  end */

/* title */

html .title {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-items: flex-end;
  z-index: 0;
  width: 100%;
  height: 875px;
  background: url(../img/title.webp) no-repeat center bottom;
  background-size: cover;
}

html .title .text {
  line-height: 1.5;
  padding: 0 0 177px 40px;
  color: var(--gold);
  font-family: var(--mincho);
  font-size: 4.7rem;
  font-weight: 400;
}

html .title .text h2 {
  font-weight: 400;
  /*text-indent: 50px;*/
}

@media screen and (max-width: 768px) {
  html .title {
    height: auto;
    background: url(../img/title@sp.webp) no-repeat center top;
    background-color: #003905;
    background-size: 100% auto;
  }

  html .title .text {
    margin: 0 auto;
    padding: 120vw 0 44vw;
    font-size: 6.5vw;
    text-align: center;
  }

  html .title .text h2 {
    text-indent: 0;
  }
}

/* title end */

/* concern */
html .concern {
  position: relative;
  margin-top: -15px;
  z-index: 3;
  background: url(../img/bg_green_body.webp) no-repeat center;
  background-size: 100% 100%;
}

html .concern .inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0 auto;
  padding: 65px 84px 84px;
  padding-bottom: 0;
  box-sizing: border-box;
  max-width: 1400px;
  gap: 80px;
}

html .concern .inner h2 {
  display: flex;
  flex-direction: row-reverse;
}

html .concern .inner h2 span {
  color: var(--gold);
  font-size: 4rem;
  font-weight: 400;
  white-space: pre;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}

html .concern .inner h2 span:nth-child(1) {
  position: relative;
}

html .concern .inner h2 span:nth-child(1):before {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  width: 1px;
  height: 150px;
  background: var(--gold);
  content: "";
}

html .concern .inner h2 span+span {
  margin-top: 2em;
}

html .concern .inner h2 span:last-child {
  margin-top: 4em;
}

html .concern::before {
  position: absolute;
  top: -139px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../img/bg_img01.webp) no-repeat center top;
  background-size: 100% auto;
  content: "";
}

html .concern .inner .worries {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 52px 17px 55px 30px;
  box-sizing: border-box;
  background: rgba(0, 62, 20, 0.8);
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3rem;
  max-width: 650px;
  border-radius: 15px;
  gap: 30px;
}

html .concern .inner .worries h3 {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.2rem;
}

html .concern .inner ol {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.3rem;
  gap: 30px;
}

html .concern .inner ol li {
  position: relative;
  line-height: 1.8;
  padding-left: 40px;
  text-decoration: underline var(--gold);
  text-underline-offset: 8px;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}

html .concern .inner ol li:before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 20px;
  height: 20px;
  background: url(../img/check.webp) no-repeat 0 0;
  background-size: 100%;
  content: "";
  transform: translate(-50%, -50%);
}

html .concern .bottom_text {
  margin-top: -65px;
  text-align: center;
}

html .concern .bottom_text h3 {
  color: var(--white);
  font-size: 3.3rem;
  font-weight: 300;
}

html .concern .bottom_text h3 span {
  font-size: 2.2rem;
}

html .concern .disease-list {
  margin: 60px 0;
}

html .concern .disease-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
}

html .concern .disease-list ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% / 5) - 20px);
  margin-right: 20px;
  background-color: var(--white);
  color: var(--gold);
  font-family: var(--mincho);
  font-size: 2.7rem;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}

html .concern .disease-list ul li:nth-child(4n) {
  font-size: 2.3rem;
}

html .concern .disease-list li:last-child {
  margin-right: 0;
}

html .concern .disease-list p {
  margin-top: 30px;
  padding-bottom: 0;
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
}

html .concern p {
  position: relative;
  padding-bottom: 70px;
  font-size: 2.3rem;
  text-align: center;
  letter-spacing: 0.3rem;
}

@media screen and (max-width: 768px) {
  html .concern {
    background: url(../img/bg_img02@sp_02.webp) no-repeat bottom;
    background-size: 100% auto;
  }

  html .concern::before {
    top: -42vw;
    left: 0;
    z-index: -2;
    background: url(../img/bg_img01@sp.webp) no-repeat top;
    background-size: 100%;
  }

  html .concern::after {
    position: absolute;
    bottom: -12vw;
    left: 0;
    z-index: -2;
    width: 100%;
    height: 80%;
    background: url(../img/bg_img02@sp_01.webp) no-repeat bottom;
    background-size: 100% 100%;
    content: "";
  }

  html .l-inner {
    padding: 0 20px;
  }

  html .concern .inner {
    flex-direction: column;
    width: 100%;
    padding: 12vw 4vw 6vw;
    box-sizing: border-box;
    max-width: 100%;
    gap: 0;
  }

  html .concern .inner h2 {
    display: block;
    width: 100%;
    margin: 8vw 0 6vw;
    text-align: center;
  }

  html .concern .inner h2 span {
    display: block;
    font-size: 6vw;
    font-weight: 400;
    text-align: center;
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
  }

  html .concern .inner h2 span:nth-child(1):before {
    bottom: calc(100% + 12px);
    width: 2px;
    height: 53vw;
  }

  html .concern .inner h2 span+span,
  html .concern .inner h2 span:last-child {
    margin-top: 0;
  }

  html .concern .inner .worries {
    width: 100%;
    margin: 0 auto;
    padding: 30px 30px 30px 20px;
    max-width: 560px;
    border-radius: 15px;
    gap: 20px;
  }

  html .concern .inner .worries h3 {
    font-size: 5.5vw;
    letter-spacing: 0.1rem;
  }

  html .concern .inner ol {
    font-size: 4vw;
    gap: 20px;
  }

  html .concern .inner ol li {
    line-height: 1.8;
    padding-left: 30px;
  }

  html .concern .inner ol li:last-child {
    margin-bottom: 0;
  }

  html .concern .inner ol li:before {
    top: 30%;
  }

  html .concern .bottom_text {
    margin-top: 0;
    padding-top: 4px;
  }

  html .concern .bottom_text h3 {
    font-size: 6.5vw;
  }

  html .concern .bottom_text h3 span {
    font-size: 2.6vw;
    line-height: 1.4;
  }

  html .concern .bottom_text p {
    padding: 30px 0 90px;
    color: #fff;
    font-size: 4vw;
    letter-spacing: 0.2em;
  }

  html .concern .disease-list {
    margin: 6vw 0;
  }

  html .concern .disease-list ul {
    justify-content: center;
    max-width: 580px;
  }

  html .concern .disease-list ul li {
    width: calc((100% / 2) - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 5.1vw;
  }

  html .concern .disease-list ul li:nth-child(2n) {
    margin-right: 0;
  }

  html .concern .disease-list ul li:nth-child(4n) {
    font-size: 4.5vw;
  }

  html .concern .disease-list ul li:last-child {
    margin-bottom: 0;
  }

  html .concern .disease-list p {
    font-size: 1.5rem;
  }

  html .concern p {
    padding: 0;
    font-size: 4vw;
  }
}

/* concern end */

/* reason */
html .reason {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-bottom: 310px;
  background: url(../img/reason_bg.webp) no-repeat center;
  background-size: 100% 100%;
  color: #a57c25;
}

html .reason::before {
  position: absolute;
  top: -43px;
  left: 50%;
  width: 100%;
  height: 300px;
  background: url(../img/bg_green_bottom.webp) no-repeat top;
  background-size: 100% 100%;
  content: "";
  transform: translate(-50%, -50%);
}

html .reason .l-inner {
  position: relative;
}

html .reason .l-inner::before {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 2;
  width: 185px;
  height: 93px;
  background: url(../img/shape.webp) no-repeat center bottom;
  background-size: 100% auto;
  content: "";
  transform: translate(-50%, -50%);
}

html .reason h2.sect_ttl::after {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 70px;
  height: 65px;
  background: url(../img/golden_lotus.webp) no-repeat center bottom;
  background-size: 100% auto;
  content: "";
  transform: translate(-50%, -50%);
}

html .reason p {
  padding-top: 15px;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.3rem;
  color: #a57c25;
}

@media screen and (max-width: 768px) {
  html .reason {
    height: auto;
    margin-top: 12vw;
    padding-bottom: 35vw;
    background: url(../img/reason_bg@sp.webp) no-repeat center;
    background-size: cover;
  }

  html .reason::before {
    position: absolute;
    top: 49%;
    width: 100%;
    height: 100%;
    background: url(../img/bg_img02@sp_02.webp) no-repeat top;
    background-size: 100% auto;
  }

  html .reason .l-inner::before {
    top: 2vw;
    left: 50%;
    z-index: 3;
    width: 90px;
    height: 45px;
  }

  html .reason h2 {
    padding-top: 28vw;
    font-family: var(--mincho);
    font-size: 6.3vw;
    letter-spacing: 0;
  }

  html .reason h2.sect_ttl::after {
    top: 24%;
    width: 62px;
    height: 41px;
  }

  html .reason p {
    font-size: 4vw;
  }
}

html .abhyanga {
  position: relative;
  z-index: 1;
  background-color: var(--bg-green);
  background-size: cover;
}

html .abhyanga:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 1660px;
  background: url(../img/abhyanga_img01.webp) no-repeat top;
  background-size: 100%;
  content: "";
}

html .abhyanga .f-blk {
  display: flex;
  position: relative;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 54px 40px;
  padding-bottom: 0;
  box-sizing: border-box;
  gap: 80px;
}

html .abhyanga .f-blk h2 {
  display: flex;
  flex-direction: row-reverse;
}

html .abhyanga .f-blk h2 span {
  color: var(--gold);
  font-size: 4rem;
  font-weight: 400;
  white-space: pre;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
}

html .abhyanga .f-blk h2 span:nth-child(2) {
  margin-top: 2em;
  letter-spacing: 0.6rem;
  text-orientation: upright;
}

html .abhyanga .f-blk .f-blk_right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  line-height: 2.3;
  font-size: 1.8rem;
  letter-spacing: 0.5rem;
}

html .abhyanga .f-blk .f-blk_right p {
  color: var(--gold);
  text-align: end;
}

html .abhyanga .f-blk .f-blk_right .f-blk_bottom h3 {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: 400;
}

html .abhyanga .f-blk .f-blk_right .f-blk_bottom h3 span {
  display: block;
  font-size: 2rem;
}

html .abhyanga .f-blk .f-blk_right .f-blk_bottom p {
  color: var(--white);
  text-align: left;
}

html .m-inner {
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 30px;
}

html .shirodhara_effect {
  position: relative;
  z-index: 1;
  margin-top: 70px;
  padding: 80px 45px 60px;
  border: 1px solid #aa870f;
  box-sizing: border-box;
  background: rgba(0, 62, 20, 0.6);
  color: var(--gold);
  text-align: center;
  border-radius: 15px;
}

html .shirodhara_effect h3 {
  padding-bottom: 30px;
  font-size: 3.6rem;
  font-weight: 300;
}

html .shirodhara_effect::before {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 70px;
  height: 88px;
  background: url(../img/goldenflower.webp) no-repeat top;
  background-size: 100% auto;
  content: "";
  transform: translate(-50%, -50%);
}

html .shirodhara_effect p {
  color: #fff;
  font-weight: 300;
}

html .shirodhara_effect .shirodhara_effect_inner {
  display: flex;
  justify-content: space-between;
  padding-top: 36px;
  gap: 90px;
}

html .shirodhara_effect .shirodhara_effect_inner dl {
  width: 50%;
}

html .shirodhara_effect .shirodhara_effect_inner dl dt {
  line-height: 1.5;
  margin-bottom: 5px;
  font-family: var(--mincho);
  font-size: 2.3rem;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.2rem;
}

html .shirodhara_effect .shirodhara_effect_inner dl dd {
  margin-bottom: 40px;
  font-size: 1.7rem;
  font-weight: 300;
  text-align: left;
  letter-spacing: 0.1rem;
}

html .shirodhara_effect .shirodhara_effect_inner dl dd:last-child {
  margin-bottom: 0;
}

html .shirodhara_effect .shirodhara_effect_inner dl dd~dt {
  margin-top: 20px;
}

.shirodhara_effect_inner {
  counter-reset: effect-counter;
}

.shirodhara_effect_inner dt {
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  counter-increment: effect-counter;
}

.shirodhara_effect_inner dt::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 28px;
  height: 28px;
  line-height: 26px;
  background: linear-gradient(135deg, rgba(247, 196, 106, 1) 0%, rgba(205, 148, 38, 1) 100%);
  color: #fff;
  font-size: 14px;
  text-align: center;
  content: counter(effect-counter);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

html .abhyanga .life-style h3 {
  position: relative;
  padding-top: 90px;
  padding-bottom: 20px;
  font-family: var(--mincho);
  font-size: 3.6rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.6rem;
}

html .abhyanga .life-style span {
  position: relative;
  padding: 0 50px;
}

html .abhyanga .life-style span::before,
html .abhyanga .life-style span::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: var(--white);
  content: "";
  transform: translateY(-50%);
}

html .abhyanga .life-style span::before {
  left: 0;
}

html .abhyanga .life-style .reduce_blk {
  display: flex;
  flex-direction: column;
}

html .abhyanga .life-style .reduce_blk .reduce_item {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
}

html .abhyanga .life-style .reduce_blk .reduce_item:first-child {
  padding: 90px 0 100px;
}

html .abhyanga .life-style .reduce_blk .reduce_item:last-child {
  padding: 100px 0 90px;
  flex-direction: row;
  align-items: flex-start;
}

html .abhyanga .life-style .reduce_blk .reduce_item:last-child .text {
  margin-right: 15%;
}

html .abhyanga .life-style .reduce_blk .reduce_item::before {
  position: absolute;
  bottom: -5.5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #0f4f2f;
  content: "";
  transform: translateX(-50%) rotate(-45deg);
  border-left: 2px solid #6f8f7a;
  border-bottom: 2px solid #6f8f7a;
}

html .abhyanga .life-style .reduce_blk .reduce_item::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 400px;
  height: 1.5px;
  background: #6f8f7a;
  content: "";
  transform: translateX(-50%);
}

html .abhyanga .life-style .reduce_blk .reduce_item .text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

html .abhyanga .life-style .reduce_blk .reduce_item .text h4 {
  font-family: var(--mincho);
  font-size: 3.8rem;
  font-weight: 300;
  white-space: nowrap;
}

html .abhyanga .life-style .reduce_blk .reduce_item .text .note {
  font-size: 2rem;
}

html .abhyanga .life-style .reduce_blk .reduce_item .text p {
  font-weight: 200;
  max-width: 480px;
}

html .abhyanga .life-style .reduce_blk .reduce_item .text p.b-txt {
  font-weight: 500;
}

html .abhyanga .life-style .reduce_blk .reduce_item figure {
  flex-shrink: 0;
}

html .abhyanga .life-style .reduce_blk .reduce_item figure img,
html .abhyanga .wide_blk img {
  border-radius: 20px;
}

/* html .abhyanga .life-style .reduce_blk .reduce_item:nth-child(2) {

} */

html .abhyanga .wide_blk {
  position: relative;
  padding: 100px 0 90px;
}

html .abhyanga .wide_blk .wide-inner {
  margin: 0 auto;
  max-width: 1240px;
}

html .abhyanga .wide_blk h3 {
  position: relative;
  padding: 70px 0 43px;
  font-family: var(--mincho);
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.6rem;
}

html .wide_blk p {
  font-size: 1.6rem;
  text-align: center;
}

html .philosophy {
  margin-bottom: 180px;
}

html .philosophy h3 {
  padding: 70px 0;
  font-family: var(--gothic);
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
}

html .philosophy .promise-list {
  display: flex;
  margin-bottom: 55px;
}

html .philosophy .promise-list figure {
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 300px;
}

html .philosophy .promise-list h4 {
  padding-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
}

html .philosophy .promise-list p {
  padding: 0 70px;
  font-weight: 400;
  text-align: left;
}

html .philosophy .promise-list p.btn {
  position: relative;
  margin-top: 93px;
  padding: 10px 0;
  background: var(--white);
  color: var(--dark-green);
  font-weight: 500;
  text-align: center;
  border-radius: 25px;
}

html .philosophy .promise-list li:first-child p.btn {
  margin-top: 60px;
}

html .philosophy .promise-list p.btn::before {
  position: absolute;
  bottom: 15px;
  left: 23px;
  width: 47px;
  height: 47px;
  background: url(../img/p_btn.png) no-repeat top;
  background-size: 100% auto;
  content: "";
  transform: translate(-50%, -50%);
}

html .philosophy .notic-txt {
  padding-bottom: 0;
  letter-spacing: 0.3rem;
}

html .philosophy p {
  padding-bottom: 20px;
  font-size: 1.6rem;
  text-align: center;
}

html .philosophy .promise-txt {
  font-size: 2.8rem;
}

html .philosophy .promise-list li {
  position: relative;
  width: calc((100% / 3) - 20px);
  margin-right: 10px;
  padding: 40px 20px;
  background: #1e6047;
}

html .philosophy .promise-list li:first-child {
  border-radius: 15px 0 0 15px;
}

html .philosophy .promise-list li:last-child {
  margin-right: 0;
  border-radius: 0 15px 15px 0;
}

html .philosophy .promise-list figure {
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 300px;
}

html .philosophy .promise-list h4 {
  padding-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
}

html .program {
  text-align: center;
}

html .program .program-ttl {
  margin: 0 0 50px 0;
  padding: 15px 0;
  border: 1px solid #84a898;
  font-size: 3.5rem;
  font-weight: 500;
  text-align: center;
}

html .program p {
  font-weight: 200;
  letter-spacing: 0.2rem;
}

html .program p.plan_note {
  text-align: right;
  padding-top: 10px;
}

html .program .time-txt {
  font-size: 3.3rem;
  font-weight: 400;
  letter-spacing: 0.3rem;
}

html .program .time-txt span {
  font-size: 5.2rem;
}

html .plan {
  padding: 25px 80px 100px;
}

html .plan table {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
  table-layout: fixed;
  border-collapse: separate;
  letter-spacing: 2px;
}

html .plan table tbody tr th {
  padding: 20px 0;
  border: 1px solid #84a898;
  background: #216245;
  font-weight: 500;
  vertical-align: middle;
  border-radius: 15px 0 0 0;
}

html .plan table tbody tr td {
  border: 1px solid #84a898;
  background: var(--white);
  color: #19743d;
  font-weight: 500;
  vertical-align: middle;
}

html .plan table tbody tr td:last-child {
  border-radius: 0 15px 0 0;
}

html .plan table tbody tr:last-child th {
  border-radius: 0 0 0 15px;
}

html .plan table tbody tr:last-child td:last-child {
  border-radius: 0 0 15px 0;
}

html .plan .p-content {
  margin: 110px 0 0;
  padding: 40px;
  background: #1e6047;
  text-align: left;
  border-radius: 15px;
}

html .plan .p-content .c-ttl {
  position: relative;
  margin-bottom: 25px;
  padding: 0 25px;
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
}

html .plan .p-content .c-ttl span {
  position: relative;
  padding: 0 110px;
}

html .plan .p-content .c-ttl span::before,
html .plan .p-content .c-ttl span::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 90px;
  height: 1px;
  background-color: var(--white);
  content: "";
  transform: translateY(-50%);
}

html .plan .p-content .c-ttl span::before {
  left: 0;
}

html .plan .p-content .c-ttl span::after {
  right: 0;
}

html .plan .p-content p {
  margin: 0 auto;
  text-align: left;
  letter-spacing: 0.2rem;
  max-width: 550px;
}

/* section 04  end */

/* fblk sp */
@media screen and (max-width: 768px) {
  html .abhyanga:before {
    content: none;
  }

  html .abhyanga .f-blk {
    flex-direction: column;
    width: 100%;
    padding: 3vw 4vw 0vw;
    box-sizing: border-box;
    max-width: 100%;
    gap: 0;
  }

  html .abhyanga .f-blk h2 {
    display: block;
    width: 100%;
    margin: 4vw 0 6vw;
    text-align: center;
  }

  html .abhyanga .f-blk h2 span {
    display: block;
    font-size: 7vw;
    text-align: center;
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
  }

  html .abhyanga .f-blk h2 span:nth-child(2) {
    margin-top: 0;
    letter-spacing: 0.1rem;
  }

  html .abhyanga .f-blk .f-blk_right {
    align-items: center;
    font-size: 4vw;
    letter-spacing: 0.3rem;
  }

  html .abhyanga .f-blk .f-blk_right p {
    text-align: center;
  }

  html .abhyanga .f-blk .f-blk_right .f-blk_bottom h3 {
    font-size: 5.4vw;
    text-align: center;
    letter-spacing: 0;
    margin: -11vw 0 3vw;
  }

  html .abhyanga .f-blk .f-blk_right .f-blk_bottom h3 span {
    font-size: 3vw;
    letter-spacing: 0.1rem;
  }

  html .abhyanga .f-blk .f-blk_right .f-blk_bottom p {
    padding: 0 6vw;
    letter-spacing: 0.1rem;
  }

  html .abhyanga .f-blk .f-blk_img.sp {
    position: relative;
    z-index: -1;
    width: 109%;
    margin-top: -14px;
    display: block !important;
  }

  html .abhyanga .f-blk .f-blk_img.sp img {
    display: block;
    margin: 0 auto;
  }
}

/* shirodhara_effect */
@media screen and (max-width: 768px) {
  html .m-inner {
    padding: 0 20px;
  }

  html .shirodhara_effect {
    padding: 50px 20px;
  }

  html .shirodhara_effect h3 {
    font-size: 6vw;
  }

  html .shirodhara_effect .shirodhara_effect_inner {
    flex-direction: column;
    gap: 20px;
  }

  html .shirodhara_effect .shirodhara_effect_inner dl {
    width: 100%;
  }

  html .shirodhara_effect .shirodhara_effect_inner dl dd:last-child {
    margin-bottom: 40px;
  }

  html .shirodhara_effect .shirodhara_effect_inner dl:nth-child(2) dd:last-child {
    margin-bottom: 0;
  }

  html .shirodhara_effect .shirodhara_effect_inner dl dt {
    line-height: 1.5;
    padding-left: 33px;
    font-size: 5vw;
  }

  .shirodhara_effect_inner dt::before {
    top: 3.5vw;
    left: 14px;
  }

  html .abhyanga .life-style span::before,
  html .abhyanga .life-style span::after {
    content: none;
  }

  html .abhyanga .life-style h3 {
    font-size: 6vw;
    letter-spacing: 0.1em;
  }

  html .abhyanga .wide_blk .wide-inner {
    max-width: 100%;
    width: 100%;
  }

  html .abhyanga .wide_blk img {
    border-radius: 0;
  }

  html .abhyanga .wide_blk h3 {
    padding: 8vw 0 5vw;
    font-size: 6vw;
    letter-spacing: 0.1em;
  }

  html .abhyanga .life-style h3 span {
    padding: 0;
  }

  html .abhyanga .life-style h3 {
    padding: 12vw 0 10vw 0;
  }
}

/* life-style */
@media screen and (max-width: 768px) {
  html .abhyanga .life-style .reduce_blk {
    width: 100%;
    padding-top: 0;
    box-sizing: border-box;
    max-width: 100%;
  }

  html .abhyanga .life-style .reduce_blk .reduce_item {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 30px;
  }

  html .abhyanga .life-style .reduce_blk .reduce_item:first-child {
    align-items: flex-start;
    padding: 0 0 10vw;
  }

  html .abhyanga .life-style .reduce_blk .reduce_item::after {
    width: 100%;
  }

  html .abhyanga .life-style .reduce_blk .reduce_item .text {
    gap: 10px;
  }

  html .abhyanga .life-style .reduce_blk .reduce_item .text h4 {
    margin-bottom: 10px;
    font-size: 6vw;
    font-weight: 400;
  }

  html .abhyanga .life-style .reduce_blk .reduce_item figure {
    flex-shrink: 0;
  }

  html .abhyanga .life-style .reduce_blk .reduce_item:nth-child(2) {
    flex-direction: column;
    padding: 10vw 0;
  }

  html .abhyanga .wide_blk {
    padding: 10vw 0;
  }

}

/* philosophy */
@media screen and (min-width:769px) {
  html .philosophy .promise-list p.btn {
    padding: 0;
    min-height: 65px;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  html .philosophy {
    margin-bottom: 10vw;
  }

  html .philosophy h3 {
    padding-top: 10vw;
    font-size: 5vw;
  }

  html .philosophy .promise-list {
    flex-wrap: wrap;
    margin-bottom: 5vw;
  }

  html .philosophy .promise-list li {
    width: 95%;
    margin: 0 auto 5vw;
    padding: 0 0 10vw 0;
    border-radius: 15px;
  }

  html .philosophy .promise-list li:last-child {
    margin: 0 auto;
    border-radius: 15px;
  }

  html .philosophy .promise-list h4 {
    position: absolute;
    top: 8vw;
    left: 16px;
    font-size: 4.7vw;
    writing-mode: vertical-lr;
  }

  html .philosophy .promise-list figure {
    max-width: 200px;
    padding: 10vw 10vw 0 20vw;
  }

  html .philosophy .promise-list p {
    padding: 0vw 10vw 0 20vw;
  }

  html .philosophy .promise-list p.btn {
    line-height: 1.4;
    margin: 10vw 5vw 0 5vw;
  }

  html .philosophy .promise-list p.btn::before {
    bottom: 10px;
    left: 8px;
    width: 35px;
    height: 35px;
  }

  html .philosophy .promise-list li:nth-child(2) p.btn::before {
    top: 0;
  }

  html .philosophy .notic-txt {
    letter-spacing: 0.2rem;
  }
}

/* program */
@media screen and (max-width: 768px) {
  html .program {
    padding-bottom: 15vw;
  }

  html .program .program-ttl {
    margin-bottom: 6vw;
    font-size: 6vw;
    letter-spacing: 0.1rem;
  }

  html .plan {
    padding: 5vw 0 0 0;
  }

  .plan table,
  .plan tbody,
  .plan tr {
    display: block;
    width: 100%;
  }

  .plan table tr {
    margin-bottom: 20px;
  }

  html .plan table tbody tr th,
  html .plan table tbody tr:last-child th {
    border-radius: 15px 15px 0 0;
  }

  html .plan table tbody tr td,
  html .plan table tbody tr td:last-child {
    border-radius: 0 0 15px 15px;
  }

  html .plan table tbody tr:last-child td:last-child {
    border-radius: 0 0 15px 15px;
  }

  html .plan table tbody tr th,
  html .plan table tbody tr td {
    padding: 2vw 0;
  }

  .plan table th,
  .plan table td {
    display: block;
    width: 100%;
    border: none;
    text-align: center;
  }

  .plan table th {
    padding: 16px 0;
    background: #1e6047;
    color: #fff;
    font-size: 1.6rem;
    border-radius: 15px 15px 0 0;
  }

  .plan table td {
    padding: 20px 0;
    border: 1px solid #84a898;
    background: #fff;
    color: var(--green);
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 0 0 15px 15px;
    border-top: none;
  }

  html .program .time-txt {
    font-size: 6vw;
  }

  html .program .time-txt span {
    font-size: 10vw;
  }

  html .plan .p-content .c-ttl span::before,
  html .plan .p-content .c-ttl span::after {
    content: none;
  }

  html .plan .p-content .c-ttl span {
    padding: 0;
  }

  html .program p.plan_note {
    padding: 0;
  }

  html .plan .p-content {
    position: relative;
    margin: 15vw 0 0 0;
    padding: 2vw 4vw 2vw 4vw;
  }

  html .plan .p-content .c-ttl span {
    position: absolute;
    top: -3vw;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }
}

html .user_voice {
  width: 100%;
  margin: 0 auto;
  /* max-width: 1400px;
  padding: 80px; */
  box-sizing: border-box;
  background-color: #085030;
}

html .user_voice .user_voice_head {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  justify-content: space-between;
  z-index: 1;
  width: calc(100% + 80px);
  margin-left: -40px;
  padding: 80px;
  box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.32);
  box-sizing: border-box;
  background: #0a3965;
  color: #fff;
  border-radius: 30px;
  gap: 80px;
}

html .user_voice .user_voice_head figure {
  width: 38%;
  flex-shrink: 0;
}

html .user_voice .user_voice_head figure img {
  width: 100%;
  height: 316px;
  object-fit: cover;
  object-position: bottom;
  border-radius: 30px;
}

html .user_voice .user_voice_head .text h2 {
  padding-bottom: 30px;
  font-size: 3rem;
  font-weight: 300;
}

html .user_voice .user_voice_head .text p {
  color: #fff;
}

html .user_voice .user_voice_body {
  width: 100%;
  padding: 0 80px 120px;
  box-sizing: border-box;
  background: #0a3965;
  border-radius: 0 0 30px 30px;
}

html .user_voice .user_voice_body .item {
  padding: 80px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

html .user_voice .user_voice_body .item h3 {
  padding-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 400;
}

html .user_voice .user_voice_body .item p {
  color: #fff;
}

html .user_voice .user_voice_body .item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media screen and (max-width: 768px) {
  html .user_voice {
    width: 100%;
    padding: 0px;
    background: #085030;
    max-width: 100%;
  }

  html .user_voice .user_voice_head {
    display: flex;
    position: relative;
    flex-direction: column;
    z-index: 1;
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 0px;
    box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.32);
    box-sizing: border-box;
    background: #0a3965;
    color: #fff;
    border-radius: 0 0 15px 15px;
    gap: 0px;
  }

  html .user_voice .user_voice_head figure {
    width: calc(100% + 40px);
    margin-left: -20px;
    flex-shrink: 0;
  }

  html .user_voice .user_voice_head figure img {
    width: 100%;
    height: 316px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 0px;
  }

  html .user_voice .user_voice_head .text {
    padding: 20px 20px 40px;
  }

  html .user_voice .user_voice_head .text h2 {
    padding-bottom: 20px;
    font-size: 4.6vw;
    text-align: center;
  }

  html .user_voice .user_voice_head .text p {
    color: #fff;
  }

  html .user_voice .user_voice_body {
    width: 100%;
    padding: 20px 20px 40px;
    box-sizing: border-box;
    background: #0a3965;
    border-radius: 0 0 30px 30px;
  }

  html .user_voice .user_voice_body .item {
    padding: 40px 0;
  }

  html .user_voice .user_voice_body .item h3 {
    padding-bottom: 10px;
    font-size: 5vw;
    text-align: center;
  }
}

html .visceral {
  background: #e5e4e7;
}

html .visceral .sect_ttl {
  padding-top: 127px;
  color: var(--dark-green);
}

html .visceral .sect_ttl::before {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 70px;
  height: 65px;
  background: url(../img/green_lotus.webp) no-repeat center bottom;
  background-size: 100% auto;
  content: "";
  transform: translate(-50%, -50%);
}

html .visceral .salon {
  position: relative;
  z-index: 1;
  margin: 25px 80px 55px;
  padding: 40px;
  background: #095734;
  color: var(--gold);
  text-align: center;
  border-radius: 15px;
}

html .visceral .salon h3 {
  margin-bottom: 10px;
  font-size: 2.8rem;
  font-weight: 500;
}

html .visceral .salon p {
  color: var(--gold);
  letter-spacing: 0.3rem;
}

html .visceral .l-inner {
  margin: 0 auto;
  max-width: 1400px;
}

html .visceral .l-inner:nth-of-type(4) {
  padding: 0 30px;
}

html .visceral .flow_blk {
  display: flex;
  position: relative;
  flex-direction: column;
  padding-bottom: 80px;
}

html .visceral .flow_blk::before {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 0;
  width: 80px;
  height: 100%;
  background: url(../img/flow_before.png) no-repeat center;
  background-size: 100% 100%;
  content: "";
  transform: translate(-50%, -50%);
}

html .visceral .flow_blk .flow_item {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-bottom: 150px;
}

html .visceral .flow_blk .flow_item {
  flex-direction: row;
}

html .visceral .flow_blk .flow_item:nth-child(2n) {
  flex-direction: row-reverse;
}

html .visceral .flow_blk .flow_item:nth-child(2n) .text {
  margin-left: 6%;
}

html .visceral .flow_blk .flow_item .text {
  display: flex;
  flex-direction: column;
  width: 41%;
  margin-left: auto;
  color: var(--dark-green02);
  gap: 3px;
  max-width: 560px;
}

html .visceral .flow_blk .flow_item .text h4 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 500;
}

html .visceral .flow_blk .flow_item .text h4 span {
  display: block;
  z-index: -1;
  line-height: 1;
  margin-bottom: -42px;
  color: #e1dcd8;
  font-family: "Oswald", sans-serif;
  font-size: 144px;
  font-weight: 400;
}

html .visceral .flow_blk .flow_item .text p {
  color: var(--dark-green02);
  max-width: 480px;
}

html .visceral .flow_blk .flow_item figure {
  width: 58%;
  max-width: 560px;
}

html .visceral .flow_blk .flow_item figure img {
  border-radius: 15px;
}

html .visceral .home {
  z-index: 1;
  margin: 0 80px 55px;
  padding: 40px;
  border: 1px solid var(--green);
  background: var(--white);
  color: var(--green);
  text-align: center;
  border-radius: 15px;
}

html .visceral .home h3 {
  margin-bottom: 10px;
  font-size: 2.8rem;
  font-weight: 500;
  color: #02864b;
}

html .visceral .home p {
  color: #02864b;
  letter-spacing: 0.3rem;
}

html .visceral .hcare_list {
  display: flex;
  padding-bottom: 100px;
  border-radius: 15px;
}

html .visceral .hcare_list li {
  width: calc(100% / 4);
  padding: 40px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.08),
    0 10px 25px rgba(0, 0, 0, 0.06);
  background: var(--white);
  color: var(--dark-green02);
}

html .visceral .hcare_list li:first-child {
  border-radius: 15px 0 0 15px;
}

html .visceral .hcare_list li:last-child {
  border-radius: 0 15px 15px 0;
}

html .visceral .hcare_list li img {
  margin-bottom: 30px;
}

html .visceral .hcare_list li h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  color: var(--dark-green02);
}

html .visceral .hcare_list li p {
  color: var(--dark-green02);
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  html .visceral .m-inner {
    padding: 0 20px 0 0;
  }

  html .visceral .l-inner {
    padding: 0 10px;
  }

  html .visceral .l-inner,
  html .visceral .l-inner:nth-of-type(4) {
    padding: 0 10px;
  }

  html .visceral .sect_ttl {
    font-size: 6.5vw;
  }

  html .visceral .salon {
    margin: 0;
    border-radius: 0 15px 15px 0;
  }

  html .visceral .salon h3 {
    font-size: 6vw;
  }

  html .visceral .flow_blk {
    padding: 20px 10px 0 40px;
  }

  html .visceral .flow_blk .flow_item {
    flex-direction: column;
    padding-bottom: 10vw;
  }

  html .visceral .flow_blk::before {
    top: 48%;
    left: -3px;
    width: 37px;
  }

  html .visceral .flow_blk .flow_item figure {
    width: 100%;
    max-width: unset;
  }

  html .visceral .flow_blk .flow_item .text {
    width: 100%;
    max-width: unset;
  }

  html .visceral .flow_blk .flow_item:nth-child(2n) .text {
    margin-left: 0;
  }

  html .visceral .flow_blk .flow_item .text h4 {
    font-size: 5vw;
    font-weight: 600;
  }

  html .visceral .flow_blk .flow_item .text h4 span {
    margin-bottom: -28px;
    font-size: 21vw;
  }

  html .visceral .flow_blk .flow_item:nth-child(2n) {
    flex-direction: column;
  }

  html .visceral .home {
    margin: 0 0 10vw 0;
    padding: 20px 31px;
    border: none;
    text-align: left;
    border-radius: 0 15px 15px 0;
  }

  html .visceral .home h3 {
    margin-bottom: 1vw;
    font-size: 6vw;
  }

  html .visceral .home p {
    letter-spacing: 0.1rem;
  }

  html .visceral .hcare_list {
    flex-wrap: wrap;
  }

  html .visceral .hcare_list li {
    width: calc((100% / 2) - 20px);
    padding: 25px 10px 10px 10px;
    box-shadow:
      0 4px 3px rgba(0, 0, 0, 0.08),
      0 -3px 3px rgba(0, 0, 0, 0.06);
  }

  html .visceral .hcare_list li:first-child {
    border-radius: 15px 0 0 0;
  }

  html .visceral .hcare_list li:nth-child(2) {
    border-radius: 0 15px 0 0;
  }

  html .visceral .hcare_list li:nth-child(3) {
    border-radius: 0 0 0 15px;
  }

  html .visceral .hcare_list li:last-child {
    border-radius: 0 0 15px 0;
  }

  html .visceral .hcare_list li h4 {
    font-size: 5vw;
  }
}

/* FAQ */

html .faq {
  padding: 90px 160px 128px;
}

html .faq .sect_ttl,
html .greeting .sect_ttl {
  color: var(--dark-green);
  font-size: 4.1rem;
  padding: 0;
  position: relative;
}

html .faq-blk .faq-item {
  background-color: #fbfbfc;
  padding: 50px;
  border-radius: 10px;
  margin-bottom: 50px;
}

html .faq-blk .faq-item:last-child {
  margin-bottom: 0;
}

html .faq-blk .faq-item h3 {
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-weight: 600;
}

html .faq-blk .faq-item h3,
html .faq-blk .faq-item p {
  position: relative;
  padding: 20px 0 0 103px;
  color: var(--dark-green);
}

html .faq-blk .faq-item h3::before,
html .faq-blk .faq-item p::before {
  position: absolute;
  top: 0;
  width: 83px;
  height: 83px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  border-radius: 50px;
  font-size: 3.6rem;
  font-family: "Cormorant";
  font-weight: 100;
}

html .faq-blk .faq-item h3::before {
  content: "Q";
  color: var(--gold);
  background-color: var(--dark-green);
}

html .faq-blk .faq-item p::before {
  content: "A";
  background-color: var(--gold);
  top: 20px;
  color: var(--dark-green02);
}

@media screen and (min-width:769px) {
  html .faq .l-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  html .faq .sect_ttl span,
  html .greeting .sect_ttl span {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    line-height: 1;
  }

  html .faq .sect_ttl::after,
  html .greeting .sect_ttl::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100px;
    left: 20px;
    background-color: var(--dark-green);
    bottom: -10.5rem;
  }

  html .faq-blk {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  html .faq {
    padding: 25px 0 43px;
  }

  html .faq .sect_ttl,
  html .greeting .sect_ttl {
    padding-top: 60px;
    font-size: 6.5vw;
    letter-spacing: 0;
  }

  html .faq .sect_ttl::before,
  html .greeting .sect_ttl::before {
    content: "";
    position: absolute;
    width: 62px;
    height: 45px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/green-lotus.webp) no-repeat center bottom;
    background-size: contain;
  }

  html .faq-blk {
    margin-top: 30px;
  }

  html .faq-blk .faq-item {
    padding: 20px 10px;
    margin-bottom: 15px;
  }

  html .faq-blk .faq-item h3 {
    margin-bottom: 15px;
    font-size: 4.8vw;
  }

  html .faq-blk .faq-item p {
    font-size: 3.733vw;
  }

  html .faq-blk .faq-item h3,
  html .faq-blk .faq-item p {
    padding: 5px 0 0 63px;
  }

  html .faq-blk .faq-item h3::before,
  html .faq-blk .faq-item p::before {
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  html .faq-blk .faq-item p::before {
    top: 10px;
  }
}

/* Feedback */

html .feedback .l-inner {
  padding: 0 8rem;
  box-sizing: border-box;
}

html .feedback .fb-head {
  box-sizing: border-box;
  width: calc(100% + 80px);
  border-radius: 15px;
  padding: 80px;
  position: relative;
  z-index: 1;
}

html .feedback .fb-body {
  background: linear-gradient(135deg, #00532c 10%, var(--green));
  padding: 0 80px 95px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0 0 15px 15px;
}

html .feedback .fb-body .item {
  padding: 60px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

html .feedback picture {
  width: 38%;
  flex-shrink: 0;
}

html .feedback .img-blk {
  width: 35%;
  flex-shrink: 0;
}

html .feedback picture img {
  border-radius: 30px;
}

html .feedback .fb-head .text h2 {
  font-size: 3rem;
  font-weight: 300;
  padding-bottom: 3rem;
}

html .feedback .fb-body .item .text h3 {
  font-size: 2.4rem;
  margin-bottom: 3rem;
}

html .feedback .fb-head .text p,
html .feedback .fb-body .item .text p {
  font-weight: 200;
}

html .feedback .img-blk {
  display: flex;
}

html .feedback .img-blk figure {
  position: relative;
  padding-bottom: 40px;
}

html .feedback .img-blk figure:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mincho);
  font-weight: 100;
}

html .feedback .img-blk figure:first-child::after {
  content: "Before";
}

html .feedback .img-blk figure:last-child::after {
  content: "After";
}

html .feedback .img-blk figure:first-child::before {
  position: absolute;
  content: "";
  background: url(../img/icn_arrow.webp) no-repeat;
  background-size: contain;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  right: -25px;
  width: 45px;
  height: 45px;
  z-index: 1;
}

@media screen and (min-width:769px) {

  html .feedback .fb-head .fb-inr,
  html .feedback .fb-body .item {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 80px;
    color: var(--white);
  }

  html .feedback .fb-head {
    background-color: #00532c;
    margin-left: -40px;
    box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.32);
  }
}

@media screen and (max-width: 768px) {
  html .feedback .fb-inr {
    margin: 0 20px;
  }

  html .feedback .l-inner,
  html .feedback .fb-head {
    padding: 0;
  }

  html .feedback .fb-head::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: #00532c;
    width: 100%;
    height: 90%;
    z-index: -1;
  }

  html .feedback .fb-head,
  html .feedback .fb-body {
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: unset;
  }

  html .feedback .fb-body {
    padding: 0 0 30px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(to bottom, #00532c 50%, var(--green));
  }

  html .feedback .fb-head,
  html .feedback .fb-body .item {
    flex-direction: column;
    gap: 0;
    color: var(--white);
  }

  html .feedback .fb-body .item {
    width: 100%;
    padding: 40px 0;
  }

  html .feedback .fb-body .item:last-child {
    border: none;
  }

  html .feedback picture,
  html .feedback .img-blk {
    width: 100%;
  }

  html .feedback .img-blk {
    margin: 25px 0 10px;
  }

  html .feedback picture img {
    border-radius: 0;
  }

  html .feedback .fb-head .text {
    padding: 20px 20px 40px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.32);
    position: relative;
    z-index: 1;
  }

  html .feedback .fb-head .text h2 {
    text-align: center;
    font-size: 5.3vw;
    padding-bottom: 20px;
  }

  html .feedback .fb-head .text.sp {
    border-radius: 15px 15px 0 0;
    padding: 20px 25px;
    background-color: var(--dark-green);
    margin: 0 auto;
  }

  html .feedback .fb-head .text.sp h2 {
    padding: 0;
    text-align: left;
  }

  html .feedback .fb-body .item .text h3 {
    font-size: 5vw;
    margin-bottom: 10px;
    text-align: center;
  }

  html .feedback .fb-body .item .text h3 span {
    display: block;
  }

  html .feedback .fb-body .item .text p {
    margin: 0 20px;
    font-weight: 100;
  }
}

/* Greeting */
html .greeting .greeting-blk .name {
  margin-bottom: 50px;
  color: var(--dark-green);
}

html .greeting .greeting-blk .name span,
html .greeting .greeting-blk .name em {
  display: block;
}

html .greeting .greeting-blk .name em {
  font-size: 3.6rem;
  font-family: var(--mincho);
}

html .greeting .greeting-blk p {
  color: var(--dark-green02);
}

html .greeting .greeting-blk .item figure {
  width: 400px;
}

html .greeting .greeting-blk .item+.item {
  margin-top: 130px;
}

@media screen and (min-width:769px) {
  html .greeting {
    padding: 190px 160px 128px;
  }

  html .greeting .l-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  html .greeting .greeting-blk {
    width: 90%;
  }

  html .greeting .greeting-blk .item .text {
    margin-left: 80px;
    width: 70%;
  }

  html .greeting .greeting-blk .item.reverse .text {
    margin-left: 0;
    margin-right: 80px;
  }

  html .greeting .greeting-blk .item {
    display: flex;
  }

  html .greeting .greeting-blk .item.reverse {
    flex-direction: row-reverse;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  html .greeting {
    padding: 40px 0 45px;
  }

  html .greeting .sect_ttl {
    margin-bottom: 45px;
  }

  html .greeting .greeting-blk .item figure img {
    width: 100%;
  }

  html .greeting .greeting-blk .name {
    margin: 20px 0 10px;
  }

  html .greeting .greeting-blk .name span,
  html .greeting .greeting-blk .name em {
    text-align: center;
  }

  html .greeting .greeting-blk .name em {
    font-size: 5.8vw;
  }

  html .greeting .greeting-blk .name span {
    font-size: 3.2vw;
  }

  html .greeting .greeting-blk .item+.item {
    margin-top: 40px;
  }
  html .greeting .greeting-blk .item figure {
    width: 100%;
  }
}

/* Lastly */
html .lastly {
  background: url(../img/bg_lastly.webp) no-repeat;
  background-size: cover;
  padding: 180px 0 100px;
}

html .lastly h2 {
  font-size: 3.4rem;
  margin-left: 30px;
}

html .lastly .l-inner .text {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  letter-spacing: 6.5px;
  padding-top: 45px;
  line-height: 2.5;
  font-size: 2rem;
  font-family: var(--mincho);
}

@media screen and (min-width: 768px) {
  html .lastly .l-inner {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }

  html .lastly h2 span,
  html .lastly .text span {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: pre;
  }
}

@media screen and (max-width: 768px) {
  html .lastly {
    background: url(../img/bg_lastly_sp.webp) no-repeat;
    background-size: cover;
    padding: 75px 0 80px;
  }

  html .lastly .l-inner .text {
    justify-content: center;
    line-height: 2;
    font-size: 1.6rem;
  }

  html .lastly h2 {
    text-align: center;
    font-size: 6.5vw;
  }

  html .lastly .text span {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: pre;
  }
}

/* Contact */
html .contact {
  background: #12401f url(../img/img_bg_footer.webp) no-repeat center top;
  background-size: cover;
  padding: 110px 0 140px;
}

html .contact .ft-inner {
  width: 100%;
  max-width: 1400px;
  padding: 0 80px 100px;
  box-sizing: border-box;
  margin: 0 auto;
}

html .contact h2 {
  font-size: 3.6rem;
  color: var(--white);
  font-weight: 300;
  text-align: center;
  margin-bottom: 65px;
}

html .contact .line-btn {
  width: 900px;
  padding: 30px 0;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  margin: 0 auto;
  color: #06c655;
}

html .contact .line-btn .icon-line {
  font-size: 4rem;
}

html .contact .line-btn span {
  font-size: 2.5rem;
  font-family: var(--mincho);
}

html .contact .wellness {
  border-radius: 15px;
  box-sizing: border-box;
  background: rgba(5, 107, 47, 0.5);
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  margin: 140px 0 100px;
}

html .contact .wellness figure {
  flex-shrink: 0;
  width: 300px;
}

html .contact .wellness .text h3 {
  font-size: 3.2rem;
  padding-bottom: 30px;
}

html .contact .wellness .text p {
  font-size: 1.8rem;
  line-height: 41px;
  color: var(--white);
  font-weight: 300;
}

html .contact .info-text {
  text-align: center;
  padding-bottom: 40px;
}

html .contact .logo {
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
}

html .contact address {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 400;
  padding: 2em 0;
}

html .contact p {
  font-size: 1.8rem;
  color: var(--white);
}

html .contact .copy {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  html .contact {
    padding: 45px 0 20px;
  }

  html .contact .ft-inner {
    max-width: 100%;
    padding: 30px 20px 40px;
  }

  html .contact h2 {
    font-size: 5.8vw;
    margin-bottom: 40px;
  }

  html .contact .line-btn {
    width: 100%;
    padding: 15px 0;
    gap: 5px;
    border-radius: 10px;
    flex-direction: column;
  }

  html .contact .line-btn .icon-line {
    font-size: 10vw;
  }

  html .contact .line-btn span {
    font-size: 4.5vw;
  }

  html .contact .wellness {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 60px;
  }

  html .contact .wellness figure {
    width: 100%;
    max-width: 300px;
  }

  html .contact .wellness .text h3 {
    font-size: 6vw;
    text-align: center;
    padding-bottom: 20px;
  }

  html .contact .wellness .text p {
    font-size: 1.5rem;
  }

  html .contact address {
    font-size: 1.5rem;
    padding: 2em 0;
  }

  html .contact p {
    font-size: 1.5rem;
  }

  html .contact .copy {
    font-size: 1rem;
  }
}

/* Google Map */
html .googlemap {
  width: 100%;
  height: 500px;
  position: relative;
}

html .googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  html .googlemap {
    margin-bottom: 60px;
  }
}

/* Footer */
html .pageTop {
  position: fixed;
  right: 30px;
  bottom: -64px;
  transition: all 0.8s cubic-bezier(1, 0, 0, 1);
  backface-visibility: hidden;
  z-index: 18;
}

html .pageTop.on {
  bottom: 30px;
}

html .pageTop a {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  border: 1px solid var(--dark-green);
  box-sizing: border-box;
}

html .pageTop a .icon-top {
  color: var(--dark-green);
  font-size: 3rem;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

html .pageTop a:hover {
  transform: scale(1.2);
}

html .pageTop a:hover .icon-top {
  animation: top 1.5s cubic-bezier(1, 0, 0, 1) 1;
}

@keyframes top {
  0% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}

@media screen and (max-width:768px) {
  html .pageTop {
    right: 10px;
    bottom: -50px;
  }

  html .pageTop.on {
    bottom: 50px;
  }

  html .pageTop a {
    width: 50px;
    height: 50px;
    border: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  }

  html .pageTop a:hover {
    transform: scale(1);
  }

  html .pageTop a .icon-top {
    font-size: 2rem;
  }

  html .fixed-footer {
    position: fixed;
    left: 0;
    bottom: -60px;
    width: 100%;
    height: 60px;
    background: #00B900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: all 0.2s ease;
    z-index: 10;
  }
  html .fixed-footer .icon-line {
    font-size: 3rem;
  }
  html .fixed-footer span {
    font-size: 2rem;
  }
  html .fixed-footer.on {
    bottom: 0;
  }
}

/* Common */

.fw-reg {
  font-weight: 400;
}

.lspacing {
  letter-spacing: 3px;
}

/* Ipad */

@media screen and (min-width: 741px) and (max-width: 768px) {
  html .philosophy .promise-list p.btn {
    line-height: 1.4;
    margin: 10vw auto 0;
    width: 70%;
  }

}