@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* フォントサイズ */
/* 行間 */
/* 文字間隔 */
/* スタイル調整 */
/* transition */
/* ホバー */
/* 基盤 */
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: #707070;
  background-color: #fff;
  font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.2rem;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: 2px;
  }
}

a {
  color: #fff;
  position: relative;
  text-decoration: none;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

li {
  list-style: none;
}

span {
  display: inline-block;
}

/* レイアウト */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 15;
}

.l-header__inner {
  max-width: 110rem;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  margin: 0 auto;
}

.l-hamburger__button {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 100;
  width: 70px;
  height: 70px;
  background: #6177a4;
  border-radius: 50%;
  cursor: pointer;
}
.l-hamburger__button div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52%;
  height: 1px;
  background: #fff;
  margin-top: -4px;
}
.l-hamburger__button div:nth-of-type(1) {
  transform: translate(-50%, -11px);
}
.l-hamburger__button div:nth-of-type(2) {
  transform: translate(-50%, 0);
}
.l-hamburger__button div:nth-of-type(3) {
  transform: translate(-50%, 11px);
}
.l-hamburger__button .c-ham-letter, .l-hamburger__button .c-ham-letter_active {
  position: absolute;
  top: 61.5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0;
  display: block;
  text-align: center;
}
.l-hamburger__button .c-ham-letter {
  display: block;
}
.l-hamburger__button .c-ham-letter_active {
  display: none;
}

.l-hamburger {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 14;
  width: 100vw;
  height: 100%;
  overflow-y: scroll;
}

.l-hamburger__menu {
  min-height: 100vh;
  position: relative;
  padding-top: 45px;
  padding-bottom: 96px;
}
.l-hamburger__menu::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background: url(../images/deco_white_opa.svg) repeat left top;
  background-size: 80px auto;
  width: 100vw;
  height: 160px;
}

.l-hamburger__inner {
  width: 70%;
  margin: 0 auto;
}

.l-wrapper {
  max-width: 120rem;
  margin: 0 auto;
}

.l-inner {
  position: relative;
  max-width: 96rem;
  margin: 0 auto;
}

.l-inner2 {
  position: relative;
  max-width: 98rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-sp-ajust {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* コンポーネント */
.c-ja {
  font-family: "kinuta-maruminyoshino-stdn", serif;
  font-style: normal;
  font-weight: 400;
}

.c-font-500 {
  font-weight: 500;
}

.c-font-700 {
  font-weight: 700;
}

.c-blue-main {
  color: #6177a4;
}

.c-white {
  color: #fff;
}

.c-bg-white {
  background: #fff;
}

.c-bg {
  background: #f4f1e9;
}

.c-bg-main {
  background: #6177a4;
}

.c-bg-green {
  background: #c9b9a2;
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.c-section-title {
  font-size: 3rem;
  font-family: kinuta-maruminyoshino-stdn, serif;
  font-weight: 400;
  letter-spacing: 1.4rem;
  writing-mode: vertical-rl;
  margin: 0 2rem;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 1.1rem;
    margin: 0 auto;
  }
}
.c-section-title .c-section-sub {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .c-section-title .c-section-sub {
    display: block;
    font-size: 14px;
    margin-top: 30px;
  }
}

.c-button__circle {
  width: 18rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .c-button__circle {
    width: 360px;
    height: 78px;
  }
}
.c-button__circle a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  font-family: kinuta-maruminyoshino-stdn, serif;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  background: #6177a4;
  border-radius: 100%;
  overflow: hidden;
  transition: 0.2s;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .c-button__circle a {
    font-size: 14px;
    font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック体", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    font-weight: bold;
    border-radius: 0;
    padding-bottom: 0;
    padding-right: 15px;
  }
}
.c-button__circle a span {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-button__circle a span br {
    display: none;
  }
}
.c-button__circle a span::after {
  position: absolute;
  bottom: -4.9rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(../images/arrow_accent.svg) no-repeat 50% 50%/contain;
  width: 4rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .c-button__circle a span::after {
    top: 50%;
    bottom: auto;
    left: auto;
    right: -30px;
    transform: translateY(-50%);
    width: 20px;
  }
}
.c-button__circle a:hover {
  opacity: 0.6;
}

.c-button__square {
  width: 19rem;
  height: 4.8rem;
  transition: 0.2s;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-button__square {
    width: 190px;
    height: 48px;
  }
}
.c-button__square a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-button__square a {
    font-size: 14px;
  }
}
.c-button__square a span {
  position: relative;
}
.c-button__square a span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  background: url(../images/arrow_accent.svg) no-repeat 50% 50%/contain;
  width: 2rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .c-button__square a span::after {
    right: 33px;
    width: 20px;
  }
}
.c-button__square:hover {
  opacity: 0.6;
}

