@charset "UTF-8";
body {
  animation: fadeIn 1s ease 0s 1 normal;
  -webkit-animation: fadeIn 1s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anime1 {
  animation: anime1 2.5s infinite;
  opacity: 1;
}

@keyframes anime1 {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(5deg, 5deg);
  }
  10% {
    transform: skew(-4deg, -4deg);
  }
  15% {
    transform: skew(3deg, 3deg);
  }
  20% {
    transform: skew(-2deg, -2deg);
  }
  25% {
    transform: skew(1deg, 1deg);
  }
  30% {
    transform: skew(-0.6deg, -0.6deg);
  }
  35% {
    transform: skew(0.3deg, 0.3deg);
  }
}
html,
body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-text-size-adjust: 100%;
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.8;
  color: #6e6464;
  background: #fbfaf5;
}

a {
  color: #6e6464;
  text-decoration: none;
  transition-duration: 0.3s;
}

a:hover {
  opacity: 0.7;
  transition-duration: 0.3s;
}

.ttle {
  font-family: kiro, sans-serif;
  font-style: normal;
}

.ttlj {
  font-family: ab-clip-medium, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

img {
  vertical-align: middle;
}

footer {
  background: #6e6464;
  color: #fff;
  padding: 10% 0 20% 0;
}
footer #name {
  /*
  	dl{text-align: center;margin-bottom: 10px;
  	dt{font-size: 24px;font-weight: 700;}
  	dd{font-size: 14px;font-weight: 400;}
  }*/
}
footer #name .footerlogo {
  text-align: center;
  margin-bottom: 20px;
}
footer #name .footerlogo img {
  width: 60%;
}
footer #name p {
  text-align: center;
  line-height: 1.8;
  margin-bottom: 3%;
}
footer .copy {
  padding: 10% 0;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  display: none;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}

.accordion-area li {
  margin: 5px 0;
}

/*アコーディオンタイトル*/
.title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.title img {
  width: 100%;
}

.box {
  margin: 0 auto;
  padding: 10% 5% 0 5%;
}

/*アイコンの＋と×*/
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}

.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  /*はじめは非表示*/
}

/* 全体レイアウト */
.wrapper {
  width: 85%;
  margin: 0 auto;
}

.ttlArea {
  padding-top: 15%;
}

.read-txt {
  margin-bottom: 10%;
}

.mainttl {
  width: 100%;
  margin: 0 auto;
}

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 1100;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  width: 70%;
  background: white;
  padding: 8% 5%;
  border-radius: 10px;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.modal-content .js-modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 45px;
  height: 40px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  background: #e1b4be;
  border-radius: 50px;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 3px;
  text-decoration: none;
}

.modal-content h3.re {
  font-size: 5.6vw;
  color: #e1b4be;
  text-align: center;
  margin-bottom: 10px;
}
.modal-content h3 {
  font-size: 4vw;
  color: #e1b4be;
  line-height: 1.5;
  margin-bottom: 3%;
}
.modal-content p a {
  color: #e1b4be;
  text-decoration: underline;
}
.modal-content ul {
  width: 100%;
}
.modal-content li {
  list-style: none;
  width: 100%;
  margin-bottom: 3%;
}
.modal-content li span {
  font-size: 3.6vw;
}
.modal-content li .reserva {
  display: block;
  background: #e1b4be;
  color: #fff;
  text-align: center;
  padding: 10% 0;
  font-size: 4.5vw;
  font-weight: 500;
  border-radius: 6px;
}
.modal-content li .reserva:hover {
  opacity: 0.7;
}
.modal-content li p {
  display: block;
  background: #999;
  color: #fff;
  text-align: center;
  padding: 5% 10%;
  border-radius: 6px;
}
.modal-content li p span {
  font-size: 3.6vw;
}

#contactBtn {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 900;
}
#contactBtn ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ead0d7;
}
#contactBtn ul li {
  width: 33.3333333333%;
  text-align: center;
  font-size: 4vw;
  font-weight: 500;
  position: relative;
  display: inline-block;
  background: #e1b4be;
}
#contactBtn ul li a {
  display: block;
  padding: 18% 0;
  color: #fff;
}
#contactBtn ul li a:hover {
  opacity: 1;
}
#contactBtn ul li:nth-child(1)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50%;
  background-color: #ead0d7;
  position: absolute;
  top: 25%;
  right: 0px;
}
#contactBtn ul li:nth-child(2)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #ead0d7;
  position: absolute;
  top: 25%;
  right: 0px;
}

