@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: #121212;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media screen and (max-width: 767px) {
  body.wrap {
    overflow: hidden;
  }
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  #screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 200;
  }
}
@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
.guidance {
  left: -999px;
  position: absolute;
  width: 990px;
}

img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  opacity: 0.7;
  text-decoration: none !important;
}

.NotoSans {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.NotoSerif {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.container {
  width: 100%;
  max-width: 1064px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 30px;
  }
}

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

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

/* ▼ タイトル
--------------------------------------- */
h1.title {
  padding: 20px 10px;
  margin-bottom: 30px;
  color: #fff;
  overflow: hidden;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  height: 100px;
  width: 100%;
  padding: 0 20px 0 200px;
  color: #7d6053;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  header {
    background: none;
    padding: 0 20px 0 100px;
    height: 60px;
    overflow: visible;
  }
}
header .header_inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  header .header_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 60px;
    padding-left: 100px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
  }
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  border-radius: 0 0 90px 0;
  padding-right: 10px;
  width: 200px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  header .logo {
    border-radius: 0 0 50px 0;
    width: 100px;
    height: 100px;
  }
  header .logo img {
    width: 60px;
  }
}
header #site_title {
  margin-right: 20px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  header #site_title {
    font-size: 13px;
    margin: 0;
  }
}
header a.reserve_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/icon_mail.png) no-repeat left 25px center/26px, #e84baf;
  border-radius: 6px;
  width: 180px;
  height: 60px;
  padding-left: 70px;
  margin-left: 60px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}
header a.reserve_btn em {
  color: #fff04d;
  font-size: 18px;
  font-style: normal;
}
@media screen and (max-width: 1000px) {
  header a.reserve_btn {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  header a.reserve_btn {
    background: #e84baf;
    width: 90px;
    height: 40px;
    padding: 0;
    margin: 0;
    font-size: 10px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 55px;
    z-index: 2000;
  }
  header a.reserve_btn em {
    font-size: 13px;
    text-align: center;
  }
}

.menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu {
    display: block;
    width: 50px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2000;
  }
  .menu .icon {
    display: block;
    width: 25px;
    height: 2px;
    border-top: 2px solid #7d6053;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .menu .icon::before, .menu .icon::after {
    content: "";
    width: 25px;
    border-top: 2px solid #7d6053;
    position: absolute;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    right: 0;
  }
  .menu .icon::before {
    top: -11px;
  }
  .menu .icon::after {
    bottom: -9px;
  }
  .menu .icon.active {
    border-color: transparent;
  }
  .menu .icon.active::before {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    top: -2px;
    right: 0;
  }
  .menu .icon.active::after {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    bottom: 0;
    right: 0;
  }
}

/* グローバルナビゲーション */
#gnav {
  margin-left: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #gnav {
    display: block !important;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    float: none;
    width: 100%;
    max-height: 100vh;
    padding-top: 60px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow: auto;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  #gnav.open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
#gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #gnav ul {
    background: #fff;
    display: block;
    padding: 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  #gnav ul > li {
    width: 100% !important;
    max-width: 100% !important;
    height: auto;
    text-indent: 0;
  }
}
#gnav ul > li a {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #gnav ul > li a {
    height: 50px !important;
    background-size: 10px 10px !important;
    border-bottom: 1px solid #ccc;
    padding: 0 15px;
    line-height: 50px;
    font-weight: bold;
  }
}
#gnav ul > li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  #gnav ul > li a:hover {
    text-decoration: none;
    opacity: 1;
  }
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 100px auto 0;
  clear: both;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #main {
    margin-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .menu_fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

.area {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .area {
    padding: 50px 0 45px;
  }
}

.sub_ttl {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .sub_ttl {
    margin-bottom: 35px;
    font-size: 20px;
  }
}

.sect_ttl {
  background: url(../img/ttl_bg.png) no-repeat center/100%;
  padding: 5% 0;
  margin-bottom: 35px;
  text-align: center;
}
.sect_ttl img {
  width: 13.1%;
}
@media screen and (max-width: 767px) {
  .sect_ttl {
    background: url(../img/ttl_bg_sp.png) no-repeat center/100%;
    padding: 12% 0;
    margin: 0 -15px;
    margin-bottom: 15px;
  }
  .sect_ttl img {
    width: 26%;
  }
}

.read {
  line-height: 1.88;
}

