@charset "UTF-8";
/* common
=================================================================== */
html {
  overscroll-behavior-y: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  width: 100%;
  background-color: #fff;
  color: #2d2d2d;
  font-weight: 400;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", yumincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px),
print {
  body {
    font-size: 1.8rem;
  }
}
a {
  color: #2d2d2d;
  transition: all .3s;
}
@media screen and (max-width: 767px),
print {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
@media screen and (min-width: 768px),
print {
  a:hover {
    color: #6ab6a6;
  }
}
@media screen and (min-width: 1200px),
print {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
main {
  line-height: 2;
  opacity: 1;
  transition: opacity .4s;
}
@media screen and (min-width: 768px),
print {
  main {
    line-height: 2.4;
  }
}
main.js-intro {
  opacity: 0;
  transition: opacity 0s;
}
.js-scrollAni {
  opacity: 0;
  transition: transform 1.1s .2s ease-out, opacity .6s .2s ease-out;
  transform: translateY(80px);
}
@media screen and (min-width: 1200px),
print {
  .js-scrollAni {
    transition: transform 1s ease-in-out, opacity .6s ease-in-out .2s;
  }
}
.js-scrollAni.is-scrollAni {
  opacity: 1;
  transform: translateY(0);
}
/* header
=================================================================== */
.header {
  display: flex;
  width: 100%;
}
.header__logo {
  position: fixed;
  top: 3%;
  left: 4%;
  z-index: 1000;
  flex: 1 0 10%;
  text-shadow: 0 0 8px rgba(0, 0, 0, .3);
  font-weight: 400;
  font-size: 3rem;
  font-family: "Playfair Display", serif;
}
@media screen and (min-width: 768px),
print {
  .header__logo {
    font-size: 4.6rem;
  }
}
@media screen and (min-width: 768px),
print {
  .header__logo {
    left: 3%;
  }
}
.is-header .header__logo {
  mix-blend-mode: difference;
}
.is-nav__open .header__logo {
  mix-blend-mode: normal;
}
.header__logo > a {
  color: #fff !important;
  text-decoration: none;
}
.header__logo > a:hover {
  opacity: .6;
}
.header__menu > ul.sns__menu {
  position: fixed;
  top: 5%;
  right: 160px;
  z-index: 100;
  display: none;
}
@media screen and (min-width: 768px),
print {
  .header__menu > ul.sns__menu {
    display: flex;
  }
}
.is-header .header__menu > ul.sns__menu {
  mix-blend-mode: difference;
}
.sns__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.sns__menuIcon {
  margin-left: .8em;
  transition: all .3s;
}
.sns__menuIcon:hover {
  opacity: .6;
}
/* global nav
=================================================================== */
.nav__toggle {
  position: fixed;
  top: 1%;
  right: 4%;
  z-index: 1000;
  display: inline-block;
  width: 50px;
  height: 55px;
  outline: none;
  border: none;
  cursor: pointer;
}
@media screen and (min-width: 768px),
print {
  .nav__toggle {
    top: 3%;
    width: 60px;
    height: 60px;
  }
}
.is-header .nav__toggle {
  mix-blend-mode: difference;
}
.is-nav__open .nav__toggle {
  mix-blend-mode: normal;
}
.nav__toggle span {
  position: absolute;
  display: inline-block;
  background-color: #fff;
  transition: all .5s;
}
.nav__toggle span:nth-of-type(1) {
  width: 60%;
  transform: rotate(0deg);
}
.nav__toggle span:nth-of-type(2) {
  top: 15px;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px),
print {
  .nav__toggle span:nth-of-type(2) {
    width: 20px;
    height: 20px;
  }
}
.nav__toggle span:nth-of-type(3) {
  width: 60%;
  transform: rotate(0deg);
}
.is-nav__open .nav__toggle span:nth-of-type(1) {
  top: 25px;
  left: 20%;
  height: 2px;
  transform: rotate(30deg);
}
.is-nav__open .nav__toggle span:nth-of-type(2) {
  display: none;
}
.is-nav__open .nav__toggle span:nth-of-type(3) {
  top: 25px;
  left: 20%;
  height: 2px;
  transform: rotate(-30deg);
}
.nav__toggle em {
  position: absolute;
  bottom: 0;
  left: 50%;
  color: #fff;
  letter-spacing: .1em;
  font-style: normal;
  font-size: 1.8rem;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px),
print {
  .nav__toggle em {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px),
print {
  .nav__toggle:hover span:nth-of-type(2) {
    top: 18px;
    width: 14px;
    height: 14px;
  }
}
.nav {
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 100;
  display: flex;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  gap: 2em;
  width: 100%;
  height: 100%;
  padding: 7em 0 0 2em;
  border-bottom: 10px solid #c97a9c;
  background-color: #6ab6a6;
  color: #fff;
  opacity: 0;
  transform: rotate(.01deg);
}
@media screen and (min-width: 768px),
print {
  .nav {
    justify-content: flex-end;
    gap: 5em;
    padding: 10em 5em 0 0;
    transition: all .5s;
  }
}
.is-nav__open .nav {
  right: 0;
  opacity: 1;
  transition: all .5s;
}
.nav__list,
.nav__sns {
  position: relative;
  padding-bottom: 2em;
  list-style: none;
}
.nav__snsTtl {
  margin-bottom: .8em;
  margin-left: 20px;
  font-size: 2.2rem;
}
@media screen and (min-width: 768px),
print {
  .nav__snsTtl {
    font-size: 3rem;
  }
}
.nav__snsTtl > span {
  position: relative;
  display: block;
  opacity: 0;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1) .5s;
  transform: matrix(1, 0, 0, 1, 0, 100);
}
.is-nav__open .nav__snsTtl > span {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.nav__item,
.nav__itemSub,
.nav__snsItem,
.nav__snsTtl {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px),
print {
  .nav__item,
  .nav__itemSub,
  .nav__snsItem,
  .nav__snsTtl {
    margin-bottom: 2em;
  }
}
.nav__itemSub {
  margin-top: 3em;
  padding-bottom: 1.5em;
}
@media screen and (min-width: 768px),
print {
  .nav__itemSub {
    margin-top: 4em;
  }
}
.nav__item a,
.nav__itemSub a,
.nav__snsItem a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1) .5s;
  transform: matrix(1, 0, 0, 1, 0, 100);
}
@media screen and (min-width: 768px),
print {
  .nav__item a,
  .nav__itemSub a,
  .nav__snsItem a {
    padding-left: 20px;
  }
}
.is-nav__open .nav__item a,
.is-nav__open .nav__itemSub a,
.is-nav__open .nav__snsItem a {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
.nav__item a::before,
.nav__itemSub a::before,
.nav__snsItem a::before {
  position: absolute;
  top: .6em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transition: transform .5s;
  transform: scale(0);
}
@media screen and (min-width: 768px),
print {
  .nav__item a:hover::before,
  .nav__itemSub a:hover::before,
  .nav__snsItem a:hover::before {
    transform: scale(1);
  }
}
.nav__item a:hover,
.nav__itemSub a:hover,
.nav__snsItem a:hover {
  opacity: 1;
}
.nav__item a {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .nav__item a {
    font-size: 3rem;
  }
}
.nav__item a > em {
  display: block;
  font-style: normal;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px),
print {
  .nav__item a > em {
    font-size: 1.8rem;
  }
}
.nav__itemSub a {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .nav__itemSub a {
    font-size: 2rem;
  }
}
.nav__snsItem a {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px),
print {
  .nav__snsItem a {
    font-size: 1.8rem;
  }
}
.nav__snsItem a > em {
  display: inline-block;
  margin-left: 1em;
  font-style: normal;
}
.nav__snsItem a > img {
  width: 24px;
  vertical-align: middle;
}
@media screen and (min-width: 768px),
print {
  .nav__snsItem a > img {
    width: auto;
  }
}
/* top page
=================================================================== */
.mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 100%;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, .3);
  letter-spacing: .1em;
  font-size: 40px;
  font-size: 6.25vw;
  line-height: 2.4;
  transform: translateY(-50%) translateX(-50%);
  animation: fade 2s ease-in .5s both;
}
@media screen and (min-width: 768px),
print {
  .mv__text {
    width: 90%;
    letter-spacing: .15em;
    font-size: 4.9rem;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv__textEng {
  position: absolute;
  top: 50%;
  right: 3%;
  z-index: 3;
  display: none;
  color: #fff;
  writing-mode: vertical-lr;
  font-weight: 400;
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  transition: all 3s;
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px),
print {
  .mv__textEng {
    display: block;
  }
}
.mv__slide {
  position: relative;
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  opacity: 1;
  transition: opacity 2s ease-out;
}
@media screen and (min-width: 768px),
print {
  .mv__slide {
    height: 100vh;
  }
}
.mv__slide.js-loading {
  opacity: 0;
}
.mv__slide .slide-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.mv__slide .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background: #fff !important;
  opacity: 1 !important;
}
@media screen and (min-width: 768px),
print {
  .mv__slide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 10px !important;
  }
}
.mv__slide .swiper-pagination-bullet-active {
  background: #777 !important;
}
.mv__slide .swiper-pagination {
  bottom: 2em !important;
  z-index: 10;
}
.message {
  padding: 5em 1em !important;
  background-image: url(../img/top/message-sp.svg);
  background-position: center top 60%;
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  letter-spacing: .05em;
}
@media screen and (min-width: 768px),
print {
  .message {
    padding: 13em 0 !important;
    background-image: url(../img/top/message-pc.svg);
    background-position: center center;
    background-size: cover;
    letter-spacing: .1em;
  }
}
.message__lead {
  margin-bottom: 1.5em;
  font-weight: 400;
  font-size: 38px;
  font-size: 5.9375vw;
}
@media screen and (min-width: 768px),
print {
  .message__lead {
    margin-bottom: 3em;
    font-size: 3.2rem;
  }
}
.message__text {
  font-size: 26px;
  font-size: 4.0625vw;
  line-height: 2.6;
}
@media screen and (min-width: 768px),
print {
  .message__text {
    font-size: 2.4rem;
  }
}
.staff {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .staff {
    flex-direction: row;
    gap: 4em;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px),
print {
  .staff {
    gap: 6em;
  }
}
.staff__unit {
  flex: 1 0 10%;
  padding: 2em 2em 0 2em;
  border-top: 3px solid #c97a9c;
}
@media screen and (min-width: 768px),
print {
  .staff__unit {
    order: 1;
    padding: 2em 0 0 0;
  }
}
.staff__name {
  margin-bottom: 1em;
  font-weight: 400;
  font-size: 2rem;
}
@media screen and (min-width: 768px),
print {
  .staff__name {
    font-size: 2.5rem;
  }
}
.staff__text {
  margin-top: 2em;
}
.staff__pic {
  margin: 0 4em;
}
@media screen and (min-width: 768px),
print {
  .staff__pic {
    order: 2;
    width: min(40%, 380px);
    margin: 0;
  }
}
.staff__pic > img {
  aspect-ratio: 758/1274;
}
.staff__link {
  margin-top: 2em;
  text-align: center;
}
@media screen and (min-width: 768px),
print {
  .staff__link {
    margin-top: 3em;
    text-align: left;
  }
}
/* page common
=================================================================== */
.page__ttl {
  position: relative;
  margin-top: 2em;
  letter-spacing: .1em;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px),
print {
  .page__ttl {
    font-size: 4.9rem;
  }
}
.page__ttlBg {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 210px;
  background-image: url(../img/common/ttl-bg-sp.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
  color: #fff;
  opacity: 0;
  transition: opacity 2s;
}
@media screen and (min-width: 768px),
print {
  .page__ttlBg {
    height: 400px;
    background-image: url(../img/common/ttl-bg-pc.webp);
  }
}
.is-loading .page__ttlBg {
  opacity: 1;
}
.page__ttlBg.second {
  height: 180px;
}
@media screen and (min-width: 768px),
print {
  .page__ttlBg.second {
    height: 395px;
  }
}
.page__ttlBg.second .page__ttl {
  margin-top: 0;
}
.page__ttlEng {
  display: block;
  margin-top: .3em;
  letter-spacing: 0;
  font-style: normal;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .page__ttlEng {
    font-size: 2rem;
  }
}
/* pagenation 01
=================================================================== */
.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .3em;
  margin-top: 1em;
  list-style: none;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px),
print {
  .page-numbers {
    margin-top: 2em;
    font-size: 2.8rem;
  }
}
.page-numbers a.page-numbers {
  display: inline-block;
  padding: .3em;
  color: #c97a9c;
  text-decoration: none;
  line-height: 1;
}
.page-numbers a.page-numbers:hover {
  color: #515151;
}
.page-numbers .current {
  display: inline-block;
  padding: .3em;
  color: #515151;
}
.page-numbers .dots {
  display: inline-block;
  padding: 0 !important;
}
.page-numbers .prev,
.page-numbers .next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}
.page-numbers .prev:hover,
.page-numbers .next:hover {
  opacity: .6;
}
.page-numbers .prev {
  margin-right: 1em;
  transform: rotate(180deg);
}
.page-numbers .next {
  margin-left: 1em;
}
/* pagenation 02
=================================================================== */
.pageNave {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5em;
  list-style: none;
  font-size: 1.4rem;
}
.pageNave a {
  text-decoration: none;
}
/* class page
=================================================================== */
.class__text {
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .class__text {
    font-size: 2rem;
  }
}
.class__text > p {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px),
print {
  .class__text > p {
    margin-bottom: 0;
  }
}
.class__table {
  max-width: 700px;
  width: 100%;
  margin-top: 3em;
  margin-inline: auto;
  border: 1px solid #e1ddd9;
  border-spacing: 0;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px),
print {
  .class__table {
    font-size: 2rem;
  }
}
.class__table tr {
  border-bottom: 1px solid #e1ddd9;
}
.class__table th,
.class__table td {
  padding: 1.2em 1em;
  text-align: center;
}
.class__table th {
  border-right: 1px solid #e1ddd9;
  background-color: #f9f6f2;
  font-weight: 400;
}
.class__table td {
  background-color: #fff;
  font-weight: 400;
}
.class__tableCap {
  margin-top: .5em;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .class__tableCap {
    font-size: 1.8rem;
  }
}
.class__cate {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5em;
  max-width: 550px;
  margin-top: 3em;
  margin-bottom: 1.5em;
  margin-inline: auto;
  list-style: none;
}
@media screen and (min-width: 768px),
print {
  .class__cate {
    gap: 1.5em;
    max-width: none;
  }
}
.class__cate > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 1em) / 2);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  font-size: 4.6875vw;
  aspect-ratio: 224/224;
}
@media screen and (min-width: 768px),
print {
  .class__cate > li {
    width: calc((100% - 4.5em) / 4);
    font-size: 30px;
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 1200px),
print {
  .class__cate > li {
    width: calc((100% - 4.5em) / 4);
    font-size: 3rem;
  }
}
.class__cate > li:nth-of-type(1) {
  background-image: url(../img/class/c01.png);
}
.class__cate > li:nth-of-type(2) {
  background-image: url(../img/class/c02.png);
}
.class__cate > li:nth-of-type(3) {
  background-image: url(../img/class/c03.png);
}
.class__cate > li:nth-of-type(4) {
  background-image: url(../img/class/c04.png);
}
.class__cate > li:nth-of-type(5) {
  background-image: url(../img/class/c05.png);
}
.class__cate > li:nth-of-type(6) {
  background-image: url(../img/class/c06.png);
}
.class__cate > li:nth-of-type(7) {
  background-image: url(../img/class/c07.png);
}
.class__cate > li:nth-of-type(8) {
  background-image: url(../img/class/c08.png);
}
.salon__text {
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .salon__text {
    font-size: 2rem;
  }
}
.salon__text > p {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px),
print {
  .salon__text > p {
    margin-bottom: 2em;
  }
}
.salon__add {
  margin-top: 2em;
  text-align: center;
}
@media screen and (min-width: 768px),
print {
  .salon__add {
    margin-top: 4em;
  }
}
.salon__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  margin-top: 2em;
}
@media screen and (min-width: 768px),
print {
  .salon__gallery {
    gap: 1em;
    margin-top: 3em;
  }
}
.salon__galleryItem {
  width: calc((100% - .5em) / 2);
}
@media screen and (min-width: 768px),
print {
  .salon__galleryItem {
    width: calc((100% - 1em) / 2);
  }
}
/* news page
=================================================================== */
.news__text {
  margin-bottom: 2em;
  text-align: center;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .news__text {
    margin-bottom: 4em;
    font-size: 2rem;
  }
}
.news__text > p {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px),
print {
  .news__text > p {
    margin-bottom: 0;
  }
}
.news__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3em;
  margin-bottom: 3em;
}
@media screen and (min-width: 768px),
print {
  .news__list {
    gap: 5em 2.5em;
    margin-bottom: 6em;
  }
}
@media screen and (min-width: 768px),
print {
  .news__item {
    width: calc((100% - 5em) / 3);
  }
}
.news__item > a {
  text-decoration: none;
}
@media screen and (min-width: 768px),
print {
  .news__item > a:hover {
    color: #000;
  }
}
@media screen and (min-width: 768px),
print {
  .news__item > a:hover .news__itemPic > img {
    opacity: .7;
    transform: scale(1.15);
  }
}
@media screen and (min-width: 768px),
print {
  .news__item > a:hover .news__itemMore {
    color: #c97a9c;
  }
}
.news__itemPic {
  overflow: hidden;
  margin-bottom: 1em;
  aspect-ratio: 900/640;
}
.news__itemPic > img {
  transition: all .3s;
  object-fit: cover;
}
.news__itemCate {
  display: flex;
  flex-wrap: wrap;
  gap: .3em 1em;
  padding-left: 1em;
  border-left: 8px solid #c97a9c;
  list-style: none;
  font-size: 1.4rem;
}
.news__itemTtl {
  margin-top: .8em;
  font-weight: 400;
  font-size: 1.8rem;
}
.news__itemDate {
  display: block;
  font-size: 1.2rem;
}
.news__itemMore {
  margin-top: 1em;
  color: #6ab6a6;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial, "メイリオ", meiryo, sans-serif;
  transition: all .3s;
}
/* news post
=================================================================== */
.news__cont {
  display: flex;
  flex-wrap: wrap;
}
.news__main {
  order: 1;
}
@media screen and (min-width: 768px),
print {
  .news__main {
    order: 2;
    width: min(70%, 650px);
  }
}
.news__breadcrumbs {
  width: 100%;
  margin-bottom: 1em;
  text-align: right;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px),