.check-list {
  font-weight: 500;
  position: relative;
}
.check-list .check-list-point {
  position: absolute;
  top: -2%;
  left: 5%;
  width: 30%;
}
.check-list .check-list-point img {
  width: 100%;
}
.check-list .round-cap {
  background-color: #625353;
  border-radius: 5px;
  content: "";
  display: block;
  height: 2px;
  margin: 8% 0;
}
.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list li:before {
  content: "";
  position: absolute;
  top: 0.1 0.85em;
  left: 8px;
  transform: rotate(50deg);
  width: 4px;
  height: 12px;
  border-right: 3px solid #e1b4be;
  border-bottom: 3px solid #e1b4be;
  z-index: 2;
}
.check-list li:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #625353;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
}
.check-list .round-cap02 {
  background-color: #625353;
  border-radius: 5px;
  content: "";
  display: block;
  height: 2px;
  margin: 8% 0;
}
.check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list li:before {
  content: "";
  position: absolute;
  top: 0.1 0.85em;
  left: 8px;
  transform: rotate(50deg);
  width: 4px;
  height: 12px;
  border-right: 3px solid #e1b4be;
  border-bottom: 3px solid #e1b4be;
  z-index: 2;
}
.check-list li:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #625353;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
}

.check-list2 {
  font-weight: 500;
  position: relative;
}
.check-list2 .check-list-point {
  position: absolute;
  top: -2%;
  left: 5%;
  width: 30%;
}
.check-list2 .check-list-point img {
  width: 100%;
}
.check-list2 .round-cap {
  background-color: #625353;
  border-radius: 5px;
  content: "";
  display: block;
  height: 2px;
  margin: 8% 0;
}
.check-list2 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list2 li:before {
  content: "";
  position: absolute;
  top: 0.1 0.85em;
  left: 8px;
  transform: rotate(50deg);
  width: 4px;
  height: 12px;
  border-right: 3px solid #99c393;
  border-bottom: 3px solid #99c393;
  z-index: 2;
}
.check-list2 li:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #625353;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
}
.check-list2 .round-cap02 {
  background-color: #625353;
  border-radius: 5px;
  content: "";
  display: block;
  height: 2px;
  margin: 8% 0;
}
.check-list2 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list2 li:before {
  content: "";
  position: absolute;
  top: 0.1 0.85em;
  left: 8px;
  transform: rotate(50deg);
  width: 4px;
  height: 12px;
  border-right: 3px solid #99c393;
  border-bottom: 3px solid #99c393;
  z-index: 2;
}
.check-list2 li:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #625353;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
}

.check-list3 {
  font-weight: 500;
  position: relative;
}
.check-list3 .check-list-point {
  position: absolute;
  top: -2%;
  left: 5%;
  width: 30%;
}
.check-list3 .check-list-point img {
  width: 100%;
}
.check-list3 .round-cap {
  background-color: #625353;
  border-radius: 5px;
  content: "";
  display: block;
  height: 2px;
  margin: 8% 0;
}
.check-list3 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list3 li:before {
  content: "";
  position: absolute;
  top: 0.1 0.85em;
  left: 8px;
  transform: rotate(50deg);
  width: 4px;
  height: 12px;
  border-right: 3px solid #87b9cd;
  border-bottom: 3px solid #87b9cd;
  z-index: 2;
}
.check-list3 li:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #625353;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
}
.check-list3 .round-cap02 {
  background-color: #625353;
  border-radius: 5px;
  content: "";
  display: block;
  height: 2px;
  margin: 8% 0;
}
.check-list3 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}
.check-list3 li:before {
  content: "";
  position: absolute;
  top: 0.1 0.85em;
  left: 8px;
  transform: rotate(50deg);
  width: 4px;
  height: 12px;
  border-right: 3px solid #87b9cd;
  border-bottom: 3px solid #87b9cd;
  z-index: 2;
}
.check-list3 li:after {
  content: "";
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #625353;
  border-radius: 3px;
  background: #fff;
  z-index: 1;
}

.plan-ttlArea {
  margin: 0 auto;
  padding: 10% 0;
  text-align: justify;
}
.plan-ttlArea img {
  width: 100%;
}
.plan-ttlArea .plan-txt {
  margin-top: 5%;
}