.txt_center {
  text-align: center;
}

.btn {
  width: min(100%, 400px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn {
    width: min(100%, 315px);
  }
}
.btn a {
  background: #e84baf;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  -webkit-box-shadow: 2px 0 6px rgba(120, 96, 124, 0.3);
          box-shadow: 2px 0 6px rgba(120, 96, 124, 0.3);
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 20px;
    height: 70px;
  }
}
.btn a::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_mail.png) no-repeat center/contain;
  width: 26px;
  height: 18px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 45px;
}
@media screen and (max-width: 767px) {
  .btn a::before {
    left: 30px;
  }
}
.btn.line a {
  background: #06c755;
}
.btn.line a::before {
  background: url(../img/icon_line.png) no-repeat center/contain;
  width: 50px;
  height: 50px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .btn.line a::before {
    width: 40px;
    height: 40px;
    left: 25px;
  }
}

.btn_area {
  background: url(../img/pattern_bg.png) repeat center/100px, -webkit-gradient(linear, left top, right top, from(#fce9ff), to(#e9c9f8));
  background: url(../img/pattern_bg.png) repeat center/100px, linear-gradient(90deg, #fce9ff 0%, #e9c9f8 100%);
  padding: 60px 20px;
}
@media screen and (max-width: 767px) {
  .btn_area {
    background: url(../img/pattern_bg.png) repeat center/100px, -webkit-gradient(linear, left top, right top, from(rgb(252, 233, 255)), to(rgb(233, 201, 248)));
    background: url(../img/pattern_bg.png) repeat center/100px, linear-gradient(90deg, rgb(252, 233, 255) 0%, rgb(233, 201, 248) 100%);
  }
}
.btn_area .btn {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .btn_area .btn {
    margin-bottom: 15px;
  }
}
.btn_area .btn a {
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn_area .btn a {
    font-size: 13px;
  }
}
.btn_area .btn a::before {
  position: static;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media screen and (max-width: 767px) {
  .btn_area .btn a::before {
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 30px;
  }
}
.btn_area .btn a::after {
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .btn_area .btn a::after {
    right: 20px;
  }
}
.btn_area .btn em {
  color: #fff04d;
  font-size: 24px;
  font-style: normal;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .btn_area .btn em {
    font-size: 20px;
  }
}
.btn_area p {
  text-align: center;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .btn_area {
    padding: 38px 25px;
  }
}

#mainVisual {
  padding-bottom: 3px;
  position: relative;
}
#mainVisual::before {
  content: "";
  display: block;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(125, 96, 83)), color-stop(50%, rgb(228, 210, 141)), to(rgb(125, 96, 83)));
  background-image: linear-gradient(90deg, rgb(125, 96, 83), rgb(228, 210, 141) 50%, rgb(125, 96, 83));
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}

#intro {
  background: url(../img/pattern_bg.png) repeat center/100px, -webkit-gradient(linear, left top, right top, from(rgb(252, 233, 255)), to(rgb(233, 201, 248)));
  background: url(../img/pattern_bg.png) repeat center/100px, linear-gradient(90deg, rgb(252, 233, 255) 0%, rgb(233, 201, 248) 100%);
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  #intro {
    background: url(../img/pattern_bg.png) repeat center/100px, -webkit-gradient(linear, left top, right top, from(rgb(252, 233, 255)), to(rgb(233, 201, 248)));
    background: url(../img/pattern_bg.png) repeat center/100px, linear-gradient(90deg, rgb(252, 233, 255) 0%, rgb(233, 201, 248) 100%);
    padding: 124px 0 15px;
  }
}
#intro .sub_ttl {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 500;
}
#intro .sub_ttl span {
  display: block;
  margin-bottom: 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  #intro .sub_ttl {
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
  }
  #intro .sub_ttl span {
    margin-bottom: 10px;
    text-align: center;
  }
}
#intro .container {
  position: relative;
}
#intro .list {
  display: grid;
  grid-template-columns: repeat(3, 140px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 35px;
  position: absolute;
  top: -120px;
  right: 0;
}
#intro .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/list_bg.png) no-repeat center/100%;
  width: 100%;
  aspect-ratio: 1/1;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #intro .list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 15px;
    width: min(100%, 400px);
    padding: 0 15px;
    font-size: 13px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    left: 50%;
    top: -139px;
  }
}
#intro .flex {
  width: min(100%, 1120px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 20px;
  margin-left: max(50% - 512px, 20px);
}
#intro .flex .img {
  width: 38%;
}
@media screen and (max-width: 767px) {
  #intro .flex {
    display: block;
    padding: 0 30px;
    margin: 0;
  }
  #intro .flex .img {
    width: 65%;
  }
}

