@charset "UTF-8";
body {
  font-family: roboto, yu-gothic-pr6n, sans-serif;
  background-color: #fff;
  color: #3E3A39;
}

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

.flex {
  display: flex;
}

.flex-reverse {
  display: flex;
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
  .flex-reverse {
    flex-direction: column-reverse;
  }
}
.btn {
  height: 50px;
  line-height: 50px;
  display: block;
  text-align: center;
  transition: 0.4s;
  position: relative;
  width: 292px;
  background: url(../img/kagileftt.png) left top/7px 7px no-repeat, url(../img/kagirightt.png) right top/7px 7px no-repeat, url(../img/kagileftb.png) left bottom/7px 7px no-repeat, url(../img/kagirightb.png) right bottom/7px 7px no-repeat #fff799;
  box-sizing: border-box;
  letter-spacing: 0.14em;
}
.btn:hover {
  background: url(../img/kagileftt.png) left top/7px 7px no-repeat, url(../img/kagirightt.png) right top/7px 7px no-repeat, url(../img/kagileftb.png) left bottom/7px 7px no-repeat, url(../img/kagirightb.png) right bottom/7px 7px no-repeat #80d8d1;
  box-sizing: border-box;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  .btn {
    width: 78%;
    margin: 0 auto;
  }
}
.asterisk {
  color: #80d8d1;
}

.inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}
.innerBox {
  max-width: 1128px;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: 100%;
    padding: 0;
  }
}
.fadeIn-head {
  animation-name: fadeInAnime;
  animation-duration: 1.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  transition: 1s;
  transform: translateY(150px);
}
.fadeIn.is-over {
  opacity: 1;
  transform: translateY(0);
}

.header {
  width: 100%;
  height: 102px;
  z-index: 100;
  background-color: #fff;
  position: relative;
}
i .header img {
  width: 100%;
  display: block;
}
.header_logo {
  width: 147px;
  position: absolute;
  top: 51%;
  left: 30px;
  transform: translateY(-50%);
  z-index: 1000;
}
.header_logo a {
  display: block;
}
.header .container {
  width: 100%;
  transition: 0.4s;
}

@media screen and (max-width: 1024px) {
  .header_logo {
    left: 15px;
  }
  .header_logo a img {
    width: 135px;
    height: 51px;
  }
}
.header.fixed {
  position: fixed;
  top: 0;
  background-color: #fff;
  width: 100%;
  transition: 0.8s;
  height: 102px;
  opacity: 0.9;
}