.program {
  margin: 20% 0;
}
.program .round {
  text-align: center;
  font-size: 16px;
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  border-radius: 50px;
  color: #fff;
  padding: 2% 0;
  background: #e1b4be;
}
.program .round02 {
  text-align: center;
  font-size: 16px;
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  border-radius: 50px;
  color: #fff;
  padding: 2% 0;
  background: #99c393;
}
.program .round03 {
  text-align: center;
  font-size: 16px;
  font-family: zen-kaku-gothic-antique, sans-serif;
  font-weight: 500;
  letter-spacing: 5px;
  border-radius: 50px;
  color: #fff;
  padding: 2% 0;
  background: #87b9cd;
}
.program .careprogram {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.program .careprogram-item {
  width: 46%;
  margin-top: 8%;
  text-align: center;
}
.program .careprogram-item p {
  font-size: 12px;
}
.program .careprogram-item img {
  width: 100%;
  display: block;
  border-radius: 10px;
  margin-top: 5%;
}

.linkBtnb {
  margin: 15% 0;
}
.linkBtnb a {
  display: block;
  padding: 5% 0%;
  border-radius: 50px;
  border: 1px solid #a47864;
  color: #fff;
  font-size: 4.6vw;
  text-align: center;
  font-weight: 600;
  background: #a47864;
}

#toggle {
  position: fixed;
  padding-top: 20px;
  font-family: kiro, sans-serif;
  font-style: normal;
  letter-spacing: 2px;
  color: #b4a0c8;
  text-align: center;
  width: 90px;
  height: 90px;
  top: 10px;
  right: 0px;
  background: url("../img/bg_menu.png") no-repeat center top;
  background-size: 100%;
}

#toggle-box {
  position: relative;
  width: 28px;
  height: 24px;
  cursor: pointer;
  margin-left: 30px;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #b4a0c8;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
}

#toggle-box > span:nth-child(1) {
  top: 25%;
  transform: translatey(-30%);
}

#toggle-box > span:nth-child(2) {
  top: 25%;
  transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  bottom: 25%;
}

#toggle {
  z-index: 1000;
}

#nav-content {
  z-index: 900;
  overflow: auto;
  height: 100%;
  background: #b4a0c8;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#nav-content a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.6s ease;
}
#nav-content a:hover {
  opacity: 0.7;
}

.is-open {
  overflow: hidden;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

#menu {
  position: fixed;
  z-index: 990;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  background: rgba(255, 255, 255, 0.7);
  animation: fadeIn 0.5s ease 0s 1 normal;
}

.otherttl {
  position: relative;
  width: 100%;
  padding: 20% 0 10% 0;
  text-align: center;
  margin-bottom: 10%;
}
.otherttl p {
  font-family: kiro, sans-serif;
  font-style: normal;
  line-height: 1;
  letter-spacing: 5px;
  font-weight: 500;
  margin-bottom: 3%;
  font-size: 3.6vw;
  color: #e1b4be;
}
.otherttl h2 {
  font-family: ab-clip-medium, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7vw;
  color: #a47864;
  letter-spacing: 2px;
  line-height: 1.5;
}
.otherttl .li1 {
  position: absolute;
  left: 5%;
  top: -5%;
  width: 35%;
  animation: fuwafuwa1 6s infinite ease-in-out 0.8s alternate;
}
.otherttl .li2 {
  position: absolute;
  right: 10%;
  top: 45%;
  width: 15%;
  animation: fuwafuwa2 6s infinite ease-in-out 0.8s alternate;
}
.otherttl .li3 {
  position: absolute;
  left: 18%;
  bottom: 0%;
  width: 12%;
  animation: fuwafuwa1 6s infinite ease-in-out 0.8s alternate;
}

.kyotoBtn {
  display: block;
  background: #e1b4be;
  color: #fff;
  text-align: center;
  padding: 10% 0;
  font-size: 4vw;
  font-weight: 500;
  border-radius: 6px;
}

.osakaBtn {
  display: block;
  background: #b4a0c8;
  color: #fff;
  text-align: center;
  padding: 10% 0;
  font-size: 4vw;
  font-weight: 500;
  border-radius: 6px;
}

.yokohamaBtn {
  pointer-events: none;
  display: block;
  background: #D1D1D1;
  color: #fff;
  text-align: center;
  padding: 10% 0;
  font-size: 4vw;
  font-weight: 500;
  border-radius: 6px;
}/*# sourceMappingURL=common_sp.css.map */