.grid {
  display: grid;
}
.grid.col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .grid.col2 {
    grid-template-columns: 1fr;
  }
}
.grid.col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .grid.col3 {
    grid-template-columns: 1fr;
  }
}

#menu {
  background: #fdf3ff;
  position: relative;
}
#menu::before, #menu::after {
  content: "";
  position: absolute;
}
#menu::before {
  background: url(../img/bg1.png) no-repeat center/contain;
  width: 184px;
  height: 414px;
  top: -100px;
  right: 0;
}
@media screen and (max-width: 767px) {
  #menu::before {
    width: 95px;
    height: 212px;
    top: -180px;
  }
}
#menu::after {
  background: url(../img/bg2.png) no-repeat center/contain;
  width: 199px;
  height: 374px;
  left: 0;
  bottom: -99px;
}
@media screen and (max-width: 767px) {
  #menu::after {
    display: none;
  }
}
#menu .grid.col2 {
  gap: 90px 82px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  #menu .grid.col2 {
    gap: 45px 0;
    margin-bottom: 45px;
  }
}
#menu .grid.col3 {
  gap: 90px 80px;
}
@media screen and (max-width: 767px) {
  #menu .grid.col3 {
    gap: 45px 0;
  }
}
#menu .grid .img {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #menu .grid .img {
    margin-bottom: 18px;
  }
}
#menu .grid .cat {
  background: #842392;
  display: inline-block;
  width: 80px;
  padding: 0.25em 0 0.3em;
  margin-bottom: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}
#menu .grid .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 20px;
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
}
#menu .grid .ttl .cat {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #menu .grid .ttl {
    display: block;
    margin-bottom: 10px;
  }
  #menu .grid .ttl .cat {
    display: block;
    margin-bottom: 15px;
  }
}
#menu .grid .txt {
  line-height: 1.88;
}

#school {
  background: #262423;
  color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  #school .sect_ttl {
    margin-bottom: 30px;
  }
}
#school h4 {
  margin: 70px 0 30px;
  font-size: 30px;
  font-weight: normal;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  #school h4 {
    margin: 40px 0 25px;
    font-size: 20px;
  }
}
#school h4::before, #school h4::after {
  content: "";
  background: url(../img/pattern_bg.png) repeat center/100px, #ffa322;
  width: calc(50% - 150px);
  height: 6px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
@media screen and (max-width: 767px) {
  #school h4::before, #school h4::after {
    width: calc(50% - 80px);
  }
}
#school h4::before {
  left: 0;
}
#school h4::after {
  right: 0;
}
#school .accordion {
  border-bottom: 1px solid #b864c5;
  margin-bottom: 60px;
  color: #121212;
}
@media screen and (max-width: 767px) {
  #school .accordion {
    margin: 0 -15px 35px;
  }
}
#school .accordion dt, #school .accordion dd {
  padding: 25px 30px;
}
#school .accordion dt {
  border: 1px solid #b864c5;
  border-bottom: none;
  background-color: #fff;
  background-image: url(../img/school_icon.png);
  background-repeat: no-repeat;
  background-position: left 30px center;
  background-size: 37px;
  padding-left: 85px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 767px) {
  #school .accordion dt {
    background-position: left 15px center;
    background-size: 36px;
    padding: 25px 35px 25px 60px;
  }
}
#school .accordion dt::after {
  content: "";
  width: 13px;
  height: 13px;
  border: 1px solid #b864c5;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  position: absolute;
  top: 50%;
  right: 30px;
}
@media screen and (max-width: 767px) {
  #school .accordion dt::after {
    right: 15px;
  }
}
#school .accordion dt.close::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  top: 55%;
}
#school .accordion dd {
  display: none;
  border-top: 1px solid #b864c5;
  background: #fcedff;
  line-height: 1.88;
}
@media screen and (max-width: 767px) {
  #school .accordion dd {
    padding: 15px;
  }
}
#school .notes_list {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #school .notes_list {
    margin-bottom: 35px;
  }
}
#school .notes_list li {
  text-indent: -1em;
  padding-left: 1em;
}
#school .grid {
  gap: 0 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #school .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 -30px 30px;
  }
}
@media screen and (max-width: 767px) {
  #school p.txt_center {
    font-size: 13px;
  }
}
#school .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #school .btn_list {
    display: block;
    margin: 0;
  }
}
#school .btn_list .btn {
  margin: 0;
}
@media screen and (max-width: 767px) {
  #school .btn_list .btn {
    margin: 20px auto 0;
  }
}
#school .btn_list .btn a {
  font-size: 18px;
}