.globalNav {
  font-family: roboto, sans-serif;
  font-size: 16px;
  letter-spacing: 0.13em;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.globalNav__list {
  display: flex;
  align-items: center;
}
.globalNav__item {
  margin-left: 30px;
}
.globalNav__item:hover span.header_option::after {
  opacity: 1;
  left: 0;
  width: 100%;
}
.globalNav__item span.header_option {
  position: relative;
}
.globalNav__item span.header_option::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 0;
  height: 1px;
  background: #80d8d1;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
@media screen and (max-width: 1200px) {
  .globalNav {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .header.fixed {
    height: 67px;
  }
  .globalNav.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .globalNav__list {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .globalNav__item {
    margin: 20px 0;
  }
  .globalNav__list a {
    color: #3E3A39;
    font-size: 20px;
  }
  .globalNav__item:nth-of-type(7) {
    margin: 10px 0 48px;
    order: 8;
  }
}
.hamburger {
  display: none;
  width: 25px;
  height: 16px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .header {
    height: 67px;
  }
  .header_logo {
    width: 135px;
    height: 51px;
  }
  .hamburger {
    display: block;
    top: 26px;
    z-index: 1;
    margin: 0 15px 0 auto;
  }
  .hamburger.active span:first-of-type {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .hamburger.active span:nth-last-of-type(2) {
    top: 50%;
    opacity: 0;
  }
  .hamburger.active span:last-of-type {
    bottom: 40%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #616c72;
    position: absolute;
    transition: 0.4s;
  }
  .hamburger span:first-of-type {
    top: 5%;
  }
  .hamburger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    margin-left: 20%;
  }
  .hamburger span:last-of-type {
    bottom: 5%;
  }
}
.faq {
  border-right: solid 1px #c4c4c4;
  padding-right: 30px;
}

.cta_tel {
  font-family: garamond-atf-subhead, serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.13em;
}

.cta_web {
  background-color: #3ab8b9;
  width: 102px;
  height: 102px;
  color: #fff;
  font-size: 75%;
  position: relative;
  text-align: center;
}
.cta_web:hover {
  background-color: #80d8d1;
  transition: 0.4s;
}
.cta_web a {
  display: block;
  width: 102px;
  height: 102px;
}

.typesquare {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.typesquare img {
  display: block;
  margin: auto;
}

.webbtn {
  text-align: center;
}

.pc_off {
  display: none;
}

@media screen and (max-width: 1200px) {
  .faq {
    padding-right: 0px;
    border-right: 0;
  }
  .sp_off {
    display: none;
  }
  .pc_off {
    display: block;
  }
  .cta_web {
    width: 90%;
    height: 60px;
    margin: 0 auto;
    color: #fff;
    position: relative;
  }
  .cta_web p {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .cta_web p::before {
    content: url(../img/smartphone.png);
    display: inline-block;
    position: absolute;
    left: -5em;
    top: 50%;
    transform: translateY(-45%);
  }
  .cta_web img {
    display: none;
  }
}
@media screen and (max-width: 483px) {
  .cta_web p::before {
    left: -3em;
  }
}
.top-slider-wrap {
  margin-right: 102px;
  position: relative;
}
.top-slider-wrap .top-slider li img {
  height: 100vh;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: top;
}

@media screen and (max-width: 768px) {
  .top-slider-wrap {
    margin-right: 0px;
  }
  .top-slider-wrap li img.slidesp01 {
    object-position: 30% 100%;
  }
  .top-slider-wrap li img.slidesp02 {
    object-position: 60% 100%;
  }
  .top-slider-wrap li img.slidesp03 {
    object-position: 80% 100%;
  }
}
.svgall {
  position: absolute;
  transform: rotate(-7deg);
  width: 45%;
  bottom: 9%;
  right: 5%;
  filter: drop-shadow(6px 6px 3px #636C71);
}

@media screen and (max-width: 1024px) {
  .svgall {
    right: 9%;
  }
}
@media screen and (max-width: 768px) {
  .svgall {
    width: 90%;
  }
}
.scroll {
  position: absolute;
  right: 26px;
  bottom: 65px;
  height: 50px;
}
.scrollBtn {
  position: absolute;
  right: 31px;
  bottom: 65px;
  height: 50px;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  opacity: 1;
}

.scrollBtn-ico {
  position: relative;
  top: 5px;
}

.scrollBtn-left {
  position: absolute;
  animation: scrollBtn-left 1s ease 0s infinite alternate;
}

.scrollBtn-right {
  position: absolute;
  animation: scrollBtn-right 1s ease 0s infinite alternate;
}

@keyframes scrollBtn-left {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes scrollBtn-right {
  0% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(-15deg);
  }
  40% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 768px) {
  .scrollBtn {
    right: 0;
    transform: translateX(-50%);
    bottom: 3%;
  }
}
.concept {
  background: url(../img/background.jpeg) no-repeat center/cover;
  padding: 100px 0 200px;
}
.concept img {
  max-width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: 30%;
}

.textBox {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 50px;
}

.imageBox {
  width: 460px;
  height: 360px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .concept {
    padding: 50px 0;
  }
  .concept img {
    height: auto;
  }
  .imageBox {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
    object-fit: cover;
  }
  .imageBox img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
  }
}
.topicsBox {
  margin-bottom: 50px;
  font-family: roboto, sans-serif;
  font-size: 30px;
  letter-spacing: 0.16em;
  font-weight: bold;
}

.caption__main {
  width: 62%;
  background-color: #DCEFED;
}
.caption__main--right {
  margin: 50px 0 0 -50px;
  padding: 70px 63px 50px 135px;
}

@media screen and (max-width: 768px) {
  .caption__main {
    width: 100%;
    margin: 20px 0 0 0;
  }
  .caption__main--right {
    padding: 30px 15px;
    margin: 0 auto;
  }
  .topicsBox {
    margin: 0 auto 30px;
    text-align: center;
  }
  .textBox {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 2.4;
    margin-bottom: 30px;
    text-align: justify;
    text-justify: inter-ideograph;
  }
}
.reservation {
  width: 100%;
  background-color: #DCEFED;
  padding: 70px 0 50px;
}

.topicsRes {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  letter-spacing: 0.16em;
  text-align: center;
  margin-bottom: 30px;
}

.res-inner {
  width: 42%;
  margin: 0 auto;
}

.textRes {
  text-align: center;
  margin-bottom: 30px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 2.5;
}

.btn-res {
  margin: 0 auto;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .reservation {
    padding: 30px 15px;
  }
  .res-inner {
    width: 100%;
  }
  .btn-res {
    width: 78%;
  }
}
@media screen and (max-width: 414px) {
  .textRes {
    font-size: 14px;
    white-space: nowrap;
  }
}
.recommend {
  padding: 85px 0 120px 0;
}
.recommend img {
  max-width: 100%;
  height: 360px;
  object-fit: cover;
}

.caption__main--left {
  margin: 50px -70px 0 0;
  padding: 70px 132px 50px 65px;
}

@media screen and (max-width: 768px) {
  .recommend {
    padding: 50px 0;
  }
  .recommend img {
    height: auto;
  }
  .recommend .imageBox {
    padding: 0;
    margin-top: 20px;
  }
  .recommend .topicsBox {
    margin: 0 0 30px 0;
    text-align: left;
  }
  .caption__main--left {
    margin: 20px 0 0 0;
    padding: 30px 15px;
  }
}
.topics {
  text-align: center;
}

.style {
  background: url(../img/background.jpeg) no-repeat center/cover;
  padding: 100px 0 100px;
}
.style img {
  display: block;
  max-width: 32.6666666667%;
  justify-content: space-between;
  object-fit: cover;
}
.style .flex-style {
  display: flex;
  flex-direction: row;
  margin-bottom: 50px;
  justify-content: space-between;
}
.style .btn {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .style {
    padding: 30px 15px;
  }
  .style .flex-style {
    display: block;
    margin-bottom: 30px;
    justify-content: center;
  }
  .style img {
    max-width: 100%;
    margin-bottom: 20px;
    width: 100%;
  }
}
.designer {
  margin: 120px 0;
}
.designer img {
  max-width: 100%;
  height: 360px;
  object-fit: cover;
}

.nameTitle {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 30px;
  letter-spacing: 0.16em;
  display: inline-block;
}

.alphabetName,
.position {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.16;
}

.position {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .designer {
    margin: 50px 0;
  }
  .designer .flex-reverse {
    flex-direction: column;
  }
  .designer .imageBox {
    margin-bottom: 0;
  }
  .alphabetName {
    display: block;
  }
  .position {
    margin-top: 10px;
    margin-bottom: 30px;
  }
}
.news {
  margin-bottom: 120px;
}
.news .btn {
  margin: 0 auto;
}
.newsContents {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
.newsContents a {
  display: block;
}
.newsContents .flex {
  border-top: 1px solid #707070;
  padding: 21px 0;
}
.newsContents .lastDate {
  border-bottom: 1px solid #707070;
}
.news .date {
  font-size: 14px;
  margin-right: 25px;
  margin-left: 15px;
  display: inline-block;
}
.newsTitle {
  width: 77%;
  display: inline-block;
  white-space: nowrap;
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.03em;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.16em;
  vertical-align: middle;
}
.newsTitle::after {
  content: ">";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 15px;
}

@media screen and (max-width: 768px) {
  .news {
    margin-bottom: 50px;
  }
  .news .btn {
    width: 78%;
  }
  .newsTitle {
    margin-left: 15px;
  }
  .topics {
    margin-bottom: 15px;
  }
  .newsContents {
    margin-bottom: 30px;
  }
}
.hareCare {
  background: url(../img/background.jpeg) no-repeat center/cover;
  padding: 100px 0 120px;
}

@media screen and (max-width: 768px) {
  .hareCare {
    padding: 30px 0;
  }
}
.access {
  margin: 120px auto;
}
.accessWrap {
  margin-left: 60px;
}
.access p {
  font-size: 14px;
  margin-bottom: 15px;
}
.access p:last-of-type {
  margin-bottom: 20px;
}

.yugo {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.16em;
}

.map {
  max-width: 100%;
  height: 368px;
}

@media screen and (max-width: 768px) {
  .access {
    margin: 50px 0;
  }
  .accessWrap {
    margin-left: 0;
  }
  .access p {
    margin-left: 50px;
  }
}
@media screen and (max-width: 483px) {
  .access p {
    margin-left: 15px;
  }
}
.footer {
  background-color: #616c72;
  position: relative;
}
.footer-logo {
  width: 135px;
  height: 67px;
  margin: 20px auto;
  padding-top: 20px;
}
.footer_address, .footer_close, .footer_tel {
  padding-top: 20px;
}
.footer p {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  line-height: 1;
}
.footer p.footer-tel {
  font-family: roboto, sans-serif;
  letter-spacing: 0.11em;
  font-size: 18px;
}

.num {
  font-size: 24px;
}

.footer-sns {
  padding-top: 30px;
  display: flex;
  width: 100px;
  margin: 0 auto;
}
.footer-sns-item {
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
.footer-sns-item:last-of-type {
  margin-right: 0;
}

.footer small p {
  font-size: 12px;
  display: block;
  padding: 30px 0 20px;
  color: #fff;
}

p#page-top {
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.updown {
  animation-name: updown1; /* アニメーション名の指定 */
  animation-delay: 0s; /* アニメーションの開始時間指定 */
  animation-duration: 3s; /* アニメーション動作時間の指定 */
  animation-timing-function: ease-in-out; /* アニメーションの動き指定（徐々に早く）*/
  animation-iteration-count: infinite;
}

@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  65% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.subheader {
  border-bottom: 1px solid #fff;
}

.subpageTitle {
  margin-top: 50px;
  margin-bottom: 100px;
  text-align: center;
  color: #616c72;
  font-family: adobe-garamond-pro, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  letter-spacing: 0.16em;
  position: relative;
}
.subpageTitle::after {
  content: "";
  position: absolute;
  border-bottom: 3px solid #616c72;
  width: 60px;
  color: #616c72;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
}

.concept__caption {
  margin-top: 80px;
}
.concept__caption--inner {
  width: 1156px;
  margin: 0 auto;
}
.concept__caption--inner .imageBox {
  width: 666px;
  height: 412px;
  margin-right: 50px;
}
.concept__caption--inner .imageBox img {
  display: block;
  width: 666px;
  height: 412px;
  object-fit: cover;
  object-position: 100% 46%;
}
.concept__caption--right {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  letter-spacing: 0.16em;
  line-height: 2;
  white-space: nowrap;
  position: relative;
}
.concept__caption--right p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  .concept__caption--inner .imageBox {
    margin-right: 30px;
  }
  .concept__caption--right {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .inner.flex.concept__caption--inner {
    flex-direction: column;
  }
  .concept__caption--inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  .subpageTitle {
    margin-top: 30px;
    font-size: 40px;
    margin-bottom: 50px;
  }
  .imageBoxTop {
    margin-bottom: 0;
  }
  .concept__caption {
    margin-top: 50px;
  }
  .concept__caption--inner .imageBox {
    width: 100%;
    height: 67vh;
    margin-right: 0;
  }
  .concept__caption--inner .imageBox img {
    height: 67vh;
    width: 100%;
  }
  .concept__caption--right {
    font-size: 20px;
  }
  .concept__caption--right p {
    position: static;
    transform: translateY(0);
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 414px) {
  .subpageTitle {
    font-size: 36px;
  }
  .concept__caption--right {
    font-size: 18px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 335px) {
  .concept__caption--right {
    font-size: 16px;
  }
}
.step {
  margin-top: 120px;
}
.stepcaption__left {
  margin-top: 50px;
  width: 53%;
}
.stepTitle {
  margin-top: 30px;
  margin-bottom: 50px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  letter-spacing: 0.16em;
  font-size: 22px;
}
.stepimage__right {
  width: 47%;
  height: 44vh;
  margin-left: 10px;
  position: relative;
}
.stepimage__right img {
  width: 100%;
  height: 44vh;
  object-fit: cover;
}
.step01 {
  position: relative;
}
.step01::after {
  content: "";
  display: inline-block;
  width: 64.5%;
  height: 328px;
  background: #DCEFED;
  position: absolute;
  top: 86px;
  left: 0;
  z-index: -1;
}

.subPageText {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.16em;
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .step {
    margin-top: 50px;
  }
  .step .inner {
    padding: 0 15px;
  }
  .stepcaption__left {
    width: 100%;
  }
  .stepTitle {
    line-height: 2;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .step.step01 {
    margin-top: 0;
  }
  .step01::after {
    width: 100%;
    top: 12%;
    height: 260px;
  }
  .stepimage__right {
    width: 100%;
    margin-left: 0;
    margin-top: 50px;
  }
}
@media screen and (max-width: 555px) {
  .step01::after {
    height: 300px;
  }
}
@media screen and (max-width: 414px) {
  .step01::after {
    height: 330px;
  }
}
@media screen and (max-width: 375px) {
  .step01::after {
    height: 340px;
  }
}
@media screen and (max-width: 335px) {
  .stepTitle {
    font-size: 16px;
  }
}
.stepimage__left img {
  width: 569px;
  height: 344px;
  object-fit: cover;
  object-position: 100% 65%;
}
.stepcaption__right {
  margin-left: 50px;
  margin-top: 16px;
}
.step02 {
  position: relative;
}
.step02::after {
  content: "";
  display: inline-block;
  width: 64.5%;
  height: 328px;
  background: #DCEFED;
  position: absolute;
  bottom: -40px;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .stepcaption__right {
    margin-left: 0;
    margin-top: 0;
  }
  .step02 .flex {
    flex-direction: column-reverse;
  }
  .step02::after {
    width: 100%;
    height: 270px;
    top: 6%;
  }
  .stepimage__left {
    margin-top: 50px;
  }
}
.text-margin {
  margin-top: 18px;
}

.step03 {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .step03text {
    margin-right: 0;
  }
  .step03.step01::after {
    height: 270px;
    top: 13%;
  }
  .step.step03 {
    margin-top: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 483px) {
  .step03.step01::after {
    height: 320px;
    top: 13%;
  }
}
@media screen and (max-width: 414px) {
  .step02::after {
    height: 310px;
  }
  .step03.step01::after {
    height: 310px;
    top: 13%;
  }
}
.recmain .headspa {
  background: #fff;
  padding: 0px 0px 50px;
}

@media screen and (max-width: 768px) {
  .concept.headspa {
    padding: 0;
    margin: 50px 0;
  }
}
.recmain .textBox {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  font-size: 16px;
  line-height: 2.3;
}

@media screen and (max-width: 768px) {
  .recmain .textBox {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 414px) {
  .textBox {
    font-size: 14px;
  }
  .recmain .textBox {
    font-size: 14px;
  }
}
.diproma .inner {
  max-width: 1198px;
  background: url(../img/background-dot.png);
  background-repeat: no-repeat;
  height: 339px;
  position: relative;
}

.recSubLeft {
  width: 55%;
  margin-top: 56px;
  margin-left: 80px;
}
.recSubTitle {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  letter-spacing: 0.16em;
  font-size: 20px;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.recSubText {
  font-family: yu-gothic-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.75;
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.03em;
}
.recSubRight {
  max-width: 290px;
  height: 290px;
  object-fit: cover;
}
.recSubRight img {
  max-width: 290px;
  height: 290px;
  object-fit: cover;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .diproma .inner {
    width: 100%;
    height: 100%;
    padding: 0 15px;
    background-repeat: repeat;
  }
  .recSubTitle {
    margin-bottom: 30px;
  }
  .recSubText {
    font-size: 14px;
  }
  .recSubLeft {
    width: 100%;
    margin-top: 30px;
    margin-left: 0;
  }
  .recSubRight {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
    object-fit: cover;
  }
  .recSubRight img {
    position: static;
    display: block;
    margin: 20px auto 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.treatment.recommend {
  padding: 120px 0 50px;
}

.lelumiss {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .treatment.recommend {
    padding: 50px 0 50px;
  }
  .treatment .caption__main--left {
    margin: 0;
  }
  .treatment .imageBox {
    margin-bottom: 0;
    margin-top: 20px;
    padding: 0 15px;
  }
  .lelumiss {
    margin-bottom: 50px;
  }
}
h3.menuTitle,
.menumain p,
dt, dd {
  color: #616c72;
}

.menumain section {
  margin-bottom: 45px;
}

section.digistraight,
section.other {
  margin-bottom: 0;
}

.menuBoard {
  background-color: #DCEFED;
  max-width: 1000px;
  margin: 100px auto 25px;
  border-radius: 10px;
}
.menuBoard-inner {
  padding: 33px 35px 89px;
}
.menuBoard-inner.flex {
  justify-content: space-around;
}
.menuBoard-left {
  width: 43%;
}
.menuBoard-right {
  width: 43%;
}

.menuTitle {
  font-family: roboto, sans-serif;
  font-size: 16px;
  letter-spacing: 0.13em;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.03em;
}
.menuHead {
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #616c72;
}
.menuHead p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  letter-spacing: 0.16em;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.menu-flex {
  display: flex;
  justify-content: space-between;
}

dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

dt {
  border-bottom: 0.5px dotted #616c72;
  padding: 14px 0;
  display: inline-block;
  width: 83%;
}

dd {
  border-bottom: 0.5px dotted #616c72;
  padding: 14px 0;
  width: 17%;
  text-align: right;
}

.attention-inner {
  max-width: 1000px;
  margin: 25px auto 120px;
  padding: 0 15px;
}
.attention-inner p {
  margin-bottom: 10px;
}

.color,
.treatment-menu,
.spa {
  position: relative;
}
.color::after,
.treatment-menu::after,
.spa::after {
  position: absolute;
  content: "※※";
  color: #616c72;
  right: 0;
  font-size: 14px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
  .menuBoard {
    margin: 50px 15px 25px;
  }
  .menuBoard-left, .menuBoard-right {
    width: 100%;
  }
  .color {
    margin-top: 45px;
  }
  .attention-inner {
    margin: 25px auto 50px;
  }
}
.staffMain .imageBox {
  width: 50%;
  height: auto;
}
.staffMain .caption__main--left {
  width: 50%;
  margin: 0;
  padding: 70px 0 0 70px;
}
.staffMain .owner, .staffMain .staff {
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .staffMain .owner, .staffMain .staff {
    margin-bottom: 50px;
  }
  .staffMain .imageBox {
    width: 100%;
    height: auto;
  }
  .staffMain .caption__main--left {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
}
.hareCareMain .concept__caption--right p {
  transform: none;
  font-size: 16px;
  top: auto;
  bottom: 0;
}

.cota {
  margin-top: 120px;
}
.cota .caption__main--right {
  margin: 50px 0 0 -50px;
  padding: 50px 100px 50px 100px;
}

.naseed {
  margin: 120px 0;
}
.naseed .caption__main--left {
  margin: 50px -50px 0 0;
  padding: 50px 100px 50px 100px;
}

@media screen and (max-width: 768px) {
  .cota {
    margin-top: 50px;
  }
  .cota .caption__main--right {
    margin: 0;
    padding: 30px 15px;
  }
  .naseed {
    margin: 50px 0;
  }
  .naseed .caption__main--left {
    margin: 20px 0 0 0;
    padding: 30px 15px;
  }
  .naseed .flex-reverse {
    flex-direction: column;
  }
  .naseed .textBox {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 483px) {
  .hareCareMain .concept__caption--right {
    white-space: normal;
  }
}
.acd-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
  margin-bottom: 120px;
}
.acd-inner section {
  margin-bottom: 8px;
}

.q-close {
  user-select: none;
  display: none;
  height: 194px;
  padding: 20px;
  padding-left: 70px;
  border: 1px solid #f2f2f2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  letter-spacing: 0.16em;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.68;
  position: relative;
}
.q-close::before {
  content: "A";
  position: absolute;
  left: 30px;
}

.q-open {
  user-select: none;
  padding: 20px;
  padding-left: 70px;
  color: #3E3A39;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  letter-spacing: 0.16em;
  letter-spacing: 0.08em;
  font-size: 20px;
  background: #DCEFED;
  position: relative;
}
.q-open::before {
  content: "Q";
  position: absolute;
  left: 30px;
}
.q-open::after {
  content: url(../img/faq~.png);
  position: absolute;
  right: 20px;
}
.q-open.active::after {
  content: url(../img/faq^.png);
}
.q-open.active {
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .q-open,
.q-close {
    font-size: 16px;
    padding: 15px;
    padding-left: 35px;
    padding-right: 45px;
  }
  .q-open::before,
.q-close::before {
    left: 15px;
  }
  .q-close {
    height: auto;
  }
  .acd-inner {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=style.css.map */