.c-accent {
  position: relative;
}
.c-accent::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  transform: translate(50%, -50%);
  width: 4.3rem;
  height: 4.3rem;
}
@media screen and (max-width: 767px) {
  .c-accent::before {
    width: 43px;
    height: 43px;
  }
}

.c-circle {
  width: 25rem;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-circle {
    width: 220px;
    height: 220px;
  }
}
.c-circle .c-content__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
  padding-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-circle .c-content__block {
    padding-top: 16px;
    padding-left: 20px;
  }
}
.c-circle .c-content__block .c-content__text {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .c-circle .c-content__block .c-content__text {
    font-size: 13px;
    letter-spacing: 0.01rem;
    margin-bottom: 8px;
  }
}
.c-circle .c-content__block .c-content__title {
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-circle .c-content__block .c-content__title {
    font-size: 32px;
    letter-spacing: 0.15em;
  }
}
.c-circle::before {
  position: absolute;
  content: "";
}
.c-circle::after {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  .c-circle::after {
    top: 4px;
    left: 4px;
  }
}

.c-content__letter {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.c-feature__contents {
  display: flex;
  flex-basis: 48.5%;
  padding: 16rem 6rem 12rem;
}
@media screen and (max-width: 767px) {
  .c-feature__contents {
    flex-basis: 100%;
    padding: 100px 25px 80px;
  }
}

.c-content__inner {
  width: 46rem;
  height: 138.4rem;
}
@media screen and (max-width: 767px) {
  .c-content__inner {
    width: 460px;
    height: auto;
  }
}

.c-content__title-block {
  width: 100%;
  height: 25.2rem;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  margin-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .c-content__title-block {
    height: 255px;
    margin-bottom: 50px;
  }
}

.c-content__title {
  font-size: 3.6rem;
  line-height: 1.8;
  letter-spacing: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-content__title {
    font-size: 32px;
  }
}
.c-content__title .c-subtitle {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.7rem;
}
@media screen and (max-width: 767px) {
  .c-content__title .c-subtitle {
    font-size: 13px;
    letter-spacing: 0.5rem;
  }
}

.c-content__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
}
@media screen and (max-width: 767px) {
  .c-content__items {
    row-gap: 50px;
  }
}
.c-content__items .c-content__item img {
  margin-bottom: 1.45rem;
}
@media screen and (max-width: 767px) {
  .c-content__items .c-content__item img {
    margin-bottom: 16px;
  }
}
.c-content__items .c-content__item .c-item__massage {
  font-size: 2rem;
  line-height: 1.9;
  letter-spacing: 0.3rem;
  margin: 0 5rem;
}
@media screen and (max-width: 767px) {
  .c-content__items .c-content__item .c-item__massage {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    margin: 0 50px;
  }
}
.c-content__items .c-content__item .c-item__submassage {
  font-size: 1.3rem;
  margin: 1rem 5rem 0;
}
@media screen and (max-width: 767px) {
  .c-content__items .c-content__item .c-item__submassage {
    font-size: 13px;
    margin: 10px 0 0;
  }
}

/* js */
.js-hamnav {
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}

.js-hamnav.active {
  opacity: 1;
  visibility: visible;
}

.js-hamburger div, .js-hamburger .c-ham-letter, .js-hamburger .c-ham-letter_active {
  transition: 0.2s;
}

.js-hamburger.active div:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: 50% 50%;
}
.js-hamburger.active div:nth-of-type(2) {
  opacity: 0;
}
.js-hamburger.active div:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(135deg);
  transform-origin: 50% 50%;
}
.js-hamburger.active .c-ham-letter {
  display: none;
}
.js-hamburger.active .c-ham-letter_active {
  display: block;
}

.js-header {
  transform: translateY(-100px);
  transition: 0.8s ease;
}

.js-header.show {
  transform: translateY(0);
}

.js-aside {
  transform: translateX(100%);
  transition: 0.8s ease;
}

.js-aside.show {
  transform: translateX(1.5rem);
}
@media screen and (max-width: 767px) {
  .js-aside.show {
    transform: translateX(0);
  }
}

body.fixed {
  height: 100%;
  overflow: hidden;
}/*# sourceMappingURL=common.css.map */