#price {
  background: #fdf3ff;
  position: relative;
}
@media screen and (max-width: 767px) {
  #price .container {
    padding: 0 15px;
  }
  #price .container .sect_ttl {
    margin-left: auto;
    margin-right: auto;
  }
}
#price::before, #price::after {
  content: "";
  position: absolute;
}
@media screen and (max-width: 767px) {
  #price::before, #price::after {
    display: none;
  }
}
#price::before {
  background: url(../img/bg1.png) no-repeat center/contain;
  width: 184px;
  height: 414px;
  top: 47px;
  right: 0;
}
#price::after {
  background: url(../img/bg2.png) no-repeat center/contain;
  width: 199px;
  height: 374px;
  left: 0;
  bottom: -99px;
}
#price .grid {
  grid-template-columns: 250px 1fr;
  gap: 30px 58px;
}
@media screen and (max-width: 767px) {
  #price .grid {
    grid-template-columns: 100%;
  }
}
#price .grid:not(:last-of-type) {
  margin-bottom: 78px;
}
@media screen and (max-width: 767px) {
  #price .grid:not(:last-of-type) {
    margin-bottom: 45px;
  }
}
#price .grid .img {
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  #price .grid .img {
    margin: 0;
    text-align: center;
  }
  #price .grid .img img {
    width: 127px;
  }
}
#price .grid h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #price .grid h3 {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
#price .grid h3 span {
  color: #842392;
}
#price .grid table {
  border: 1px solid #7d6053;
  border-right: none;
  border-bottom: none;
  width: 100%;
}
#price .grid table:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #price .grid table:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
#price .grid table th, #price .grid table td {
  width: 33.3333333333%;
  border-right: 1px solid #7d6053;
  border-bottom: 1px solid #7d6053;
  padding: 24px 30px;
}
@media screen and (max-width: 767px) {
  #price .grid table th, #price .grid table td {
    padding: 10px 13px;
  }
}
#price .grid table th {
  background: #fcedff;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #price .grid table th {
    font-size: 14px;
  }
}
#price .grid table th small {
  display: block;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  #price .grid table th small {
    font-size: 12px;
  }
}
#price .grid table td {
  background: #fff;
  text-align: right;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  #price .grid table td {
    font-size: 14px;
  }
}
#price .grid table td:nth-of-type(2) {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  #price .grid table td:nth-of-type(2) {
    font-size: 16px;
  }
}
#price .grid table td .cat {
  display: inline-block;
  background: #edd0fa;
  width: 62px;
  margin-right: 14px;
  color: #842392;
  font-size: 13px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #price .grid table td .cat {
    display: block;
    width: 50px;
    margin: 0 0 0 auto;
    font-size: 12px;
  }
}
#price .grid table td span:not(.cat) {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #price .grid table td span:not(.cat) {
    font-size: 14px;
  }
}
#price .grid table td small {
  font-size: 13px;
  margin-left: 0.5em;
}
@media screen and (max-width: 767px) {
  #price .grid table td small {
    display: block;
    font-size: 12px;
    text-align: right;
  }
}
#price .grid table + p {
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  #price .grid table + p {
    margin-top: 10px;
    font-size: 13px;
  }
}
#price .grid .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 28px;
  background: #fffdd6;
  border: 2px solid #e84baf;
  padding: 30px 40px 30px 120px;
  margin-top: 64px;
  position: relative;
}
@media screen and (max-width: 767px) {
  #price .grid .box {
    display: block;
    padding: 14px;
    margin-top: 50px;
  }
}
#price .grid .box .circle {
  background: -webkit-gradient(linear, left top, right top, from(rgb(210, 190, 131)), to(rgb(228, 210, 141)));
  background: linear-gradient(90deg, rgb(210, 190, 131) 0%, rgb(228, 210, 141) 100%);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90px;
  aspect-ratio: 1/1;
  color: #7d6053;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  position: absolute;
  top: -13px;
  left: 20px;
}
@media screen and (max-width: 767px) {
  #price .grid .box .circle {
    width: 60px;
    font-size: 13px;
    top: -12px;
    left: -10px;
  }
}
#price .grid .box p span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #fff04d));
  background: linear-gradient(transparent 70%, #fff04d 70%);
  padding: 0 0.2em;
  color: #e84baf;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #price .grid .box p {
    text-align: center;
    margin-bottom: 5px;
  }
  #price .grid .box p span {
    font-size: 20px;
  }
}
#price .grid .box .notes {
  margin: 0;
  font-size: 14px;
}
#price .grid .box .notes span {
  font-size: 13px;
  text-align: center;
}