print {
  .news__breadcrumbs {
    margin-bottom: 2em;
    font-size: 1.4rem;
  }
}
.news__breadcrumbs > a {
  position: relative;
  margin-right: 1em;
  padding-right: 2em;
  text-decoration: none;
}
.news__breadcrumbs > a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "＞";
  transform: translateY(-50%);
}
.news__post {
  margin-bottom: 4em;
}
@media screen and (min-width: 768px),
print {
  .news__post {
    margin-bottom: 6em;
  }
}
.news__postDate {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px),
print {
  .news__postDate {
    font-size: 1.3rem;
  }
}
.news__postDate > time {
  position: relative;
  margin-right: 1.5em;
}
.news__postCate {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.news__postCate > li {
  margin-right: .5em;
}
.news__postCate > li > a {
  text-decoration: none;
}
.news__postTtl {
  position: relative;
  margin-bottom: 1em;
  padding-bottom: .5em;
  border-bottom: 2px solid #c97a9c;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px),
print {
  .news__postTtl {
    margin-bottom: 1em;
    font-size: 2.2rem;
  }
}
.news__postNote {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px),
print {
  .news__postNote {
    margin-bottom: 6em;
  }
}
.news__postNote p {
  margin-bottom: 2em;
}
.news__side {
  order: 2;
  width: 100%;
  padding-right: 1em;
  padding-left: 1em;
}
@media screen and (min-width: 768px),
print {
  .news__side {
    order: 1;
    width: min(30% - 3em, 290px);
    margin-top: 3.3em;
    margin-right: 3em;
    padding-right: 0;
    padding-left: 0;
  }
}
.news__sideUnit {
  margin-top: 2em;
}
@media screen and (min-width: 768px),
print {
  .news__sideUnit {
    margin-top: 4em;
  }
}
.news__sideUnit:first-child {
  margin-top: 0;
}
.news__sideUnit > em {
  display: block;
  margin-bottom: 2em;
  padding-bottom: .3em;
  border-bottom: 2px solid #c97a9c;
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
}
.news__sideList {
  margin: 0 .5em;
  list-style: none;
  font-size: 1.4rem;
  line-height: 1.6;
}
.news__sideList > li {
  margin-bottom: .5em;
}
.news__sideList a {
  display: block;
  text-decoration: none;
}
/* contact page
=================================================================== */
.contact__lead {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .contact__lead {
    font-size: 2rem;
  }
}
.contact__lead > p {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px),
print {
  .contact__lead > p {
    margin-bottom: 2em;
  }
}
.contact__form {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid #e1ddd9;
}
@media screen and (min-width: 768px),
print {
  .contact__form {
    margin-top: 5em;
    padding-top: 3em;
  }
}
.contact__form > dt {
  margin-bottom: .3em;
  font-weight: 400;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .contact__form > dt {
    font-size: 1.8rem;
  }
}
.contact__form > dd {
  margin-bottom: 1.5em;
}
.contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=tel],
.contact__form input[type=number],
.contact__form textarea {
  height: 100%;
  padding: .8em;
  outline: none;
  border-radius: 5px;
  background-color: #f2f2f2;
  transition: .3s;
}
@media screen and (min-width: 768px),
print {
  .contact__form input[type=text],
  .contact__form input[type=email],
  .contact__form input[type=tel],
  .contact__form input[type=number],
  .contact__form textarea {
    padding: 1em;
  }
}
.contact__form input[type=text]:hover,
.contact__form input[type=email]:hover,
.contact__form input[type=tel]:hover,
.contact__form input[type=number]:hover,
.contact__form textarea:hover {
  background-color: #e8dce9;
}
.contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=tel],
.contact__form input[type=number] {
  display: block;
  width: 100%;
}
.contact__form textarea {
  width: 100%;
}
.contact__form input:focus,
.contact__form textarea:focus {
  border: 1px solid #000;
}
.contact__form textarea {
  min-height: 300px;
}
.checkbox {
  text-align: center;
  line-height: 1.5;
}
.checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.checkbox input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 2em;
  font-weight: 500;
  font-size: 1.4rem;
  cursor: pointer;
}
@media screen and (min-width: 768px),
print {
  .checkbox input[type=checkbox] + span {
    font-size: 1.6rem;
  }
}
.checkbox input[type=checkbox] + span::before {
  position: absolute;
  top: .2em;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 1em;
  border: 1px solid #707070;
  border-radius: .2em;
  content: "";
}
.checkbox input[type=checkbox] + span::after {
  position: absolute;
  top: .4em;
  left: .4em;
  z-index: 1;
  width: 8px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  opacity: 0;
  transition: all .3s;
  transform: rotate(45deg);
}
.checkbox input[type=checkbox]:focus + span::before {
  border: 1px solid #000;
}
.checkbox input[type=checkbox]:checked + span::before {
  border: none;
  background: #2d2d2d;
}
.checkbox input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.required {
  margin-left: .8em;
  padding: .3em 1em .4em 1.4em;
  border-radius: 3px;
  background-color: #e67eab;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  letter-spacing: .5em;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px),
print {
  .required {
    font-size: 1.4rem;
  }
}
.scroll__cap {
  margin-top: 2em;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .scroll__cap {
    font-size: 1.6rem;
  }
}
.scroll__outer {
  padding: .5em;
  border: 1px solid #707070;
  border-radius: 10px;
}
.scroll__box {
  overflow-y: auto;
  height: 300px;
  padding: .5em;
}
@media screen and (min-width: 768px),
print {
  .scroll__box {
    padding: 1em;
  }
}
.contact__submit {
  margin-top: 3em;
  text-align: center;
}
.contact__submit .link__btn {
  min-width: 260px;
  margin: .4em;
}
.c-privacy__lead {
  margin-bottom: 2em;
  font-size: 1.4rem;
  line-height: 2;
}
.c-privacy__unit {
  margin-bottom: 2em;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px),
print {
  .c-privacy__unit {
    margin-bottom: 3em;
  }
}
.c-privacy__ttl {
  margin-bottom: .8em;
  font-weight: 400;
  font-size: 1.4rem;
}
.c-privacy__text ol.list__num {
  margin-bottom: 1em;
  list-style: none;
  counter-reset: num;
}
@media screen and (min-width: 768px),
print {
  .c-privacy__text ol.list__num {
    margin-left: 1.5em;
  }
}
.c-privacy__text ol.list__num > li {
  position: relative;
  margin-bottom: .3em;
  padding-left: 1em;
  counter-increment: num;
}
.c-privacy__text ol.list__num > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: counter(num) ".";
}
.c-privacy__text ol.list__num > li > ol {
  margin-bottom: .8em;
  list-style: none;
  counter-reset: num;
}
@media screen and (min-width: 768px),
print {
  .c-privacy__text ol.list__num > li > ol {
    margin-top: 1em;
    margin-bottom: 1.5em;
  }
}
.c-privacy__text ol.list__num > li > ol > li {
  position: relative;
  padding: .3em 0 .3em 2.5em;
  border-bottom: 1px dotted #b4b4b4;
  counter-increment: num;
}
.c-privacy__text ol.list__num > li > ol > li::before {
  position: absolute;
  top: .4em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "（" counter(num) "）";
}
.c-privacy__text ol.list__num > li > ol > li > ol {
  margin-left: 1.5em;
}
.c-privacy__text > p {
  margin-bottom: 1em;
}
/* privacy page
=================================================================== */
.privacy__lead {
  margin-bottom: 2em;
  line-height: 2;
}
@media screen and (min-width: 768px),
print {
  .privacy__lead {
    margin-bottom: 5em;
  }
}
.privacy__unit {
  margin-bottom: 2em;
  line-height: 2;
}
@media screen and (min-width: 768px),
print {
  .privacy__unit {
    margin-bottom: 3em;
  }
}
.privacy__ttl {
  margin-bottom: .8em;
  font-weight: 400;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .privacy__ttl {
    font-size: 2.2rem;
  }
}
.privacy__text ol.list__num {
  margin-bottom: 1em;
  list-style: none;
  counter-reset: num;
}
@media screen and (min-width: 768px),
print {
  .privacy__text ol.list__num {
    margin-left: 1.5em;
  }
}
.privacy__text ol.list__num > li {
  position: relative;
  margin-bottom: .3em;
  padding-left: 1em;
  counter-increment: num;
}
.privacy__text ol.list__num > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: counter(num) ".";
}
.privacy__text ol.list__num > li > ol {
  margin-bottom: .8em;
  list-style: none;
  counter-reset: num;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px),