#shop {
  position: relative;
  z-index: 1;
}
#shop::before {
  content: "";
  -webkit-clip-path: polygon(0 55%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 55%, 100% 0%, 100% 100%, 0% 100%);
  background: url(../img/pattern_bg.png) repeat center/100px, -webkit-gradient(linear, left top, right top, from(rgb(252, 233, 255)), to(rgb(233, 201, 248)));
  background: url(../img/pattern_bg.png) repeat center/100px, linear-gradient(90deg, rgb(252, 233, 255) 0%, rgb(233, 201, 248) 100%);
  width: 100%;
  height: 32%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #shop::before {
    -webkit-clip-path: polygon(0 32%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0 32%, 100% 0%, 100% 100%, 0% 100%);
    background: url(../img/pattern_bg.png) repeat center/100px, -webkit-gradient(linear, left top, right top, from(rgb(252, 233, 255)), to(rgb(233, 201, 248)));
    background: url(../img/pattern_bg.png) repeat center/100px, linear-gradient(90deg, rgb(252, 233, 255) 0%, rgb(233, 201, 248) 100%);
    height: 20%;
  }
}
#shop .sub_ttl {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #shop .sub_ttl {
    margin-bottom: 25px;
    font-size: 16px;
  }
}
#shop .grid {
  gap: 10px 1px;
  margin-bottom: 77px;
}
@media screen and (max-width: 767px) {
  #shop .grid {
    padding: 0 30px;
    margin-bottom: 43px;
  }
}
#shop .box {
  display: grid;
  grid-template-columns: 200px 1fr;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  gap: 0 40px;
  width: min(100%, 864px);
  padding: 45px 45px 35px;
  margin: 0 auto 73px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #shop .box {
    display: block;
    padding: 37px 20px 30px;
    margin: 0 -15px 30px;
    width: calc(100% + 30px);
  }
  #shop .box .img {
    width: 150px;
    margin: 0 auto 15px;
  }
  #shop .box .txt_wrap {
    text-align: center;
  }
}
#shop .box::before, #shop .box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#shop .box::before {
  background: #fcedff;
  top: 10px;
  left: 10px;
}
@media screen and (max-width: 767px) {
  #shop .box::before {
    top: 7px;
    left: 7px;
  }
}
#shop .box::after {
  border: 1px solid #842392;
}
#shop .box_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/box_ttl.png) no-repeat center/contain;
  width: 100%;
  height: 36px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  position: absolute;
  top: -17px;
  left: 0;
}
@media screen and (max-width: 767px) {
  #shop .box_ttl {
    height: 31.5px;
    font-size: 16px;
  }
}
#shop .box .name {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #shop .box .name {
    margin-bottom: 5px;
    font-size: 16px;
    text-align: center;
  }
}
#shop .box dl {
  display: grid;
  grid-template-columns: 135px 1fr;
  font-size: 14px;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  #shop .box dl {
    display: inline-block;
    line-height: 2;
  }
  #shop .box dl dd {
    padding-left: 1em;
  }
}
#shop table {
  border-top: 1px solid #d2be83;
  width: 100%;
  margin-bottom: 63px;
}
@media screen and (max-width: 767px) {
  #shop table {
    display: block;
    width: calc(100% + 30px);
    margin: 0 -15px 20px;
    letter-spacing: 0.05em;
  }
  #shop table tbody, #shop table tr, #shop table th, #shop table td {
    display: block;
    width: 100%;
  }
}
#shop table th, #shop table td {
  border-bottom: 1px solid #d2be83;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  #shop table th, #shop table td {
    padding: 10px 15px;
  }
}
#shop table th {
  font-weight: normal;
  width: 330px;
}
@media screen and (max-width: 767px) {
  #shop table th {
    width: 100%;
    border: none;
    padding: 15px 15px 0;
    font-weight: bold;
  }
}
#shop table td {
  line-height: 1.88;
}
@media screen and (max-width: 767px) {
  #shop table td {
    padding: 10px 15px 15px;
  }
  #shop table td p {
    font-size: 14px;
  }
}
#shop table .notes {
  font-size: 14px;
}
#shop table .notes span {
  color: #e84baf;
}
#shop table .reserved {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #shop table .reserved {
    margin-bottom: 10px;
  }
}
#shop table .reserved span {
  background: #edd0fa;
  display: inline-block;
  width: 122px;
  margin-right: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #shop table .reserved span {
    width: 125px;
    margin-right: 12px;
  }
}
#shop table .reserved a {
  color: #e84baf;
  text-decoration: underline;
  font-weight: 500;
}
#shop .map {
  width: 100%;
  aspect-ratio: 2.048/1;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  #shop .map {
    aspect-ratio: 1.575/1;
    margin-bottom: 27px;
  }
}
#shop .map iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
#shop .map + p {
  color: #7d6053;
  text-align: center;
  line-height: 2;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #shop .map + p {
    margin: 0 -15px;
  }
}
#shop .btn_area {
  padding-bottom: 0;
  background: none;
}
@media screen and (max-width: 767px) {
  #shop .btn_area {
    padding-top: 30px;
  }
}
#shop .btn_area .btn a {
  gap: 0 20px;
  font-size: 18px;
  font-weight: bold;
}
#shop .btn_area .btn a::after {
  display: none;
}
@media screen and (max-width: 767px) {
  #shop .btn_area .btn a {
    text-align: center;
    line-height: 1.4;
  }
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */
footer {
  padding-top: 4px;
  width: 100%;
  clear: both;
  overflow: hidden;
  position: relative;
}
footer::before {
  content: "";
  display: block;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(125, 96, 83)), color-stop(50%, rgb(228, 210, 141)), to(rgb(125, 96, 83)));
  background-image: linear-gradient(90deg, rgb(125, 96, 83), rgb(228, 210, 141) 50%, rgb(125, 96, 83));
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
footer .container {
  padding-top: 45px;
  padding-bottom: 35px;
}
@media screen and (max-width: 767px) {
  footer .container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 35px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  footer .flex {
    display: block;
    margin-bottom: 25px;
  }
}
footer .flex .f_logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #7d6053;
  font-weight: 500;
  text-align: center;
}
footer .flex .f_logo p {
  font-size: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  footer .flex .f_logo img {
    width: 100px;
  }
  footer .flex .f_logo p {
    font-size: 16px;
    margin-top: 20px;
  }
}
footer .flex .ig_box {
  background: #fffde0;
  padding: 35px 20px;
  width: 100%;
  max-width: 704px;
}
@media screen and (max-width: 767px) {
  footer .flex .ig_box {
    padding: 20px 20px 25px;
    margin-top: 30px;
    font-size: 13px;
  }
}
footer .flex .ig_box > p {
  margin-bottom: 15px;
  color: #e84baf;
  text-align: center;
  font-weight: 500;
}
footer .flex .ig_box .ig {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  footer .flex .ig_box .ig {
    gap: 10px;
  }
  footer .flex .ig_box .ig a {
    width: 39px;
  }
}
footer .f_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  footer .f_nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 13px;
  }
}
footer .copyright {
  background: #f7f7f7;
  padding: 20px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .copyright {
    padding: 16px;
    font-size: 11px;
  }
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #000;
  bottom: 20px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .pagetop {
    padding: 10px;
  }
}
.pagetop::after {
  content: "";
  width: 11px;
  height: 11px;
  border-left: #FFF 1px solid;
  border-top: #FFF 1px solid;
  position: absolute;
  top: calc(50% - 3px);
  right: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 8vw 20px;
}
@media screen and (max-width: 767px) {
  #not_found {
    padding: 100px 20px 60px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 42px;
  font-family: "Arial", "メイリオ";
}
@media screen and (max-width: 767px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 39px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #not_found p.arial + p {
    ont-size: 17px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #not_found p.txt {
    line-height: 1.6;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}