print {
  .privacy__text ol.list__num > li > ol {
    margin-top: 1em;
    margin-bottom: 1.5em;
    font-size: 1.6rem;
  }
}
.privacy__text ol.list__num > li > ol > li {
  position: relative;
  padding: .3em 0 .3em 2.5em;
  border-bottom: 1px dotted #b4b4b4;
  counter-increment: num;
}
.privacy__text ol.list__num > li > ol > li::before {
  position: absolute;
  top: .4em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "（" counter(num) "）";
}
.privacy__text ol.list__num > li > ol > li > ol {
  margin-left: 1.5em;
}
.privacy__text > p {
  margin-bottom: 1em;
}
/* footer
=================================================================== */
.footer__wrap {
  position: relative;
  z-index: 1;
  padding: 4em 0;
  border-top: 1px solid #e1ddd9;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px),
print {
  .footer__wrap {
    padding: 6em 1em;
  }
}
@media screen and (min-width: 1200px),
print {
  .footer__wrap {
    padding: 9em 1em;
  }
}
.footer__contact {
  margin-right: 1em;
  margin-left: 1em;
}
@media screen and (min-width: 768px),
print {
  .footer__contact {
    margin-inline: auto;
    text-align: center;
  }
}
.footer__contactText {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px),
print {
  .footer__contactText {
    font-size: 2rem;
  }
}
.footer__access {
  margin-top: 4em;
  margin-right: 1em;
  margin-left: 1em;
}
@media screen and (min-width: 768px),
print {
  .footer__access {
    margin-top: 8em;
    margin-inline: auto;
    text-align: center;
  }
}
.footer__access > h2.ttl__primary {
  margin-bottom: 1em;
}
.map {
  margin-top: 1em;
}
.map > iframe {
  width: 100%;
  height: auto;
  border: 0;
  aspect-ratio: 375/400;
}
@media screen and (min-width: 1200px),
print {
  .map > iframe {
    aspect-ratio: 16/9;
  }
}
.footer {
  padding: 3em 0;
  background-color: #6ab6a6;
  color: #fff;
  text-align: center;
  opacity: 1;
  transition: opacity .2s;
}
@media screen and (min-width: 768px),
print {
  .footer {
    padding: 6em 0 4em 0;
    transition: opacity .4s;
  }
}
.footer.js-intro {
  opacity: 0;
  transition: opacity 0s;
}
.footer__logo {
  font-weight: 400;
  font-size: 3.1rem;
  font-family: "Playfair Display", serif;
}
@media screen and (min-width: 768px),
print {
  .footer__logo {
    font-size: 3.5rem;
  }
}
.footer__add {
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px),
print {
  .footer__add {
    margin-bottom: 0;
    font-size: 2rem;
  }
}
.footer__menu {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2em;
  list-style: none;
}
@media screen and (min-width: 768px),
print {
  .footer__menu {
    display: flex;
  }
}
.footer__menuItem {
  position: relative;
  font-size: 2rem;
}
.footer__menuItem::after {
  content: "│";
}
.footer__menuItem:last-child::after {
  content: "";
}
.footer__menuItem > a {
  position: relative;
  display: inline-block;
  margin: 0 1em;
  color: #fff;
  text-decoration: none;
}
.footer__menuItem > a::after {
  position: absolute;
  bottom: -.5em;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  content: "";
  transition: width .3s;
  transform: translateX(-50%);
  transform-origin: center top;
}
.footer__menuItem > a:hover::after {
  width: 50%;
}
.footer__menuSub {
  display: none;
  margin-top: 2em;
  margin-bottom: 3em;
}
@media screen and (min-width: 768px),
print {
  .footer__menuSub {
    display: block;
  }
}
.footer__menuSub > a {
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
}
.footer__menuSub > a:hover {
  opacity: .6;
}
.footer__copy {
  margin-top: 4em;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px),
print {
  .footer__copy {
    margin-top: 8em;
  }
}
.footer__pagetop {
  position: fixed;
  right: 0;
  bottom: -5em;
  z-index: 1;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: #6ab6a6;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .5s;
}
.footer__pagetop::after {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.footer__pagetop:hover {
  background-color: #333;
}
.footer__pagetop.is__pagetop {
  bottom: 0;
}
/* parts
=================================================================== */
/* wrap */
.wrap {
  padding: 4em 1em;
}
@media screen and (min-width: 768px),
print {
  .wrap {
    padding: 6em 1em;
  }
}
@media screen and (min-width: 1200px),
print {
  .wrap {
    padding: 9em 1em;
  }
}
.wrap__inner {
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-right);
  overflow-wrap: anywhere;
}
@media screen and (min-width: 768px),
print {
  .wrap__inner {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px),
print {
  .wrap__inner.large {
    max-width: 1450px;
  }
}
@media screen and (min-width: 768px),
print {
  .wrap__inner.small {
    max-width: 650px;
  }
}
/* flex */
.flex {
  display: flex;
  flex-wrap: wrap;
}
/* bg */
.bg--co01 {
  background-color: #f9f6f2;
}
/* text */
.align--resp {
  text-align: left;
}
@media screen and (min-width: 768px),
print {
  .align--resp {
    text-align: center;
  }
}
/* ttl */
.ttl__primary {
  margin-bottom: 2em;
  text-align: center;
  letter-spacing: .05em;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px),
print {
  .ttl__primary {
    font-size: 3.4rem;
  }
}
.ttl__primary > em {
  display: block;
  color: #c97a9c;
  letter-spacing: 0;
  font-style: normal;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px),
print {
  .ttl__primary > em {
    font-size: 1.6rem;
  }
}
/* list */
.list__dotto {
  margin-bottom: 1em;
  list-style: none;
}
.list__dotto > li {
  position: relative;
  padding-left: 1em;
}
.list__dotto > li:last-child {
  margin-bottom: 0;
}
.list__dotto > li::before {
  position: absolute;
  top: 7px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #2d2d2d;
  content: "";
}
/* link */
.link__unit {
  margin-top: 2em;
  text-align: center;
}
@media screen and (min-width: 768px),
print {
  .link__unit {
    margin-top: 4em;
  }
}
.link__btn {
  display: inline-block;
  min-width: 220px;
  padding: 1em;
  border-radius: 5px;
  background-color: #6ab6a6;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: .1em;
  font-size: 1.6rem;
  line-height: 1.8;
  cursor: pointer;
  transition: all .4s;
}
@media screen and (min-width: 768px),
print {
  .link__btn {
    min-width: 320px;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px),
print {
  .link__btn:hover {
    background-color: #2d2d2d;
    color: #fff;
  }
}
.link__btn > img {
  margin-right: 1.2em;
  margin-bottom: .2em;
  vertical-align: middle;
}
.link__btn.small {
  padding: .4em 1em;
}
/* scrollAnimation */
.scroll-wrap {
  opacity: 0;
  transform: translateY(30px);
}
.scroll-wrap.active {
  opacity: 1;
  transition: transform 1s ease, opacity 1s ease;
  transform: translateY(0%);
}
/* utility
=================================================================== */
/* align */
.align--left {
  text-align: left;
}
.align--center {
  text-align: center;
}
.align--right {
  text-align: right;
}
/* margin */
.mt--xl {
  margin-top: 7rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--xl {
    margin-top: 7rem;
  }
}
.mt--lg {
  margin-top: 5rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--lg {
    margin-top: 5rem;
  }
}
.mt--md {
  margin-top: 3rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--md {
    margin-top: 3rem;
  }
}
.mt--sm {
  margin-top: 2rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--sm {
    margin-top: 2rem;
  }
}
.mt--xs {
  margin-top: 1rem;
}
@media screen and (min-width: 1200px),
print {
  .mt--xs {
    margin-top: 1rem;
  }
}
/* display */
@media screen and (min-width: 768px) {
  .display--sp {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .display--tab {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .display--pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .none--sp {
    display: none !important;
  }
}